@roarkanalytics/sdk 2.30.0 → 2.31.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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.31.0 (2026-04-28)
4
+
5
+ Full Changelog: [v2.30.0...v2.31.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v2.30.0...v2.31.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([9cdd3b5](https://github.com/roarkhq/sdk-roark-analytics-node/commit/9cdd3b5eb68fd8713068268a2b1c995c8eed8f26))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **internal:** more robust bootstrap script ([892c263](https://github.com/roarkhq/sdk-roark-analytics-node/commit/892c2636c1d353f8ab0b630603aae2b2a14cb0db))
15
+
3
16
  ## 2.30.0 (2026-04-20)
4
17
 
5
18
  Full Changelog: [v2.29.0...v2.30.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v2.29.0...v2.30.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roarkanalytics/sdk",
3
- "version": "2.30.0",
3
+ "version": "2.31.0",
4
4
  "description": "The official TypeScript library for the Roark API",
5
5
  "author": "Roark <james@roark.ai>",
6
6
  "types": "./index.d.ts",
@@ -343,11 +343,11 @@ export declare namespace CallGetTranscriptResponse {
343
343
  */
344
344
  interface Entry {
345
345
  /**
346
- * End time offset in milliseconds from the start of the call
346
+ * End time offset in milliseconds from the start of the conversation
347
347
  */
348
348
  endOffsetMs: number;
349
349
  /**
350
- * ID of the conversation participant who spoke this entry. References
350
+ * ID of the conversation participant who produced this entry. References
351
351
  * participants[].id.
352
352
  */
353
353
  participantId: string | null;
@@ -356,7 +356,7 @@ export declare namespace CallGetTranscriptResponse {
356
356
  */
357
357
  role: 'AGENT' | 'CUSTOMER' | null;
358
358
  /**
359
- * Start time offset in milliseconds from the start of the call
359
+ * Start time offset in milliseconds from the start of the conversation
360
360
  */
361
361
  startOffsetMs: number;
362
362
  /**
@@ -572,13 +572,13 @@ export declare namespace CallListEvaluationRunsResponse {
572
572
  }
573
573
  export interface CallListMetricsResponse {
574
574
  /**
575
- * Call metrics response payload grouped by metric definition
575
+ * Conversation metrics response payload grouped by metric definition
576
576
  */
577
577
  data: Array<CallListMetricsResponse.Data>;
578
578
  }
579
579
  export declare namespace CallListMetricsResponse {
580
580
  /**
581
- * Call metric data grouped by metric definition
581
+ * Metric data grouped by metric definition
582
582
  */
583
583
  interface Data {
584
584
  /**
@@ -627,8 +627,8 @@ export declare namespace CallListMetricsResponse {
627
627
  */
628
628
  confidence: number;
629
629
  /**
630
- * Context level: CALL (entire call), SEGMENT (single segment), SEGMENT_RANGE
631
- * (between/across segments)
630
+ * Context level: CALL (entire conversation), SEGMENT (single segment),
631
+ * SEGMENT_RANGE (between/across segments)
632
632
  */
633
633
  context: 'CALL' | 'SEGMENT' | 'SEGMENT_RANGE';
634
634
  /**
@@ -666,7 +666,7 @@ export declare namespace CallListMetricsResponse {
666
666
  */
667
667
  interface FromSegment {
668
668
  /**
669
- * Starting segment ID
669
+ * Segment ID
670
670
  */
671
671
  id: string;
672
672
  /**
@@ -678,7 +678,7 @@ export declare namespace CallListMetricsResponse {
678
678
  */
679
679
  startOffsetMs: number;
680
680
  /**
681
- * Starting segment text content
681
+ * Segment text content
682
682
  */
683
683
  text: string;
684
684
  }
@@ -708,7 +708,7 @@ export declare namespace CallListMetricsResponse {
708
708
  */
709
709
  interface ToSegment {
710
710
  /**
711
- * Ending segment ID
711
+ * Segment ID
712
712
  */
713
713
  id: string;
714
714
  /**
@@ -720,7 +720,7 @@ export declare namespace CallListMetricsResponse {
720
720
  */
721
721
  startOffsetMs: number;
722
722
  /**
723
- * Ending segment text content
723
+ * Segment text content
724
724
  */
725
725
  text: string;
726
726
  }
@@ -343,11 +343,11 @@ export declare namespace CallGetTranscriptResponse {
343
343
  */
344
344
  interface Entry {
345
345
  /**
346
- * End time offset in milliseconds from the start of the call
346
+ * End time offset in milliseconds from the start of the conversation
347
347
  */
348
348
  endOffsetMs: number;
349
349
  /**
350
- * ID of the conversation participant who spoke this entry. References
350
+ * ID of the conversation participant who produced this entry. References
351
351
  * participants[].id.
352
352
  */
353
353
  participantId: string | null;
@@ -356,7 +356,7 @@ export declare namespace CallGetTranscriptResponse {
356
356
  */
357
357
  role: 'AGENT' | 'CUSTOMER' | null;
358
358
  /**
359
- * Start time offset in milliseconds from the start of the call
359
+ * Start time offset in milliseconds from the start of the conversation
360
360
  */
361
361
  startOffsetMs: number;
362
362
  /**
@@ -572,13 +572,13 @@ export declare namespace CallListEvaluationRunsResponse {
572
572
  }
573
573
  export interface CallListMetricsResponse {
574
574
  /**
575
- * Call metrics response payload grouped by metric definition
575
+ * Conversation metrics response payload grouped by metric definition
576
576
  */
577
577
  data: Array<CallListMetricsResponse.Data>;
578
578
  }
579
579
  export declare namespace CallListMetricsResponse {
580
580
  /**
581
- * Call metric data grouped by metric definition
581
+ * Metric data grouped by metric definition
582
582
  */
583
583
  interface Data {
584
584
  /**
@@ -627,8 +627,8 @@ export declare namespace CallListMetricsResponse {
627
627
  */
628
628
  confidence: number;
629
629
  /**
630
- * Context level: CALL (entire call), SEGMENT (single segment), SEGMENT_RANGE
631
- * (between/across segments)
630
+ * Context level: CALL (entire conversation), SEGMENT (single segment),
631
+ * SEGMENT_RANGE (between/across segments)
632
632
  */
633
633
  context: 'CALL' | 'SEGMENT' | 'SEGMENT_RANGE';
634
634
  /**
@@ -666,7 +666,7 @@ export declare namespace CallListMetricsResponse {
666
666
  */
667
667
  interface FromSegment {
668
668
  /**
669
- * Starting segment ID
669
+ * Segment ID
670
670
  */
671
671
  id: string;
672
672
  /**
@@ -678,7 +678,7 @@ export declare namespace CallListMetricsResponse {
678
678
  */
679
679
  startOffsetMs: number;
680
680
  /**
681
- * Starting segment text content
681
+ * Segment text content
682
682
  */
683
683
  text: string;
684
684
  }
@@ -708,7 +708,7 @@ export declare namespace CallListMetricsResponse {
708
708
  */
709
709
  interface ToSegment {
710
710
  /**
711
- * Ending segment ID
711
+ * Segment ID
712
712
  */
713
713
  id: string;
714
714
  /**
@@ -720,7 +720,7 @@ export declare namespace CallListMetricsResponse {
720
720
  */
721
721
  startOffsetMs: number;
722
722
  /**
723
- * Ending segment text content
723
+ * Segment text content
724
724
  */
725
725
  text: string;
726
726
  }
@@ -493,12 +493,12 @@ export namespace CallGetTranscriptResponse {
493
493
  */
494
494
  export interface Entry {
495
495
  /**
496
- * End time offset in milliseconds from the start of the call
496
+ * End time offset in milliseconds from the start of the conversation
497
497
  */
498
498
  endOffsetMs: number;
499
499
 
500
500
  /**
501
- * ID of the conversation participant who spoke this entry. References
501
+ * ID of the conversation participant who produced this entry. References
502
502
  * participants[].id.
503
503
  */
504
504
  participantId: string | null;
@@ -509,7 +509,7 @@ export namespace CallGetTranscriptResponse {
509
509
  role: 'AGENT' | 'CUSTOMER' | null;
510
510
 
511
511
  /**
512
- * Start time offset in milliseconds from the start of the call
512
+ * Start time offset in milliseconds from the start of the conversation
513
513
  */
514
514
  startOffsetMs: number;
515
515
 
@@ -774,14 +774,14 @@ export namespace CallListEvaluationRunsResponse {
774
774
 
775
775
  export interface CallListMetricsResponse {
776
776
  /**
777
- * Call metrics response payload grouped by metric definition
777
+ * Conversation metrics response payload grouped by metric definition
778
778
  */
779
779
  data: Array<CallListMetricsResponse.Data>;
780
780
  }
781
781
 
782
782
  export namespace CallListMetricsResponse {
783
783
  /**
784
- * Call metric data grouped by metric definition
784
+ * Metric data grouped by metric definition
785
785
  */
786
786
  export interface Data {
787
787
  /**
@@ -840,8 +840,8 @@ export namespace CallListMetricsResponse {
840
840
  confidence: number;
841
841
 
842
842
  /**
843
- * Context level: CALL (entire call), SEGMENT (single segment), SEGMENT_RANGE
844
- * (between/across segments)
843
+ * Context level: CALL (entire conversation), SEGMENT (single segment),
844
+ * SEGMENT_RANGE (between/across segments)
845
845
  */
846
846
  context: 'CALL' | 'SEGMENT' | 'SEGMENT_RANGE';
847
847
 
@@ -887,7 +887,7 @@ export namespace CallListMetricsResponse {
887
887
  */
888
888
  export interface FromSegment {
889
889
  /**
890
- * Starting segment ID
890
+ * Segment ID
891
891
  */
892
892
  id: string;
893
893
 
@@ -902,7 +902,7 @@ export namespace CallListMetricsResponse {
902
902
  startOffsetMs: number;
903
903
 
904
904
  /**
905
- * Starting segment text content
905
+ * Segment text content
906
906
  */
907
907
  text: string;
908
908
  }
@@ -937,7 +937,7 @@ export namespace CallListMetricsResponse {
937
937
  */
938
938
  export interface ToSegment {
939
939
  /**
940
- * Ending segment ID
940
+ * Segment ID
941
941
  */
942
942
  id: string;
943
943
 
@@ -952,7 +952,7 @@ export namespace CallListMetricsResponse {
952
952
  startOffsetMs: number;
953
953
 
954
954
  /**
955
- * Ending segment text content
955
+ * Segment text content
956
956
  */
957
957
  text: string;
958
958
  }
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '2.30.0'; // x-release-please-version
1
+ export const VERSION = '2.31.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "2.30.0";
1
+ export declare const VERSION = "2.31.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "2.30.0";
1
+ export declare const VERSION = "2.31.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.30.0'; // x-release-please-version
4
+ exports.VERSION = '2.31.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '2.30.0'; // x-release-please-version
1
+ export const VERSION = '2.31.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map