Skip to content

Commit 485ef30

Browse files
chore: 🐝 Update SDK - Generate 0.18.0 (#120)
> [!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]>
1 parent 2e4413b commit 485ef30

File tree

10 files changed

+39
-35
lines changed

10 files changed

+39
-35
lines changed

.speakeasy/gen.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ id: f42cb8e6-e2ce-4565-b975-5a9f38b94d5a
33
management:
44
docChecksum: 2abad0a9424f43665ea6a06d7f1db4ca
55
docVersion: 1.0.50
6-
speakeasyVersion: 1.402.14
7-
generationVersion: 2.422.22
8-
releaseVersion: 0.17.2
9-
configChecksum: 59e68a7c488e725f2e91d1b372de6958
6+
speakeasyVersion: 1.403.3
7+
generationVersion: 2.424.0
8+
releaseVersion: 0.18.0
9+
configChecksum: a7f768163666da1db6d3a4b3fa3a199c
1010
repoURL: https://github.com/Unstructured-IO/unstructured-js-client.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/Unstructured-IO/unstructured-js-client
@@ -15,7 +15,7 @@ features:
1515
typescript:
1616
additionalDependencies: 0.1.0
1717
constsAndDefaults: 0.1.11
18-
core: 3.17.7
18+
core: 3.18.0
1919
defaultEnabledRetries: 0.1.0
2020
enumUnions: 0.1.0
2121
envVarSecurityUsage: 0.1.1

.speakeasy/workflow.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
speakeasyVersion: 1.402.14
1+
speakeasyVersion: 1.403.3
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:9f9fd4ae0320f28c292ea90778bfa55ecfad47d42e93d27d0bae0a10fca34eb9
5+
sourceRevisionDigest: sha256:ecc480f02170320aec000c633b53b2e09b5753b56f0619a14980873ce623646c
66
sourceBlobDigest: sha256:339446a3ddb92ef648b5881135a44848f08cec15d2c4785d1000884ec29bd801
77
tags:
88
- latest
@@ -11,7 +11,7 @@ targets:
1111
unstructed-typescript:
1212
source: my-source
1313
sourceNamespace: my-source
14-
sourceRevisionDigest: sha256:9f9fd4ae0320f28c292ea90778bfa55ecfad47d42e93d27d0bae0a10fca34eb9
14+
sourceRevisionDigest: sha256:ecc480f02170320aec000c633b53b2e09b5753b56f0619a14980873ce623646c
1515
sourceBlobDigest: sha256:339446a3ddb92ef648b5881135a44848f08cec15d2c4785d1000884ec29bd801
1616
workflow:
1717
workflowVersion: 1.0.0

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -474,4 +474,14 @@ Based on:
474474
### Generated
475475
- [typescript v0.17.2] .
476476
### Releases
477-
- [NPM v0.17.2] https://www.npmjs.com/package/unstructured-client/v/0.17.2 - .
477+
- [NPM v0.17.2] https://www.npmjs.com/package/unstructured-client/v/0.17.2 - .
478+
479+
## 2024-09-27 00:27:01
480+
### Changes
481+
Based on:
482+
- OpenAPI Doc
483+
- Speakeasy CLI 1.403.3 (2.424.0) https://github.com/speakeasy-api/speakeasy
484+
### Generated
485+
- [typescript v0.18.0] .
486+
### Releases
487+
- [NPM v0.18.0] https://www.npmjs.com/package/unstructured-client/v/0.18.0 - .

docs/sdk/models/errors/detail.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
# Detail
22

3-
## Example Usage
4-
5-
```typescript
6-
import { Detail } from "unstructured-client/sdk/models/errors";
7-
8-
let value: Detail = "<value>";
9-
```
103

114
## Supported Types
125

136
### `shared.ValidationError[]`
147

158
```typescript
16-
const value: shared.ValidationError[] = /* values here */
9+
const value: shared.ValidationError[] = [
10+
{
11+
loc: [
12+
544883,
13+
],
14+
msg: "<value>",
15+
type: "<value>",
16+
},
17+
];
1718
```
1819

1920
### `string`
2021

2122
```typescript
22-
const value: string = /* values here */
23+
const value: string = "<value>";
2324
```
2425

docs/sdk/models/shared/loc.md

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
# Loc
22

3-
## Example Usage
4-
5-
```typescript
6-
import { Loc } from "unstructured-client/sdk/models/shared";
7-
8-
let value: Loc = 423655;
9-
```
103

114
## Supported Types
125

136
### `string`
147

158
```typescript
16-
const value: string = /* values here */
9+
const value: string = "<value>";
1710
```
1811

1912
### `number`
2013

2114
```typescript
22-
const value: number = /* values here */
15+
const value: number = 423655;
2316
```
2417

gen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ generation:
1010
auth:
1111
oAuth2ClientCredentialsEnabled: false
1212
typescript:
13-
version: 0.17.2
13+
version: 0.18.0
1414
additionalDependencies:
1515
dependencies:
1616
async: ^3.2.5

jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{
44
"name": "unstructured-client",
5-
"version": "0.17.2",
5+
"version": "0.18.0",
66
"exports": {
77
".": "./src/index.ts",
88
"./sdk/models/errors": "./src/sdk/models/errors/index.ts",

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unstructured-client",
3-
"version": "0.17.2",
3+
"version": "0.18.0",
44
"author": "Unstructured",
55
"main": "./index.js",
66
"sideEffects": false,

src/lib/config.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
6969
export const SDK_METADATA = {
7070
language: "typescript",
7171
openapiDocVersion: "1.0.50",
72-
sdkVersion: "0.17.2",
73-
genVersion: "2.422.22",
72+
sdkVersion: "0.18.0",
73+
genVersion: "2.424.0",
7474
userAgent:
75-
"speakeasy-sdk/typescript 0.17.2 2.422.22 1.0.50 unstructured-client",
75+
"speakeasy-sdk/typescript 0.18.0 2.424.0 1.0.50 unstructured-client",
7676
} as const;

0 commit comments

Comments
 (0)