@roarkanalytics/sdk 2.27.0 → 2.29.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.
Files changed (62) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/README.md +60 -18
  3. package/client.d.mts +0 -6
  4. package/client.d.mts.map +1 -1
  5. package/client.d.ts +0 -6
  6. package/client.d.ts.map +1 -1
  7. package/client.js +0 -6
  8. package/client.js.map +1 -1
  9. package/client.mjs +0 -6
  10. package/client.mjs.map +1 -1
  11. package/package.json +1 -1
  12. package/resources/call.d.mts +3 -3
  13. package/resources/call.d.ts +3 -3
  14. package/resources/index.d.mts +0 -2
  15. package/resources/index.d.mts.map +1 -1
  16. package/resources/index.d.ts +0 -2
  17. package/resources/index.d.ts.map +1 -1
  18. package/resources/index.js +1 -5
  19. package/resources/index.js.map +1 -1
  20. package/resources/index.mjs +0 -2
  21. package/resources/index.mjs.map +1 -1
  22. package/resources/simulation-job.d.mts +2 -2
  23. package/resources/simulation-job.d.mts.map +1 -1
  24. package/resources/simulation-job.d.ts +2 -2
  25. package/resources/simulation-job.d.ts.map +1 -1
  26. package/resources/simulation-persona.d.mts +6 -6
  27. package/resources/simulation-persona.d.mts.map +1 -1
  28. package/resources/simulation-persona.d.ts +6 -6
  29. package/resources/simulation-persona.d.ts.map +1 -1
  30. package/resources/simulation-run-plan-job.d.mts +1 -1
  31. package/resources/simulation-run-plan-job.d.mts.map +1 -1
  32. package/resources/simulation-run-plan-job.d.ts +1 -1
  33. package/resources/simulation-run-plan-job.d.ts.map +1 -1
  34. package/src/client.ts +0 -10
  35. package/src/resources/call.ts +3 -3
  36. package/src/resources/index.ts +0 -2
  37. package/src/resources/simulation-job.ts +2 -2
  38. package/src/resources/simulation-persona.ts +6 -6
  39. package/src/resources/simulation-run-plan-job.ts +1 -1
  40. package/src/version.ts +1 -1
  41. package/version.d.mts +1 -1
  42. package/version.d.ts +1 -1
  43. package/version.js +1 -1
  44. package/version.mjs +1 -1
  45. package/resources/evaluation.d.mts +0 -4
  46. package/resources/evaluation.d.mts.map +0 -1
  47. package/resources/evaluation.d.ts +0 -4
  48. package/resources/evaluation.d.ts.map +0 -1
  49. package/resources/evaluation.js +0 -9
  50. package/resources/evaluation.js.map +0 -1
  51. package/resources/evaluation.mjs +0 -5
  52. package/resources/evaluation.mjs.map +0 -1
  53. package/resources/integrations.d.mts +0 -4
  54. package/resources/integrations.d.mts.map +0 -1
  55. package/resources/integrations.d.ts +0 -4
  56. package/resources/integrations.d.ts.map +0 -1
  57. package/resources/integrations.js +0 -9
  58. package/resources/integrations.js.map +0 -1
  59. package/resources/integrations.mjs +0 -5
  60. package/resources/integrations.mjs.map +0 -1
  61. package/src/resources/evaluation.ts +0 -5
  62. package/src/resources/integrations.ts +0 -5
