@tennac-booking/sdk 1.0.128 → 1.0.130
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 +10 -0
- package/README.md +12 -0
- package/api.ts +427 -0
- package/dist/api.d.ts +341 -0
- package/dist/api.js +138 -4
- package/dist/esm/api.d.ts +341 -0
- package/dist/esm/api.js +134 -0
- package/docs/ClubAccessSettingsResponse.md +26 -0
- package/docs/ClubSettingsManagerApi.md +52 -0
- package/docs/ClubSettingsStaffApi.md +44 -0
- package/docs/HotelAccessSettings.md +26 -0
- package/docs/PartialHotelAccessSettings.md +27 -0
- package/docs/PartialPaymentRequirementsSettings.md +23 -0
- package/docs/PartialPublicAccessSettings.md +25 -0
- package/docs/PartialSchoolAccessSettings.md +25 -0
- package/docs/PaymentRequirementsSettings.md +22 -0
- package/docs/PublicAccessSettings.md +24 -0
- package/docs/SchoolAccessSettings.md +24 -0
- package/docs/UpdateClubAccessSettingsRequest.md +26 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1795,6 +1795,37 @@ export interface ClientSubscriptionsResponse {
|
|
|
1795
1795
|
*/
|
|
1796
1796
|
'subscriptions': Array<ClientSubscription>;
|
|
1797
1797
|
}
|
|
1798
|
+
/**
|
|
1799
|
+
*
|
|
1800
|
+
* @export
|
|
1801
|
+
* @interface ClubAccessSettingsResponse
|
|
1802
|
+
*/
|
|
1803
|
+
export interface ClubAccessSettingsResponse {
|
|
1804
|
+
/**
|
|
1805
|
+
*
|
|
1806
|
+
* @type {PublicAccessSettings}
|
|
1807
|
+
* @memberof ClubAccessSettingsResponse
|
|
1808
|
+
*/
|
|
1809
|
+
'publicAccess': PublicAccessSettings | null;
|
|
1810
|
+
/**
|
|
1811
|
+
*
|
|
1812
|
+
* @type {SchoolAccessSettings}
|
|
1813
|
+
* @memberof ClubAccessSettingsResponse
|
|
1814
|
+
*/
|
|
1815
|
+
'schoolAccess': SchoolAccessSettings | null;
|
|
1816
|
+
/**
|
|
1817
|
+
*
|
|
1818
|
+
* @type {HotelAccessSettings}
|
|
1819
|
+
* @memberof ClubAccessSettingsResponse
|
|
1820
|
+
*/
|
|
1821
|
+
'hotelAccess': HotelAccessSettings | null;
|
|
1822
|
+
/**
|
|
1823
|
+
*
|
|
1824
|
+
* @type {PaymentRequirementsSettings}
|
|
1825
|
+
* @memberof ClubAccessSettingsResponse
|
|
1826
|
+
*/
|
|
1827
|
+
'paymentRequirements': PaymentRequirementsSettings | null;
|
|
1828
|
+
}
|
|
1798
1829
|
/**
|
|
1799
1830
|
*
|
|
1800
1831
|
* @export
|
|
@@ -5104,6 +5135,37 @@ export interface GoogleAuthResponseUser {
|
|
|
5104
5135
|
*/
|
|
5105
5136
|
'id': string;
|
|
5106
5137
|
}
|
|
5138
|
+
/**
|
|
5139
|
+
*
|
|
5140
|
+
* @export
|
|
5141
|
+
* @interface HotelAccessSettings
|
|
5142
|
+
*/
|
|
5143
|
+
export interface HotelAccessSettings {
|
|
5144
|
+
/**
|
|
5145
|
+
*
|
|
5146
|
+
* @type {boolean}
|
|
5147
|
+
* @memberof HotelAccessSettings
|
|
5148
|
+
*/
|
|
5149
|
+
'enabled': boolean;
|
|
5150
|
+
/**
|
|
5151
|
+
*
|
|
5152
|
+
* @type {string}
|
|
5153
|
+
* @memberof HotelAccessSettings
|
|
5154
|
+
*/
|
|
5155
|
+
'accessCode'?: string | null;
|
|
5156
|
+
/**
|
|
5157
|
+
*
|
|
5158
|
+
* @type {string}
|
|
5159
|
+
* @memberof HotelAccessSettings
|
|
5160
|
+
*/
|
|
5161
|
+
'validFrom'?: string | null;
|
|
5162
|
+
/**
|
|
5163
|
+
*
|
|
5164
|
+
* @type {string}
|
|
5165
|
+
* @memberof HotelAccessSettings
|
|
5166
|
+
*/
|
|
5167
|
+
'validUntil'?: string | null;
|
|
5168
|
+
}
|
|
5107
5169
|
/**
|
|
5108
5170
|
*
|
|
5109
5171
|
* @export
|
|
@@ -6327,6 +6389,112 @@ export interface PartialClubWeeklySchedule {
|
|
|
6327
6389
|
*/
|
|
6328
6390
|
'sunday'?: ClubDaySchedule;
|
|
6329
6391
|
}
|
|
6392
|
+
/**
|
|
6393
|
+
* Make all properties in T optional
|
|
6394
|
+
* @export
|
|
6395
|
+
* @interface PartialHotelAccessSettings
|
|
6396
|
+
*/
|
|
6397
|
+
export interface PartialHotelAccessSettings {
|
|
6398
|
+
/**
|
|
6399
|
+
*
|
|
6400
|
+
* @type {string}
|
|
6401
|
+
* @memberof PartialHotelAccessSettings
|
|
6402
|
+
*/
|
|
6403
|
+
'accessCode'?: string;
|
|
6404
|
+
/**
|
|
6405
|
+
*
|
|
6406
|
+
* @type {string}
|
|
6407
|
+
* @memberof PartialHotelAccessSettings
|
|
6408
|
+
*/
|
|
6409
|
+
'validFrom'?: string;
|
|
6410
|
+
/**
|
|
6411
|
+
*
|
|
6412
|
+
* @type {string}
|
|
6413
|
+
* @memberof PartialHotelAccessSettings
|
|
6414
|
+
*/
|
|
6415
|
+
'validUntil'?: string;
|
|
6416
|
+
/**
|
|
6417
|
+
*
|
|
6418
|
+
* @type {boolean}
|
|
6419
|
+
* @memberof PartialHotelAccessSettings
|
|
6420
|
+
*/
|
|
6421
|
+
'enabled'?: boolean;
|
|
6422
|
+
}
|
|
6423
|
+
/**
|
|
6424
|
+
* Make all properties in T optional
|
|
6425
|
+
* @export
|
|
6426
|
+
* @interface PartialPaymentRequirementsSettings
|
|
6427
|
+
*/
|
|
6428
|
+
export interface PartialPaymentRequirementsSettings {
|
|
6429
|
+
/**
|
|
6430
|
+
*
|
|
6431
|
+
* @type {boolean}
|
|
6432
|
+
* @memberof PartialPaymentRequirementsSettings
|
|
6433
|
+
*/
|
|
6434
|
+
'isNoShowEnabled'?: boolean;
|
|
6435
|
+
/**
|
|
6436
|
+
*
|
|
6437
|
+
* @type {boolean}
|
|
6438
|
+
* @memberof PartialPaymentRequirementsSettings
|
|
6439
|
+
*/
|
|
6440
|
+
'requireOnlinePayment'?: boolean;
|
|
6441
|
+
}
|
|
6442
|
+
/**
|
|
6443
|
+
* Make all properties in T optional
|
|
6444
|
+
* @export
|
|
6445
|
+
* @interface PartialPublicAccessSettings
|
|
6446
|
+
*/
|
|
6447
|
+
export interface PartialPublicAccessSettings {
|
|
6448
|
+
/**
|
|
6449
|
+
*
|
|
6450
|
+
* @type {string}
|
|
6451
|
+
* @memberof PartialPublicAccessSettings
|
|
6452
|
+
*/
|
|
6453
|
+
'paymentMode'?: PartialPublicAccessSettingsPaymentModeEnum;
|
|
6454
|
+
/**
|
|
6455
|
+
*
|
|
6456
|
+
* @type {number}
|
|
6457
|
+
* @memberof PartialPublicAccessSettings
|
|
6458
|
+
*/
|
|
6459
|
+
'pricePerAccess'?: number;
|
|
6460
|
+
/**
|
|
6461
|
+
*
|
|
6462
|
+
* @type {boolean}
|
|
6463
|
+
* @memberof PartialPublicAccessSettings
|
|
6464
|
+
*/
|
|
6465
|
+
'enabled'?: boolean;
|
|
6466
|
+
}
|
|
6467
|
+
export declare const PartialPublicAccessSettingsPaymentModeEnum: {
|
|
6468
|
+
readonly Free: "free";
|
|
6469
|
+
readonly AccessFee: "access_fee";
|
|
6470
|
+
readonly PerCourt: "per_court";
|
|
6471
|
+
};
|
|
6472
|
+
export type PartialPublicAccessSettingsPaymentModeEnum = typeof PartialPublicAccessSettingsPaymentModeEnum[keyof typeof PartialPublicAccessSettingsPaymentModeEnum];
|
|
6473
|
+
/**
|
|
6474
|
+
* Make all properties in T optional
|
|
6475
|
+
* @export
|
|
6476
|
+
* @interface PartialSchoolAccessSettings
|
|
6477
|
+
*/
|
|
6478
|
+
export interface PartialSchoolAccessSettings {
|
|
6479
|
+
/**
|
|
6480
|
+
*
|
|
6481
|
+
* @type {Array<string>}
|
|
6482
|
+
* @memberof PartialSchoolAccessSettings
|
|
6483
|
+
*/
|
|
6484
|
+
'emailSuffixes'?: Array<string>;
|
|
6485
|
+
/**
|
|
6486
|
+
*
|
|
6487
|
+
* @type {boolean}
|
|
6488
|
+
* @memberof PartialSchoolAccessSettings
|
|
6489
|
+
*/
|
|
6490
|
+
'requireCertification'?: boolean;
|
|
6491
|
+
/**
|
|
6492
|
+
*
|
|
6493
|
+
* @type {boolean}
|
|
6494
|
+
* @memberof PartialSchoolAccessSettings
|
|
6495
|
+
*/
|
|
6496
|
+
'enabled'?: boolean;
|
|
6497
|
+
}
|
|
6330
6498
|
/**
|
|
6331
6499
|
*
|
|
6332
6500
|
* @export
|
|
@@ -6372,6 +6540,25 @@ export declare const PaymentMethod: {
|
|
|
6372
6540
|
readonly Free: "free";
|
|
6373
6541
|
};
|
|
6374
6542
|
export type PaymentMethod = typeof PaymentMethod[keyof typeof PaymentMethod];
|
|
6543
|
+
/**
|
|
6544
|
+
*
|
|
6545
|
+
* @export
|
|
6546
|
+
* @interface PaymentRequirementsSettings
|
|
6547
|
+
*/
|
|
6548
|
+
export interface PaymentRequirementsSettings {
|
|
6549
|
+
/**
|
|
6550
|
+
*
|
|
6551
|
+
* @type {boolean}
|
|
6552
|
+
* @memberof PaymentRequirementsSettings
|
|
6553
|
+
*/
|
|
6554
|
+
'isNoShowEnabled': boolean;
|
|
6555
|
+
/**
|
|
6556
|
+
*
|
|
6557
|
+
* @type {boolean}
|
|
6558
|
+
* @memberof PaymentRequirementsSettings
|
|
6559
|
+
*/
|
|
6560
|
+
'requireOnlinePayment': boolean;
|
|
6561
|
+
}
|
|
6375
6562
|
/**
|
|
6376
6563
|
* From T, pick a set of properties whose keys are in the union K
|
|
6377
6564
|
* @export
|
|
@@ -6864,6 +7051,37 @@ export interface ProfilePictureUpdateRequestBody {
|
|
|
6864
7051
|
*/
|
|
6865
7052
|
'profilePicture': string;
|
|
6866
7053
|
}
|
|
7054
|
+
/**
|
|
7055
|
+
*
|
|
7056
|
+
* @export
|
|
7057
|
+
* @interface PublicAccessSettings
|
|
7058
|
+
*/
|
|
7059
|
+
export interface PublicAccessSettings {
|
|
7060
|
+
/**
|
|
7061
|
+
*
|
|
7062
|
+
* @type {boolean}
|
|
7063
|
+
* @memberof PublicAccessSettings
|
|
7064
|
+
*/
|
|
7065
|
+
'enabled': boolean;
|
|
7066
|
+
/**
|
|
7067
|
+
*
|
|
7068
|
+
* @type {string}
|
|
7069
|
+
* @memberof PublicAccessSettings
|
|
7070
|
+
*/
|
|
7071
|
+
'paymentMode': PublicAccessSettingsPaymentModeEnum;
|
|
7072
|
+
/**
|
|
7073
|
+
*
|
|
7074
|
+
* @type {number}
|
|
7075
|
+
* @memberof PublicAccessSettings
|
|
7076
|
+
*/
|
|
7077
|
+
'pricePerAccess': number | null;
|
|
7078
|
+
}
|
|
7079
|
+
export declare const PublicAccessSettingsPaymentModeEnum: {
|
|
7080
|
+
readonly Free: "free";
|
|
7081
|
+
readonly AccessFee: "access_fee";
|
|
7082
|
+
readonly PerCourt: "per_court";
|
|
7083
|
+
};
|
|
7084
|
+
export type PublicAccessSettingsPaymentModeEnum = typeof PublicAccessSettingsPaymentModeEnum[keyof typeof PublicAccessSettingsPaymentModeEnum];
|
|
6867
7085
|
/**
|
|
6868
7086
|
*
|
|
6869
7087
|
* @export
|
|
@@ -7530,6 +7748,31 @@ export interface RevenueBySportItem {
|
|
|
7530
7748
|
*/
|
|
7531
7749
|
'totalTurnover': number;
|
|
7532
7750
|
}
|
|
7751
|
+
/**
|
|
7752
|
+
*
|
|
7753
|
+
* @export
|
|
7754
|
+
* @interface SchoolAccessSettings
|
|
7755
|
+
*/
|
|
7756
|
+
export interface SchoolAccessSettings {
|
|
7757
|
+
/**
|
|
7758
|
+
*
|
|
7759
|
+
* @type {boolean}
|
|
7760
|
+
* @memberof SchoolAccessSettings
|
|
7761
|
+
*/
|
|
7762
|
+
'enabled': boolean;
|
|
7763
|
+
/**
|
|
7764
|
+
*
|
|
7765
|
+
* @type {Array<string>}
|
|
7766
|
+
* @memberof SchoolAccessSettings
|
|
7767
|
+
*/
|
|
7768
|
+
'emailSuffixes': Array<string>;
|
|
7769
|
+
/**
|
|
7770
|
+
*
|
|
7771
|
+
* @type {boolean}
|
|
7772
|
+
* @memberof SchoolAccessSettings
|
|
7773
|
+
*/
|
|
7774
|
+
'requireCertification': boolean;
|
|
7775
|
+
}
|
|
7533
7776
|
/**
|
|
7534
7777
|
*
|
|
7535
7778
|
* @export
|
|
@@ -9847,6 +10090,37 @@ export interface UpdateActuality200Response {
|
|
|
9847
10090
|
*/
|
|
9848
10091
|
'actuality': any;
|
|
9849
10092
|
}
|
|
10093
|
+
/**
|
|
10094
|
+
*
|
|
10095
|
+
* @export
|
|
10096
|
+
* @interface UpdateClubAccessSettingsRequest
|
|
10097
|
+
*/
|
|
10098
|
+
export interface UpdateClubAccessSettingsRequest {
|
|
10099
|
+
/**
|
|
10100
|
+
*
|
|
10101
|
+
* @type {PartialPublicAccessSettings}
|
|
10102
|
+
* @memberof UpdateClubAccessSettingsRequest
|
|
10103
|
+
*/
|
|
10104
|
+
'publicAccess'?: PartialPublicAccessSettings;
|
|
10105
|
+
/**
|
|
10106
|
+
*
|
|
10107
|
+
* @type {PartialSchoolAccessSettings}
|
|
10108
|
+
* @memberof UpdateClubAccessSettingsRequest
|
|
10109
|
+
*/
|
|
10110
|
+
'schoolAccess'?: PartialSchoolAccessSettings;
|
|
10111
|
+
/**
|
|
10112
|
+
*
|
|
10113
|
+
* @type {PartialHotelAccessSettings}
|
|
10114
|
+
* @memberof UpdateClubAccessSettingsRequest
|
|
10115
|
+
*/
|
|
10116
|
+
'hotelAccess'?: PartialHotelAccessSettings;
|
|
10117
|
+
/**
|
|
10118
|
+
*
|
|
10119
|
+
* @type {PartialPaymentRequirementsSettings}
|
|
10120
|
+
* @memberof UpdateClubAccessSettingsRequest
|
|
10121
|
+
*/
|
|
10122
|
+
'paymentRequirements'?: PartialPaymentRequirementsSettings;
|
|
10123
|
+
}
|
|
9850
10124
|
/**
|
|
9851
10125
|
*
|
|
9852
10126
|
* @export
|
|
@@ -13201,6 +13475,13 @@ export declare class ClubRolesStaffApi extends BaseAPI {
|
|
|
13201
13475
|
* @export
|
|
13202
13476
|
*/
|
|
13203
13477
|
export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
13478
|
+
/**
|
|
13479
|
+
*
|
|
13480
|
+
* @param {UpdateClubAccessSettingsRequest} updateClubAccessSettingsRequest
|
|
13481
|
+
* @param {*} [options] Override http request option.
|
|
13482
|
+
* @throws {RequiredError}
|
|
13483
|
+
*/
|
|
13484
|
+
updateAccessSettings: (updateClubAccessSettingsRequest: UpdateClubAccessSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13204
13485
|
/**
|
|
13205
13486
|
*
|
|
13206
13487
|
* @param {UpdateClubGeneralSettingsRequest} updateClubGeneralSettingsRequest
|
|
@@ -13235,6 +13516,13 @@ export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: C
|
|
|
13235
13516
|
* @export
|
|
13236
13517
|
*/
|
|
13237
13518
|
export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) => {
|
|
13519
|
+
/**
|
|
13520
|
+
*
|
|
13521
|
+
* @param {UpdateClubAccessSettingsRequest} updateClubAccessSettingsRequest
|
|
13522
|
+
* @param {*} [options] Override http request option.
|
|
13523
|
+
* @throws {RequiredError}
|
|
13524
|
+
*/
|
|
13525
|
+
updateAccessSettings(updateClubAccessSettingsRequest: UpdateClubAccessSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubAccessSettingsResponse>>;
|
|
13238
13526
|
/**
|
|
13239
13527
|
*
|
|
13240
13528
|
* @param {UpdateClubGeneralSettingsRequest} updateClubGeneralSettingsRequest
|
|
@@ -13269,6 +13557,13 @@ export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) =
|
|
|
13269
13557
|
* @export
|
|
13270
13558
|
*/
|
|
13271
13559
|
export declare const ClubSettingsManagerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13560
|
+
/**
|
|
13561
|
+
*
|
|
13562
|
+
* @param {ClubSettingsManagerApiUpdateAccessSettingsRequest} requestParameters Request parameters.
|
|
13563
|
+
* @param {*} [options] Override http request option.
|
|
13564
|
+
* @throws {RequiredError}
|
|
13565
|
+
*/
|
|
13566
|
+
updateAccessSettings(requestParameters: ClubSettingsManagerApiUpdateAccessSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubAccessSettingsResponse>;
|
|
13272
13567
|
/**
|
|
13273
13568
|
*
|
|
13274
13569
|
* @param {ClubSettingsManagerApiUpdateClubGeneralSettingsRequest} requestParameters Request parameters.
|
|
@@ -13298,6 +13593,19 @@ export declare const ClubSettingsManagerApiFactory: (configuration?: Configurati
|
|
|
13298
13593
|
*/
|
|
13299
13594
|
updateReservationSettings(requestParameters: ClubSettingsManagerApiUpdateReservationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubReservationSettingsResponse>;
|
|
13300
13595
|
};
|
|
13596
|
+
/**
|
|
13597
|
+
* Request parameters for updateAccessSettings operation in ClubSettingsManagerApi.
|
|
13598
|
+
* @export
|
|
13599
|
+
* @interface ClubSettingsManagerApiUpdateAccessSettingsRequest
|
|
13600
|
+
*/
|
|
13601
|
+
export interface ClubSettingsManagerApiUpdateAccessSettingsRequest {
|
|
13602
|
+
/**
|
|
13603
|
+
*
|
|
13604
|
+
* @type {UpdateClubAccessSettingsRequest}
|
|
13605
|
+
* @memberof ClubSettingsManagerApiUpdateAccessSettings
|
|
13606
|
+
*/
|
|
13607
|
+
readonly updateClubAccessSettingsRequest: UpdateClubAccessSettingsRequest;
|
|
13608
|
+
}
|
|
13301
13609
|
/**
|
|
13302
13610
|
* Request parameters for updateClubGeneralSettings operation in ClubSettingsManagerApi.
|
|
13303
13611
|
* @export
|
|
@@ -13357,6 +13665,14 @@ export interface ClubSettingsManagerApiUpdateReservationSettingsRequest {
|
|
|
13357
13665
|
* @extends {BaseAPI}
|
|
13358
13666
|
*/
|
|
13359
13667
|
export declare class ClubSettingsManagerApi extends BaseAPI {
|
|
13668
|
+
/**
|
|
13669
|
+
*
|
|
13670
|
+
* @param {ClubSettingsManagerApiUpdateAccessSettingsRequest} requestParameters Request parameters.
|
|
13671
|
+
* @param {*} [options] Override http request option.
|
|
13672
|
+
* @throws {RequiredError}
|
|
13673
|
+
* @memberof ClubSettingsManagerApi
|
|
13674
|
+
*/
|
|
13675
|
+
updateAccessSettings(requestParameters: ClubSettingsManagerApiUpdateAccessSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubAccessSettingsResponse, any, {}>>;
|
|
13360
13676
|
/**
|
|
13361
13677
|
*
|
|
13362
13678
|
* @param {ClubSettingsManagerApiUpdateClubGeneralSettingsRequest} requestParameters Request parameters.
|
|
@@ -13395,6 +13711,12 @@ export declare class ClubSettingsManagerApi extends BaseAPI {
|
|
|
13395
13711
|
* @export
|
|
13396
13712
|
*/
|
|
13397
13713
|
export declare const ClubSettingsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
13714
|
+
/**
|
|
13715
|
+
*
|
|
13716
|
+
* @param {*} [options] Override http request option.
|
|
13717
|
+
* @throws {RequiredError}
|
|
13718
|
+
*/
|
|
13719
|
+
getAccessSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13398
13720
|
/**
|
|
13399
13721
|
*
|
|
13400
13722
|
* @param {*} [options] Override http request option.
|
|
@@ -13425,6 +13747,12 @@ export declare const ClubSettingsStaffApiAxiosParamCreator: (configuration?: Con
|
|
|
13425
13747
|
* @export
|
|
13426
13748
|
*/
|
|
13427
13749
|
export declare const ClubSettingsStaffApiFp: (configuration?: Configuration) => {
|
|
13750
|
+
/**
|
|
13751
|
+
*
|
|
13752
|
+
* @param {*} [options] Override http request option.
|
|
13753
|
+
* @throws {RequiredError}
|
|
13754
|
+
*/
|
|
13755
|
+
getAccessSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubAccessSettingsResponse>>;
|
|
13428
13756
|
/**
|
|
13429
13757
|
*
|
|
13430
13758
|
* @param {*} [options] Override http request option.
|
|
@@ -13455,6 +13783,12 @@ export declare const ClubSettingsStaffApiFp: (configuration?: Configuration) =>
|
|
|
13455
13783
|
* @export
|
|
13456
13784
|
*/
|
|
13457
13785
|
export declare const ClubSettingsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13786
|
+
/**
|
|
13787
|
+
*
|
|
13788
|
+
* @param {*} [options] Override http request option.
|
|
13789
|
+
* @throws {RequiredError}
|
|
13790
|
+
*/
|
|
13791
|
+
getAccessSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubAccessSettingsResponse>;
|
|
13458
13792
|
/**
|
|
13459
13793
|
*
|
|
13460
13794
|
* @param {*} [options] Override http request option.
|
|
@@ -13487,6 +13821,13 @@ export declare const ClubSettingsStaffApiFactory: (configuration?: Configuration
|
|
|
13487
13821
|
* @extends {BaseAPI}
|
|
13488
13822
|
*/
|
|
13489
13823
|
export declare class ClubSettingsStaffApi extends BaseAPI {
|
|
13824
|
+
/**
|
|
13825
|
+
*
|
|
13826
|
+
* @param {*} [options] Override http request option.
|
|
13827
|
+
* @throws {RequiredError}
|
|
13828
|
+
* @memberof ClubSettingsStaffApi
|
|
13829
|
+
*/
|
|
13830
|
+
getAccessSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubAccessSettingsResponse, any, {}>>;
|
|
13490
13831
|
/**
|
|
13491
13832
|
*
|
|
13492
13833
|
* @param {*} [options] Override http request option.
|
package/dist/api.js
CHANGED
|
@@ -22,10 +22,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SubscriptionsUserApi = exports.SubscriptionsUserApiFactory = exports.SubscriptionsUserApiFp = exports.SubscriptionsUserApiAxiosParamCreator = exports.SubscriptionsStaffApi = exports.SubscriptionsStaffApiFactory = exports.SubscriptionsStaffApiFp = exports.SubscriptionsStaffApiAxiosParamCreator = exports.SubscriptionsPublicApi = exports.SubscriptionsPublicApiFactory = exports.SubscriptionsPublicApiFp = void 0;
|
|
25
|
+
exports.UpdateClubRoleRequestRoleEnum = exports.UpdateClubMemberRequestRoleEnum = exports.SurfaceType = exports.StripeStripeTaxCodeObjectEnum = exports.StripeStripeResponseStripeStripePriceObjectEnum = exports.StripeStripeProductType = exports.StripeStripeProductTaxCodeObjectEnum = exports.StripeStripeProductDefaultPriceObjectEnum = exports.StripeStripeProductObjectEnum = exports.StripeStripePriceType = exports.StripeStripePriceTransformQuantityRound = exports.StripeStripePriceTiersMode = exports.StripeStripePriceTaxBehavior = exports.StripeStripePriceRecurringUsageType = exports.StripeStripePriceRecurringInterval = exports.StripeStripePriceProductObjectEnum = exports.StripeStripePriceCurrencyOptionsTaxBehavior = exports.StripeStripePriceBillingScheme = exports.StripeStripePriceObjectEnum = exports.StripeStripeDeletedProductObjectEnum = exports.StaffBookingPaymentState = exports.SportKey = exports.RegisterRequestBodyLocationTypeEnum = exports.PublicAccessSettingsPaymentModeEnum = exports.PlayerCategoryId = exports.PlanInterval = exports.PaymentMethod = exports.PartialPublicAccessSettingsPaymentModeEnum = exports.InvoiceStatus = exports.ImageContextType = exports.IUserLocationTypeEnum = exports.Gender = exports.EventResponseVisibilityTypeEnum = exports.EventResponseParticipationTypeEnum = exports.EventResponseRecurringTypeEnum = exports.EventResponseTypeEnum = exports.DiscountType = exports.CreateEventRequestVisibilityTypeEnum = exports.CreateEventRequestParticipationTypeEnum = exports.CreateEventRequestRecurringTypeEnum = exports.CreateEventRequestTypeEnum = exports.CreateClubRoleRequestRoleEnum = exports.CourtStatus = exports.ClubRoleResponseRoleEnum = exports.ClientOnboardingRequestBodyClubTypeEnum = exports.CaptureResultStatusEnum = exports.CaptureResultTypeEnum = exports.BookingStatus = exports.BookingHistoryPopulatedPerformedByTypeEnum = exports.AgendaPaymentStatus = void 0;
|
|
26
|
+
exports.ClubsApiAxiosParamCreator = exports.ClubSettingsStaffApi = exports.ClubSettingsStaffApiFactory = exports.ClubSettingsStaffApiFp = exports.ClubSettingsStaffApiAxiosParamCreator = exports.ClubSettingsManagerApi = exports.ClubSettingsManagerApiFactory = exports.ClubSettingsManagerApiFp = exports.ClubSettingsManagerApiAxiosParamCreator = exports.ClubRolesStaffApi = exports.ClubRolesStaffApiFactory = exports.ClubRolesStaffApiFp = exports.ClubRolesStaffApiAxiosParamCreator = exports.ClubRolesManagerApi = exports.ClubRolesManagerApiFactory = exports.ClubRolesManagerApiFp = exports.ClubRolesManagerApiAxiosParamCreator = exports.ClubAnalyticsStaffApi = exports.ClubAnalyticsStaffApiFactory = exports.ClubAnalyticsStaffApiFp = exports.ClubAnalyticsStaffApiAxiosParamCreator = exports.ClubAnalyticsApi = exports.ClubAnalyticsApiFactory = exports.ClubAnalyticsApiFp = exports.ClubAnalyticsApiAxiosParamCreator = exports.ClientApi = exports.ClientApiFactory = exports.ClientApiFp = exports.ClientApiAxiosParamCreator = exports.BookingsUserApi = exports.BookingsUserApiFactory = exports.BookingsUserApiFp = exports.BookingsUserApiAxiosParamCreator = exports.BookingsStaffApi = exports.BookingsStaffApiFactory = exports.BookingsStaffApiFp = exports.BookingsStaffApiAxiosParamCreator = exports.BookingsManagerApi = exports.BookingsManagerApiFactory = exports.BookingsManagerApiFp = exports.BookingsManagerApiAxiosParamCreator = exports.BookingsApi = exports.BookingsApiFactory = exports.BookingsApiFp = exports.BookingsApiAxiosParamCreator = exports.UserLocationSummaryTypeEnum = exports.UpdateEventRequestVisibilityTypeEnum = exports.UpdateEventRequestParticipationTypeEnum = exports.UpdateEventRequestRecurringTypeEnum = exports.UpdateEventRequestTypeEnum = void 0;
|
|
27
|
+
exports.SubscriptionsManagerApiFactory = exports.SubscriptionsManagerApiFp = exports.SubscriptionsManagerApiAxiosParamCreator = exports.SportsPublicApi = exports.SportsPublicApiFactory = exports.SportsPublicApiFp = exports.SportsPublicApiAxiosParamCreator = exports.SportsManagerApi = exports.SportsManagerApiFactory = exports.SportsManagerApiFp = exports.SportsManagerApiAxiosParamCreator = exports.ImagesApi = exports.ImagesApiFactory = exports.ImagesApiFp = exports.ImagesApiAxiosParamCreator = exports.GetWeeklyEventsTypeEnum = exports.GetWeeklyEventsVisibilityTypeEnum = exports.GetMonthlyEventsTypeEnum = exports.GetMonthlyEventsVisibilityTypeEnum = exports.GetDailyEventsTypeEnum = exports.GetDailyEventsVisibilityTypeEnum = exports.EventsStaffApi = exports.EventsStaffApiFactory = exports.EventsStaffApiFp = exports.EventsStaffApiAxiosParamCreator = exports.EventsManagerApi = exports.EventsManagerApiFactory = exports.EventsManagerApiFp = exports.EventsManagerApiAxiosParamCreator = exports.GetPublishedEventsByClubIdTypeEnum = exports.GetPublishedEventsByClubIdVisibilityTypeEnum = exports.EventsApi = exports.EventsApiFactory = exports.EventsApiFp = exports.EventsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.ClubsStaffApi = exports.ClubsStaffApiFactory = exports.ClubsStaffApiFp = exports.ClubsStaffApiAxiosParamCreator = exports.ClubsManagerApi = exports.ClubsManagerApiFactory = exports.ClubsManagerApiFp = exports.ClubsManagerApiAxiosParamCreator = exports.ClubsApi = exports.ClubsApiFactory = exports.ClubsApiFp = void 0;
|
|
28
|
+
exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SubscriptionsUserApi = exports.SubscriptionsUserApiFactory = exports.SubscriptionsUserApiFp = exports.SubscriptionsUserApiAxiosParamCreator = exports.SubscriptionsStaffApi = exports.SubscriptionsStaffApiFactory = exports.SubscriptionsStaffApiFp = exports.SubscriptionsStaffApiAxiosParamCreator = exports.SubscriptionsPublicApi = exports.SubscriptionsPublicApiFactory = exports.SubscriptionsPublicApiFp = exports.SubscriptionsPublicApiAxiosParamCreator = exports.SubscriptionsManagerApi = void 0;
|
|
29
29
|
const axios_1 = require("axios");
|
|
30
30
|
// Some imports not used depending on template conditions
|
|
31
31
|
// @ts-ignore
|
|
@@ -183,6 +183,11 @@ exports.InvoiceStatus = {
|
|
|
183
183
|
Canceled: 'canceled',
|
|
184
184
|
Expired: 'expired'
|
|
185
185
|
};
|
|
186
|
+
exports.PartialPublicAccessSettingsPaymentModeEnum = {
|
|
187
|
+
Free: 'free',
|
|
188
|
+
AccessFee: 'access_fee',
|
|
189
|
+
PerCourt: 'per_court'
|
|
190
|
+
};
|
|
186
191
|
/**
|
|
187
192
|
*
|
|
188
193
|
* @export
|
|
@@ -218,6 +223,11 @@ exports.PlayerCategoryId = {
|
|
|
218
223
|
MostActive: 'most-active',
|
|
219
224
|
Nearby: 'nearby'
|
|
220
225
|
};
|
|
226
|
+
exports.PublicAccessSettingsPaymentModeEnum = {
|
|
227
|
+
Free: 'free',
|
|
228
|
+
AccessFee: 'access_fee',
|
|
229
|
+
PerCourt: 'per_court'
|
|
230
|
+
};
|
|
221
231
|
exports.RegisterRequestBodyLocationTypeEnum = {
|
|
222
232
|
Point: 'Point'
|
|
223
233
|
};
|
|
@@ -3579,6 +3589,38 @@ exports.ClubRolesStaffApi = ClubRolesStaffApi;
|
|
|
3579
3589
|
*/
|
|
3580
3590
|
const ClubSettingsManagerApiAxiosParamCreator = function (configuration) {
|
|
3581
3591
|
return {
|
|
3592
|
+
/**
|
|
3593
|
+
*
|
|
3594
|
+
* @param {UpdateClubAccessSettingsRequest} updateClubAccessSettingsRequest
|
|
3595
|
+
* @param {*} [options] Override http request option.
|
|
3596
|
+
* @throws {RequiredError}
|
|
3597
|
+
*/
|
|
3598
|
+
updateAccessSettings: (updateClubAccessSettingsRequest_1, ...args_1) => __awaiter(this, [updateClubAccessSettingsRequest_1, ...args_1], void 0, function* (updateClubAccessSettingsRequest, options = {}) {
|
|
3599
|
+
// verify required parameter 'updateClubAccessSettingsRequest' is not null or undefined
|
|
3600
|
+
(0, common_1.assertParamExists)('updateAccessSettings', 'updateClubAccessSettingsRequest', updateClubAccessSettingsRequest);
|
|
3601
|
+
const localVarPath = `/api/club-settings/access`;
|
|
3602
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3603
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
3604
|
+
let baseOptions;
|
|
3605
|
+
if (configuration) {
|
|
3606
|
+
baseOptions = configuration.baseOptions;
|
|
3607
|
+
}
|
|
3608
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
3609
|
+
const localVarHeaderParameter = {};
|
|
3610
|
+
const localVarQueryParameter = {};
|
|
3611
|
+
// authentication bearerAuth required
|
|
3612
|
+
// http bearer authentication required
|
|
3613
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
3614
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3615
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
3616
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3617
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3618
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateClubAccessSettingsRequest, localVarRequestOptions, configuration);
|
|
3619
|
+
return {
|
|
3620
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
3621
|
+
options: localVarRequestOptions,
|
|
3622
|
+
};
|
|
3623
|
+
}),
|
|
3582
3624
|
/**
|
|
3583
3625
|
*
|
|
3584
3626
|
* @param {UpdateClubGeneralSettingsRequest} updateClubGeneralSettingsRequest
|
|
@@ -3717,6 +3759,21 @@ exports.ClubSettingsManagerApiAxiosParamCreator = ClubSettingsManagerApiAxiosPar
|
|
|
3717
3759
|
const ClubSettingsManagerApiFp = function (configuration) {
|
|
3718
3760
|
const localVarAxiosParamCreator = (0, exports.ClubSettingsManagerApiAxiosParamCreator)(configuration);
|
|
3719
3761
|
return {
|
|
3762
|
+
/**
|
|
3763
|
+
*
|
|
3764
|
+
* @param {UpdateClubAccessSettingsRequest} updateClubAccessSettingsRequest
|
|
3765
|
+
* @param {*} [options] Override http request option.
|
|
3766
|
+
* @throws {RequiredError}
|
|
3767
|
+
*/
|
|
3768
|
+
updateAccessSettings(updateClubAccessSettingsRequest, options) {
|
|
3769
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3770
|
+
var _a, _b, _c;
|
|
3771
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateAccessSettings(updateClubAccessSettingsRequest, options);
|
|
3772
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3773
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ClubSettingsManagerApi.updateAccessSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
3774
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3775
|
+
});
|
|
3776
|
+
},
|
|
3720
3777
|
/**
|
|
3721
3778
|
*
|
|
3722
3779
|
* @param {UpdateClubGeneralSettingsRequest} updateClubGeneralSettingsRequest
|
|
@@ -3787,6 +3844,15 @@ exports.ClubSettingsManagerApiFp = ClubSettingsManagerApiFp;
|
|
|
3787
3844
|
const ClubSettingsManagerApiFactory = function (configuration, basePath, axios) {
|
|
3788
3845
|
const localVarFp = (0, exports.ClubSettingsManagerApiFp)(configuration);
|
|
3789
3846
|
return {
|
|
3847
|
+
/**
|
|
3848
|
+
*
|
|
3849
|
+
* @param {ClubSettingsManagerApiUpdateAccessSettingsRequest} requestParameters Request parameters.
|
|
3850
|
+
* @param {*} [options] Override http request option.
|
|
3851
|
+
* @throws {RequiredError}
|
|
3852
|
+
*/
|
|
3853
|
+
updateAccessSettings(requestParameters, options) {
|
|
3854
|
+
return localVarFp.updateAccessSettings(requestParameters.updateClubAccessSettingsRequest, options).then((request) => request(axios, basePath));
|
|
3855
|
+
},
|
|
3790
3856
|
/**
|
|
3791
3857
|
*
|
|
3792
3858
|
* @param {ClubSettingsManagerApiUpdateClubGeneralSettingsRequest} requestParameters Request parameters.
|
|
@@ -3833,6 +3899,16 @@ exports.ClubSettingsManagerApiFactory = ClubSettingsManagerApiFactory;
|
|
|
3833
3899
|
* @extends {BaseAPI}
|
|
3834
3900
|
*/
|
|
3835
3901
|
class ClubSettingsManagerApi extends base_1.BaseAPI {
|
|
3902
|
+
/**
|
|
3903
|
+
*
|
|
3904
|
+
* @param {ClubSettingsManagerApiUpdateAccessSettingsRequest} requestParameters Request parameters.
|
|
3905
|
+
* @param {*} [options] Override http request option.
|
|
3906
|
+
* @throws {RequiredError}
|
|
3907
|
+
* @memberof ClubSettingsManagerApi
|
|
3908
|
+
*/
|
|
3909
|
+
updateAccessSettings(requestParameters, options) {
|
|
3910
|
+
return (0, exports.ClubSettingsManagerApiFp)(this.configuration).updateAccessSettings(requestParameters.updateClubAccessSettingsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3911
|
+
}
|
|
3836
3912
|
/**
|
|
3837
3913
|
*
|
|
3838
3914
|
* @param {ClubSettingsManagerApiUpdateClubGeneralSettingsRequest} requestParameters Request parameters.
|
|
@@ -3881,6 +3957,33 @@ exports.ClubSettingsManagerApi = ClubSettingsManagerApi;
|
|
|
3881
3957
|
*/
|
|
3882
3958
|
const ClubSettingsStaffApiAxiosParamCreator = function (configuration) {
|
|
3883
3959
|
return {
|
|
3960
|
+
/**
|
|
3961
|
+
*
|
|
3962
|
+
* @param {*} [options] Override http request option.
|
|
3963
|
+
* @throws {RequiredError}
|
|
3964
|
+
*/
|
|
3965
|
+
getAccessSettings: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
3966
|
+
const localVarPath = `/api/club-settings/access`;
|
|
3967
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3968
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
3969
|
+
let baseOptions;
|
|
3970
|
+
if (configuration) {
|
|
3971
|
+
baseOptions = configuration.baseOptions;
|
|
3972
|
+
}
|
|
3973
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
3974
|
+
const localVarHeaderParameter = {};
|
|
3975
|
+
const localVarQueryParameter = {};
|
|
3976
|
+
// authentication bearerAuth required
|
|
3977
|
+
// http bearer authentication required
|
|
3978
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
3979
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
3980
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3981
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3982
|
+
return {
|
|
3983
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
3984
|
+
options: localVarRequestOptions,
|
|
3985
|
+
};
|
|
3986
|
+
}),
|
|
3884
3987
|
/**
|
|
3885
3988
|
*
|
|
3886
3989
|
* @param {*} [options] Override http request option.
|
|
@@ -3999,6 +4102,20 @@ exports.ClubSettingsStaffApiAxiosParamCreator = ClubSettingsStaffApiAxiosParamCr
|
|
|
3999
4102
|
const ClubSettingsStaffApiFp = function (configuration) {
|
|
4000
4103
|
const localVarAxiosParamCreator = (0, exports.ClubSettingsStaffApiAxiosParamCreator)(configuration);
|
|
4001
4104
|
return {
|
|
4105
|
+
/**
|
|
4106
|
+
*
|
|
4107
|
+
* @param {*} [options] Override http request option.
|
|
4108
|
+
* @throws {RequiredError}
|
|
4109
|
+
*/
|
|
4110
|
+
getAccessSettings(options) {
|
|
4111
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4112
|
+
var _a, _b, _c;
|
|
4113
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getAccessSettings(options);
|
|
4114
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4115
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ClubSettingsStaffApi.getAccessSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4116
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4117
|
+
});
|
|
4118
|
+
},
|
|
4002
4119
|
/**
|
|
4003
4120
|
*
|
|
4004
4121
|
* @param {*} [options] Override http request option.
|
|
@@ -4065,6 +4182,14 @@ exports.ClubSettingsStaffApiFp = ClubSettingsStaffApiFp;
|
|
|
4065
4182
|
const ClubSettingsStaffApiFactory = function (configuration, basePath, axios) {
|
|
4066
4183
|
const localVarFp = (0, exports.ClubSettingsStaffApiFp)(configuration);
|
|
4067
4184
|
return {
|
|
4185
|
+
/**
|
|
4186
|
+
*
|
|
4187
|
+
* @param {*} [options] Override http request option.
|
|
4188
|
+
* @throws {RequiredError}
|
|
4189
|
+
*/
|
|
4190
|
+
getAccessSettings(options) {
|
|
4191
|
+
return localVarFp.getAccessSettings(options).then((request) => request(axios, basePath));
|
|
4192
|
+
},
|
|
4068
4193
|
/**
|
|
4069
4194
|
*
|
|
4070
4195
|
* @param {*} [options] Override http request option.
|
|
@@ -4107,6 +4232,15 @@ exports.ClubSettingsStaffApiFactory = ClubSettingsStaffApiFactory;
|
|
|
4107
4232
|
* @extends {BaseAPI}
|
|
4108
4233
|
*/
|
|
4109
4234
|
class ClubSettingsStaffApi extends base_1.BaseAPI {
|
|
4235
|
+
/**
|
|
4236
|
+
*
|
|
4237
|
+
* @param {*} [options] Override http request option.
|
|
4238
|
+
* @throws {RequiredError}
|
|
4239
|
+
* @memberof ClubSettingsStaffApi
|
|
4240
|
+
*/
|
|
4241
|
+
getAccessSettings(options) {
|
|
4242
|
+
return (0, exports.ClubSettingsStaffApiFp)(this.configuration).getAccessSettings(options).then((request) => request(this.axios, this.basePath));
|
|
4243
|
+
}
|
|
4110
4244
|
/**
|
|
4111
4245
|
*
|
|
4112
4246
|
* @param {*} [options] Override http request option.
|