Skip to content

Commit 5af06fc

Browse files
committed
ci: regenerated with OpenAPI Doc 0.4.0, Speakeasy CLI 1.183.2
1 parent 31ee5f8 commit 5af06fc

File tree

9 files changed

+48
-16
lines changed

9 files changed

+48
-16
lines changed

.speakeasy/gen.lock

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: 89968bf0-a755-4d50-9acb-d47410010f05
33
management:
4-
docChecksum: c81aa4e807522359d28c09ee16d252ba
4+
docChecksum: 90bb5b2f880d4a86868122f9a6b08d40
55
docVersion: 0.4.0
66
speakeasyVersion: internal
7-
generationVersion: 2.258.0
8-
releaseVersion: 3.1.1
9-
configChecksum: 9344262737ed5942a40a8c8155a0dd50
7+
generationVersion: 2.262.2
8+
releaseVersion: 3.1.2
9+
configChecksum: 2b345353b220e635143a63f8478cc4dc
1010
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-typescript.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-typescript
@@ -191,6 +191,7 @@ generatedFiles:
191191
- docs/sdk/models/shared/valuechange.md
192192
- docs/sdk/models/shared/schemadiff.md
193193
- docs/sdk/models/shared/accessdetails.md
194+
- docs/sdk/models/shared/accounttype.md
194195
- docs/sdk/models/shared/apikeydetails.md
195196
- docs/sdk/models/shared/unboundedrequest.md
196197
- docs/sdk/models/shared/boundedrequest.md

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1136,4 +1136,14 @@ Based on:
11361136
### Generated
11371137
- [typescript v3.1.1] .
11381138
### Releases
1139-
- [NPM v3.1.1] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/3.1.1 - .
1139+
- [NPM v3.1.1] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/3.1.1 - .
1140+
1141+
## 2024-02-17 00:10:50
1142+
### Changes
1143+
Based on:
1144+
- OpenAPI Doc 0.4.0 https://docs.speakeasyapi.dev/openapi.yaml
1145+
- Speakeasy CLI 1.183.2 (2.262.2) https://github.com/speakeasy-api/speakeasy
1146+
### Generated
1147+
- [typescript v3.1.2] .
1148+
### Releases
1149+
- [NPM v3.1.2] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/3.1.2 - .

docs/sdk/models/shared/accounttype.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# AccountType
2+
3+
4+
## Values
5+
6+
| Name | Value |
7+
| ------------ | ------------ |
8+
| `Free` | free |
9+
| `ScaleUp` | scale-up |
10+
| `Enterprise` | enterprise |

docs/sdk/models/shared/apikeydetails.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description |
7-
| --------------------------- | --------------------------- | --------------------------- | --------------------------- |
8-
| `generationAccessUnlimited` | *boolean* | :heavy_minus_sign: | N/A |
9-
| `workspaceId` | *string* | :heavy_check_mark: | N/A |
6+
| Field | Type | Required | Description |
7+
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
8+
| `accountType` | [shared.AccountType](../../../sdk/models/shared/accounttype.md) | :heavy_check_mark: | N/A |
9+
| `generationAccessUnlimited` | *boolean* | :heavy_minus_sign: | N/A |
10+
| `workspaceId` | *string* | :heavy_check_mark: | N/A |

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ generation:
88
parameterOrderingFeb2024: false
99
requestResponseComponentNamesFeb2024: false
1010
typescript:
11-
version: 3.1.1
11+
version: 3.1.2
1212
author: Speakeasy
1313
clientServerStatusCodesAsErrors: false
1414
flattenGlobalSecurity: false

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": "@speakeasy-api/speakeasy-client-sdk-typescript",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"author": "Speakeasy",
55
"scripts": {
66
"prepare": "tsc --build",

src/sdk/models/shared/apikeydetails.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@
55
import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils";
66
import { Expose } from "class-transformer";
77

8+
export enum AccountType {
9+
Free = "free",
10+
ScaleUp = "scale-up",
11+
Enterprise = "enterprise",
12+
}
13+
814
export class ApiKeyDetails extends SpeakeasyBase {
15+
@SpeakeasyMetadata()
16+
@Expose({ name: "account_type" })
17+
accountType: AccountType;
18+
919
@SpeakeasyMetadata()
1020
@Expose({ name: "generation_access_unlimited" })
1121
generationAccessUnlimited?: boolean;

src/sdk/sdk.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ export class SDKConfiguration {
6464
serverDefaults: any;
6565
language = "typescript";
6666
openapiDocVersion = "0.4.0";
67-
sdkVersion = "3.1.1";
68-
genVersion = "2.258.0";
67+
sdkVersion = "3.1.2";
68+
genVersion = "2.262.2";
6969
userAgent =
70-
"speakeasy-sdk/typescript 3.1.1 2.258.0 0.4.0 @speakeasy-api/speakeasy-client-sdk-typescript";
70+
"speakeasy-sdk/typescript 3.1.2 2.262.2 0.4.0 @speakeasy-api/speakeasy-client-sdk-typescript";
7171
globals: any;
7272
retryConfig?: utils.RetryConfig;
7373
public constructor(init?: Partial<SDKConfiguration>) {

0 commit comments

Comments
 (0)