@tennac-booking/sdk 1.0.139 → 1.0.141
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 -3
- package/README.md +12 -3
- package/api.ts +461 -108
- package/dist/api.d.ts +365 -108
- package/dist/api.js +155 -4
- package/dist/esm/api.d.ts +365 -108
- package/dist/esm/api.js +151 -0
- package/docs/CharacteristicEntry.md +22 -0
- package/docs/{ClubDaySchedule.md → ClubDayInterval.md} +7 -7
- package/docs/ClubHoursSettingsResponse.md +1 -1
- package/docs/ClubPlayerDetailResponse.md +2 -0
- package/docs/ClubPlayerDetailResponseCharacteristicsInner.md +22 -0
- package/docs/ClubSettingsManagerApi.md +107 -0
- package/docs/DuplicateClubDayScheduleRequest.md +22 -0
- package/docs/ICharacteristic.md +22 -0
- package/docs/IUserAttributes.md +2 -0
- package/docs/PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined.md +33 -0
- package/docs/PlayerSummary.md +2 -0
- package/docs/PublicUserProfileResponse.md +2 -0
- package/docs/RecordWeekdayKeyClubDaySchedule.md +33 -0
- package/docs/StaffUserProfileResponse.md +2 -0
- package/docs/UpdateClubDayScheduleRequest.md +20 -0
- package/docs/UpdateClubHoursSettingsRequest.md +1 -1
- package/docs/UpdateUserRequestBody.md +2 -0
- package/docs/UpdateUserRequestBodyCharacteristicsInner.md +22 -0
- package/docs/UserProfileResponse.md +2 -0
- package/docs/WeekdayKey.md +20 -0
- package/package.json +1 -1
- package/docs/ClubWeeklySchedule.md +0 -32
- package/docs/PartialClubWeeklySchedule.md +0 -33
package/dist/esm/api.d.ts
CHANGED
|
@@ -1349,6 +1349,25 @@ export interface ChangePasswordResponse {
|
|
|
1349
1349
|
*/
|
|
1350
1350
|
'message': string;
|
|
1351
1351
|
}
|
|
1352
|
+
/**
|
|
1353
|
+
*
|
|
1354
|
+
* @export
|
|
1355
|
+
* @interface CharacteristicEntry
|
|
1356
|
+
*/
|
|
1357
|
+
export interface CharacteristicEntry {
|
|
1358
|
+
/**
|
|
1359
|
+
*
|
|
1360
|
+
* @type {string}
|
|
1361
|
+
* @memberof CharacteristicEntry
|
|
1362
|
+
*/
|
|
1363
|
+
'value': string;
|
|
1364
|
+
/**
|
|
1365
|
+
*
|
|
1366
|
+
* @type {string}
|
|
1367
|
+
* @memberof CharacteristicEntry
|
|
1368
|
+
*/
|
|
1369
|
+
'key': string;
|
|
1370
|
+
}
|
|
1352
1371
|
/**
|
|
1353
1372
|
*
|
|
1354
1373
|
* @export
|
|
@@ -1829,21 +1848,21 @@ export interface ClubAccessSettingsResponse {
|
|
|
1829
1848
|
/**
|
|
1830
1849
|
*
|
|
1831
1850
|
* @export
|
|
1832
|
-
* @interface
|
|
1851
|
+
* @interface ClubDayInterval
|
|
1833
1852
|
*/
|
|
1834
|
-
export interface
|
|
1853
|
+
export interface ClubDayInterval {
|
|
1835
1854
|
/**
|
|
1836
1855
|
*
|
|
1837
1856
|
* @type {string}
|
|
1838
|
-
* @memberof
|
|
1857
|
+
* @memberof ClubDayInterval
|
|
1839
1858
|
*/
|
|
1840
|
-
'
|
|
1859
|
+
'start': string;
|
|
1841
1860
|
/**
|
|
1842
1861
|
*
|
|
1843
1862
|
* @type {string}
|
|
1844
|
-
* @memberof
|
|
1863
|
+
* @memberof ClubDayInterval
|
|
1845
1864
|
*/
|
|
1846
|
-
'
|
|
1865
|
+
'end': string;
|
|
1847
1866
|
}
|
|
1848
1867
|
/**
|
|
1849
1868
|
*
|
|
@@ -1951,10 +1970,10 @@ export interface ClubGeneralSettingsResponse {
|
|
|
1951
1970
|
export interface ClubHoursSettingsResponse {
|
|
1952
1971
|
/**
|
|
1953
1972
|
*
|
|
1954
|
-
* @type {
|
|
1973
|
+
* @type {RecordWeekdayKeyClubDaySchedule}
|
|
1955
1974
|
* @memberof ClubHoursSettingsResponse
|
|
1956
1975
|
*/
|
|
1957
|
-
'schedule':
|
|
1976
|
+
'schedule': RecordWeekdayKeyClubDaySchedule;
|
|
1958
1977
|
/**
|
|
1959
1978
|
*
|
|
1960
1979
|
* @type {Array<ClubPricingPeriodResponse>}
|
|
@@ -2451,6 +2470,12 @@ export interface ClubPlayerDetailResponse {
|
|
|
2451
2470
|
* @memberof ClubPlayerDetailResponse
|
|
2452
2471
|
*/
|
|
2453
2472
|
'sportsLevels': Array<ClubPlayerDetailResponseSportsLevelsInner>;
|
|
2473
|
+
/**
|
|
2474
|
+
* Caractéristiques personnalisées
|
|
2475
|
+
* @type {Array<ClubPlayerDetailResponseCharacteristicsInner>}
|
|
2476
|
+
* @memberof ClubPlayerDetailResponse
|
|
2477
|
+
*/
|
|
2478
|
+
'characteristics': Array<ClubPlayerDetailResponseCharacteristicsInner>;
|
|
2454
2479
|
/**
|
|
2455
2480
|
* Date de naissance
|
|
2456
2481
|
* @type {string}
|
|
@@ -2464,6 +2489,25 @@ export interface ClubPlayerDetailResponse {
|
|
|
2464
2489
|
*/
|
|
2465
2490
|
'credits': number | null;
|
|
2466
2491
|
}
|
|
2492
|
+
/**
|
|
2493
|
+
*
|
|
2494
|
+
* @export
|
|
2495
|
+
* @interface ClubPlayerDetailResponseCharacteristicsInner
|
|
2496
|
+
*/
|
|
2497
|
+
export interface ClubPlayerDetailResponseCharacteristicsInner {
|
|
2498
|
+
/**
|
|
2499
|
+
*
|
|
2500
|
+
* @type {string}
|
|
2501
|
+
* @memberof ClubPlayerDetailResponseCharacteristicsInner
|
|
2502
|
+
*/
|
|
2503
|
+
'value': string | null;
|
|
2504
|
+
/**
|
|
2505
|
+
*
|
|
2506
|
+
* @type {string}
|
|
2507
|
+
* @memberof ClubPlayerDetailResponseCharacteristicsInner
|
|
2508
|
+
*/
|
|
2509
|
+
'key': string | null;
|
|
2510
|
+
}
|
|
2467
2511
|
/**
|
|
2468
2512
|
*
|
|
2469
2513
|
* @export
|
|
@@ -3284,55 +3328,6 @@ export interface ClubUserCountResponse {
|
|
|
3284
3328
|
*/
|
|
3285
3329
|
'count': number;
|
|
3286
3330
|
}
|
|
3287
|
-
/**
|
|
3288
|
-
*
|
|
3289
|
-
* @export
|
|
3290
|
-
* @interface ClubWeeklySchedule
|
|
3291
|
-
*/
|
|
3292
|
-
export interface ClubWeeklySchedule {
|
|
3293
|
-
/**
|
|
3294
|
-
*
|
|
3295
|
-
* @type {ClubDaySchedule}
|
|
3296
|
-
* @memberof ClubWeeklySchedule
|
|
3297
|
-
*/
|
|
3298
|
-
'sunday': ClubDaySchedule | null;
|
|
3299
|
-
/**
|
|
3300
|
-
*
|
|
3301
|
-
* @type {ClubDaySchedule}
|
|
3302
|
-
* @memberof ClubWeeklySchedule
|
|
3303
|
-
*/
|
|
3304
|
-
'saturday': ClubDaySchedule | null;
|
|
3305
|
-
/**
|
|
3306
|
-
*
|
|
3307
|
-
* @type {ClubDaySchedule}
|
|
3308
|
-
* @memberof ClubWeeklySchedule
|
|
3309
|
-
*/
|
|
3310
|
-
'friday': ClubDaySchedule | null;
|
|
3311
|
-
/**
|
|
3312
|
-
*
|
|
3313
|
-
* @type {ClubDaySchedule}
|
|
3314
|
-
* @memberof ClubWeeklySchedule
|
|
3315
|
-
*/
|
|
3316
|
-
'thursday': ClubDaySchedule | null;
|
|
3317
|
-
/**
|
|
3318
|
-
*
|
|
3319
|
-
* @type {ClubDaySchedule}
|
|
3320
|
-
* @memberof ClubWeeklySchedule
|
|
3321
|
-
*/
|
|
3322
|
-
'wednesday': ClubDaySchedule | null;
|
|
3323
|
-
/**
|
|
3324
|
-
*
|
|
3325
|
-
* @type {ClubDaySchedule}
|
|
3326
|
-
* @memberof ClubWeeklySchedule
|
|
3327
|
-
*/
|
|
3328
|
-
'tuesday': ClubDaySchedule | null;
|
|
3329
|
-
/**
|
|
3330
|
-
*
|
|
3331
|
-
* @type {ClubDaySchedule}
|
|
3332
|
-
* @memberof ClubWeeklySchedule
|
|
3333
|
-
*/
|
|
3334
|
-
'monday': ClubDaySchedule | null;
|
|
3335
|
-
}
|
|
3336
3331
|
/**
|
|
3337
3332
|
*
|
|
3338
3333
|
* @export
|
|
@@ -4286,6 +4281,25 @@ export declare const DiscountType: {
|
|
|
4286
4281
|
readonly OffPeak: "off_peak";
|
|
4287
4282
|
};
|
|
4288
4283
|
export type DiscountType = typeof DiscountType[keyof typeof DiscountType];
|
|
4284
|
+
/**
|
|
4285
|
+
*
|
|
4286
|
+
* @export
|
|
4287
|
+
* @interface DuplicateClubDayScheduleRequest
|
|
4288
|
+
*/
|
|
4289
|
+
export interface DuplicateClubDayScheduleRequest {
|
|
4290
|
+
/**
|
|
4291
|
+
*
|
|
4292
|
+
* @type {WeekdayKey}
|
|
4293
|
+
* @memberof DuplicateClubDayScheduleRequest
|
|
4294
|
+
*/
|
|
4295
|
+
'fromDay': WeekdayKey;
|
|
4296
|
+
/**
|
|
4297
|
+
*
|
|
4298
|
+
* @type {WeekdayKey}
|
|
4299
|
+
* @memberof DuplicateClubDayScheduleRequest
|
|
4300
|
+
*/
|
|
4301
|
+
'toDay': WeekdayKey;
|
|
4302
|
+
}
|
|
4289
4303
|
/**
|
|
4290
4304
|
*
|
|
4291
4305
|
* @export
|
|
@@ -5448,6 +5462,25 @@ export interface HotelAccessSettings {
|
|
|
5448
5462
|
*/
|
|
5449
5463
|
'validUntil'?: string | null;
|
|
5450
5464
|
}
|
|
5465
|
+
/**
|
|
5466
|
+
*
|
|
5467
|
+
* @export
|
|
5468
|
+
* @interface ICharacteristic
|
|
5469
|
+
*/
|
|
5470
|
+
export interface ICharacteristic {
|
|
5471
|
+
/**
|
|
5472
|
+
*
|
|
5473
|
+
* @type {string}
|
|
5474
|
+
* @memberof ICharacteristic
|
|
5475
|
+
*/
|
|
5476
|
+
'key': string;
|
|
5477
|
+
/**
|
|
5478
|
+
*
|
|
5479
|
+
* @type {string}
|
|
5480
|
+
* @memberof ICharacteristic
|
|
5481
|
+
*/
|
|
5482
|
+
'value': string;
|
|
5483
|
+
}
|
|
5451
5484
|
/**
|
|
5452
5485
|
*
|
|
5453
5486
|
* @export
|
|
@@ -5612,6 +5645,12 @@ export interface IUserAttributes {
|
|
|
5612
5645
|
* @memberof IUserAttributes
|
|
5613
5646
|
*/
|
|
5614
5647
|
'levelBySports'?: Array<ILevelBySports>;
|
|
5648
|
+
/**
|
|
5649
|
+
*
|
|
5650
|
+
* @type {Array<ICharacteristic>}
|
|
5651
|
+
* @memberof IUserAttributes
|
|
5652
|
+
*/
|
|
5653
|
+
'characteristics'?: Array<ICharacteristic>;
|
|
5615
5654
|
/**
|
|
5616
5655
|
*
|
|
5617
5656
|
* @type {string}
|
|
@@ -6640,55 +6679,6 @@ export interface PartialClubActiveResponseLocation {
|
|
|
6640
6679
|
*/
|
|
6641
6680
|
'address'?: string;
|
|
6642
6681
|
}
|
|
6643
|
-
/**
|
|
6644
|
-
* Make all properties in T optional
|
|
6645
|
-
* @export
|
|
6646
|
-
* @interface PartialClubWeeklySchedule
|
|
6647
|
-
*/
|
|
6648
|
-
export interface PartialClubWeeklySchedule {
|
|
6649
|
-
/**
|
|
6650
|
-
*
|
|
6651
|
-
* @type {ClubDaySchedule}
|
|
6652
|
-
* @memberof PartialClubWeeklySchedule
|
|
6653
|
-
*/
|
|
6654
|
-
'monday'?: ClubDaySchedule;
|
|
6655
|
-
/**
|
|
6656
|
-
*
|
|
6657
|
-
* @type {ClubDaySchedule}
|
|
6658
|
-
* @memberof PartialClubWeeklySchedule
|
|
6659
|
-
*/
|
|
6660
|
-
'tuesday'?: ClubDaySchedule;
|
|
6661
|
-
/**
|
|
6662
|
-
*
|
|
6663
|
-
* @type {ClubDaySchedule}
|
|
6664
|
-
* @memberof PartialClubWeeklySchedule
|
|
6665
|
-
*/
|
|
6666
|
-
'wednesday'?: ClubDaySchedule;
|
|
6667
|
-
/**
|
|
6668
|
-
*
|
|
6669
|
-
* @type {ClubDaySchedule}
|
|
6670
|
-
* @memberof PartialClubWeeklySchedule
|
|
6671
|
-
*/
|
|
6672
|
-
'thursday'?: ClubDaySchedule;
|
|
6673
|
-
/**
|
|
6674
|
-
*
|
|
6675
|
-
* @type {ClubDaySchedule}
|
|
6676
|
-
* @memberof PartialClubWeeklySchedule
|
|
6677
|
-
*/
|
|
6678
|
-
'friday'?: ClubDaySchedule;
|
|
6679
|
-
/**
|
|
6680
|
-
*
|
|
6681
|
-
* @type {ClubDaySchedule}
|
|
6682
|
-
* @memberof PartialClubWeeklySchedule
|
|
6683
|
-
*/
|
|
6684
|
-
'saturday'?: ClubDaySchedule;
|
|
6685
|
-
/**
|
|
6686
|
-
*
|
|
6687
|
-
* @type {ClubDaySchedule}
|
|
6688
|
-
* @memberof PartialClubWeeklySchedule
|
|
6689
|
-
*/
|
|
6690
|
-
'sunday'?: ClubDaySchedule;
|
|
6691
|
-
}
|
|
6692
6682
|
/**
|
|
6693
6683
|
* Make all properties in T optional
|
|
6694
6684
|
* @export
|
|
@@ -6770,6 +6760,55 @@ export declare const PartialPublicAccessSettingsPaymentModeEnum: {
|
|
|
6770
6760
|
readonly PerCourt: "per_court";
|
|
6771
6761
|
};
|
|
6772
6762
|
export type PartialPublicAccessSettingsPaymentModeEnum = typeof PartialPublicAccessSettingsPaymentModeEnum[keyof typeof PartialPublicAccessSettingsPaymentModeEnum];
|
|
6763
|
+
/**
|
|
6764
|
+
* Make all properties in T optional
|
|
6765
|
+
* @export
|
|
6766
|
+
* @interface PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
6767
|
+
*/
|
|
6768
|
+
export interface PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined {
|
|
6769
|
+
/**
|
|
6770
|
+
*
|
|
6771
|
+
* @type {Array<ClubDayInterval>}
|
|
6772
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
6773
|
+
*/
|
|
6774
|
+
'monday'?: Array<ClubDayInterval>;
|
|
6775
|
+
/**
|
|
6776
|
+
*
|
|
6777
|
+
* @type {Array<ClubDayInterval>}
|
|
6778
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
6779
|
+
*/
|
|
6780
|
+
'tuesday'?: Array<ClubDayInterval>;
|
|
6781
|
+
/**
|
|
6782
|
+
*
|
|
6783
|
+
* @type {Array<ClubDayInterval>}
|
|
6784
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
6785
|
+
*/
|
|
6786
|
+
'wednesday'?: Array<ClubDayInterval>;
|
|
6787
|
+
/**
|
|
6788
|
+
*
|
|
6789
|
+
* @type {Array<ClubDayInterval>}
|
|
6790
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
6791
|
+
*/
|
|
6792
|
+
'thursday'?: Array<ClubDayInterval>;
|
|
6793
|
+
/**
|
|
6794
|
+
*
|
|
6795
|
+
* @type {Array<ClubDayInterval>}
|
|
6796
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
6797
|
+
*/
|
|
6798
|
+
'friday'?: Array<ClubDayInterval>;
|
|
6799
|
+
/**
|
|
6800
|
+
*
|
|
6801
|
+
* @type {Array<ClubDayInterval>}
|
|
6802
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
6803
|
+
*/
|
|
6804
|
+
'saturday'?: Array<ClubDayInterval>;
|
|
6805
|
+
/**
|
|
6806
|
+
*
|
|
6807
|
+
* @type {Array<ClubDayInterval>}
|
|
6808
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
6809
|
+
*/
|
|
6810
|
+
'sunday'?: Array<ClubDayInterval>;
|
|
6811
|
+
}
|
|
6773
6812
|
/**
|
|
6774
6813
|
* Make all properties in T optional
|
|
6775
6814
|
* @export
|
|
@@ -7285,6 +7324,12 @@ export interface PlayerSummary {
|
|
|
7285
7324
|
* @memberof PlayerSummary
|
|
7286
7325
|
*/
|
|
7287
7326
|
'levelBySports'?: Array<LevelBySportEntry>;
|
|
7327
|
+
/**
|
|
7328
|
+
*
|
|
7329
|
+
* @type {Array<CharacteristicEntry>}
|
|
7330
|
+
* @memberof PlayerSummary
|
|
7331
|
+
*/
|
|
7332
|
+
'characteristics'?: Array<CharacteristicEntry>;
|
|
7288
7333
|
/**
|
|
7289
7334
|
*
|
|
7290
7335
|
* @type {UserLocationSummary}
|
|
@@ -7513,6 +7558,12 @@ export interface PublicUserProfileResponse {
|
|
|
7513
7558
|
* @memberof PublicUserProfileResponse
|
|
7514
7559
|
*/
|
|
7515
7560
|
'levelBySports'?: Array<LevelBySportEntry>;
|
|
7561
|
+
/**
|
|
7562
|
+
*
|
|
7563
|
+
* @type {Array<CharacteristicEntry>}
|
|
7564
|
+
* @memberof PublicUserProfileResponse
|
|
7565
|
+
*/
|
|
7566
|
+
'characteristics'?: Array<CharacteristicEntry>;
|
|
7516
7567
|
/**
|
|
7517
7568
|
*
|
|
7518
7569
|
* @type {string}
|
|
@@ -7772,6 +7823,55 @@ export interface QuickReservationSlotSummary {
|
|
|
7772
7823
|
*/
|
|
7773
7824
|
'sportKey'?: string;
|
|
7774
7825
|
}
|
|
7826
|
+
/**
|
|
7827
|
+
* Construct a type with a set of properties K of type T
|
|
7828
|
+
* @export
|
|
7829
|
+
* @interface RecordWeekdayKeyClubDaySchedule
|
|
7830
|
+
*/
|
|
7831
|
+
export interface RecordWeekdayKeyClubDaySchedule {
|
|
7832
|
+
/**
|
|
7833
|
+
*
|
|
7834
|
+
* @type {Array<ClubDayInterval>}
|
|
7835
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
7836
|
+
*/
|
|
7837
|
+
'monday': Array<ClubDayInterval>;
|
|
7838
|
+
/**
|
|
7839
|
+
*
|
|
7840
|
+
* @type {Array<ClubDayInterval>}
|
|
7841
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
7842
|
+
*/
|
|
7843
|
+
'tuesday': Array<ClubDayInterval>;
|
|
7844
|
+
/**
|
|
7845
|
+
*
|
|
7846
|
+
* @type {Array<ClubDayInterval>}
|
|
7847
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
7848
|
+
*/
|
|
7849
|
+
'wednesday': Array<ClubDayInterval>;
|
|
7850
|
+
/**
|
|
7851
|
+
*
|
|
7852
|
+
* @type {Array<ClubDayInterval>}
|
|
7853
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
7854
|
+
*/
|
|
7855
|
+
'thursday': Array<ClubDayInterval>;
|
|
7856
|
+
/**
|
|
7857
|
+
*
|
|
7858
|
+
* @type {Array<ClubDayInterval>}
|
|
7859
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
7860
|
+
*/
|
|
7861
|
+
'friday': Array<ClubDayInterval>;
|
|
7862
|
+
/**
|
|
7863
|
+
*
|
|
7864
|
+
* @type {Array<ClubDayInterval>}
|
|
7865
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
7866
|
+
*/
|
|
7867
|
+
'saturday': Array<ClubDayInterval>;
|
|
7868
|
+
/**
|
|
7869
|
+
*
|
|
7870
|
+
* @type {Array<ClubDayInterval>}
|
|
7871
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
7872
|
+
*/
|
|
7873
|
+
'sunday': Array<ClubDayInterval>;
|
|
7874
|
+
}
|
|
7775
7875
|
/**
|
|
7776
7876
|
*
|
|
7777
7877
|
* @export
|
|
@@ -8871,6 +8971,12 @@ export interface StaffUserProfileResponse {
|
|
|
8871
8971
|
* @memberof StaffUserProfileResponse
|
|
8872
8972
|
*/
|
|
8873
8973
|
'levelBySports'?: Array<ILevelBySports>;
|
|
8974
|
+
/**
|
|
8975
|
+
*
|
|
8976
|
+
* @type {Array<ICharacteristic>}
|
|
8977
|
+
* @memberof StaffUserProfileResponse
|
|
8978
|
+
*/
|
|
8979
|
+
'characteristics'?: Array<ICharacteristic>;
|
|
8874
8980
|
/**
|
|
8875
8981
|
*
|
|
8876
8982
|
* @type {string}
|
|
@@ -9382,6 +9488,19 @@ export interface UpdateClubAccessSettingsRequest {
|
|
|
9382
9488
|
*/
|
|
9383
9489
|
'paymentRequirements'?: PartialPaymentRequirementsSettings;
|
|
9384
9490
|
}
|
|
9491
|
+
/**
|
|
9492
|
+
*
|
|
9493
|
+
* @export
|
|
9494
|
+
* @interface UpdateClubDayScheduleRequest
|
|
9495
|
+
*/
|
|
9496
|
+
export interface UpdateClubDayScheduleRequest {
|
|
9497
|
+
/**
|
|
9498
|
+
*
|
|
9499
|
+
* @type {Array<ClubDayInterval>}
|
|
9500
|
+
* @memberof UpdateClubDayScheduleRequest
|
|
9501
|
+
*/
|
|
9502
|
+
'intervals': Array<ClubDayInterval>;
|
|
9503
|
+
}
|
|
9385
9504
|
/**
|
|
9386
9505
|
*
|
|
9387
9506
|
* @export
|
|
@@ -9472,10 +9591,10 @@ export interface UpdateClubGeneralSettingsRequestLogo {
|
|
|
9472
9591
|
export interface UpdateClubHoursSettingsRequest {
|
|
9473
9592
|
/**
|
|
9474
9593
|
*
|
|
9475
|
-
* @type {
|
|
9594
|
+
* @type {PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined}
|
|
9476
9595
|
* @memberof UpdateClubHoursSettingsRequest
|
|
9477
9596
|
*/
|
|
9478
|
-
'schedule'?:
|
|
9597
|
+
'schedule'?: PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined;
|
|
9479
9598
|
/**
|
|
9480
9599
|
*
|
|
9481
9600
|
* @type {Array<ClubPricingPeriodResponse>}
|
|
@@ -10238,6 +10357,12 @@ export interface UpdateUserRequestBody {
|
|
|
10238
10357
|
* @memberof UpdateUserRequestBody
|
|
10239
10358
|
*/
|
|
10240
10359
|
'levelBySports'?: Array<UpdateUserRequestBodyLevelBySportsInner>;
|
|
10360
|
+
/**
|
|
10361
|
+
*
|
|
10362
|
+
* @type {Array<UpdateUserRequestBodyCharacteristicsInner>}
|
|
10363
|
+
* @memberof UpdateUserRequestBody
|
|
10364
|
+
*/
|
|
10365
|
+
'characteristics'?: Array<UpdateUserRequestBodyCharacteristicsInner>;
|
|
10241
10366
|
/**
|
|
10242
10367
|
*
|
|
10243
10368
|
* @type {boolean}
|
|
@@ -10257,6 +10382,25 @@ export interface UpdateUserRequestBody {
|
|
|
10257
10382
|
*/
|
|
10258
10383
|
'location'?: RegisterRequestBodyLocation;
|
|
10259
10384
|
}
|
|
10385
|
+
/**
|
|
10386
|
+
*
|
|
10387
|
+
* @export
|
|
10388
|
+
* @interface UpdateUserRequestBodyCharacteristicsInner
|
|
10389
|
+
*/
|
|
10390
|
+
export interface UpdateUserRequestBodyCharacteristicsInner {
|
|
10391
|
+
/**
|
|
10392
|
+
*
|
|
10393
|
+
* @type {string}
|
|
10394
|
+
* @memberof UpdateUserRequestBodyCharacteristicsInner
|
|
10395
|
+
*/
|
|
10396
|
+
'value': string;
|
|
10397
|
+
/**
|
|
10398
|
+
*
|
|
10399
|
+
* @type {string}
|
|
10400
|
+
* @memberof UpdateUserRequestBodyCharacteristicsInner
|
|
10401
|
+
*/
|
|
10402
|
+
'key': string;
|
|
10403
|
+
}
|
|
10260
10404
|
/**
|
|
10261
10405
|
*
|
|
10262
10406
|
* @export
|
|
@@ -10821,6 +10965,12 @@ export interface UserProfileResponse {
|
|
|
10821
10965
|
* @memberof UserProfileResponse
|
|
10822
10966
|
*/
|
|
10823
10967
|
'levelBySports'?: Array<ILevelBySports>;
|
|
10968
|
+
/**
|
|
10969
|
+
*
|
|
10970
|
+
* @type {Array<ICharacteristic>}
|
|
10971
|
+
* @memberof UserProfileResponse
|
|
10972
|
+
*/
|
|
10973
|
+
'characteristics'?: Array<ICharacteristic>;
|
|
10824
10974
|
/**
|
|
10825
10975
|
*
|
|
10826
10976
|
* @type {string}
|
|
@@ -11040,6 +11190,21 @@ export declare const VisibilityType: {
|
|
|
11040
11190
|
readonly Invitation: "invitation";
|
|
11041
11191
|
};
|
|
11042
11192
|
export type VisibilityType = typeof VisibilityType[keyof typeof VisibilityType];
|
|
11193
|
+
/**
|
|
11194
|
+
*
|
|
11195
|
+
* @export
|
|
11196
|
+
* @enum {string}
|
|
11197
|
+
*/
|
|
11198
|
+
export declare const WeekdayKey: {
|
|
11199
|
+
readonly Monday: "monday";
|
|
11200
|
+
readonly Tuesday: "tuesday";
|
|
11201
|
+
readonly Wednesday: "wednesday";
|
|
11202
|
+
readonly Thursday: "thursday";
|
|
11203
|
+
readonly Friday: "friday";
|
|
11204
|
+
readonly Saturday: "saturday";
|
|
11205
|
+
readonly Sunday: "sunday";
|
|
11206
|
+
};
|
|
11207
|
+
export type WeekdayKey = typeof WeekdayKey[keyof typeof WeekdayKey];
|
|
11043
11208
|
/**
|
|
11044
11209
|
*
|
|
11045
11210
|
* @export
|
|
@@ -13087,6 +13252,13 @@ export declare class ClubRolesStaffApi extends BaseAPI {
|
|
|
13087
13252
|
* @export
|
|
13088
13253
|
*/
|
|
13089
13254
|
export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
13255
|
+
/**
|
|
13256
|
+
*
|
|
13257
|
+
* @param {DuplicateClubDayScheduleRequest} duplicateClubDayScheduleRequest
|
|
13258
|
+
* @param {*} [options] Override http request option.
|
|
13259
|
+
* @throws {RequiredError}
|
|
13260
|
+
*/
|
|
13261
|
+
duplicateDaySchedule: (duplicateClubDayScheduleRequest: DuplicateClubDayScheduleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13090
13262
|
/**
|
|
13091
13263
|
*
|
|
13092
13264
|
* @param {UpdateClubAccessSettingsRequest} updateClubAccessSettingsRequest
|
|
@@ -13101,6 +13273,14 @@ export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: C
|
|
|
13101
13273
|
* @throws {RequiredError}
|
|
13102
13274
|
*/
|
|
13103
13275
|
updateClubGeneralSettings: (updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13276
|
+
/**
|
|
13277
|
+
*
|
|
13278
|
+
* @param {WeekdayKey} day
|
|
13279
|
+
* @param {UpdateClubDayScheduleRequest} updateClubDayScheduleRequest
|
|
13280
|
+
* @param {*} [options] Override http request option.
|
|
13281
|
+
* @throws {RequiredError}
|
|
13282
|
+
*/
|
|
13283
|
+
updateDaySchedule: (day: WeekdayKey, updateClubDayScheduleRequest: UpdateClubDayScheduleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13104
13284
|
/**
|
|
13105
13285
|
*
|
|
13106
13286
|
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
@@ -13128,6 +13308,13 @@ export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: C
|
|
|
13128
13308
|
* @export
|
|
13129
13309
|
*/
|
|
13130
13310
|
export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) => {
|
|
13311
|
+
/**
|
|
13312
|
+
*
|
|
13313
|
+
* @param {DuplicateClubDayScheduleRequest} duplicateClubDayScheduleRequest
|
|
13314
|
+
* @param {*} [options] Override http request option.
|
|
13315
|
+
* @throws {RequiredError}
|
|
13316
|
+
*/
|
|
13317
|
+
duplicateDaySchedule(duplicateClubDayScheduleRequest: DuplicateClubDayScheduleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
13131
13318
|
/**
|
|
13132
13319
|
*
|
|
13133
13320
|
* @param {UpdateClubAccessSettingsRequest} updateClubAccessSettingsRequest
|
|
@@ -13142,6 +13329,14 @@ export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) =
|
|
|
13142
13329
|
* @throws {RequiredError}
|
|
13143
13330
|
*/
|
|
13144
13331
|
updateClubGeneralSettings(updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubGeneralSettingsResponse>>;
|
|
13332
|
+
/**
|
|
13333
|
+
*
|
|
13334
|
+
* @param {WeekdayKey} day
|
|
13335
|
+
* @param {UpdateClubDayScheduleRequest} updateClubDayScheduleRequest
|
|
13336
|
+
* @param {*} [options] Override http request option.
|
|
13337
|
+
* @throws {RequiredError}
|
|
13338
|
+
*/
|
|
13339
|
+
updateDaySchedule(day: WeekdayKey, updateClubDayScheduleRequest: UpdateClubDayScheduleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
13145
13340
|
/**
|
|
13146
13341
|
*
|
|
13147
13342
|
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
@@ -13169,6 +13364,13 @@ export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) =
|
|
|
13169
13364
|
* @export
|
|
13170
13365
|
*/
|
|
13171
13366
|
export declare const ClubSettingsManagerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13367
|
+
/**
|
|
13368
|
+
*
|
|
13369
|
+
* @param {ClubSettingsManagerApiDuplicateDayScheduleRequest} requestParameters Request parameters.
|
|
13370
|
+
* @param {*} [options] Override http request option.
|
|
13371
|
+
* @throws {RequiredError}
|
|
13372
|
+
*/
|
|
13373
|
+
duplicateDaySchedule(requestParameters: ClubSettingsManagerApiDuplicateDayScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
13172
13374
|
/**
|
|
13173
13375
|
*
|
|
13174
13376
|
* @param {ClubSettingsManagerApiUpdateAccessSettingsRequest} requestParameters Request parameters.
|
|
@@ -13183,6 +13385,13 @@ export declare const ClubSettingsManagerApiFactory: (configuration?: Configurati
|
|
|
13183
13385
|
* @throws {RequiredError}
|
|
13184
13386
|
*/
|
|
13185
13387
|
updateClubGeneralSettings(requestParameters: ClubSettingsManagerApiUpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubGeneralSettingsResponse>;
|
|
13388
|
+
/**
|
|
13389
|
+
*
|
|
13390
|
+
* @param {ClubSettingsManagerApiUpdateDayScheduleRequest} requestParameters Request parameters.
|
|
13391
|
+
* @param {*} [options] Override http request option.
|
|
13392
|
+
* @throws {RequiredError}
|
|
13393
|
+
*/
|
|
13394
|
+
updateDaySchedule(requestParameters: ClubSettingsManagerApiUpdateDayScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
13186
13395
|
/**
|
|
13187
13396
|
*
|
|
13188
13397
|
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|
|
@@ -13205,6 +13414,19 @@ export declare const ClubSettingsManagerApiFactory: (configuration?: Configurati
|
|
|
13205
13414
|
*/
|
|
13206
13415
|
updateReservationSettings(requestParameters: ClubSettingsManagerApiUpdateReservationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubReservationSettingsResponse>;
|
|
13207
13416
|
};
|
|
13417
|
+
/**
|
|
13418
|
+
* Request parameters for duplicateDaySchedule operation in ClubSettingsManagerApi.
|
|
13419
|
+
* @export
|
|
13420
|
+
* @interface ClubSettingsManagerApiDuplicateDayScheduleRequest
|
|
13421
|
+
*/
|
|
13422
|
+
export interface ClubSettingsManagerApiDuplicateDayScheduleRequest {
|
|
13423
|
+
/**
|
|
13424
|
+
*
|
|
13425
|
+
* @type {DuplicateClubDayScheduleRequest}
|
|
13426
|
+
* @memberof ClubSettingsManagerApiDuplicateDaySchedule
|
|
13427
|
+
*/
|
|
13428
|
+
readonly duplicateClubDayScheduleRequest: DuplicateClubDayScheduleRequest;
|
|
13429
|
+
}
|
|
13208
13430
|
/**
|
|
13209
13431
|
* Request parameters for updateAccessSettings operation in ClubSettingsManagerApi.
|
|
13210
13432
|
* @export
|
|
@@ -13231,6 +13453,25 @@ export interface ClubSettingsManagerApiUpdateClubGeneralSettingsRequest {
|
|
|
13231
13453
|
*/
|
|
13232
13454
|
readonly updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest;
|
|
13233
13455
|
}
|
|
13456
|
+
/**
|
|
13457
|
+
* Request parameters for updateDaySchedule operation in ClubSettingsManagerApi.
|
|
13458
|
+
* @export
|
|
13459
|
+
* @interface ClubSettingsManagerApiUpdateDayScheduleRequest
|
|
13460
|
+
*/
|
|
13461
|
+
export interface ClubSettingsManagerApiUpdateDayScheduleRequest {
|
|
13462
|
+
/**
|
|
13463
|
+
*
|
|
13464
|
+
* @type {WeekdayKey}
|
|
13465
|
+
* @memberof ClubSettingsManagerApiUpdateDaySchedule
|
|
13466
|
+
*/
|
|
13467
|
+
readonly day: WeekdayKey;
|
|
13468
|
+
/**
|
|
13469
|
+
*
|
|
13470
|
+
* @type {UpdateClubDayScheduleRequest}
|
|
13471
|
+
* @memberof ClubSettingsManagerApiUpdateDaySchedule
|
|
13472
|
+
*/
|
|
13473
|
+
readonly updateClubDayScheduleRequest: UpdateClubDayScheduleRequest;
|
|
13474
|
+
}
|
|
13234
13475
|
/**
|
|
13235
13476
|
* Request parameters for updateHoursSettings operation in ClubSettingsManagerApi.
|
|
13236
13477
|
* @export
|
|
@@ -13277,6 +13518,14 @@ export interface ClubSettingsManagerApiUpdateReservationSettingsRequest {
|
|
|
13277
13518
|
* @extends {BaseAPI}
|
|
13278
13519
|
*/
|
|
13279
13520
|
export declare class ClubSettingsManagerApi extends BaseAPI {
|
|
13521
|
+
/**
|
|
13522
|
+
*
|
|
13523
|
+
* @param {ClubSettingsManagerApiDuplicateDayScheduleRequest} requestParameters Request parameters.
|
|
13524
|
+
* @param {*} [options] Override http request option.
|
|
13525
|
+
* @throws {RequiredError}
|
|
13526
|
+
* @memberof ClubSettingsManagerApi
|
|
13527
|
+
*/
|
|
13528
|
+
duplicateDaySchedule(requestParameters: ClubSettingsManagerApiDuplicateDayScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
13280
13529
|
/**
|
|
13281
13530
|
*
|
|
13282
13531
|
* @param {ClubSettingsManagerApiUpdateAccessSettingsRequest} requestParameters Request parameters.
|
|
@@ -13293,6 +13542,14 @@ export declare class ClubSettingsManagerApi extends BaseAPI {
|
|
|
13293
13542
|
* @memberof ClubSettingsManagerApi
|
|
13294
13543
|
*/
|
|
13295
13544
|
updateClubGeneralSettings(requestParameters: ClubSettingsManagerApiUpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubGeneralSettingsResponse, any, {}>>;
|
|
13545
|
+
/**
|
|
13546
|
+
*
|
|
13547
|
+
* @param {ClubSettingsManagerApiUpdateDayScheduleRequest} requestParameters Request parameters.
|
|
13548
|
+
* @param {*} [options] Override http request option.
|
|
13549
|
+
* @throws {RequiredError}
|
|
13550
|
+
* @memberof ClubSettingsManagerApi
|
|
13551
|
+
*/
|
|
13552
|
+
updateDaySchedule(requestParameters: ClubSettingsManagerApiUpdateDayScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
13296
13553
|
/**
|
|
13297
13554
|
*
|
|
13298
13555
|
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|