Skip to content

Commit 417417e

Browse files
SDK regeneration
1 parent 6cc20db commit 417417e

5 files changed

Lines changed: 18 additions & 8 deletions

File tree

.fern/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"cliVersion": "4.53.1",
2+
"cliVersion": "4.67.1",
33
"generatorName": "fernapi/fern-typescript-node-sdk",
44
"generatorVersion": "3.54.0",
55
"generatorConfig": {
@@ -32,6 +32,6 @@
3232
}
3333
}
3434
},
35-
"originGitCommit": "177f72bd52a0833eabcddb0967f6d00ef24d9896",
35+
"originGitCommit": "70f6e7737b5c860e5b8732c4e954e7b3461e4427",
3636
"sdkVersion": "0.0.0-dev"
3737
}

src/api/types/StreamConfigStatusMessageType.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export const StreamConfigStatusMessageType = {
77
ConfigMissing: "CONFIG_MISSING",
88
ConfigNotProvided: "CONFIG_NOT_PROVIDED",
99
ConfigAlreadyReceived: "CONFIG_ALREADY_RECEIVED",
10-
ConfigTimeout: "CONFIG_TIMEOUT",
1110
} as const;
1211
export type StreamConfigStatusMessageType =
1312
(typeof StreamConfigStatusMessageType)[keyof typeof StreamConfigStatusMessageType];

src/api/types/TranscribeConfigStatusMessageType.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ export const TranscribeConfigStatusMessageType = {
55
ConfigAccepted: "CONFIG_ACCEPTED",
66
ConfigDenied: "CONFIG_DENIED",
77
ConfigTimeout: "CONFIG_TIMEOUT",
8+
ConfigAlreadyReceived: "CONFIG_ALREADY_RECEIVED",
9+
ConfigMissing: "CONFIG_MISSING",
810
} as const;
911
export type TranscribeConfigStatusMessageType =
1012
(typeof TranscribeConfigStatusMessageType)[keyof typeof TranscribeConfigStatusMessageType];

src/serialization/types/StreamConfigStatusMessageType.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ export const StreamConfigStatusMessageType: core.serialization.Schema<
1313
"CONFIG_MISSING",
1414
"CONFIG_NOT_PROVIDED",
1515
"CONFIG_ALREADY_RECEIVED",
16-
"CONFIG_TIMEOUT",
1716
]);
1817

1918
export declare namespace StreamConfigStatusMessageType {
@@ -22,6 +21,5 @@ export declare namespace StreamConfigStatusMessageType {
2221
| "CONFIG_DENIED"
2322
| "CONFIG_MISSING"
2423
| "CONFIG_NOT_PROVIDED"
25-
| "CONFIG_ALREADY_RECEIVED"
26-
| "CONFIG_TIMEOUT";
24+
| "CONFIG_ALREADY_RECEIVED";
2725
}

src/serialization/types/TranscribeConfigStatusMessageType.ts

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,19 @@ import type * as serializers from "../index.js";
77
export const TranscribeConfigStatusMessageType: core.serialization.Schema<
88
serializers.TranscribeConfigStatusMessageType.Raw,
99
Corti.TranscribeConfigStatusMessageType
10-
> = core.serialization.enum_(["CONFIG_ACCEPTED", "CONFIG_DENIED", "CONFIG_TIMEOUT"]);
10+
> = core.serialization.enum_([
11+
"CONFIG_ACCEPTED",
12+
"CONFIG_DENIED",
13+
"CONFIG_TIMEOUT",
14+
"CONFIG_ALREADY_RECEIVED",
15+
"CONFIG_MISSING",
16+
]);
1117

1218
export declare namespace TranscribeConfigStatusMessageType {
13-
export type Raw = "CONFIG_ACCEPTED" | "CONFIG_DENIED" | "CONFIG_TIMEOUT";
19+
export type Raw =
20+
| "CONFIG_ACCEPTED"
21+
| "CONFIG_DENIED"
22+
| "CONFIG_TIMEOUT"
23+
| "CONFIG_ALREADY_RECEIVED"
24+
| "CONFIG_MISSING";
1425
}

0 commit comments

Comments
 (0)