@closerplatform/spinner-openapi 0.12.1076 → 0.12.1078
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 +16 -24
- package/dist/api.js +36 -66
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -15052,11 +15052,11 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
|
|
|
15052
15052
|
/**
|
|
15053
15053
|
*
|
|
15054
15054
|
* @summary Anonymize customer profile
|
|
15055
|
-
* @param {string}
|
|
15055
|
+
* @param {string} id
|
|
15056
15056
|
* @param {*} [options] Override http request option.
|
|
15057
15057
|
* @throws {RequiredError}
|
|
15058
15058
|
*/
|
|
15059
|
-
deleteCustomer(
|
|
15059
|
+
deleteCustomer(id: string, options?: any): FetchArgs;
|
|
15060
15060
|
/**
|
|
15061
15061
|
*
|
|
15062
15062
|
* @summary Get agent preferences
|
|
@@ -15112,11 +15112,10 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
|
|
|
15112
15112
|
/**
|
|
15113
15113
|
*
|
|
15114
15114
|
* @summary Get adviser assigned to guest room
|
|
15115
|
-
* @param {string} id
|
|
15116
15115
|
* @param {*} [options] Override http request option.
|
|
15117
15116
|
* @throws {RequiredError}
|
|
15118
15117
|
*/
|
|
15119
|
-
getGuestAssignee(
|
|
15118
|
+
getGuestAssignee(options?: any): FetchArgs;
|
|
15120
15119
|
/**
|
|
15121
15120
|
*
|
|
15122
15121
|
* @summary Get guest profile.
|
|
@@ -15207,11 +15206,10 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
|
|
|
15207
15206
|
/**
|
|
15208
15207
|
*
|
|
15209
15208
|
* @summary Reinit customer
|
|
15210
|
-
* @param {string} customerId
|
|
15211
15209
|
* @param {*} [options] Override http request option.
|
|
15212
15210
|
* @throws {RequiredError}
|
|
15213
15211
|
*/
|
|
15214
|
-
reinitCustomer(
|
|
15212
|
+
reinitCustomer(options?: any): FetchArgs;
|
|
15215
15213
|
/**
|
|
15216
15214
|
*
|
|
15217
15215
|
* @summary Restore deactivated adviser account
|
|
@@ -15387,11 +15385,11 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
15387
15385
|
/**
|
|
15388
15386
|
*
|
|
15389
15387
|
* @summary Anonymize customer profile
|
|
15390
|
-
* @param {string}
|
|
15388
|
+
* @param {string} id
|
|
15391
15389
|
* @param {*} [options] Override http request option.
|
|
15392
15390
|
* @throws {RequiredError}
|
|
15393
15391
|
*/
|
|
15394
|
-
deleteCustomer(
|
|
15392
|
+
deleteCustomer(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
15395
15393
|
/**
|
|
15396
15394
|
*
|
|
15397
15395
|
* @summary Get agent preferences
|
|
@@ -15447,11 +15445,10 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
15447
15445
|
/**
|
|
15448
15446
|
*
|
|
15449
15447
|
* @summary Get adviser assigned to guest room
|
|
15450
|
-
* @param {string} id
|
|
15451
15448
|
* @param {*} [options] Override http request option.
|
|
15452
15449
|
* @throws {RequiredError}
|
|
15453
15450
|
*/
|
|
15454
|
-
getGuestAssignee(
|
|
15451
|
+
getGuestAssignee(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<GuestAssignee>;
|
|
15455
15452
|
/**
|
|
15456
15453
|
*
|
|
15457
15454
|
* @summary Get guest profile.
|
|
@@ -15542,11 +15539,10 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
15542
15539
|
/**
|
|
15543
15540
|
*
|
|
15544
15541
|
* @summary Reinit customer
|
|
15545
|
-
* @param {string} customerId
|
|
15546
15542
|
* @param {*} [options] Override http request option.
|
|
15547
15543
|
* @throws {RequiredError}
|
|
15548
15544
|
*/
|
|
15549
|
-
reinitCustomer(
|
|
15545
|
+
reinitCustomer(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
15550
15546
|
/**
|
|
15551
15547
|
*
|
|
15552
15548
|
* @summary Restore deactivated adviser account
|
|
@@ -15722,11 +15718,11 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
15722
15718
|
/**
|
|
15723
15719
|
*
|
|
15724
15720
|
* @summary Anonymize customer profile
|
|
15725
|
-
* @param {string}
|
|
15721
|
+
* @param {string} id
|
|
15726
15722
|
* @param {*} [options] Override http request option.
|
|
15727
15723
|
* @throws {RequiredError}
|
|
15728
15724
|
*/
|
|
15729
|
-
deleteCustomer(
|
|
15725
|
+
deleteCustomer(id: string, options?: any): Promise<Response>;
|
|
15730
15726
|
/**
|
|
15731
15727
|
*
|
|
15732
15728
|
* @summary Get agent preferences
|
|
@@ -15782,11 +15778,10 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
15782
15778
|
/**
|
|
15783
15779
|
*
|
|
15784
15780
|
* @summary Get adviser assigned to guest room
|
|
15785
|
-
* @param {string} id
|
|
15786
15781
|
* @param {*} [options] Override http request option.
|
|
15787
15782
|
* @throws {RequiredError}
|
|
15788
15783
|
*/
|
|
15789
|
-
getGuestAssignee(
|
|
15784
|
+
getGuestAssignee(options?: any): Promise<GuestAssignee>;
|
|
15790
15785
|
/**
|
|
15791
15786
|
*
|
|
15792
15787
|
* @summary Get guest profile.
|
|
@@ -15877,11 +15872,10 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
15877
15872
|
/**
|
|
15878
15873
|
*
|
|
15879
15874
|
* @summary Reinit customer
|
|
15880
|
-
* @param {string} customerId
|
|
15881
15875
|
* @param {*} [options] Override http request option.
|
|
15882
15876
|
* @throws {RequiredError}
|
|
15883
15877
|
*/
|
|
15884
|
-
reinitCustomer(
|
|
15878
|
+
reinitCustomer(options?: any): Promise<Response>;
|
|
15885
15879
|
/**
|
|
15886
15880
|
*
|
|
15887
15881
|
* @summary Restore deactivated adviser account
|
|
@@ -16067,12 +16061,12 @@ export declare class UsersApi extends BaseAPI {
|
|
|
16067
16061
|
/**
|
|
16068
16062
|
*
|
|
16069
16063
|
* @summary Anonymize customer profile
|
|
16070
|
-
* @param {string}
|
|
16064
|
+
* @param {string} id
|
|
16071
16065
|
* @param {*} [options] Override http request option.
|
|
16072
16066
|
* @throws {RequiredError}
|
|
16073
16067
|
* @memberof UsersApi
|
|
16074
16068
|
*/
|
|
16075
|
-
deleteCustomer(
|
|
16069
|
+
deleteCustomer(id: string, options?: any): Promise<Response>;
|
|
16076
16070
|
/**
|
|
16077
16071
|
*
|
|
16078
16072
|
* @summary Get agent preferences
|
|
@@ -16135,12 +16129,11 @@ export declare class UsersApi extends BaseAPI {
|
|
|
16135
16129
|
/**
|
|
16136
16130
|
*
|
|
16137
16131
|
* @summary Get adviser assigned to guest room
|
|
16138
|
-
* @param {string} id
|
|
16139
16132
|
* @param {*} [options] Override http request option.
|
|
16140
16133
|
* @throws {RequiredError}
|
|
16141
16134
|
* @memberof UsersApi
|
|
16142
16135
|
*/
|
|
16143
|
-
getGuestAssignee(
|
|
16136
|
+
getGuestAssignee(options?: any): Promise<GuestAssignee>;
|
|
16144
16137
|
/**
|
|
16145
16138
|
*
|
|
16146
16139
|
* @summary Get guest profile.
|
|
@@ -16242,12 +16235,11 @@ export declare class UsersApi extends BaseAPI {
|
|
|
16242
16235
|
/**
|
|
16243
16236
|
*
|
|
16244
16237
|
* @summary Reinit customer
|
|
16245
|
-
* @param {string} customerId
|
|
16246
16238
|
* @param {*} [options] Override http request option.
|
|
16247
16239
|
* @throws {RequiredError}
|
|
16248
16240
|
* @memberof UsersApi
|
|
16249
16241
|
*/
|
|
16250
|
-
reinitCustomer(
|
|
16242
|
+
reinitCustomer(options?: any): Promise<Response>;
|
|
16251
16243
|
/**
|
|
16252
16244
|
*
|
|
16253
16245
|
* @summary Restore deactivated adviser account
|
package/dist/api.js
CHANGED
|
@@ -11668,8 +11668,7 @@ const ProfanitiesApiFetchParamCreator = function (configuration) {
|
|
|
11668
11668
|
if (orgId === null || orgId === undefined) {
|
|
11669
11669
|
throw new RequiredError('orgId', 'Required parameter orgId was null or undefined when calling getProfanities.');
|
|
11670
11670
|
}
|
|
11671
|
-
const localVarPath = `/profanities
|
|
11672
|
-
.replace(`{${"orgId"}}`, encodeURIComponent(String(orgId)));
|
|
11671
|
+
const localVarPath = `/profanities`;
|
|
11673
11672
|
const localVarUrlObj = url.parse(localVarPath, true);
|
|
11674
11673
|
const localVarRequestOptions = Object.assign({ method: 'GET' }, options);
|
|
11675
11674
|
const localVarHeaderParameter = {};
|
|
@@ -11688,6 +11687,9 @@ const ProfanitiesApiFetchParamCreator = function (configuration) {
|
|
|
11688
11687
|
: configuration.apiKey;
|
|
11689
11688
|
localVarHeaderParameter["X-Fingerprint"] = localVarApiKeyValue;
|
|
11690
11689
|
}
|
|
11690
|
+
if (orgId !== undefined) {
|
|
11691
|
+
localVarQueryParameter['orgId'] = orgId;
|
|
11692
|
+
}
|
|
11691
11693
|
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
11692
11694
|
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
11693
11695
|
delete localVarUrlObj.search;
|
|
@@ -17077,17 +17079,17 @@ const UsersApiFetchParamCreator = function (configuration) {
|
|
|
17077
17079
|
/**
|
|
17078
17080
|
*
|
|
17079
17081
|
* @summary Anonymize customer profile
|
|
17080
|
-
* @param {string}
|
|
17082
|
+
* @param {string} id
|
|
17081
17083
|
* @param {*} [options] Override http request option.
|
|
17082
17084
|
* @throws {RequiredError}
|
|
17083
17085
|
*/
|
|
17084
|
-
deleteCustomer(
|
|
17085
|
-
// verify required parameter '
|
|
17086
|
-
if (
|
|
17087
|
-
throw new RequiredError('
|
|
17086
|
+
deleteCustomer(id, options = {}) {
|
|
17087
|
+
// verify required parameter 'id' is not null or undefined
|
|
17088
|
+
if (id === null || id === undefined) {
|
|
17089
|
+
throw new RequiredError('id', 'Required parameter id was null or undefined when calling deleteCustomer.');
|
|
17088
17090
|
}
|
|
17089
|
-
const localVarPath = `/users/guest/{
|
|
17090
|
-
.replace(`{${"
|
|
17091
|
+
const localVarPath = `/users/guest/{id}`
|
|
17092
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
17091
17093
|
const localVarUrlObj = url.parse(localVarPath, true);
|
|
17092
17094
|
const localVarRequestOptions = Object.assign({ method: 'DELETE' }, options);
|
|
17093
17095
|
const localVarHeaderParameter = {};
|
|
@@ -17332,17 +17334,11 @@ const UsersApiFetchParamCreator = function (configuration) {
|
|
|
17332
17334
|
/**
|
|
17333
17335
|
*
|
|
17334
17336
|
* @summary Get adviser assigned to guest room
|
|
17335
|
-
* @param {string} id
|
|
17336
17337
|
* @param {*} [options] Override http request option.
|
|
17337
17338
|
* @throws {RequiredError}
|
|
17338
17339
|
*/
|
|
17339
|
-
getGuestAssignee(
|
|
17340
|
-
|
|
17341
|
-
if (id === null || id === undefined) {
|
|
17342
|
-
throw new RequiredError('id', 'Required parameter id was null or undefined when calling getGuestAssignee.');
|
|
17343
|
-
}
|
|
17344
|
-
const localVarPath = `/users/guest/{id}/assignee`
|
|
17345
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
17340
|
+
getGuestAssignee(options = {}) {
|
|
17341
|
+
const localVarPath = `/users/guest/assignee`;
|
|
17346
17342
|
const localVarUrlObj = url.parse(localVarPath, true);
|
|
17347
17343
|
const localVarRequestOptions = Object.assign({ method: 'GET' }, options);
|
|
17348
17344
|
const localVarHeaderParameter = {};
|
|
@@ -17395,13 +17391,6 @@ const UsersApiFetchParamCreator = function (configuration) {
|
|
|
17395
17391
|
: configuration.apiKey;
|
|
17396
17392
|
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
17397
17393
|
}
|
|
17398
|
-
// authentication fingerprintAuth required
|
|
17399
|
-
if (configuration && configuration.apiKey) {
|
|
17400
|
-
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
17401
|
-
? configuration.apiKey("X-Fingerprint")
|
|
17402
|
-
: configuration.apiKey;
|
|
17403
|
-
localVarHeaderParameter["X-Fingerprint"] = localVarApiKeyValue;
|
|
17404
|
-
}
|
|
17405
17394
|
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
17406
17395
|
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
17407
17396
|
delete localVarUrlObj.search;
|
|
@@ -17781,17 +17770,11 @@ const UsersApiFetchParamCreator = function (configuration) {
|
|
|
17781
17770
|
/**
|
|
17782
17771
|
*
|
|
17783
17772
|
* @summary Reinit customer
|
|
17784
|
-
* @param {string} customerId
|
|
17785
17773
|
* @param {*} [options] Override http request option.
|
|
17786
17774
|
* @throws {RequiredError}
|
|
17787
17775
|
*/
|
|
17788
|
-
reinitCustomer(
|
|
17789
|
-
|
|
17790
|
-
if (customerId === null || customerId === undefined) {
|
|
17791
|
-
throw new RequiredError('customerId', 'Required parameter customerId was null or undefined when calling reinitCustomer.');
|
|
17792
|
-
}
|
|
17793
|
-
const localVarPath = `/users/guest/{customerId}/reinit`
|
|
17794
|
-
.replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
|
|
17776
|
+
reinitCustomer(options = {}) {
|
|
17777
|
+
const localVarPath = `/users/guest/reinit`;
|
|
17795
17778
|
const localVarUrlObj = url.parse(localVarPath, true);
|
|
17796
17779
|
const localVarRequestOptions = Object.assign({ method: 'POST' }, options);
|
|
17797
17780
|
const localVarHeaderParameter = {};
|
|
@@ -18135,13 +18118,6 @@ const UsersApiFetchParamCreator = function (configuration) {
|
|
|
18135
18118
|
: configuration.apiKey;
|
|
18136
18119
|
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
18137
18120
|
}
|
|
18138
|
-
// authentication fingerprintAuth required
|
|
18139
|
-
if (configuration && configuration.apiKey) {
|
|
18140
|
-
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
18141
|
-
? configuration.apiKey("X-Fingerprint")
|
|
18142
|
-
: configuration.apiKey;
|
|
18143
|
-
localVarHeaderParameter["X-Fingerprint"] = localVarApiKeyValue;
|
|
18144
|
-
}
|
|
18145
18121
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
18146
18122
|
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
18147
18123
|
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
@@ -18481,12 +18457,12 @@ const UsersApiFp = function (configuration) {
|
|
|
18481
18457
|
/**
|
|
18482
18458
|
*
|
|
18483
18459
|
* @summary Anonymize customer profile
|
|
18484
|
-
* @param {string}
|
|
18460
|
+
* @param {string} id
|
|
18485
18461
|
* @param {*} [options] Override http request option.
|
|
18486
18462
|
* @throws {RequiredError}
|
|
18487
18463
|
*/
|
|
18488
|
-
deleteCustomer(
|
|
18489
|
-
const localVarFetchArgs = (0, exports.UsersApiFetchParamCreator)(configuration).deleteCustomer(
|
|
18464
|
+
deleteCustomer(id, options) {
|
|
18465
|
+
const localVarFetchArgs = (0, exports.UsersApiFetchParamCreator)(configuration).deleteCustomer(id, options);
|
|
18490
18466
|
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
18491
18467
|
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
18492
18468
|
if (response.status >= 200 && response.status < 300) {
|
|
@@ -18637,12 +18613,11 @@ const UsersApiFp = function (configuration) {
|
|
|
18637
18613
|
/**
|
|
18638
18614
|
*
|
|
18639
18615
|
* @summary Get adviser assigned to guest room
|
|
18640
|
-
* @param {string} id
|
|
18641
18616
|
* @param {*} [options] Override http request option.
|
|
18642
18617
|
* @throws {RequiredError}
|
|
18643
18618
|
*/
|
|
18644
|
-
getGuestAssignee(
|
|
18645
|
-
const localVarFetchArgs = (0, exports.UsersApiFetchParamCreator)(configuration).getGuestAssignee(
|
|
18619
|
+
getGuestAssignee(options) {
|
|
18620
|
+
const localVarFetchArgs = (0, exports.UsersApiFetchParamCreator)(configuration).getGuestAssignee(options);
|
|
18646
18621
|
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
18647
18622
|
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
18648
18623
|
if (response.status >= 200 && response.status < 300) {
|
|
@@ -18876,12 +18851,11 @@ const UsersApiFp = function (configuration) {
|
|
|
18876
18851
|
/**
|
|
18877
18852
|
*
|
|
18878
18853
|
* @summary Reinit customer
|
|
18879
|
-
* @param {string} customerId
|
|
18880
18854
|
* @param {*} [options] Override http request option.
|
|
18881
18855
|
* @throws {RequiredError}
|
|
18882
18856
|
*/
|
|
18883
|
-
reinitCustomer(
|
|
18884
|
-
const localVarFetchArgs = (0, exports.UsersApiFetchParamCreator)(configuration).reinitCustomer(
|
|
18857
|
+
reinitCustomer(options) {
|
|
18858
|
+
const localVarFetchArgs = (0, exports.UsersApiFetchParamCreator)(configuration).reinitCustomer(options);
|
|
18885
18859
|
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
18886
18860
|
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
18887
18861
|
if (response.status >= 200 && response.status < 300) {
|
|
@@ -19243,12 +19217,12 @@ const UsersApiFactory = function (configuration, fetch, basePath) {
|
|
|
19243
19217
|
/**
|
|
19244
19218
|
*
|
|
19245
19219
|
* @summary Anonymize customer profile
|
|
19246
|
-
* @param {string}
|
|
19220
|
+
* @param {string} id
|
|
19247
19221
|
* @param {*} [options] Override http request option.
|
|
19248
19222
|
* @throws {RequiredError}
|
|
19249
19223
|
*/
|
|
19250
|
-
deleteCustomer(
|
|
19251
|
-
return (0, exports.UsersApiFp)(configuration).deleteCustomer(
|
|
19224
|
+
deleteCustomer(id, options) {
|
|
19225
|
+
return (0, exports.UsersApiFp)(configuration).deleteCustomer(id, options)(fetch, basePath);
|
|
19252
19226
|
},
|
|
19253
19227
|
/**
|
|
19254
19228
|
*
|
|
@@ -19319,12 +19293,11 @@ const UsersApiFactory = function (configuration, fetch, basePath) {
|
|
|
19319
19293
|
/**
|
|
19320
19294
|
*
|
|
19321
19295
|
* @summary Get adviser assigned to guest room
|
|
19322
|
-
* @param {string} id
|
|
19323
19296
|
* @param {*} [options] Override http request option.
|
|
19324
19297
|
* @throws {RequiredError}
|
|
19325
19298
|
*/
|
|
19326
|
-
getGuestAssignee(
|
|
19327
|
-
return (0, exports.UsersApiFp)(configuration).getGuestAssignee(
|
|
19299
|
+
getGuestAssignee(options) {
|
|
19300
|
+
return (0, exports.UsersApiFp)(configuration).getGuestAssignee(options)(fetch, basePath);
|
|
19328
19301
|
},
|
|
19329
19302
|
/**
|
|
19330
19303
|
*
|
|
@@ -19438,12 +19411,11 @@ const UsersApiFactory = function (configuration, fetch, basePath) {
|
|
|
19438
19411
|
/**
|
|
19439
19412
|
*
|
|
19440
19413
|
* @summary Reinit customer
|
|
19441
|
-
* @param {string} customerId
|
|
19442
19414
|
* @param {*} [options] Override http request option.
|
|
19443
19415
|
* @throws {RequiredError}
|
|
19444
19416
|
*/
|
|
19445
|
-
reinitCustomer(
|
|
19446
|
-
return (0, exports.UsersApiFp)(configuration).reinitCustomer(
|
|
19417
|
+
reinitCustomer(options) {
|
|
19418
|
+
return (0, exports.UsersApiFp)(configuration).reinitCustomer(options)(fetch, basePath);
|
|
19447
19419
|
},
|
|
19448
19420
|
/**
|
|
19449
19421
|
*
|
|
@@ -19674,13 +19646,13 @@ class UsersApi extends BaseAPI {
|
|
|
19674
19646
|
/**
|
|
19675
19647
|
*
|
|
19676
19648
|
* @summary Anonymize customer profile
|
|
19677
|
-
* @param {string}
|
|
19649
|
+
* @param {string} id
|
|
19678
19650
|
* @param {*} [options] Override http request option.
|
|
19679
19651
|
* @throws {RequiredError}
|
|
19680
19652
|
* @memberof UsersApi
|
|
19681
19653
|
*/
|
|
19682
|
-
deleteCustomer(
|
|
19683
|
-
return (0, exports.UsersApiFp)(this.configuration).deleteCustomer(
|
|
19654
|
+
deleteCustomer(id, options) {
|
|
19655
|
+
return (0, exports.UsersApiFp)(this.configuration).deleteCustomer(id, options)(this.fetch, this.basePath);
|
|
19684
19656
|
}
|
|
19685
19657
|
/**
|
|
19686
19658
|
*
|
|
@@ -19758,13 +19730,12 @@ class UsersApi extends BaseAPI {
|
|
|
19758
19730
|
/**
|
|
19759
19731
|
*
|
|
19760
19732
|
* @summary Get adviser assigned to guest room
|
|
19761
|
-
* @param {string} id
|
|
19762
19733
|
* @param {*} [options] Override http request option.
|
|
19763
19734
|
* @throws {RequiredError}
|
|
19764
19735
|
* @memberof UsersApi
|
|
19765
19736
|
*/
|
|
19766
|
-
getGuestAssignee(
|
|
19767
|
-
return (0, exports.UsersApiFp)(this.configuration).getGuestAssignee(
|
|
19737
|
+
getGuestAssignee(options) {
|
|
19738
|
+
return (0, exports.UsersApiFp)(this.configuration).getGuestAssignee(options)(this.fetch, this.basePath);
|
|
19768
19739
|
}
|
|
19769
19740
|
/**
|
|
19770
19741
|
*
|
|
@@ -19889,13 +19860,12 @@ class UsersApi extends BaseAPI {
|
|
|
19889
19860
|
/**
|
|
19890
19861
|
*
|
|
19891
19862
|
* @summary Reinit customer
|
|
19892
|
-
* @param {string} customerId
|
|
19893
19863
|
* @param {*} [options] Override http request option.
|
|
19894
19864
|
* @throws {RequiredError}
|
|
19895
19865
|
* @memberof UsersApi
|
|
19896
19866
|
*/
|
|
19897
|
-
reinitCustomer(
|
|
19898
|
-
return (0, exports.UsersApiFp)(this.configuration).reinitCustomer(
|
|
19867
|
+
reinitCustomer(options) {
|
|
19868
|
+
return (0, exports.UsersApiFp)(this.configuration).reinitCustomer(options)(this.fetch, this.basePath);
|
|
19899
19869
|
}
|
|
19900
19870
|
/**
|
|
19901
19871
|
*
|