@roarkanalytics/sdk 2.10.0 → 2.12.0
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/CHANGELOG.md +16 -0
- package/index.d.mts +5 -2
- package/index.d.ts +5 -2
- package/index.d.ts.map +1 -1
- package/index.js +3 -0
- package/index.js.map +1 -1
- package/index.mjs +4 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/call.d.ts +180 -1
- package/resources/call.d.ts.map +1 -1
- package/resources/call.js +7 -0
- package/resources/call.js.map +1 -1
- package/resources/call.mjs +7 -0
- package/resources/call.mjs.map +1 -1
- package/resources/index.d.ts +2 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +2 -1
- package/resources/index.mjs.map +1 -1
- package/resources/metric.d.ts +74 -0
- package/resources/metric.d.ts.map +1 -0
- package/resources/metric.js +17 -0
- package/resources/metric.js.map +1 -0
- package/resources/metric.mjs +13 -0
- package/resources/metric.mjs.map +1 -0
- package/resources/persona.d.ts +12 -12
- package/resources/persona.d.ts.map +1 -1
- package/resources/simulation.d.ts +4 -4
- package/resources/simulation.d.ts.map +1 -1
- package/src/index.ts +14 -1
- package/src/resources/call.ts +230 -0
- package/src/resources/index.ts +8 -1
- package/src/resources/metric.ts +90 -0
- package/src/resources/persona.ts +12 -12
- package/src/resources/simulation.ts +4 -4
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/persona.ts
CHANGED
|
@@ -98,7 +98,7 @@ export namespace PersonaCreateResponse {
|
|
|
98
98
|
* Accent of the persona, defined using ISO 3166-1 alpha-2 country codes with
|
|
99
99
|
* optional variants
|
|
100
100
|
*/
|
|
101
|
-
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU';
|
|
101
|
+
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU' | 'IT';
|
|
102
102
|
|
|
103
103
|
/**
|
|
104
104
|
* Background noise setting
|
|
@@ -146,7 +146,7 @@ export namespace PersonaCreateResponse {
|
|
|
146
146
|
/**
|
|
147
147
|
* Primary language ISO 639-1 code for the persona
|
|
148
148
|
*/
|
|
149
|
-
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL';
|
|
149
|
+
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL' | 'IT';
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
152
|
* How reliable the persona's memory is
|
|
@@ -205,7 +205,7 @@ export namespace PersonaUpdateResponse {
|
|
|
205
205
|
* Accent of the persona, defined using ISO 3166-1 alpha-2 country codes with
|
|
206
206
|
* optional variants
|
|
207
207
|
*/
|
|
208
|
-
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU';
|
|
208
|
+
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU' | 'IT';
|
|
209
209
|
|
|
210
210
|
/**
|
|
211
211
|
* Background noise setting
|
|
@@ -253,7 +253,7 @@ export namespace PersonaUpdateResponse {
|
|
|
253
253
|
/**
|
|
254
254
|
* Primary language ISO 639-1 code for the persona
|
|
255
255
|
*/
|
|
256
|
-
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL';
|
|
256
|
+
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL' | 'IT';
|
|
257
257
|
|
|
258
258
|
/**
|
|
259
259
|
* How reliable the persona's memory is
|
|
@@ -314,7 +314,7 @@ export namespace PersonaFindAllResponse {
|
|
|
314
314
|
* Accent of the persona, defined using ISO 3166-1 alpha-2 country codes with
|
|
315
315
|
* optional variants
|
|
316
316
|
*/
|
|
317
|
-
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU';
|
|
317
|
+
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU' | 'IT';
|
|
318
318
|
|
|
319
319
|
/**
|
|
320
320
|
* Background noise setting
|
|
@@ -362,7 +362,7 @@ export namespace PersonaFindAllResponse {
|
|
|
362
362
|
/**
|
|
363
363
|
* Primary language ISO 639-1 code for the persona
|
|
364
364
|
*/
|
|
365
|
-
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL';
|
|
365
|
+
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL' | 'IT';
|
|
366
366
|
|
|
367
367
|
/**
|
|
368
368
|
* How reliable the persona's memory is
|
|
@@ -438,7 +438,7 @@ export namespace PersonaGetByIDResponse {
|
|
|
438
438
|
* Accent of the persona, defined using ISO 3166-1 alpha-2 country codes with
|
|
439
439
|
* optional variants
|
|
440
440
|
*/
|
|
441
|
-
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU';
|
|
441
|
+
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU' | 'IT';
|
|
442
442
|
|
|
443
443
|
/**
|
|
444
444
|
* Background noise setting
|
|
@@ -486,7 +486,7 @@ export namespace PersonaGetByIDResponse {
|
|
|
486
486
|
/**
|
|
487
487
|
* Primary language ISO 639-1 code for the persona
|
|
488
488
|
*/
|
|
489
|
-
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL';
|
|
489
|
+
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL' | 'IT';
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
492
|
* How reliable the persona's memory is
|
|
@@ -535,7 +535,7 @@ export interface PersonaCreateParams {
|
|
|
535
535
|
* Accent of the persona, defined using ISO 3166-1 alpha-2 country codes with
|
|
536
536
|
* optional variants
|
|
537
537
|
*/
|
|
538
|
-
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU';
|
|
538
|
+
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU' | 'IT';
|
|
539
539
|
|
|
540
540
|
/**
|
|
541
541
|
* Gender of the persona
|
|
@@ -545,7 +545,7 @@ export interface PersonaCreateParams {
|
|
|
545
545
|
/**
|
|
546
546
|
* Primary language ISO 639-1 code for the persona
|
|
547
547
|
*/
|
|
548
|
-
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL';
|
|
548
|
+
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL' | 'IT';
|
|
549
549
|
|
|
550
550
|
/**
|
|
551
551
|
* The name the agent will identify as during conversations
|
|
@@ -621,7 +621,7 @@ export interface PersonaUpdateParams {
|
|
|
621
621
|
* Accent of the persona, defined using ISO 3166-1 alpha-2 country codes with
|
|
622
622
|
* optional variants
|
|
623
623
|
*/
|
|
624
|
-
accent?: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU';
|
|
624
|
+
accent?: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU' | 'IT';
|
|
625
625
|
|
|
626
626
|
/**
|
|
627
627
|
* Background noise setting
|
|
@@ -669,7 +669,7 @@ export interface PersonaUpdateParams {
|
|
|
669
669
|
/**
|
|
670
670
|
* Primary language ISO 639-1 code for the persona
|
|
671
671
|
*/
|
|
672
|
-
language?: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL';
|
|
672
|
+
language?: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL' | 'IT';
|
|
673
673
|
|
|
674
674
|
/**
|
|
675
675
|
* How reliable the persona's memory is
|
|
@@ -129,7 +129,7 @@ export namespace SimulationGetJobByIDResponse {
|
|
|
129
129
|
* Accent of the persona, defined using ISO 3166-1 alpha-2 country codes with
|
|
130
130
|
* optional variants
|
|
131
131
|
*/
|
|
132
|
-
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU';
|
|
132
|
+
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU' | 'IT';
|
|
133
133
|
|
|
134
134
|
/**
|
|
135
135
|
* Background noise setting
|
|
@@ -177,7 +177,7 @@ export namespace SimulationGetJobByIDResponse {
|
|
|
177
177
|
/**
|
|
178
178
|
* Primary language ISO 639-1 code for the persona
|
|
179
179
|
*/
|
|
180
|
-
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL';
|
|
180
|
+
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL' | 'IT';
|
|
181
181
|
|
|
182
182
|
/**
|
|
183
183
|
* How reliable the persona's memory is
|
|
@@ -328,7 +328,7 @@ export namespace SimulationLookupJobResponse {
|
|
|
328
328
|
* Accent of the persona, defined using ISO 3166-1 alpha-2 country codes with
|
|
329
329
|
* optional variants
|
|
330
330
|
*/
|
|
331
|
-
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU';
|
|
331
|
+
accent: 'US' | 'US_X_SOUTH' | 'GB' | 'ES' | 'DE' | 'IN' | 'FR' | 'NL' | 'SA' | 'GR' | 'AU' | 'IT';
|
|
332
332
|
|
|
333
333
|
/**
|
|
334
334
|
* Background noise setting
|
|
@@ -376,7 +376,7 @@ export namespace SimulationLookupJobResponse {
|
|
|
376
376
|
/**
|
|
377
377
|
* Primary language ISO 639-1 code for the persona
|
|
378
378
|
*/
|
|
379
|
-
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL';
|
|
379
|
+
language: 'EN' | 'ES' | 'DE' | 'HI' | 'FR' | 'NL' | 'AR' | 'EL' | 'IT';
|
|
380
380
|
|
|
381
381
|
/**
|
|
382
382
|
* How reliable the persona's memory is
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '2.
|
|
1
|
+
export const VERSION = '2.12.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "2.
|
|
1
|
+
export declare const VERSION = "2.12.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '2.
|
|
1
|
+
export const VERSION = '2.12.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|