@scout9/admin 1.0.0-alpha.0.0.8 → 1.0.0-alpha.0.0.9
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/build/api.d.ts +131 -24
- package/build/api.js +35 -18
- package/package.json +1 -1
- package/src/api.ts +145 -28
- package/tsconfig.tsbuildinfo +1 -1
package/build/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Scout9 API
|
|
3
3
|
* Scout9 APIs for managing Scout9 users and conversations with your Scout9 agents
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-alpha.0.0.9
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1978,6 +1978,31 @@ export interface CreateCustomersResponse {
|
|
|
1978
1978
|
*/
|
|
1979
1979
|
'$operation': string;
|
|
1980
1980
|
}
|
|
1981
|
+
/**
|
|
1982
|
+
*
|
|
1983
|
+
* @export
|
|
1984
|
+
* @interface CreateFileRequestWithStringPurpose
|
|
1985
|
+
*/
|
|
1986
|
+
export interface CreateFileRequestWithStringPurpose {
|
|
1987
|
+
/**
|
|
1988
|
+
*
|
|
1989
|
+
* @type {File}
|
|
1990
|
+
* @memberof CreateFileRequestWithStringPurpose
|
|
1991
|
+
*/
|
|
1992
|
+
'file': File | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob;
|
|
1993
|
+
/**
|
|
1994
|
+
*
|
|
1995
|
+
* @type {string}
|
|
1996
|
+
* @memberof CreateFileRequestWithStringPurpose
|
|
1997
|
+
*/
|
|
1998
|
+
'purpose': string;
|
|
1999
|
+
/**
|
|
2000
|
+
*
|
|
2001
|
+
* @type {string}
|
|
2002
|
+
* @memberof CreateFileRequestWithStringPurpose
|
|
2003
|
+
*/
|
|
2004
|
+
'entity': string;
|
|
2005
|
+
}
|
|
1981
2006
|
/**
|
|
1982
2007
|
*
|
|
1983
2008
|
* @export
|
|
@@ -3900,6 +3925,12 @@ export interface ListFilesResponse {
|
|
|
3900
3925
|
* @memberof ListFilesResponse
|
|
3901
3926
|
*/
|
|
3902
3927
|
'data': Array<Scout9File>;
|
|
3928
|
+
/**
|
|
3929
|
+
*
|
|
3930
|
+
* @type {PurposeEnum}
|
|
3931
|
+
* @memberof ListFilesResponse
|
|
3932
|
+
*/
|
|
3933
|
+
'purpose'?: PurposeEnum;
|
|
3903
3934
|
}
|
|
3904
3935
|
/**
|
|
3905
3936
|
*
|
|
@@ -4379,6 +4410,17 @@ export interface OrLogic {
|
|
|
4379
4410
|
export type ParsedContextEntity = string | {
|
|
4380
4411
|
[key: string]: any;
|
|
4381
4412
|
};
|
|
4413
|
+
/**
|
|
4414
|
+
*
|
|
4415
|
+
* @export
|
|
4416
|
+
* @enum {string}
|
|
4417
|
+
*/
|
|
4418
|
+
export declare const PurposeEnum: {
|
|
4419
|
+
readonly Context: "context";
|
|
4420
|
+
readonly AgentAudio: "agent-audio";
|
|
4421
|
+
readonly AgentTranscript: "agent-transcript";
|
|
4422
|
+
};
|
|
4423
|
+
export type PurposeEnum = typeof PurposeEnum[keyof typeof PurposeEnum];
|
|
4382
4424
|
/**
|
|
4383
4425
|
*
|
|
4384
4426
|
* @export
|
|
@@ -6073,30 +6115,36 @@ export interface UpdateCustomersResponse {
|
|
|
6073
6115
|
* @interface UpdateWorkflowRequest
|
|
6074
6116
|
*/
|
|
6075
6117
|
export interface UpdateWorkflowRequest {
|
|
6118
|
+
/**
|
|
6119
|
+
* The ID of the workflow to update
|
|
6120
|
+
* @type {string}
|
|
6121
|
+
* @memberof UpdateWorkflowRequest
|
|
6122
|
+
*/
|
|
6123
|
+
'$id': string;
|
|
6076
6124
|
/**
|
|
6077
6125
|
* The name of the workflow
|
|
6078
6126
|
* @type {string}
|
|
6079
6127
|
* @memberof UpdateWorkflowRequest
|
|
6080
6128
|
*/
|
|
6081
|
-
'name'
|
|
6129
|
+
'name'?: string;
|
|
6082
6130
|
/**
|
|
6083
6131
|
*
|
|
6084
6132
|
* @type {ContextDetectionParams}
|
|
6085
6133
|
* @memberof UpdateWorkflowRequest
|
|
6086
6134
|
*/
|
|
6087
|
-
'initiators'
|
|
6135
|
+
'initiators'?: ContextDetectionParams;
|
|
6088
6136
|
/**
|
|
6089
6137
|
* The fields of the workflow
|
|
6090
6138
|
* @type {Array<ConversationContextField>}
|
|
6091
6139
|
* @memberof UpdateWorkflowRequest
|
|
6092
6140
|
*/
|
|
6093
|
-
'fields'
|
|
6141
|
+
'fields'?: Array<ConversationContextField>;
|
|
6094
6142
|
/**
|
|
6095
6143
|
* About this conversation - used as initial context
|
|
6096
6144
|
* @type {string}
|
|
6097
6145
|
* @memberof UpdateWorkflowRequest
|
|
6098
6146
|
*/
|
|
6099
|
-
'context'
|
|
6147
|
+
'context'?: string;
|
|
6100
6148
|
/**
|
|
6101
6149
|
* The webhook to call when a workflow is created
|
|
6102
6150
|
* @type {string}
|
|
@@ -6126,13 +6174,7 @@ export interface UpdateWorkflowRequest {
|
|
|
6126
6174
|
* @type {number}
|
|
6127
6175
|
* @memberof UpdateWorkflowRequest
|
|
6128
6176
|
*/
|
|
6129
|
-
'priority'
|
|
6130
|
-
/**
|
|
6131
|
-
* The ID of the workflow to update
|
|
6132
|
-
* @type {string}
|
|
6133
|
-
* @memberof UpdateWorkflowRequest
|
|
6134
|
-
*/
|
|
6135
|
-
'$id': string;
|
|
6177
|
+
'priority'?: number;
|
|
6136
6178
|
}
|
|
6137
6179
|
/**
|
|
6138
6180
|
*
|
|
@@ -6265,6 +6307,67 @@ export interface Workflow {
|
|
|
6265
6307
|
*/
|
|
6266
6308
|
'priority': number;
|
|
6267
6309
|
}
|
|
6310
|
+
/**
|
|
6311
|
+
*
|
|
6312
|
+
* @export
|
|
6313
|
+
* @interface WorkflowPartial
|
|
6314
|
+
*/
|
|
6315
|
+
export interface WorkflowPartial {
|
|
6316
|
+
/**
|
|
6317
|
+
* The name of the workflow
|
|
6318
|
+
* @type {string}
|
|
6319
|
+
* @memberof WorkflowPartial
|
|
6320
|
+
*/
|
|
6321
|
+
'name'?: string;
|
|
6322
|
+
/**
|
|
6323
|
+
*
|
|
6324
|
+
* @type {ContextDetectionParams}
|
|
6325
|
+
* @memberof WorkflowPartial
|
|
6326
|
+
*/
|
|
6327
|
+
'initiators'?: ContextDetectionParams;
|
|
6328
|
+
/**
|
|
6329
|
+
* The fields of the workflow
|
|
6330
|
+
* @type {Array<ConversationContextField>}
|
|
6331
|
+
* @memberof WorkflowPartial
|
|
6332
|
+
*/
|
|
6333
|
+
'fields'?: Array<ConversationContextField>;
|
|
6334
|
+
/**
|
|
6335
|
+
* About this conversation - used as initial context
|
|
6336
|
+
* @type {string}
|
|
6337
|
+
* @memberof WorkflowPartial
|
|
6338
|
+
*/
|
|
6339
|
+
'context'?: string;
|
|
6340
|
+
/**
|
|
6341
|
+
* The webhook to call when a workflow is created
|
|
6342
|
+
* @type {string}
|
|
6343
|
+
* @memberof WorkflowPartial
|
|
6344
|
+
*/
|
|
6345
|
+
'onCreated'?: string;
|
|
6346
|
+
/**
|
|
6347
|
+
* The webhook to call when a workflow is updated
|
|
6348
|
+
* @type {string}
|
|
6349
|
+
* @memberof WorkflowPartial
|
|
6350
|
+
*/
|
|
6351
|
+
'onUpdated'?: string;
|
|
6352
|
+
/**
|
|
6353
|
+
* The webhook to call when a workflow is deleted
|
|
6354
|
+
* @type {string}
|
|
6355
|
+
* @memberof WorkflowPartial
|
|
6356
|
+
*/
|
|
6357
|
+
'onDeleted'?: string;
|
|
6358
|
+
/**
|
|
6359
|
+
* The webhook to call when a workflow has an error
|
|
6360
|
+
* @type {string}
|
|
6361
|
+
* @memberof WorkflowPartial
|
|
6362
|
+
*/
|
|
6363
|
+
'onError'?: string;
|
|
6364
|
+
/**
|
|
6365
|
+
* The priority of the workflow in relation to other workflows (determines activation order)
|
|
6366
|
+
* @type {number}
|
|
6367
|
+
* @memberof WorkflowPartial
|
|
6368
|
+
*/
|
|
6369
|
+
'priority'?: number;
|
|
6370
|
+
}
|
|
6268
6371
|
/**
|
|
6269
6372
|
* CustomContextApi - axios parameter creator
|
|
6270
6373
|
* @export
|
|
@@ -6459,7 +6562,7 @@ export declare const Scout9ApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
6459
6562
|
*/
|
|
6460
6563
|
contextTest: (contextTestRequest: ContextTestRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6461
6564
|
/**
|
|
6462
|
-
*
|
|
6565
|
+
* Update a context
|
|
6463
6566
|
* @summary Update a context
|
|
6464
6567
|
* @param {UpdateContextRequest} updateContextRequest
|
|
6465
6568
|
* @param {*} [options] Override http request option.
|
|
@@ -6673,11 +6776,12 @@ export declare const Scout9ApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
6673
6776
|
*
|
|
6674
6777
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
6675
6778
|
* @param {File} file
|
|
6676
|
-
* @param {
|
|
6779
|
+
* @param {PurposeEnum} [purpose]
|
|
6780
|
+
* @param {string} [entity]
|
|
6677
6781
|
* @param {*} [options] Override http request option.
|
|
6678
6782
|
* @throws {RequiredError}
|
|
6679
6783
|
*/
|
|
6680
|
-
fileCreate: (file: File | Buffer | Blob, purpose?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6784
|
+
fileCreate: (file: File | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob, purpose?: PurposeEnum, entity?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6681
6785
|
/**
|
|
6682
6786
|
*
|
|
6683
6787
|
* @summary Delete a file.
|
|
@@ -7008,7 +7112,7 @@ export declare const Scout9ApiFp: (configuration?: Configuration) => {
|
|
|
7008
7112
|
*/
|
|
7009
7113
|
contextTest(contextTestRequest: ContextTestRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContextTestResponse>>;
|
|
7010
7114
|
/**
|
|
7011
|
-
*
|
|
7115
|
+
* Update a context
|
|
7012
7116
|
* @summary Update a context
|
|
7013
7117
|
* @param {UpdateContextRequest} updateContextRequest
|
|
7014
7118
|
* @param {*} [options] Override http request option.
|
|
@@ -7222,11 +7326,12 @@ export declare const Scout9ApiFp: (configuration?: Configuration) => {
|
|
|
7222
7326
|
*
|
|
7223
7327
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
7224
7328
|
* @param {File} file
|
|
7225
|
-
* @param {
|
|
7329
|
+
* @param {PurposeEnum} [purpose]
|
|
7330
|
+
* @param {string} [entity]
|
|
7226
7331
|
* @param {*} [options] Override http request option.
|
|
7227
7332
|
* @throws {RequiredError}
|
|
7228
7333
|
*/
|
|
7229
|
-
fileCreate(file: File | Buffer | Blob, purpose?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Scout9File>>;
|
|
7334
|
+
fileCreate(file: File | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob, purpose?: PurposeEnum, entity?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Scout9File>>;
|
|
7230
7335
|
/**
|
|
7231
7336
|
*
|
|
7232
7337
|
* @summary Delete a file.
|
|
@@ -7557,7 +7662,7 @@ export declare const Scout9ApiFactory: (configuration?: Configuration, basePath?
|
|
|
7557
7662
|
*/
|
|
7558
7663
|
contextTest(contextTestRequest: ContextTestRequest, options?: any): AxiosPromise<ContextTestResponse>;
|
|
7559
7664
|
/**
|
|
7560
|
-
*
|
|
7665
|
+
* Update a context
|
|
7561
7666
|
* @summary Update a context
|
|
7562
7667
|
* @param {UpdateContextRequest} updateContextRequest
|
|
7563
7668
|
* @param {*} [options] Override http request option.
|
|
@@ -7771,11 +7876,12 @@ export declare const Scout9ApiFactory: (configuration?: Configuration, basePath?
|
|
|
7771
7876
|
*
|
|
7772
7877
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
7773
7878
|
* @param {File} file
|
|
7774
|
-
* @param {
|
|
7879
|
+
* @param {PurposeEnum} [purpose]
|
|
7880
|
+
* @param {string} [entity]
|
|
7775
7881
|
* @param {*} [options] Override http request option.
|
|
7776
7882
|
* @throws {RequiredError}
|
|
7777
7883
|
*/
|
|
7778
|
-
fileCreate(file: File | Buffer | Blob, purpose?: string, options?: any): AxiosPromise<Scout9File>;
|
|
7884
|
+
fileCreate(file: File | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob, purpose?: PurposeEnum, entity?: string, options?: any): AxiosPromise<Scout9File>;
|
|
7779
7885
|
/**
|
|
7780
7886
|
*
|
|
7781
7887
|
* @summary Delete a file.
|
|
@@ -8124,7 +8230,7 @@ export declare class Scout9Api extends BaseAPI {
|
|
|
8124
8230
|
*/
|
|
8125
8231
|
contextTest(contextTestRequest: ContextTestRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContextTestResponse, any>>;
|
|
8126
8232
|
/**
|
|
8127
|
-
*
|
|
8233
|
+
* Update a context
|
|
8128
8234
|
* @summary Update a context
|
|
8129
8235
|
* @param {UpdateContextRequest} updateContextRequest
|
|
8130
8236
|
* @param {*} [options] Override http request option.
|
|
@@ -8364,12 +8470,13 @@ export declare class Scout9Api extends BaseAPI {
|
|
|
8364
8470
|
*
|
|
8365
8471
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
8366
8472
|
* @param {File} file
|
|
8367
|
-
* @param {
|
|
8473
|
+
* @param {PurposeEnum} [purpose]
|
|
8474
|
+
* @param {string} [entity]
|
|
8368
8475
|
* @param {*} [options] Override http request option.
|
|
8369
8476
|
* @throws {RequiredError}
|
|
8370
8477
|
* @memberof Scout9Api
|
|
8371
8478
|
*/
|
|
8372
|
-
fileCreate(file: File | Buffer | Blob, purpose?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scout9File, any>>;
|
|
8479
|
+
fileCreate(file: File | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob, purpose?: PurposeEnum, entity?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scout9File, any>>;
|
|
8373
8480
|
/**
|
|
8374
8481
|
*
|
|
8375
8482
|
* @summary Delete a file.
|
package/build/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Scout9 API
|
|
6
6
|
* Scout9 APIs for managing Scout9 users and conversations with your Scout9 agents
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-alpha.0.0.9
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -16,7 +16,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
16
16
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.Scout9Api = exports.Scout9ApiFactory = exports.Scout9ApiFp = exports.Scout9ApiAxiosParamCreator = exports.CustomContextApi = exports.CustomContextApiFactory = exports.CustomContextApiFp = exports.CustomContextApiAxiosParamCreator = exports.UpdateAgentsRequestAgentsInnerModelEnum = exports.UpdateAgentRequestModelEnum = exports.MessageGetResponseInnerRoleEnum = exports.MessageCreateRequestRoleEnum = exports.MessageBaseRoleEnum = exports.MessageRoleEnum = exports.ListApiOperationsResponseInnerMethodEnum = exports.ListAgentsResponseInnerModelEnum = exports.GetApiOperationResponseMethodEnum = exports.GetAgentResponseModelEnum = exports.GenerateResponseRoleEnum = exports.ExistenceOperator = exports.EqualityOperator = exports.CreateAgentsRequestAgentsInnerModelEnum = exports.CreateAgentRequestModelEnum = exports.ConversationEnvironment = exports.ConversationContextFieldConditionOperatorEnum = exports.ApiOperationMethodEnum = exports.AgentModelEnum = void 0;
|
|
19
|
+
exports.Scout9Api = exports.Scout9ApiFactory = exports.Scout9ApiFp = exports.Scout9ApiAxiosParamCreator = exports.CustomContextApi = exports.CustomContextApiFactory = exports.CustomContextApiFp = exports.CustomContextApiAxiosParamCreator = exports.UpdateAgentsRequestAgentsInnerModelEnum = exports.UpdateAgentRequestModelEnum = exports.PurposeEnum = exports.MessageGetResponseInnerRoleEnum = exports.MessageCreateRequestRoleEnum = exports.MessageBaseRoleEnum = exports.MessageRoleEnum = exports.ListApiOperationsResponseInnerMethodEnum = exports.ListAgentsResponseInnerModelEnum = exports.GetApiOperationResponseMethodEnum = exports.GetAgentResponseModelEnum = exports.GenerateResponseRoleEnum = exports.ExistenceOperator = exports.EqualityOperator = exports.CreateAgentsRequestAgentsInnerModelEnum = exports.CreateAgentRequestModelEnum = exports.ConversationEnvironment = exports.ConversationContextFieldConditionOperatorEnum = exports.ApiOperationMethodEnum = exports.AgentModelEnum = void 0;
|
|
20
20
|
const axios_1 = __importDefault(require("axios"));
|
|
21
21
|
// Some imports not used depending on template conditions
|
|
22
22
|
// @ts-ignore
|
|
@@ -158,6 +158,16 @@ exports.MessageGetResponseInnerRoleEnum = {
|
|
|
158
158
|
Agent: 'agent',
|
|
159
159
|
Context: 'context'
|
|
160
160
|
};
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @export
|
|
164
|
+
* @enum {string}
|
|
165
|
+
*/
|
|
166
|
+
exports.PurposeEnum = {
|
|
167
|
+
Context: 'context',
|
|
168
|
+
AgentAudio: 'agent-audio',
|
|
169
|
+
AgentTranscript: 'agent-transcript'
|
|
170
|
+
};
|
|
161
171
|
exports.UpdateAgentRequestModelEnum = {
|
|
162
172
|
Scout9: 'Scout9',
|
|
163
173
|
Bard: 'bard',
|
|
@@ -763,7 +773,7 @@ const Scout9ApiAxiosParamCreator = function (configuration) {
|
|
|
763
773
|
};
|
|
764
774
|
},
|
|
765
775
|
/**
|
|
766
|
-
*
|
|
776
|
+
* Update a context
|
|
767
777
|
* @summary Update a context
|
|
768
778
|
* @param {UpdateContextRequest} updateContextRequest
|
|
769
779
|
* @param {*} [options] Override http request option.
|
|
@@ -1557,11 +1567,12 @@ const Scout9ApiAxiosParamCreator = function (configuration) {
|
|
|
1557
1567
|
*
|
|
1558
1568
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
1559
1569
|
* @param {File} file
|
|
1560
|
-
* @param {
|
|
1570
|
+
* @param {PurposeEnum} [purpose]
|
|
1571
|
+
* @param {string} [entity]
|
|
1561
1572
|
* @param {*} [options] Override http request option.
|
|
1562
1573
|
* @throws {RequiredError}
|
|
1563
1574
|
*/
|
|
1564
|
-
fileCreate: async (file, purpose, options = {}) => {
|
|
1575
|
+
fileCreate: async (file, purpose, entity, options = {}) => {
|
|
1565
1576
|
// verify required parameter 'file' is not null or undefined
|
|
1566
1577
|
(0, common_1.assertParamExists)('fileCreate', 'file', file);
|
|
1567
1578
|
const localVarPath = `/v1-utils-files`;
|
|
@@ -1579,7 +1590,10 @@ const Scout9ApiAxiosParamCreator = function (configuration) {
|
|
|
1579
1590
|
localVarFormParams.append('file', file);
|
|
1580
1591
|
}
|
|
1581
1592
|
if (purpose !== undefined) {
|
|
1582
|
-
localVarFormParams.append('purpose', purpose);
|
|
1593
|
+
localVarFormParams.append('purpose', new Blob([JSON.stringify(purpose)], { type: "application/json", }));
|
|
1594
|
+
}
|
|
1595
|
+
if (entity !== undefined) {
|
|
1596
|
+
localVarFormParams.append('entity', entity);
|
|
1583
1597
|
}
|
|
1584
1598
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
1585
1599
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2509,7 +2523,7 @@ const Scout9ApiFp = function (configuration) {
|
|
|
2509
2523
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2510
2524
|
},
|
|
2511
2525
|
/**
|
|
2512
|
-
*
|
|
2526
|
+
* Update a context
|
|
2513
2527
|
* @summary Update a context
|
|
2514
2528
|
* @param {UpdateContextRequest} updateContextRequest
|
|
2515
2529
|
* @param {*} [options] Override http request option.
|
|
@@ -2801,12 +2815,13 @@ const Scout9ApiFp = function (configuration) {
|
|
|
2801
2815
|
*
|
|
2802
2816
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
2803
2817
|
* @param {File} file
|
|
2804
|
-
* @param {
|
|
2818
|
+
* @param {PurposeEnum} [purpose]
|
|
2819
|
+
* @param {string} [entity]
|
|
2805
2820
|
* @param {*} [options] Override http request option.
|
|
2806
2821
|
* @throws {RequiredError}
|
|
2807
2822
|
*/
|
|
2808
|
-
async fileCreate(file, purpose, options) {
|
|
2809
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.fileCreate(file, purpose, options);
|
|
2823
|
+
async fileCreate(file, purpose, entity, options) {
|
|
2824
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.fileCreate(file, purpose, entity, options);
|
|
2810
2825
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2811
2826
|
},
|
|
2812
2827
|
/**
|
|
@@ -3247,7 +3262,7 @@ const Scout9ApiFactory = function (configuration, basePath, axios) {
|
|
|
3247
3262
|
return localVarFp.contextTest(contextTestRequest, options).then((request) => request(axios, basePath));
|
|
3248
3263
|
},
|
|
3249
3264
|
/**
|
|
3250
|
-
*
|
|
3265
|
+
* Update a context
|
|
3251
3266
|
* @summary Update a context
|
|
3252
3267
|
* @param {UpdateContextRequest} updateContextRequest
|
|
3253
3268
|
* @param {*} [options] Override http request option.
|
|
@@ -3513,12 +3528,13 @@ const Scout9ApiFactory = function (configuration, basePath, axios) {
|
|
|
3513
3528
|
*
|
|
3514
3529
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
3515
3530
|
* @param {File} file
|
|
3516
|
-
* @param {
|
|
3531
|
+
* @param {PurposeEnum} [purpose]
|
|
3532
|
+
* @param {string} [entity]
|
|
3517
3533
|
* @param {*} [options] Override http request option.
|
|
3518
3534
|
* @throws {RequiredError}
|
|
3519
3535
|
*/
|
|
3520
|
-
fileCreate(file, purpose, options) {
|
|
3521
|
-
return localVarFp.fileCreate(file, purpose, options).then((request) => request(axios, basePath));
|
|
3536
|
+
fileCreate(file, purpose, entity, options) {
|
|
3537
|
+
return localVarFp.fileCreate(file, purpose, entity, options).then((request) => request(axios, basePath));
|
|
3522
3538
|
},
|
|
3523
3539
|
/**
|
|
3524
3540
|
*
|
|
@@ -3950,7 +3966,7 @@ class Scout9Api extends base_1.BaseAPI {
|
|
|
3950
3966
|
return (0, exports.Scout9ApiFp)(this.configuration).contextTest(contextTestRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3951
3967
|
}
|
|
3952
3968
|
/**
|
|
3953
|
-
*
|
|
3969
|
+
* Update a context
|
|
3954
3970
|
* @summary Update a context
|
|
3955
3971
|
* @param {UpdateContextRequest} updateContextRequest
|
|
3956
3972
|
* @param {*} [options] Override http request option.
|
|
@@ -4242,13 +4258,14 @@ class Scout9Api extends base_1.BaseAPI {
|
|
|
4242
4258
|
*
|
|
4243
4259
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
4244
4260
|
* @param {File} file
|
|
4245
|
-
* @param {
|
|
4261
|
+
* @param {PurposeEnum} [purpose]
|
|
4262
|
+
* @param {string} [entity]
|
|
4246
4263
|
* @param {*} [options] Override http request option.
|
|
4247
4264
|
* @throws {RequiredError}
|
|
4248
4265
|
* @memberof Scout9Api
|
|
4249
4266
|
*/
|
|
4250
|
-
fileCreate(file, purpose, options) {
|
|
4251
|
-
return (0, exports.Scout9ApiFp)(this.configuration).fileCreate(file, purpose, options).then((request) => request(this.axios, this.basePath));
|
|
4267
|
+
fileCreate(file, purpose, entity, options) {
|
|
4268
|
+
return (0, exports.Scout9ApiFp)(this.configuration).fileCreate(file, purpose, entity, options).then((request) => request(this.axios, this.basePath));
|
|
4252
4269
|
}
|
|
4253
4270
|
/**
|
|
4254
4271
|
*
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Scout9 API
|
|
5
5
|
* Scout9 APIs for managing Scout9 users and conversations with your Scout9 agents
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0-alpha.0.0.9
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2016,6 +2016,31 @@ export interface CreateCustomersResponse {
|
|
|
2016
2016
|
*/
|
|
2017
2017
|
'$operation': string;
|
|
2018
2018
|
}
|
|
2019
|
+
/**
|
|
2020
|
+
*
|
|
2021
|
+
* @export
|
|
2022
|
+
* @interface CreateFileRequestWithStringPurpose
|
|
2023
|
+
*/
|
|
2024
|
+
export interface CreateFileRequestWithStringPurpose {
|
|
2025
|
+
/**
|
|
2026
|
+
*
|
|
2027
|
+
* @type {File}
|
|
2028
|
+
* @memberof CreateFileRequestWithStringPurpose
|
|
2029
|
+
*/
|
|
2030
|
+
'file': File | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob;
|
|
2031
|
+
/**
|
|
2032
|
+
*
|
|
2033
|
+
* @type {string}
|
|
2034
|
+
* @memberof CreateFileRequestWithStringPurpose
|
|
2035
|
+
*/
|
|
2036
|
+
'purpose': string;
|
|
2037
|
+
/**
|
|
2038
|
+
*
|
|
2039
|
+
* @type {string}
|
|
2040
|
+
* @memberof CreateFileRequestWithStringPurpose
|
|
2041
|
+
*/
|
|
2042
|
+
'entity': string;
|
|
2043
|
+
}
|
|
2019
2044
|
/**
|
|
2020
2045
|
*
|
|
2021
2046
|
* @export
|
|
@@ -3958,7 +3983,15 @@ export interface ListFilesResponse {
|
|
|
3958
3983
|
* @memberof ListFilesResponse
|
|
3959
3984
|
*/
|
|
3960
3985
|
'data': Array<Scout9File>;
|
|
3986
|
+
/**
|
|
3987
|
+
*
|
|
3988
|
+
* @type {PurposeEnum}
|
|
3989
|
+
* @memberof ListFilesResponse
|
|
3990
|
+
*/
|
|
3991
|
+
'purpose'?: PurposeEnum;
|
|
3961
3992
|
}
|
|
3993
|
+
|
|
3994
|
+
|
|
3962
3995
|
/**
|
|
3963
3996
|
*
|
|
3964
3997
|
* @export
|
|
@@ -4451,6 +4484,21 @@ export interface OrLogic {
|
|
|
4451
4484
|
*/
|
|
4452
4485
|
export type ParsedContextEntity = string | { [key: string]: any; };
|
|
4453
4486
|
|
|
4487
|
+
/**
|
|
4488
|
+
*
|
|
4489
|
+
* @export
|
|
4490
|
+
* @enum {string}
|
|
4491
|
+
*/
|
|
4492
|
+
|
|
4493
|
+
export const PurposeEnum = {
|
|
4494
|
+
Context: 'context',
|
|
4495
|
+
AgentAudio: 'agent-audio',
|
|
4496
|
+
AgentTranscript: 'agent-transcript'
|
|
4497
|
+
} as const;
|
|
4498
|
+
|
|
4499
|
+
export type PurposeEnum = typeof PurposeEnum[keyof typeof PurposeEnum];
|
|
4500
|
+
|
|
4501
|
+
|
|
4454
4502
|
/**
|
|
4455
4503
|
*
|
|
4456
4504
|
* @export
|
|
@@ -6156,30 +6204,36 @@ export interface UpdateCustomersResponse {
|
|
|
6156
6204
|
* @interface UpdateWorkflowRequest
|
|
6157
6205
|
*/
|
|
6158
6206
|
export interface UpdateWorkflowRequest {
|
|
6207
|
+
/**
|
|
6208
|
+
* The ID of the workflow to update
|
|
6209
|
+
* @type {string}
|
|
6210
|
+
* @memberof UpdateWorkflowRequest
|
|
6211
|
+
*/
|
|
6212
|
+
'$id': string;
|
|
6159
6213
|
/**
|
|
6160
6214
|
* The name of the workflow
|
|
6161
6215
|
* @type {string}
|
|
6162
6216
|
* @memberof UpdateWorkflowRequest
|
|
6163
6217
|
*/
|
|
6164
|
-
'name'
|
|
6218
|
+
'name'?: string;
|
|
6165
6219
|
/**
|
|
6166
6220
|
*
|
|
6167
6221
|
* @type {ContextDetectionParams}
|
|
6168
6222
|
* @memberof UpdateWorkflowRequest
|
|
6169
6223
|
*/
|
|
6170
|
-
'initiators'
|
|
6224
|
+
'initiators'?: ContextDetectionParams;
|
|
6171
6225
|
/**
|
|
6172
6226
|
* The fields of the workflow
|
|
6173
6227
|
* @type {Array<ConversationContextField>}
|
|
6174
6228
|
* @memberof UpdateWorkflowRequest
|
|
6175
6229
|
*/
|
|
6176
|
-
'fields'
|
|
6230
|
+
'fields'?: Array<ConversationContextField>;
|
|
6177
6231
|
/**
|
|
6178
6232
|
* About this conversation - used as initial context
|
|
6179
6233
|
* @type {string}
|
|
6180
6234
|
* @memberof UpdateWorkflowRequest
|
|
6181
6235
|
*/
|
|
6182
|
-
'context'
|
|
6236
|
+
'context'?: string;
|
|
6183
6237
|
/**
|
|
6184
6238
|
* The webhook to call when a workflow is created
|
|
6185
6239
|
* @type {string}
|
|
@@ -6209,13 +6263,7 @@ export interface UpdateWorkflowRequest {
|
|
|
6209
6263
|
* @type {number}
|
|
6210
6264
|
* @memberof UpdateWorkflowRequest
|
|
6211
6265
|
*/
|
|
6212
|
-
'priority'
|
|
6213
|
-
/**
|
|
6214
|
-
* The ID of the workflow to update
|
|
6215
|
-
* @type {string}
|
|
6216
|
-
* @memberof UpdateWorkflowRequest
|
|
6217
|
-
*/
|
|
6218
|
-
'$id': string;
|
|
6266
|
+
'priority'?: number;
|
|
6219
6267
|
}
|
|
6220
6268
|
/**
|
|
6221
6269
|
*
|
|
@@ -6348,6 +6396,67 @@ export interface Workflow {
|
|
|
6348
6396
|
*/
|
|
6349
6397
|
'priority': number;
|
|
6350
6398
|
}
|
|
6399
|
+
/**
|
|
6400
|
+
*
|
|
6401
|
+
* @export
|
|
6402
|
+
* @interface WorkflowPartial
|
|
6403
|
+
*/
|
|
6404
|
+
export interface WorkflowPartial {
|
|
6405
|
+
/**
|
|
6406
|
+
* The name of the workflow
|
|
6407
|
+
* @type {string}
|
|
6408
|
+
* @memberof WorkflowPartial
|
|
6409
|
+
*/
|
|
6410
|
+
'name'?: string;
|
|
6411
|
+
/**
|
|
6412
|
+
*
|
|
6413
|
+
* @type {ContextDetectionParams}
|
|
6414
|
+
* @memberof WorkflowPartial
|
|
6415
|
+
*/
|
|
6416
|
+
'initiators'?: ContextDetectionParams;
|
|
6417
|
+
/**
|
|
6418
|
+
* The fields of the workflow
|
|
6419
|
+
* @type {Array<ConversationContextField>}
|
|
6420
|
+
* @memberof WorkflowPartial
|
|
6421
|
+
*/
|
|
6422
|
+
'fields'?: Array<ConversationContextField>;
|
|
6423
|
+
/**
|
|
6424
|
+
* About this conversation - used as initial context
|
|
6425
|
+
* @type {string}
|
|
6426
|
+
* @memberof WorkflowPartial
|
|
6427
|
+
*/
|
|
6428
|
+
'context'?: string;
|
|
6429
|
+
/**
|
|
6430
|
+
* The webhook to call when a workflow is created
|
|
6431
|
+
* @type {string}
|
|
6432
|
+
* @memberof WorkflowPartial
|
|
6433
|
+
*/
|
|
6434
|
+
'onCreated'?: string;
|
|
6435
|
+
/**
|
|
6436
|
+
* The webhook to call when a workflow is updated
|
|
6437
|
+
* @type {string}
|
|
6438
|
+
* @memberof WorkflowPartial
|
|
6439
|
+
*/
|
|
6440
|
+
'onUpdated'?: string;
|
|
6441
|
+
/**
|
|
6442
|
+
* The webhook to call when a workflow is deleted
|
|
6443
|
+
* @type {string}
|
|
6444
|
+
* @memberof WorkflowPartial
|
|
6445
|
+
*/
|
|
6446
|
+
'onDeleted'?: string;
|
|
6447
|
+
/**
|
|
6448
|
+
* The webhook to call when a workflow has an error
|
|
6449
|
+
* @type {string}
|
|
6450
|
+
* @memberof WorkflowPartial
|
|
6451
|
+
*/
|
|
6452
|
+
'onError'?: string;
|
|
6453
|
+
/**
|
|
6454
|
+
* The priority of the workflow in relation to other workflows (determines activation order)
|
|
6455
|
+
* @type {number}
|
|
6456
|
+
* @memberof WorkflowPartial
|
|
6457
|
+
*/
|
|
6458
|
+
'priority'?: number;
|
|
6459
|
+
}
|
|
6351
6460
|
|
|
6352
6461
|
/**
|
|
6353
6462
|
* CustomContextApi - axios parameter creator
|
|
@@ -7048,7 +7157,7 @@ export const Scout9ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
7048
7157
|
};
|
|
7049
7158
|
},
|
|
7050
7159
|
/**
|
|
7051
|
-
*
|
|
7160
|
+
* Update a context
|
|
7052
7161
|
* @summary Update a context
|
|
7053
7162
|
* @param {UpdateContextRequest} updateContextRequest
|
|
7054
7163
|
* @param {*} [options] Override http request option.
|
|
@@ -8000,11 +8109,12 @@ export const Scout9ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
8000
8109
|
*
|
|
8001
8110
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
8002
8111
|
* @param {File} file
|
|
8003
|
-
* @param {
|
|
8112
|
+
* @param {PurposeEnum} [purpose]
|
|
8113
|
+
* @param {string} [entity]
|
|
8004
8114
|
* @param {*} [options] Override http request option.
|
|
8005
8115
|
* @throws {RequiredError}
|
|
8006
8116
|
*/
|
|
8007
|
-
fileCreate: async (file: File | Buffer | Blob, purpose?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
8117
|
+
fileCreate: async (file: File | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob, purpose?: PurposeEnum, entity?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
8008
8118
|
// verify required parameter 'file' is not null or undefined
|
|
8009
8119
|
assertParamExists('fileCreate', 'file', file)
|
|
8010
8120
|
const localVarPath = `/v1-utils-files`;
|
|
@@ -8026,7 +8136,11 @@ export const Scout9ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
8026
8136
|
}
|
|
8027
8137
|
|
|
8028
8138
|
if (purpose !== undefined) {
|
|
8029
|
-
localVarFormParams.append('purpose', purpose
|
|
8139
|
+
localVarFormParams.append('purpose', new Blob([JSON.stringify(purpose)], { type: "application/json", }));
|
|
8140
|
+
}
|
|
8141
|
+
|
|
8142
|
+
if (entity !== undefined) {
|
|
8143
|
+
localVarFormParams.append('entity', entity as any);
|
|
8030
8144
|
}
|
|
8031
8145
|
|
|
8032
8146
|
|
|
@@ -9104,7 +9218,7 @@ export const Scout9ApiFp = function(configuration?: Configuration) {
|
|
|
9104
9218
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9105
9219
|
},
|
|
9106
9220
|
/**
|
|
9107
|
-
*
|
|
9221
|
+
* Update a context
|
|
9108
9222
|
* @summary Update a context
|
|
9109
9223
|
* @param {UpdateContextRequest} updateContextRequest
|
|
9110
9224
|
* @param {*} [options] Override http request option.
|
|
@@ -9396,12 +9510,13 @@ export const Scout9ApiFp = function(configuration?: Configuration) {
|
|
|
9396
9510
|
*
|
|
9397
9511
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
9398
9512
|
* @param {File} file
|
|
9399
|
-
* @param {
|
|
9513
|
+
* @param {PurposeEnum} [purpose]
|
|
9514
|
+
* @param {string} [entity]
|
|
9400
9515
|
* @param {*} [options] Override http request option.
|
|
9401
9516
|
* @throws {RequiredError}
|
|
9402
9517
|
*/
|
|
9403
|
-
async fileCreate(file: File | Buffer | Blob, purpose?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Scout9File>> {
|
|
9404
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.fileCreate(file, purpose, options);
|
|
9518
|
+
async fileCreate(file: File | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob, purpose?: PurposeEnum, entity?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Scout9File>> {
|
|
9519
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.fileCreate(file, purpose, entity, options);
|
|
9405
9520
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9406
9521
|
},
|
|
9407
9522
|
/**
|
|
@@ -9842,7 +9957,7 @@ export const Scout9ApiFactory = function (configuration?: Configuration, basePat
|
|
|
9842
9957
|
return localVarFp.contextTest(contextTestRequest, options).then((request) => request(axios, basePath));
|
|
9843
9958
|
},
|
|
9844
9959
|
/**
|
|
9845
|
-
*
|
|
9960
|
+
* Update a context
|
|
9846
9961
|
* @summary Update a context
|
|
9847
9962
|
* @param {UpdateContextRequest} updateContextRequest
|
|
9848
9963
|
* @param {*} [options] Override http request option.
|
|
@@ -10108,12 +10223,13 @@ export const Scout9ApiFactory = function (configuration?: Configuration, basePat
|
|
|
10108
10223
|
*
|
|
10109
10224
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
10110
10225
|
* @param {File} file
|
|
10111
|
-
* @param {
|
|
10226
|
+
* @param {PurposeEnum} [purpose]
|
|
10227
|
+
* @param {string} [entity]
|
|
10112
10228
|
* @param {*} [options] Override http request option.
|
|
10113
10229
|
* @throws {RequiredError}
|
|
10114
10230
|
*/
|
|
10115
|
-
fileCreate(file: File | Buffer | Blob, purpose?: string, options?: any): AxiosPromise<Scout9File> {
|
|
10116
|
-
return localVarFp.fileCreate(file, purpose, options).then((request) => request(axios, basePath));
|
|
10231
|
+
fileCreate(file: File | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob, purpose?: PurposeEnum, entity?: string, options?: any): AxiosPromise<Scout9File> {
|
|
10232
|
+
return localVarFp.fileCreate(file, purpose, entity, options).then((request) => request(axios, basePath));
|
|
10117
10233
|
},
|
|
10118
10234
|
/**
|
|
10119
10235
|
*
|
|
@@ -10561,7 +10677,7 @@ export class Scout9Api extends BaseAPI {
|
|
|
10561
10677
|
}
|
|
10562
10678
|
|
|
10563
10679
|
/**
|
|
10564
|
-
*
|
|
10680
|
+
* Update a context
|
|
10565
10681
|
* @summary Update a context
|
|
10566
10682
|
* @param {UpdateContextRequest} updateContextRequest
|
|
10567
10683
|
* @param {*} [options] Override http request option.
|
|
@@ -10879,13 +10995,14 @@ export class Scout9Api extends BaseAPI {
|
|
|
10879
10995
|
*
|
|
10880
10996
|
* @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
|
|
10881
10997
|
* @param {File} file
|
|
10882
|
-
* @param {
|
|
10998
|
+
* @param {PurposeEnum} [purpose]
|
|
10999
|
+
* @param {string} [entity]
|
|
10883
11000
|
* @param {*} [options] Override http request option.
|
|
10884
11001
|
* @throws {RequiredError}
|
|
10885
11002
|
* @memberof Scout9Api
|
|
10886
11003
|
*/
|
|
10887
|
-
public fileCreate(file: File | Buffer | Blob, purpose?: string, options?: AxiosRequestConfig) {
|
|
10888
|
-
return Scout9ApiFp(this.configuration).fileCreate(file, purpose, options).then((request) => request(this.axios, this.basePath));
|
|
11004
|
+
public fileCreate(file: File | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob | Buffer | Blob, purpose?: PurposeEnum, entity?: string, options?: AxiosRequestConfig) {
|
|
11005
|
+
return Scout9ApiFp(this.configuration).fileCreate(file, purpose, entity, options).then((request) => request(this.axios, this.basePath));
|
|
10889
11006
|
}
|
|
10890
11007
|
|
|
10891
11008
|
/**
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/typescript/lib/lib.es2022.full.d.ts","./src/configuration.ts","../../node_modules/axios/index.d.ts","./src/base.ts","./src/common.ts","./src/api.ts","./src/webhooks.ts","./src/index.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"1df2366de6650547b3dc1d7c4147355c0f6b4729c964e3839636fa418982d131",{"version":"cc688953e0ccd3717a29bbb0f8f7a1dfed032038e60b0eda8e634af02f4f4914","signature":"35c8b96bde5d990841af429e2f0e0dabec6b879c78520cb7bea96545b74ce951"},"1d729ea435a93e1a70519d06a6f13fa418c4c39a52b69e6db86750ebfcdf5554",{"version":"3fe7e8d61fbaf5dccb2ead34cb6dc6caf591112450bdff69584d0ce11e362ac5","signature":"7255fa8edf9e01eb95b7cdb06af65b45add5f568e0d20036d0b482f6cd2ce3fd"},{"version":"d2ec22fb983a478bad49f80c912484531bd12d12afb78c17b7acdffc82fc66ce","signature":"9bce2cf8058f0b3607fd1f7e93fe48974ec67a33305727a5aa37082d471e0e43"},{"version":"6d3e713a8bedc3bc0ee1a43f764f56f6c75eaf8bbc5238fd0fc86e36bf1f1e57","signature":"e26ee4e522116ce13d5fd65b672a1bb750ccefc25ba4fa24fa4d0aa5d5d55e50"},{"version":"8d16a963649261e0e535b51387b00868d8e44dc1b86ced980f71e72e24980641","signature":"855f834d7b5ddd9e0a5d013ea99519c700d804752eeefc1f9e6d9571c044e528"},{"version":"ad57a6f39beb8d3bec1fbc3a9913adcb910e7641e9851811e210ddc2d80401bb","signature":"6ad4c7769a260b4a90b120348ae7ad379574da9fe62d5dddb3e4d8b2be821831"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"8d74c73e21579ffe9f77ce969bc0317470c63797bd4719c8895a60ce6ae6a263","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","765f9f91293be0c057d5bf2b59494e1eac70efae55ff1c27c6e47c359bc889d2","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"ac0c77cd7db52b3c278bdd1452ce754014835493d05b84535f46854fdc2063b2","affectsGlobalScope":true},"b9f36877501f2ce0e276e993c93cd2cf325e78d0409ec4612b1eb9d6a537e60b","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","c58642af30c06a8e250d248a747ceb045af9a92d8cab22478d80c3bef276bfd5","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"ffc62d73b4fa10ca8c59f8802df88efefe447025730a24ee977b60adedc5bf37","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"562e1951bb48e89df7b821d998bfcd9458d93b0afd06cf6db8286606da5f21fd","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","fedd311d427fdafac411b4e0edc0d1014668853679e021e04717a6de45ff5c0c","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"4d0536bbf67bc4301ebb5154eeb38168db0f7b34c490a80b6fa41bc6b751bcb4","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","34118be360cdd3381bbebbfd4b093c394460c8fc5df40688d58f45d86ab1448b","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab"],"root":[62,[64,68]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./build","rootDir":"./src","skipLibCheck":true,"strict":true,"target":9},"fileIdsList":[[88,115,122,123],[88,115,122],[85,88,115,122,126,127,128],[115,124,127,129,131],[115],[69,115],[72,115],[73,78,106,115],[74,85,86,93,103,114,115],[74,75,85,93,115],[76,115],[77,78,86,94,115],[78,103,111,115],[79,81,85,93,115],[80,115],[81,82,115],[85,115],[83,85,115],[85,86,87,103,114,115],[85,86,87,100,103,106,115],[115,119],[81,85,88,93,103,114,115],[85,86,88,89,93,103,111,114,115],[88,90,103,111,114,115],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121],[85,91,115],[92,114,115],[81,85,93,103,115],[94,115],[95,115],[72,96,115],[97,113,115,119],[98,115],[99,115],[85,100,101,115],[100,102,115,117],[73,85,103,104,105,106,115],[73,103,105,115],[103,104,115],[106,115],[107,115],[103,115],[85,109,110,115],[109,110,115],[78,93,103,111,115],[112,115],[93,113,115],[73,88,99,114,115],[78,115],[103,115,116],[115,117],[115,118],[73,78,85,87,96,103,114,115,117,119],[103,115,120],[115,134,173],[115,134,158,173],[115,173],[115,134],[115,134,159,173],[115,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172],[115,159,173],[86,103,115,122,125],[88,115,122,125,130],[62,63,64,65,115],[62,63,115],[62,63,64,115],[62,66,67,115],[62,63,64],[62,63],[62,66,67]],"referencedMap":[[124,1],[123,2],[129,3],[132,4],[130,5],[133,5],[125,5],[69,6],[70,6],[72,7],[73,8],[74,9],[75,10],[76,11],[77,12],[78,13],[79,14],[80,15],[81,16],[82,16],[84,17],[83,18],[85,17],[86,19],[87,20],[71,21],[121,5],[88,22],[89,23],[90,24],[122,25],[91,26],[92,27],[93,28],[94,29],[95,30],[96,31],[97,32],[98,33],[99,34],[100,35],[101,35],[102,36],[103,37],[105,38],[104,39],[106,40],[107,41],[108,42],[109,43],[110,44],[111,45],[112,46],[113,47],[114,48],[115,49],[116,50],[117,51],[118,52],[119,53],[120,54],[127,5],[128,5],[158,55],[159,56],[134,57],[137,57],[156,55],[157,55],[147,55],[146,58],[144,55],[139,55],[152,55],[150,55],[154,55],[138,55],[151,55],[155,55],[140,55],[141,55],[153,55],[135,55],[142,55],[143,55],[145,55],[149,55],[160,59],[148,55],[136,55],[173,60],[172,5],[167,59],[169,61],[168,59],[161,59],[162,59],[164,59],[166,59],[170,61],[171,61],[163,61],[165,61],[126,62],[131,63],[63,5],[59,5],[60,5],[10,5],[11,5],[15,5],[14,5],[2,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[22,5],[23,5],[3,5],[4,5],[27,5],[24,5],[25,5],[26,5],[28,5],[29,5],[30,5],[5,5],[31,5],[32,5],[33,5],[34,5],[6,5],[38,5],[35,5],[36,5],[37,5],[39,5],[7,5],[40,5],[45,5],[46,5],[41,5],[42,5],[43,5],[44,5],[8,5],[50,5],[47,5],[48,5],[49,5],[51,5],[9,5],[52,5],[61,5],[53,5],[54,5],[57,5],[55,5],[56,5],[1,5],[58,5],[13,5],[12,5],[66,64],[64,65],[65,66],[62,5],[68,67],[67,49]],"exportedModulesMap":[[124,1],[123,2],[129,3],[132,4],[130,5],[133,5],[125,5],[69,6],[70,6],[72,7],[73,8],[74,9],[75,10],[76,11],[77,12],[78,13],[79,14],[80,15],[81,16],[82,16],[84,17],[83,18],[85,17],[86,19],[87,20],[71,21],[121,5],[88,22],[89,23],[90,24],[122,25],[91,26],[92,27],[93,28],[94,29],[95,30],[96,31],[97,32],[98,33],[99,34],[100,35],[101,35],[102,36],[103,37],[105,38],[104,39],[106,40],[107,41],[108,42],[109,43],[110,44],[111,45],[112,46],[113,47],[114,48],[115,49],[116,50],[117,51],[118,52],[119,53],[120,54],[127,5],[128,5],[158,55],[159,56],[134,57],[137,57],[156,55],[157,55],[147,55],[146,58],[144,55],[139,55],[152,55],[150,55],[154,55],[138,55],[151,55],[155,55],[140,55],[141,55],[153,55],[135,55],[142,55],[143,55],[145,55],[149,55],[160,59],[148,55],[136,55],[173,60],[172,5],[167,59],[169,61],[168,59],[161,59],[162,59],[164,59],[166,59],[170,61],[171,61],[163,61],[165,61],[126,62],[131,63],[63,5],[59,5],[60,5],[10,5],[11,5],[15,5],[14,5],[2,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[22,5],[23,5],[3,5],[4,5],[27,5],[24,5],[25,5],[26,5],[28,5],[29,5],[30,5],[5,5],[31,5],[32,5],[33,5],[34,5],[6,5],[38,5],[35,5],[36,5],[37,5],[39,5],[7,5],[40,5],[45,5],[46,5],[41,5],[42,5],[43,5],[44,5],[8,5],[50,5],[47,5],[48,5],[49,5],[51,5],[9,5],[52,5],[61,5],[53,5],[54,5],[57,5],[55,5],[56,5],[1,5],[58,5],[13,5],[12,5],[66,68],[64,69],[65,68],[68,70]],"semanticDiagnosticsPerFile":[124,123,129,132,130,133,125,69,70,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,71,121,88,89,90,122,91,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,127,128,158,159,134,137,156,157,147,146,144,139,152,150,154,138,151,155,140,141,153,135,142,143,145,149,160,148,136,173,172,167,169,168,161,162,164,166,170,171,163,165,126,131,63,59,60,10,11,15,14,2,16,17,18,19,20,21,22,23,3,4,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,61,53,54,57,55,56,1,58,13,12,66,64,65,62,68,67],"latestChangedDtsFile":"./build/api.d.ts"},"version":"5.1.6"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/typescript/lib/lib.es2022.full.d.ts","./src/configuration.ts","../../node_modules/axios/index.d.ts","./src/base.ts","./src/common.ts","./src/api.ts","./src/webhooks.ts","./src/index.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"1df2366de6650547b3dc1d7c4147355c0f6b4729c964e3839636fa418982d131",{"version":"cc688953e0ccd3717a29bbb0f8f7a1dfed032038e60b0eda8e634af02f4f4914","signature":"35c8b96bde5d990841af429e2f0e0dabec6b879c78520cb7bea96545b74ce951"},"1d729ea435a93e1a70519d06a6f13fa418c4c39a52b69e6db86750ebfcdf5554",{"version":"3fe7e8d61fbaf5dccb2ead34cb6dc6caf591112450bdff69584d0ce11e362ac5","signature":"7255fa8edf9e01eb95b7cdb06af65b45add5f568e0d20036d0b482f6cd2ce3fd"},{"version":"d2ec22fb983a478bad49f80c912484531bd12d12afb78c17b7acdffc82fc66ce","signature":"9bce2cf8058f0b3607fd1f7e93fe48974ec67a33305727a5aa37082d471e0e43"},{"version":"96faad6875f3209cd13a680333285d72aaa373de02cbc1f471ab9b179c2f0e7a","signature":"f4e33a16af97c8338b8c609786fab8d354cf791b672373c8c29308cb97108a47"},{"version":"8d16a963649261e0e535b51387b00868d8e44dc1b86ced980f71e72e24980641","signature":"855f834d7b5ddd9e0a5d013ea99519c700d804752eeefc1f9e6d9571c044e528"},{"version":"ad57a6f39beb8d3bec1fbc3a9913adcb910e7641e9851811e210ddc2d80401bb","signature":"6ad4c7769a260b4a90b120348ae7ad379574da9fe62d5dddb3e4d8b2be821831"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"8d74c73e21579ffe9f77ce969bc0317470c63797bd4719c8895a60ce6ae6a263","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","765f9f91293be0c057d5bf2b59494e1eac70efae55ff1c27c6e47c359bc889d2","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"ac0c77cd7db52b3c278bdd1452ce754014835493d05b84535f46854fdc2063b2","affectsGlobalScope":true},"b9f36877501f2ce0e276e993c93cd2cf325e78d0409ec4612b1eb9d6a537e60b","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","c58642af30c06a8e250d248a747ceb045af9a92d8cab22478d80c3bef276bfd5","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"ffc62d73b4fa10ca8c59f8802df88efefe447025730a24ee977b60adedc5bf37","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"562e1951bb48e89df7b821d998bfcd9458d93b0afd06cf6db8286606da5f21fd","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","fedd311d427fdafac411b4e0edc0d1014668853679e021e04717a6de45ff5c0c","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"4d0536bbf67bc4301ebb5154eeb38168db0f7b34c490a80b6fa41bc6b751bcb4","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","34118be360cdd3381bbebbfd4b093c394460c8fc5df40688d58f45d86ab1448b","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab"],"root":[62,[64,68]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./build","rootDir":"./src","skipLibCheck":true,"strict":true,"target":9},"fileIdsList":[[88,115,122,123],[88,115,122],[85,88,115,122,126,127,128],[115,124,127,129,131],[115],[69,115],[72,115],[73,78,106,115],[74,85,86,93,103,114,115],[74,75,85,93,115],[76,115],[77,78,86,94,115],[78,103,111,115],[79,81,85,93,115],[80,115],[81,82,115],[85,115],[83,85,115],[85,86,87,103,114,115],[85,86,87,100,103,106,115],[115,119],[81,85,88,93,103,114,115],[85,86,88,89,93,103,111,114,115],[88,90,103,111,114,115],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121],[85,91,115],[92,114,115],[81,85,93,103,115],[94,115],[95,115],[72,96,115],[97,113,115,119],[98,115],[99,115],[85,100,101,115],[100,102,115,117],[73,85,103,104,105,106,115],[73,103,105,115],[103,104,115],[106,115],[107,115],[103,115],[85,109,110,115],[109,110,115],[78,93,103,111,115],[112,115],[93,113,115],[73,88,99,114,115],[78,115],[103,115,116],[115,117],[115,118],[73,78,85,87,96,103,114,115,117,119],[103,115,120],[115,134,173],[115,134,158,173],[115,173],[115,134],[115,134,159,173],[115,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172],[115,159,173],[86,103,115,122,125],[88,115,122,125,130],[62,63,64,65,115],[62,63,115],[62,63,64,115],[62,66,67,115],[62,63,64],[62,63],[62,66,67]],"referencedMap":[[124,1],[123,2],[129,3],[132,4],[130,5],[133,5],[125,5],[69,6],[70,6],[72,7],[73,8],[74,9],[75,10],[76,11],[77,12],[78,13],[79,14],[80,15],[81,16],[82,16],[84,17],[83,18],[85,17],[86,19],[87,20],[71,21],[121,5],[88,22],[89,23],[90,24],[122,25],[91,26],[92,27],[93,28],[94,29],[95,30],[96,31],[97,32],[98,33],[99,34],[100,35],[101,35],[102,36],[103,37],[105,38],[104,39],[106,40],[107,41],[108,42],[109,43],[110,44],[111,45],[112,46],[113,47],[114,48],[115,49],[116,50],[117,51],[118,52],[119,53],[120,54],[127,5],[128,5],[158,55],[159,56],[134,57],[137,57],[156,55],[157,55],[147,55],[146,58],[144,55],[139,55],[152,55],[150,55],[154,55],[138,55],[151,55],[155,55],[140,55],[141,55],[153,55],[135,55],[142,55],[143,55],[145,55],[149,55],[160,59],[148,55],[136,55],[173,60],[172,5],[167,59],[169,61],[168,59],[161,59],[162,59],[164,59],[166,59],[170,61],[171,61],[163,61],[165,61],[126,62],[131,63],[63,5],[59,5],[60,5],[10,5],[11,5],[15,5],[14,5],[2,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[22,5],[23,5],[3,5],[4,5],[27,5],[24,5],[25,5],[26,5],[28,5],[29,5],[30,5],[5,5],[31,5],[32,5],[33,5],[34,5],[6,5],[38,5],[35,5],[36,5],[37,5],[39,5],[7,5],[40,5],[45,5],[46,5],[41,5],[42,5],[43,5],[44,5],[8,5],[50,5],[47,5],[48,5],[49,5],[51,5],[9,5],[52,5],[61,5],[53,5],[54,5],[57,5],[55,5],[56,5],[1,5],[58,5],[13,5],[12,5],[66,64],[64,65],[65,66],[62,5],[68,67],[67,49]],"exportedModulesMap":[[124,1],[123,2],[129,3],[132,4],[130,5],[133,5],[125,5],[69,6],[70,6],[72,7],[73,8],[74,9],[75,10],[76,11],[77,12],[78,13],[79,14],[80,15],[81,16],[82,16],[84,17],[83,18],[85,17],[86,19],[87,20],[71,21],[121,5],[88,22],[89,23],[90,24],[122,25],[91,26],[92,27],[93,28],[94,29],[95,30],[96,31],[97,32],[98,33],[99,34],[100,35],[101,35],[102,36],[103,37],[105,38],[104,39],[106,40],[107,41],[108,42],[109,43],[110,44],[111,45],[112,46],[113,47],[114,48],[115,49],[116,50],[117,51],[118,52],[119,53],[120,54],[127,5],[128,5],[158,55],[159,56],[134,57],[137,57],[156,55],[157,55],[147,55],[146,58],[144,55],[139,55],[152,55],[150,55],[154,55],[138,55],[151,55],[155,55],[140,55],[141,55],[153,55],[135,55],[142,55],[143,55],[145,55],[149,55],[160,59],[148,55],[136,55],[173,60],[172,5],[167,59],[169,61],[168,59],[161,59],[162,59],[164,59],[166,59],[170,61],[171,61],[163,61],[165,61],[126,62],[131,63],[63,5],[59,5],[60,5],[10,5],[11,5],[15,5],[14,5],[2,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[22,5],[23,5],[3,5],[4,5],[27,5],[24,5],[25,5],[26,5],[28,5],[29,5],[30,5],[5,5],[31,5],[32,5],[33,5],[34,5],[6,5],[38,5],[35,5],[36,5],[37,5],[39,5],[7,5],[40,5],[45,5],[46,5],[41,5],[42,5],[43,5],[44,5],[8,5],[50,5],[47,5],[48,5],[49,5],[51,5],[9,5],[52,5],[61,5],[53,5],[54,5],[57,5],[55,5],[56,5],[1,5],[58,5],[13,5],[12,5],[66,68],[64,69],[65,68],[68,70]],"semanticDiagnosticsPerFile":[124,123,129,132,130,133,125,69,70,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,71,121,88,89,90,122,91,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,127,128,158,159,134,137,156,157,147,146,144,139,152,150,154,138,151,155,140,141,153,135,142,143,145,149,160,148,136,173,172,167,169,168,161,162,164,166,170,171,163,165,126,131,63,59,60,10,11,15,14,2,16,17,18,19,20,21,22,23,3,4,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,61,53,54,57,55,56,1,58,13,12,66,64,65,62,68,67],"latestChangedDtsFile":"./build/api.d.ts"},"version":"5.1.6"}
|