@scout9/app 1.0.0-alpha.0.4.6 → 1.0.0-alpha.0.4.8
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/dist/{dev-1638ac94.cjs → dev-332ccb5a.cjs} +252 -93
- package/dist/{index-f4c10ec2.cjs → index-2d62ac36.cjs} +11 -16
- package/dist/index.cjs +2 -2
- package/dist/{multipart-parser-57fbd838.cjs → multipart-parser-948d98ce.cjs} +2 -2
- package/dist/testing-tools.cjs +1 -1
- package/package.json +1 -1
- package/src/core/index.js +0 -4
- package/src/public.d.ts +24 -2
- package/src/runtime/client/api.js +3 -1
- package/src/runtime/macros/event.js +71 -23
- package/types/index.d.ts +17 -2
- package/types/index.d.ts.map +2 -1
|
@@ -25458,7 +25458,7 @@ common.createRequestFunction = createRequestFunction;
|
|
|
25458
25458
|
Object.defineProperty(exports, "__esModule", {
|
|
25459
25459
|
value: true
|
|
25460
25460
|
});
|
|
25461
|
-
exports.Scout9Api = exports.Scout9ApiGenerated = exports.Scout9ApiFactory = exports.Scout9ApiFp = exports.Scout9ApiAxiosParamCreator = exports.WorkflowResponseSlotForwardOneOfModeEnum = exports.PurposeEnum = exports.PmtConfigModelEnum = exports.PmtConfigEngineEnum = exports.MessageGetResponseInnerRoleEnum = exports.MessageCreateRequestRoleEnum = exports.MessageBaseRoleEnum = exports.MessageRoleEnum = exports.MacroResultTypeEnum = exports.MacroDidResultTypeEnum = exports.MacroContextResultTypeEnum = exports.LlmConfigOneOf2EngineEnum = exports.LlmConfigOneOf1EngineEnum = exports.LlmConfigOneOfModelEnum = exports.LlmConfigOneOfEngineEnum = exports.ListApiOperationsResponseInnerMethodEnum = exports.GetApiOperationResponseMethodEnum = exports.ForwardRequestLatestMessageRoleEnum = exports.ForwardRequestForwardOneOfModeEnum = exports.ExistenceOperator = exports.EqualityOperator = exports.ConversationEnvironment = exports.ConversationContextFieldConditionOperatorEnum = exports.ApiOperationMethodEnum = void 0;
|
|
25461
|
+
exports.Scout9Api = exports.Scout9ApiGenerated = exports.Scout9ApiFactory = exports.Scout9ApiFp = exports.Scout9ApiAxiosParamCreator = exports.NoopApi = exports.NoopApiFactory = exports.NoopApiFp = exports.NoopApiAxiosParamCreator = exports.WorkflowResponseSlotForwardOneOfModeEnum = exports.PurposeEnum = exports.PmtConfigModelEnum = exports.PmtConfigEngineEnum = exports.MessageGetResponseInnerRoleEnum = exports.MessageCreateRequestRoleEnum = exports.MessageBaseRoleEnum = exports.MessageRoleEnum = exports.MacroResultTypeEnum = exports.MacroDoesResultTypeEnum = exports.MacroDoesInputRoleEnum = exports.MacroDidResultTypeEnum = exports.MacroContextResultTypeEnum = exports.LlmConfigOneOf2EngineEnum = exports.LlmConfigOneOf1EngineEnum = exports.LlmConfigOneOfModelEnum = exports.LlmConfigOneOfEngineEnum = exports.ListApiOperationsResponseInnerMethodEnum = exports.GetApiOperationResponseMethodEnum = exports.ForwardRequestLatestMessageRoleEnum = exports.ForwardRequestForwardOneOfModeEnum = exports.ExistenceOperator = exports.EqualityOperator = exports.ConversationEnvironment = exports.ConversationContextFieldConditionOperatorEnum = exports.ApiOperationMethodEnum = void 0;
|
|
25462
25462
|
const axios_1$1 = __importDefault(axios_1);
|
|
25463
25463
|
// Some imports not used depending on template conditions
|
|
25464
25464
|
// @ts-ignore
|
|
@@ -25589,6 +25589,13 @@ common.createRequestFunction = createRequestFunction;
|
|
|
25589
25589
|
exports.MacroDidResultTypeEnum = {
|
|
25590
25590
|
Did: 'did'
|
|
25591
25591
|
};
|
|
25592
|
+
exports.MacroDoesInputRoleEnum = {
|
|
25593
|
+
Customer: 'customer',
|
|
25594
|
+
Agent: 'agent'
|
|
25595
|
+
};
|
|
25596
|
+
exports.MacroDoesResultTypeEnum = {
|
|
25597
|
+
Does: 'does'
|
|
25598
|
+
};
|
|
25592
25599
|
exports.MacroResultTypeEnum = {
|
|
25593
25600
|
Did: 'did',
|
|
25594
25601
|
Context: 'context'
|
|
@@ -25634,6 +25641,114 @@ common.createRequestFunction = createRequestFunction;
|
|
|
25634
25641
|
AfterReply: 'after-reply',
|
|
25635
25642
|
Immediately: 'immediately'
|
|
25636
25643
|
};
|
|
25644
|
+
/**
|
|
25645
|
+
* NoopApi - axios parameter creator
|
|
25646
|
+
* @export
|
|
25647
|
+
*/
|
|
25648
|
+
const NoopApiAxiosParamCreator = function (configuration) {
|
|
25649
|
+
return {
|
|
25650
|
+
/**
|
|
25651
|
+
*
|
|
25652
|
+
* @summary This is used for the generator to include PurposeEnum, because for whatever reason, query params are not included in the generator.
|
|
25653
|
+
* @param {PingRequest} pingRequest
|
|
25654
|
+
* @param {*} [options] Override http request option.
|
|
25655
|
+
* @throws {RequiredError}
|
|
25656
|
+
*/
|
|
25657
|
+
ping: async (pingRequest, options = {}) => {
|
|
25658
|
+
// verify required parameter 'pingRequest' is not null or undefined
|
|
25659
|
+
(0, common_1.assertParamExists)('ping', 'pingRequest', pingRequest);
|
|
25660
|
+
const localVarPath = `/v1-utils-ping`;
|
|
25661
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25662
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
25663
|
+
let baseOptions;
|
|
25664
|
+
if (configuration) {
|
|
25665
|
+
baseOptions = configuration.baseOptions;
|
|
25666
|
+
}
|
|
25667
|
+
const localVarRequestOptions = {
|
|
25668
|
+
method: 'POST',
|
|
25669
|
+
...baseOptions,
|
|
25670
|
+
...options
|
|
25671
|
+
};
|
|
25672
|
+
const localVarHeaderParameter = {};
|
|
25673
|
+
const localVarQueryParameter = {};
|
|
25674
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
25675
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
25676
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
25677
|
+
localVarRequestOptions.headers = {
|
|
25678
|
+
...localVarHeaderParameter,
|
|
25679
|
+
...headersFromBaseOptions,
|
|
25680
|
+
...options.headers
|
|
25681
|
+
};
|
|
25682
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(pingRequest, localVarRequestOptions, configuration);
|
|
25683
|
+
return {
|
|
25684
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
25685
|
+
options: localVarRequestOptions
|
|
25686
|
+
};
|
|
25687
|
+
}
|
|
25688
|
+
};
|
|
25689
|
+
};
|
|
25690
|
+
exports.NoopApiAxiosParamCreator = NoopApiAxiosParamCreator;
|
|
25691
|
+
/**
|
|
25692
|
+
* NoopApi - functional programming interface
|
|
25693
|
+
* @export
|
|
25694
|
+
*/
|
|
25695
|
+
const NoopApiFp = function (configuration) {
|
|
25696
|
+
const localVarAxiosParamCreator = (0, exports.NoopApiAxiosParamCreator)(configuration);
|
|
25697
|
+
return {
|
|
25698
|
+
/**
|
|
25699
|
+
*
|
|
25700
|
+
* @summary This is used for the generator to include PurposeEnum, because for whatever reason, query params are not included in the generator.
|
|
25701
|
+
* @param {PingRequest} pingRequest
|
|
25702
|
+
* @param {*} [options] Override http request option.
|
|
25703
|
+
* @throws {RequiredError}
|
|
25704
|
+
*/
|
|
25705
|
+
async ping(pingRequest, options) {
|
|
25706
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.ping(pingRequest, options);
|
|
25707
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1$1.default, base_1.BASE_PATH, configuration);
|
|
25708
|
+
}
|
|
25709
|
+
};
|
|
25710
|
+
};
|
|
25711
|
+
exports.NoopApiFp = NoopApiFp;
|
|
25712
|
+
/**
|
|
25713
|
+
* NoopApi - factory interface
|
|
25714
|
+
* @export
|
|
25715
|
+
*/
|
|
25716
|
+
const NoopApiFactory = function (configuration, basePath, axios) {
|
|
25717
|
+
const localVarFp = (0, exports.NoopApiFp)(configuration);
|
|
25718
|
+
return {
|
|
25719
|
+
/**
|
|
25720
|
+
*
|
|
25721
|
+
* @summary This is used for the generator to include PurposeEnum, because for whatever reason, query params are not included in the generator.
|
|
25722
|
+
* @param {PingRequest} pingRequest
|
|
25723
|
+
* @param {*} [options] Override http request option.
|
|
25724
|
+
* @throws {RequiredError}
|
|
25725
|
+
*/
|
|
25726
|
+
ping(pingRequest, options) {
|
|
25727
|
+
return localVarFp.ping(pingRequest, options).then(request => request(axios, basePath));
|
|
25728
|
+
}
|
|
25729
|
+
};
|
|
25730
|
+
};
|
|
25731
|
+
exports.NoopApiFactory = NoopApiFactory;
|
|
25732
|
+
/**
|
|
25733
|
+
* NoopApi - object-oriented interface
|
|
25734
|
+
* @export
|
|
25735
|
+
* @class NoopApi
|
|
25736
|
+
* @extends {BaseAPI}
|
|
25737
|
+
*/
|
|
25738
|
+
class NoopApi extends base_1.BaseAPI {
|
|
25739
|
+
/**
|
|
25740
|
+
*
|
|
25741
|
+
* @summary This is used for the generator to include PurposeEnum, because for whatever reason, query params are not included in the generator.
|
|
25742
|
+
* @param {PingRequest} pingRequest
|
|
25743
|
+
* @param {*} [options] Override http request option.
|
|
25744
|
+
* @throws {RequiredError}
|
|
25745
|
+
* @memberof NoopApi
|
|
25746
|
+
*/
|
|
25747
|
+
ping(pingRequest, options) {
|
|
25748
|
+
return (0, exports.NoopApiFp)(this.configuration).ping(pingRequest, options).then(request => request(this.axios, this.basePath));
|
|
25749
|
+
}
|
|
25750
|
+
}
|
|
25751
|
+
exports.NoopApi = NoopApi;
|
|
25637
25752
|
/**
|
|
25638
25753
|
* Scout9Api - axios parameter creator
|
|
25639
25754
|
* @export
|
|
@@ -27028,6 +27143,44 @@ common.createRequestFunction = createRequestFunction;
|
|
|
27028
27143
|
options: localVarRequestOptions
|
|
27029
27144
|
};
|
|
27030
27145
|
},
|
|
27146
|
+
/**
|
|
27147
|
+
*
|
|
27148
|
+
* @summary Natural language prompt to resolve to a boolean value in relation to the given immediate message.
|
|
27149
|
+
* @param {MacroDoesInput} macroDoesInput
|
|
27150
|
+
* @param {*} [options] Override http request option.
|
|
27151
|
+
* @throws {RequiredError}
|
|
27152
|
+
*/
|
|
27153
|
+
does: async (macroDoesInput, options = {}) => {
|
|
27154
|
+
// verify required parameter 'macroDoesInput' is not null or undefined
|
|
27155
|
+
(0, common_1.assertParamExists)('does', 'macroDoesInput', macroDoesInput);
|
|
27156
|
+
const localVarPath = `/v1-utils-macros-does`;
|
|
27157
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
27158
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
27159
|
+
let baseOptions;
|
|
27160
|
+
if (configuration) {
|
|
27161
|
+
baseOptions = configuration.baseOptions;
|
|
27162
|
+
}
|
|
27163
|
+
const localVarRequestOptions = {
|
|
27164
|
+
method: 'POST',
|
|
27165
|
+
...baseOptions,
|
|
27166
|
+
...options
|
|
27167
|
+
};
|
|
27168
|
+
const localVarHeaderParameter = {};
|
|
27169
|
+
const localVarQueryParameter = {};
|
|
27170
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
27171
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
27172
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
27173
|
+
localVarRequestOptions.headers = {
|
|
27174
|
+
...localVarHeaderParameter,
|
|
27175
|
+
...headersFromBaseOptions,
|
|
27176
|
+
...options.headers
|
|
27177
|
+
};
|
|
27178
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(macroDoesInput, localVarRequestOptions, configuration);
|
|
27179
|
+
return {
|
|
27180
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
27181
|
+
options: localVarRequestOptions
|
|
27182
|
+
};
|
|
27183
|
+
},
|
|
27031
27184
|
/**
|
|
27032
27185
|
*
|
|
27033
27186
|
* @summary Get an entity by type and ID
|
|
@@ -27582,44 +27735,6 @@ common.createRequestFunction = createRequestFunction;
|
|
|
27582
27735
|
options: localVarRequestOptions
|
|
27583
27736
|
};
|
|
27584
27737
|
},
|
|
27585
|
-
/**
|
|
27586
|
-
*
|
|
27587
|
-
* @summary This is used for the generator to include PurposeEnum, because for whatever reason, query params are not included in the generator.
|
|
27588
|
-
* @param {PingRequest} pingRequest
|
|
27589
|
-
* @param {*} [options] Override http request option.
|
|
27590
|
-
* @throws {RequiredError}
|
|
27591
|
-
*/
|
|
27592
|
-
ping: async (pingRequest, options = {}) => {
|
|
27593
|
-
// verify required parameter 'pingRequest' is not null or undefined
|
|
27594
|
-
(0, common_1.assertParamExists)('ping', 'pingRequest', pingRequest);
|
|
27595
|
-
const localVarPath = `/v1-utils-ping`;
|
|
27596
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
27597
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
27598
|
-
let baseOptions;
|
|
27599
|
-
if (configuration) {
|
|
27600
|
-
baseOptions = configuration.baseOptions;
|
|
27601
|
-
}
|
|
27602
|
-
const localVarRequestOptions = {
|
|
27603
|
-
method: 'POST',
|
|
27604
|
-
...baseOptions,
|
|
27605
|
-
...options
|
|
27606
|
-
};
|
|
27607
|
-
const localVarHeaderParameter = {};
|
|
27608
|
-
const localVarQueryParameter = {};
|
|
27609
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
27610
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
27611
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
27612
|
-
localVarRequestOptions.headers = {
|
|
27613
|
-
...localVarHeaderParameter,
|
|
27614
|
-
...headersFromBaseOptions,
|
|
27615
|
-
...options.headers
|
|
27616
|
-
};
|
|
27617
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(pingRequest, localVarRequestOptions, configuration);
|
|
27618
|
-
return {
|
|
27619
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
27620
|
-
options: localVarRequestOptions
|
|
27621
|
-
};
|
|
27622
|
-
},
|
|
27623
27738
|
/**
|
|
27624
27739
|
*
|
|
27625
27740
|
* @summary Purchase phone for a given agent.
|
|
@@ -28227,6 +28342,17 @@ common.createRequestFunction = createRequestFunction;
|
|
|
28227
28342
|
const localVarAxiosArgs = await localVarAxiosParamCreator.did(macroDidInput, options);
|
|
28228
28343
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1$1.default, base_1.BASE_PATH, configuration);
|
|
28229
28344
|
},
|
|
28345
|
+
/**
|
|
28346
|
+
*
|
|
28347
|
+
* @summary Natural language prompt to resolve to a boolean value in relation to the given immediate message.
|
|
28348
|
+
* @param {MacroDoesInput} macroDoesInput
|
|
28349
|
+
* @param {*} [options] Override http request option.
|
|
28350
|
+
* @throws {RequiredError}
|
|
28351
|
+
*/
|
|
28352
|
+
async does(macroDoesInput, options) {
|
|
28353
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.does(macroDoesInput, options);
|
|
28354
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1$1.default, base_1.BASE_PATH, configuration);
|
|
28355
|
+
},
|
|
28230
28356
|
/**
|
|
28231
28357
|
*
|
|
28232
28358
|
* @summary Get an entity by type and ID
|
|
@@ -28383,17 +28509,6 @@ common.createRequestFunction = createRequestFunction;
|
|
|
28383
28509
|
const localVarAxiosArgs = await localVarAxiosParamCreator.parse(parseRequest, options);
|
|
28384
28510
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1$1.default, base_1.BASE_PATH, configuration);
|
|
28385
28511
|
},
|
|
28386
|
-
/**
|
|
28387
|
-
*
|
|
28388
|
-
* @summary This is used for the generator to include PurposeEnum, because for whatever reason, query params are not included in the generator.
|
|
28389
|
-
* @param {PingRequest} pingRequest
|
|
28390
|
-
* @param {*} [options] Override http request option.
|
|
28391
|
-
* @throws {RequiredError}
|
|
28392
|
-
*/
|
|
28393
|
-
async ping(pingRequest, options) {
|
|
28394
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.ping(pingRequest, options);
|
|
28395
|
-
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1$1.default, base_1.BASE_PATH, configuration);
|
|
28396
|
-
},
|
|
28397
28512
|
/**
|
|
28398
28513
|
*
|
|
28399
28514
|
* @summary Purchase phone for a given agent.
|
|
@@ -28828,6 +28943,16 @@ common.createRequestFunction = createRequestFunction;
|
|
|
28828
28943
|
did(macroDidInput, options) {
|
|
28829
28944
|
return localVarFp.did(macroDidInput, options).then(request => request(axios, basePath));
|
|
28830
28945
|
},
|
|
28946
|
+
/**
|
|
28947
|
+
*
|
|
28948
|
+
* @summary Natural language prompt to resolve to a boolean value in relation to the given immediate message.
|
|
28949
|
+
* @param {MacroDoesInput} macroDoesInput
|
|
28950
|
+
* @param {*} [options] Override http request option.
|
|
28951
|
+
* @throws {RequiredError}
|
|
28952
|
+
*/
|
|
28953
|
+
does(macroDoesInput, options) {
|
|
28954
|
+
return localVarFp.does(macroDoesInput, options).then(request => request(axios, basePath));
|
|
28955
|
+
},
|
|
28831
28956
|
/**
|
|
28832
28957
|
*
|
|
28833
28958
|
* @summary Get an entity by type and ID
|
|
@@ -28971,16 +29096,6 @@ common.createRequestFunction = createRequestFunction;
|
|
|
28971
29096
|
parse(parseRequest, options) {
|
|
28972
29097
|
return localVarFp.parse(parseRequest, options).then(request => request(axios, basePath));
|
|
28973
29098
|
},
|
|
28974
|
-
/**
|
|
28975
|
-
*
|
|
28976
|
-
* @summary This is used for the generator to include PurposeEnum, because for whatever reason, query params are not included in the generator.
|
|
28977
|
-
* @param {PingRequest} pingRequest
|
|
28978
|
-
* @param {*} [options] Override http request option.
|
|
28979
|
-
* @throws {RequiredError}
|
|
28980
|
-
*/
|
|
28981
|
-
ping(pingRequest, options) {
|
|
28982
|
-
return localVarFp.ping(pingRequest, options).then(request => request(axios, basePath));
|
|
28983
|
-
},
|
|
28984
29099
|
/**
|
|
28985
29100
|
*
|
|
28986
29101
|
* @summary Purchase phone for a given agent.
|
|
@@ -29446,6 +29561,17 @@ common.createRequestFunction = createRequestFunction;
|
|
|
29446
29561
|
did(macroDidInput, options) {
|
|
29447
29562
|
return (0, exports.Scout9ApiFp)(this.configuration).did(macroDidInput, options).then(request => request(this.axios, this.basePath));
|
|
29448
29563
|
}
|
|
29564
|
+
/**
|
|
29565
|
+
*
|
|
29566
|
+
* @summary Natural language prompt to resolve to a boolean value in relation to the given immediate message.
|
|
29567
|
+
* @param {MacroDoesInput} macroDoesInput
|
|
29568
|
+
* @param {*} [options] Override http request option.
|
|
29569
|
+
* @throws {RequiredError}
|
|
29570
|
+
* @memberof Scout9Api
|
|
29571
|
+
*/
|
|
29572
|
+
does(macroDoesInput, options) {
|
|
29573
|
+
return (0, exports.Scout9ApiFp)(this.configuration).does(macroDoesInput, options).then(request => request(this.axios, this.basePath));
|
|
29574
|
+
}
|
|
29449
29575
|
/**
|
|
29450
29576
|
*
|
|
29451
29577
|
* @summary Get an entity by type and ID
|
|
@@ -29602,17 +29728,6 @@ common.createRequestFunction = createRequestFunction;
|
|
|
29602
29728
|
parse(parseRequest, options) {
|
|
29603
29729
|
return (0, exports.Scout9ApiFp)(this.configuration).parse(parseRequest, options).then(request => request(this.axios, this.basePath));
|
|
29604
29730
|
}
|
|
29605
|
-
/**
|
|
29606
|
-
*
|
|
29607
|
-
* @summary This is used for the generator to include PurposeEnum, because for whatever reason, query params are not included in the generator.
|
|
29608
|
-
* @param {PingRequest} pingRequest
|
|
29609
|
-
* @param {*} [options] Override http request option.
|
|
29610
|
-
* @throws {RequiredError}
|
|
29611
|
-
* @memberof Scout9Api
|
|
29612
|
-
*/
|
|
29613
|
-
ping(pingRequest, options) {
|
|
29614
|
-
return (0, exports.Scout9ApiFp)(this.configuration).ping(pingRequest, options).then(request => request(this.axios, this.basePath));
|
|
29615
|
-
}
|
|
29616
29731
|
/**
|
|
29617
29732
|
*
|
|
29618
29733
|
* @summary Purchase phone for a given agent.
|
|
@@ -35049,7 +35164,7 @@ function _loadUserPackageJson() {
|
|
|
35049
35164
|
targetPkgUrl = isTest ? packageTestJsonUrl : packageJsonUrl;
|
|
35050
35165
|
_context2.t0 = JSON;
|
|
35051
35166
|
_context2.next = 10;
|
|
35052
|
-
return fs__default["default"].readFile(new URL(targetPkgUrl, (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('dev-
|
|
35167
|
+
return fs__default["default"].readFile(new URL(targetPkgUrl, (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('dev-332ccb5a.js', document.baseURI).href))), 'utf-8');
|
|
35053
35168
|
case 10:
|
|
35054
35169
|
_context2.t1 = _context2.sent;
|
|
35055
35170
|
pkg = _context2.t0.parse.call(_context2.t0, _context2.t1);
|
|
@@ -35909,7 +36024,7 @@ var _excluded$1 = ["success"];
|
|
|
35909
36024
|
* @property {function(): EventMacros} resetIntent
|
|
35910
36025
|
* @property {function(string | string[], boolean?): EventMacros} instructRemove
|
|
35911
36026
|
* @property {function(string, (OptionsInstruct & OptionsForward & {stagnationLimit?: number})?): EventMacros} instructSafe
|
|
35912
|
-
* @property {function(string
|
|
36027
|
+
* @property {function(string | Array<string | (OptionsInstruct & {content: string})>, OptionsInstruct?): EventMacros} instruct
|
|
35913
36028
|
* @property {function(string, OptionsReply?): EventMacros} reply
|
|
35914
36029
|
* @property {function(string?, OptionsForward?): EventMacros} forward
|
|
35915
36030
|
* @property {function(boolean?): Array<WorkflowResponseSlot>} toJSON
|
|
@@ -36130,32 +36245,70 @@ function EventMacrosFactory() {
|
|
|
36130
36245
|
}
|
|
36131
36246
|
},
|
|
36132
36247
|
/**
|
|
36133
|
-
* Return instructions to guide next
|
|
36248
|
+
* Return instructions to guide next response
|
|
36249
|
+
*
|
|
36250
|
+
* @overload
|
|
36134
36251
|
* @param {string} instruction
|
|
36135
36252
|
* @param {OptionsInstruct} [options]
|
|
36253
|
+
*
|
|
36254
|
+
* @overload
|
|
36255
|
+
* @param {Array<string | (OptionsInstruct & {content: string})>} instruction
|
|
36136
36256
|
* @return {EventMacros}
|
|
36137
36257
|
*/
|
|
36138
36258
|
instruct: function instruct(instruction) {
|
|
36139
36259
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
36140
|
-
|
|
36141
|
-
|
|
36142
|
-
|
|
36143
|
-
|
|
36144
|
-
|
|
36145
|
-
|
|
36146
|
-
|
|
36260
|
+
if (Array.isArray(instruction)) {
|
|
36261
|
+
instruction.forEach(function (_instruction) {
|
|
36262
|
+
/** @type {WorkflowResponseSlot} */
|
|
36263
|
+
var slot = {};
|
|
36264
|
+
if (spirits._typeof(_instruction) === 'object' && 'content' in _instruction) {
|
|
36265
|
+
/** @type {Instruction} */
|
|
36266
|
+
var instructionObj = {
|
|
36267
|
+
content: instruction
|
|
36268
|
+
};
|
|
36269
|
+
if (options.id) {
|
|
36270
|
+
instructionObj.id = options.id;
|
|
36271
|
+
}
|
|
36272
|
+
if (typeof options.persist === 'boolean') {
|
|
36273
|
+
instructionObj.persist = options.persist;
|
|
36274
|
+
}
|
|
36275
|
+
slot.instructions = instructionObj;
|
|
36276
|
+
} else if (typeof _instruction === 'string') {
|
|
36277
|
+
slot.instructions = instruction;
|
|
36278
|
+
} else {
|
|
36279
|
+
console.warn("Invalid instruction type ".concat(JSON.stringify(_instruction), ", omitted from slot"));
|
|
36280
|
+
}
|
|
36281
|
+
try {
|
|
36282
|
+
slots.push(macros.WorkflowResponseSlotSchema.parse(slot));
|
|
36283
|
+
} catch (e) {
|
|
36284
|
+
throw simplifyError(e, 'Invalid instruct() input');
|
|
36285
|
+
}
|
|
36286
|
+
});
|
|
36287
|
+
} else if (typeof instruction === 'string') {
|
|
36288
|
+
/** @type {WorkflowResponseSlot} */
|
|
36289
|
+
var slot = {};
|
|
36290
|
+
if (Object.keys(options).length > 0) {
|
|
36291
|
+
/** @type {Instruction} */
|
|
36292
|
+
var instructionObj = {
|
|
36293
|
+
content: instruction
|
|
36294
|
+
};
|
|
36295
|
+
if (options.id) {
|
|
36296
|
+
instructionObj.id = options.id;
|
|
36297
|
+
}
|
|
36298
|
+
if (typeof options.persist === 'boolean') {
|
|
36299
|
+
instructionObj.persist = options.persist;
|
|
36300
|
+
}
|
|
36301
|
+
slot.instructions = instructionObj;
|
|
36302
|
+
} else {
|
|
36303
|
+
slot.instructions = instruction;
|
|
36147
36304
|
}
|
|
36148
|
-
|
|
36149
|
-
|
|
36305
|
+
try {
|
|
36306
|
+
slots.push(macros.WorkflowResponseSlotSchema.parse(slot));
|
|
36307
|
+
} catch (e) {
|
|
36308
|
+
throw simplifyError(e, 'Invalid instruct() input');
|
|
36150
36309
|
}
|
|
36151
|
-
slot.instructions = instructionObj;
|
|
36152
36310
|
} else {
|
|
36153
|
-
|
|
36154
|
-
}
|
|
36155
|
-
try {
|
|
36156
|
-
slots.push(macros.WorkflowResponseSlotSchema.parse(slot));
|
|
36157
|
-
} catch (e) {
|
|
36158
|
-
throw simplifyError(e, 'Invalid instruct() input');
|
|
36311
|
+
throw new Error("Invalid instruction param ".concat(JSON.stringify(instruction), ", expected a string or array"));
|
|
36159
36312
|
}
|
|
36160
36313
|
return this;
|
|
36161
36314
|
},
|
|
@@ -36246,13 +36399,19 @@ var eventMacros = EventMacrosFactory();
|
|
|
36246
36399
|
|
|
36247
36400
|
/**
|
|
36248
36401
|
* Return instructions to guide next response
|
|
36249
|
-
*
|
|
36402
|
+
*
|
|
36403
|
+
* @example instruct("Ask user if they are looking to order a pizza");
|
|
36404
|
+
*
|
|
36405
|
+
* @overload
|
|
36406
|
+
* @param {string} instruction
|
|
36250
36407
|
* @param {OptionsInstruct} [options]
|
|
36408
|
+
*
|
|
36409
|
+
* @overload
|
|
36410
|
+
* @param {Array<string | (OptionsInstruct & {content: string})>} instruction
|
|
36251
36411
|
* @return {EventMacros}
|
|
36252
36412
|
*
|
|
36253
|
-
* @example instruct("Ask user if they are looking to order a pizza");
|
|
36254
36413
|
*
|
|
36255
|
-
* @type {(
|
|
36414
|
+
* @type {(instruction: string | Array<string | (OptionsInstruct & {content: string})>, options?: OptionsInstruct) => EventMacros}
|
|
36256
36415
|
*/
|
|
36257
36416
|
var instruct = eventMacros.instruct.bind(eventMacros);
|
|
36258
36417
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var spirits = require("./spirits-5c9243a1.cjs");
|
|
4
|
-
var dev = require("./dev-
|
|
4
|
+
var dev = require("./dev-332ccb5a.cjs");
|
|
5
5
|
var macros = require("./macros-e4105c56.cjs");
|
|
6
6
|
var require$$0 = require('fs');
|
|
7
7
|
var require$$2$1 = require('events');
|
|
@@ -29483,7 +29483,7 @@ class Body {
|
|
|
29483
29483
|
}
|
|
29484
29484
|
const {
|
|
29485
29485
|
toFormData
|
|
29486
|
-
} = await Promise.resolve().then(function () { return require("./multipart-parser-
|
|
29486
|
+
} = await Promise.resolve().then(function () { return require("./multipart-parser-948d98ce.cjs"); });
|
|
29487
29487
|
return toFormData(this.body, ct);
|
|
29488
29488
|
}
|
|
29489
29489
|
|
|
@@ -41884,7 +41884,7 @@ function _loadUserPackageJson() {
|
|
|
41884
41884
|
targetPkgUrl = isTest ? packageTestJsonUrl : packageJsonUrl;
|
|
41885
41885
|
_context.t0 = JSON;
|
|
41886
41886
|
_context.next = 10;
|
|
41887
|
-
return fs__default["default"].readFile(new URL(targetPkgUrl, (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('index-
|
|
41887
|
+
return fs__default["default"].readFile(new URL(targetPkgUrl, (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('index-2d62ac36.js', document.baseURI).href))), 'utf-8');
|
|
41888
41888
|
case 10:
|
|
41889
41889
|
_context.t1 = _context.sent;
|
|
41890
41890
|
pkg = _context.t0.parse.call(_context.t0, _context.t1);
|
|
@@ -41902,7 +41902,8 @@ function _loadUserPackageJson() {
|
|
|
41902
41902
|
}
|
|
41903
41903
|
|
|
41904
41904
|
/**
|
|
41905
|
-
* Utility runtime class
|
|
41905
|
+
* Utility runtime class for entity APIs methods
|
|
41906
|
+
* @deprecated this is only valid for entity APIs, not workflow templates
|
|
41906
41907
|
* @template T
|
|
41907
41908
|
*/
|
|
41908
41909
|
var EventResponse = /*#__PURE__*/function () {
|
|
@@ -43157,7 +43158,7 @@ var ProjectFiles = /*#__PURE__*/function () {
|
|
|
43157
43158
|
return ProjectFiles;
|
|
43158
43159
|
}();
|
|
43159
43160
|
|
|
43160
|
-
var __filename$1 = node_url.fileURLToPath((typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('index-
|
|
43161
|
+
var __filename$1 = node_url.fileURLToPath((typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('index-2d62ac36.js', document.baseURI).href)));
|
|
43161
43162
|
var __dirname$1 = path__default["default"].dirname(__filename$1);
|
|
43162
43163
|
function zipDirectory(source, out) {
|
|
43163
43164
|
var archive = archiver$1('tar', {
|
|
@@ -43372,7 +43373,7 @@ function _buildApp() {
|
|
|
43372
43373
|
case 11:
|
|
43373
43374
|
_context4.t0 = JSON;
|
|
43374
43375
|
_context4.next = 14;
|
|
43375
|
-
return fs__default["default"].readFile(new URL(templatePackagePath, (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('index-
|
|
43376
|
+
return fs__default["default"].readFile(new URL(templatePackagePath, (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('index-2d62ac36.js', document.baseURI).href))), 'utf-8');
|
|
43376
43377
|
case 14:
|
|
43377
43378
|
_context4.t1 = _context4.sent;
|
|
43378
43379
|
packageTemplate = _context4.t0.parse.call(_context4.t0, _context4.t1);
|
|
@@ -43919,25 +43920,19 @@ function _test() {
|
|
|
43919
43920
|
var _e$definitions, _e$training;
|
|
43920
43921
|
return (e === null || e === void 0 || (_e$definitions = e.definitions) === null || _e$definitions === void 0 ? void 0 : _e$definitions.length) > 0 || (e === null || e === void 0 || (_e$training = e.training) === null || _e$training === void 0 ? void 0 : _e$training.length) > 0;
|
|
43921
43922
|
});
|
|
43922
|
-
if (!(testableEntities.length === 0)) {
|
|
43923
|
-
_context12.next = 4;
|
|
43924
|
-
break;
|
|
43925
|
-
}
|
|
43926
|
-
throw new Error('No testable entities found - make sure you have at least one entity with definitions or training data - learn more at https://scout9.com/docs');
|
|
43927
|
-
case 4:
|
|
43928
43923
|
tests = testableEntities.reduce(function (accumulator, entity) {
|
|
43929
43924
|
return accumulator += ((entity === null || entity === void 0 ? void 0 : entity.tests) || []).length;
|
|
43930
43925
|
}, 0);
|
|
43931
43926
|
if (!(tests === 0)) {
|
|
43932
|
-
_context12.next =
|
|
43927
|
+
_context12.next = 6;
|
|
43933
43928
|
break;
|
|
43934
43929
|
}
|
|
43935
43930
|
logger.warn('No tests found for any entities, skipping test run');
|
|
43936
43931
|
return _context12.abrupt("return");
|
|
43937
|
-
case
|
|
43932
|
+
case 6:
|
|
43938
43933
|
// @TODO format errors
|
|
43939
43934
|
logger.log("Running ".concat(tests, " entity test points..."));
|
|
43940
|
-
_context12.next =
|
|
43935
|
+
_context12.next = 9;
|
|
43941
43936
|
return new dev.build.Scout9Api(new dev.build.Configuration({
|
|
43942
43937
|
apiKey: process.env.SCOUT9_API_KEY || ''
|
|
43943
43938
|
})).parse({
|
|
@@ -43945,7 +43940,7 @@ function _test() {
|
|
|
43945
43940
|
language: 'en',
|
|
43946
43941
|
entities: testableEntities
|
|
43947
43942
|
});
|
|
43948
|
-
case
|
|
43943
|
+
case 9:
|
|
43949
43944
|
case "end":
|
|
43950
43945
|
return _context12.stop();
|
|
43951
43946
|
}
|
package/dist/index.cjs
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var index = require("./index-
|
|
6
|
-
var dev = require("./dev-
|
|
5
|
+
var index = require("./index-2d62ac36.cjs");
|
|
6
|
+
var dev = require("./dev-332ccb5a.cjs");
|
|
7
7
|
require("./spirits-5c9243a1.cjs");
|
|
8
8
|
require("./macros-e4105c56.cjs");
|
|
9
9
|
require('fs');
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
require('node:fs');
|
|
4
4
|
require('node:path');
|
|
5
|
-
var index = require("./index-
|
|
5
|
+
var index = require("./index-2d62ac36.cjs");
|
|
6
6
|
require("./spirits-5c9243a1.cjs");
|
|
7
|
-
require("./dev-
|
|
7
|
+
require("./dev-332ccb5a.cjs");
|
|
8
8
|
require('util');
|
|
9
9
|
require('stream');
|
|
10
10
|
require('path');
|
package/dist/testing-tools.cjs
CHANGED
package/package.json
CHANGED
package/src/core/index.js
CHANGED
|
@@ -443,10 +443,6 @@ export async function test(
|
|
|
443
443
|
) {
|
|
444
444
|
|
|
445
445
|
const testableEntities = config.entities.filter(e => e?.definitions?.length > 0 || e?.training?.length > 0);
|
|
446
|
-
if (testableEntities.length === 0) {
|
|
447
|
-
throw new Error(
|
|
448
|
-
'No testable entities found - make sure you have at least one entity with definitions or training data - learn more at https://scout9.com/docs');
|
|
449
|
-
}
|
|
450
446
|
|
|
451
447
|
const tests = testableEntities.reduce((accumulator, entity) => accumulator += (entity?.tests || []).length, 0);
|
|
452
448
|
|
package/src/public.d.ts
CHANGED
|
@@ -92,11 +92,28 @@ export class EventResponse<T = any> {
|
|
|
92
92
|
* @param {OptionsInstruct} [options]
|
|
93
93
|
* @return {EventMacros}
|
|
94
94
|
*
|
|
95
|
+
* @overload
|
|
96
|
+
* @param {Array<string | (OptionsInstruct & {content: string})>} instruction
|
|
97
|
+
*
|
|
95
98
|
* @example instruct("Ask user if they are looking to order a pizza");
|
|
96
99
|
*
|
|
97
100
|
* @type {(message: string, options?: OptionsInstruct) => EventMacros}
|
|
98
101
|
*/
|
|
99
|
-
export const instruct: (
|
|
102
|
+
export const instruct: ((instruction: string, options?: OptionsInstruct) => EventMacros) | ((instruction: Array<string | (OptionsInstruct & {content: string})>) => EventMacros);
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* If conversation is not stagnant, return instructions to guide next auto reply response, otherwise it will forward the conversation
|
|
106
|
+
* @param {string} instruction - the instruction to send to the
|
|
107
|
+
* @param {OptionsInstruct} [options]
|
|
108
|
+
* @return {EventMacros}
|
|
109
|
+
*
|
|
110
|
+
* @example instructSafe("Ask user if they are looking to order a pizza");
|
|
111
|
+
* @example instructSafe("Ask user if they are looking to order a pizza", {stagnationLimit: 3}); // Allows for 3 stagnate messages before forwarding
|
|
112
|
+
*
|
|
113
|
+
* @type {(message: string, options?: OptionsInstruct) => EventMacros}
|
|
114
|
+
*/
|
|
115
|
+
export const instructSafe: (instruction: string, options?: (OptionsInstruct & OptionsForward & {stagnationLimit?: number})) => EventMacros;
|
|
116
|
+
|
|
100
117
|
/**
|
|
101
118
|
* Forwards conversation back to you or owner of workflow.
|
|
102
119
|
*
|
|
@@ -221,13 +238,18 @@ export type EventMacros = {
|
|
|
221
238
|
* If conversation is not stagnant, return instructions to guide next auto reply response, otherwise it will forward the conversation
|
|
222
239
|
* stagnationLimit defaults to 2
|
|
223
240
|
*/
|
|
224
|
-
instructSafe(instruction: string, options?: (OptionsInstruct &
|
|
241
|
+
instructSafe(instruction: string, options?: (OptionsInstruct & OptionsForward & {stagnationLimit?: number})): EventMacros;
|
|
225
242
|
|
|
226
243
|
/**
|
|
227
244
|
* Return instructions to guide next auto reply response
|
|
228
245
|
*/
|
|
229
246
|
instruct(instruction: string, options?: OptionsInstruct): EventMacros;
|
|
230
247
|
|
|
248
|
+
/**
|
|
249
|
+
* Return instructions to guide next auto reply response
|
|
250
|
+
*/
|
|
251
|
+
instruct(instruction: Array<string | (OptionsInstruct & {content: string})>): EventMacros;
|
|
252
|
+
|
|
231
253
|
/**
|
|
232
254
|
* If a manual message must be sent, you can use the `reply` macro
|
|
233
255
|
* @param {string} message - the message to manually send to the user
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Utility runtime class
|
|
2
|
+
* Utility runtime class for entity APIs methods
|
|
3
|
+
* @deprecated this is only valid for entity APIs, not workflow templates
|
|
3
4
|
* @template T
|
|
4
5
|
*/
|
|
5
6
|
export class EventResponse {
|
|
@@ -56,3 +57,4 @@ export class EventResponse {
|
|
|
56
57
|
|
|
57
58
|
}
|
|
58
59
|
|
|
60
|
+
|
|
@@ -89,7 +89,7 @@ import MacroGlobals from './globals.js';
|
|
|
89
89
|
* @property {function(): EventMacros} resetIntent
|
|
90
90
|
* @property {function(string | string[], boolean?): EventMacros} instructRemove
|
|
91
91
|
* @property {function(string, (OptionsInstruct & OptionsForward & {stagnationLimit?: number})?): EventMacros} instructSafe
|
|
92
|
-
* @property {function(string
|
|
92
|
+
* @property {function(string | Array<string | (OptionsInstruct & {content: string})>, OptionsInstruct?): EventMacros} instruct
|
|
93
93
|
* @property {function(string, OptionsReply?): EventMacros} reply
|
|
94
94
|
* @property {function(string?, OptionsForward?): EventMacros} forward
|
|
95
95
|
* @property {function(boolean?): Array<WorkflowResponseSlot>} toJSON
|
|
@@ -305,35 +305,77 @@ function EventMacrosFactory() {
|
|
|
305
305
|
|
|
306
306
|
|
|
307
307
|
/**
|
|
308
|
-
* Return instructions to guide next
|
|
308
|
+
* Return instructions to guide next response
|
|
309
|
+
*
|
|
310
|
+
* @overload
|
|
309
311
|
* @param {string} instruction
|
|
310
312
|
* @param {OptionsInstruct} [options]
|
|
313
|
+
*
|
|
314
|
+
* @overload
|
|
315
|
+
* @param {Array<string | (OptionsInstruct & {content: string})>} instruction
|
|
311
316
|
* @return {EventMacros}
|
|
312
317
|
*/
|
|
313
318
|
instruct(instruction, options = {}) {
|
|
314
|
-
|
|
315
|
-
if (
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
319
|
+
|
|
320
|
+
if (Array.isArray(instruction)) {
|
|
321
|
+
|
|
322
|
+
instruction.forEach((_instruction) => {
|
|
323
|
+
/** @type {WorkflowResponseSlot} */
|
|
324
|
+
const slot = {};
|
|
325
|
+
if (typeof _instruction === 'object' && 'content' in _instruction) {
|
|
326
|
+
/** @type {Instruction} */
|
|
327
|
+
const instructionObj = {
|
|
328
|
+
content: instruction
|
|
329
|
+
};
|
|
330
|
+
if (options.id) {
|
|
331
|
+
instructionObj.id = options.id;
|
|
332
|
+
}
|
|
333
|
+
if (typeof options.persist === 'boolean') {
|
|
334
|
+
instructionObj.persist = options.persist;
|
|
335
|
+
}
|
|
336
|
+
slot.instructions = instructionObj;
|
|
337
|
+
} else if (typeof _instruction === 'string') {
|
|
338
|
+
slot.instructions = instruction;
|
|
339
|
+
} else {
|
|
340
|
+
console.warn(`Invalid instruction type ${JSON.stringify(_instruction)}, omitted from slot`);
|
|
341
|
+
}
|
|
342
|
+
try {
|
|
343
|
+
slots.push(WorkflowResponseSlotSchema.parse(slot));
|
|
344
|
+
} catch (e) {
|
|
345
|
+
throw simplifyError(e, 'Invalid instruct() input');
|
|
346
|
+
}
|
|
347
|
+
});
|
|
348
|
+
} else if (typeof instruction === 'string') {
|
|
349
|
+
/** @type {WorkflowResponseSlot} */
|
|
350
|
+
const slot = {};
|
|
351
|
+
if (Object.keys(options).length > 0) {
|
|
352
|
+
/** @type {Instruction} */
|
|
353
|
+
const instructionObj = {
|
|
354
|
+
content: instruction
|
|
355
|
+
};
|
|
356
|
+
if (options.id) {
|
|
357
|
+
instructionObj.id = options.id;
|
|
358
|
+
}
|
|
359
|
+
if (typeof options.persist === 'boolean') {
|
|
360
|
+
instructionObj.persist = options.persist;
|
|
361
|
+
}
|
|
362
|
+
slot.instructions = instructionObj;
|
|
363
|
+
} else {
|
|
364
|
+
slot.instructions = instruction;
|
|
365
|
+
}
|
|
366
|
+
try {
|
|
367
|
+
slots.push(WorkflowResponseSlotSchema.parse(slot));
|
|
368
|
+
} catch (e) {
|
|
369
|
+
throw simplifyError(e, 'Invalid instruct() input');
|
|
370
|
+
}
|
|
326
371
|
} else {
|
|
327
|
-
|
|
328
|
-
}
|
|
329
|
-
try {
|
|
330
|
-
slots.push(WorkflowResponseSlotSchema.parse(slot));
|
|
331
|
-
} catch (e) {
|
|
332
|
-
throw simplifyError(e, 'Invalid instruct() input');
|
|
372
|
+
throw new Error(`Invalid instruction param ${JSON.stringify(instruction)}, expected a string or array`);
|
|
333
373
|
}
|
|
374
|
+
|
|
334
375
|
return this;
|
|
335
376
|
},
|
|
336
377
|
|
|
378
|
+
|
|
337
379
|
/**
|
|
338
380
|
* If a manual message must be sent, you can use the `reply` macro
|
|
339
381
|
* @param {string} message - the message to manually send to the user
|
|
@@ -421,13 +463,19 @@ const eventMacros = EventMacrosFactory();
|
|
|
421
463
|
|
|
422
464
|
/**
|
|
423
465
|
* Return instructions to guide next response
|
|
424
|
-
*
|
|
466
|
+
*
|
|
467
|
+
* @example instruct("Ask user if they are looking to order a pizza");
|
|
468
|
+
*
|
|
469
|
+
* @overload
|
|
470
|
+
* @param {string} instruction
|
|
425
471
|
* @param {OptionsInstruct} [options]
|
|
472
|
+
*
|
|
473
|
+
* @overload
|
|
474
|
+
* @param {Array<string | (OptionsInstruct & {content: string})>} instruction
|
|
426
475
|
* @return {EventMacros}
|
|
427
476
|
*
|
|
428
|
-
* @example instruct("Ask user if they are looking to order a pizza");
|
|
429
477
|
*
|
|
430
|
-
* @type {(
|
|
478
|
+
* @type {(instruction: string | Array<string | (OptionsInstruct & {content: string})>, options?: OptionsInstruct) => EventMacros}
|
|
431
479
|
*/
|
|
432
480
|
export const instruct = eventMacros.instruct.bind(eventMacros);
|
|
433
481
|
|
package/types/index.d.ts
CHANGED
|
@@ -67,7 +67,17 @@ declare module '@scout9/app' {
|
|
|
67
67
|
* @example instruct("Ask user if they are looking to order a pizza");
|
|
68
68
|
*
|
|
69
69
|
* */
|
|
70
|
-
export const instruct: (
|
|
70
|
+
export const instruct: ((instruction: string, options?: OptionsInstruct) => EventMacros) | ((instruction: Array<string | (OptionsInstruct & {content: string})>) => EventMacros);
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* If conversation is not stagnant, return instructions to guide next auto reply response, otherwise it will forward the conversation
|
|
74
|
+
* @param instruction - the instruction to send to the
|
|
75
|
+
* @example instructSafe("Ask user if they are looking to order a pizza");
|
|
76
|
+
* @example instructSafe("Ask user if they are looking to order a pizza", {stagnationLimit: 3}); // Allows for 3 stagnate messages before forwarding
|
|
77
|
+
*
|
|
78
|
+
* */
|
|
79
|
+
export const instructSafe: (instruction: string, options?: (OptionsInstruct & OptionsForward & {stagnationLimit?: number})) => EventMacros;
|
|
80
|
+
|
|
71
81
|
/**
|
|
72
82
|
* Forwards conversation back to you or owner of workflow.
|
|
73
83
|
*
|
|
@@ -190,13 +200,18 @@ declare module '@scout9/app' {
|
|
|
190
200
|
* If conversation is not stagnant, return instructions to guide next auto reply response, otherwise it will forward the conversation
|
|
191
201
|
* stagnationLimit defaults to 2
|
|
192
202
|
*/
|
|
193
|
-
instructSafe(instruction: string, options?: (OptionsInstruct &
|
|
203
|
+
instructSafe(instruction: string, options?: (OptionsInstruct & OptionsForward & {stagnationLimit?: number})): EventMacros;
|
|
194
204
|
|
|
195
205
|
/**
|
|
196
206
|
* Return instructions to guide next auto reply response
|
|
197
207
|
*/
|
|
198
208
|
instruct(instruction: string, options?: OptionsInstruct): EventMacros;
|
|
199
209
|
|
|
210
|
+
/**
|
|
211
|
+
* Return instructions to guide next auto reply response
|
|
212
|
+
*/
|
|
213
|
+
instruct(instruction: Array<string | (OptionsInstruct & {content: string})>): EventMacros;
|
|
214
|
+
|
|
200
215
|
/**
|
|
201
216
|
* If a manual message must be sent, you can use the `reply` macro
|
|
202
217
|
* @param message - the message to manually send to the user
|
package/types/index.d.ts.map
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
"sendEvent",
|
|
8
8
|
"EventResponse",
|
|
9
9
|
"instruct",
|
|
10
|
+
"instructSafe",
|
|
10
11
|
"forward",
|
|
11
12
|
"reply",
|
|
12
13
|
"OptionsFollowup",
|
|
@@ -149,5 +150,5 @@
|
|
|
149
150
|
null,
|
|
150
151
|
null
|
|
151
152
|
],
|
|
152
|
-
"mappings": "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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgB1BC,sBAAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKtBC,sBAAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cC5KtBC,iBAAiBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIjBC,sBAAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAEtBC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAEpBC,qBAAqBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOrBC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOpBC,sBAAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAMtBC,uBAAuBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCtCvBlG,mBAAmBA;cAYnBmG,4BAA4BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAU5BC,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCvBlBC,oCAAoCA;;;;;;;;;;cAKpCC,oBAAoBA"
|
|
153
|
+
"mappings": "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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgB1BC,sBAAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKtBC,sBAAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cC5KtBC,iBAAiBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIjBC,sBAAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAEtBC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAEpBC,qBAAqBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOrBC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOpBC,sBAAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAMtBC,uBAAuBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCtCvBlG,mBAAmBA;cAYnBmG,4BAA4BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAU5BC,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCvBlBC,oCAAoCA;;;;;;;;;;cAKpCC,oBAAoBA"
|
|
153
154
|
}
|