@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.
- package/CHANGELOG.md +34 -0
- package/README.md +60 -18
- package/client.d.mts +0 -6
- package/client.d.mts.map +1 -1
- package/client.d.ts +0 -6
- package/client.d.ts.map +1 -1
- package/client.js +0 -6
- package/client.js.map +1 -1
- package/client.mjs +0 -6
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/call.d.mts +3 -3
- package/resources/call.d.ts +3 -3
- package/resources/index.d.mts +0 -2
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +0 -2
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +1 -5
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +0 -2
- package/resources/index.mjs.map +1 -1
- package/resources/simulation-job.d.mts +2 -2
- package/resources/simulation-job.d.mts.map +1 -1
- package/resources/simulation-job.d.ts +2 -2
- package/resources/simulation-job.d.ts.map +1 -1
- package/resources/simulation-persona.d.mts +6 -6
- package/resources/simulation-persona.d.mts.map +1 -1
- package/resources/simulation-persona.d.ts +6 -6
- package/resources/simulation-persona.d.ts.map +1 -1
- package/resources/simulation-run-plan-job.d.mts +1 -1
- package/resources/simulation-run-plan-job.d.mts.map +1 -1
- package/resources/simulation-run-plan-job.d.ts +1 -1
- package/resources/simulation-run-plan-job.d.ts.map +1 -1
- package/src/client.ts +0 -10
- package/src/resources/call.ts +3 -3
- package/src/resources/index.ts +0 -2
- package/src/resources/simulation-job.ts +2 -2
- package/src/resources/simulation-persona.ts +6 -6
- package/src/resources/simulation-run-plan-job.ts +1 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
- package/resources/evaluation.d.mts +0 -4
- package/resources/evaluation.d.mts.map +0 -1
- package/resources/evaluation.d.ts +0 -4
- package/resources/evaluation.d.ts.map +0 -1
- package/resources/evaluation.js +0 -9
- package/resources/evaluation.js.map +0 -1
- package/resources/evaluation.mjs +0 -5
- package/resources/evaluation.mjs.map +0 -1
- package/resources/integrations.d.mts +0 -4
- package/resources/integrations.d.mts.map +0 -1
- package/resources/integrations.d.ts +0 -4
- package/resources/integrations.d.ts.map +0 -1
- package/resources/integrations.js +0 -9
- package/resources/integrations.js.map +0 -1
- package/resources/integrations.mjs +0 -5
- package/resources/integrations.mjs.map +0 -1
- package/src/resources/evaluation.ts +0 -5
- package/src/resources/integrations.ts +0 -5
package/src/resources/call.ts
CHANGED
|
@@ -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
|
|
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
|
|
package/src/resources/index.ts
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
1
|
+
export declare const VERSION = "2.29.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.29.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.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 +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"}
|
package/resources/evaluation.js
DELETED
|
@@ -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"}
|
package/resources/evaluation.mjs
DELETED
|
@@ -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 +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 +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 +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"}
|