From 64ee7f12406c8150718d061ba138d311148def39 Mon Sep 17 00:00:00 2001 From: Austin Walker Date: Thu, 27 Feb 2025 16:04:59 -0500 Subject: [PATCH 1/2] chore: Update signup and docs links at the top of the readme Note that the platform workflow functionality is coming soon. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0331f188..3f33bc57 100755 --- a/README.md +++ b/README.md @@ -10,12 +10,13 @@

-

Typescript SDK for the Unstructured API

+

TypeScript SDK for the Unstructured API

-This is a Typescript client for the [Unstructured API](https://docs.unstructured.io/api-reference/api-services/saas-api-development-guide) and you can sign up for your API key on https://app.unstructured.io. +This is a HTTP client for the [Unstructured Platform API](https://docs.unstructured.io/platform-api/overview). You can sign up [here](https://unstructured.io/developers) and process 1000 free pages per day for 14 days. + +Please refer to the our documentation for a full guide on integrating the [Partition Endpoint](https://docs.unstructured.io/platform-api/partition-api/sdk-jsts) into your JavaScript/TypeScript code. Support for the [Workflow Endpoint](https://docs.unstructured.io/platform-api/api/overview) is coming soon. -Please refer to the [Unstructured docs](https://docs.unstructured.io/api-reference/api-services/sdk-jsts) for a full guide to using the client. ## SDK Installation From 7e9c49ede3b5f85fc8a77b3b4039421e4281c0a9 Mon Sep 17 00:00:00 2001 From: Austin Walker Date: Thu, 27 Feb 2025 16:07:34 -0500 Subject: [PATCH 2/2] Move the free tier URL to platform partitioner 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 7d965c72..c7d9db76 100644 --- a/.speakeasy/workflow.yaml +++ b/.speakeasy/workflow.yaml @@ -3,7 +3,7 @@ speakeasyVersion: latest sources: my-source: inputs: - - 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 895b675c..864c2566 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ PACKAGE_NAME := unstructured-js-client CURRENT_DIR := $(shell pwd) ARCH := $(shell uname -m) DOCKER_IMAGE ?= quay.io/unstructured-io/unstructured-api:latest -OPENAPI_DOCS_URL ?= https://api.unstructured.io/general/openapi.json +OPENAPI_DOCS_URL ?= https://api.unstructuredapp.io/general/openapi.json ########### # Install #