syllable-sdk 0.1.0-alpha.54 → 0.1.0-alpha.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/sdks/agents/README.md +4 -4
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/agentwaitsound.d.ts +3 -0
- package/models/components/agentwaitsound.d.ts.map +1 -1
- package/models/components/agentwaitsound.js +1 -0
- package/models/components/agentwaitsound.js.map +1 -1
- package/openapi.json +4 -0
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/agentwaitsound.ts +1 -0
|
@@ -119,7 +119,7 @@ async function run() {
|
|
|
119
119
|
"key1": "<value>",
|
|
120
120
|
},
|
|
121
121
|
sttProvider: "Google STT V2",
|
|
122
|
-
waitSound: "Keyboard
|
|
122
|
+
waitSound: "Keyboard 1",
|
|
123
123
|
});
|
|
124
124
|
|
|
125
125
|
// Handle the result
|
|
@@ -162,7 +162,7 @@ async function run() {
|
|
|
162
162
|
"key1": "<value>",
|
|
163
163
|
},
|
|
164
164
|
sttProvider: "Google STT V2",
|
|
165
|
-
waitSound: "Keyboard
|
|
165
|
+
waitSound: "Keyboard 1",
|
|
166
166
|
});
|
|
167
167
|
|
|
168
168
|
if (!res.ok) {
|
|
@@ -232,7 +232,7 @@ async function run() {
|
|
|
232
232
|
"key1": "<value>",
|
|
233
233
|
},
|
|
234
234
|
sttProvider: "Google STT V2",
|
|
235
|
-
waitSound: "Keyboard
|
|
235
|
+
waitSound: "Keyboard 1",
|
|
236
236
|
id: 488852,
|
|
237
237
|
});
|
|
238
238
|
|
|
@@ -278,7 +278,7 @@ async function run() {
|
|
|
278
278
|
"key1": "<value>",
|
|
279
279
|
},
|
|
280
280
|
sttProvider: "Google STT V2",
|
|
281
|
-
waitSound: "Keyboard
|
|
281
|
+
waitSound: "Keyboard 1",
|
|
282
282
|
id: 488852,
|
|
283
283
|
});
|
|
284
284
|
|
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -27,8 +27,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
27
27
|
export declare const SDK_METADATA: {
|
|
28
28
|
readonly language: "typescript";
|
|
29
29
|
readonly openapiDocVersion: "0.0.2";
|
|
30
|
-
readonly sdkVersion: "0.1.0-alpha.
|
|
30
|
+
readonly sdkVersion: "0.1.0-alpha.55";
|
|
31
31
|
readonly genVersion: "2.512.4";
|
|
32
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.
|
|
32
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.55 2.512.4 0.0.2 syllable-sdk";
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -31,8 +31,8 @@ function serverURLFromOptions(options) {
|
|
|
31
31
|
exports.SDK_METADATA = {
|
|
32
32
|
language: "typescript",
|
|
33
33
|
openapiDocVersion: "0.0.2",
|
|
34
|
-
sdkVersion: "0.1.0-alpha.
|
|
34
|
+
sdkVersion: "0.1.0-alpha.55",
|
|
35
35
|
genVersion: "2.512.4",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.55 2.512.4 0.0.2 syllable-sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
|
@@ -4,6 +4,7 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
4
4
|
* Wait sounds supported by agents.
|
|
5
5
|
*/
|
|
6
6
|
export declare const AgentWaitSound: {
|
|
7
|
+
readonly NoSound: "No Sound";
|
|
7
8
|
readonly Keyboard1: "Keyboard 1";
|
|
8
9
|
readonly Keyboard2: "Keyboard 2";
|
|
9
10
|
readonly CallCenter: "Call Center";
|
|
@@ -23,12 +24,14 @@ export declare const AgentWaitSound$outboundSchema: z.ZodNativeEnum<typeof Agent
|
|
|
23
24
|
export declare namespace AgentWaitSound$ {
|
|
24
25
|
/** @deprecated use `AgentWaitSound$inboundSchema` instead. */
|
|
25
26
|
const inboundSchema: z.ZodNativeEnum<{
|
|
27
|
+
readonly NoSound: "No Sound";
|
|
26
28
|
readonly Keyboard1: "Keyboard 1";
|
|
27
29
|
readonly Keyboard2: "Keyboard 2";
|
|
28
30
|
readonly CallCenter: "Call Center";
|
|
29
31
|
}>;
|
|
30
32
|
/** @deprecated use `AgentWaitSound$outboundSchema` instead. */
|
|
31
33
|
const outboundSchema: z.ZodNativeEnum<{
|
|
34
|
+
readonly NoSound: "No Sound";
|
|
32
35
|
readonly Keyboard1: "Keyboard 1";
|
|
33
36
|
readonly Keyboard2: "Keyboard 2";
|
|
34
37
|
readonly CallCenter: "Call Center";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agentwaitsound.d.ts","sourceRoot":"","sources":["../../src/models/components/agentwaitsound.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"agentwaitsound.d.ts","sourceRoot":"","sources":["../../src/models/components/agentwaitsound.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,cAAc;;;;;CAKjB,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAE/D,gBAAgB;AAChB,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,aAAa,CACxD,OAAO,cAAc,CACS,CAAC;AAEjC,gBAAgB;AAChB,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,aAAa,CACzD,OAAO,cAAc,CACS,CAAC;AAEjC;;;GAGG;AACH,yBAAiB,eAAe,CAAC;IAC/B,8DAA8D;IACvD,MAAM,aAAa;;;;;MAA+B,CAAC;IAC1D,+DAA+D;IACxD,MAAM,cAAc;;;;;MAAgC,CAAC;CAC7D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agentwaitsound.js","sourceRoot":"","sources":["../../src/models/components/agentwaitsound.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,cAAc,GAAG;IAC5B,SAAS,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;IACvB,UAAU,EAAE,aAAa;CACjB,CAAC;AAMX,gBAAgB;AACH,QAAA,4BAA4B,GAErC,CAAC,CAAC,UAAU,CAAC,sBAAc,CAAC,CAAC;AAEjC,gBAAgB;AACH,QAAA,6BAA6B,GAEtC,oCAA4B,CAAC;AAEjC;;;GAGG;AACH,IAAiB,eAAe,CAK/B;AALD,WAAiB,eAAe;IAC9B,8DAA8D;IACjD,6BAAa,GAAG,oCAA4B,CAAC;IAC1D,+DAA+D;IAClD,8BAAc,GAAG,qCAA6B,CAAC;AAC9D,CAAC,EALgB,eAAe,+BAAf,eAAe,QAK/B"}
|
|
1
|
+
{"version":3,"file":"agentwaitsound.js","sourceRoot":"","sources":["../../src/models/components/agentwaitsound.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,cAAc,GAAG;IAC5B,OAAO,EAAE,UAAU;IACnB,SAAS,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;IACvB,UAAU,EAAE,aAAa;CACjB,CAAC;AAMX,gBAAgB;AACH,QAAA,4BAA4B,GAErC,CAAC,CAAC,UAAU,CAAC,sBAAc,CAAC,CAAC;AAEjC,gBAAgB;AACH,QAAA,6BAA6B,GAEtC,oCAA4B,CAAC;AAEjC;;;GAGG;AACH,IAAiB,eAAe,CAK/B;AALD,WAAiB,eAAe;IAC9B,8DAA8D;IACjD,6BAAa,GAAG,oCAA4B,CAAC;IAC1D,+DAA+D;IAClD,8BAAc,GAAG,qCAA6B,CAAC;AAC9D,CAAC,EALgB,eAAe,+BAAf,eAAe,QAK/B"}
|
package/openapi.json
CHANGED
|
@@ -7347,6 +7347,7 @@
|
|
|
7347
7347
|
],
|
|
7348
7348
|
"description": "Sound to play while waiting for a response from the LLM.",
|
|
7349
7349
|
"examples": [
|
|
7350
|
+
"No Sound",
|
|
7350
7351
|
"Keyboard 1",
|
|
7351
7352
|
"Keyboard 2",
|
|
7352
7353
|
"Call Center"
|
|
@@ -7565,6 +7566,7 @@
|
|
|
7565
7566
|
"title": "Wait Sound",
|
|
7566
7567
|
"description": "Sound to play while waiting for a response from the LLM.",
|
|
7567
7568
|
"examples": [
|
|
7569
|
+
"No Sound",
|
|
7568
7570
|
"Keyboard 1",
|
|
7569
7571
|
"Keyboard 2",
|
|
7570
7572
|
"Call Center"
|
|
@@ -7876,6 +7878,7 @@
|
|
|
7876
7878
|
],
|
|
7877
7879
|
"description": "Sound to play while waiting for a response from the LLM.",
|
|
7878
7880
|
"examples": [
|
|
7881
|
+
"No Sound",
|
|
7879
7882
|
"Keyboard 1",
|
|
7880
7883
|
"Keyboard 2",
|
|
7881
7884
|
"Call Center"
|
|
@@ -8078,6 +8081,7 @@
|
|
|
8078
8081
|
"AgentWaitSound": {
|
|
8079
8082
|
"type": "string",
|
|
8080
8083
|
"enum": [
|
|
8084
|
+
"No Sound",
|
|
8081
8085
|
"Keyboard 1",
|
|
8082
8086
|
"Keyboard 2",
|
|
8083
8087
|
"Call Center"
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -57,8 +57,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
57
57
|
export const SDK_METADATA = {
|
|
58
58
|
language: "typescript",
|
|
59
59
|
openapiDocVersion: "0.0.2",
|
|
60
|
-
sdkVersion: "0.1.0-alpha.
|
|
60
|
+
sdkVersion: "0.1.0-alpha.55",
|
|
61
61
|
genVersion: "2.512.4",
|
|
62
62
|
userAgent:
|
|
63
|
-
"speakeasy-sdk/typescript 0.1.0-alpha.
|
|
63
|
+
"speakeasy-sdk/typescript 0.1.0-alpha.55 2.512.4 0.0.2 syllable-sdk",
|
|
64
64
|
} as const;
|