@roarkanalytics/sdk 3.2.1 → 3.3.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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.3.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v3.2.1...v3.3.0) (2026-09-03)
4
+
5
+
6
+ ### Features
7
+
8
+ * **api:** api update ([#1179](https://github.com/roarkhq/sdk-roark-analytics-node/issues/1179)) ([b5bed81](https://github.com/roarkhq/sdk-roark-analytics-node/commit/b5bed818245d5d9755b66d9bddad6e3f3143cd8e))
9
+
10
+
11
+ ### Chores
12
+
13
+ * fold next into main ([ec234f1](https://github.com/roarkhq/sdk-roark-analytics-node/commit/ec234f1caf034617e042c16fac1e8c6a39b5d937))
14
+
3
15
  ## [3.2.1](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v3.2.0...v3.2.1) (2026-08-31)
4
16
 
5
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roarkanalytics/sdk",
3
- "version": "3.2.1",
3
+ "version": "3.3.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",
@@ -202,8 +202,12 @@ export declare namespace CustomerFlowCreateResponse {
202
202
  */
203
203
  agents: Array<ScriptedCustomerFlow.Agent>;
204
204
  /**
205
- * DETERMINISTIC runs one variant per path through the graph. ADAPTIVE collapses
206
- * the paths into a single variant the simulated customer adapts across.
205
+ * How a run walks the graph. DETERMINISTIC ("Simulate every path" in the app)
206
+ * places one call per variant, each following its path exactly whatever the agent
207
+ * says. ADAPTIVE ("Adapt to your agent") collapses the paths into one call PER
208
+ * PERSONA, on which the simulated customer picks a branch from what the agent
209
+ * actually said. Both modes speak the exact authored lines, and neither changes
210
+ * how metrics or expectations grade.
207
211
  */
208
212
  branchingMode: 'DETERMINISTIC' | 'ADAPTIVE';
209
213
  /**
@@ -1530,8 +1534,12 @@ export declare namespace CustomerFlowUpdateResponse {
1530
1534
  */
1531
1535
  agents: Array<ScriptedCustomerFlow.Agent>;
1532
1536
  /**
1533
- * DETERMINISTIC runs one variant per path through the graph. ADAPTIVE collapses
1534
- * the paths into a single variant the simulated customer adapts across.
1537
+ * How a run walks the graph. DETERMINISTIC ("Simulate every path" in the app)
1538
+ * places one call per variant, each following its path exactly whatever the agent
1539
+ * says. ADAPTIVE ("Adapt to your agent") collapses the paths into one call PER
1540
+ * PERSONA, on which the simulated customer picks a branch from what the agent
1541
+ * actually said. Both modes speak the exact authored lines, and neither changes
1542
+ * how metrics or expectations grade.
1535
1543
  */
1536
1544
  branchingMode: 'DETERMINISTIC' | 'ADAPTIVE';
1537
1545
  /**
@@ -2859,8 +2867,12 @@ export declare namespace CustomerFlowListResponse {
2859
2867
  */
2860
2868
  agents: Array<ScriptedCustomerFlow.Agent>;
2861
2869
  /**
2862
- * DETERMINISTIC runs one variant per path through the graph. ADAPTIVE collapses
2863
- * the paths into a single variant the simulated customer adapts across.
2870
+ * How a run walks the graph. DETERMINISTIC ("Simulate every path" in the app)
2871
+ * places one call per variant, each following its path exactly whatever the agent
2872
+ * says. ADAPTIVE ("Adapt to your agent") collapses the paths into one call PER
2873
+ * PERSONA, on which the simulated customer picks a branch from what the agent
2874
+ * actually said. Both modes speak the exact authored lines, and neither changes
2875
+ * how metrics or expectations grade.
2864
2876
  */
2865
2877
  branchingMode: 'DETERMINISTIC' | 'ADAPTIVE';
2866
2878
  /**
@@ -4212,8 +4224,12 @@ export declare namespace CustomerFlowGetByIDResponse {
4212
4224
  */
4213
4225
  agents: Array<ScriptedCustomerFlow.Agent>;
4214
4226
  /**
4215
- * DETERMINISTIC runs one variant per path through the graph. ADAPTIVE collapses
4216
- * the paths into a single variant the simulated customer adapts across.
4227
+ * How a run walks the graph. DETERMINISTIC ("Simulate every path" in the app)
4228
+ * places one call per variant, each following its path exactly whatever the agent
4229
+ * says. ADAPTIVE ("Adapt to your agent") collapses the paths into one call PER
4230
+ * PERSONA, on which the simulated customer picks a branch from what the agent
4231
+ * actually said. Both modes speak the exact authored lines, and neither changes
4232
+ * how metrics or expectations grade.
4217
4233
  */
4218
4234
  branchingMode: 'DETERMINISTIC' | 'ADAPTIVE';
4219
4235
  /**
@@ -6671,8 +6687,12 @@ export declare namespace CustomerFlowCreateParams {
6671
6687
  */
6672
6688
  agentIds?: Array<string>;
6673
6689
  /**
6674
- * DETERMINISTIC (the default) runs one variant per path through the graph;
6675
- * ADAPTIVE collapses the paths into one call the simulated customer adapts across.
6690
+ * How a run walks the graph. DETERMINISTIC ("Simulate every path" in the app)
6691
+ * places one call per variant, each following its path exactly whatever the agent
6692
+ * says. ADAPTIVE ("Adapt to your agent") collapses the paths into one call PER
6693
+ * PERSONA, on which the simulated customer picks a branch from what the agent
6694
+ * actually said. Both modes speak the exact authored lines, and neither changes
6695
+ * how metrics or expectations grade. (DETERMINISTIC is the default.)
6676
6696
  */
6677
6697
  branchingMode?: 'DETERMINISTIC' | 'ADAPTIVE';
6678
6698
  description?: string | null;
@@ -6753,7 +6773,12 @@ export interface CustomerFlowUpdateParams {
6753
6773
  */
6754
6774
  agentIds?: Array<string>;
6755
6775
  /**
6756
- * Scripted flows only.
6776
+ * Scripted flows only. How a run walks the graph. DETERMINISTIC ("Simulate every
6777
+ * path" in the app) places one call per variant, each following its path exactly
6778
+ * whatever the agent says. ADAPTIVE ("Adapt to your agent") collapses the paths
6779
+ * into one call PER PERSONA, on which the simulated customer picks a branch from
6780
+ * what the agent actually said. Both modes speak the exact authored lines, and
6781
+ * neither changes how metrics or expectations grade.
6757
6782
  */
6758
6783
  branchingMode?: 'DETERMINISTIC' | 'ADAPTIVE';
6759
6784
  description?: string | null;