@tennac-booking/sdk 1.0.73 → 1.0.74
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/.openapi-generator/FILES +234 -240
- package/README.md +2 -11
- package/api.ts +29 -482
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +161 -485
- package/dist/api.js +1 -199
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +161 -485
- package/dist/esm/api.js +1 -199
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/BookingInfo.md +2 -2
- package/docs/ClubSettingsResponse.md +0 -2
- package/docs/CreateBookingRequest.md +2 -2
- package/docs/IUserAttributes.md +2 -12
- package/docs/StaffUserProfileResponse.md +2 -12
- package/docs/SubscribeRequestBody.md +2 -0
- package/docs/UserProfileResponse.md +2 -12
- package/docs/UsersApi.md +0 -156
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AddPaymentMethodRequestBody.md +0 -20
- package/docs/ConfirmPaymentMethodRequestBody.md +0 -20
- package/docs/ConfirmPaymentMethodResponse.md +0 -22
- package/docs/PaymentMethodSetupResponse.md +0 -24
- package/docs/SetupPaymentMethodRequestBody.md +0 -20
- package/docs/SetupPaymentMethodResponse.md +0 -24
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* openapi.json
|
|
6
6
|
* Pandook API Documentation
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.74
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -7578,38 +7578,6 @@ const UsersApiAxiosParamCreator = function (configuration) {
|
|
|
7578
7578
|
options: localVarRequestOptions,
|
|
7579
7579
|
};
|
|
7580
7580
|
}),
|
|
7581
|
-
/**
|
|
7582
|
-
*
|
|
7583
|
-
* @param {AddPaymentMethodRequestBody} addPaymentMethodRequestBody
|
|
7584
|
-
* @param {*} [options] Override http request option.
|
|
7585
|
-
* @throws {RequiredError}
|
|
7586
|
-
*/
|
|
7587
|
-
addPaymentMethodSetup: (addPaymentMethodRequestBody_1, ...args_1) => __awaiter(this, [addPaymentMethodRequestBody_1, ...args_1], void 0, function* (addPaymentMethodRequestBody, options = {}) {
|
|
7588
|
-
// verify required parameter 'addPaymentMethodRequestBody' is not null or undefined
|
|
7589
|
-
(0, common_1.assertParamExists)('addPaymentMethodSetup', 'addPaymentMethodRequestBody', addPaymentMethodRequestBody);
|
|
7590
|
-
const localVarPath = `/api/users/addPaymentMethodSetup`;
|
|
7591
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7592
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
7593
|
-
let baseOptions;
|
|
7594
|
-
if (configuration) {
|
|
7595
|
-
baseOptions = configuration.baseOptions;
|
|
7596
|
-
}
|
|
7597
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
7598
|
-
const localVarHeaderParameter = {};
|
|
7599
|
-
const localVarQueryParameter = {};
|
|
7600
|
-
// authentication bearerAuth required
|
|
7601
|
-
// http bearer authentication required
|
|
7602
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
7603
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7604
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
7605
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7606
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7607
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(addPaymentMethodRequestBody, localVarRequestOptions, configuration);
|
|
7608
|
-
return {
|
|
7609
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
7610
|
-
options: localVarRequestOptions,
|
|
7611
|
-
};
|
|
7612
|
-
}),
|
|
7613
7581
|
/**
|
|
7614
7582
|
*
|
|
7615
7583
|
* @param {ChangePasswordRequestBody} changePasswordRequestBody
|
|
@@ -7642,38 +7610,6 @@ const UsersApiAxiosParamCreator = function (configuration) {
|
|
|
7642
7610
|
options: localVarRequestOptions,
|
|
7643
7611
|
};
|
|
7644
7612
|
}),
|
|
7645
|
-
/**
|
|
7646
|
-
*
|
|
7647
|
-
* @param {ConfirmPaymentMethodRequestBody} confirmPaymentMethodRequestBody
|
|
7648
|
-
* @param {*} [options] Override http request option.
|
|
7649
|
-
* @throws {RequiredError}
|
|
7650
|
-
*/
|
|
7651
|
-
confirmPaymentMethodSetup: (confirmPaymentMethodRequestBody_1, ...args_1) => __awaiter(this, [confirmPaymentMethodRequestBody_1, ...args_1], void 0, function* (confirmPaymentMethodRequestBody, options = {}) {
|
|
7652
|
-
// verify required parameter 'confirmPaymentMethodRequestBody' is not null or undefined
|
|
7653
|
-
(0, common_1.assertParamExists)('confirmPaymentMethodSetup', 'confirmPaymentMethodRequestBody', confirmPaymentMethodRequestBody);
|
|
7654
|
-
const localVarPath = `/api/users/confirmPaymentMethodSetup`;
|
|
7655
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7656
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
7657
|
-
let baseOptions;
|
|
7658
|
-
if (configuration) {
|
|
7659
|
-
baseOptions = configuration.baseOptions;
|
|
7660
|
-
}
|
|
7661
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
7662
|
-
const localVarHeaderParameter = {};
|
|
7663
|
-
const localVarQueryParameter = {};
|
|
7664
|
-
// authentication bearerAuth required
|
|
7665
|
-
// http bearer authentication required
|
|
7666
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
7667
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7668
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
7669
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7670
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7671
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(confirmPaymentMethodRequestBody, localVarRequestOptions, configuration);
|
|
7672
|
-
return {
|
|
7673
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
7674
|
-
options: localVarRequestOptions,
|
|
7675
|
-
};
|
|
7676
|
-
}),
|
|
7677
7613
|
/**
|
|
7678
7614
|
*
|
|
7679
7615
|
* @param {*} [options] Override http request option.
|
|
@@ -8443,38 +8379,6 @@ const UsersApiAxiosParamCreator = function (configuration) {
|
|
|
8443
8379
|
options: localVarRequestOptions,
|
|
8444
8380
|
};
|
|
8445
8381
|
}),
|
|
8446
|
-
/**
|
|
8447
|
-
*
|
|
8448
|
-
* @param {SetupPaymentMethodRequestBody} setupPaymentMethodRequestBody
|
|
8449
|
-
* @param {*} [options] Override http request option.
|
|
8450
|
-
* @throws {RequiredError}
|
|
8451
|
-
*/
|
|
8452
|
-
setupOffSessionPaymentMethod: (setupPaymentMethodRequestBody_1, ...args_1) => __awaiter(this, [setupPaymentMethodRequestBody_1, ...args_1], void 0, function* (setupPaymentMethodRequestBody, options = {}) {
|
|
8453
|
-
// verify required parameter 'setupPaymentMethodRequestBody' is not null or undefined
|
|
8454
|
-
(0, common_1.assertParamExists)('setupOffSessionPaymentMethod', 'setupPaymentMethodRequestBody', setupPaymentMethodRequestBody);
|
|
8455
|
-
const localVarPath = `/api/users/setupOffSessionPaymentMethod`;
|
|
8456
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8457
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
8458
|
-
let baseOptions;
|
|
8459
|
-
if (configuration) {
|
|
8460
|
-
baseOptions = configuration.baseOptions;
|
|
8461
|
-
}
|
|
8462
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
8463
|
-
const localVarHeaderParameter = {};
|
|
8464
|
-
const localVarQueryParameter = {};
|
|
8465
|
-
// authentication bearerAuth required
|
|
8466
|
-
// http bearer authentication required
|
|
8467
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
8468
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
8469
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
8470
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8471
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
8472
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(setupPaymentMethodRequestBody, localVarRequestOptions, configuration);
|
|
8473
|
-
return {
|
|
8474
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
8475
|
-
options: localVarRequestOptions,
|
|
8476
|
-
};
|
|
8477
|
-
}),
|
|
8478
8382
|
/**
|
|
8479
8383
|
*
|
|
8480
8384
|
* @param {GoogleAuthRequestBody} googleAuthRequestBody
|
|
@@ -8745,21 +8649,6 @@ const UsersApiFp = function (configuration) {
|
|
|
8745
8649
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8746
8650
|
});
|
|
8747
8651
|
},
|
|
8748
|
-
/**
|
|
8749
|
-
*
|
|
8750
|
-
* @param {AddPaymentMethodRequestBody} addPaymentMethodRequestBody
|
|
8751
|
-
* @param {*} [options] Override http request option.
|
|
8752
|
-
* @throws {RequiredError}
|
|
8753
|
-
*/
|
|
8754
|
-
addPaymentMethodSetup(addPaymentMethodRequestBody, options) {
|
|
8755
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
8756
|
-
var _a, _b, _c;
|
|
8757
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.addPaymentMethodSetup(addPaymentMethodRequestBody, options);
|
|
8758
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8759
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['UsersApi.addPaymentMethodSetup']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8760
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8761
|
-
});
|
|
8762
|
-
},
|
|
8763
8652
|
/**
|
|
8764
8653
|
*
|
|
8765
8654
|
* @param {ChangePasswordRequestBody} changePasswordRequestBody
|
|
@@ -8775,21 +8664,6 @@ const UsersApiFp = function (configuration) {
|
|
|
8775
8664
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8776
8665
|
});
|
|
8777
8666
|
},
|
|
8778
|
-
/**
|
|
8779
|
-
*
|
|
8780
|
-
* @param {ConfirmPaymentMethodRequestBody} confirmPaymentMethodRequestBody
|
|
8781
|
-
* @param {*} [options] Override http request option.
|
|
8782
|
-
* @throws {RequiredError}
|
|
8783
|
-
*/
|
|
8784
|
-
confirmPaymentMethodSetup(confirmPaymentMethodRequestBody, options) {
|
|
8785
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
8786
|
-
var _a, _b, _c;
|
|
8787
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.confirmPaymentMethodSetup(confirmPaymentMethodRequestBody, options);
|
|
8788
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8789
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['UsersApi.confirmPaymentMethodSetup']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8790
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8791
|
-
});
|
|
8792
|
-
},
|
|
8793
8667
|
/**
|
|
8794
8668
|
*
|
|
8795
8669
|
* @param {*} [options] Override http request option.
|
|
@@ -9160,21 +9034,6 @@ const UsersApiFp = function (configuration) {
|
|
|
9160
9034
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
9161
9035
|
});
|
|
9162
9036
|
},
|
|
9163
|
-
/**
|
|
9164
|
-
*
|
|
9165
|
-
* @param {SetupPaymentMethodRequestBody} setupPaymentMethodRequestBody
|
|
9166
|
-
* @param {*} [options] Override http request option.
|
|
9167
|
-
* @throws {RequiredError}
|
|
9168
|
-
*/
|
|
9169
|
-
setupOffSessionPaymentMethod(setupPaymentMethodRequestBody, options) {
|
|
9170
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
9171
|
-
var _a, _b, _c;
|
|
9172
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.setupOffSessionPaymentMethod(setupPaymentMethodRequestBody, options);
|
|
9173
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
9174
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['UsersApi.setupOffSessionPaymentMethod']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
9175
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
9176
|
-
});
|
|
9177
|
-
},
|
|
9178
9037
|
/**
|
|
9179
9038
|
*
|
|
9180
9039
|
* @param {GoogleAuthRequestBody} googleAuthRequestBody
|
|
@@ -9317,15 +9176,6 @@ const UsersApiFactory = function (configuration, basePath, axios) {
|
|
|
9317
9176
|
addOrganization(requestParameters, options) {
|
|
9318
9177
|
return localVarFp.addOrganization(requestParameters.addOrganizationRequest, options).then((request) => request(axios, basePath));
|
|
9319
9178
|
},
|
|
9320
|
-
/**
|
|
9321
|
-
*
|
|
9322
|
-
* @param {UsersApiAddPaymentMethodSetupRequest} requestParameters Request parameters.
|
|
9323
|
-
* @param {*} [options] Override http request option.
|
|
9324
|
-
* @throws {RequiredError}
|
|
9325
|
-
*/
|
|
9326
|
-
addPaymentMethodSetup(requestParameters, options) {
|
|
9327
|
-
return localVarFp.addPaymentMethodSetup(requestParameters.addPaymentMethodRequestBody, options).then((request) => request(axios, basePath));
|
|
9328
|
-
},
|
|
9329
9179
|
/**
|
|
9330
9180
|
*
|
|
9331
9181
|
* @param {UsersApiChangePasswordRequest} requestParameters Request parameters.
|
|
@@ -9335,15 +9185,6 @@ const UsersApiFactory = function (configuration, basePath, axios) {
|
|
|
9335
9185
|
changePassword(requestParameters, options) {
|
|
9336
9186
|
return localVarFp.changePassword(requestParameters.changePasswordRequestBody, options).then((request) => request(axios, basePath));
|
|
9337
9187
|
},
|
|
9338
|
-
/**
|
|
9339
|
-
*
|
|
9340
|
-
* @param {UsersApiConfirmPaymentMethodSetupRequest} requestParameters Request parameters.
|
|
9341
|
-
* @param {*} [options] Override http request option.
|
|
9342
|
-
* @throws {RequiredError}
|
|
9343
|
-
*/
|
|
9344
|
-
confirmPaymentMethodSetup(requestParameters, options) {
|
|
9345
|
-
return localVarFp.confirmPaymentMethodSetup(requestParameters.confirmPaymentMethodRequestBody, options).then((request) => request(axios, basePath));
|
|
9346
|
-
},
|
|
9347
9188
|
/**
|
|
9348
9189
|
*
|
|
9349
9190
|
* @param {*} [options] Override http request option.
|
|
@@ -9552,15 +9393,6 @@ const UsersApiFactory = function (configuration, basePath, axios) {
|
|
|
9552
9393
|
resetPassword(requestParameters, options) {
|
|
9553
9394
|
return localVarFp.resetPassword(requestParameters.resetPasswordRequest, options).then((request) => request(axios, basePath));
|
|
9554
9395
|
},
|
|
9555
|
-
/**
|
|
9556
|
-
*
|
|
9557
|
-
* @param {UsersApiSetupOffSessionPaymentMethodRequest} requestParameters Request parameters.
|
|
9558
|
-
* @param {*} [options] Override http request option.
|
|
9559
|
-
* @throws {RequiredError}
|
|
9560
|
-
*/
|
|
9561
|
-
setupOffSessionPaymentMethod(requestParameters, options) {
|
|
9562
|
-
return localVarFp.setupOffSessionPaymentMethod(requestParameters.setupPaymentMethodRequestBody, options).then((request) => request(axios, basePath));
|
|
9563
|
-
},
|
|
9564
9396
|
/**
|
|
9565
9397
|
*
|
|
9566
9398
|
* @param {UsersApiSignInOrSignUpWithGoogleRequest} requestParameters Request parameters.
|
|
@@ -9664,16 +9496,6 @@ class UsersApi extends base_1.BaseAPI {
|
|
|
9664
9496
|
addOrganization(requestParameters, options) {
|
|
9665
9497
|
return (0, exports.UsersApiFp)(this.configuration).addOrganization(requestParameters.addOrganizationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
9666
9498
|
}
|
|
9667
|
-
/**
|
|
9668
|
-
*
|
|
9669
|
-
* @param {UsersApiAddPaymentMethodSetupRequest} requestParameters Request parameters.
|
|
9670
|
-
* @param {*} [options] Override http request option.
|
|
9671
|
-
* @throws {RequiredError}
|
|
9672
|
-
* @memberof UsersApi
|
|
9673
|
-
*/
|
|
9674
|
-
addPaymentMethodSetup(requestParameters, options) {
|
|
9675
|
-
return (0, exports.UsersApiFp)(this.configuration).addPaymentMethodSetup(requestParameters.addPaymentMethodRequestBody, options).then((request) => request(this.axios, this.basePath));
|
|
9676
|
-
}
|
|
9677
9499
|
/**
|
|
9678
9500
|
*
|
|
9679
9501
|
* @param {UsersApiChangePasswordRequest} requestParameters Request parameters.
|
|
@@ -9684,16 +9506,6 @@ class UsersApi extends base_1.BaseAPI {
|
|
|
9684
9506
|
changePassword(requestParameters, options) {
|
|
9685
9507
|
return (0, exports.UsersApiFp)(this.configuration).changePassword(requestParameters.changePasswordRequestBody, options).then((request) => request(this.axios, this.basePath));
|
|
9686
9508
|
}
|
|
9687
|
-
/**
|
|
9688
|
-
*
|
|
9689
|
-
* @param {UsersApiConfirmPaymentMethodSetupRequest} requestParameters Request parameters.
|
|
9690
|
-
* @param {*} [options] Override http request option.
|
|
9691
|
-
* @throws {RequiredError}
|
|
9692
|
-
* @memberof UsersApi
|
|
9693
|
-
*/
|
|
9694
|
-
confirmPaymentMethodSetup(requestParameters, options) {
|
|
9695
|
-
return (0, exports.UsersApiFp)(this.configuration).confirmPaymentMethodSetup(requestParameters.confirmPaymentMethodRequestBody, options).then((request) => request(this.axios, this.basePath));
|
|
9696
|
-
}
|
|
9697
9509
|
/**
|
|
9698
9510
|
*
|
|
9699
9511
|
* @param {*} [options] Override http request option.
|
|
@@ -9926,16 +9738,6 @@ class UsersApi extends base_1.BaseAPI {
|
|
|
9926
9738
|
resetPassword(requestParameters, options) {
|
|
9927
9739
|
return (0, exports.UsersApiFp)(this.configuration).resetPassword(requestParameters.resetPasswordRequest, options).then((request) => request(this.axios, this.basePath));
|
|
9928
9740
|
}
|
|
9929
|
-
/**
|
|
9930
|
-
*
|
|
9931
|
-
* @param {UsersApiSetupOffSessionPaymentMethodRequest} requestParameters Request parameters.
|
|
9932
|
-
* @param {*} [options] Override http request option.
|
|
9933
|
-
* @throws {RequiredError}
|
|
9934
|
-
* @memberof UsersApi
|
|
9935
|
-
*/
|
|
9936
|
-
setupOffSessionPaymentMethod(requestParameters, options) {
|
|
9937
|
-
return (0, exports.UsersApiFp)(this.configuration).setupOffSessionPaymentMethod(requestParameters.setupPaymentMethodRequestBody, options).then((request) => request(this.axios, this.basePath));
|
|
9938
|
-
}
|
|
9939
9741
|
/**
|
|
9940
9742
|
*
|
|
9941
9743
|
* @param {UsersApiSignInOrSignUpWithGoogleRequest} requestParameters Request parameters.
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED