@tennac-booking/sdk 1.0.141 → 1.0.143
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 +11 -0
- package/README.md +18 -0
- package/api.ts +1056 -12
- package/dist/api.d.ts +720 -4
- package/dist/api.js +494 -11
- package/dist/esm/api.d.ts +720 -4
- package/dist/esm/api.js +490 -7
- package/docs/BookingsPerDayItem.md +30 -0
- package/docs/BookingsPerDayResponse.md +24 -0
- package/docs/ClubAnalyticsStaffApi.md +388 -2
- package/docs/ClubNewBookingsResponse.md +32 -0
- package/docs/ClubNewSubscribersResponse.md +32 -0
- package/docs/ClubSubscriberSummaryResponse.md +20 -0
- package/docs/LeastBookedTimeSlotItem.md +26 -0
- package/docs/LeastBookedTimeSlotsResponse.md +24 -0
- package/docs/LeastBookedWeekdayResponse.md +26 -0
- package/docs/MonthlyTurnoverResponse.md +8 -0
- package/docs/NoShowRateResponse.md +28 -0
- package/docs/RetentionRateResponse.md +8 -0
- package/docs/TrendDirection.md +12 -0
- package/docs/WeekdayAverageItem.md +28 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1226,6 +1226,74 @@ 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
|
+
* Valeur mesurée sur la période actuelle
|
|
1237
|
+
* @type {number}
|
|
1238
|
+
* @memberof BookingsPerDayItem
|
|
1239
|
+
*/
|
|
1240
|
+
'value': number;
|
|
1241
|
+
/**
|
|
1242
|
+
* Valeur de référence calculée avec la comparaison Same Weekday
|
|
1243
|
+
* @type {number}
|
|
1244
|
+
* @memberof BookingsPerDayItem
|
|
1245
|
+
*/
|
|
1246
|
+
'reference': number;
|
|
1247
|
+
/**
|
|
1248
|
+
* Différence entre la valeur actuelle et la référence
|
|
1249
|
+
* @type {number}
|
|
1250
|
+
* @memberof BookingsPerDayItem
|
|
1251
|
+
*/
|
|
1252
|
+
'delta': number;
|
|
1253
|
+
/**
|
|
1254
|
+
*
|
|
1255
|
+
* @type {TrendDirection}
|
|
1256
|
+
* @memberof BookingsPerDayItem
|
|
1257
|
+
*/
|
|
1258
|
+
'trend': TrendDirection;
|
|
1259
|
+
/**
|
|
1260
|
+
* Jour au format YYYY-MM-DD
|
|
1261
|
+
* @type {string}
|
|
1262
|
+
* @memberof BookingsPerDayItem
|
|
1263
|
+
*/
|
|
1264
|
+
'date': string;
|
|
1265
|
+
/**
|
|
1266
|
+
* Nombre de réservations dont la séance se déroule ce jour-là
|
|
1267
|
+
* @type {number}
|
|
1268
|
+
* @memberof BookingsPerDayItem
|
|
1269
|
+
*/
|
|
1270
|
+
'bookingsCount': number;
|
|
1271
|
+
}
|
|
1272
|
+
/**
|
|
1273
|
+
*
|
|
1274
|
+
* @export
|
|
1275
|
+
* @interface BookingsPerDayResponse
|
|
1276
|
+
*/
|
|
1277
|
+
export interface BookingsPerDayResponse {
|
|
1278
|
+
/**
|
|
1279
|
+
* Date de début incluse (format ISO)
|
|
1280
|
+
* @type {string}
|
|
1281
|
+
* @memberof BookingsPerDayResponse
|
|
1282
|
+
*/
|
|
1283
|
+
'startDate': string;
|
|
1284
|
+
/**
|
|
1285
|
+
* Date de fin incluse (format ISO)
|
|
1286
|
+
* @type {string}
|
|
1287
|
+
* @memberof BookingsPerDayResponse
|
|
1288
|
+
*/
|
|
1289
|
+
'endDate': string;
|
|
1290
|
+
/**
|
|
1291
|
+
* Comptes quotidiens
|
|
1292
|
+
* @type {Array<BookingsPerDayItem>}
|
|
1293
|
+
* @memberof BookingsPerDayResponse
|
|
1294
|
+
*/
|
|
1295
|
+
'dailyCounts': Array<BookingsPerDayItem>;
|
|
1296
|
+
}
|
|
1229
1297
|
/**
|
|
1230
1298
|
*
|
|
1231
1299
|
* @export
|
|
@@ -2142,6 +2210,104 @@ export interface ClubMetadataResponseLocation {
|
|
|
2142
2210
|
*/
|
|
2143
2211
|
'address'?: string;
|
|
2144
2212
|
}
|
|
2213
|
+
/**
|
|
2214
|
+
*
|
|
2215
|
+
* @export
|
|
2216
|
+
* @interface ClubNewBookingsResponse
|
|
2217
|
+
*/
|
|
2218
|
+
export interface ClubNewBookingsResponse {
|
|
2219
|
+
/**
|
|
2220
|
+
* Valeur mesurée sur la période actuelle
|
|
2221
|
+
* @type {number}
|
|
2222
|
+
* @memberof ClubNewBookingsResponse
|
|
2223
|
+
*/
|
|
2224
|
+
'value': number;
|
|
2225
|
+
/**
|
|
2226
|
+
* Valeur de référence calculée avec la comparaison Same Weekday
|
|
2227
|
+
* @type {number}
|
|
2228
|
+
* @memberof ClubNewBookingsResponse
|
|
2229
|
+
*/
|
|
2230
|
+
'reference': number;
|
|
2231
|
+
/**
|
|
2232
|
+
* Différence entre la valeur actuelle et la référence
|
|
2233
|
+
* @type {number}
|
|
2234
|
+
* @memberof ClubNewBookingsResponse
|
|
2235
|
+
*/
|
|
2236
|
+
'delta': number;
|
|
2237
|
+
/**
|
|
2238
|
+
*
|
|
2239
|
+
* @type {TrendDirection}
|
|
2240
|
+
* @memberof ClubNewBookingsResponse
|
|
2241
|
+
*/
|
|
2242
|
+
'trend': TrendDirection;
|
|
2243
|
+
/**
|
|
2244
|
+
* Date de début incluse (format ISO)
|
|
2245
|
+
* @type {string}
|
|
2246
|
+
* @memberof ClubNewBookingsResponse
|
|
2247
|
+
*/
|
|
2248
|
+
'startDate': string;
|
|
2249
|
+
/**
|
|
2250
|
+
* Date de fin incluse (format ISO)
|
|
2251
|
+
* @type {string}
|
|
2252
|
+
* @memberof ClubNewBookingsResponse
|
|
2253
|
+
*/
|
|
2254
|
+
'endDate': string;
|
|
2255
|
+
/**
|
|
2256
|
+
* Nombre de nouvelles réservations créées durant la période
|
|
2257
|
+
* @type {number}
|
|
2258
|
+
* @memberof ClubNewBookingsResponse
|
|
2259
|
+
*/
|
|
2260
|
+
'newBookings': number;
|
|
2261
|
+
}
|
|
2262
|
+
/**
|
|
2263
|
+
*
|
|
2264
|
+
* @export
|
|
2265
|
+
* @interface ClubNewSubscribersResponse
|
|
2266
|
+
*/
|
|
2267
|
+
export interface ClubNewSubscribersResponse {
|
|
2268
|
+
/**
|
|
2269
|
+
* Valeur mesurée sur la période actuelle
|
|
2270
|
+
* @type {number}
|
|
2271
|
+
* @memberof ClubNewSubscribersResponse
|
|
2272
|
+
*/
|
|
2273
|
+
'value': number;
|
|
2274
|
+
/**
|
|
2275
|
+
* Valeur de référence calculée avec la comparaison Same Weekday
|
|
2276
|
+
* @type {number}
|
|
2277
|
+
* @memberof ClubNewSubscribersResponse
|
|
2278
|
+
*/
|
|
2279
|
+
'reference': number;
|
|
2280
|
+
/**
|
|
2281
|
+
* Différence entre la valeur actuelle et la référence
|
|
2282
|
+
* @type {number}
|
|
2283
|
+
* @memberof ClubNewSubscribersResponse
|
|
2284
|
+
*/
|
|
2285
|
+
'delta': number;
|
|
2286
|
+
/**
|
|
2287
|
+
*
|
|
2288
|
+
* @type {TrendDirection}
|
|
2289
|
+
* @memberof ClubNewSubscribersResponse
|
|
2290
|
+
*/
|
|
2291
|
+
'trend': TrendDirection;
|
|
2292
|
+
/**
|
|
2293
|
+
* Date de début incluse (format ISO)
|
|
2294
|
+
* @type {string}
|
|
2295
|
+
* @memberof ClubNewSubscribersResponse
|
|
2296
|
+
*/
|
|
2297
|
+
'startDate': string;
|
|
2298
|
+
/**
|
|
2299
|
+
* Date de fin incluse (format ISO)
|
|
2300
|
+
* @type {string}
|
|
2301
|
+
* @memberof ClubNewSubscribersResponse
|
|
2302
|
+
*/
|
|
2303
|
+
'endDate': string;
|
|
2304
|
+
/**
|
|
2305
|
+
* Nombre de nouveaux abonnés sur la période
|
|
2306
|
+
* @type {number}
|
|
2307
|
+
* @memberof ClubNewSubscribersResponse
|
|
2308
|
+
*/
|
|
2309
|
+
'newSubscribers': number;
|
|
2310
|
+
}
|
|
2145
2311
|
/**
|
|
2146
2312
|
*
|
|
2147
2313
|
* @export
|
|
@@ -3229,6 +3395,19 @@ export declare const ClubRoleResponseRoleEnum: {
|
|
|
3229
3395
|
readonly Staff: "staff";
|
|
3230
3396
|
};
|
|
3231
3397
|
export type ClubRoleResponseRoleEnum = typeof ClubRoleResponseRoleEnum[keyof typeof ClubRoleResponseRoleEnum];
|
|
3398
|
+
/**
|
|
3399
|
+
*
|
|
3400
|
+
* @export
|
|
3401
|
+
* @interface ClubSubscriberSummaryResponse
|
|
3402
|
+
*/
|
|
3403
|
+
export interface ClubSubscriberSummaryResponse {
|
|
3404
|
+
/**
|
|
3405
|
+
* Nombre total d\'abonnés actifs au club
|
|
3406
|
+
* @type {number}
|
|
3407
|
+
* @memberof ClubSubscriberSummaryResponse
|
|
3408
|
+
*/
|
|
3409
|
+
'totalSubscribers': number;
|
|
3410
|
+
}
|
|
3232
3411
|
/**
|
|
3233
3412
|
*
|
|
3234
3413
|
* @export
|
|
@@ -6276,6 +6455,93 @@ export interface LastSixMonthsTurnoverItem {
|
|
|
6276
6455
|
*/
|
|
6277
6456
|
'value': number;
|
|
6278
6457
|
}
|
|
6458
|
+
/**
|
|
6459
|
+
*
|
|
6460
|
+
* @export
|
|
6461
|
+
* @interface LeastBookedTimeSlotItem
|
|
6462
|
+
*/
|
|
6463
|
+
export interface LeastBookedTimeSlotItem {
|
|
6464
|
+
/**
|
|
6465
|
+
* Jour de la semaine (0 = dimanche)
|
|
6466
|
+
* @type {number}
|
|
6467
|
+
* @memberof LeastBookedTimeSlotItem
|
|
6468
|
+
*/
|
|
6469
|
+
'weekday': number;
|
|
6470
|
+
/**
|
|
6471
|
+
* Nom du jour
|
|
6472
|
+
* @type {string}
|
|
6473
|
+
* @memberof LeastBookedTimeSlotItem
|
|
6474
|
+
*/
|
|
6475
|
+
'weekdayName': string;
|
|
6476
|
+
/**
|
|
6477
|
+
* Heure de début (format HH:00)
|
|
6478
|
+
* @type {string}
|
|
6479
|
+
* @memberof LeastBookedTimeSlotItem
|
|
6480
|
+
*/
|
|
6481
|
+
'hour': string;
|
|
6482
|
+
/**
|
|
6483
|
+
* Nombre total de réservations observées pour ce créneau
|
|
6484
|
+
* @type {number}
|
|
6485
|
+
* @memberof LeastBookedTimeSlotItem
|
|
6486
|
+
*/
|
|
6487
|
+
'totalBookings': number;
|
|
6488
|
+
}
|
|
6489
|
+
/**
|
|
6490
|
+
*
|
|
6491
|
+
* @export
|
|
6492
|
+
* @interface LeastBookedTimeSlotsResponse
|
|
6493
|
+
*/
|
|
6494
|
+
export interface LeastBookedTimeSlotsResponse {
|
|
6495
|
+
/**
|
|
6496
|
+
* Début de la fenêtre analysée
|
|
6497
|
+
* @type {string}
|
|
6498
|
+
* @memberof LeastBookedTimeSlotsResponse
|
|
6499
|
+
*/
|
|
6500
|
+
'periodStart': string;
|
|
6501
|
+
/**
|
|
6502
|
+
* Fin de la fenêtre analysée
|
|
6503
|
+
* @type {string}
|
|
6504
|
+
* @memberof LeastBookedTimeSlotsResponse
|
|
6505
|
+
*/
|
|
6506
|
+
'periodEnd': string;
|
|
6507
|
+
/**
|
|
6508
|
+
* Créneaux les moins réservés
|
|
6509
|
+
* @type {Array<LeastBookedTimeSlotItem>}
|
|
6510
|
+
* @memberof LeastBookedTimeSlotsResponse
|
|
6511
|
+
*/
|
|
6512
|
+
'timeSlots': Array<LeastBookedTimeSlotItem>;
|
|
6513
|
+
}
|
|
6514
|
+
/**
|
|
6515
|
+
*
|
|
6516
|
+
* @export
|
|
6517
|
+
* @interface LeastBookedWeekdayResponse
|
|
6518
|
+
*/
|
|
6519
|
+
export interface LeastBookedWeekdayResponse {
|
|
6520
|
+
/**
|
|
6521
|
+
* Date de début de la période analysée
|
|
6522
|
+
* @type {string}
|
|
6523
|
+
* @memberof LeastBookedWeekdayResponse
|
|
6524
|
+
*/
|
|
6525
|
+
'periodStart': string;
|
|
6526
|
+
/**
|
|
6527
|
+
* Date de fin de la période analysée
|
|
6528
|
+
* @type {string}
|
|
6529
|
+
* @memberof LeastBookedWeekdayResponse
|
|
6530
|
+
*/
|
|
6531
|
+
'periodEnd': string;
|
|
6532
|
+
/**
|
|
6533
|
+
* Jour le moins réservé (null si aucune donnée)
|
|
6534
|
+
* @type {WeekdayAverageItem}
|
|
6535
|
+
* @memberof LeastBookedWeekdayResponse
|
|
6536
|
+
*/
|
|
6537
|
+
'leastBooked': WeekdayAverageItem | null;
|
|
6538
|
+
/**
|
|
6539
|
+
* Détail des moyennes par jour de la semaine
|
|
6540
|
+
* @type {Array<WeekdayAverageItem>}
|
|
6541
|
+
* @memberof LeastBookedWeekdayResponse
|
|
6542
|
+
*/
|
|
6543
|
+
'weekdayAverages': Array<WeekdayAverageItem>;
|
|
6544
|
+
}
|
|
6279
6545
|
/**
|
|
6280
6546
|
*
|
|
6281
6547
|
* @export
|
|
@@ -6433,6 +6699,30 @@ export interface MonthlyBreakdown {
|
|
|
6433
6699
|
* @interface MonthlyTurnoverResponse
|
|
6434
6700
|
*/
|
|
6435
6701
|
export interface MonthlyTurnoverResponse {
|
|
6702
|
+
/**
|
|
6703
|
+
* Valeur mesurée sur la période actuelle
|
|
6704
|
+
* @type {number}
|
|
6705
|
+
* @memberof MonthlyTurnoverResponse
|
|
6706
|
+
*/
|
|
6707
|
+
'value': number;
|
|
6708
|
+
/**
|
|
6709
|
+
* Valeur de référence calculée avec la comparaison Same Weekday
|
|
6710
|
+
* @type {number}
|
|
6711
|
+
* @memberof MonthlyTurnoverResponse
|
|
6712
|
+
*/
|
|
6713
|
+
'reference': number;
|
|
6714
|
+
/**
|
|
6715
|
+
* Différence entre la valeur actuelle et la référence
|
|
6716
|
+
* @type {number}
|
|
6717
|
+
* @memberof MonthlyTurnoverResponse
|
|
6718
|
+
*/
|
|
6719
|
+
'delta': number;
|
|
6720
|
+
/**
|
|
6721
|
+
*
|
|
6722
|
+
* @type {TrendDirection}
|
|
6723
|
+
* @memberof MonthlyTurnoverResponse
|
|
6724
|
+
*/
|
|
6725
|
+
'trend': TrendDirection;
|
|
6436
6726
|
/**
|
|
6437
6727
|
* Année
|
|
6438
6728
|
* @type {number}
|
|
@@ -6538,6 +6828,43 @@ export interface NoShowFeeResponse {
|
|
|
6538
6828
|
*/
|
|
6539
6829
|
'creatorChargeResult'?: CreatorChargeResult;
|
|
6540
6830
|
}
|
|
6831
|
+
/**
|
|
6832
|
+
*
|
|
6833
|
+
* @export
|
|
6834
|
+
* @interface NoShowRateResponse
|
|
6835
|
+
*/
|
|
6836
|
+
export interface NoShowRateResponse {
|
|
6837
|
+
/**
|
|
6838
|
+
* Date de début si la période est fournie
|
|
6839
|
+
* @type {string}
|
|
6840
|
+
* @memberof NoShowRateResponse
|
|
6841
|
+
*/
|
|
6842
|
+
'startDate'?: string;
|
|
6843
|
+
/**
|
|
6844
|
+
* Date de fin si la période est fournie
|
|
6845
|
+
* @type {string}
|
|
6846
|
+
* @memberof NoShowRateResponse
|
|
6847
|
+
*/
|
|
6848
|
+
'endDate'?: string;
|
|
6849
|
+
/**
|
|
6850
|
+
* Nombre de réservations marquées no-show
|
|
6851
|
+
* @type {number}
|
|
6852
|
+
* @memberof NoShowRateResponse
|
|
6853
|
+
*/
|
|
6854
|
+
'noShowCount': number;
|
|
6855
|
+
/**
|
|
6856
|
+
* Nombre total de réservations considérées
|
|
6857
|
+
* @type {number}
|
|
6858
|
+
* @memberof NoShowRateResponse
|
|
6859
|
+
*/
|
|
6860
|
+
'totalBookings': number;
|
|
6861
|
+
/**
|
|
6862
|
+
* Ratio no-show / total (0-1)
|
|
6863
|
+
* @type {number}
|
|
6864
|
+
* @memberof NoShowRateResponse
|
|
6865
|
+
*/
|
|
6866
|
+
'rate': number;
|
|
6867
|
+
}
|
|
6541
6868
|
/**
|
|
6542
6869
|
*
|
|
6543
6870
|
* @export
|
|
@@ -8188,6 +8515,30 @@ export interface ResetPasswordRequest {
|
|
|
8188
8515
|
* @interface RetentionRateResponse
|
|
8189
8516
|
*/
|
|
8190
8517
|
export interface RetentionRateResponse {
|
|
8518
|
+
/**
|
|
8519
|
+
* Valeur mesurée sur la période actuelle
|
|
8520
|
+
* @type {number}
|
|
8521
|
+
* @memberof RetentionRateResponse
|
|
8522
|
+
*/
|
|
8523
|
+
'value': number;
|
|
8524
|
+
/**
|
|
8525
|
+
* Valeur de référence calculée avec la comparaison Same Weekday
|
|
8526
|
+
* @type {number}
|
|
8527
|
+
* @memberof RetentionRateResponse
|
|
8528
|
+
*/
|
|
8529
|
+
'reference': number;
|
|
8530
|
+
/**
|
|
8531
|
+
* Différence entre la valeur actuelle et la référence
|
|
8532
|
+
* @type {number}
|
|
8533
|
+
* @memberof RetentionRateResponse
|
|
8534
|
+
*/
|
|
8535
|
+
'delta': number;
|
|
8536
|
+
/**
|
|
8537
|
+
*
|
|
8538
|
+
* @type {TrendDirection}
|
|
8539
|
+
* @memberof RetentionRateResponse
|
|
8540
|
+
*/
|
|
8541
|
+
'trend': TrendDirection;
|
|
8191
8542
|
/**
|
|
8192
8543
|
* Pourcentage de joueurs fidèles (>= 2 réservations)
|
|
8193
8544
|
* @type {number}
|
|
@@ -9444,6 +9795,17 @@ export interface TimeBounds {
|
|
|
9444
9795
|
*/
|
|
9445
9796
|
'end': string;
|
|
9446
9797
|
}
|
|
9798
|
+
/**
|
|
9799
|
+
*
|
|
9800
|
+
* @export
|
|
9801
|
+
* @enum {string}
|
|
9802
|
+
*/
|
|
9803
|
+
export declare const TrendDirection: {
|
|
9804
|
+
readonly Up: "up";
|
|
9805
|
+
readonly Down: "down";
|
|
9806
|
+
readonly Steady: "steady";
|
|
9807
|
+
};
|
|
9808
|
+
export type TrendDirection = typeof TrendDirection[keyof typeof TrendDirection];
|
|
9447
9809
|
/**
|
|
9448
9810
|
*
|
|
9449
9811
|
* @export
|
|
@@ -11190,6 +11552,43 @@ export declare const VisibilityType: {
|
|
|
11190
11552
|
readonly Invitation: "invitation";
|
|
11191
11553
|
};
|
|
11192
11554
|
export type VisibilityType = typeof VisibilityType[keyof typeof VisibilityType];
|
|
11555
|
+
/**
|
|
11556
|
+
*
|
|
11557
|
+
* @export
|
|
11558
|
+
* @interface WeekdayAverageItem
|
|
11559
|
+
*/
|
|
11560
|
+
export interface WeekdayAverageItem {
|
|
11561
|
+
/**
|
|
11562
|
+
* Jour de la semaine (0 = dimanche)
|
|
11563
|
+
* @type {number}
|
|
11564
|
+
* @memberof WeekdayAverageItem
|
|
11565
|
+
*/
|
|
11566
|
+
'weekday': number;
|
|
11567
|
+
/**
|
|
11568
|
+
* Nom lisible du jour
|
|
11569
|
+
* @type {string}
|
|
11570
|
+
* @memberof WeekdayAverageItem
|
|
11571
|
+
*/
|
|
11572
|
+
'weekdayName': string;
|
|
11573
|
+
/**
|
|
11574
|
+
* Nombre total de réservations enregistrées pour ce jour
|
|
11575
|
+
* @type {number}
|
|
11576
|
+
* @memberof WeekdayAverageItem
|
|
11577
|
+
*/
|
|
11578
|
+
'totalBookings': number;
|
|
11579
|
+
/**
|
|
11580
|
+
* Nombre de jours observés pour ce jour de la semaine
|
|
11581
|
+
* @type {number}
|
|
11582
|
+
* @memberof WeekdayAverageItem
|
|
11583
|
+
*/
|
|
11584
|
+
'daysCount': number;
|
|
11585
|
+
/**
|
|
11586
|
+
* Moyenne de réservations par jour de la semaine
|
|
11587
|
+
* @type {number}
|
|
11588
|
+
* @memberof WeekdayAverageItem
|
|
11589
|
+
*/
|
|
11590
|
+
'averageBookings': number;
|
|
11591
|
+
}
|
|
11193
11592
|
/**
|
|
11194
11593
|
*
|
|
11195
11594
|
* @export
|
|
@@ -12346,6 +12745,14 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
12346
12745
|
* @throws {RequiredError}
|
|
12347
12746
|
*/
|
|
12348
12747
|
getAnalyticsBySport: (sportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12748
|
+
/**
|
|
12749
|
+
* Nombre de réservations par jour en fonction des slots
|
|
12750
|
+
* @param {string} [startDate]
|
|
12751
|
+
* @param {string} [endDate]
|
|
12752
|
+
* @param {*} [options] Override http request option.
|
|
12753
|
+
* @throws {RequiredError}
|
|
12754
|
+
*/
|
|
12755
|
+
getBookingsPerDay: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12349
12756
|
/**
|
|
12350
12757
|
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
12351
12758
|
* @param {string} playerId
|
|
@@ -12379,6 +12786,12 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
12379
12786
|
* @throws {RequiredError}
|
|
12380
12787
|
*/
|
|
12381
12788
|
getClubPlayers: (page?: number, pageSize?: number, search?: string, filters?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12789
|
+
/**
|
|
12790
|
+
* Nombre total d\'abonnés actifs du club
|
|
12791
|
+
* @param {*} [options] Override http request option.
|
|
12792
|
+
* @throws {RequiredError}
|
|
12793
|
+
*/
|
|
12794
|
+
getClubSubscribersSummary: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12382
12795
|
/**
|
|
12383
12796
|
* Récupère le chiffre d\'affaires quotidien
|
|
12384
12797
|
* @param {string} date
|
|
@@ -12406,6 +12819,19 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
12406
12819
|
* @throws {RequiredError}
|
|
12407
12820
|
*/
|
|
12408
12821
|
getLastSixMonthsTurnover: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12822
|
+
/**
|
|
12823
|
+
* Créneaux horaires les moins réservés (3 derniers mois)
|
|
12824
|
+
* @param {number} [limit]
|
|
12825
|
+
* @param {*} [options] Override http request option.
|
|
12826
|
+
* @throws {RequiredError}
|
|
12827
|
+
*/
|
|
12828
|
+
getLeastBookedTimeSlots: (limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12829
|
+
/**
|
|
12830
|
+
* Jour de la semaine le moins réservé (3 derniers mois)
|
|
12831
|
+
* @param {*} [options] Override http request option.
|
|
12832
|
+
* @throws {RequiredError}
|
|
12833
|
+
*/
|
|
12834
|
+
getLeastBookedWeekday: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12409
12835
|
/**
|
|
12410
12836
|
* Récupère le chiffre d\'affaires mensuel
|
|
12411
12837
|
* @param {string} year
|
|
@@ -12414,6 +12840,30 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
12414
12840
|
* @throws {RequiredError}
|
|
12415
12841
|
*/
|
|
12416
12842
|
getMonthlyTurnOver: (year: string, month: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12843
|
+
/**
|
|
12844
|
+
* Nouvelles réservations créées sur une période
|
|
12845
|
+
* @param {string} [startDate]
|
|
12846
|
+
* @param {string} [endDate]
|
|
12847
|
+
* @param {*} [options] Override http request option.
|
|
12848
|
+
* @throws {RequiredError}
|
|
12849
|
+
*/
|
|
12850
|
+
getNewBookingsCount: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12851
|
+
/**
|
|
12852
|
+
* Nouveaux abonnés sur une période
|
|
12853
|
+
* @param {string} [startDate]
|
|
12854
|
+
* @param {string} [endDate]
|
|
12855
|
+
* @param {*} [options] Override http request option.
|
|
12856
|
+
* @throws {RequiredError}
|
|
12857
|
+
*/
|
|
12858
|
+
getNewSubscribersCount: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12859
|
+
/**
|
|
12860
|
+
* Taux de no-show global ou sur une période
|
|
12861
|
+
* @param {string} [startDate]
|
|
12862
|
+
* @param {string} [endDate]
|
|
12863
|
+
* @param {*} [options] Override http request option.
|
|
12864
|
+
* @throws {RequiredError}
|
|
12865
|
+
*/
|
|
12866
|
+
getNoShowRate: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12417
12867
|
/**
|
|
12418
12868
|
* Récupère le nombre d\'utilisateurs du club
|
|
12419
12869
|
* @param {*} [options] Override http request option.
|
|
@@ -12422,10 +12872,12 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
12422
12872
|
getNumberOfClubUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12423
12873
|
/**
|
|
12424
12874
|
* Calcule le taux de fidélisation des joueurs
|
|
12875
|
+
* @param {string} [startDate]
|
|
12876
|
+
* @param {string} [endDate]
|
|
12425
12877
|
* @param {*} [options] Override http request option.
|
|
12426
12878
|
* @throws {RequiredError}
|
|
12427
12879
|
*/
|
|
12428
|
-
getRetentionRate: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12880
|
+
getRetentionRate: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12429
12881
|
/**
|
|
12430
12882
|
* Récupère le chiffre d\'affaires par sport
|
|
12431
12883
|
* @param {*} [options] Override http request option.
|
|
@@ -12464,6 +12916,14 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
12464
12916
|
* @throws {RequiredError}
|
|
12465
12917
|
*/
|
|
12466
12918
|
getAnalyticsBySport(sportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SportAnalyticsResponse>>;
|
|
12919
|
+
/**
|
|
12920
|
+
* Nombre de réservations par jour en fonction des slots
|
|
12921
|
+
* @param {string} [startDate]
|
|
12922
|
+
* @param {string} [endDate]
|
|
12923
|
+
* @param {*} [options] Override http request option.
|
|
12924
|
+
* @throws {RequiredError}
|
|
12925
|
+
*/
|
|
12926
|
+
getBookingsPerDay(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingsPerDayResponse>>;
|
|
12467
12927
|
/**
|
|
12468
12928
|
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
12469
12929
|
* @param {string} playerId
|
|
@@ -12497,6 +12957,12 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
12497
12957
|
* @throws {RequiredError}
|
|
12498
12958
|
*/
|
|
12499
12959
|
getClubPlayers(page?: number, pageSize?: number, search?: string, filters?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayersPaginatedResponse>>;
|
|
12960
|
+
/**
|
|
12961
|
+
* Nombre total d\'abonnés actifs du club
|
|
12962
|
+
* @param {*} [options] Override http request option.
|
|
12963
|
+
* @throws {RequiredError}
|
|
12964
|
+
*/
|
|
12965
|
+
getClubSubscribersSummary(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubSubscriberSummaryResponse>>;
|
|
12500
12966
|
/**
|
|
12501
12967
|
* Récupère le chiffre d\'affaires quotidien
|
|
12502
12968
|
* @param {string} date
|
|
@@ -12524,6 +12990,19 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
12524
12990
|
* @throws {RequiredError}
|
|
12525
12991
|
*/
|
|
12526
12992
|
getLastSixMonthsTurnover(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LastSixMonthsTurnoverItem>>>;
|
|
12993
|
+
/**
|
|
12994
|
+
* Créneaux horaires les moins réservés (3 derniers mois)
|
|
12995
|
+
* @param {number} [limit]
|
|
12996
|
+
* @param {*} [options] Override http request option.
|
|
12997
|
+
* @throws {RequiredError}
|
|
12998
|
+
*/
|
|
12999
|
+
getLeastBookedTimeSlots(limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeastBookedTimeSlotsResponse>>;
|
|
13000
|
+
/**
|
|
13001
|
+
* Jour de la semaine le moins réservé (3 derniers mois)
|
|
13002
|
+
* @param {*} [options] Override http request option.
|
|
13003
|
+
* @throws {RequiredError}
|
|
13004
|
+
*/
|
|
13005
|
+
getLeastBookedWeekday(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeastBookedWeekdayResponse>>;
|
|
12527
13006
|
/**
|
|
12528
13007
|
* Récupère le chiffre d\'affaires mensuel
|
|
12529
13008
|
* @param {string} year
|
|
@@ -12532,6 +13011,30 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
12532
13011
|
* @throws {RequiredError}
|
|
12533
13012
|
*/
|
|
12534
13013
|
getMonthlyTurnOver(year: string, month: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MonthlyTurnoverResponse>>;
|
|
13014
|
+
/**
|
|
13015
|
+
* Nouvelles réservations créées sur une période
|
|
13016
|
+
* @param {string} [startDate]
|
|
13017
|
+
* @param {string} [endDate]
|
|
13018
|
+
* @param {*} [options] Override http request option.
|
|
13019
|
+
* @throws {RequiredError}
|
|
13020
|
+
*/
|
|
13021
|
+
getNewBookingsCount(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubNewBookingsResponse>>;
|
|
13022
|
+
/**
|
|
13023
|
+
* Nouveaux abonnés sur une période
|
|
13024
|
+
* @param {string} [startDate]
|
|
13025
|
+
* @param {string} [endDate]
|
|
13026
|
+
* @param {*} [options] Override http request option.
|
|
13027
|
+
* @throws {RequiredError}
|
|
13028
|
+
*/
|
|
13029
|
+
getNewSubscribersCount(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubNewSubscribersResponse>>;
|
|
13030
|
+
/**
|
|
13031
|
+
* Taux de no-show global ou sur une période
|
|
13032
|
+
* @param {string} [startDate]
|
|
13033
|
+
* @param {string} [endDate]
|
|
13034
|
+
* @param {*} [options] Override http request option.
|
|
13035
|
+
* @throws {RequiredError}
|
|
13036
|
+
*/
|
|
13037
|
+
getNoShowRate(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NoShowRateResponse>>;
|
|
12535
13038
|
/**
|
|
12536
13039
|
* Récupère le nombre d\'utilisateurs du club
|
|
12537
13040
|
* @param {*} [options] Override http request option.
|
|
@@ -12540,10 +13043,12 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
12540
13043
|
getNumberOfClubUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubUserCountResponse>>;
|
|
12541
13044
|
/**
|
|
12542
13045
|
* Calcule le taux de fidélisation des joueurs
|
|
13046
|
+
* @param {string} [startDate]
|
|
13047
|
+
* @param {string} [endDate]
|
|
12543
13048
|
* @param {*} [options] Override http request option.
|
|
12544
13049
|
* @throws {RequiredError}
|
|
12545
13050
|
*/
|
|
12546
|
-
getRetentionRate(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RetentionRateResponse>>;
|
|
13051
|
+
getRetentionRate(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RetentionRateResponse>>;
|
|
12547
13052
|
/**
|
|
12548
13053
|
* Récupère le chiffre d\'affaires par sport
|
|
12549
13054
|
* @param {*} [options] Override http request option.
|
|
@@ -12582,6 +13087,13 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
12582
13087
|
* @throws {RequiredError}
|
|
12583
13088
|
*/
|
|
12584
13089
|
getAnalyticsBySport(requestParameters: ClubAnalyticsStaffApiGetAnalyticsBySportRequest, options?: RawAxiosRequestConfig): AxiosPromise<SportAnalyticsResponse>;
|
|
13090
|
+
/**
|
|
13091
|
+
* Nombre de réservations par jour en fonction des slots
|
|
13092
|
+
* @param {ClubAnalyticsStaffApiGetBookingsPerDayRequest} requestParameters Request parameters.
|
|
13093
|
+
* @param {*} [options] Override http request option.
|
|
13094
|
+
* @throws {RequiredError}
|
|
13095
|
+
*/
|
|
13096
|
+
getBookingsPerDay(requestParameters?: ClubAnalyticsStaffApiGetBookingsPerDayRequest, options?: RawAxiosRequestConfig): AxiosPromise<BookingsPerDayResponse>;
|
|
12585
13097
|
/**
|
|
12586
13098
|
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
12587
13099
|
* @param {ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest} requestParameters Request parameters.
|
|
@@ -12610,6 +13122,12 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
12610
13122
|
* @throws {RequiredError}
|
|
12611
13123
|
*/
|
|
12612
13124
|
getClubPlayers(requestParameters?: ClubAnalyticsStaffApiGetClubPlayersRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayersPaginatedResponse>;
|
|
13125
|
+
/**
|
|
13126
|
+
* Nombre total d\'abonnés actifs du club
|
|
13127
|
+
* @param {*} [options] Override http request option.
|
|
13128
|
+
* @throws {RequiredError}
|
|
13129
|
+
*/
|
|
13130
|
+
getClubSubscribersSummary(options?: RawAxiosRequestConfig): AxiosPromise<ClubSubscriberSummaryResponse>;
|
|
12613
13131
|
/**
|
|
12614
13132
|
* Récupère le chiffre d\'affaires quotidien
|
|
12615
13133
|
* @param {ClubAnalyticsStaffApiGetDailyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -12636,6 +13154,19 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
12636
13154
|
* @throws {RequiredError}
|
|
12637
13155
|
*/
|
|
12638
13156
|
getLastSixMonthsTurnover(options?: RawAxiosRequestConfig): AxiosPromise<Array<LastSixMonthsTurnoverItem>>;
|
|
13157
|
+
/**
|
|
13158
|
+
* Créneaux horaires les moins réservés (3 derniers mois)
|
|
13159
|
+
* @param {ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest} requestParameters Request parameters.
|
|
13160
|
+
* @param {*} [options] Override http request option.
|
|
13161
|
+
* @throws {RequiredError}
|
|
13162
|
+
*/
|
|
13163
|
+
getLeastBookedTimeSlots(requestParameters?: ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeastBookedTimeSlotsResponse>;
|
|
13164
|
+
/**
|
|
13165
|
+
* Jour de la semaine le moins réservé (3 derniers mois)
|
|
13166
|
+
* @param {*} [options] Override http request option.
|
|
13167
|
+
* @throws {RequiredError}
|
|
13168
|
+
*/
|
|
13169
|
+
getLeastBookedWeekday(options?: RawAxiosRequestConfig): AxiosPromise<LeastBookedWeekdayResponse>;
|
|
12639
13170
|
/**
|
|
12640
13171
|
* Récupère le chiffre d\'affaires mensuel
|
|
12641
13172
|
* @param {ClubAnalyticsStaffApiGetMonthlyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -12643,6 +13174,27 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
12643
13174
|
* @throws {RequiredError}
|
|
12644
13175
|
*/
|
|
12645
13176
|
getMonthlyTurnOver(requestParameters: ClubAnalyticsStaffApiGetMonthlyTurnOverRequest, options?: RawAxiosRequestConfig): AxiosPromise<MonthlyTurnoverResponse>;
|
|
13177
|
+
/**
|
|
13178
|
+
* Nouvelles réservations créées sur une période
|
|
13179
|
+
* @param {ClubAnalyticsStaffApiGetNewBookingsCountRequest} requestParameters Request parameters.
|
|
13180
|
+
* @param {*} [options] Override http request option.
|
|
13181
|
+
* @throws {RequiredError}
|
|
13182
|
+
*/
|
|
13183
|
+
getNewBookingsCount(requestParameters?: ClubAnalyticsStaffApiGetNewBookingsCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubNewBookingsResponse>;
|
|
13184
|
+
/**
|
|
13185
|
+
* Nouveaux abonnés sur une période
|
|
13186
|
+
* @param {ClubAnalyticsStaffApiGetNewSubscribersCountRequest} requestParameters Request parameters.
|
|
13187
|
+
* @param {*} [options] Override http request option.
|
|
13188
|
+
* @throws {RequiredError}
|
|
13189
|
+
*/
|
|
13190
|
+
getNewSubscribersCount(requestParameters?: ClubAnalyticsStaffApiGetNewSubscribersCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubNewSubscribersResponse>;
|
|
13191
|
+
/**
|
|
13192
|
+
* Taux de no-show global ou sur une période
|
|
13193
|
+
* @param {ClubAnalyticsStaffApiGetNoShowRateRequest} requestParameters Request parameters.
|
|
13194
|
+
* @param {*} [options] Override http request option.
|
|
13195
|
+
* @throws {RequiredError}
|
|
13196
|
+
*/
|
|
13197
|
+
getNoShowRate(requestParameters?: ClubAnalyticsStaffApiGetNoShowRateRequest, options?: RawAxiosRequestConfig): AxiosPromise<NoShowRateResponse>;
|
|
12646
13198
|
/**
|
|
12647
13199
|
* Récupère le nombre d\'utilisateurs du club
|
|
12648
13200
|
* @param {*} [options] Override http request option.
|
|
@@ -12651,10 +13203,11 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
12651
13203
|
getNumberOfClubUsers(options?: RawAxiosRequestConfig): AxiosPromise<ClubUserCountResponse>;
|
|
12652
13204
|
/**
|
|
12653
13205
|
* Calcule le taux de fidélisation des joueurs
|
|
13206
|
+
* @param {ClubAnalyticsStaffApiGetRetentionRateRequest} requestParameters Request parameters.
|
|
12654
13207
|
* @param {*} [options] Override http request option.
|
|
12655
13208
|
* @throws {RequiredError}
|
|
12656
13209
|
*/
|
|
12657
|
-
getRetentionRate(options?: RawAxiosRequestConfig): AxiosPromise<RetentionRateResponse>;
|
|
13210
|
+
getRetentionRate(requestParameters?: ClubAnalyticsStaffApiGetRetentionRateRequest, options?: RawAxiosRequestConfig): AxiosPromise<RetentionRateResponse>;
|
|
12658
13211
|
/**
|
|
12659
13212
|
* Récupère le chiffre d\'affaires par sport
|
|
12660
13213
|
* @param {*} [options] Override http request option.
|
|
@@ -12694,6 +13247,25 @@ export interface ClubAnalyticsStaffApiGetAnalyticsBySportRequest {
|
|
|
12694
13247
|
*/
|
|
12695
13248
|
readonly sportId: string;
|
|
12696
13249
|
}
|
|
13250
|
+
/**
|
|
13251
|
+
* Request parameters for getBookingsPerDay operation in ClubAnalyticsStaffApi.
|
|
13252
|
+
* @export
|
|
13253
|
+
* @interface ClubAnalyticsStaffApiGetBookingsPerDayRequest
|
|
13254
|
+
*/
|
|
13255
|
+
export interface ClubAnalyticsStaffApiGetBookingsPerDayRequest {
|
|
13256
|
+
/**
|
|
13257
|
+
*
|
|
13258
|
+
* @type {string}
|
|
13259
|
+
* @memberof ClubAnalyticsStaffApiGetBookingsPerDay
|
|
13260
|
+
*/
|
|
13261
|
+
readonly startDate?: string;
|
|
13262
|
+
/**
|
|
13263
|
+
*
|
|
13264
|
+
* @type {string}
|
|
13265
|
+
* @memberof ClubAnalyticsStaffApiGetBookingsPerDay
|
|
13266
|
+
*/
|
|
13267
|
+
readonly endDate?: string;
|
|
13268
|
+
}
|
|
12697
13269
|
/**
|
|
12698
13270
|
* Request parameters for getClubPlayerBookingsById operation in ClubAnalyticsStaffApi.
|
|
12699
13271
|
* @export
|
|
@@ -12808,6 +13380,19 @@ export interface ClubAnalyticsStaffApiGetInfillPercentagePerPeriodRequest {
|
|
|
12808
13380
|
*/
|
|
12809
13381
|
readonly endDate?: string;
|
|
12810
13382
|
}
|
|
13383
|
+
/**
|
|
13384
|
+
* Request parameters for getLeastBookedTimeSlots operation in ClubAnalyticsStaffApi.
|
|
13385
|
+
* @export
|
|
13386
|
+
* @interface ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest
|
|
13387
|
+
*/
|
|
13388
|
+
export interface ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest {
|
|
13389
|
+
/**
|
|
13390
|
+
*
|
|
13391
|
+
* @type {number}
|
|
13392
|
+
* @memberof ClubAnalyticsStaffApiGetLeastBookedTimeSlots
|
|
13393
|
+
*/
|
|
13394
|
+
readonly limit?: number;
|
|
13395
|
+
}
|
|
12811
13396
|
/**
|
|
12812
13397
|
* Request parameters for getMonthlyTurnOver operation in ClubAnalyticsStaffApi.
|
|
12813
13398
|
* @export
|
|
@@ -12827,6 +13412,82 @@ export interface ClubAnalyticsStaffApiGetMonthlyTurnOverRequest {
|
|
|
12827
13412
|
*/
|
|
12828
13413
|
readonly month: string;
|
|
12829
13414
|
}
|
|
13415
|
+
/**
|
|
13416
|
+
* Request parameters for getNewBookingsCount operation in ClubAnalyticsStaffApi.
|
|
13417
|
+
* @export
|
|
13418
|
+
* @interface ClubAnalyticsStaffApiGetNewBookingsCountRequest
|
|
13419
|
+
*/
|
|
13420
|
+
export interface ClubAnalyticsStaffApiGetNewBookingsCountRequest {
|
|
13421
|
+
/**
|
|
13422
|
+
*
|
|
13423
|
+
* @type {string}
|
|
13424
|
+
* @memberof ClubAnalyticsStaffApiGetNewBookingsCount
|
|
13425
|
+
*/
|
|
13426
|
+
readonly startDate?: string;
|
|
13427
|
+
/**
|
|
13428
|
+
*
|
|
13429
|
+
* @type {string}
|
|
13430
|
+
* @memberof ClubAnalyticsStaffApiGetNewBookingsCount
|
|
13431
|
+
*/
|
|
13432
|
+
readonly endDate?: string;
|
|
13433
|
+
}
|
|
13434
|
+
/**
|
|
13435
|
+
* Request parameters for getNewSubscribersCount operation in ClubAnalyticsStaffApi.
|
|
13436
|
+
* @export
|
|
13437
|
+
* @interface ClubAnalyticsStaffApiGetNewSubscribersCountRequest
|
|
13438
|
+
*/
|
|
13439
|
+
export interface ClubAnalyticsStaffApiGetNewSubscribersCountRequest {
|
|
13440
|
+
/**
|
|
13441
|
+
*
|
|
13442
|
+
* @type {string}
|
|
13443
|
+
* @memberof ClubAnalyticsStaffApiGetNewSubscribersCount
|
|
13444
|
+
*/
|
|
13445
|
+
readonly startDate?: string;
|
|
13446
|
+
/**
|
|
13447
|
+
*
|
|
13448
|
+
* @type {string}
|
|
13449
|
+
* @memberof ClubAnalyticsStaffApiGetNewSubscribersCount
|
|
13450
|
+
*/
|
|
13451
|
+
readonly endDate?: string;
|
|
13452
|
+
}
|
|
13453
|
+
/**
|
|
13454
|
+
* Request parameters for getNoShowRate operation in ClubAnalyticsStaffApi.
|
|
13455
|
+
* @export
|
|
13456
|
+
* @interface ClubAnalyticsStaffApiGetNoShowRateRequest
|
|
13457
|
+
*/
|
|
13458
|
+
export interface ClubAnalyticsStaffApiGetNoShowRateRequest {
|
|
13459
|
+
/**
|
|
13460
|
+
*
|
|
13461
|
+
* @type {string}
|
|
13462
|
+
* @memberof ClubAnalyticsStaffApiGetNoShowRate
|
|
13463
|
+
*/
|
|
13464
|
+
readonly startDate?: string;
|
|
13465
|
+
/**
|
|
13466
|
+
*
|
|
13467
|
+
* @type {string}
|
|
13468
|
+
* @memberof ClubAnalyticsStaffApiGetNoShowRate
|
|
13469
|
+
*/
|
|
13470
|
+
readonly endDate?: string;
|
|
13471
|
+
}
|
|
13472
|
+
/**
|
|
13473
|
+
* Request parameters for getRetentionRate operation in ClubAnalyticsStaffApi.
|
|
13474
|
+
* @export
|
|
13475
|
+
* @interface ClubAnalyticsStaffApiGetRetentionRateRequest
|
|
13476
|
+
*/
|
|
13477
|
+
export interface ClubAnalyticsStaffApiGetRetentionRateRequest {
|
|
13478
|
+
/**
|
|
13479
|
+
*
|
|
13480
|
+
* @type {string}
|
|
13481
|
+
* @memberof ClubAnalyticsStaffApiGetRetentionRate
|
|
13482
|
+
*/
|
|
13483
|
+
readonly startDate?: string;
|
|
13484
|
+
/**
|
|
13485
|
+
*
|
|
13486
|
+
* @type {string}
|
|
13487
|
+
* @memberof ClubAnalyticsStaffApiGetRetentionRate
|
|
13488
|
+
*/
|
|
13489
|
+
readonly endDate?: string;
|
|
13490
|
+
}
|
|
12830
13491
|
/**
|
|
12831
13492
|
* Request parameters for getYearlyTurnOver operation in ClubAnalyticsStaffApi.
|
|
12832
13493
|
* @export
|
|
@@ -12855,6 +13516,14 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
12855
13516
|
* @memberof ClubAnalyticsStaffApi
|
|
12856
13517
|
*/
|
|
12857
13518
|
getAnalyticsBySport(requestParameters: ClubAnalyticsStaffApiGetAnalyticsBySportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportAnalyticsResponse, any, {}>>;
|
|
13519
|
+
/**
|
|
13520
|
+
* Nombre de réservations par jour en fonction des slots
|
|
13521
|
+
* @param {ClubAnalyticsStaffApiGetBookingsPerDayRequest} requestParameters Request parameters.
|
|
13522
|
+
* @param {*} [options] Override http request option.
|
|
13523
|
+
* @throws {RequiredError}
|
|
13524
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13525
|
+
*/
|
|
13526
|
+
getBookingsPerDay(requestParameters?: ClubAnalyticsStaffApiGetBookingsPerDayRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsPerDayResponse, any, {}>>;
|
|
12858
13527
|
/**
|
|
12859
13528
|
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
12860
13529
|
* @param {ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest} requestParameters Request parameters.
|
|
@@ -12887,6 +13556,13 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
12887
13556
|
* @memberof ClubAnalyticsStaffApi
|
|
12888
13557
|
*/
|
|
12889
13558
|
getClubPlayers(requestParameters?: ClubAnalyticsStaffApiGetClubPlayersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayersPaginatedResponse, any, {}>>;
|
|
13559
|
+
/**
|
|
13560
|
+
* Nombre total d\'abonnés actifs du club
|
|
13561
|
+
* @param {*} [options] Override http request option.
|
|
13562
|
+
* @throws {RequiredError}
|
|
13563
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13564
|
+
*/
|
|
13565
|
+
getClubSubscribersSummary(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubSubscriberSummaryResponse, any, {}>>;
|
|
12890
13566
|
/**
|
|
12891
13567
|
* Récupère le chiffre d\'affaires quotidien
|
|
12892
13568
|
* @param {ClubAnalyticsStaffApiGetDailyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -12917,6 +13593,21 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
12917
13593
|
* @memberof ClubAnalyticsStaffApi
|
|
12918
13594
|
*/
|
|
12919
13595
|
getLastSixMonthsTurnover(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LastSixMonthsTurnoverItem[], any, {}>>;
|
|
13596
|
+
/**
|
|
13597
|
+
* Créneaux horaires les moins réservés (3 derniers mois)
|
|
13598
|
+
* @param {ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest} requestParameters Request parameters.
|
|
13599
|
+
* @param {*} [options] Override http request option.
|
|
13600
|
+
* @throws {RequiredError}
|
|
13601
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13602
|
+
*/
|
|
13603
|
+
getLeastBookedTimeSlots(requestParameters?: ClubAnalyticsStaffApiGetLeastBookedTimeSlotsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeastBookedTimeSlotsResponse, any, {}>>;
|
|
13604
|
+
/**
|
|
13605
|
+
* Jour de la semaine le moins réservé (3 derniers mois)
|
|
13606
|
+
* @param {*} [options] Override http request option.
|
|
13607
|
+
* @throws {RequiredError}
|
|
13608
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13609
|
+
*/
|
|
13610
|
+
getLeastBookedWeekday(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeastBookedWeekdayResponse, any, {}>>;
|
|
12920
13611
|
/**
|
|
12921
13612
|
* Récupère le chiffre d\'affaires mensuel
|
|
12922
13613
|
* @param {ClubAnalyticsStaffApiGetMonthlyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -12925,6 +13616,30 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
12925
13616
|
* @memberof ClubAnalyticsStaffApi
|
|
12926
13617
|
*/
|
|
12927
13618
|
getMonthlyTurnOver(requestParameters: ClubAnalyticsStaffApiGetMonthlyTurnOverRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MonthlyTurnoverResponse, any, {}>>;
|
|
13619
|
+
/**
|
|
13620
|
+
* Nouvelles réservations créées sur une période
|
|
13621
|
+
* @param {ClubAnalyticsStaffApiGetNewBookingsCountRequest} requestParameters Request parameters.
|
|
13622
|
+
* @param {*} [options] Override http request option.
|
|
13623
|
+
* @throws {RequiredError}
|
|
13624
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13625
|
+
*/
|
|
13626
|
+
getNewBookingsCount(requestParameters?: ClubAnalyticsStaffApiGetNewBookingsCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubNewBookingsResponse, any, {}>>;
|
|
13627
|
+
/**
|
|
13628
|
+
* Nouveaux abonnés sur une période
|
|
13629
|
+
* @param {ClubAnalyticsStaffApiGetNewSubscribersCountRequest} requestParameters Request parameters.
|
|
13630
|
+
* @param {*} [options] Override http request option.
|
|
13631
|
+
* @throws {RequiredError}
|
|
13632
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13633
|
+
*/
|
|
13634
|
+
getNewSubscribersCount(requestParameters?: ClubAnalyticsStaffApiGetNewSubscribersCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubNewSubscribersResponse, any, {}>>;
|
|
13635
|
+
/**
|
|
13636
|
+
* Taux de no-show global ou sur une période
|
|
13637
|
+
* @param {ClubAnalyticsStaffApiGetNoShowRateRequest} requestParameters Request parameters.
|
|
13638
|
+
* @param {*} [options] Override http request option.
|
|
13639
|
+
* @throws {RequiredError}
|
|
13640
|
+
* @memberof ClubAnalyticsStaffApi
|
|
13641
|
+
*/
|
|
13642
|
+
getNoShowRate(requestParameters?: ClubAnalyticsStaffApiGetNoShowRateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NoShowRateResponse, any, {}>>;
|
|
12928
13643
|
/**
|
|
12929
13644
|
* Récupère le nombre d\'utilisateurs du club
|
|
12930
13645
|
* @param {*} [options] Override http request option.
|
|
@@ -12934,11 +13649,12 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
12934
13649
|
getNumberOfClubUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubUserCountResponse, any, {}>>;
|
|
12935
13650
|
/**
|
|
12936
13651
|
* Calcule le taux de fidélisation des joueurs
|
|
13652
|
+
* @param {ClubAnalyticsStaffApiGetRetentionRateRequest} requestParameters Request parameters.
|
|
12937
13653
|
* @param {*} [options] Override http request option.
|
|
12938
13654
|
* @throws {RequiredError}
|
|
12939
13655
|
* @memberof ClubAnalyticsStaffApi
|
|
12940
13656
|
*/
|
|
12941
|
-
getRetentionRate(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RetentionRateResponse, any, {}>>;
|
|
13657
|
+
getRetentionRate(requestParameters?: ClubAnalyticsStaffApiGetRetentionRateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RetentionRateResponse, any, {}>>;
|
|
12942
13658
|
/**
|
|
12943
13659
|
* Récupère le chiffre d\'affaires par sport
|
|
12944
13660
|
* @param {*} [options] Override http request option.
|