From 9475ca1b93946e944f277da81afe4cb3981b72f4 Mon Sep 17 00:00:00 2001 From: Austin Walker Date: Wed, 26 Feb 2025 17:17:55 -0500 Subject: [PATCH] fix: Pull partitioning spec from the correct url Subtle bug - this is our free tier url, not the platform partitioning url --- .speakeasy/workflow.yaml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.speakeasy/workflow.yaml b/.speakeasy/workflow.yaml index 1d5e8ede..c3873f58 100644 --- a/.speakeasy/workflow.yaml +++ b/.speakeasy/workflow.yaml @@ -4,7 +4,7 @@ sources: my-source: inputs: - location: https://platform.unstructuredapp.io/openapi.json - - location: https://api.unstructured.io/general/openapi.json + - location: https://api.unstructuredapp.io/general/openapi.json overlays: - location: ./overlay_client.yaml registry: diff --git a/Makefile b/Makefile index dc12ee0a..96098b1a 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ lint: ## download-openapi-specs: Download the openapi specs from the Serverless and Platform APIs .PHONY: download-openapi-specs download-openapi-specs: - wget -nv -q -O openapi_serverless.json https://api.unstructured.io/general/openapi.json + wget -nv -q -O openapi_serverless.json https://api.unstructuredapp.io/general/openapi.json wget -nv -q -O openapi_platform_api.json https://platform.unstructuredapp.io/openapi.json ## client-merge-serverless-platform: Merge the Serverless and Platform APIs specs into a single schema