@closerplatform/spinner-openapi 0.12.821 → 0.12.822
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.d.ts +0 -153
- package/dist/api.js +0 -300
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -5240,27 +5240,6 @@ export interface OrgReasons {
|
|
|
5240
5240
|
*/
|
|
5241
5241
|
reasons?: Array<string>;
|
|
5242
5242
|
}
|
|
5243
|
-
/**
|
|
5244
|
-
*
|
|
5245
|
-
* @export
|
|
5246
|
-
* @interface OrgResponderLimit
|
|
5247
|
-
*/
|
|
5248
|
-
export interface OrgResponderLimit {
|
|
5249
|
-
/**
|
|
5250
|
-
*
|
|
5251
|
-
* @type {number}
|
|
5252
|
-
* @memberof OrgResponderLimit
|
|
5253
|
-
*/
|
|
5254
|
-
maxCharacters: number;
|
|
5255
|
-
}
|
|
5256
|
-
/**
|
|
5257
|
-
*
|
|
5258
|
-
* @export
|
|
5259
|
-
* @interface OrgResponderThresholds
|
|
5260
|
-
*/
|
|
5261
|
-
export interface OrgResponderThresholds {
|
|
5262
|
-
[key: string]: number;
|
|
5263
|
-
}
|
|
5264
5243
|
/**
|
|
5265
5244
|
*
|
|
5266
5245
|
* @export
|
|
@@ -11362,22 +11341,6 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
|
|
|
11362
11341
|
* @throws {RequiredError}
|
|
11363
11342
|
*/
|
|
11364
11343
|
callOrg(X_Device_Id: string, id: string, options?: any): FetchArgs;
|
|
11365
|
-
/**
|
|
11366
|
-
*
|
|
11367
|
-
* @summary Configure maxCharacters limit for messages handled by autoresponder
|
|
11368
|
-
* @param {string} id
|
|
11369
|
-
* @param {*} [options] Override http request option.
|
|
11370
|
-
* @throws {RequiredError}
|
|
11371
|
-
*/
|
|
11372
|
-
changeResponderLimit(id: string, options?: any): FetchArgs;
|
|
11373
|
-
/**
|
|
11374
|
-
*
|
|
11375
|
-
* @summary Configure confidence thresholds for autoresponder
|
|
11376
|
-
* @param {string} id
|
|
11377
|
-
* @param {*} [options] Override http request option.
|
|
11378
|
-
* @throws {RequiredError}
|
|
11379
|
-
*/
|
|
11380
|
-
changeThresholds(id: string, options?: any): FetchArgs;
|
|
11381
11344
|
/**
|
|
11382
11345
|
*
|
|
11383
11346
|
* @summary Create free org and admin account
|
|
@@ -11515,22 +11478,6 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
|
|
|
11515
11478
|
* @throws {RequiredError}
|
|
11516
11479
|
*/
|
|
11517
11480
|
getOrganizationConfig(id: string, options?: any): FetchArgs;
|
|
11518
|
-
/**
|
|
11519
|
-
*
|
|
11520
|
-
* @summary Get maxCharacters limit for messages handled by autoresponder
|
|
11521
|
-
* @param {string} id
|
|
11522
|
-
* @param {*} [options] Override http request option.
|
|
11523
|
-
* @throws {RequiredError}
|
|
11524
|
-
*/
|
|
11525
|
-
getResponderLimit(id: string, options?: any): FetchArgs;
|
|
11526
|
-
/**
|
|
11527
|
-
*
|
|
11528
|
-
* @summary Get confidence thresholds for autoresponder
|
|
11529
|
-
* @param {string} id
|
|
11530
|
-
* @param {*} [options] Override http request option.
|
|
11531
|
-
* @throws {RequiredError}
|
|
11532
|
-
*/
|
|
11533
|
-
getThreshold(id: string, options?: any): FetchArgs;
|
|
11534
11481
|
/**
|
|
11535
11482
|
*
|
|
11536
11483
|
* @summary Send email invitation to Closer
|
|
@@ -11581,22 +11528,6 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
|
|
|
11581
11528
|
* @throws {RequiredError}
|
|
11582
11529
|
*/
|
|
11583
11530
|
callOrg(X_Device_Id: string, id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Call>;
|
|
11584
|
-
/**
|
|
11585
|
-
*
|
|
11586
|
-
* @summary Configure maxCharacters limit for messages handled by autoresponder
|
|
11587
|
-
* @param {string} id
|
|
11588
|
-
* @param {*} [options] Override http request option.
|
|
11589
|
-
* @throws {RequiredError}
|
|
11590
|
-
*/
|
|
11591
|
-
changeResponderLimit(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
11592
|
-
/**
|
|
11593
|
-
*
|
|
11594
|
-
* @summary Configure confidence thresholds for autoresponder
|
|
11595
|
-
* @param {string} id
|
|
11596
|
-
* @param {*} [options] Override http request option.
|
|
11597
|
-
* @throws {RequiredError}
|
|
11598
|
-
*/
|
|
11599
|
-
changeThresholds(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
11600
11531
|
/**
|
|
11601
11532
|
*
|
|
11602
11533
|
* @summary Create free org and admin account
|
|
@@ -11734,22 +11665,6 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
|
|
|
11734
11665
|
* @throws {RequiredError}
|
|
11735
11666
|
*/
|
|
11736
11667
|
getOrganizationConfig(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OrgConfig>;
|
|
11737
|
-
/**
|
|
11738
|
-
*
|
|
11739
|
-
* @summary Get maxCharacters limit for messages handled by autoresponder
|
|
11740
|
-
* @param {string} id
|
|
11741
|
-
* @param {*} [options] Override http request option.
|
|
11742
|
-
* @throws {RequiredError}
|
|
11743
|
-
*/
|
|
11744
|
-
getResponderLimit(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OrgResponderLimit>;
|
|
11745
|
-
/**
|
|
11746
|
-
*
|
|
11747
|
-
* @summary Get confidence thresholds for autoresponder
|
|
11748
|
-
* @param {string} id
|
|
11749
|
-
* @param {*} [options] Override http request option.
|
|
11750
|
-
* @throws {RequiredError}
|
|
11751
|
-
*/
|
|
11752
|
-
getThreshold(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OrgResponderThresholds>;
|
|
11753
11668
|
/**
|
|
11754
11669
|
*
|
|
11755
11670
|
* @summary Send email invitation to Closer
|
|
@@ -11800,22 +11715,6 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
|
|
|
11800
11715
|
* @throws {RequiredError}
|
|
11801
11716
|
*/
|
|
11802
11717
|
callOrg(X_Device_Id: string, id: string, options?: any): Promise<Call>;
|
|
11803
|
-
/**
|
|
11804
|
-
*
|
|
11805
|
-
* @summary Configure maxCharacters limit for messages handled by autoresponder
|
|
11806
|
-
* @param {string} id
|
|
11807
|
-
* @param {*} [options] Override http request option.
|
|
11808
|
-
* @throws {RequiredError}
|
|
11809
|
-
*/
|
|
11810
|
-
changeResponderLimit(id: string, options?: any): Promise<Response>;
|
|
11811
|
-
/**
|
|
11812
|
-
*
|
|
11813
|
-
* @summary Configure confidence thresholds for autoresponder
|
|
11814
|
-
* @param {string} id
|
|
11815
|
-
* @param {*} [options] Override http request option.
|
|
11816
|
-
* @throws {RequiredError}
|
|
11817
|
-
*/
|
|
11818
|
-
changeThresholds(id: string, options?: any): Promise<Response>;
|
|
11819
11718
|
/**
|
|
11820
11719
|
*
|
|
11821
11720
|
* @summary Create free org and admin account
|
|
@@ -11953,22 +11852,6 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
|
|
|
11953
11852
|
* @throws {RequiredError}
|
|
11954
11853
|
*/
|
|
11955
11854
|
getOrganizationConfig(id: string, options?: any): Promise<OrgConfig>;
|
|
11956
|
-
/**
|
|
11957
|
-
*
|
|
11958
|
-
* @summary Get maxCharacters limit for messages handled by autoresponder
|
|
11959
|
-
* @param {string} id
|
|
11960
|
-
* @param {*} [options] Override http request option.
|
|
11961
|
-
* @throws {RequiredError}
|
|
11962
|
-
*/
|
|
11963
|
-
getResponderLimit(id: string, options?: any): Promise<OrgResponderLimit>;
|
|
11964
|
-
/**
|
|
11965
|
-
*
|
|
11966
|
-
* @summary Get confidence thresholds for autoresponder
|
|
11967
|
-
* @param {string} id
|
|
11968
|
-
* @param {*} [options] Override http request option.
|
|
11969
|
-
* @throws {RequiredError}
|
|
11970
|
-
*/
|
|
11971
|
-
getThreshold(id: string, options?: any): Promise<OrgResponderThresholds>;
|
|
11972
11855
|
/**
|
|
11973
11856
|
*
|
|
11974
11857
|
* @summary Send email invitation to Closer
|
|
@@ -12023,24 +11906,6 @@ export declare class OrgsApi extends BaseAPI {
|
|
|
12023
11906
|
* @memberof OrgsApi
|
|
12024
11907
|
*/
|
|
12025
11908
|
callOrg(X_Device_Id: string, id: string, options?: any): Promise<Call>;
|
|
12026
|
-
/**
|
|
12027
|
-
*
|
|
12028
|
-
* @summary Configure maxCharacters limit for messages handled by autoresponder
|
|
12029
|
-
* @param {string} id
|
|
12030
|
-
* @param {*} [options] Override http request option.
|
|
12031
|
-
* @throws {RequiredError}
|
|
12032
|
-
* @memberof OrgsApi
|
|
12033
|
-
*/
|
|
12034
|
-
changeResponderLimit(id: string, options?: any): Promise<Response>;
|
|
12035
|
-
/**
|
|
12036
|
-
*
|
|
12037
|
-
* @summary Configure confidence thresholds for autoresponder
|
|
12038
|
-
* @param {string} id
|
|
12039
|
-
* @param {*} [options] Override http request option.
|
|
12040
|
-
* @throws {RequiredError}
|
|
12041
|
-
* @memberof OrgsApi
|
|
12042
|
-
*/
|
|
12043
|
-
changeThresholds(id: string, options?: any): Promise<Response>;
|
|
12044
11909
|
/**
|
|
12045
11910
|
*
|
|
12046
11911
|
* @summary Create free org and admin account
|
|
@@ -12195,24 +12060,6 @@ export declare class OrgsApi extends BaseAPI {
|
|
|
12195
12060
|
* @memberof OrgsApi
|
|
12196
12061
|
*/
|
|
12197
12062
|
getOrganizationConfig(id: string, options?: any): Promise<OrgConfig>;
|
|
12198
|
-
/**
|
|
12199
|
-
*
|
|
12200
|
-
* @summary Get maxCharacters limit for messages handled by autoresponder
|
|
12201
|
-
* @param {string} id
|
|
12202
|
-
* @param {*} [options] Override http request option.
|
|
12203
|
-
* @throws {RequiredError}
|
|
12204
|
-
* @memberof OrgsApi
|
|
12205
|
-
*/
|
|
12206
|
-
getResponderLimit(id: string, options?: any): Promise<OrgResponderLimit>;
|
|
12207
|
-
/**
|
|
12208
|
-
*
|
|
12209
|
-
* @summary Get confidence thresholds for autoresponder
|
|
12210
|
-
* @param {string} id
|
|
12211
|
-
* @param {*} [options] Override http request option.
|
|
12212
|
-
* @throws {RequiredError}
|
|
12213
|
-
* @memberof OrgsApi
|
|
12214
|
-
*/
|
|
12215
|
-
getThreshold(id: string, options?: any): Promise<OrgResponderThresholds>;
|
|
12216
12063
|
/**
|
|
12217
12064
|
*
|
|
12218
12065
|
* @summary Send email invitation to Closer
|
package/dist/api.js
CHANGED
|
@@ -9331,74 +9331,6 @@ const OrgsApiFetchParamCreator = function (configuration) {
|
|
|
9331
9331
|
options: localVarRequestOptions,
|
|
9332
9332
|
};
|
|
9333
9333
|
},
|
|
9334
|
-
/**
|
|
9335
|
-
*
|
|
9336
|
-
* @summary Configure maxCharacters limit for messages handled by autoresponder
|
|
9337
|
-
* @param {string} id
|
|
9338
|
-
* @param {*} [options] Override http request option.
|
|
9339
|
-
* @throws {RequiredError}
|
|
9340
|
-
*/
|
|
9341
|
-
changeResponderLimit(id, options = {}) {
|
|
9342
|
-
// verify required parameter 'id' is not null or undefined
|
|
9343
|
-
if (id === null || id === undefined) {
|
|
9344
|
-
throw new RequiredError('id', 'Required parameter id was null or undefined when calling changeResponderLimit.');
|
|
9345
|
-
}
|
|
9346
|
-
const localVarPath = `/orgs/{id}/responder/limit`
|
|
9347
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
9348
|
-
const localVarUrlObj = url.parse(localVarPath, true);
|
|
9349
|
-
const localVarRequestOptions = Object.assign({ method: 'POST' }, options);
|
|
9350
|
-
const localVarHeaderParameter = {};
|
|
9351
|
-
const localVarQueryParameter = {};
|
|
9352
|
-
// authentication apiKey required
|
|
9353
|
-
if (configuration && configuration.apiKey) {
|
|
9354
|
-
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
9355
|
-
? configuration.apiKey("X-Api-Key")
|
|
9356
|
-
: configuration.apiKey;
|
|
9357
|
-
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
9358
|
-
}
|
|
9359
|
-
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
9360
|
-
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
9361
|
-
delete localVarUrlObj.search;
|
|
9362
|
-
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
9363
|
-
return {
|
|
9364
|
-
url: url.format(localVarUrlObj),
|
|
9365
|
-
options: localVarRequestOptions,
|
|
9366
|
-
};
|
|
9367
|
-
},
|
|
9368
|
-
/**
|
|
9369
|
-
*
|
|
9370
|
-
* @summary Configure confidence thresholds for autoresponder
|
|
9371
|
-
* @param {string} id
|
|
9372
|
-
* @param {*} [options] Override http request option.
|
|
9373
|
-
* @throws {RequiredError}
|
|
9374
|
-
*/
|
|
9375
|
-
changeThresholds(id, options = {}) {
|
|
9376
|
-
// verify required parameter 'id' is not null or undefined
|
|
9377
|
-
if (id === null || id === undefined) {
|
|
9378
|
-
throw new RequiredError('id', 'Required parameter id was null or undefined when calling changeThresholds.');
|
|
9379
|
-
}
|
|
9380
|
-
const localVarPath = `/orgs/{id}/responder/thresholds`
|
|
9381
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
9382
|
-
const localVarUrlObj = url.parse(localVarPath, true);
|
|
9383
|
-
const localVarRequestOptions = Object.assign({ method: 'POST' }, options);
|
|
9384
|
-
const localVarHeaderParameter = {};
|
|
9385
|
-
const localVarQueryParameter = {};
|
|
9386
|
-
// authentication apiKey required
|
|
9387
|
-
if (configuration && configuration.apiKey) {
|
|
9388
|
-
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
9389
|
-
? configuration.apiKey("X-Api-Key")
|
|
9390
|
-
: configuration.apiKey;
|
|
9391
|
-
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
9392
|
-
}
|
|
9393
|
-
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
9394
|
-
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
9395
|
-
delete localVarUrlObj.search;
|
|
9396
|
-
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
9397
|
-
return {
|
|
9398
|
-
url: url.format(localVarUrlObj),
|
|
9399
|
-
options: localVarRequestOptions,
|
|
9400
|
-
};
|
|
9401
|
-
},
|
|
9402
9334
|
/**
|
|
9403
9335
|
*
|
|
9404
9336
|
* @summary Create free org and admin account
|
|
@@ -9968,74 +9900,6 @@ const OrgsApiFetchParamCreator = function (configuration) {
|
|
|
9968
9900
|
options: localVarRequestOptions,
|
|
9969
9901
|
};
|
|
9970
9902
|
},
|
|
9971
|
-
/**
|
|
9972
|
-
*
|
|
9973
|
-
* @summary Get maxCharacters limit for messages handled by autoresponder
|
|
9974
|
-
* @param {string} id
|
|
9975
|
-
* @param {*} [options] Override http request option.
|
|
9976
|
-
* @throws {RequiredError}
|
|
9977
|
-
*/
|
|
9978
|
-
getResponderLimit(id, options = {}) {
|
|
9979
|
-
// verify required parameter 'id' is not null or undefined
|
|
9980
|
-
if (id === null || id === undefined) {
|
|
9981
|
-
throw new RequiredError('id', 'Required parameter id was null or undefined when calling getResponderLimit.');
|
|
9982
|
-
}
|
|
9983
|
-
const localVarPath = `/orgs/{id}/responder/limit`
|
|
9984
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
9985
|
-
const localVarUrlObj = url.parse(localVarPath, true);
|
|
9986
|
-
const localVarRequestOptions = Object.assign({ method: 'GET' }, options);
|
|
9987
|
-
const localVarHeaderParameter = {};
|
|
9988
|
-
const localVarQueryParameter = {};
|
|
9989
|
-
// authentication apiKey required
|
|
9990
|
-
if (configuration && configuration.apiKey) {
|
|
9991
|
-
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
9992
|
-
? configuration.apiKey("X-Api-Key")
|
|
9993
|
-
: configuration.apiKey;
|
|
9994
|
-
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
9995
|
-
}
|
|
9996
|
-
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
9997
|
-
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
9998
|
-
delete localVarUrlObj.search;
|
|
9999
|
-
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
10000
|
-
return {
|
|
10001
|
-
url: url.format(localVarUrlObj),
|
|
10002
|
-
options: localVarRequestOptions,
|
|
10003
|
-
};
|
|
10004
|
-
},
|
|
10005
|
-
/**
|
|
10006
|
-
*
|
|
10007
|
-
* @summary Get confidence thresholds for autoresponder
|
|
10008
|
-
* @param {string} id
|
|
10009
|
-
* @param {*} [options] Override http request option.
|
|
10010
|
-
* @throws {RequiredError}
|
|
10011
|
-
*/
|
|
10012
|
-
getThreshold(id, options = {}) {
|
|
10013
|
-
// verify required parameter 'id' is not null or undefined
|
|
10014
|
-
if (id === null || id === undefined) {
|
|
10015
|
-
throw new RequiredError('id', 'Required parameter id was null or undefined when calling getThreshold.');
|
|
10016
|
-
}
|
|
10017
|
-
const localVarPath = `/orgs/{id}/responder/thresholds`
|
|
10018
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
10019
|
-
const localVarUrlObj = url.parse(localVarPath, true);
|
|
10020
|
-
const localVarRequestOptions = Object.assign({ method: 'GET' }, options);
|
|
10021
|
-
const localVarHeaderParameter = {};
|
|
10022
|
-
const localVarQueryParameter = {};
|
|
10023
|
-
// authentication apiKey required
|
|
10024
|
-
if (configuration && configuration.apiKey) {
|
|
10025
|
-
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
10026
|
-
? configuration.apiKey("X-Api-Key")
|
|
10027
|
-
: configuration.apiKey;
|
|
10028
|
-
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
10029
|
-
}
|
|
10030
|
-
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
10031
|
-
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
10032
|
-
delete localVarUrlObj.search;
|
|
10033
|
-
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
10034
|
-
return {
|
|
10035
|
-
url: url.format(localVarUrlObj),
|
|
10036
|
-
options: localVarRequestOptions,
|
|
10037
|
-
};
|
|
10038
|
-
},
|
|
10039
9903
|
/**
|
|
10040
9904
|
*
|
|
10041
9905
|
* @summary Send email invitation to Closer
|
|
@@ -10202,46 +10066,6 @@ const OrgsApiFp = function (configuration) {
|
|
|
10202
10066
|
});
|
|
10203
10067
|
};
|
|
10204
10068
|
},
|
|
10205
|
-
/**
|
|
10206
|
-
*
|
|
10207
|
-
* @summary Configure maxCharacters limit for messages handled by autoresponder
|
|
10208
|
-
* @param {string} id
|
|
10209
|
-
* @param {*} [options] Override http request option.
|
|
10210
|
-
* @throws {RequiredError}
|
|
10211
|
-
*/
|
|
10212
|
-
changeResponderLimit(id, options) {
|
|
10213
|
-
const localVarFetchArgs = (0, exports.OrgsApiFetchParamCreator)(configuration).changeResponderLimit(id, options);
|
|
10214
|
-
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
10215
|
-
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
10216
|
-
if (response.status >= 200 && response.status < 300) {
|
|
10217
|
-
return response;
|
|
10218
|
-
}
|
|
10219
|
-
else {
|
|
10220
|
-
throw response;
|
|
10221
|
-
}
|
|
10222
|
-
});
|
|
10223
|
-
};
|
|
10224
|
-
},
|
|
10225
|
-
/**
|
|
10226
|
-
*
|
|
10227
|
-
* @summary Configure confidence thresholds for autoresponder
|
|
10228
|
-
* @param {string} id
|
|
10229
|
-
* @param {*} [options] Override http request option.
|
|
10230
|
-
* @throws {RequiredError}
|
|
10231
|
-
*/
|
|
10232
|
-
changeThresholds(id, options) {
|
|
10233
|
-
const localVarFetchArgs = (0, exports.OrgsApiFetchParamCreator)(configuration).changeThresholds(id, options);
|
|
10234
|
-
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
10235
|
-
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
10236
|
-
if (response.status >= 200 && response.status < 300) {
|
|
10237
|
-
return response;
|
|
10238
|
-
}
|
|
10239
|
-
else {
|
|
10240
|
-
throw response;
|
|
10241
|
-
}
|
|
10242
|
-
});
|
|
10243
|
-
};
|
|
10244
|
-
},
|
|
10245
10069
|
/**
|
|
10246
10070
|
*
|
|
10247
10071
|
* @summary Create free org and admin account
|
|
@@ -10583,46 +10407,6 @@ const OrgsApiFp = function (configuration) {
|
|
|
10583
10407
|
});
|
|
10584
10408
|
};
|
|
10585
10409
|
},
|
|
10586
|
-
/**
|
|
10587
|
-
*
|
|
10588
|
-
* @summary Get maxCharacters limit for messages handled by autoresponder
|
|
10589
|
-
* @param {string} id
|
|
10590
|
-
* @param {*} [options] Override http request option.
|
|
10591
|
-
* @throws {RequiredError}
|
|
10592
|
-
*/
|
|
10593
|
-
getResponderLimit(id, options) {
|
|
10594
|
-
const localVarFetchArgs = (0, exports.OrgsApiFetchParamCreator)(configuration).getResponderLimit(id, options);
|
|
10595
|
-
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
10596
|
-
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
10597
|
-
if (response.status >= 200 && response.status < 300) {
|
|
10598
|
-
return response.json();
|
|
10599
|
-
}
|
|
10600
|
-
else {
|
|
10601
|
-
throw response;
|
|
10602
|
-
}
|
|
10603
|
-
});
|
|
10604
|
-
};
|
|
10605
|
-
},
|
|
10606
|
-
/**
|
|
10607
|
-
*
|
|
10608
|
-
* @summary Get confidence thresholds for autoresponder
|
|
10609
|
-
* @param {string} id
|
|
10610
|
-
* @param {*} [options] Override http request option.
|
|
10611
|
-
* @throws {RequiredError}
|
|
10612
|
-
*/
|
|
10613
|
-
getThreshold(id, options) {
|
|
10614
|
-
const localVarFetchArgs = (0, exports.OrgsApiFetchParamCreator)(configuration).getThreshold(id, options);
|
|
10615
|
-
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
10616
|
-
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
10617
|
-
if (response.status >= 200 && response.status < 300) {
|
|
10618
|
-
return response.json();
|
|
10619
|
-
}
|
|
10620
|
-
else {
|
|
10621
|
-
throw response;
|
|
10622
|
-
}
|
|
10623
|
-
});
|
|
10624
|
-
};
|
|
10625
|
-
},
|
|
10626
10410
|
/**
|
|
10627
10411
|
*
|
|
10628
10412
|
* @summary Send email invitation to Closer
|
|
@@ -10716,26 +10500,6 @@ const OrgsApiFactory = function (configuration, fetch, basePath) {
|
|
|
10716
10500
|
callOrg(X_Device_Id, id, options) {
|
|
10717
10501
|
return (0, exports.OrgsApiFp)(configuration).callOrg(X_Device_Id, id, options)(fetch, basePath);
|
|
10718
10502
|
},
|
|
10719
|
-
/**
|
|
10720
|
-
*
|
|
10721
|
-
* @summary Configure maxCharacters limit for messages handled by autoresponder
|
|
10722
|
-
* @param {string} id
|
|
10723
|
-
* @param {*} [options] Override http request option.
|
|
10724
|
-
* @throws {RequiredError}
|
|
10725
|
-
*/
|
|
10726
|
-
changeResponderLimit(id, options) {
|
|
10727
|
-
return (0, exports.OrgsApiFp)(configuration).changeResponderLimit(id, options)(fetch, basePath);
|
|
10728
|
-
},
|
|
10729
|
-
/**
|
|
10730
|
-
*
|
|
10731
|
-
* @summary Configure confidence thresholds for autoresponder
|
|
10732
|
-
* @param {string} id
|
|
10733
|
-
* @param {*} [options] Override http request option.
|
|
10734
|
-
* @throws {RequiredError}
|
|
10735
|
-
*/
|
|
10736
|
-
changeThresholds(id, options) {
|
|
10737
|
-
return (0, exports.OrgsApiFp)(configuration).changeThresholds(id, options)(fetch, basePath);
|
|
10738
|
-
},
|
|
10739
10503
|
/**
|
|
10740
10504
|
*
|
|
10741
10505
|
* @summary Create free org and admin account
|
|
@@ -10907,26 +10671,6 @@ const OrgsApiFactory = function (configuration, fetch, basePath) {
|
|
|
10907
10671
|
getOrganizationConfig(id, options) {
|
|
10908
10672
|
return (0, exports.OrgsApiFp)(configuration).getOrganizationConfig(id, options)(fetch, basePath);
|
|
10909
10673
|
},
|
|
10910
|
-
/**
|
|
10911
|
-
*
|
|
10912
|
-
* @summary Get maxCharacters limit for messages handled by autoresponder
|
|
10913
|
-
* @param {string} id
|
|
10914
|
-
* @param {*} [options] Override http request option.
|
|
10915
|
-
* @throws {RequiredError}
|
|
10916
|
-
*/
|
|
10917
|
-
getResponderLimit(id, options) {
|
|
10918
|
-
return (0, exports.OrgsApiFp)(configuration).getResponderLimit(id, options)(fetch, basePath);
|
|
10919
|
-
},
|
|
10920
|
-
/**
|
|
10921
|
-
*
|
|
10922
|
-
* @summary Get confidence thresholds for autoresponder
|
|
10923
|
-
* @param {string} id
|
|
10924
|
-
* @param {*} [options] Override http request option.
|
|
10925
|
-
* @throws {RequiredError}
|
|
10926
|
-
*/
|
|
10927
|
-
getThreshold(id, options) {
|
|
10928
|
-
return (0, exports.OrgsApiFp)(configuration).getThreshold(id, options)(fetch, basePath);
|
|
10929
|
-
},
|
|
10930
10674
|
/**
|
|
10931
10675
|
*
|
|
10932
10676
|
* @summary Send email invitation to Closer
|
|
@@ -10993,28 +10737,6 @@ class OrgsApi extends BaseAPI {
|
|
|
10993
10737
|
callOrg(X_Device_Id, id, options) {
|
|
10994
10738
|
return (0, exports.OrgsApiFp)(this.configuration).callOrg(X_Device_Id, id, options)(this.fetch, this.basePath);
|
|
10995
10739
|
}
|
|
10996
|
-
/**
|
|
10997
|
-
*
|
|
10998
|
-
* @summary Configure maxCharacters limit for messages handled by autoresponder
|
|
10999
|
-
* @param {string} id
|
|
11000
|
-
* @param {*} [options] Override http request option.
|
|
11001
|
-
* @throws {RequiredError}
|
|
11002
|
-
* @memberof OrgsApi
|
|
11003
|
-
*/
|
|
11004
|
-
changeResponderLimit(id, options) {
|
|
11005
|
-
return (0, exports.OrgsApiFp)(this.configuration).changeResponderLimit(id, options)(this.fetch, this.basePath);
|
|
11006
|
-
}
|
|
11007
|
-
/**
|
|
11008
|
-
*
|
|
11009
|
-
* @summary Configure confidence thresholds for autoresponder
|
|
11010
|
-
* @param {string} id
|
|
11011
|
-
* @param {*} [options] Override http request option.
|
|
11012
|
-
* @throws {RequiredError}
|
|
11013
|
-
* @memberof OrgsApi
|
|
11014
|
-
*/
|
|
11015
|
-
changeThresholds(id, options) {
|
|
11016
|
-
return (0, exports.OrgsApiFp)(this.configuration).changeThresholds(id, options)(this.fetch, this.basePath);
|
|
11017
|
-
}
|
|
11018
10740
|
/**
|
|
11019
10741
|
*
|
|
11020
10742
|
* @summary Create free org and admin account
|
|
@@ -11203,28 +10925,6 @@ class OrgsApi extends BaseAPI {
|
|
|
11203
10925
|
getOrganizationConfig(id, options) {
|
|
11204
10926
|
return (0, exports.OrgsApiFp)(this.configuration).getOrganizationConfig(id, options)(this.fetch, this.basePath);
|
|
11205
10927
|
}
|
|
11206
|
-
/**
|
|
11207
|
-
*
|
|
11208
|
-
* @summary Get maxCharacters limit for messages handled by autoresponder
|
|
11209
|
-
* @param {string} id
|
|
11210
|
-
* @param {*} [options] Override http request option.
|
|
11211
|
-
* @throws {RequiredError}
|
|
11212
|
-
* @memberof OrgsApi
|
|
11213
|
-
*/
|
|
11214
|
-
getResponderLimit(id, options) {
|
|
11215
|
-
return (0, exports.OrgsApiFp)(this.configuration).getResponderLimit(id, options)(this.fetch, this.basePath);
|
|
11216
|
-
}
|
|
11217
|
-
/**
|
|
11218
|
-
*
|
|
11219
|
-
* @summary Get confidence thresholds for autoresponder
|
|
11220
|
-
* @param {string} id
|
|
11221
|
-
* @param {*} [options] Override http request option.
|
|
11222
|
-
* @throws {RequiredError}
|
|
11223
|
-
* @memberof OrgsApi
|
|
11224
|
-
*/
|
|
11225
|
-
getThreshold(id, options) {
|
|
11226
|
-
return (0, exports.OrgsApiFp)(this.configuration).getThreshold(id, options)(this.fetch, this.basePath);
|
|
11227
|
-
}
|
|
11228
10928
|
/**
|
|
11229
10929
|
*
|
|
11230
10930
|
* @summary Send email invitation to Closer
|