Skip to content

Commit

Permalink
chore: 🐝 Update SDK - Generate 0.18.0 (#120)
Browse files Browse the repository at this point in the history
> [!IMPORTANT]
> Linting report available at:
<https://app.speakeasy.com/org/unstructured/unstructured5xr/linting-report/fb854b3e3ebda8da35a0c80163f4ece7>
> OpenAPI Change report available at:
<https://app.speakeasy.com/org/unstructured/unstructured5xr/changes-report/34ea17a0f7f4e820658badd5c66df60d>
# SDK update
Based on:
- OpenAPI Doc  
- Speakeasy CLI 1.403.3 (2.424.0)
https://github.com/speakeasy-api/speakeasy
## OpenAPI Change Summary
No specification changes

Co-authored-by: speakeasybot <[email protected]>
  • Loading branch information
github-actions[bot] and speakeasybot authored Sep 27, 2024
1 parent 2e4413b commit 485ef30
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 35 deletions.
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ id: f42cb8e6-e2ce-4565-b975-5a9f38b94d5a
management:
docChecksum: 2abad0a9424f43665ea6a06d7f1db4ca
docVersion: 1.0.50
speakeasyVersion: 1.402.14
generationVersion: 2.422.22
releaseVersion: 0.17.2
configChecksum: 59e68a7c488e725f2e91d1b372de6958
speakeasyVersion: 1.403.3
generationVersion: 2.424.0
releaseVersion: 0.18.0
configChecksum: a7f768163666da1db6d3a4b3fa3a199c
repoURL: https://github.com/Unstructured-IO/unstructured-js-client.git
repoSubDirectory: .
installationURL: https://github.com/Unstructured-IO/unstructured-js-client
Expand All @@ -15,7 +15,7 @@ features:
typescript:
additionalDependencies: 0.1.0
constsAndDefaults: 0.1.11
core: 3.17.7
core: 3.18.0
defaultEnabledRetries: 0.1.0
enumUnions: 0.1.0
envVarSecurityUsage: 0.1.1
Expand Down
6 changes: 3 additions & 3 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
speakeasyVersion: 1.402.14
speakeasyVersion: 1.403.3
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:9f9fd4ae0320f28c292ea90778bfa55ecfad47d42e93d27d0bae0a10fca34eb9
sourceRevisionDigest: sha256:ecc480f02170320aec000c633b53b2e09b5753b56f0619a14980873ce623646c
sourceBlobDigest: sha256:339446a3ddb92ef648b5881135a44848f08cec15d2c4785d1000884ec29bd801
tags:
- latest
Expand All @@ -11,7 +11,7 @@ targets:
unstructed-typescript:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:9f9fd4ae0320f28c292ea90778bfa55ecfad47d42e93d27d0bae0a10fca34eb9
sourceRevisionDigest: sha256:ecc480f02170320aec000c633b53b2e09b5753b56f0619a14980873ce623646c
sourceBlobDigest: sha256:339446a3ddb92ef648b5881135a44848f08cec15d2c4785d1000884ec29bd801
workflow:
workflowVersion: 1.0.0
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -474,4 +474,14 @@ Based on:
### Generated
- [typescript v0.17.2] .
### Releases
- [NPM v0.17.2] https://www.npmjs.com/package/unstructured-client/v/0.17.2 - .
- [NPM v0.17.2] https://www.npmjs.com/package/unstructured-client/v/0.17.2 - .

## 2024-09-27 00:27:01
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.403.3 (2.424.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v0.18.0] .
### Releases
- [NPM v0.18.0] https://www.npmjs.com/package/unstructured-client/v/0.18.0 - .
19 changes: 10 additions & 9 deletions docs/sdk/models/errors/detail.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
# Detail

## Example Usage

```typescript
import { Detail } from "unstructured-client/sdk/models/errors";

let value: Detail = "<value>";
```

## Supported Types

### `shared.ValidationError[]`

```typescript
const value: shared.ValidationError[] = /* values here */
const value: shared.ValidationError[] = [
{
loc: [
544883,
],
msg: "<value>",
type: "<value>",
},
];
```

### `string`

```typescript
const value: string = /* values here */
const value: string = "<value>";
```

11 changes: 2 additions & 9 deletions docs/sdk/models/shared/loc.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,17 @@
# Loc

## Example Usage

```typescript
import { Loc } from "unstructured-client/sdk/models/shared";

let value: Loc = 423655;
```

## Supported Types

### `string`

```typescript
const value: string = /* values here */
const value: string = "<value>";
```

### `number`

```typescript
const value: number = /* values here */
const value: number = 423655;
```

2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
typescript:
version: 0.17.2
version: 0.18.0
additionalDependencies:
dependencies:
async: ^3.2.5
Expand Down
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
"name": "unstructured-client",
"version": "0.17.2",
"version": "0.18.0",
"exports": {
".": "./src/index.ts",
"./sdk/models/errors": "./src/sdk/models/errors/index.ts",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unstructured-client",
"version": "0.17.2",
"version": "0.18.0",
"author": "Unstructured",
"main": "./index.js",
"sideEffects": false,
Expand Down
6 changes: 3 additions & 3 deletions src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
export const SDK_METADATA = {
language: "typescript",
openapiDocVersion: "1.0.50",
sdkVersion: "0.17.2",
genVersion: "2.422.22",
sdkVersion: "0.18.0",
genVersion: "2.424.0",
userAgent:
"speakeasy-sdk/typescript 0.17.2 2.422.22 1.0.50 unstructured-client",
"speakeasy-sdk/typescript 0.18.0 2.424.0 1.0.50 unstructured-client",
} as const;

0 comments on commit 485ef30

Please sign in to comment.