Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"cliVersion": "4.53.1",
"cliVersion": "4.67.1",
"generatorName": "fernapi/fern-typescript-node-sdk",
"generatorVersion": "3.54.0",
"generatorConfig": {
Expand Down Expand Up @@ -32,6 +32,6 @@
}
}
},
"originGitCommit": "177f72bd52a0833eabcddb0967f6d00ef24d9896",
"originGitCommit": "70f6e7737b5c860e5b8732c4e954e7b3461e4427",
"sdkVersion": "0.0.0-dev"
}
1 change: 0 additions & 1 deletion src/api/types/StreamConfigStatusMessageType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const StreamConfigStatusMessageType = {
ConfigMissing: "CONFIG_MISSING",
ConfigNotProvided: "CONFIG_NOT_PROVIDED",
ConfigAlreadyReceived: "CONFIG_ALREADY_RECEIVED",
ConfigTimeout: "CONFIG_TIMEOUT",
} as const;
export type StreamConfigStatusMessageType =
(typeof StreamConfigStatusMessageType)[keyof typeof StreamConfigStatusMessageType];
2 changes: 2 additions & 0 deletions src/api/types/TranscribeConfigStatusMessageType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ export const TranscribeConfigStatusMessageType = {
ConfigAccepted: "CONFIG_ACCEPTED",
ConfigDenied: "CONFIG_DENIED",
ConfigTimeout: "CONFIG_TIMEOUT",
ConfigAlreadyReceived: "CONFIG_ALREADY_RECEIVED",
ConfigMissing: "CONFIG_MISSING",
} as const;
export type TranscribeConfigStatusMessageType =
(typeof TranscribeConfigStatusMessageType)[keyof typeof TranscribeConfigStatusMessageType];
4 changes: 1 addition & 3 deletions src/serialization/types/StreamConfigStatusMessageType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export const StreamConfigStatusMessageType: core.serialization.Schema<
"CONFIG_MISSING",
"CONFIG_NOT_PROVIDED",
"CONFIG_ALREADY_RECEIVED",
"CONFIG_TIMEOUT",
]);

export declare namespace StreamConfigStatusMessageType {
Expand All @@ -22,6 +21,5 @@ export declare namespace StreamConfigStatusMessageType {
| "CONFIG_DENIED"
| "CONFIG_MISSING"
| "CONFIG_NOT_PROVIDED"
| "CONFIG_ALREADY_RECEIVED"
| "CONFIG_TIMEOUT";
| "CONFIG_ALREADY_RECEIVED";
}
15 changes: 13 additions & 2 deletions src/serialization/types/TranscribeConfigStatusMessageType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,19 @@ import type * as serializers from "../index.js";
export const TranscribeConfigStatusMessageType: core.serialization.Schema<
serializers.TranscribeConfigStatusMessageType.Raw,
Corti.TranscribeConfigStatusMessageType
> = core.serialization.enum_(["CONFIG_ACCEPTED", "CONFIG_DENIED", "CONFIG_TIMEOUT"]);
> = core.serialization.enum_([
"CONFIG_ACCEPTED",
"CONFIG_DENIED",
"CONFIG_TIMEOUT",
"CONFIG_ALREADY_RECEIVED",
"CONFIG_MISSING",
]);

export declare namespace TranscribeConfigStatusMessageType {
export type Raw = "CONFIG_ACCEPTED" | "CONFIG_DENIED" | "CONFIG_TIMEOUT";
export type Raw =
| "CONFIG_ACCEPTED"
| "CONFIG_DENIED"
| "CONFIG_TIMEOUT"
| "CONFIG_ALREADY_RECEIVED"
| "CONFIG_MISSING";
}
Loading