Skip to content

Commit 5a09f85

Browse files
committed
ci: regenerated with OpenAPI Doc 0.3.0, Speakeay CLI 1.96.1
1 parent 1c4b47f commit 5a09f85

File tree

16 files changed

+610
-566
lines changed

16 files changed

+610
-566
lines changed

README.md

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,29 @@ yarn add @speakeasy-api/speakeasy-client-sdk-typescript
2020
<!-- Start SDK Example Usage -->
2121
```typescript
2222
import { Speakeasy } from "@speakeasy-api/speakeasy-client-sdk-typescript";
23-
import { GetApisResponse } from "@speakeasy-api/speakeasy-client-sdk-typescript/dist/sdk/models/operations";
24-
25-
const sdk = new Speakeasy({
26-
security: {
27-
apiKey: "",
28-
},
29-
});
30-
31-
sdk.apis.getApis({
32-
metadata: {
33-
"aut": [
34-
"bypassing",
35-
],
36-
},
37-
op: {
38-
and: false,
39-
},
40-
}).then((res: GetApisResponse) => {
23+
24+
(async() => {
25+
const sdk = new Speakeasy({
26+
security: {
27+
apiKey: "",
28+
},
29+
});
30+
31+
const res = await sdk.apis.getApis({
32+
metadata: {
33+
"South": [
34+
"Southwest",
35+
],
36+
},
37+
op: {
38+
and: false,
39+
},
40+
});
41+
4142
if (res.statusCode == 200) {
4243
// handle response
4344
}
44-
});
45+
})();
4546
```
4647
<!-- End SDK Example Usage -->
4748

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -956,4 +956,14 @@ Based on:
956956
### Generated
957957
- [typescript v1.59.2] .
958958
### Releases
959-
- [NPM v1.59.2] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.59.2 - .
959+
- [NPM v1.59.2] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.59.2 - .
960+
961+
## 2023-10-07 00:10:19
962+
### Changes
963+
Based on:
964+
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
965+
- Speakeasy CLI 1.96.1 (2.150.0) https://github.com/speakeasy-api/speakeasy
966+
### Generated
967+
- [typescript v1.60.0] .
968+
### Releases
969+
- [NPM v1.60.0] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.60.0 - .

USAGE.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,28 @@
33

44
```typescript
55
import { Speakeasy } from "@speakeasy-api/speakeasy-client-sdk-typescript";
6-
import { GetApisResponse } from "@speakeasy-api/speakeasy-client-sdk-typescript/dist/sdk/models/operations";
76

8-
const sdk = new Speakeasy({
9-
security: {
10-
apiKey: "",
11-
},
12-
});
7+
(async() => {
8+
const sdk = new Speakeasy({
9+
security: {
10+
apiKey: "",
11+
},
12+
});
13+
14+
const res = await sdk.apis.getApis({
15+
metadata: {
16+
"South": [
17+
"Southwest",
18+
],
19+
},
20+
op: {
21+
and: false,
22+
},
23+
});
1324

14-
sdk.apis.getApis({
15-
metadata: {
16-
"aut": [
17-
"bypassing",
18-
],
19-
},
20-
op: {
21-
and: false,
22-
},
23-
}).then((res: GetApisResponse) => {
2425
if (res.statusCode == 200) {
2526
// handle response
2627
}
27-
});
28+
})();
2829
```
2930
<!-- End SDK Example Usage -->

0 commit comments

Comments
 (0)