@tennac-booking/sdk 1.0.140 → 1.0.142
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 +16 -4
- package/README.md +25 -3
- package/api.ts +1249 -150
- package/dist/api.d.ts +810 -111
- package/dist/api.js +616 -4
- package/dist/esm/api.d.ts +810 -111
- package/dist/esm/api.js +612 -0
- package/docs/BookingsPerDayItem.md +22 -0
- package/docs/BookingsPerDayResponse.md +24 -0
- package/docs/ClubAnalyticsStaffApi.md +376 -0
- package/docs/{ClubDaySchedule.md → ClubDayInterval.md} +7 -7
- package/docs/ClubHoursSettingsResponse.md +1 -1
- package/docs/ClubNewBookingsResponse.md +24 -0
- package/docs/ClubNewSubscribersResponse.md +24 -0
- package/docs/ClubSettingsManagerApi.md +107 -0
- package/docs/ClubSubscriberSummaryResponse.md +20 -0
- package/docs/DuplicateClubDayScheduleRequest.md +22 -0
- package/docs/LeastBookedTimeSlotItem.md +26 -0
- package/docs/LeastBookedTimeSlotsResponse.md +24 -0
- package/docs/LeastBookedWeekdayResponse.md +26 -0
- package/docs/NoShowRateResponse.md +28 -0
- package/docs/PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined.md +33 -0
- package/docs/RecordWeekdayKeyClubDaySchedule.md +33 -0
- package/docs/UpdateClubDayScheduleRequest.md +20 -0
- package/docs/UpdateClubHoursSettingsRequest.md +1 -1
- package/docs/WeekdayAverageItem.md +28 -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/api.d.ts
CHANGED
|
@@ -1226,6 +1226,50 @@ export interface BookingSummary {
|
|
|
1226
1226
|
*/
|
|
1227
1227
|
export interface BookingSummaryClubAddress {
|
|
1228
1228
|
}
|
|
1229
|
+
/**
|
|
1230
|
+
*
|
|
1231
|
+
* @export
|
|
1232
|
+
* @interface BookingsPerDayItem
|
|
1233
|
+
*/
|
|
1234
|
+
export interface BookingsPerDayItem {
|
|
1235
|
+
/**
|
|
1236
|
+
* Jour au format YYYY-MM-DD
|
|
1237
|
+
* @type {string}
|
|
1238
|
+
* @memberof BookingsPerDayItem
|
|
1239
|
+
*/
|
|
1240
|
+
'date': string;
|
|
1241
|
+
/**
|
|
1242
|
+
* Nombre de réservations dont la séance se déroule ce jour-là
|
|
1243
|
+
* @type {number}
|
|
1244
|
+
* @memberof BookingsPerDayItem
|
|
1245
|
+
*/
|
|
1246
|
+
'bookingsCount': number;
|
|
1247
|
+
}
|
|
1248
|
+
/**
|
|
1249
|
+
*
|
|
1250
|
+
* @export
|
|
1251
|
+
* @interface BookingsPerDayResponse
|
|
1252
|
+
*/
|
|
1253
|
+
export interface BookingsPerDayResponse {
|
|
1254
|
+
/**
|
|
1255
|
+
* Date de début incluse (format ISO)
|
|
1256
|
+
* @type {string}
|
|
1257
|
+
* @memberof BookingsPerDayResponse
|
|
1258
|
+
*/
|
|
1259
|
+
'startDate': string;
|
|
1260
|
+
/**
|
|
1261
|
+
* Date de fin incluse (format ISO)
|
|
1262
|
+
* @type {string}
|
|
1263
|
+
* @memberof BookingsPerDayResponse
|
|
1264
|
+
*/
|
|
1265
|
+
'endDate': string;
|
|
1266
|
+
/**
|
|
1267
|
+
* Comptes quotidiens
|
|
1268
|
+
* @type {Array<BookingsPerDayItem>}
|
|
1269
|
+
* @memberof BookingsPerDayResponse
|
|
1270
|
+
*/
|
|
1271
|
+
'dailyCounts': Array<BookingsPerDayItem>;
|
|
1272
|
+
}
|
|
1229
1273
|
/**
|
|
1230
1274
|
*
|
|
1231
1275
|
* @export
|
|
@@ -1848,21 +1892,21 @@ export interface ClubAccessSettingsResponse {
|
|
|
1848
1892
|
/**
|
|
1849
1893
|
*
|
|
1850
1894
|
* @export
|
|
1851
|
-
* @interface
|
|
1895
|
+
* @interface ClubDayInterval
|
|
1852
1896
|
*/
|
|
1853
|
-
export interface
|
|
1897
|
+
export interface ClubDayInterval {
|
|
1854
1898
|
/**
|
|
1855
1899
|
*
|
|
1856
1900
|
* @type {string}
|
|
1857
|
-
* @memberof
|
|
1901
|
+
* @memberof ClubDayInterval
|
|
1858
1902
|
*/
|
|
1859
|
-
'
|
|
1903
|
+
'start': string;
|
|
1860
1904
|
/**
|
|
1861
1905
|
*
|
|
1862
1906
|
* @type {string}
|
|
1863
|
-
* @memberof
|
|
1907
|
+
* @memberof ClubDayInterval
|
|
1864
1908
|
*/
|
|
1865
|
-
'
|
|
1909
|
+
'end': string;
|
|
1866
1910
|
}
|
|
1867
1911
|
/**
|
|
1868
1912
|
*
|
|
@@ -1970,10 +2014,10 @@ export interface ClubGeneralSettingsResponse {
|
|
|
1970
2014
|
export interface ClubHoursSettingsResponse {
|
|
1971
2015
|
/**
|
|
1972
2016
|
*
|
|
1973
|
-
* @type {
|
|
2017
|
+
* @type {RecordWeekdayKeyClubDaySchedule}
|
|
1974
2018
|
* @memberof ClubHoursSettingsResponse
|
|
1975
2019
|
*/
|
|
1976
|
-
'schedule':
|
|
2020
|
+
'schedule': RecordWeekdayKeyClubDaySchedule;
|
|
1977
2021
|
/**
|
|
1978
2022
|
*
|
|
1979
2023
|
* @type {Array<ClubPricingPeriodResponse>}
|
|
@@ -2142,6 +2186,56 @@ export interface ClubMetadataResponseLocation {
|
|
|
2142
2186
|
*/
|
|
2143
2187
|
'address'?: string;
|
|
2144
2188
|
}
|
|
2189
|
+
/**
|
|
2190
|
+
*
|
|
2191
|
+
* @export
|
|
2192
|
+
* @interface ClubNewBookingsResponse
|
|
2193
|
+
*/
|
|
2194
|
+
export interface ClubNewBookingsResponse {
|
|
2195
|
+
/**
|
|
2196
|
+
* Date de début incluse (format ISO)
|
|
2197
|
+
* @type {string}
|
|
2198
|
+
* @memberof ClubNewBookingsResponse
|
|
2199
|
+
*/
|
|
2200
|
+
'startDate': string;
|
|
2201
|
+
/**
|
|
2202
|
+
* Date de fin incluse (format ISO)
|
|
2203
|
+
* @type {string}
|
|
2204
|
+
* @memberof ClubNewBookingsResponse
|
|
2205
|
+
*/
|
|
2206
|
+
'endDate': string;
|
|
2207
|
+
/**
|
|
2208
|
+
* Nombre de nouvelles réservations créées durant la période
|
|
2209
|
+
* @type {number}
|
|
2210
|
+
* @memberof ClubNewBookingsResponse
|
|
2211
|
+
*/
|
|
2212
|
+
'newBookings': number;
|
|
2213
|
+
}
|
|
2214
|
+
/**
|
|
2215
|
+
*
|
|
2216
|
+
* @export
|
|
2217
|
+
* @interface ClubNewSubscribersResponse
|
|
2218
|
+
*/
|
|
2219
|
+
export interface ClubNewSubscribersResponse {
|
|
2220
|
+
/**
|
|
2221
|
+
* Date de début incluse (format ISO)
|
|
2222
|
+
* @type {string}
|
|
2223
|
+
* @memberof ClubNewSubscribersResponse
|
|
2224
|
+
*/
|
|
2225
|
+
'startDate': string;
|
|
2226
|
+
/**
|
|
2227
|
+
* Date de fin incluse (format ISO)
|
|
2228
|
+
* @type {string}
|
|
2229
|
+
* @memberof ClubNewSubscribersResponse
|
|
2230
|
+
*/
|
|
2231
|
+
'endDate': string;
|
|
2232
|
+
/**
|
|
2233
|
+
* Nombre de nouveaux abonnés sur la période
|
|
2234
|
+
* @type {number}
|
|
2235
|
+
* @memberof ClubNewSubscribersResponse
|
|
2236
|
+
*/
|
|
2237
|
+
'newSubscribers': number;
|
|
2238
|
+
}
|
|
2145
2239
|
/**
|
|
2146
2240
|
*
|
|
2147
2241
|
* @export
|
|
@@ -3229,6 +3323,19 @@ export declare const ClubRoleResponseRoleEnum: {
|
|
|
3229
3323
|
readonly Staff: "staff";
|
|
3230
3324
|
};
|
|
3231
3325
|
export type ClubRoleResponseRoleEnum = typeof ClubRoleResponseRoleEnum[keyof typeof ClubRoleResponseRoleEnum];
|
|
3326
|
+
/**
|
|
3327
|
+
*
|
|
3328
|
+
* @export
|
|
3329
|
+
* @interface ClubSubscriberSummaryResponse
|
|
3330
|
+
*/
|
|
3331
|
+
export interface ClubSubscriberSummaryResponse {
|
|
3332
|
+
/**
|
|
3333
|
+
* Nombre total d\'abonnés actifs au club
|
|
3334
|
+
* @type {number}
|
|
3335
|
+
* @memberof ClubSubscriberSummaryResponse
|
|
3336
|
+
*/
|
|
3337
|
+
'totalSubscribers': number;
|
|
3338
|
+
}
|
|
3232
3339
|
/**
|
|
3233
3340
|
*
|
|
3234
3341
|
* @export
|
|
@@ -3328,55 +3435,6 @@ export interface ClubUserCountResponse {
|
|
|
3328
3435
|
*/
|
|
3329
3436
|
'count': number;
|
|
3330
3437
|
}
|
|
3331
|
-
/**
|
|
3332
|
-
*
|
|
3333
|
-
* @export
|
|
3334
|
-
* @interface ClubWeeklySchedule
|
|
3335
|
-
*/
|
|
3336
|
-
export interface ClubWeeklySchedule {
|
|
3337
|
-
/**
|
|
3338
|
-
*
|
|
3339
|
-
* @type {ClubDaySchedule}
|
|
3340
|
-
* @memberof ClubWeeklySchedule
|
|
3341
|
-
*/
|
|
3342
|
-
'sunday': ClubDaySchedule | null;
|
|
3343
|
-
/**
|
|
3344
|
-
*
|
|
3345
|
-
* @type {ClubDaySchedule}
|
|
3346
|
-
* @memberof ClubWeeklySchedule
|
|
3347
|
-
*/
|
|
3348
|
-
'saturday': ClubDaySchedule | null;
|
|
3349
|
-
/**
|
|
3350
|
-
*
|
|
3351
|
-
* @type {ClubDaySchedule}
|
|
3352
|
-
* @memberof ClubWeeklySchedule
|
|
3353
|
-
*/
|
|
3354
|
-
'friday': ClubDaySchedule | null;
|
|
3355
|
-
/**
|
|
3356
|
-
*
|
|
3357
|
-
* @type {ClubDaySchedule}
|
|
3358
|
-
* @memberof ClubWeeklySchedule
|
|
3359
|
-
*/
|
|
3360
|
-
'thursday': ClubDaySchedule | null;
|
|
3361
|
-
/**
|
|
3362
|
-
*
|
|
3363
|
-
* @type {ClubDaySchedule}
|
|
3364
|
-
* @memberof ClubWeeklySchedule
|
|
3365
|
-
*/
|
|
3366
|
-
'wednesday': ClubDaySchedule | null;
|
|
3367
|
-
/**
|
|
3368
|
-
*
|
|
3369
|
-
* @type {ClubDaySchedule}
|
|
3370
|
-
* @memberof ClubWeeklySchedule
|
|
3371
|
-
*/
|
|
3372
|
-
'tuesday': ClubDaySchedule | null;
|
|
3373
|
-
/**
|
|
3374
|
-
*
|
|
3375
|
-
* @type {ClubDaySchedule}
|
|
3376
|
-
* @memberof ClubWeeklySchedule
|
|
3377
|
-
*/
|
|
3378
|
-
'monday': ClubDaySchedule | null;
|
|
3379
|
-
}
|
|
3380
3438
|
/**
|
|
3381
3439
|
*
|
|
3382
3440
|
* @export
|
|
@@ -4330,6 +4388,25 @@ export declare const DiscountType: {
|
|
|
4330
4388
|
readonly OffPeak: "off_peak";
|
|
4331
4389
|
};
|
|
4332
4390
|
export type DiscountType = typeof DiscountType[keyof typeof DiscountType];
|
|
4391
|
+
/**
|
|
4392
|
+
*
|
|
4393
|
+
* @export
|
|
4394
|
+
* @interface DuplicateClubDayScheduleRequest
|
|
4395
|
+
*/
|
|
4396
|
+
export interface DuplicateClubDayScheduleRequest {
|
|
4397
|
+
/**
|
|
4398
|
+
*
|
|
4399
|
+
* @type {WeekdayKey}
|
|
4400
|
+
* @memberof DuplicateClubDayScheduleRequest
|
|
4401
|
+
*/
|
|
4402
|
+
'fromDay': WeekdayKey;
|
|
4403
|
+
/**
|
|
4404
|
+
*
|
|
4405
|
+
* @type {WeekdayKey}
|
|
4406
|
+
* @memberof DuplicateClubDayScheduleRequest
|
|
4407
|
+
*/
|
|
4408
|
+
'toDay': WeekdayKey;
|
|
4409
|
+
}
|
|
4333
4410
|
/**
|
|
4334
4411
|
*
|
|
4335
4412
|
* @export
|
|
@@ -6306,6 +6383,93 @@ export interface LastSixMonthsTurnoverItem {
|
|
|
6306
6383
|
*/
|
|
6307
6384
|
'value': number;
|
|
6308
6385
|
}
|
|
6386
|
+
/**
|
|
6387
|
+
*
|
|
6388
|
+
* @export
|
|
6389
|
+
* @interface LeastBookedTimeSlotItem
|
|
6390
|
+
*/
|
|
6391
|
+
export interface LeastBookedTimeSlotItem {
|
|
6392
|
+
/**
|
|
6393
|
+
* Jour de la semaine (0 = dimanche)
|
|
6394
|
+
* @type {number}
|
|
6395
|
+
* @memberof LeastBookedTimeSlotItem
|
|
6396
|
+
*/
|
|
6397
|
+
'weekday': number;
|
|
6398
|
+
/**
|
|
6399
|
+
* Nom du jour
|
|
6400
|
+
* @type {string}
|
|
6401
|
+
* @memberof LeastBookedTimeSlotItem
|
|
6402
|
+
*/
|
|
6403
|
+
'weekdayName': string;
|
|
6404
|
+
/**
|
|
6405
|
+
* Heure de début (format HH:00)
|
|
6406
|
+
* @type {string}
|
|
6407
|
+
* @memberof LeastBookedTimeSlotItem
|
|
6408
|
+
*/
|
|
6409
|
+
'hour': string;
|
|
6410
|
+
/**
|
|
6411
|
+
* Nombre total de réservations observées pour ce créneau
|
|
6412
|
+
* @type {number}
|
|
6413
|
+
* @memberof LeastBookedTimeSlotItem
|
|
6414
|
+
*/
|
|
6415
|
+
'totalBookings': number;
|
|
6416
|
+
}
|
|
6417
|
+
/**
|
|
6418
|
+
*
|
|
6419
|
+
* @export
|
|
6420
|
+
* @interface LeastBookedTimeSlotsResponse
|
|
6421
|
+
*/
|
|
6422
|
+
export interface LeastBookedTimeSlotsResponse {
|
|
6423
|
+
/**
|
|
6424
|
+
* Début de la fenêtre analysée
|
|
6425
|
+
* @type {string}
|
|
6426
|
+
* @memberof LeastBookedTimeSlotsResponse
|
|
6427
|
+
*/
|
|
6428
|
+
'periodStart': string;
|
|
6429
|
+
/**
|
|
6430
|
+
* Fin de la fenêtre analysée
|
|
6431
|
+
* @type {string}
|
|
6432
|
+
* @memberof LeastBookedTimeSlotsResponse
|
|
6433
|
+
*/
|
|
6434
|
+
'periodEnd': string;
|
|
6435
|
+
/**
|
|
6436
|
+
* Créneaux les moins réservés
|
|
6437
|
+
* @type {Array<LeastBookedTimeSlotItem>}
|
|
6438
|
+
* @memberof LeastBookedTimeSlotsResponse
|
|
6439
|
+
*/
|
|
6440
|
+
'timeSlots': Array<LeastBookedTimeSlotItem>;
|
|
6441
|
+
}
|
|
6442
|
+
/**
|
|
6443
|
+
*
|
|
6444
|
+
* @export
|
|
6445
|
+
* @interface LeastBookedWeekdayResponse
|
|
6446
|
+
*/
|
|
6447
|
+
export interface LeastBookedWeekdayResponse {
|
|
6448
|
+
/**
|
|
6449
|
+
* Date de début de la période analysée
|
|
6450
|
+
* @type {string}
|
|
6451
|
+
* @memberof LeastBookedWeekdayResponse
|
|
6452
|
+
*/
|
|
6453
|
+
'periodStart': string;
|
|
6454
|
+
/**
|
|
6455
|
+
* Date de fin de la période analysée
|
|
6456
|
+
* @type {string}
|
|
6457
|
+
* @memberof LeastBookedWeekdayResponse
|
|
6458
|
+
*/
|
|
6459
|
+
'periodEnd': string;
|
|
6460
|
+
/**
|
|
6461
|
+
* Jour le moins réservé (null si aucune donnée)
|
|
6462
|
+
* @type {WeekdayAverageItem}
|
|
6463
|
+
* @memberof LeastBookedWeekdayResponse
|
|
6464
|
+
*/
|
|
6465
|
+
'leastBooked': WeekdayAverageItem | null;
|
|
6466
|
+
/**
|
|
6467
|
+
* Détail des moyennes par jour de la semaine
|
|
6468
|
+
* @type {Array<WeekdayAverageItem>}
|
|
6469
|
+
* @memberof LeastBookedWeekdayResponse
|
|
6470
|
+
*/
|
|
6471
|
+
'weekdayAverages': Array<WeekdayAverageItem>;
|
|
6472
|
+
}
|
|
6309
6473
|
/**
|
|
6310
6474
|
*
|
|
6311
6475
|
* @export
|
|
@@ -6568,6 +6732,43 @@ export interface NoShowFeeResponse {
|
|
|
6568
6732
|
*/
|
|
6569
6733
|
'creatorChargeResult'?: CreatorChargeResult;
|
|
6570
6734
|
}
|
|
6735
|
+
/**
|
|
6736
|
+
*
|
|
6737
|
+
* @export
|
|
6738
|
+
* @interface NoShowRateResponse
|
|
6739
|
+
*/
|
|
6740
|
+
export interface NoShowRateResponse {
|
|
6741
|
+
/**
|
|
6742
|
+
* Date de début si la période est fournie
|
|
6743
|
+
* @type {string}
|
|
6744
|
+
* @memberof NoShowRateResponse
|
|
6745
|
+
*/
|
|
6746
|
+
'startDate'?: string;
|
|
6747
|
+
/**
|
|
6748
|
+
* Date de fin si la période est fournie
|
|
6749
|
+
* @type {string}
|
|
6750
|
+
* @memberof NoShowRateResponse
|
|
6751
|
+
*/
|
|
6752
|
+
'endDate'?: string;
|
|
6753
|
+
/**
|
|
6754
|
+
* Nombre de réservations marquées no-show
|
|
6755
|
+
* @type {number}
|
|
6756
|
+
* @memberof NoShowRateResponse
|
|
6757
|
+
*/
|
|
6758
|
+
'noShowCount': number;
|
|
6759
|
+
/**
|
|
6760
|
+
* Nombre total de réservations considérées
|
|
6761
|
+
* @type {number}
|
|
6762
|
+
* @memberof NoShowRateResponse
|
|
6763
|
+
*/
|
|
6764
|
+
'totalBookings': number;
|
|
6765
|
+
/**
|
|
6766
|
+
* Ratio no-show / total (0-1)
|
|
6767
|
+
* @type {number}
|
|
6768
|
+
* @memberof NoShowRateResponse
|
|
6769
|
+
*/
|
|
6770
|
+
'rate': number;
|
|
6771
|
+
}
|
|
6571
6772
|
/**
|
|
6572
6773
|
*
|
|
6573
6774
|
* @export
|
|
@@ -6709,55 +6910,6 @@ export interface PartialClubActiveResponseLocation {
|
|
|
6709
6910
|
*/
|
|
6710
6911
|
'address'?: string;
|
|
6711
6912
|
}
|
|
6712
|
-
/**
|
|
6713
|
-
* Make all properties in T optional
|
|
6714
|
-
* @export
|
|
6715
|
-
* @interface PartialClubWeeklySchedule
|
|
6716
|
-
*/
|
|
6717
|
-
export interface PartialClubWeeklySchedule {
|
|
6718
|
-
/**
|
|
6719
|
-
*
|
|
6720
|
-
* @type {ClubDaySchedule}
|
|
6721
|
-
* @memberof PartialClubWeeklySchedule
|
|
6722
|
-
*/
|
|
6723
|
-
'monday'?: ClubDaySchedule;
|
|
6724
|
-
/**
|
|
6725
|
-
*
|
|
6726
|
-
* @type {ClubDaySchedule}
|
|
6727
|
-
* @memberof PartialClubWeeklySchedule
|
|
6728
|
-
*/
|
|
6729
|
-
'tuesday'?: ClubDaySchedule;
|
|
6730
|
-
/**
|
|
6731
|
-
*
|
|
6732
|
-
* @type {ClubDaySchedule}
|
|
6733
|
-
* @memberof PartialClubWeeklySchedule
|
|
6734
|
-
*/
|
|
6735
|
-
'wednesday'?: ClubDaySchedule;
|
|
6736
|
-
/**
|
|
6737
|
-
*
|
|
6738
|
-
* @type {ClubDaySchedule}
|
|
6739
|
-
* @memberof PartialClubWeeklySchedule
|
|
6740
|
-
*/
|
|
6741
|
-
'thursday'?: ClubDaySchedule;
|
|
6742
|
-
/**
|
|
6743
|
-
*
|
|
6744
|
-
* @type {ClubDaySchedule}
|
|
6745
|
-
* @memberof PartialClubWeeklySchedule
|
|
6746
|
-
*/
|
|
6747
|
-
'friday'?: ClubDaySchedule;
|
|
6748
|
-
/**
|
|
6749
|
-
*
|
|
6750
|
-
* @type {ClubDaySchedule}
|
|
6751
|
-
* @memberof PartialClubWeeklySchedule
|
|
6752
|
-
*/
|
|
6753
|
-
'saturday'?: ClubDaySchedule;
|
|
6754
|
-
/**
|
|
6755
|
-
*
|
|
6756
|
-
* @type {ClubDaySchedule}
|
|
6757
|
-
* @memberof PartialClubWeeklySchedule
|
|
6758
|
-
*/
|
|
6759
|
-
'sunday'?: ClubDaySchedule;
|
|
6760
|
-
}
|
|
6761
6913
|
/**
|
|
6762
6914
|
* Make all properties in T optional
|
|
6763
6915
|
* @export
|
|
@@ -6839,6 +6991,55 @@ export declare const PartialPublicAccessSettingsPaymentModeEnum: {
|
|
|
6839
6991
|
readonly PerCourt: "per_court";
|
|
6840
6992
|
};
|
|
6841
6993
|
export type PartialPublicAccessSettingsPaymentModeEnum = typeof PartialPublicAccessSettingsPaymentModeEnum[keyof typeof PartialPublicAccessSettingsPaymentModeEnum];
|
|
6994
|
+
/**
|
|
6995
|
+
* Make all properties in T optional
|
|
6996
|
+
* @export
|
|
6997
|
+
* @interface PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
6998
|
+
*/
|
|
6999
|
+
export interface PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined {
|
|
7000
|
+
/**
|
|
7001
|
+
*
|
|
7002
|
+
* @type {Array<ClubDayInterval>}
|
|
7003
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
7004
|
+
*/
|
|
7005
|
+
'monday'?: Array<ClubDayInterval>;
|
|
7006
|
+
/**
|
|
7007
|
+
*
|
|
7008
|
+
* @type {Array<ClubDayInterval>}
|
|
7009
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
7010
|
+
*/
|
|
7011
|
+
'tuesday'?: Array<ClubDayInterval>;
|
|
7012
|
+
/**
|
|
7013
|
+
*
|
|
7014
|
+
* @type {Array<ClubDayInterval>}
|
|
7015
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
7016
|
+
*/
|
|
7017
|
+
'wednesday'?: Array<ClubDayInterval>;
|
|
7018
|
+
/**
|
|
7019
|
+
*
|
|
7020
|
+
* @type {Array<ClubDayInterval>}
|
|
7021
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
7022
|
+
*/
|
|
7023
|
+
'thursday'?: Array<ClubDayInterval>;
|
|
7024
|
+
/**
|
|
7025
|
+
*
|
|
7026
|
+
* @type {Array<ClubDayInterval>}
|
|
7027
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
7028
|
+
*/
|
|
7029
|
+
'friday'?: Array<ClubDayInterval>;
|
|
7030
|
+
/**
|
|
7031
|
+
*
|
|
7032
|
+
* @type {Array<ClubDayInterval>}
|
|
7033
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
7034
|
+
*/
|
|
7035
|
+
'saturday'?: Array<ClubDayInterval>;
|
|
7036
|
+
/**
|
|
7037
|
+
*
|
|
7038
|
+
* @type {Array<ClubDayInterval>}
|
|
7039
|
+
* @memberof PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined
|
|
7040
|
+
*/
|
|
7041
|
+
'sunday'?: Array<ClubDayInterval>;
|
|
7042
|
+
}
|
|
6842
7043
|
/**
|
|
6843
7044
|
* Make all properties in T optional
|
|
6844
7045
|
* @export
|
|
@@ -7853,6 +8054,55 @@ export interface QuickReservationSlotSummary {
|
|
|
7853
8054
|
*/
|
|
7854
8055
|
'sportKey'?: string;
|
|
7855
8056
|
}
|
|
8057
|
+
/**
|
|
8058
|
+
* Construct a type with a set of properties K of type T
|
|
8059
|
+
* @export
|
|
8060
|
+
* @interface RecordWeekdayKeyClubDaySchedule
|
|
8061
|
+
*/
|
|
8062
|
+
export interface RecordWeekdayKeyClubDaySchedule {
|
|
8063
|
+
/**
|
|
8064
|
+
*
|
|
8065
|
+
* @type {Array<ClubDayInterval>}
|
|
8066
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
8067
|
+
*/
|
|
8068
|
+
'monday': Array<ClubDayInterval>;
|
|
8069
|
+
/**
|
|
8070
|
+
*
|
|
8071
|
+
* @type {Array<ClubDayInterval>}
|
|
8072
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
8073
|
+
*/
|
|
8074
|
+
'tuesday': Array<ClubDayInterval>;
|
|
8075
|
+
/**
|
|
8076
|
+
*
|
|
8077
|
+
* @type {Array<ClubDayInterval>}
|
|
8078
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
8079
|
+
*/
|
|
8080
|
+
'wednesday': Array<ClubDayInterval>;
|
|
8081
|
+
/**
|
|
8082
|
+
*
|
|
8083
|
+
* @type {Array<ClubDayInterval>}
|
|
8084
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
8085
|
+
*/
|
|
8086
|
+
'thursday': Array<ClubDayInterval>;
|
|
8087
|
+
/**
|
|
8088
|
+
*
|
|
8089
|
+
* @type {Array<ClubDayInterval>}
|
|
8090
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
8091
|
+
*/
|
|
8092
|
+
'friday': Array<ClubDayInterval>;
|
|
8093
|
+
/**
|
|
8094
|
+
*
|
|
8095
|
+
* @type {Array<ClubDayInterval>}
|
|
8096
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
8097
|
+
*/
|
|
8098
|
+
'saturday': Array<ClubDayInterval>;
|
|
8099
|
+
/**
|
|
8100
|
+
*
|
|
8101
|
+
* @type {Array<ClubDayInterval>}
|
|
8102
|
+
* @memberof RecordWeekdayKeyClubDaySchedule
|
|
8103
|
+
*/
|
|
8104
|
+
'sunday': Array<ClubDayInterval>;
|
|
8105
|
+
}
|
|
7856
8106
|
/**
|
|
7857
8107
|
*
|
|
7858
8108
|
* @export
|
|
@@ -9472,12 +9722,25 @@ export interface UpdateClubAccessSettingsRequest {
|
|
|
9472
9722
|
/**
|
|
9473
9723
|
*
|
|
9474
9724
|
* @export
|
|
9475
|
-
* @interface
|
|
9725
|
+
* @interface UpdateClubDayScheduleRequest
|
|
9476
9726
|
*/
|
|
9477
|
-
export interface
|
|
9727
|
+
export interface UpdateClubDayScheduleRequest {
|
|
9478
9728
|
/**
|
|
9479
9729
|
*
|
|
9480
|
-
* @type {
|
|
9730
|
+
* @type {Array<ClubDayInterval>}
|
|
9731
|
+
* @memberof UpdateClubDayScheduleRequest
|
|
9732
|
+
*/
|
|
9733
|
+
'intervals': Array<ClubDayInterval>;
|
|
9734
|
+
}
|
|
9735
|
+
/**
|
|
9736
|
+
*
|
|
9737
|
+
* @export
|
|
9738
|
+
* @interface UpdateClubGeneralSettingsRequest
|
|
9739
|
+
*/
|
|
9740
|
+
export interface UpdateClubGeneralSettingsRequest {
|
|
9741
|
+
/**
|
|
9742
|
+
*
|
|
9743
|
+
* @type {string}
|
|
9481
9744
|
* @memberof UpdateClubGeneralSettingsRequest
|
|
9482
9745
|
*/
|
|
9483
9746
|
'name'?: string;
|
|
@@ -9559,10 +9822,10 @@ export interface UpdateClubGeneralSettingsRequestLogo {
|
|
|
9559
9822
|
export interface UpdateClubHoursSettingsRequest {
|
|
9560
9823
|
/**
|
|
9561
9824
|
*
|
|
9562
|
-
* @type {
|
|
9825
|
+
* @type {PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined}
|
|
9563
9826
|
* @memberof UpdateClubHoursSettingsRequest
|
|
9564
9827
|
*/
|
|
9565
|
-
'schedule'?:
|
|
9828
|
+
'schedule'?: PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined;
|
|
9566
9829
|
/**
|
|
9567
9830
|
*
|
|
9568
9831
|
* @type {Array<ClubPricingPeriodResponse>}
|
|
@@ -11158,6 +11421,58 @@ export declare const VisibilityType: {
|
|
|
11158
11421
|
readonly Invitation: "invitation";
|
|
11159
11422
|
};
|
|
11160
11423
|
export type VisibilityType = typeof VisibilityType[keyof typeof VisibilityType];
|
|
11424
|
+
/**
|
|
11425
|
+
*
|
|
11426
|
+
* @export
|
|
11427
|
+
* @interface WeekdayAverageItem
|
|
11428
|
+
*/
|
|
11429
|
+
export interface WeekdayAverageItem {
|
|
11430
|
+
/**
|
|
11431
|
+
* Jour de la semaine (0 = dimanche)
|
|
11432
|
+
* @type {number}
|
|
11433
|
+
* @memberof WeekdayAverageItem
|
|
11434
|
+
*/
|
|
11435
|
+
'weekday': number;
|
|
11436
|
+
/**
|
|
11437
|
+
* Nom lisible du jour
|
|
11438
|
+
* @type {string}
|
|
11439
|
+
* @memberof WeekdayAverageItem
|
|
11440
|
+
*/
|
|
11441
|
+
'weekdayName': string;
|
|
11442
|
+
/**
|
|
11443
|
+
* Nombre total de réservations enregistrées pour ce jour
|
|
11444
|
+
* @type {number}
|
|
11445
|
+
* @memberof WeekdayAverageItem
|
|
11446
|
+
*/
|
|
11447
|
+
'totalBookings': number;
|
|
11448
|
+
/**
|
|
11449
|
+
* Nombre de jours observés pour ce jour de la semaine
|
|
11450
|
+
* @type {number}
|
|
11451
|
+
* @memberof WeekdayAverageItem
|
|
11452
|
+
*/
|
|
11453
|
+
'daysCount': number;
|
|
11454
|
+
/**
|
|
11455
|
+
* Moyenne de réservations par jour de la semaine
|
|
11456
|
+
* @type {number}
|
|
11457
|
+
* @memberof WeekdayAverageItem
|
|
11458
|
+
*/
|
|
11459
|
+
'averageBookings': number;
|
|
11460
|
+
}
|
|
11461
|
+
/**
|
|
11462
|
+
*
|
|
11463
|
+
* @export
|
|
11464
|
+
* @enum {string}
|
|
11465
|
+
*/
|
|
11466
|
+
export declare const WeekdayKey: {
|
|
11467
|
+
readonly Monday: "monday";
|
|
11468
|
+
readonly Tuesday: "tuesday";
|
|
11469
|
+
readonly Wednesday: "wednesday";
|
|
11470
|
+
readonly Thursday: "thursday";
|
|
11471
|
+
readonly Friday: "friday";
|
|
11472
|
+
readonly Saturday: "saturday";
|
|
11473
|
+
readonly Sunday: "sunday";
|
|
11474
|
+
};
|
|
11475
|
+
export type WeekdayKey = typeof WeekdayKey[keyof typeof WeekdayKey];
|
|
11161
11476
|
/**
|
|
11162
11477
|
*
|
|
11163
11478
|
* @export
|
|
@@ -12299,6 +12614,14 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
12299
12614
|
* @throws {RequiredError}
|
|
12300
12615
|
*/
|
|
12301
12616
|
getAnalyticsBySport: (sportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12617
|
+
/**
|
|
12618
|
+
* Nombre de réservations par jour en fonction des slots
|
|
12619
|
+
* @param {string} [startDate]
|
|
12620
|
+
* @param {string} [endDate]
|
|
12621
|
+
* @param {*} [options] Override http request option.
|
|
12622
|
+
* @throws {RequiredError}
|
|
12623
|
+
*/
|
|
12624
|
+
getBookingsPerDay: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12302
12625
|
/**
|
|
12303
12626
|
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
12304
12627
|
* @param {string} playerId
|
|
@@ -12332,6 +12655,12 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
12332
12655
|
* @throws {RequiredError}
|
|
12333
12656
|
*/
|
|
12334
12657
|
getClubPlayers: (page?: number, pageSize?: number, search?: string, filters?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12658
|
+
/**
|
|
12659
|
+
* Nombre total d\'abonnés actifs du club
|
|
12660
|
+
* @param {*} [options] Override http request option.
|
|
12661
|
+
* @throws {RequiredError}
|
|
12662
|
+
*/
|
|
12663
|
+
getClubSubscribersSummary: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12335
12664
|
/**
|
|
12336
12665
|
* Récupère le chiffre d\'affaires quotidien
|
|
12337
12666
|
* @param {string} date
|
|
@@ -12359,6 +12688,19 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
12359
12688
|
* @throws {RequiredError}
|
|
12360
12689
|
*/
|
|
12361
12690
|
getLastSixMonthsTurnover: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12691
|
+
/**
|
|
12692
|
+
* Créneaux horaires les moins réservés (3 derniers mois)
|
|
12693
|
+
* @param {number} [limit]
|
|
12694
|
+
* @param {*} [options] Override http request option.
|
|
12695
|
+
* @throws {RequiredError}
|
|
12696
|
+
*/
|
|
12697
|
+
getLeastBookedTimeSlots: (limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12698
|
+
/**
|
|
12699
|
+
* Jour de la semaine le moins réservé (3 derniers mois)
|
|
12700
|
+
* @param {*} [options] Override http request option.
|
|
12701
|
+
* @throws {RequiredError}
|
|
12702
|
+
*/
|
|
12703
|
+
getLeastBookedWeekday: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12362
12704
|
/**
|
|
12363
12705
|
* Récupère le chiffre d\'affaires mensuel
|
|
12364
12706
|
* @param {string} year
|
|
@@ -12367,6 +12709,30 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
12367
12709
|
* @throws {RequiredError}
|
|
12368
12710
|
*/
|
|
12369
12711
|
getMonthlyTurnOver: (year: string, month: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12712
|
+
/**
|
|
12713
|
+
* Nouvelles réservations créées sur une période
|
|
12714
|
+
* @param {string} [startDate]
|
|
12715
|
+
* @param {string} [endDate]
|
|
12716
|
+
* @param {*} [options] Override http request option.
|
|
12717
|
+
* @throws {RequiredError}
|
|
12718
|
+
*/
|
|
12719
|
+
getNewBookingsCount: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12720
|
+
/**
|
|
12721
|
+
* Nouveaux abonnés sur une période
|
|
12722
|
+
* @param {string} [startDate]
|
|
12723
|
+
* @param {string} [endDate]
|
|
12724
|
+
* @param {*} [options] Override http request option.
|
|
12725
|
+
* @throws {RequiredError}
|
|
12726
|
+
*/
|
|
12727
|
+
getNewSubscribersCount: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12728
|
+
/**
|
|
12729
|
+
* Taux de no-show global ou sur une période
|
|
12730
|
+
* @param {string} [startDate]
|
|
12731
|
+
* @param {string} [endDate]
|
|
12732
|
+
* @param {*} [options] Override http request option.
|
|
12733
|
+
* @throws {RequiredError}
|
|
12734
|
+
*/
|
|
12735
|
+
getNoShowRate: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12370
12736
|
/**
|
|
12371
12737
|
* Récupère le nombre d\'utilisateurs du club
|
|
12372
12738
|
* @param {*} [options] Override http request option.
|
|
@@ -12417,6 +12783,14 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
12417
12783
|
* @throws {RequiredError}
|
|
12418
12784
|
*/
|
|
12419
12785
|
getAnalyticsBySport(sportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SportAnalyticsResponse>>;
|
|
12786
|
+
/**
|
|
12787
|
+
* Nombre de réservations par jour en fonction des slots
|
|
12788
|
+
* @param {string} [startDate]
|
|
12789
|
+
* @param {string} [endDate]
|
|
12790
|
+
* @param {*} [options] Override http request option.
|
|
12791
|
+
* @throws {RequiredError}
|
|
12792
|
+
*/
|
|
12793
|
+
getBookingsPerDay(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingsPerDayResponse>>;
|
|
12420
12794
|
/**
|
|
12421
12795
|
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
12422
12796
|
* @param {string} playerId
|
|
@@ -12450,6 +12824,12 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
12450
12824
|
* @throws {RequiredError}
|
|
12451
12825
|
*/
|
|
12452
12826
|
getClubPlayers(page?: number, pageSize?: number, search?: string, filters?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayersPaginatedResponse>>;
|
|
12827
|
+
/**
|
|
12828
|
+
* Nombre total d\'abonnés actifs du club
|
|
12829
|
+
* @param {*} [options] Override http request option.
|
|
12830
|
+
* @throws {RequiredError}
|
|
12831
|
+
*/
|
|
12832
|
+
getClubSubscribersSummary(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubSubscriberSummaryResponse>>;
|
|
12453
12833
|
/**
|
|
12454
12834
|
* Récupère le chiffre d\'affaires quotidien
|
|
12455
12835
|
* @param {string} date
|
|
@@ -12477,6 +12857,19 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
12477
12857
|
* @throws {RequiredError}
|
|
12478
12858
|
*/
|
|
12479
12859
|
getLastSixMonthsTurnover(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LastSixMonthsTurnoverItem>>>;
|
|
12860
|
+
/**
|
|
12861
|
+
* Créneaux horaires les moins réservés (3 derniers mois)
|
|
12862
|
+
* @param {number} [limit]
|
|
12863
|
+
* @param {*} [options] Override http request option.
|
|
12864
|
+
* @throws {RequiredError}
|
|
12865
|
+
*/
|
|
12866
|
+
getLeastBookedTimeSlots(limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeastBookedTimeSlotsResponse>>;
|
|
12867
|
+
/**
|
|
12868
|
+
* Jour de la semaine le moins réservé (3 derniers mois)
|
|
12869
|
+
* @param {*} [options] Override http request option.
|
|
12870
|
+
* @throws {RequiredError}
|
|
12871
|
+
*/
|
|
12872
|
+
getLeastBookedWeekday(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeastBookedWeekdayResponse>>;
|
|
12480
12873
|
/**
|
|
12481
12874
|
* Récupère le chiffre d\'affaires mensuel
|
|
12482
12875
|
* @param {string} year
|
|
@@ -12485,6 +12878,30 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
12485
12878
|
* @throws {RequiredError}
|
|
12486
12879
|
*/
|
|
12487
12880
|
getMonthlyTurnOver(year: string, month: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MonthlyTurnoverResponse>>;
|
|
12881
|
+
/**
|
|
12882
|
+
* Nouvelles réservations créées sur une période
|
|
12883
|
+
* @param {string} [startDate]
|
|
12884
|
+
* @param {string} [endDate]
|
|
12885
|
+
* @param {*} [options] Override http request option.
|
|
12886
|
+
* @throws {RequiredError}
|
|
12887
|
+
*/
|
|
12888
|
+
getNewBookingsCount(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubNewBookingsResponse>>;
|
|
12889
|
+
/**
|
|
12890
|
+
* Nouveaux abonnés sur une période
|
|
12891
|
+
* @param {string} [startDate]
|
|
12892
|
+
* @param {string} [endDate]
|
|
12893
|
+
* @param {*} [options] Override http request option.
|
|
12894
|
+
* @throws {RequiredError}
|
|
12895
|
+
*/
|
|
12896
|
+
getNewSubscribersCount(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubNewSubscribersResponse>>;
|
|
12897
|
+
/**
|
|
12898
|
+
* Taux de no-show global ou sur une période
|
|
12899
|
+
* @param {string} [startDate]
|
|
12900
|
+
* @param {string} [endDate]
|
|
12901
|
+
* @param {*} [options] Override http request option.
|
|
12902
|
+
* @throws {RequiredError}
|
|
12903
|
+
*/
|
|
12904
|
+
getNoShowRate(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NoShowRateResponse>>;
|
|
12488
12905
|
/**
|
|
12489
12906
|
* Récupère le nombre d\'utilisateurs du club
|
|
12490
12907
|
* @param {*} [options] Override http request option.
|
|
@@ -12535,6 +12952,13 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
12535
12952
|
* @throws {RequiredError}
|
|
12536
12953
|
*/
|
|
12537
12954
|
getAnalyticsBySport(requestParameters: ClubAnalyticsStaffApiGetAnalyticsBySportRequest, options?: RawAxiosRequestConfig): AxiosPromise<SportAnalyticsResponse>;
|
|
12955
|
+
/**
|
|
12956
|
+
* Nombre de réservations par jour en fonction des slots
|
|
12957
|
+
* @param {ClubAnalyticsStaffApiGetBookingsPerDayRequest} requestParameters Request parameters.
|
|
12958
|
+
* @param {*} [options] Override http request option.
|
|
12959
|
+
* @throws {RequiredError}
|
|
12960
|
+
*/
|
|
12961
|
+
getBookingsPerDay(requestParameters?: ClubAnalyticsStaffApiGetBookingsPerDayRequest, options?: RawAxiosRequestConfig): AxiosPromise<BookingsPerDayResponse>;
|
|
12538
12962
|
/**
|
|
12539
12963
|
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
12540
12964
|
* @param {ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest} requestParameters Request parameters.
|
|
@@ -12563,6 +12987,12 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
12563
12987
|
* @throws {RequiredError}
|
|
12564
12988
|
*/
|
|
12565
12989
|
getClubPlayers(requestParameters?: ClubAnalyticsStaffApiGetClubPlayersRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayersPaginatedResponse>;
|
|
12990
|
+
/**
|
|
12991
|
+
* Nombre total d\'abonnés actifs du club
|
|
12992
|
+
* @param {*} [options] Override http request option.
|
|
12993
|
+
* @throws {RequiredError}
|
|
12994
|
+
*/
|
|
12995
|
+
getClubSubscribersSummary(options?: RawAxiosRequestConfig): AxiosPromise<ClubSubscriberSummaryResponse>;
|
|
12566
12996
|
/**
|
|
12567
12997
|
* Récupère le chiffre d\'affaires quotidien
|
|
12568
12998
|
* @param {ClubAnalyticsStaffApiGetDailyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -12589,6 +13019,19 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
12589
13019
|
* @throws {RequiredError}
|
|
12590
13020
|
*/
|
|
12591
13021
|
getLastSixMonthsTurnover(options?: RawAxiosRequestConfig): AxiosPromise<Array<LastSixMonthsTurnoverItem>>;
|
|
13022
|
+
/**
|
|
13023
|
+
* Créneaux horaires les moins réservés (3 derniers mois)
|
|
13024
|
+
* @param {ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest} requestParameters Request parameters.
|
|
13025
|
+
* @param {*} [options] Override http request option.
|
|
13026
|
+
* @throws {RequiredError}
|
|
13027
|
+
*/
|
|
13028
|
+
getLeastBookedTimeSlots(requestParameters?: ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeastBookedTimeSlotsResponse>;
|
|
13029
|
+
/**
|
|
13030
|
+
* Jour de la semaine le moins réservé (3 derniers mois)
|
|
13031
|
+
* @param {*} [options] Override http request option.
|
|
13032
|
+
* @throws {RequiredError}
|
|
13033
|
+
*/
|
|
13034
|
+
getLeastBookedWeekday(options?: RawAxiosRequestConfig): AxiosPromise<LeastBookedWeekdayResponse>;
|
|
12592
13035
|
/**
|
|
12593
13036
|
* Récupère le chiffre d\'affaires mensuel
|
|
12594
13037
|
* @param {ClubAnalyticsStaffApiGetMonthlyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -12596,6 +13039,27 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
12596
13039
|
* @throws {RequiredError}
|
|
12597
13040
|
*/
|
|
12598
13041
|
getMonthlyTurnOver(requestParameters: ClubAnalyticsStaffApiGetMonthlyTurnOverRequest, options?: RawAxiosRequestConfig): AxiosPromise<MonthlyTurnoverResponse>;
|
|
13042
|
+
/**
|
|
13043
|
+
* Nouvelles réservations créées sur une période
|
|
13044
|
+
* @param {ClubAnalyticsStaffApiGetNewBookingsCountRequest} requestParameters Request parameters.
|
|
13045
|
+
* @param {*} [options] Override http request option.
|
|
13046
|
+
* @throws {RequiredError}
|
|
13047
|
+
*/
|
|
13048
|
+
getNewBookingsCount(requestParameters?: ClubAnalyticsStaffApiGetNewBookingsCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubNewBookingsResponse>;
|
|
13049
|
+
/**
|
|
13050
|
+
* Nouveaux abonnés sur une période
|
|
13051
|
+
* @param {ClubAnalyticsStaffApiGetNewSubscribersCountRequest} requestParameters Request parameters.
|
|
13052
|
+
* @param {*} [options] Override http request option.
|
|
13053
|
+
* @throws {RequiredError}
|
|
13054
|
+
*/
|
|
13055
|
+
getNewSubscribersCount(requestParameters?: ClubAnalyticsStaffApiGetNewSubscribersCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubNewSubscribersResponse>;
|
|
13056
|
+
/**
|
|
13057
|
+
* Taux de no-show global ou sur une période
|
|
13058
|
+
* @param {ClubAnalyticsStaffApiGetNoShowRateRequest} requestParameters Request parameters.
|
|
13059
|
+
* @param {*} [options] Override http request option.
|
|
13060
|
+
* @throws {RequiredError}
|
|
13061
|
+
*/
|
|
13062
|
+
getNoShowRate(requestParameters?: ClubAnalyticsStaffApiGetNoShowRateRequest, options?: RawAxiosRequestConfig): AxiosPromise<NoShowRateResponse>;
|
|
12599
13063
|
/**
|
|
12600
13064
|
* Récupère le nombre d\'utilisateurs du club
|
|
12601
13065
|
* @param {*} [options] Override http request option.
|
|
@@ -12647,6 +13111,25 @@ export interface ClubAnalyticsStaffApiGetAnalyticsBySportRequest {
|
|
|
12647
13111
|
*/
|
|
12648
13112
|
readonly sportId: string;
|
|
12649
13113
|
}
|
|
13114
|
+
/**
|
|
13115
|
+
* Request parameters for getBookingsPerDay operation in ClubAnalyticsStaffApi.
|
|
13116
|
+
* @export
|
|
13117
|
+
* @interface ClubAnalyticsStaffApiGetBookingsPerDayRequest
|
|
13118
|
+
*/
|
|
13119
|
+
export interface ClubAnalyticsStaffApiGetBookingsPerDayRequest {
|
|
13120
|
+
/**
|
|
13121
|
+
*
|
|
13122
|
+
* @type {string}
|
|
13123
|
+
* @memberof ClubAnalyticsStaffApiGetBookingsPerDay
|
|
13124
|
+
*/
|
|
13125
|
+
readonly startDate?: string;
|
|
13126
|
+
/**
|
|
13127
|
+
*
|
|
13128
|
+
* @type {string}
|
|
13129
|
+
* @memberof ClubAnalyticsStaffApiGetBookingsPerDay
|
|
13130
|
+
*/
|
|
13131
|
+
readonly endDate?: string;
|
|
13132
|
+
}
|
|
12650
13133
|
/**
|
|
12651
13134
|
* Request parameters for getClubPlayerBookingsById operation in ClubAnalyticsStaffApi.
|
|
12652
13135
|
* @export
|
|
@@ -12761,6 +13244,19 @@ export interface ClubAnalyticsStaffApiGetInfillPercentagePerPeriodRequest {
|
|
|
12761
13244
|
*/
|
|
12762
13245
|
readonly endDate?: string;
|
|
12763
13246
|
}
|
|
13247
|
+
/**
|
|
13248
|
+
* Request parameters for getLeastBookedTimeSlots operation in ClubAnalyticsStaffApi.
|
|
13249
|
+
* @export
|
|
13250
|
+
* @interface ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest
|
|
13251
|
+
*/
|
|
13252
|
+
export interface ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest {
|
|
13253
|
+
/**
|
|
13254
|
+
*
|
|
13255
|
+
* @type {number}
|
|
13256
|
+
* @memberof ClubAnalyticsStaffApiGetLeastBookedTimeSlots
|
|
13257
|
+
*/
|
|
13258
|
+
readonly limit?: number;
|
|
13259
|
+
}
|
|
12764
13260
|
/**
|
|
12765
13261
|
* Request parameters for getMonthlyTurnOver operation in ClubAnalyticsStaffApi.
|
|
12766
13262
|
* @export
|
|
@@ -12780,6 +13276,63 @@ export interface ClubAnalyticsStaffApiGetMonthlyTurnOverRequest {
|
|
|
12780
13276
|
*/
|
|
12781
13277
|
readonly month: string;
|
|
12782
13278
|
}
|
|
13279
|
+
/**
|
|
13280
|
+
* Request parameters for getNewBookingsCount operation in ClubAnalyticsStaffApi.
|
|
13281
|
+
* @export
|
|
13282
|
+
* @interface ClubAnalyticsStaffApiGetNewBookingsCountRequest
|
|
13283
|
+
*/
|
|
13284
|
+
export interface ClubAnalyticsStaffApiGetNewBookingsCountRequest {
|
|
13285
|
+
/**
|
|
13286
|
+
*
|
|
13287
|
+
* @type {string}
|
|
13288
|
+
* @memberof ClubAnalyticsStaffApiGetNewBookingsCount
|
|
13289
|
+
*/
|
|
13290
|
+
readonly startDate?: string;
|
|
13291
|
+
/**
|
|
13292
|
+
*
|
|
13293
|
+
* @type {string}
|
|
13294
|
+
* @memberof ClubAnalyticsStaffApiGetNewBookingsCount
|
|
13295
|
+
*/
|
|
13296
|
+
readonly endDate?: string;
|
|
13297
|
+
}
|
|
13298
|
+
/**
|
|
13299
|
+
* Request parameters for getNewSubscribersCount operation in ClubAnalyticsStaffApi.
|
|
13300
|
+
* @export
|
|
13301
|
+
* @interface ClubAnalyticsStaffApiGetNewSubscribersCountRequest
|
|
13302
|
+
*/
|
|
13303
|
+
export interface ClubAnalyticsStaffApiGetNewSubscribersCountRequest {
|
|
13304
|
+
/**
|
|
13305
|
+
*
|
|
13306
|
+
* @type {string}
|
|
13307
|
+
* @memberof ClubAnalyticsStaffApiGetNewSubscribersCount
|
|
13308
|
+
*/
|
|
13309
|
+
readonly startDate?: string;
|
|
13310
|
+
/**
|
|
13311
|
+
*
|
|
13312
|
+
* @type {string}
|
|
13313
|
+
* @memberof ClubAnalyticsStaffApiGetNewSubscribersCount
|
|
13314
|
+
*/
|
|
13315
|
+
readonly endDate?: string;
|
|
13316
|
+
}
|
|
13317
|
+
/**
|
|
13318
|
+
* Request parameters for getNoShowRate operation in ClubAnalyticsStaffApi.
|
|
13319
|
+
* @export
|
|
13320
|
+
* @interface ClubAnalyticsStaffApiGetNoShowRateRequest
|
|
13321
|
+
*/
|
|
13322
|
+
export interface ClubAnalyticsStaffApiGetNoShowRateRequest {
|
|
13323
|
+
/**
|
|
13324
|
+
*
|
|
13325
|
+
* @type {string}
|
|
13326
|
+
* @memberof ClubAnalyticsStaffApiGetNoShowRate
|
|
13327
|
+
*/
|
|
13328
|
+
readonly startDate?: string;
|
|
13329
|
+
/**
|
|
13330
|
+
*
|
|
13331
|
+
* @type {string}
|
|
13332
|
+
* @memberof ClubAnalyticsStaffApiGetNoShowRate
|
|
13333
|
+
*/
|
|
13334
|
+
readonly endDate?: string;
|
|
13335
|
+
}
|
|
12783
13336
|
/**
|
|
12784
13337
|
* Request parameters for getYearlyTurnOver operation in ClubAnalyticsStaffApi.
|
|
12785
13338
|
* @export
|
|
@@ -12808,6 +13361,14 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
12808
13361
|
* @memberof ClubAnalyticsStaffApi
|
|
12809
13362
|
*/
|
|
12810
13363
|
getAnalyticsBySport(requestParameters: ClubAnalyticsStaffApiGetAnalyticsBySportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportAnalyticsResponse, any, {}>>;
|
|
13364
|
+
/**
|
|
13365
|
+
* Nombre de réservations par jour en fonction des slots
|
|
13366
|
+
* @param {ClubAnalyticsStaffApiGetBookingsPerDayRequest} requestParameters Request parameters.
|
|
13367
|
+
* @param {*} [options] Override http request option.
|
|
13368
|
+
* @throws {RequiredError}
|
|
13369
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13370
|
+
*/
|
|
13371
|
+
getBookingsPerDay(requestParameters?: ClubAnalyticsStaffApiGetBookingsPerDayRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsPerDayResponse, any, {}>>;
|
|
12811
13372
|
/**
|
|
12812
13373
|
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
12813
13374
|
* @param {ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest} requestParameters Request parameters.
|
|
@@ -12840,6 +13401,13 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
12840
13401
|
* @memberof ClubAnalyticsStaffApi
|
|
12841
13402
|
*/
|
|
12842
13403
|
getClubPlayers(requestParameters?: ClubAnalyticsStaffApiGetClubPlayersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayersPaginatedResponse, any, {}>>;
|
|
13404
|
+
/**
|
|
13405
|
+
* Nombre total d\'abonnés actifs du club
|
|
13406
|
+
* @param {*} [options] Override http request option.
|
|
13407
|
+
* @throws {RequiredError}
|
|
13408
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13409
|
+
*/
|
|
13410
|
+
getClubSubscribersSummary(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubSubscriberSummaryResponse, any, {}>>;
|
|
12843
13411
|
/**
|
|
12844
13412
|
* Récupère le chiffre d\'affaires quotidien
|
|
12845
13413
|
* @param {ClubAnalyticsStaffApiGetDailyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -12870,6 +13438,21 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
12870
13438
|
* @memberof ClubAnalyticsStaffApi
|
|
12871
13439
|
*/
|
|
12872
13440
|
getLastSixMonthsTurnover(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LastSixMonthsTurnoverItem[], any, {}>>;
|
|
13441
|
+
/**
|
|
13442
|
+
* Créneaux horaires les moins réservés (3 derniers mois)
|
|
13443
|
+
* @param {ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest} requestParameters Request parameters.
|
|
13444
|
+
* @param {*} [options] Override http request option.
|
|
13445
|
+
* @throws {RequiredError}
|
|
13446
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13447
|
+
*/
|
|
13448
|
+
getLeastBookedTimeSlots(requestParameters?: ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeastBookedTimeSlotsResponse, any, {}>>;
|
|
13449
|
+
/**
|
|
13450
|
+
* Jour de la semaine le moins réservé (3 derniers mois)
|
|
13451
|
+
* @param {*} [options] Override http request option.
|
|
13452
|
+
* @throws {RequiredError}
|
|
13453
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13454
|
+
*/
|
|
13455
|
+
getLeastBookedWeekday(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeastBookedWeekdayResponse, any, {}>>;
|
|
12873
13456
|
/**
|
|
12874
13457
|
* Récupère le chiffre d\'affaires mensuel
|
|
12875
13458
|
* @param {ClubAnalyticsStaffApiGetMonthlyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -12878,6 +13461,30 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
12878
13461
|
* @memberof ClubAnalyticsStaffApi
|
|
12879
13462
|
*/
|
|
12880
13463
|
getMonthlyTurnOver(requestParameters: ClubAnalyticsStaffApiGetMonthlyTurnOverRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MonthlyTurnoverResponse, any, {}>>;
|
|
13464
|
+
/**
|
|
13465
|
+
* Nouvelles réservations créées sur une période
|
|
13466
|
+
* @param {ClubAnalyticsStaffApiGetNewBookingsCountRequest} requestParameters Request parameters.
|
|
13467
|
+
* @param {*} [options] Override http request option.
|
|
13468
|
+
* @throws {RequiredError}
|
|
13469
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13470
|
+
*/
|
|
13471
|
+
getNewBookingsCount(requestParameters?: ClubAnalyticsStaffApiGetNewBookingsCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubNewBookingsResponse, any, {}>>;
|
|
13472
|
+
/**
|
|
13473
|
+
* Nouveaux abonnés sur une période
|
|
13474
|
+
* @param {ClubAnalyticsStaffApiGetNewSubscribersCountRequest} requestParameters Request parameters.
|
|
13475
|
+
* @param {*} [options] Override http request option.
|
|
13476
|
+
* @throws {RequiredError}
|
|
13477
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13478
|
+
*/
|
|
13479
|
+
getNewSubscribersCount(requestParameters?: ClubAnalyticsStaffApiGetNewSubscribersCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubNewSubscribersResponse, any, {}>>;
|
|
13480
|
+
/**
|
|
13481
|
+
* Taux de no-show global ou sur une période
|
|
13482
|
+
* @param {ClubAnalyticsStaffApiGetNoShowRateRequest} requestParameters Request parameters.
|
|
13483
|
+
* @param {*} [options] Override http request option.
|
|
13484
|
+
* @throws {RequiredError}
|
|
13485
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13486
|
+
*/
|
|
13487
|
+
getNoShowRate(requestParameters?: ClubAnalyticsStaffApiGetNoShowRateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NoShowRateResponse, any, {}>>;
|
|
12881
13488
|
/**
|
|
12882
13489
|
* Récupère le nombre d\'utilisateurs du club
|
|
12883
13490
|
* @param {*} [options] Override http request option.
|
|
@@ -13205,6 +13812,13 @@ export declare class ClubRolesStaffApi extends BaseAPI {
|
|
|
13205
13812
|
* @export
|
|
13206
13813
|
*/
|
|
13207
13814
|
export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
13815
|
+
/**
|
|
13816
|
+
*
|
|
13817
|
+
* @param {DuplicateClubDayScheduleRequest} duplicateClubDayScheduleRequest
|
|
13818
|
+
* @param {*} [options] Override http request option.
|
|
13819
|
+
* @throws {RequiredError}
|
|
13820
|
+
*/
|
|
13821
|
+
duplicateDaySchedule: (duplicateClubDayScheduleRequest: DuplicateClubDayScheduleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13208
13822
|
/**
|
|
13209
13823
|
*
|
|
13210
13824
|
* @param {UpdateClubAccessSettingsRequest} updateClubAccessSettingsRequest
|
|
@@ -13219,6 +13833,14 @@ export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: C
|
|
|
13219
13833
|
* @throws {RequiredError}
|
|
13220
13834
|
*/
|
|
13221
13835
|
updateClubGeneralSettings: (updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13836
|
+
/**
|
|
13837
|
+
*
|
|
13838
|
+
* @param {WeekdayKey} day
|
|
13839
|
+
* @param {UpdateClubDayScheduleRequest} updateClubDayScheduleRequest
|
|
13840
|
+
* @param {*} [options] Override http request option.
|
|
13841
|
+
* @throws {RequiredError}
|
|
13842
|
+
*/
|
|
13843
|
+
updateDaySchedule: (day: WeekdayKey, updateClubDayScheduleRequest: UpdateClubDayScheduleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13222
13844
|
/**
|
|
13223
13845
|
*
|
|
13224
13846
|
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
@@ -13246,6 +13868,13 @@ export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: C
|
|
|
13246
13868
|
* @export
|
|
13247
13869
|
*/
|
|
13248
13870
|
export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) => {
|
|
13871
|
+
/**
|
|
13872
|
+
*
|
|
13873
|
+
* @param {DuplicateClubDayScheduleRequest} duplicateClubDayScheduleRequest
|
|
13874
|
+
* @param {*} [options] Override http request option.
|
|
13875
|
+
* @throws {RequiredError}
|
|
13876
|
+
*/
|
|
13877
|
+
duplicateDaySchedule(duplicateClubDayScheduleRequest: DuplicateClubDayScheduleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
13249
13878
|
/**
|
|
13250
13879
|
*
|
|
13251
13880
|
* @param {UpdateClubAccessSettingsRequest} updateClubAccessSettingsRequest
|
|
@@ -13260,6 +13889,14 @@ export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) =
|
|
|
13260
13889
|
* @throws {RequiredError}
|
|
13261
13890
|
*/
|
|
13262
13891
|
updateClubGeneralSettings(updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubGeneralSettingsResponse>>;
|
|
13892
|
+
/**
|
|
13893
|
+
*
|
|
13894
|
+
* @param {WeekdayKey} day
|
|
13895
|
+
* @param {UpdateClubDayScheduleRequest} updateClubDayScheduleRequest
|
|
13896
|
+
* @param {*} [options] Override http request option.
|
|
13897
|
+
* @throws {RequiredError}
|
|
13898
|
+
*/
|
|
13899
|
+
updateDaySchedule(day: WeekdayKey, updateClubDayScheduleRequest: UpdateClubDayScheduleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
13263
13900
|
/**
|
|
13264
13901
|
*
|
|
13265
13902
|
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
@@ -13287,6 +13924,13 @@ export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) =
|
|
|
13287
13924
|
* @export
|
|
13288
13925
|
*/
|
|
13289
13926
|
export declare const ClubSettingsManagerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13927
|
+
/**
|
|
13928
|
+
*
|
|
13929
|
+
* @param {ClubSettingsManagerApiDuplicateDayScheduleRequest} requestParameters Request parameters.
|
|
13930
|
+
* @param {*} [options] Override http request option.
|
|
13931
|
+
* @throws {RequiredError}
|
|
13932
|
+
*/
|
|
13933
|
+
duplicateDaySchedule(requestParameters: ClubSettingsManagerApiDuplicateDayScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
13290
13934
|
/**
|
|
13291
13935
|
*
|
|
13292
13936
|
* @param {ClubSettingsManagerApiUpdateAccessSettingsRequest} requestParameters Request parameters.
|
|
@@ -13301,6 +13945,13 @@ export declare const ClubSettingsManagerApiFactory: (configuration?: Configurati
|
|
|
13301
13945
|
* @throws {RequiredError}
|
|
13302
13946
|
*/
|
|
13303
13947
|
updateClubGeneralSettings(requestParameters: ClubSettingsManagerApiUpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubGeneralSettingsResponse>;
|
|
13948
|
+
/**
|
|
13949
|
+
*
|
|
13950
|
+
* @param {ClubSettingsManagerApiUpdateDayScheduleRequest} requestParameters Request parameters.
|
|
13951
|
+
* @param {*} [options] Override http request option.
|
|
13952
|
+
* @throws {RequiredError}
|
|
13953
|
+
*/
|
|
13954
|
+
updateDaySchedule(requestParameters: ClubSettingsManagerApiUpdateDayScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
13304
13955
|
/**
|
|
13305
13956
|
*
|
|
13306
13957
|
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|
|
@@ -13323,6 +13974,19 @@ export declare const ClubSettingsManagerApiFactory: (configuration?: Configurati
|
|
|
13323
13974
|
*/
|
|
13324
13975
|
updateReservationSettings(requestParameters: ClubSettingsManagerApiUpdateReservationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubReservationSettingsResponse>;
|
|
13325
13976
|
};
|
|
13977
|
+
/**
|
|
13978
|
+
* Request parameters for duplicateDaySchedule operation in ClubSettingsManagerApi.
|
|
13979
|
+
* @export
|
|
13980
|
+
* @interface ClubSettingsManagerApiDuplicateDayScheduleRequest
|
|
13981
|
+
*/
|
|
13982
|
+
export interface ClubSettingsManagerApiDuplicateDayScheduleRequest {
|
|
13983
|
+
/**
|
|
13984
|
+
*
|
|
13985
|
+
* @type {DuplicateClubDayScheduleRequest}
|
|
13986
|
+
* @memberof ClubSettingsManagerApiDuplicateDaySchedule
|
|
13987
|
+
*/
|
|
13988
|
+
readonly duplicateClubDayScheduleRequest: DuplicateClubDayScheduleRequest;
|
|
13989
|
+
}
|
|
13326
13990
|
/**
|
|
13327
13991
|
* Request parameters for updateAccessSettings operation in ClubSettingsManagerApi.
|
|
13328
13992
|
* @export
|
|
@@ -13349,6 +14013,25 @@ export interface ClubSettingsManagerApiUpdateClubGeneralSettingsRequest {
|
|
|
13349
14013
|
*/
|
|
13350
14014
|
readonly updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest;
|
|
13351
14015
|
}
|
|
14016
|
+
/**
|
|
14017
|
+
* Request parameters for updateDaySchedule operation in ClubSettingsManagerApi.
|
|
14018
|
+
* @export
|
|
14019
|
+
* @interface ClubSettingsManagerApiUpdateDayScheduleRequest
|
|
14020
|
+
*/
|
|
14021
|
+
export interface ClubSettingsManagerApiUpdateDayScheduleRequest {
|
|
14022
|
+
/**
|
|
14023
|
+
*
|
|
14024
|
+
* @type {WeekdayKey}
|
|
14025
|
+
* @memberof ClubSettingsManagerApiUpdateDaySchedule
|
|
14026
|
+
*/
|
|
14027
|
+
readonly day: WeekdayKey;
|
|
14028
|
+
/**
|
|
14029
|
+
*
|
|
14030
|
+
* @type {UpdateClubDayScheduleRequest}
|
|
14031
|
+
* @memberof ClubSettingsManagerApiUpdateDaySchedule
|
|
14032
|
+
*/
|
|
14033
|
+
readonly updateClubDayScheduleRequest: UpdateClubDayScheduleRequest;
|
|
14034
|
+
}
|
|
13352
14035
|
/**
|
|
13353
14036
|
* Request parameters for updateHoursSettings operation in ClubSettingsManagerApi.
|
|
13354
14037
|
* @export
|
|
@@ -13395,6 +14078,14 @@ export interface ClubSettingsManagerApiUpdateReservationSettingsRequest {
|
|
|
13395
14078
|
* @extends {BaseAPI}
|
|
13396
14079
|
*/
|
|
13397
14080
|
export declare class ClubSettingsManagerApi extends BaseAPI {
|
|
14081
|
+
/**
|
|
14082
|
+
*
|
|
14083
|
+
* @param {ClubSettingsManagerApiDuplicateDayScheduleRequest} requestParameters Request parameters.
|
|
14084
|
+
* @param {*} [options] Override http request option.
|
|
14085
|
+
* @throws {RequiredError}
|
|
14086
|
+
* @memberof ClubSettingsManagerApi
|
|
14087
|
+
*/
|
|
14088
|
+
duplicateDaySchedule(requestParameters: ClubSettingsManagerApiDuplicateDayScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
13398
14089
|
/**
|
|
13399
14090
|
*
|
|
13400
14091
|
* @param {ClubSettingsManagerApiUpdateAccessSettingsRequest} requestParameters Request parameters.
|
|
@@ -13411,6 +14102,14 @@ export declare class ClubSettingsManagerApi extends BaseAPI {
|
|
|
13411
14102
|
* @memberof ClubSettingsManagerApi
|
|
13412
14103
|
*/
|
|
13413
14104
|
updateClubGeneralSettings(requestParameters: ClubSettingsManagerApiUpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubGeneralSettingsResponse, any, {}>>;
|
|
14105
|
+
/**
|
|
14106
|
+
*
|
|
14107
|
+
* @param {ClubSettingsManagerApiUpdateDayScheduleRequest} requestParameters Request parameters.
|
|
14108
|
+
* @param {*} [options] Override http request option.
|
|
14109
|
+
* @throws {RequiredError}
|
|
14110
|
+
* @memberof ClubSettingsManagerApi
|
|
14111
|
+
*/
|
|
14112
|
+
updateDaySchedule(requestParameters: ClubSettingsManagerApiUpdateDayScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
13414
14113
|
/**
|
|
13415
14114
|
*
|
|
13416
14115
|
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|