Skip to content

Commit 9fdf4ae

Browse files
committed
ci: regenerated with OpenAPI Doc 0.0.1, Speakeay CLI 1.93.1
1 parent 5b75b9d commit 9fdf4ae

File tree

6 files changed

+22
-12
lines changed

6 files changed

+22
-12
lines changed

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,14 @@ Based on:
9292
### Generated
9393
- [typescript v0.4.1] .
9494
### Releases
95-
- [NPM v0.4.1] https://www.npmjs.com/package/unstructured-client/v/0.4.1 - .
95+
- [NPM v0.4.1] https://www.npmjs.com/package/unstructured-client/v/0.4.1 - .
96+
97+
## 2023-10-03 00:20:21
98+
### Changes
99+
Based on:
100+
- OpenAPI Doc 0.0.1
101+
- Speakeasy CLI 1.93.1 (2.144.7) https://github.com/speakeasy-api/speakeasy
102+
### Generated
103+
- [typescript v0.4.2] .
104+
### Releases
105+
- [NPM v0.4.2] https://www.npmjs.com/package/unstructured-client/v/0.4.2 - .

gen.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ configVersion: 1.0.0
22
management:
33
docChecksum: 25324f1821b1070aa4a416ec8ddca590
44
docVersion: 0.0.1
5-
speakeasyVersion: 1.92.3
6-
generationVersion: 2.143.2
5+
speakeasyVersion: 1.93.1
6+
generationVersion: 2.144.7
77
generation:
88
comments:
99
disableComments: false
@@ -19,10 +19,10 @@ features:
1919
globalSecurity: 2.81.1
2020
globalServerURLs: 2.82.0
2121
nameOverrides: 2.81.1
22-
retries: 2.82.0
22+
retries: 2.82.1
2323
serverIDs: 2.81.1
2424
typescript:
25-
version: 0.4.1
25+
version: 0.4.2
2626
author: Unstructured
2727
clientServerStatusCodesAsErrors: true
2828
maxMethodParams: 0

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unstructured-client",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"author": "Unstructured",
55
"scripts": {
66
"prepare": "tsc --build"

src/sdk/general.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class General {
6262
headers["user-agent"] = this.sdkConfiguration.userAgent;
6363

6464
const globalRetryConfig = this.sdkConfiguration.retryConfig;
65-
let retryConfig: any = retries;
65+
let retryConfig: utils.RetryConfig | undefined = retries;
6666
if (!retryConfig) {
6767
if (globalRetryConfig) {
6868
retryConfig = globalRetryConfig;

src/sdk/sdk.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ export class SDKConfiguration {
5959
serverDefaults: any;
6060
language = "typescript";
6161
openapiDocVersion = "0.0.1";
62-
sdkVersion = "0.4.1";
63-
genVersion = "2.143.2";
64-
userAgent = "speakeasy-sdk/typescript 0.4.1 2.143.2 0.0.1 unstructured-client";
62+
sdkVersion = "0.4.2";
63+
genVersion = "2.144.7";
64+
userAgent = "speakeasy-sdk/typescript 0.4.2 2.144.7 0.0.1 unstructured-client";
6565
retryConfig?: utils.RetryConfig;
6666
public constructor(init?: Partial<SDKConfiguration>) {
6767
Object.assign(this, init);

0 commit comments

Comments
 (0)