@roarkanalytics/sdk 3.21.0 → 4.0.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/client.d.mts +3 -3
- package/client.d.ts +3 -3
- package/client.js +3 -3
- package/client.mjs +3 -3
- package/package.json +1 -1
- package/resources/{autoimprove-fix.d.mts → autoimprove-job.d.mts} +105 -105
- package/resources/{autoimprove-fix.d.mts.map → autoimprove-job.d.mts.map} +1 -1
- package/resources/{autoimprove-fix.d.ts → autoimprove-job.d.ts} +105 -105
- package/resources/{autoimprove-fix.d.ts.map → autoimprove-job.d.ts.map} +1 -1
- package/resources/{autoimprove-fix.js → autoimprove-job.js} +40 -40
- package/resources/{autoimprove-fix.js.map → autoimprove-job.js.map} +1 -1
- package/resources/{autoimprove-fix.mjs → autoimprove-job.mjs} +38 -38
- package/resources/{autoimprove-fix.mjs.map → autoimprove-job.mjs.map} +1 -1
- package/resources/config.d.mts +9 -0
- package/resources/config.d.mts.map +1 -1
- package/resources/config.d.ts +9 -0
- package/resources/config.d.ts.map +1 -1
- package/resources/customer-flow.d.mts +104 -19
- package/resources/customer-flow.d.mts.map +1 -1
- package/resources/customer-flow.d.ts +104 -19
- package/resources/customer-flow.d.ts.map +1 -1
- package/resources/index.d.mts +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.js +3 -3
- package/resources/index.mjs +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-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 +27 -27
- package/src/resources/{autoimprove-fix.ts → autoimprove-job.ts} +127 -127
- package/src/resources/config.ts +13 -0
- package/src/resources/customer-flow.ts +135 -20
- package/src/resources/index.ts +13 -13
- package/src/resources/simulation-job.ts +2 -2
- 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.mts.map +1 -1
- package/version.d.ts +1 -1
- package/version.d.ts.map +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
- package/version.mjs +1 -1
- package/version.mjs.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.0.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v3.21.0...v4.0.0) (2026-09-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* **api:** removes resources, methods and types from the public surface.
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **api:** api update ([#1260](https://github.com/roarkhq/sdk-roark-analytics-node/issues/1260)) ([552c4ab](https://github.com/roarkhq/sdk-roark-analytics-node/commit/552c4abb24b007215c89fcfa4d432f7cc8d9521f))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Chores
|
|
16
|
+
|
|
17
|
+
* fold next into main ([bbdb74f](https://github.com/roarkhq/sdk-roark-analytics-node/commit/bbdb74f2132f0cd3451f1b473f8175971e2c0208))
|
|
18
|
+
|
|
3
19
|
## [3.21.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v3.20.0...v3.21.0) (2026-09-18)
|
|
4
20
|
|
|
5
21
|
|
package/client.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ import { APIPromise } from "./core/api-promise.mjs";
|
|
|
9
9
|
import { Agent, AgentCreateParams, AgentCreateResponse, AgentGetByIDResponse, AgentListParams, AgentListResponse, AgentUpdateParams, AgentUpdateResponse } from "./resources/agent.mjs";
|
|
10
10
|
import { AgentEndpoint, AgentEndpointCreateParams, AgentEndpointCreateResponse, AgentEndpointGetByIDResponse, AgentEndpointListParams, AgentEndpointListResponse, AgentEndpointUpdateParams, AgentEndpointUpdateResponse } from "./resources/agent-endpoint.mjs";
|
|
11
11
|
import { AgentPrompt, AgentPromptListResponse, AgentPromptListVersionsParams, AgentPromptListVersionsResponse, AgentPromptUpdateParams, AgentPromptUpdateResponse } from "./resources/agent-prompt.mjs";
|
|
12
|
-
import {
|
|
12
|
+
import { AutoimproveJob, AutoimproveJobAnswerQuestionParams, AutoimproveJobAnswerQuestionResponse, AutoimproveJobCancelResponse, AutoimproveJobCreateParams, AutoimproveJobCreateResponse, AutoimproveJobDismissResponse, AutoimproveJobGetByIDResponse, AutoimproveJobListResponse, AutoimproveJobPromoteResponse, AutoimproveJobSendGuidanceParams, AutoimproveJobSendGuidanceResponse, AutoimproveLogEntry } from "./resources/autoimprove-job.mjs";
|
|
13
13
|
import { Benchmark, BenchmarkGetLeaderboardParams, BenchmarkGetLeaderboardResponse, BenchmarkGetTargetParams, BenchmarkGetTargetResponse, BenchmarkListMetricsParams, BenchmarkListMetricsResponse, BenchmarkListSuitesResponse, BenchmarkListTargetHistoryParams, BenchmarkListTargetHistoryResponse, BenchmarkListTargetScoreSamplesParams, BenchmarkListTargetScoreSamplesResponse } from "./resources/benchmark.mjs";
|
|
14
14
|
import { Call, CallAppendToolInvocationsParams, CallAppendToolInvocationsResponse, CallCreateParams, CallCreateResponse, CallGetByIDResponse, CallGetTranscriptParams, CallGetTranscriptResponse, CallListMetricsParams, CallListMetricsResponse, CallListParams, CallListResponse, CallListSentimentRunsResponse } from "./resources/call.mjs";
|
|
15
15
|
import { Bundle, Config, ConfigApplyParams, ConfigApplyResponse, ConfigDiffParams, ConfigDiffResponse, ConfigFlowStep } from "./resources/config.mjs";
|
|
@@ -204,7 +204,7 @@ export declare class Roark {
|
|
|
204
204
|
simulationPersona: API.SimulationPersona;
|
|
205
205
|
simulationEnvironment: API.SimulationEnvironment;
|
|
206
206
|
simulationTemplate: API.SimulationTemplate;
|
|
207
|
-
|
|
207
|
+
autoimproveJob: API.AutoimproveJob;
|
|
208
208
|
customerFlow: API.CustomerFlow;
|
|
209
209
|
customerFlowEdgeCase: API.CustomerFlowEdgeCase;
|
|
210
210
|
agent: API.Agent;
|
|
@@ -230,7 +230,7 @@ export declare namespace Roark {
|
|
|
230
230
|
export { SimulationPersona as SimulationPersona, type SimulationPersonaCreateResponse as SimulationPersonaCreateResponse, type SimulationPersonaUpdateResponse as SimulationPersonaUpdateResponse, type SimulationPersonaListResponse as SimulationPersonaListResponse, type SimulationPersonaGetByIDResponse as SimulationPersonaGetByIDResponse, type SimulationPersonaCreateParams as SimulationPersonaCreateParams, type SimulationPersonaUpdateParams as SimulationPersonaUpdateParams, type SimulationPersonaListParams as SimulationPersonaListParams, };
|
|
231
231
|
export { SimulationEnvironment as SimulationEnvironment, type SimulationEnvironmentCreateResponse as SimulationEnvironmentCreateResponse, type SimulationEnvironmentUpdateResponse as SimulationEnvironmentUpdateResponse, type SimulationEnvironmentListResponse as SimulationEnvironmentListResponse, type SimulationEnvironmentDeleteResponse as SimulationEnvironmentDeleteResponse, type SimulationEnvironmentGetByIDResponse as SimulationEnvironmentGetByIDResponse, type SimulationEnvironmentCreateParams as SimulationEnvironmentCreateParams, type SimulationEnvironmentUpdateParams as SimulationEnvironmentUpdateParams, type SimulationEnvironmentListParams as SimulationEnvironmentListParams, };
|
|
232
232
|
export { SimulationTemplate as SimulationTemplate, type SimulationTemplateListResponse as SimulationTemplateListResponse, };
|
|
233
|
-
export {
|
|
233
|
+
export { AutoimproveJob as AutoimproveJob, type AutoimproveLogEntry as AutoimproveLogEntry, type AutoimproveJobCreateResponse as AutoimproveJobCreateResponse, type AutoimproveJobListResponse as AutoimproveJobListResponse, type AutoimproveJobAnswerQuestionResponse as AutoimproveJobAnswerQuestionResponse, type AutoimproveJobCancelResponse as AutoimproveJobCancelResponse, type AutoimproveJobDismissResponse as AutoimproveJobDismissResponse, type AutoimproveJobGetByIDResponse as AutoimproveJobGetByIDResponse, type AutoimproveJobPromoteResponse as AutoimproveJobPromoteResponse, type AutoimproveJobSendGuidanceResponse as AutoimproveJobSendGuidanceResponse, type AutoimproveJobCreateParams as AutoimproveJobCreateParams, type AutoimproveJobAnswerQuestionParams as AutoimproveJobAnswerQuestionParams, type AutoimproveJobSendGuidanceParams as AutoimproveJobSendGuidanceParams, };
|
|
234
234
|
export { CustomerFlow as CustomerFlow, type FlowStep as FlowStep, type CustomerFlowCreateResponse as CustomerFlowCreateResponse, type CustomerFlowUpdateResponse as CustomerFlowUpdateResponse, type CustomerFlowListResponse as CustomerFlowListResponse, type CustomerFlowDeleteResponse as CustomerFlowDeleteResponse, type CustomerFlowDuplicateResponse as CustomerFlowDuplicateResponse, type CustomerFlowGetByIDResponse as CustomerFlowGetByIDResponse, type CustomerFlowReplaceGraphResponse as CustomerFlowReplaceGraphResponse, type CustomerFlowUpdateHappyPathResponse as CustomerFlowUpdateHappyPathResponse, type CustomerFlowCreateParams as CustomerFlowCreateParams, type CustomerFlowUpdateParams as CustomerFlowUpdateParams, type CustomerFlowListParams as CustomerFlowListParams, type CustomerFlowDuplicateParams as CustomerFlowDuplicateParams, type CustomerFlowReplaceGraphParams as CustomerFlowReplaceGraphParams, type CustomerFlowUpdateHappyPathParams as CustomerFlowUpdateHappyPathParams, };
|
|
235
235
|
export { CustomerFlowEdgeCase as CustomerFlowEdgeCase, type CustomerFlowEdgeCaseUpdateResponse as CustomerFlowEdgeCaseUpdateResponse, type CustomerFlowEdgeCaseAddResponse as CustomerFlowEdgeCaseAddResponse, type CustomerFlowEdgeCasePromoteResponse as CustomerFlowEdgeCasePromoteResponse, type CustomerFlowEdgeCaseRemoveResponse as CustomerFlowEdgeCaseRemoveResponse, type CustomerFlowEdgeCaseUpdateParams as CustomerFlowEdgeCaseUpdateParams, type CustomerFlowEdgeCaseAddParams as CustomerFlowEdgeCaseAddParams, type CustomerFlowEdgeCasePromoteParams as CustomerFlowEdgeCasePromoteParams, type CustomerFlowEdgeCaseRemoveParams as CustomerFlowEdgeCaseRemoveParams, };
|
|
236
236
|
export { Agent as Agent, type AgentCreateResponse as AgentCreateResponse, type AgentUpdateResponse as AgentUpdateResponse, type AgentListResponse as AgentListResponse, type AgentGetByIDResponse as AgentGetByIDResponse, type AgentCreateParams as AgentCreateParams, type AgentUpdateParams as AgentUpdateParams, type AgentListParams as AgentListParams, };
|
package/client.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { APIPromise } from "./core/api-promise.js";
|
|
|
9
9
|
import { Agent, AgentCreateParams, AgentCreateResponse, AgentGetByIDResponse, AgentListParams, AgentListResponse, AgentUpdateParams, AgentUpdateResponse } from "./resources/agent.js";
|
|
10
10
|
import { AgentEndpoint, AgentEndpointCreateParams, AgentEndpointCreateResponse, AgentEndpointGetByIDResponse, AgentEndpointListParams, AgentEndpointListResponse, AgentEndpointUpdateParams, AgentEndpointUpdateResponse } from "./resources/agent-endpoint.js";
|
|
11
11
|
import { AgentPrompt, AgentPromptListResponse, AgentPromptListVersionsParams, AgentPromptListVersionsResponse, AgentPromptUpdateParams, AgentPromptUpdateResponse } from "./resources/agent-prompt.js";
|
|
12
|
-
import {
|
|
12
|
+
import { AutoimproveJob, AutoimproveJobAnswerQuestionParams, AutoimproveJobAnswerQuestionResponse, AutoimproveJobCancelResponse, AutoimproveJobCreateParams, AutoimproveJobCreateResponse, AutoimproveJobDismissResponse, AutoimproveJobGetByIDResponse, AutoimproveJobListResponse, AutoimproveJobPromoteResponse, AutoimproveJobSendGuidanceParams, AutoimproveJobSendGuidanceResponse, AutoimproveLogEntry } from "./resources/autoimprove-job.js";
|
|
13
13
|
import { Benchmark, BenchmarkGetLeaderboardParams, BenchmarkGetLeaderboardResponse, BenchmarkGetTargetParams, BenchmarkGetTargetResponse, BenchmarkListMetricsParams, BenchmarkListMetricsResponse, BenchmarkListSuitesResponse, BenchmarkListTargetHistoryParams, BenchmarkListTargetHistoryResponse, BenchmarkListTargetScoreSamplesParams, BenchmarkListTargetScoreSamplesResponse } from "./resources/benchmark.js";
|
|
14
14
|
import { Call, CallAppendToolInvocationsParams, CallAppendToolInvocationsResponse, CallCreateParams, CallCreateResponse, CallGetByIDResponse, CallGetTranscriptParams, CallGetTranscriptResponse, CallListMetricsParams, CallListMetricsResponse, CallListParams, CallListResponse, CallListSentimentRunsResponse } from "./resources/call.js";
|
|
15
15
|
import { Bundle, Config, ConfigApplyParams, ConfigApplyResponse, ConfigDiffParams, ConfigDiffResponse, ConfigFlowStep } from "./resources/config.js";
|
|
@@ -204,7 +204,7 @@ export declare class Roark {
|
|
|
204
204
|
simulationPersona: API.SimulationPersona;
|
|
205
205
|
simulationEnvironment: API.SimulationEnvironment;
|
|
206
206
|
simulationTemplate: API.SimulationTemplate;
|
|
207
|
-
|
|
207
|
+
autoimproveJob: API.AutoimproveJob;
|
|
208
208
|
customerFlow: API.CustomerFlow;
|
|
209
209
|
customerFlowEdgeCase: API.CustomerFlowEdgeCase;
|
|
210
210
|
agent: API.Agent;
|
|
@@ -230,7 +230,7 @@ export declare namespace Roark {
|
|
|
230
230
|
export { SimulationPersona as SimulationPersona, type SimulationPersonaCreateResponse as SimulationPersonaCreateResponse, type SimulationPersonaUpdateResponse as SimulationPersonaUpdateResponse, type SimulationPersonaListResponse as SimulationPersonaListResponse, type SimulationPersonaGetByIDResponse as SimulationPersonaGetByIDResponse, type SimulationPersonaCreateParams as SimulationPersonaCreateParams, type SimulationPersonaUpdateParams as SimulationPersonaUpdateParams, type SimulationPersonaListParams as SimulationPersonaListParams, };
|
|
231
231
|
export { SimulationEnvironment as SimulationEnvironment, type SimulationEnvironmentCreateResponse as SimulationEnvironmentCreateResponse, type SimulationEnvironmentUpdateResponse as SimulationEnvironmentUpdateResponse, type SimulationEnvironmentListResponse as SimulationEnvironmentListResponse, type SimulationEnvironmentDeleteResponse as SimulationEnvironmentDeleteResponse, type SimulationEnvironmentGetByIDResponse as SimulationEnvironmentGetByIDResponse, type SimulationEnvironmentCreateParams as SimulationEnvironmentCreateParams, type SimulationEnvironmentUpdateParams as SimulationEnvironmentUpdateParams, type SimulationEnvironmentListParams as SimulationEnvironmentListParams, };
|
|
232
232
|
export { SimulationTemplate as SimulationTemplate, type SimulationTemplateListResponse as SimulationTemplateListResponse, };
|
|
233
|
-
export {
|
|
233
|
+
export { AutoimproveJob as AutoimproveJob, type AutoimproveLogEntry as AutoimproveLogEntry, type AutoimproveJobCreateResponse as AutoimproveJobCreateResponse, type AutoimproveJobListResponse as AutoimproveJobListResponse, type AutoimproveJobAnswerQuestionResponse as AutoimproveJobAnswerQuestionResponse, type AutoimproveJobCancelResponse as AutoimproveJobCancelResponse, type AutoimproveJobDismissResponse as AutoimproveJobDismissResponse, type AutoimproveJobGetByIDResponse as AutoimproveJobGetByIDResponse, type AutoimproveJobPromoteResponse as AutoimproveJobPromoteResponse, type AutoimproveJobSendGuidanceResponse as AutoimproveJobSendGuidanceResponse, type AutoimproveJobCreateParams as AutoimproveJobCreateParams, type AutoimproveJobAnswerQuestionParams as AutoimproveJobAnswerQuestionParams, type AutoimproveJobSendGuidanceParams as AutoimproveJobSendGuidanceParams, };
|
|
234
234
|
export { CustomerFlow as CustomerFlow, type FlowStep as FlowStep, type CustomerFlowCreateResponse as CustomerFlowCreateResponse, type CustomerFlowUpdateResponse as CustomerFlowUpdateResponse, type CustomerFlowListResponse as CustomerFlowListResponse, type CustomerFlowDeleteResponse as CustomerFlowDeleteResponse, type CustomerFlowDuplicateResponse as CustomerFlowDuplicateResponse, type CustomerFlowGetByIDResponse as CustomerFlowGetByIDResponse, type CustomerFlowReplaceGraphResponse as CustomerFlowReplaceGraphResponse, type CustomerFlowUpdateHappyPathResponse as CustomerFlowUpdateHappyPathResponse, type CustomerFlowCreateParams as CustomerFlowCreateParams, type CustomerFlowUpdateParams as CustomerFlowUpdateParams, type CustomerFlowListParams as CustomerFlowListParams, type CustomerFlowDuplicateParams as CustomerFlowDuplicateParams, type CustomerFlowReplaceGraphParams as CustomerFlowReplaceGraphParams, type CustomerFlowUpdateHappyPathParams as CustomerFlowUpdateHappyPathParams, };
|
|
235
235
|
export { CustomerFlowEdgeCase as CustomerFlowEdgeCase, type CustomerFlowEdgeCaseUpdateResponse as CustomerFlowEdgeCaseUpdateResponse, type CustomerFlowEdgeCaseAddResponse as CustomerFlowEdgeCaseAddResponse, type CustomerFlowEdgeCasePromoteResponse as CustomerFlowEdgeCasePromoteResponse, type CustomerFlowEdgeCaseRemoveResponse as CustomerFlowEdgeCaseRemoveResponse, type CustomerFlowEdgeCaseUpdateParams as CustomerFlowEdgeCaseUpdateParams, type CustomerFlowEdgeCaseAddParams as CustomerFlowEdgeCaseAddParams, type CustomerFlowEdgeCasePromoteParams as CustomerFlowEdgeCasePromoteParams, type CustomerFlowEdgeCaseRemoveParams as CustomerFlowEdgeCaseRemoveParams, };
|
|
236
236
|
export { Agent as Agent, type AgentCreateResponse as AgentCreateResponse, type AgentUpdateResponse as AgentUpdateResponse, type AgentListResponse as AgentListResponse, type AgentGetByIDResponse as AgentGetByIDResponse, type AgentCreateParams as AgentCreateParams, type AgentUpdateParams as AgentUpdateParams, type AgentListParams as AgentListParams, };
|
package/client.js
CHANGED
|
@@ -20,7 +20,7 @@ const api_promise_1 = require("./core/api-promise.js");
|
|
|
20
20
|
const agent_1 = require("./resources/agent.js");
|
|
21
21
|
const agent_endpoint_1 = require("./resources/agent-endpoint.js");
|
|
22
22
|
const agent_prompt_1 = require("./resources/agent-prompt.js");
|
|
23
|
-
const
|
|
23
|
+
const autoimprove_job_1 = require("./resources/autoimprove-job.js");
|
|
24
24
|
const benchmark_1 = require("./resources/benchmark.js");
|
|
25
25
|
const call_1 = require("./resources/call.js");
|
|
26
26
|
const config_1 = require("./resources/config.js");
|
|
@@ -76,7 +76,7 @@ class Roark {
|
|
|
76
76
|
this.simulationPersona = new API.SimulationPersona(this);
|
|
77
77
|
this.simulationEnvironment = new API.SimulationEnvironment(this);
|
|
78
78
|
this.simulationTemplate = new API.SimulationTemplate(this);
|
|
79
|
-
this.
|
|
79
|
+
this.autoimproveJob = new API.AutoimproveJob(this);
|
|
80
80
|
this.customerFlow = new API.CustomerFlow(this);
|
|
81
81
|
this.customerFlowEdgeCase = new API.CustomerFlowEdgeCase(this);
|
|
82
82
|
this.agent = new API.Agent(this);
|
|
@@ -534,7 +534,7 @@ Roark.SimulationRunPlanJob = simulation_run_plan_job_1.SimulationRunPlanJob;
|
|
|
534
534
|
Roark.SimulationPersona = simulation_persona_1.SimulationPersona;
|
|
535
535
|
Roark.SimulationEnvironment = simulation_environment_1.SimulationEnvironment;
|
|
536
536
|
Roark.SimulationTemplate = simulation_template_1.SimulationTemplate;
|
|
537
|
-
Roark.
|
|
537
|
+
Roark.AutoimproveJob = autoimprove_job_1.AutoimproveJob;
|
|
538
538
|
Roark.CustomerFlow = customer_flow_1.CustomerFlow;
|
|
539
539
|
Roark.CustomerFlowEdgeCase = customer_flow_edge_case_1.CustomerFlowEdgeCase;
|
|
540
540
|
Roark.Agent = agent_1.Agent;
|
package/client.mjs
CHANGED
|
@@ -17,7 +17,7 @@ import { APIPromise } from "./core/api-promise.mjs";
|
|
|
17
17
|
import { Agent, } from "./resources/agent.mjs";
|
|
18
18
|
import { AgentEndpoint, } from "./resources/agent-endpoint.mjs";
|
|
19
19
|
import { AgentPrompt, } from "./resources/agent-prompt.mjs";
|
|
20
|
-
import {
|
|
20
|
+
import { AutoimproveJob, } from "./resources/autoimprove-job.mjs";
|
|
21
21
|
import { Benchmark, } from "./resources/benchmark.mjs";
|
|
22
22
|
import { Call, } from "./resources/call.mjs";
|
|
23
23
|
import { Config, } from "./resources/config.mjs";
|
|
@@ -73,7 +73,7 @@ export class Roark {
|
|
|
73
73
|
this.simulationPersona = new API.SimulationPersona(this);
|
|
74
74
|
this.simulationEnvironment = new API.SimulationEnvironment(this);
|
|
75
75
|
this.simulationTemplate = new API.SimulationTemplate(this);
|
|
76
|
-
this.
|
|
76
|
+
this.autoimproveJob = new API.AutoimproveJob(this);
|
|
77
77
|
this.customerFlow = new API.CustomerFlow(this);
|
|
78
78
|
this.customerFlowEdgeCase = new API.CustomerFlowEdgeCase(this);
|
|
79
79
|
this.agent = new API.Agent(this);
|
|
@@ -530,7 +530,7 @@ Roark.SimulationRunPlanJob = SimulationRunPlanJob;
|
|
|
530
530
|
Roark.SimulationPersona = SimulationPersona;
|
|
531
531
|
Roark.SimulationEnvironment = SimulationEnvironment;
|
|
532
532
|
Roark.SimulationTemplate = SimulationTemplate;
|
|
533
|
-
Roark.
|
|
533
|
+
Roark.AutoimproveJob = AutoimproveJob;
|
|
534
534
|
Roark.CustomerFlow = CustomerFlow;
|
|
535
535
|
Roark.CustomerFlowEdgeCase = CustomerFlowEdgeCase;
|
|
536
536
|
Roark.Agent = Agent;
|