@@ -1021,8 +1021,8 @@ export interface CallCreateParams {
1021
1021
  interfaceType: 'PHONE' | 'WEB';
1022
1022
 
1023
1023
  /**
1024
- * URL of source recording (must be an accessible WAV, MP3, or MP4 file). Can be a
1025
- * signed URL.
1024
+ * URL of source recording (must be an accessible WAV, MP3, MP4, or OGG file). Can
1025
+ * be a signed URL.
1026
1026
  */
1027
1027
  recordingUrl: string;
1028
1028
 
@@ -1093,7 +1093,7 @@ export interface CallCreateParams {
1093
1093
 
1094
1094
  /**
1095
1095
  * URL of source stereo recording. Must be accessible. Can be a signed URL.
1096
- * Supported formats: WAV, MP3, MP4.
1096
+ * Supported formats: WAV, MP3, MP4, OGG.
1097
1097
  */
1098
1098
  stereoRecordingUrl?: string;
1099
1099
 
@@ -34,7 +34,6 @@ export {
34
34
  type CallGetTranscriptParams,
35
35
  type CallListMetricsParams,
36
36
  } from './call';
37
- export { Evaluation } from './evaluation';
38
37
  export {
39
38
  HTTPRequestDefinition,
40
39
  type HTTPRequestDefinitionCreateResponse,
@@ -46,7 +45,6 @@ export {
46
45
  type HTTPRequestDefinitionListParams,
47
46
  } from './http-request-definition';
48
47
  export { Health, type HealthGetResponse } from './health';
49
- export { Integrations } from './integrations';
50
48
  export {
51
49
  Metric,
52
50
  type MetricCreateDefinitionResponse,
@@ -281,7 +281,7 @@ export namespace SimulationJobGetByIDResponse {
281
281
  /**
282
282
  * Speech pace of the persona
283
283
  */
284
- speechPace: 'SLOW' | 'NORMAL' | 'FAST';
284
+ speechPace: 'SUPER_SLOW' | 'SLOW' | 'NORMAL' | 'FAST' | 'SUPER_FAST';
285
285
 
286
286
  /**
287
287
  * Last update timestamp
@@ -562,7 +562,7 @@ export namespace SimulationJobLookupResponse {
562
562
  /**
563
563
  * Speech pace of the persona
564
564
  */
565
- speechPace: 'SLOW' | 'NORMAL' | 'FAST';
565
+ speechPace: 'SUPER_SLOW' | 'SLOW' | 'NORMAL' | 'FAST' | 'SUPER_FAST';
566
566
 
567
567
  /**
568
568
  * Last update timestamp
@@ -228,7 +228,7 @@ export namespace SimulationPersonaCreateResponse {
228
228
  /**
229
229
  * Speech pace of the persona
230
230
  */
231
- speechPace: 'SLOW' | 'NORMAL' | 'FAST';
231
+ speechPace: 'SUPER_SLOW' | 'SLOW' | 'NORMAL' | 'FAST' | 'SUPER_FAST';
232
232
 
233
233
  /**
234
234
  * Last update timestamp
@@ -405,7 +405,7 @@ export namespace SimulationPersonaUpdateResponse {
405
405
  /**
406
406
  * Speech pace of the persona
407
407
  */
408
- speechPace: 'SLOW' | 'NORMAL' | 'FAST';
408
+ speechPace: 'SUPER_SLOW' | 'SLOW' | 'NORMAL' | 'FAST' | 'SUPER_FAST';
409
409
 
410
410
  /**
411
411
  * Last update timestamp
@@ -584,7 +584,7 @@ export namespace SimulationPersonaListResponse {
584
584
  /**
585
585
  * Speech pace of the persona
586
586
  */
587
- speechPace: 'SLOW' | 'NORMAL' | 'FAST';
587
+ speechPace: 'SUPER_SLOW' | 'SLOW' | 'NORMAL' | 'FAST' | 'SUPER_FAST';
588
588
 
589
589
  /**
590
590
  * Last update timestamp
@@ -778,7 +778,7 @@ export namespace SimulationPersonaGetByIDResponse {
778
778
  /**
779
779
  * Speech pace of the persona
780
780
  */
781
- speechPace: 'SLOW' | 'NORMAL' | 'FAST';
781
+ speechPace: 'SUPER_SLOW' | 'SLOW' | 'NORMAL' | 'FAST' | 'SUPER_FAST';
782
782
 
783
783
  /**
784
784
  * Last update timestamp
@@ -955,7 +955,7 @@ export interface SimulationPersonaCreateParams {
955
955
  /**
956
956
  * Speech pace of the persona
957
957
  */
958
- speechPace?: 'SLOW' | 'NORMAL' | 'FAST';
958
+ speechPace?: 'SUPER_SLOW' | 'SLOW' | 'NORMAL' | 'FAST' | 'SUPER_FAST';
959
959
  }
960
960
 
961
961
  export interface SimulationPersonaUpdateParams {
@@ -1111,7 +1111,7 @@ export interface SimulationPersonaUpdateParams {
1111
1111
  /**
1112
1112
  * Speech pace of the persona
1113
1113
  */
1114
- speechPace?: 'SLOW' | 'NORMAL' | 'FAST';
1114
+ speechPace?: 'SUPER_SLOW' | 'SLOW' | 'NORMAL' | 'FAST' | 'SUPER_FAST';
1115
1115
  }
1116
1116
 
1117
1117
  export interface SimulationPersonaListParams {
@@ -448,7 +448,7 @@ export namespace SimulationRunPlanJobGetByIDResponse {
448
448
  /**
449
449
  * Speech pace of the persona
450
450
  */
451
- speechPace: 'SLOW' | 'NORMAL' | 'FAST';
451
+ speechPace: 'SUPER_SLOW' | 'SLOW' | 'NORMAL' | 'FAST' | 'SUPER_FAST';
452
452
 
453
453
  /**
454
454
  * Last update timestamp
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '2.27.0'; // x-release-please-version
1
+ export const VERSION = '2.29.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "2.27.0";
1
+ export declare const VERSION = "2.29.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "2.27.0";
1
+ export declare const VERSION = "2.29.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '2.27.0'; // x-release-please-version
4
+ exports.VERSION = '2.29.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '2.27.0'; // x-release-please-version
1
+ export const VERSION = '2.29.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map
@@ -1,4 +0,0 @@
1
- import { APIResource } from "../core/resource.mjs";
2
- export declare class Evaluation extends APIResource {
3
- }
4
- //# sourceMappingURL=evaluation.d.mts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"evaluation.d.mts","sourceRoot":"","sources":["../src/resources/evaluation.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;AAEtB,qBAAa,UAAW,SAAQ,WAAW;CAAG"}
@@ -1,4 +0,0 @@
1
- import { APIResource } from "../core/resource.js";
2
- export declare class Evaluation extends APIResource {
3
- }
4
- //# sourceMappingURL=evaluation.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"evaluation.d.ts","sourceRoot":"","sources":["../src/resources/evaluation.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;AAEtB,qBAAa,UAAW,SAAQ,WAAW;CAAG"}
@@ -1,9 +0,0 @@
1
- "use strict";
2
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.Evaluation = void 0;
5
- const resource_1 = require("../core/resource.js");
6
- class Evaluation extends resource_1.APIResource {
7
- }
8
- exports.Evaluation = Evaluation;
9
- //# sourceMappingURL=evaluation.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"evaluation.js","sourceRoot":"","sources":["../src/resources/evaluation.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAE/C,MAAa,UAAW,SAAQ,sBAAW;CAAG;AAA9C,gCAA8C"}
@@ -1,5 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
- import { APIResource } from "../core/resource.mjs";
3
- export class Evaluation extends APIResource {
4
- }
5
- //# sourceMappingURL=evaluation.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"evaluation.mjs","sourceRoot":"","sources":["../src/resources/evaluation.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAEtB,MAAM,OAAO,UAAW,SAAQ,WAAW;CAAG"}
@@ -1,4 +0,0 @@
1
- import { APIResource } from "../core/resource.mjs";
2
- export declare class Integrations extends APIResource {
3
- }
4
- //# sourceMappingURL=integrations.d.mts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"integrations.d.mts","sourceRoot":"","sources":["../src/resources/integrations.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;AAEtB,qBAAa,YAAa,SAAQ,WAAW;CAAG"}
@@ -1,4 +0,0 @@
1
- import { APIResource } from "../core/resource.js";
2
- export declare class Integrations extends APIResource {
3
- }
4
- //# sourceMappingURL=integrations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"integrations.d.ts","sourceRoot":"","sources":["../src/resources/integrations.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;AAEtB,qBAAa,YAAa,SAAQ,WAAW;CAAG"}
@@ -1,9 +0,0 @@
1
- "use strict";
2
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.Integrations = void 0;
5
- const resource_1 = require("../core/resource.js");
6
- class Integrations extends resource_1.APIResource {
7
- }
8
- exports.Integrations = Integrations;
9
- //# sourceMappingURL=integrations.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"integrations.js","sourceRoot":"","sources":["../src/resources/integrations.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAE/C,MAAa,YAAa,SAAQ,sBAAW;CAAG;AAAhD,oCAAgD"}
@@ -1,5 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
- import { APIResource } from "../core/resource.mjs";
3
- export class Integrations extends APIResource {
4
- }
5
- //# sourceMappingURL=integrations.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"integrations.mjs","sourceRoot":"","sources":["../src/resources/integrations.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAEtB,MAAM,OAAO,YAAa,SAAQ,WAAW;CAAG"}
@@ -1,5 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- import { APIResource } from '../core/resource';
4
-
5
- export class Evaluation extends APIResource {}
@@ -1,5 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- import { APIResource } from '../core/resource';
4
-
5
- export class Integrations extends APIResource {}