@tennac-booking/sdk 1.0.90 → 1.0.92
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 +9 -25
- package/README.md +15 -37
- package/api.ts +791 -1990
- package/dist/api.d.ts +527 -1428
- package/dist/api.js +237 -719
- package/dist/esm/api.d.ts +527 -1428
- package/dist/esm/api.js +234 -711
- package/docs/{ClubDaySchedule.md → AddCreditsToCustomer200Response.md} +5 -7
- package/docs/AddCreditsToCustomerRequest.md +22 -0
- package/docs/BookingPlayerPaymentSummary.md +2 -0
- package/docs/BookingPopulated.md +3 -3
- package/docs/BookingSummary.md +2 -0
- package/docs/ClubAnalyticsStaffApi.md +0 -173
- package/docs/ClubSettingsManagerApi.md +60 -54
- package/docs/ClubSettingsResponse.md +39 -0
- package/docs/ClubsManagerApi.md +58 -52
- package/docs/ClubsStaffApi.md +0 -44
- package/docs/CreateClubSettingsRequest.md +34 -0
- package/docs/CreateEventRequest.md +1 -3
- package/docs/DeleteClubSettingsResponse.md +20 -0
- package/docs/EventResponse.md +1 -1
- package/docs/EventResponseCourtsInner.md +18 -0
- package/docs/SlotInfo.md +2 -2
- package/docs/UpdateClubSettingsRequest.md +32 -0
- package/docs/UpdateEventRequest.md +1 -1
- package/docs/UserClubMembership.md +34 -0
- package/docs/UserClubMembershipsResponse.md +20 -0
- package/docs/UsersApi.md +46 -0
- package/package.json +1 -1
- package/docs/ClubGeneralSettingsResponse.md +0 -32
- package/docs/ClubHoursSettingsResponse.md +0 -22
- package/docs/ClubLocationSettings.md +0 -26
- package/docs/ClubPlayerBookingItem.md +0 -36
- package/docs/ClubPlayerBookingsPagination.md +0 -28
- package/docs/ClubPlayerBookingsResponse.md +0 -24
- package/docs/ClubPlayerDetailResponse.md +0 -46
- package/docs/ClubPlayerDetailResponseSportsLevelsInner.md +0 -22
- package/docs/ClubPlayerStatisticsResponse.md +0 -42
- package/docs/ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner.md +0 -22
- package/docs/ClubPlayerStatisticsResponseFavoriteClub.md +0 -23
- package/docs/ClubPlayerStatisticsResponseMostPlayedClub.md +0 -25
- package/docs/ClubPlayerStatisticsResponseMostPlayedPartnersInner.md +0 -26
- package/docs/ClubPlayerSubscriptionSummary.md +0 -28
- package/docs/ClubPresentationSettingsResponse.md +0 -26
- package/docs/ClubPricingPeriodResponse.md +0 -30
- package/docs/ClubReservationSettingsResponse.md +0 -28
- package/docs/ClubSettingsStaffApi.md +0 -183
- package/docs/ClubWeeklySchedule.md +0 -32
- package/docs/PartialClubWeeklySchedule.md +0 -33
- package/docs/UpdateClubGeneralSettingsRequest.md +0 -34
- package/docs/UpdateClubHoursSettingsRequest.md +0 -22
- package/docs/UpdateClubPresentationSettingsRequest.md +0 -26
- package/docs/UpdateClubReservationSettingsRequest.md +0 -28
package/dist/esm/api.d.ts
CHANGED
|
@@ -63,6 +63,38 @@ export interface AddClubMemberRequest {
|
|
|
63
63
|
*/
|
|
64
64
|
'rights'?: Array<string>;
|
|
65
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @export
|
|
69
|
+
* @interface AddCreditsToCustomer200Response
|
|
70
|
+
*/
|
|
71
|
+
export interface AddCreditsToCustomer200Response {
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof AddCreditsToCustomer200Response
|
|
76
|
+
*/
|
|
77
|
+
'credits': number;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @export
|
|
82
|
+
* @interface AddCreditsToCustomerRequest
|
|
83
|
+
*/
|
|
84
|
+
export interface AddCreditsToCustomerRequest {
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof AddCreditsToCustomerRequest
|
|
89
|
+
*/
|
|
90
|
+
'reason'?: string;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {number}
|
|
94
|
+
* @memberof AddCreditsToCustomerRequest
|
|
95
|
+
*/
|
|
96
|
+
'amount'?: number;
|
|
97
|
+
}
|
|
66
98
|
/**
|
|
67
99
|
*
|
|
68
100
|
* @export
|
|
@@ -525,6 +557,12 @@ export interface BookingPlayerPaymentSummary {
|
|
|
525
557
|
* @memberof BookingPlayerPaymentSummary
|
|
526
558
|
*/
|
|
527
559
|
'invoiceStatus'?: InvoiceStatus | null;
|
|
560
|
+
/**
|
|
561
|
+
*
|
|
562
|
+
* @type {string}
|
|
563
|
+
* @memberof BookingPlayerPaymentSummary
|
|
564
|
+
*/
|
|
565
|
+
'invoicePaymentUrl'?: string | null;
|
|
528
566
|
/**
|
|
529
567
|
*
|
|
530
568
|
* @type {boolean}
|
|
@@ -557,17 +595,11 @@ export interface BookingPopulated {
|
|
|
557
595
|
*/
|
|
558
596
|
'creator': UserInfo;
|
|
559
597
|
/**
|
|
560
|
-
*
|
|
561
|
-
* @type {SlotInfo}
|
|
562
|
-
* @memberof BookingPopulated
|
|
563
|
-
*/
|
|
564
|
-
'slotInfos': SlotInfo;
|
|
565
|
-
/**
|
|
566
|
-
*
|
|
567
|
-
* @type {Array<UserInfo>}
|
|
598
|
+
* Information(s) des créneaux
|
|
599
|
+
* @type {Array<SlotInfo>}
|
|
568
600
|
* @memberof BookingPopulated
|
|
569
601
|
*/
|
|
570
|
-
'
|
|
602
|
+
'slotInfos': Array<SlotInfo>;
|
|
571
603
|
/**
|
|
572
604
|
* Statut des paiements par joueur
|
|
573
605
|
* @type {Array<PaymentByPlayerInfo>}
|
|
@@ -598,6 +630,12 @@ export interface BookingPopulated {
|
|
|
598
630
|
* @memberof BookingPopulated
|
|
599
631
|
*/
|
|
600
632
|
'isCreatorPayingAll': boolean;
|
|
633
|
+
/**
|
|
634
|
+
*
|
|
635
|
+
* @type {Array<string>}
|
|
636
|
+
* @memberof BookingPopulated
|
|
637
|
+
*/
|
|
638
|
+
'playersIds': Array<string>;
|
|
601
639
|
/**
|
|
602
640
|
*
|
|
603
641
|
* @type {Array<BookingHistoryPopulated>}
|
|
@@ -994,6 +1032,12 @@ export interface BookingSummary {
|
|
|
994
1032
|
* @memberof BookingSummary
|
|
995
1033
|
*/
|
|
996
1034
|
'myAmountToPay': number;
|
|
1035
|
+
/**
|
|
1036
|
+
*
|
|
1037
|
+
* @type {string}
|
|
1038
|
+
* @memberof BookingSummary
|
|
1039
|
+
*/
|
|
1040
|
+
'myPaymentLink'?: string | null;
|
|
997
1041
|
/**
|
|
998
1042
|
*
|
|
999
1043
|
* @type {number}
|
|
@@ -1246,795 +1290,123 @@ export interface CheckedInPlayer {
|
|
|
1246
1290
|
* @memberof CheckedInPlayer
|
|
1247
1291
|
*/
|
|
1248
1292
|
'note'?: string;
|
|
1249
|
-
}
|
|
1250
|
-
/**
|
|
1251
|
-
*
|
|
1252
|
-
* @export
|
|
1253
|
-
* @interface
|
|
1254
|
-
*/
|
|
1255
|
-
export interface
|
|
1256
|
-
/**
|
|
1257
|
-
*
|
|
1258
|
-
* @type {string}
|
|
1259
|
-
* @memberof ClubDaySchedule
|
|
1260
|
-
*/
|
|
1261
|
-
'open': string;
|
|
1262
|
-
/**
|
|
1263
|
-
*
|
|
1264
|
-
* @type {string}
|
|
1265
|
-
* @memberof ClubDaySchedule
|
|
1266
|
-
*/
|
|
1267
|
-
'close': string;
|
|
1268
|
-
}
|
|
1269
|
-
/**
|
|
1270
|
-
*
|
|
1271
|
-
* @export
|
|
1272
|
-
* @interface ClubGeneralSettingsResponse
|
|
1273
|
-
*/
|
|
1274
|
-
export interface ClubGeneralSettingsResponse {
|
|
1275
|
-
/**
|
|
1276
|
-
*
|
|
1277
|
-
* @type {string}
|
|
1278
|
-
* @memberof ClubGeneralSettingsResponse
|
|
1279
|
-
*/
|
|
1280
|
-
'name': string;
|
|
1281
|
-
/**
|
|
1282
|
-
*
|
|
1283
|
-
* @type {string}
|
|
1284
|
-
* @memberof ClubGeneralSettingsResponse
|
|
1285
|
-
*/
|
|
1286
|
-
'email'?: string;
|
|
1287
|
-
/**
|
|
1288
|
-
*
|
|
1289
|
-
* @type {string}
|
|
1290
|
-
* @memberof ClubGeneralSettingsResponse
|
|
1291
|
-
*/
|
|
1292
|
-
'phone'?: string;
|
|
1293
|
-
/**
|
|
1294
|
-
*
|
|
1295
|
-
* @type {string}
|
|
1296
|
-
* @memberof ClubGeneralSettingsResponse
|
|
1297
|
-
*/
|
|
1298
|
-
'websiteUrl'?: string;
|
|
1299
|
-
/**
|
|
1300
|
-
*
|
|
1301
|
-
* @type {string}
|
|
1302
|
-
* @memberof ClubGeneralSettingsResponse
|
|
1303
|
-
*/
|
|
1304
|
-
'logo'?: string | null;
|
|
1305
|
-
/**
|
|
1306
|
-
*
|
|
1307
|
-
* @type {ClubLocationSettings}
|
|
1308
|
-
* @memberof ClubGeneralSettingsResponse
|
|
1309
|
-
*/
|
|
1310
|
-
'location': ClubLocationSettings;
|
|
1311
|
-
/**
|
|
1312
|
-
*
|
|
1313
|
-
* @type {string}
|
|
1314
|
-
* @memberof ClubGeneralSettingsResponse
|
|
1315
|
-
*/
|
|
1316
|
-
'stripeUrl'?: string | null;
|
|
1317
|
-
}
|
|
1318
|
-
/**
|
|
1319
|
-
*
|
|
1320
|
-
* @export
|
|
1321
|
-
* @interface ClubHoursSettingsResponse
|
|
1322
|
-
*/
|
|
1323
|
-
export interface ClubHoursSettingsResponse {
|
|
1324
|
-
/**
|
|
1325
|
-
*
|
|
1326
|
-
* @type {ClubWeeklySchedule}
|
|
1327
|
-
* @memberof ClubHoursSettingsResponse
|
|
1328
|
-
*/
|
|
1329
|
-
'schedule': ClubWeeklySchedule;
|
|
1330
|
-
/**
|
|
1331
|
-
*
|
|
1332
|
-
* @type {Array<ClubPricingPeriodResponse>}
|
|
1333
|
-
* @memberof ClubHoursSettingsResponse
|
|
1334
|
-
*/
|
|
1335
|
-
'pricingPeriods': Array<ClubPricingPeriodResponse>;
|
|
1336
|
-
}
|
|
1337
|
-
/**
|
|
1338
|
-
*
|
|
1339
|
-
* @export
|
|
1340
|
-
* @interface ClubLocationSettings
|
|
1341
|
-
*/
|
|
1342
|
-
export interface ClubLocationSettings {
|
|
1343
|
-
/**
|
|
1344
|
-
*
|
|
1345
|
-
* @type {string}
|
|
1346
|
-
* @memberof ClubLocationSettings
|
|
1347
|
-
*/
|
|
1348
|
-
'address'?: string;
|
|
1349
|
-
/**
|
|
1350
|
-
*
|
|
1351
|
-
* @type {string}
|
|
1352
|
-
* @memberof ClubLocationSettings
|
|
1353
|
-
*/
|
|
1354
|
-
'zipCode'?: string;
|
|
1355
|
-
/**
|
|
1356
|
-
*
|
|
1357
|
-
* @type {string}
|
|
1358
|
-
* @memberof ClubLocationSettings
|
|
1359
|
-
*/
|
|
1360
|
-
'city'?: string;
|
|
1361
|
-
/**
|
|
1362
|
-
*
|
|
1363
|
-
* @type {string}
|
|
1364
|
-
* @memberof ClubLocationSettings
|
|
1365
|
-
*/
|
|
1366
|
-
'country'?: string;
|
|
1367
|
-
}
|
|
1368
|
-
/**
|
|
1369
|
-
*
|
|
1370
|
-
* @export
|
|
1371
|
-
* @interface ClubMemberResponse
|
|
1372
|
-
*/
|
|
1373
|
-
export interface ClubMemberResponse {
|
|
1374
|
-
/**
|
|
1375
|
-
*
|
|
1376
|
-
* @type {ClubMemberResponseUser}
|
|
1377
|
-
* @memberof ClubMemberResponse
|
|
1378
|
-
*/
|
|
1379
|
-
'user': ClubMemberResponseUser;
|
|
1380
|
-
/**
|
|
1381
|
-
* Rôle du membre dans le club
|
|
1382
|
-
* @type {string}
|
|
1383
|
-
* @memberof ClubMemberResponse
|
|
1384
|
-
*/
|
|
1385
|
-
'role': string;
|
|
1386
|
-
/**
|
|
1387
|
-
* Droits du membre dans le club
|
|
1388
|
-
* @type {Array<string>}
|
|
1389
|
-
* @memberof ClubMemberResponse
|
|
1390
|
-
*/
|
|
1391
|
-
'rights': Array<string>;
|
|
1392
|
-
}
|
|
1393
|
-
/**
|
|
1394
|
-
* Utilisateur (membre)
|
|
1395
|
-
* @export
|
|
1396
|
-
* @interface ClubMemberResponseUser
|
|
1397
|
-
*/
|
|
1398
|
-
export interface ClubMemberResponseUser {
|
|
1399
|
-
/**
|
|
1400
|
-
*
|
|
1401
|
-
* @type {string}
|
|
1402
|
-
* @memberof ClubMemberResponseUser
|
|
1403
|
-
*/
|
|
1404
|
-
'email': string;
|
|
1405
|
-
/**
|
|
1406
|
-
*
|
|
1407
|
-
* @type {string}
|
|
1408
|
-
* @memberof ClubMemberResponseUser
|
|
1409
|
-
*/
|
|
1410
|
-
'lastName': string;
|
|
1411
|
-
/**
|
|
1412
|
-
*
|
|
1413
|
-
* @type {string}
|
|
1414
|
-
* @memberof ClubMemberResponseUser
|
|
1415
|
-
*/
|
|
1416
|
-
'firstName': string;
|
|
1417
|
-
/**
|
|
1418
|
-
*
|
|
1419
|
-
* @type {string}
|
|
1420
|
-
* @memberof ClubMemberResponseUser
|
|
1421
|
-
*/
|
|
1422
|
-
'id': string;
|
|
1423
|
-
}
|
|
1424
|
-
/**
|
|
1425
|
-
*
|
|
1426
|
-
* @export
|
|
1427
|
-
* @interface ClubPlayerBookingItem
|
|
1428
|
-
*/
|
|
1429
|
-
export interface ClubPlayerBookingItem {
|
|
1430
|
-
/**
|
|
1431
|
-
* ID de la réservation
|
|
1432
|
-
* @type {string}
|
|
1433
|
-
* @memberof ClubPlayerBookingItem
|
|
1434
|
-
*/
|
|
1435
|
-
'id': string;
|
|
1436
|
-
/**
|
|
1437
|
-
* Date de début de la réservation
|
|
1438
|
-
* @type {string}
|
|
1439
|
-
* @memberof ClubPlayerBookingItem
|
|
1440
|
-
*/
|
|
1441
|
-
'startDate': string | null;
|
|
1442
|
-
/**
|
|
1443
|
-
* Date de fin de la réservation
|
|
1444
|
-
* @type {string}
|
|
1445
|
-
* @memberof ClubPlayerBookingItem
|
|
1446
|
-
*/
|
|
1447
|
-
'endDate': string | null;
|
|
1448
|
-
/**
|
|
1449
|
-
* Nom du terrain ou emplacement
|
|
1450
|
-
* @type {string}
|
|
1451
|
-
* @memberof ClubPlayerBookingItem
|
|
1452
|
-
*/
|
|
1453
|
-
'location': string | null;
|
|
1454
|
-
/**
|
|
1455
|
-
* Nom du sport associé
|
|
1456
|
-
* @type {string}
|
|
1457
|
-
* @memberof ClubPlayerBookingItem
|
|
1458
|
-
*/
|
|
1459
|
-
'sport': string | null;
|
|
1460
|
-
/**
|
|
1461
|
-
* Statut de la réservation
|
|
1462
|
-
* @type {string}
|
|
1463
|
-
* @memberof ClubPlayerBookingItem
|
|
1464
|
-
*/
|
|
1465
|
-
'status': string;
|
|
1466
|
-
/**
|
|
1467
|
-
* Prix total de la réservation en centimes
|
|
1468
|
-
* @type {number}
|
|
1469
|
-
* @memberof ClubPlayerBookingItem
|
|
1470
|
-
*/
|
|
1471
|
-
'totalPrice': number;
|
|
1472
|
-
/**
|
|
1473
|
-
* Indique si le joueur est le créateur de la réservation
|
|
1474
|
-
* @type {boolean}
|
|
1475
|
-
* @memberof ClubPlayerBookingItem
|
|
1476
|
-
*/
|
|
1477
|
-
'isCreator': boolean;
|
|
1478
|
-
/**
|
|
1479
|
-
* Nombre total de participants
|
|
1480
|
-
* @type {number}
|
|
1481
|
-
* @memberof ClubPlayerBookingItem
|
|
1482
|
-
*/
|
|
1483
|
-
'participantsCount': number;
|
|
1484
|
-
}
|
|
1485
|
-
/**
|
|
1486
|
-
*
|
|
1487
|
-
* @export
|
|
1488
|
-
* @interface ClubPlayerBookingsPagination
|
|
1489
|
-
*/
|
|
1490
|
-
export interface ClubPlayerBookingsPagination {
|
|
1491
|
-
/**
|
|
1492
|
-
* Page courante (1-based)
|
|
1493
|
-
* @type {number}
|
|
1494
|
-
* @memberof ClubPlayerBookingsPagination
|
|
1495
|
-
*/
|
|
1496
|
-
'page': number;
|
|
1497
|
-
/**
|
|
1498
|
-
* Nombre d\'éléments par page
|
|
1499
|
-
* @type {number}
|
|
1500
|
-
* @memberof ClubPlayerBookingsPagination
|
|
1501
|
-
*/
|
|
1502
|
-
'pageSize': number;
|
|
1503
|
-
/**
|
|
1504
|
-
* Nombre total d\'éléments disponibles
|
|
1505
|
-
* @type {number}
|
|
1506
|
-
* @memberof ClubPlayerBookingsPagination
|
|
1507
|
-
*/
|
|
1508
|
-
'totalItems': number;
|
|
1509
|
-
/**
|
|
1510
|
-
* Nombre total de pages disponibles
|
|
1511
|
-
* @type {number}
|
|
1512
|
-
* @memberof ClubPlayerBookingsPagination
|
|
1513
|
-
*/
|
|
1514
|
-
'totalPages': number;
|
|
1515
|
-
/**
|
|
1516
|
-
* Existence d\'une page suivante
|
|
1517
|
-
* @type {boolean}
|
|
1518
|
-
* @memberof ClubPlayerBookingsPagination
|
|
1519
|
-
*/
|
|
1520
|
-
'hasMore': boolean;
|
|
1521
|
-
}
|
|
1522
|
-
/**
|
|
1523
|
-
*
|
|
1524
|
-
* @export
|
|
1525
|
-
* @interface ClubPlayerBookingsResponse
|
|
1526
|
-
*/
|
|
1527
|
-
export interface ClubPlayerBookingsResponse {
|
|
1528
|
-
/**
|
|
1529
|
-
* Réservations à venir
|
|
1530
|
-
* @type {Array<ClubPlayerBookingItem>}
|
|
1531
|
-
* @memberof ClubPlayerBookingsResponse
|
|
1532
|
-
*/
|
|
1533
|
-
'upcomingBookings': Array<ClubPlayerBookingItem>;
|
|
1534
|
-
/**
|
|
1535
|
-
* Réservations passées
|
|
1536
|
-
* @type {Array<ClubPlayerBookingItem>}
|
|
1537
|
-
* @memberof ClubPlayerBookingsResponse
|
|
1538
|
-
*/
|
|
1539
|
-
'pastBookings': Array<ClubPlayerBookingItem>;
|
|
1540
|
-
/**
|
|
1541
|
-
*
|
|
1542
|
-
* @type {ClubPlayerBookingsPagination}
|
|
1543
|
-
* @memberof ClubPlayerBookingsResponse
|
|
1544
|
-
*/
|
|
1545
|
-
'pastPagination'?: ClubPlayerBookingsPagination;
|
|
1546
|
-
}
|
|
1547
|
-
/**
|
|
1548
|
-
*
|
|
1549
|
-
* @export
|
|
1550
|
-
* @interface ClubPlayerDetailResponse
|
|
1551
|
-
*/
|
|
1552
|
-
export interface ClubPlayerDetailResponse {
|
|
1553
|
-
/**
|
|
1554
|
-
* ID du joueur
|
|
1555
|
-
* @type {string}
|
|
1556
|
-
* @memberof ClubPlayerDetailResponse
|
|
1557
|
-
*/
|
|
1558
|
-
'id': string;
|
|
1559
|
-
/**
|
|
1560
|
-
* Nom complet
|
|
1561
|
-
* @type {string}
|
|
1562
|
-
* @memberof ClubPlayerDetailResponse
|
|
1563
|
-
*/
|
|
1564
|
-
'name': string;
|
|
1565
|
-
/**
|
|
1566
|
-
* Prénom
|
|
1567
|
-
* @type {string}
|
|
1568
|
-
* @memberof ClubPlayerDetailResponse
|
|
1569
|
-
*/
|
|
1570
|
-
'firstName': string;
|
|
1571
|
-
/**
|
|
1572
|
-
* Nom
|
|
1573
|
-
* @type {string}
|
|
1574
|
-
* @memberof ClubPlayerDetailResponse
|
|
1575
|
-
*/
|
|
1576
|
-
'lastName': string;
|
|
1577
|
-
/**
|
|
1578
|
-
* Email
|
|
1579
|
-
* @type {string}
|
|
1580
|
-
* @memberof ClubPlayerDetailResponse
|
|
1581
|
-
*/
|
|
1582
|
-
'email': string;
|
|
1583
|
-
/**
|
|
1584
|
-
* Numéro de téléphone
|
|
1585
|
-
* @type {string}
|
|
1586
|
-
* @memberof ClubPlayerDetailResponse
|
|
1587
|
-
*/
|
|
1588
|
-
'phoneNumber': string | null;
|
|
1589
|
-
/**
|
|
1590
|
-
* URL de la photo de profil
|
|
1591
|
-
* @type {string}
|
|
1592
|
-
* @memberof ClubPlayerDetailResponse
|
|
1593
|
-
*/
|
|
1594
|
-
'profilePictureUrl': string | null;
|
|
1595
|
-
/**
|
|
1596
|
-
* Compte vérifié
|
|
1597
|
-
* @type {boolean}
|
|
1598
|
-
* @memberof ClubPlayerDetailResponse
|
|
1599
|
-
*/
|
|
1600
|
-
'isAccountVerified': boolean;
|
|
1601
|
-
/**
|
|
1602
|
-
* Abonnements au club courant
|
|
1603
|
-
* @type {Array<ClubPlayerSubscriptionSummary>}
|
|
1604
|
-
* @memberof ClubPlayerDetailResponse
|
|
1605
|
-
*/
|
|
1606
|
-
'subscriptionsToMyClub': Array<ClubPlayerSubscriptionSummary>;
|
|
1607
|
-
/**
|
|
1608
|
-
* Description du profil
|
|
1609
|
-
* @type {string}
|
|
1610
|
-
* @memberof ClubPlayerDetailResponse
|
|
1611
|
-
*/
|
|
1612
|
-
'profileDescription': string | null;
|
|
1613
|
-
/**
|
|
1614
|
-
* Genre
|
|
1615
|
-
* @type {string}
|
|
1616
|
-
* @memberof ClubPlayerDetailResponse
|
|
1617
|
-
*/
|
|
1618
|
-
'gender': string | null;
|
|
1619
|
-
/**
|
|
1620
|
-
* Ville
|
|
1621
|
-
* @type {string}
|
|
1622
|
-
* @memberof ClubPlayerDetailResponse
|
|
1623
|
-
*/
|
|
1624
|
-
'city': string | null;
|
|
1625
|
-
/**
|
|
1626
|
-
* Niveaux par sport
|
|
1627
|
-
* @type {Array<ClubPlayerDetailResponseSportsLevelsInner>}
|
|
1628
|
-
* @memberof ClubPlayerDetailResponse
|
|
1629
|
-
*/
|
|
1630
|
-
'sportsLevels': Array<ClubPlayerDetailResponseSportsLevelsInner>;
|
|
1631
|
-
/**
|
|
1632
|
-
* Date de naissance
|
|
1633
|
-
* @type {string}
|
|
1634
|
-
* @memberof ClubPlayerDetailResponse
|
|
1635
|
-
*/
|
|
1636
|
-
'birthDate': string | null;
|
|
1637
|
-
}
|
|
1638
|
-
/**
|
|
1639
|
-
*
|
|
1640
|
-
* @export
|
|
1641
|
-
* @interface ClubPlayerDetailResponseSportsLevelsInner
|
|
1642
|
-
*/
|
|
1643
|
-
export interface ClubPlayerDetailResponseSportsLevelsInner {
|
|
1644
|
-
/**
|
|
1645
|
-
*
|
|
1646
|
-
* @type {string}
|
|
1647
|
-
* @memberof ClubPlayerDetailResponseSportsLevelsInner
|
|
1648
|
-
*/
|
|
1649
|
-
'level': string | null;
|
|
1650
|
-
/**
|
|
1651
|
-
*
|
|
1652
|
-
* @type {string}
|
|
1653
|
-
* @memberof ClubPlayerDetailResponseSportsLevelsInner
|
|
1654
|
-
*/
|
|
1655
|
-
'sport': string | null;
|
|
1656
|
-
}
|
|
1657
|
-
/**
|
|
1658
|
-
*
|
|
1659
|
-
* @export
|
|
1660
|
-
* @interface ClubPlayerResponse
|
|
1661
|
-
*/
|
|
1662
|
-
export interface ClubPlayerResponse {
|
|
1663
|
-
/**
|
|
1664
|
-
* ID de l\'utilisateur
|
|
1665
|
-
* @type {string}
|
|
1666
|
-
* @memberof ClubPlayerResponse
|
|
1667
|
-
*/
|
|
1668
|
-
'id': string;
|
|
1669
|
-
/**
|
|
1670
|
-
* Prénom
|
|
1671
|
-
* @type {string}
|
|
1672
|
-
* @memberof ClubPlayerResponse
|
|
1673
|
-
*/
|
|
1674
|
-
'firstName': string;
|
|
1675
|
-
/**
|
|
1676
|
-
* Nom
|
|
1677
|
-
* @type {string}
|
|
1678
|
-
* @memberof ClubPlayerResponse
|
|
1679
|
-
*/
|
|
1680
|
-
'lastName': string;
|
|
1681
|
-
/**
|
|
1682
|
-
* Genre
|
|
1683
|
-
* @type {string}
|
|
1684
|
-
* @memberof ClubPlayerResponse
|
|
1685
|
-
*/
|
|
1686
|
-
'gender'?: string;
|
|
1687
|
-
/**
|
|
1688
|
-
* Email
|
|
1689
|
-
* @type {string}
|
|
1690
|
-
* @memberof ClubPlayerResponse
|
|
1691
|
-
*/
|
|
1692
|
-
'email': string;
|
|
1693
|
-
/**
|
|
1694
|
-
* Photo de profil
|
|
1695
|
-
* @type {string}
|
|
1696
|
-
* @memberof ClubPlayerResponse
|
|
1697
|
-
*/
|
|
1698
|
-
'profilePicture'?: string;
|
|
1699
|
-
/**
|
|
1700
|
-
* Compte vérifié
|
|
1701
|
-
* @type {boolean}
|
|
1702
|
-
* @memberof ClubPlayerResponse
|
|
1703
|
-
*/
|
|
1704
|
-
'isAccountVerified': boolean;
|
|
1705
|
-
/**
|
|
1706
|
-
* Profil visible
|
|
1707
|
-
* @type {boolean}
|
|
1708
|
-
* @memberof ClubPlayerResponse
|
|
1709
|
-
*/
|
|
1710
|
-
'isProfileVisible': boolean;
|
|
1711
|
-
/**
|
|
1712
|
-
* Abonné au club
|
|
1713
|
-
* @type {boolean}
|
|
1714
|
-
* @memberof ClubPlayerResponse
|
|
1715
|
-
*/
|
|
1716
|
-
'isSubscribedToClub': boolean;
|
|
1717
|
-
}
|
|
1718
|
-
/**
|
|
1719
|
-
*
|
|
1720
|
-
* @export
|
|
1721
|
-
* @interface ClubPlayerStatisticsResponse
|
|
1722
|
-
*/
|
|
1723
|
-
export interface ClubPlayerStatisticsResponse {
|
|
1724
|
-
/**
|
|
1725
|
-
* Nombre total de réservations (tous clubs confondus)
|
|
1726
|
-
* @type {number}
|
|
1727
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1728
|
-
*/
|
|
1729
|
-
'totalBookings': number;
|
|
1730
|
-
/**
|
|
1731
|
-
* Nombre total de réservations dans le club courant
|
|
1732
|
-
* @type {number}
|
|
1733
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1734
|
-
*/
|
|
1735
|
-
'totalBookingsInMyClub': number;
|
|
1736
|
-
/**
|
|
1737
|
-
* Somme totale dépensée dans le club courant (centimes)
|
|
1738
|
-
* @type {number}
|
|
1739
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1740
|
-
*/
|
|
1741
|
-
'totalSpentAmount': number;
|
|
1742
|
-
/**
|
|
1743
|
-
* Sport le plus pratiqué dans le club courant
|
|
1744
|
-
* @type {string}
|
|
1745
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1746
|
-
*/
|
|
1747
|
-
'favoriteSport': string | null;
|
|
1748
|
-
/**
|
|
1749
|
-
* Temps moyen entre la réservation et le début du créneau (heures)
|
|
1750
|
-
* @type {number}
|
|
1751
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1752
|
-
*/
|
|
1753
|
-
'averageBookingLeadTimeHours': number | null;
|
|
1754
|
-
/**
|
|
1755
|
-
* Taux d\'annulation dans le club courant (0-1)
|
|
1756
|
-
* @type {number}
|
|
1757
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1758
|
-
*/
|
|
1759
|
-
'bookingCancellationRate': number;
|
|
1760
|
-
/**
|
|
1761
|
-
* Nombre d\'abonnements actifs au club courant
|
|
1762
|
-
* @type {number}
|
|
1763
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1764
|
-
*/
|
|
1765
|
-
'activeSubscriptionsToMyClub': number;
|
|
1766
|
-
/**
|
|
1767
|
-
* Heure de créneau favorite dans le club courant (format HH:00)
|
|
1768
|
-
* @type {string}
|
|
1769
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1770
|
-
*/
|
|
1771
|
-
'favoriteTimeSlot': string | null;
|
|
1772
|
-
/**
|
|
1773
|
-
*
|
|
1774
|
-
* @type {ClubPlayerStatisticsResponseFavoriteClub}
|
|
1775
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1776
|
-
*/
|
|
1777
|
-
'favoriteClub': ClubPlayerStatisticsResponseFavoriteClub | null;
|
|
1778
|
-
/**
|
|
1779
|
-
*
|
|
1780
|
-
* @type {ClubPlayerStatisticsResponseMostPlayedClub}
|
|
1781
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1782
|
-
*/
|
|
1783
|
-
'mostPlayedClub': ClubPlayerStatisticsResponseMostPlayedClub | null;
|
|
1784
|
-
/**
|
|
1785
|
-
* Évolution quotidienne des montants dépensés ce mois-ci
|
|
1786
|
-
* @type {Array<ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner>}
|
|
1787
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1788
|
-
*/
|
|
1789
|
-
'bookingAmountEvolutionThisMonth': Array<ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner>;
|
|
1790
|
-
/**
|
|
1791
|
-
* Joueurs les plus joués dans le club courant
|
|
1792
|
-
* @type {Array<ClubPlayerStatisticsResponseMostPlayedPartnersInner>}
|
|
1793
|
-
* @memberof ClubPlayerStatisticsResponse
|
|
1794
|
-
*/
|
|
1795
|
-
'mostPlayedPartners': Array<ClubPlayerStatisticsResponseMostPlayedPartnersInner>;
|
|
1796
|
-
}
|
|
1797
|
-
/**
|
|
1798
|
-
*
|
|
1799
|
-
* @export
|
|
1800
|
-
* @interface ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner
|
|
1801
|
-
*/
|
|
1802
|
-
export interface ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner {
|
|
1803
|
-
/**
|
|
1804
|
-
*
|
|
1805
|
-
* @type {number}
|
|
1806
|
-
* @memberof ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner
|
|
1807
|
-
*/
|
|
1808
|
-
'amount': number;
|
|
1809
|
-
/**
|
|
1810
|
-
*
|
|
1811
|
-
* @type {number}
|
|
1812
|
-
* @memberof ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner
|
|
1813
|
-
*/
|
|
1814
|
-
'day': number;
|
|
1815
|
-
}
|
|
1816
|
-
/**
|
|
1817
|
-
* Club favori selon le profil utilisateur
|
|
1818
|
-
* @export
|
|
1819
|
-
* @interface ClubPlayerStatisticsResponseFavoriteClub
|
|
1820
|
-
*/
|
|
1821
|
-
export interface ClubPlayerStatisticsResponseFavoriteClub {
|
|
1822
|
-
/**
|
|
1823
|
-
*
|
|
1824
|
-
* @type {string}
|
|
1825
|
-
* @memberof ClubPlayerStatisticsResponseFavoriteClub
|
|
1826
|
-
*/
|
|
1827
|
-
'name': string | null;
|
|
1828
|
-
/**
|
|
1829
|
-
*
|
|
1830
|
-
* @type {string}
|
|
1831
|
-
* @memberof ClubPlayerStatisticsResponseFavoriteClub
|
|
1832
|
-
*/
|
|
1833
|
-
'clubId': string;
|
|
1834
|
-
}
|
|
1835
|
-
/**
|
|
1836
|
-
* Club où le joueur a le plus joué
|
|
1837
|
-
* @export
|
|
1838
|
-
* @interface ClubPlayerStatisticsResponseMostPlayedClub
|
|
1839
|
-
*/
|
|
1840
|
-
export interface ClubPlayerStatisticsResponseMostPlayedClub {
|
|
1841
|
-
/**
|
|
1842
|
-
*
|
|
1843
|
-
* @type {number}
|
|
1844
|
-
* @memberof ClubPlayerStatisticsResponseMostPlayedClub
|
|
1845
|
-
*/
|
|
1846
|
-
'bookingsCount': number;
|
|
1847
|
-
/**
|
|
1848
|
-
*
|
|
1849
|
-
* @type {string}
|
|
1850
|
-
* @memberof ClubPlayerStatisticsResponseMostPlayedClub
|
|
1851
|
-
*/
|
|
1852
|
-
'name': string | null;
|
|
1853
|
-
/**
|
|
1854
|
-
*
|
|
1855
|
-
* @type {string}
|
|
1856
|
-
* @memberof ClubPlayerStatisticsResponseMostPlayedClub
|
|
1857
|
-
*/
|
|
1858
|
-
'clubId': string;
|
|
1859
|
-
}
|
|
1860
|
-
/**
|
|
1861
|
-
*
|
|
1862
|
-
* @export
|
|
1863
|
-
* @interface ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
1864
|
-
*/
|
|
1865
|
-
export interface ClubPlayerStatisticsResponseMostPlayedPartnersInner {
|
|
1866
|
-
/**
|
|
1867
|
-
*
|
|
1868
|
-
* @type {number}
|
|
1869
|
-
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
1870
|
-
*/
|
|
1871
|
-
'bookingsTogether': number;
|
|
1872
|
-
/**
|
|
1873
|
-
*
|
|
1874
|
-
* @type {string}
|
|
1875
|
-
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
1876
|
-
*/
|
|
1877
|
-
'lastName': string | null;
|
|
1878
|
-
/**
|
|
1879
|
-
*
|
|
1880
|
-
* @type {string}
|
|
1881
|
-
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
1882
|
-
*/
|
|
1883
|
-
'firstName': string | null;
|
|
1884
|
-
/**
|
|
1885
|
-
*
|
|
1886
|
-
* @type {string}
|
|
1887
|
-
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
1888
|
-
*/
|
|
1889
|
-
'userId': string;
|
|
1890
|
-
}
|
|
1891
|
-
/**
|
|
1892
|
-
*
|
|
1893
|
-
* @export
|
|
1894
|
-
* @interface ClubPlayerSubscriptionSummary
|
|
1895
|
-
*/
|
|
1896
|
-
export interface ClubPlayerSubscriptionSummary {
|
|
1897
|
-
/**
|
|
1898
|
-
* ID du plan d\'abonnement
|
|
1899
|
-
* @type {string}
|
|
1900
|
-
* @memberof ClubPlayerSubscriptionSummary
|
|
1901
|
-
*/
|
|
1902
|
-
'id': string;
|
|
1903
|
-
/**
|
|
1904
|
-
* Nom du plan
|
|
1905
|
-
* @type {string}
|
|
1906
|
-
* @memberof ClubPlayerSubscriptionSummary
|
|
1907
|
-
*/
|
|
1908
|
-
'name': string | null;
|
|
1293
|
+
}
|
|
1294
|
+
/**
|
|
1295
|
+
*
|
|
1296
|
+
* @export
|
|
1297
|
+
* @interface ClubMemberResponse
|
|
1298
|
+
*/
|
|
1299
|
+
export interface ClubMemberResponse {
|
|
1909
1300
|
/**
|
|
1910
|
-
*
|
|
1911
|
-
* @type {
|
|
1912
|
-
* @memberof
|
|
1301
|
+
*
|
|
1302
|
+
* @type {ClubMemberResponseUser}
|
|
1303
|
+
* @memberof ClubMemberResponse
|
|
1913
1304
|
*/
|
|
1914
|
-
'
|
|
1305
|
+
'user': ClubMemberResponseUser;
|
|
1915
1306
|
/**
|
|
1916
|
-
*
|
|
1307
|
+
* Rôle du membre dans le club
|
|
1917
1308
|
* @type {string}
|
|
1918
|
-
* @memberof
|
|
1309
|
+
* @memberof ClubMemberResponse
|
|
1919
1310
|
*/
|
|
1920
|
-
'
|
|
1311
|
+
'role': string;
|
|
1921
1312
|
/**
|
|
1922
|
-
*
|
|
1923
|
-
* @type {string}
|
|
1924
|
-
* @memberof
|
|
1313
|
+
* Droits du membre dans le club
|
|
1314
|
+
* @type {Array<string>}
|
|
1315
|
+
* @memberof ClubMemberResponse
|
|
1925
1316
|
*/
|
|
1926
|
-
'
|
|
1317
|
+
'rights': Array<string>;
|
|
1927
1318
|
}
|
|
1928
1319
|
/**
|
|
1929
|
-
*
|
|
1320
|
+
* Utilisateur (membre)
|
|
1930
1321
|
* @export
|
|
1931
|
-
* @interface
|
|
1322
|
+
* @interface ClubMemberResponseUser
|
|
1932
1323
|
*/
|
|
1933
|
-
export interface
|
|
1324
|
+
export interface ClubMemberResponseUser {
|
|
1934
1325
|
/**
|
|
1935
1326
|
*
|
|
1936
1327
|
* @type {string}
|
|
1937
|
-
* @memberof
|
|
1328
|
+
* @memberof ClubMemberResponseUser
|
|
1938
1329
|
*/
|
|
1939
|
-
'
|
|
1330
|
+
'email': string;
|
|
1940
1331
|
/**
|
|
1941
1332
|
*
|
|
1942
|
-
* @type {
|
|
1943
|
-
* @memberof
|
|
1333
|
+
* @type {string}
|
|
1334
|
+
* @memberof ClubMemberResponseUser
|
|
1944
1335
|
*/
|
|
1945
|
-
'
|
|
1336
|
+
'lastName': string;
|
|
1946
1337
|
/**
|
|
1947
1338
|
*
|
|
1948
|
-
* @type {
|
|
1949
|
-
* @memberof
|
|
1339
|
+
* @type {string}
|
|
1340
|
+
* @memberof ClubMemberResponseUser
|
|
1950
1341
|
*/
|
|
1951
|
-
'
|
|
1342
|
+
'firstName': string;
|
|
1952
1343
|
/**
|
|
1953
1344
|
*
|
|
1954
|
-
* @type {
|
|
1955
|
-
* @memberof
|
|
1345
|
+
* @type {string}
|
|
1346
|
+
* @memberof ClubMemberResponseUser
|
|
1956
1347
|
*/
|
|
1957
|
-
'
|
|
1348
|
+
'id': string;
|
|
1958
1349
|
}
|
|
1959
1350
|
/**
|
|
1960
1351
|
*
|
|
1961
1352
|
* @export
|
|
1962
|
-
* @interface
|
|
1353
|
+
* @interface ClubPlayerResponse
|
|
1963
1354
|
*/
|
|
1964
|
-
export interface
|
|
1355
|
+
export interface ClubPlayerResponse {
|
|
1965
1356
|
/**
|
|
1966
|
-
*
|
|
1357
|
+
* ID de l\'utilisateur
|
|
1967
1358
|
* @type {string}
|
|
1968
|
-
* @memberof
|
|
1359
|
+
* @memberof ClubPlayerResponse
|
|
1969
1360
|
*/
|
|
1970
1361
|
'id': string;
|
|
1971
1362
|
/**
|
|
1972
|
-
*
|
|
1363
|
+
* Prénom
|
|
1973
1364
|
* @type {string}
|
|
1974
|
-
* @memberof
|
|
1975
|
-
*/
|
|
1976
|
-
'name': string;
|
|
1977
|
-
/**
|
|
1978
|
-
*
|
|
1979
|
-
* @type {Array<string>}
|
|
1980
|
-
* @memberof ClubPricingPeriodResponse
|
|
1365
|
+
* @memberof ClubPlayerResponse
|
|
1981
1366
|
*/
|
|
1982
|
-
'
|
|
1367
|
+
'firstName': string;
|
|
1983
1368
|
/**
|
|
1984
|
-
*
|
|
1369
|
+
* Nom
|
|
1985
1370
|
* @type {string}
|
|
1986
|
-
* @memberof
|
|
1371
|
+
* @memberof ClubPlayerResponse
|
|
1987
1372
|
*/
|
|
1988
|
-
'
|
|
1373
|
+
'lastName': string;
|
|
1989
1374
|
/**
|
|
1990
|
-
*
|
|
1375
|
+
* Genre
|
|
1991
1376
|
* @type {string}
|
|
1992
|
-
* @memberof
|
|
1377
|
+
* @memberof ClubPlayerResponse
|
|
1993
1378
|
*/
|
|
1994
|
-
'
|
|
1379
|
+
'gender'?: string;
|
|
1995
1380
|
/**
|
|
1996
|
-
*
|
|
1997
|
-
* @type {
|
|
1998
|
-
* @memberof
|
|
1381
|
+
* Email
|
|
1382
|
+
* @type {string}
|
|
1383
|
+
* @memberof ClubPlayerResponse
|
|
1999
1384
|
*/
|
|
2000
|
-
'
|
|
2001
|
-
}
|
|
2002
|
-
/**
|
|
2003
|
-
*
|
|
2004
|
-
* @export
|
|
2005
|
-
* @interface ClubReservationSettingsResponse
|
|
2006
|
-
*/
|
|
2007
|
-
export interface ClubReservationSettingsResponse {
|
|
1385
|
+
'email': string;
|
|
2008
1386
|
/**
|
|
2009
|
-
*
|
|
2010
|
-
* @type {
|
|
2011
|
-
* @memberof
|
|
1387
|
+
* Photo de profil
|
|
1388
|
+
* @type {string}
|
|
1389
|
+
* @memberof ClubPlayerResponse
|
|
2012
1390
|
*/
|
|
2013
|
-
'
|
|
1391
|
+
'profilePicture'?: string;
|
|
2014
1392
|
/**
|
|
2015
|
-
*
|
|
1393
|
+
* Compte vérifié
|
|
2016
1394
|
* @type {boolean}
|
|
2017
|
-
* @memberof
|
|
2018
|
-
*/
|
|
2019
|
-
'unlimitedWeeklyBookings': boolean;
|
|
2020
|
-
/**
|
|
2021
|
-
*
|
|
2022
|
-
* @type {number}
|
|
2023
|
-
* @memberof ClubReservationSettingsResponse
|
|
1395
|
+
* @memberof ClubPlayerResponse
|
|
2024
1396
|
*/
|
|
2025
|
-
'
|
|
1397
|
+
'isAccountVerified': boolean;
|
|
2026
1398
|
/**
|
|
2027
|
-
*
|
|
2028
|
-
* @type {
|
|
2029
|
-
* @memberof
|
|
1399
|
+
* Profil visible
|
|
1400
|
+
* @type {boolean}
|
|
1401
|
+
* @memberof ClubPlayerResponse
|
|
2030
1402
|
*/
|
|
2031
|
-
'
|
|
1403
|
+
'isProfileVisible': boolean;
|
|
2032
1404
|
/**
|
|
2033
|
-
*
|
|
2034
|
-
* @type {
|
|
2035
|
-
* @memberof
|
|
1405
|
+
* Abonné au club
|
|
1406
|
+
* @type {boolean}
|
|
1407
|
+
* @memberof ClubPlayerResponse
|
|
2036
1408
|
*/
|
|
2037
|
-
'
|
|
1409
|
+
'isSubscribedToClub': boolean;
|
|
2038
1410
|
}
|
|
2039
1411
|
/**
|
|
2040
1412
|
*
|
|
@@ -2288,6 +1660,73 @@ export declare const ClubRoleResponseRoleEnum: {
|
|
|
2288
1660
|
readonly Staff: "staff";
|
|
2289
1661
|
};
|
|
2290
1662
|
export type ClubRoleResponseRoleEnum = typeof ClubRoleResponseRoleEnum[keyof typeof ClubRoleResponseRoleEnum];
|
|
1663
|
+
/**
|
|
1664
|
+
* Types TSOA pour les paramètres du club
|
|
1665
|
+
* @export
|
|
1666
|
+
* @interface ClubSettingsResponse
|
|
1667
|
+
*/
|
|
1668
|
+
export interface ClubSettingsResponse {
|
|
1669
|
+
/**
|
|
1670
|
+
* ID unique des paramètres
|
|
1671
|
+
* @type {string}
|
|
1672
|
+
* @memberof ClubSettingsResponse
|
|
1673
|
+
*/
|
|
1674
|
+
'_id': string;
|
|
1675
|
+
/**
|
|
1676
|
+
* ID du club
|
|
1677
|
+
* @type {string}
|
|
1678
|
+
* @memberof ClubSettingsResponse
|
|
1679
|
+
*/
|
|
1680
|
+
'clubId': string;
|
|
1681
|
+
/**
|
|
1682
|
+
* Nombre maximum de réservations par semaine
|
|
1683
|
+
* @type {number}
|
|
1684
|
+
* @memberof ClubSettingsResponse
|
|
1685
|
+
*/
|
|
1686
|
+
'maxWeeklyBookings': number;
|
|
1687
|
+
/**
|
|
1688
|
+
* Limite de réservations simultanées
|
|
1689
|
+
* @type {number}
|
|
1690
|
+
* @memberof ClubSettingsResponse
|
|
1691
|
+
*/
|
|
1692
|
+
'sameTimeBookingsLimit'?: number;
|
|
1693
|
+
/**
|
|
1694
|
+
* Limite d\'annulation en heures
|
|
1695
|
+
* @type {number}
|
|
1696
|
+
* @memberof ClubSettingsResponse
|
|
1697
|
+
*/
|
|
1698
|
+
'cancellationLimitHours': number;
|
|
1699
|
+
/**
|
|
1700
|
+
* Période de disponibilité en jours
|
|
1701
|
+
* @type {number}
|
|
1702
|
+
* @memberof ClubSettingsResponse
|
|
1703
|
+
*/
|
|
1704
|
+
'availabilityPeriodInDays': number;
|
|
1705
|
+
/**
|
|
1706
|
+
* Liste des sponsors
|
|
1707
|
+
* @type {Array<string>}
|
|
1708
|
+
* @memberof ClubSettingsResponse
|
|
1709
|
+
*/
|
|
1710
|
+
'sponsors': Array<string>;
|
|
1711
|
+
/**
|
|
1712
|
+
* Temps avant paiement en minutes
|
|
1713
|
+
* @type {number}
|
|
1714
|
+
* @memberof ClubSettingsResponse
|
|
1715
|
+
*/
|
|
1716
|
+
'timeBeforePayment': number;
|
|
1717
|
+
/**
|
|
1718
|
+
* Date de création
|
|
1719
|
+
* @type {string}
|
|
1720
|
+
* @memberof ClubSettingsResponse
|
|
1721
|
+
*/
|
|
1722
|
+
'createdAt': string;
|
|
1723
|
+
/**
|
|
1724
|
+
* Date de mise à jour
|
|
1725
|
+
* @type {string}
|
|
1726
|
+
* @memberof ClubSettingsResponse
|
|
1727
|
+
*/
|
|
1728
|
+
'updatedAt': string;
|
|
1729
|
+
}
|
|
2291
1730
|
/**
|
|
2292
1731
|
*
|
|
2293
1732
|
* @export
|
|
@@ -2369,55 +1808,6 @@ export interface ClubUserCountResponse {
|
|
|
2369
1808
|
*/
|
|
2370
1809
|
'count': number;
|
|
2371
1810
|
}
|
|
2372
|
-
/**
|
|
2373
|
-
*
|
|
2374
|
-
* @export
|
|
2375
|
-
* @interface ClubWeeklySchedule
|
|
2376
|
-
*/
|
|
2377
|
-
export interface ClubWeeklySchedule {
|
|
2378
|
-
/**
|
|
2379
|
-
*
|
|
2380
|
-
* @type {ClubDaySchedule}
|
|
2381
|
-
* @memberof ClubWeeklySchedule
|
|
2382
|
-
*/
|
|
2383
|
-
'sunday': ClubDaySchedule | null;
|
|
2384
|
-
/**
|
|
2385
|
-
*
|
|
2386
|
-
* @type {ClubDaySchedule}
|
|
2387
|
-
* @memberof ClubWeeklySchedule
|
|
2388
|
-
*/
|
|
2389
|
-
'saturday': ClubDaySchedule | null;
|
|
2390
|
-
/**
|
|
2391
|
-
*
|
|
2392
|
-
* @type {ClubDaySchedule}
|
|
2393
|
-
* @memberof ClubWeeklySchedule
|
|
2394
|
-
*/
|
|
2395
|
-
'friday': ClubDaySchedule | null;
|
|
2396
|
-
/**
|
|
2397
|
-
*
|
|
2398
|
-
* @type {ClubDaySchedule}
|
|
2399
|
-
* @memberof ClubWeeklySchedule
|
|
2400
|
-
*/
|
|
2401
|
-
'thursday': ClubDaySchedule | null;
|
|
2402
|
-
/**
|
|
2403
|
-
*
|
|
2404
|
-
* @type {ClubDaySchedule}
|
|
2405
|
-
* @memberof ClubWeeklySchedule
|
|
2406
|
-
*/
|
|
2407
|
-
'wednesday': ClubDaySchedule | null;
|
|
2408
|
-
/**
|
|
2409
|
-
*
|
|
2410
|
-
* @type {ClubDaySchedule}
|
|
2411
|
-
* @memberof ClubWeeklySchedule
|
|
2412
|
-
*/
|
|
2413
|
-
'tuesday': ClubDaySchedule | null;
|
|
2414
|
-
/**
|
|
2415
|
-
*
|
|
2416
|
-
* @type {ClubDaySchedule}
|
|
2417
|
-
* @memberof ClubWeeklySchedule
|
|
2418
|
-
*/
|
|
2419
|
-
'monday': ClubDaySchedule | null;
|
|
2420
|
-
}
|
|
2421
1811
|
/**
|
|
2422
1812
|
*
|
|
2423
1813
|
* @export
|
|
@@ -2661,6 +2051,61 @@ export declare const CreateClubRoleRequestRoleEnum: {
|
|
|
2661
2051
|
readonly Staff: "staff";
|
|
2662
2052
|
};
|
|
2663
2053
|
export type CreateClubRoleRequestRoleEnum = typeof CreateClubRoleRequestRoleEnum[keyof typeof CreateClubRoleRequestRoleEnum];
|
|
2054
|
+
/**
|
|
2055
|
+
*
|
|
2056
|
+
* @export
|
|
2057
|
+
* @interface CreateClubSettingsRequest
|
|
2058
|
+
*/
|
|
2059
|
+
export interface CreateClubSettingsRequest {
|
|
2060
|
+
/**
|
|
2061
|
+
* ID du club
|
|
2062
|
+
* @type {string}
|
|
2063
|
+
* @memberof CreateClubSettingsRequest
|
|
2064
|
+
*/
|
|
2065
|
+
'clubId': string;
|
|
2066
|
+
/**
|
|
2067
|
+
* Nombre maximum de réservations par semaine
|
|
2068
|
+
* @type {number}
|
|
2069
|
+
* @memberof CreateClubSettingsRequest
|
|
2070
|
+
*/
|
|
2071
|
+
'maxWeeklyBookings'?: number;
|
|
2072
|
+
/**
|
|
2073
|
+
* Autoriser plusieurs réservations en même temps
|
|
2074
|
+
* @type {boolean}
|
|
2075
|
+
* @memberof CreateClubSettingsRequest
|
|
2076
|
+
*/
|
|
2077
|
+
'allowMultipleBookingsAtTheSameTime'?: boolean;
|
|
2078
|
+
/**
|
|
2079
|
+
* Limite de réservations simultanées
|
|
2080
|
+
* @type {number}
|
|
2081
|
+
* @memberof CreateClubSettingsRequest
|
|
2082
|
+
*/
|
|
2083
|
+
'sameTimeBookingsLimit'?: number;
|
|
2084
|
+
/**
|
|
2085
|
+
* Limite d\'annulation en heures
|
|
2086
|
+
* @type {number}
|
|
2087
|
+
* @memberof CreateClubSettingsRequest
|
|
2088
|
+
*/
|
|
2089
|
+
'cancellationLimitHours'?: number;
|
|
2090
|
+
/**
|
|
2091
|
+
* Période de disponibilité en jours
|
|
2092
|
+
* @type {number}
|
|
2093
|
+
* @memberof CreateClubSettingsRequest
|
|
2094
|
+
*/
|
|
2095
|
+
'availabilityPeriodInDays'?: number;
|
|
2096
|
+
/**
|
|
2097
|
+
* Liste des sponsors
|
|
2098
|
+
* @type {Array<string>}
|
|
2099
|
+
* @memberof CreateClubSettingsRequest
|
|
2100
|
+
*/
|
|
2101
|
+
'sponsors'?: Array<string>;
|
|
2102
|
+
/**
|
|
2103
|
+
* Temps avant paiement en minutes
|
|
2104
|
+
* @type {number}
|
|
2105
|
+
* @memberof CreateClubSettingsRequest
|
|
2106
|
+
*/
|
|
2107
|
+
'timeBeforePayment'?: number;
|
|
2108
|
+
}
|
|
2664
2109
|
/**
|
|
2665
2110
|
*
|
|
2666
2111
|
* @export
|
|
@@ -2773,10 +2218,10 @@ export interface CreateEventRequest {
|
|
|
2773
2218
|
'endDate': string;
|
|
2774
2219
|
/**
|
|
2775
2220
|
*
|
|
2776
|
-
* @type {Array<
|
|
2221
|
+
* @type {Array<EventResponseCourtsInner>}
|
|
2777
2222
|
* @memberof CreateEventRequest
|
|
2778
2223
|
*/
|
|
2779
|
-
'courts': Array<
|
|
2224
|
+
'courts': Array<EventResponseCourtsInner>;
|
|
2780
2225
|
/**
|
|
2781
2226
|
*
|
|
2782
2227
|
* @type {Array<string>}
|
|
@@ -2837,12 +2282,6 @@ export interface CreateEventRequest {
|
|
|
2837
2282
|
* @memberof CreateEventRequest
|
|
2838
2283
|
*/
|
|
2839
2284
|
'subscriberPrices'?: Array<SubscriberPrice>;
|
|
2840
|
-
/**
|
|
2841
|
-
*
|
|
2842
|
-
* @type {Array<number>}
|
|
2843
|
-
* @memberof CreateEventRequest
|
|
2844
|
-
*/
|
|
2845
|
-
'levels'?: Array<number>;
|
|
2846
2285
|
/**
|
|
2847
2286
|
*
|
|
2848
2287
|
* @type {string}
|
|
@@ -3134,6 +2573,19 @@ export interface DeleteClubRoleResponse {
|
|
|
3134
2573
|
*/
|
|
3135
2574
|
'message': string;
|
|
3136
2575
|
}
|
|
2576
|
+
/**
|
|
2577
|
+
*
|
|
2578
|
+
* @export
|
|
2579
|
+
* @interface DeleteClubSettingsResponse
|
|
2580
|
+
*/
|
|
2581
|
+
export interface DeleteClubSettingsResponse {
|
|
2582
|
+
/**
|
|
2583
|
+
* Message de confirmation
|
|
2584
|
+
* @type {string}
|
|
2585
|
+
* @memberof DeleteClubSettingsResponse
|
|
2586
|
+
*/
|
|
2587
|
+
'message': string;
|
|
2588
|
+
}
|
|
3137
2589
|
/**
|
|
3138
2590
|
*
|
|
3139
2591
|
* @export
|
|
@@ -3254,10 +2706,10 @@ export interface EventResponse {
|
|
|
3254
2706
|
'endDate': string;
|
|
3255
2707
|
/**
|
|
3256
2708
|
*
|
|
3257
|
-
* @type {Array<
|
|
2709
|
+
* @type {Array<EventResponseCourtsInner>}
|
|
3258
2710
|
* @memberof EventResponse
|
|
3259
2711
|
*/
|
|
3260
|
-
'courts': Array<
|
|
2712
|
+
'courts': Array<EventResponseCourtsInner>;
|
|
3261
2713
|
/**
|
|
3262
2714
|
*
|
|
3263
2715
|
* @type {Array<SportWithLevels>}
|
|
@@ -3372,6 +2824,13 @@ export declare const EventResponseVisibilityTypeEnum: {
|
|
|
3372
2824
|
readonly Invitation: "invitation";
|
|
3373
2825
|
};
|
|
3374
2826
|
export type EventResponseVisibilityTypeEnum = typeof EventResponseVisibilityTypeEnum[keyof typeof EventResponseVisibilityTypeEnum];
|
|
2827
|
+
/**
|
|
2828
|
+
*
|
|
2829
|
+
* @export
|
|
2830
|
+
* @interface EventResponseCourtsInner
|
|
2831
|
+
*/
|
|
2832
|
+
export interface EventResponseCourtsInner {
|
|
2833
|
+
}
|
|
3375
2834
|
/**
|
|
3376
2835
|
*
|
|
3377
2836
|
* @export
|
|
@@ -4685,55 +4144,6 @@ export interface PartialClubResponse {
|
|
|
4685
4144
|
*/
|
|
4686
4145
|
'updatedAt'?: ClubResponseUpdatedAt;
|
|
4687
4146
|
}
|
|
4688
|
-
/**
|
|
4689
|
-
* Make all properties in T optional
|
|
4690
|
-
* @export
|
|
4691
|
-
* @interface PartialClubWeeklySchedule
|
|
4692
|
-
*/
|
|
4693
|
-
export interface PartialClubWeeklySchedule {
|
|
4694
|
-
/**
|
|
4695
|
-
*
|
|
4696
|
-
* @type {ClubDaySchedule}
|
|
4697
|
-
* @memberof PartialClubWeeklySchedule
|
|
4698
|
-
*/
|
|
4699
|
-
'monday'?: ClubDaySchedule;
|
|
4700
|
-
/**
|
|
4701
|
-
*
|
|
4702
|
-
* @type {ClubDaySchedule}
|
|
4703
|
-
* @memberof PartialClubWeeklySchedule
|
|
4704
|
-
*/
|
|
4705
|
-
'tuesday'?: ClubDaySchedule;
|
|
4706
|
-
/**
|
|
4707
|
-
*
|
|
4708
|
-
* @type {ClubDaySchedule}
|
|
4709
|
-
* @memberof PartialClubWeeklySchedule
|
|
4710
|
-
*/
|
|
4711
|
-
'wednesday'?: ClubDaySchedule;
|
|
4712
|
-
/**
|
|
4713
|
-
*
|
|
4714
|
-
* @type {ClubDaySchedule}
|
|
4715
|
-
* @memberof PartialClubWeeklySchedule
|
|
4716
|
-
*/
|
|
4717
|
-
'thursday'?: ClubDaySchedule;
|
|
4718
|
-
/**
|
|
4719
|
-
*
|
|
4720
|
-
* @type {ClubDaySchedule}
|
|
4721
|
-
* @memberof PartialClubWeeklySchedule
|
|
4722
|
-
*/
|
|
4723
|
-
'friday'?: ClubDaySchedule;
|
|
4724
|
-
/**
|
|
4725
|
-
*
|
|
4726
|
-
* @type {ClubDaySchedule}
|
|
4727
|
-
* @memberof PartialClubWeeklySchedule
|
|
4728
|
-
*/
|
|
4729
|
-
'saturday'?: ClubDaySchedule;
|
|
4730
|
-
/**
|
|
4731
|
-
*
|
|
4732
|
-
* @type {ClubDaySchedule}
|
|
4733
|
-
* @memberof PartialClubWeeklySchedule
|
|
4734
|
-
*/
|
|
4735
|
-
'sunday'?: ClubDaySchedule;
|
|
4736
|
-
}
|
|
4737
4147
|
/**
|
|
4738
4148
|
*
|
|
4739
4149
|
* @export
|
|
@@ -5815,7 +5225,7 @@ export interface SlotInfo {
|
|
|
5815
5225
|
* @type {CourtInfo}
|
|
5816
5226
|
* @memberof SlotInfo
|
|
5817
5227
|
*/
|
|
5818
|
-
'
|
|
5228
|
+
'courtId': CourtInfo;
|
|
5819
5229
|
}
|
|
5820
5230
|
/**
|
|
5821
5231
|
*
|
|
@@ -7579,111 +6989,6 @@ export interface UpdateActuality200Response {
|
|
|
7579
6989
|
*/
|
|
7580
6990
|
'actuality': any;
|
|
7581
6991
|
}
|
|
7582
|
-
/**
|
|
7583
|
-
*
|
|
7584
|
-
* @export
|
|
7585
|
-
* @interface UpdateClubGeneralSettingsRequest
|
|
7586
|
-
*/
|
|
7587
|
-
export interface UpdateClubGeneralSettingsRequest {
|
|
7588
|
-
/**
|
|
7589
|
-
*
|
|
7590
|
-
* @type {string}
|
|
7591
|
-
* @memberof UpdateClubGeneralSettingsRequest
|
|
7592
|
-
*/
|
|
7593
|
-
'name'?: string;
|
|
7594
|
-
/**
|
|
7595
|
-
*
|
|
7596
|
-
* @type {string}
|
|
7597
|
-
* @memberof UpdateClubGeneralSettingsRequest
|
|
7598
|
-
*/
|
|
7599
|
-
'email'?: string;
|
|
7600
|
-
/**
|
|
7601
|
-
*
|
|
7602
|
-
* @type {string}
|
|
7603
|
-
* @memberof UpdateClubGeneralSettingsRequest
|
|
7604
|
-
*/
|
|
7605
|
-
'phone'?: string;
|
|
7606
|
-
/**
|
|
7607
|
-
*
|
|
7608
|
-
* @type {string}
|
|
7609
|
-
* @memberof UpdateClubGeneralSettingsRequest
|
|
7610
|
-
*/
|
|
7611
|
-
'websiteUrl'?: string;
|
|
7612
|
-
/**
|
|
7613
|
-
*
|
|
7614
|
-
* @type {string}
|
|
7615
|
-
* @memberof UpdateClubGeneralSettingsRequest
|
|
7616
|
-
*/
|
|
7617
|
-
'description'?: string;
|
|
7618
|
-
/**
|
|
7619
|
-
*
|
|
7620
|
-
* @type {string}
|
|
7621
|
-
* @memberof UpdateClubGeneralSettingsRequest
|
|
7622
|
-
*/
|
|
7623
|
-
'rib'?: string | null;
|
|
7624
|
-
/**
|
|
7625
|
-
*
|
|
7626
|
-
* @type {string}
|
|
7627
|
-
* @memberof UpdateClubGeneralSettingsRequest
|
|
7628
|
-
*/
|
|
7629
|
-
'logo'?: string | null;
|
|
7630
|
-
/**
|
|
7631
|
-
*
|
|
7632
|
-
* @type {ClubLocationSettings}
|
|
7633
|
-
* @memberof UpdateClubGeneralSettingsRequest
|
|
7634
|
-
*/
|
|
7635
|
-
'location'?: ClubLocationSettings;
|
|
7636
|
-
}
|
|
7637
|
-
/**
|
|
7638
|
-
*
|
|
7639
|
-
* @export
|
|
7640
|
-
* @interface UpdateClubHoursSettingsRequest
|
|
7641
|
-
*/
|
|
7642
|
-
export interface UpdateClubHoursSettingsRequest {
|
|
7643
|
-
/**
|
|
7644
|
-
*
|
|
7645
|
-
* @type {PartialClubWeeklySchedule}
|
|
7646
|
-
* @memberof UpdateClubHoursSettingsRequest
|
|
7647
|
-
*/
|
|
7648
|
-
'schedule'?: PartialClubWeeklySchedule;
|
|
7649
|
-
/**
|
|
7650
|
-
*
|
|
7651
|
-
* @type {Array<ClubPricingPeriodResponse>}
|
|
7652
|
-
* @memberof UpdateClubHoursSettingsRequest
|
|
7653
|
-
*/
|
|
7654
|
-
'pricingPeriods'?: Array<ClubPricingPeriodResponse>;
|
|
7655
|
-
}
|
|
7656
|
-
/**
|
|
7657
|
-
*
|
|
7658
|
-
* @export
|
|
7659
|
-
* @interface UpdateClubPresentationSettingsRequest
|
|
7660
|
-
*/
|
|
7661
|
-
export interface UpdateClubPresentationSettingsRequest {
|
|
7662
|
-
/**
|
|
7663
|
-
*
|
|
7664
|
-
* @type {string}
|
|
7665
|
-
* @memberof UpdateClubPresentationSettingsRequest
|
|
7666
|
-
*/
|
|
7667
|
-
'description'?: string;
|
|
7668
|
-
/**
|
|
7669
|
-
*
|
|
7670
|
-
* @type {Array<string>}
|
|
7671
|
-
* @memberof UpdateClubPresentationSettingsRequest
|
|
7672
|
-
*/
|
|
7673
|
-
'tags'?: Array<string>;
|
|
7674
|
-
/**
|
|
7675
|
-
*
|
|
7676
|
-
* @type {Array<string | null>}
|
|
7677
|
-
* @memberof UpdateClubPresentationSettingsRequest
|
|
7678
|
-
*/
|
|
7679
|
-
'bannerImages'?: Array<string | null>;
|
|
7680
|
-
/**
|
|
7681
|
-
*
|
|
7682
|
-
* @type {Array<string | null>}
|
|
7683
|
-
* @memberof UpdateClubPresentationSettingsRequest
|
|
7684
|
-
*/
|
|
7685
|
-
'galleryImages'?: Array<string | null>;
|
|
7686
|
-
}
|
|
7687
6992
|
/**
|
|
7688
6993
|
*
|
|
7689
6994
|
* @export
|
|
@@ -7795,43 +7100,6 @@ export interface UpdateClubRequestLocationCoordinates {
|
|
|
7795
7100
|
*/
|
|
7796
7101
|
'lat'?: number;
|
|
7797
7102
|
}
|
|
7798
|
-
/**
|
|
7799
|
-
*
|
|
7800
|
-
* @export
|
|
7801
|
-
* @interface UpdateClubReservationSettingsRequest
|
|
7802
|
-
*/
|
|
7803
|
-
export interface UpdateClubReservationSettingsRequest {
|
|
7804
|
-
/**
|
|
7805
|
-
*
|
|
7806
|
-
* @type {number}
|
|
7807
|
-
* @memberof UpdateClubReservationSettingsRequest
|
|
7808
|
-
*/
|
|
7809
|
-
'maxWeeklyBookings': number | null;
|
|
7810
|
-
/**
|
|
7811
|
-
*
|
|
7812
|
-
* @type {boolean}
|
|
7813
|
-
* @memberof UpdateClubReservationSettingsRequest
|
|
7814
|
-
*/
|
|
7815
|
-
'unlimitedWeeklyBookings': boolean;
|
|
7816
|
-
/**
|
|
7817
|
-
*
|
|
7818
|
-
* @type {number}
|
|
7819
|
-
* @memberof UpdateClubReservationSettingsRequest
|
|
7820
|
-
*/
|
|
7821
|
-
'sameTimeBookingsLimit': number;
|
|
7822
|
-
/**
|
|
7823
|
-
*
|
|
7824
|
-
* @type {number}
|
|
7825
|
-
* @memberof UpdateClubReservationSettingsRequest
|
|
7826
|
-
*/
|
|
7827
|
-
'cancellationDelayInHours': number;
|
|
7828
|
-
/**
|
|
7829
|
-
*
|
|
7830
|
-
* @type {number}
|
|
7831
|
-
* @memberof UpdateClubReservationSettingsRequest
|
|
7832
|
-
*/
|
|
7833
|
-
'bookingPeriodInDays': number;
|
|
7834
|
-
}
|
|
7835
7103
|
/**
|
|
7836
7104
|
*
|
|
7837
7105
|
* @export
|
|
@@ -7857,6 +7125,55 @@ export declare const UpdateClubRoleRequestRoleEnum: {
|
|
|
7857
7125
|
readonly Staff: "staff";
|
|
7858
7126
|
};
|
|
7859
7127
|
export type UpdateClubRoleRequestRoleEnum = typeof UpdateClubRoleRequestRoleEnum[keyof typeof UpdateClubRoleRequestRoleEnum];
|
|
7128
|
+
/**
|
|
7129
|
+
*
|
|
7130
|
+
* @export
|
|
7131
|
+
* @interface UpdateClubSettingsRequest
|
|
7132
|
+
*/
|
|
7133
|
+
export interface UpdateClubSettingsRequest {
|
|
7134
|
+
/**
|
|
7135
|
+
* Nombre maximum de réservations par semaine
|
|
7136
|
+
* @type {number}
|
|
7137
|
+
* @memberof UpdateClubSettingsRequest
|
|
7138
|
+
*/
|
|
7139
|
+
'maxWeeklyBookings'?: number;
|
|
7140
|
+
/**
|
|
7141
|
+
* Autoriser plusieurs réservations en même temps
|
|
7142
|
+
* @type {boolean}
|
|
7143
|
+
* @memberof UpdateClubSettingsRequest
|
|
7144
|
+
*/
|
|
7145
|
+
'allowMultipleBookingsAtTheSameTime'?: boolean;
|
|
7146
|
+
/**
|
|
7147
|
+
* Limite de réservations simultanées
|
|
7148
|
+
* @type {number}
|
|
7149
|
+
* @memberof UpdateClubSettingsRequest
|
|
7150
|
+
*/
|
|
7151
|
+
'sameTimeBookingsLimit'?: number;
|
|
7152
|
+
/**
|
|
7153
|
+
* Limite d\'annulation en heures
|
|
7154
|
+
* @type {number}
|
|
7155
|
+
* @memberof UpdateClubSettingsRequest
|
|
7156
|
+
*/
|
|
7157
|
+
'cancellationLimitHours'?: number;
|
|
7158
|
+
/**
|
|
7159
|
+
* Période de disponibilité en jours
|
|
7160
|
+
* @type {number}
|
|
7161
|
+
* @memberof UpdateClubSettingsRequest
|
|
7162
|
+
*/
|
|
7163
|
+
'availabilityPeriodInDays'?: number;
|
|
7164
|
+
/**
|
|
7165
|
+
* Liste des sponsors
|
|
7166
|
+
* @type {Array<string>}
|
|
7167
|
+
* @memberof UpdateClubSettingsRequest
|
|
7168
|
+
*/
|
|
7169
|
+
'sponsors'?: Array<string>;
|
|
7170
|
+
/**
|
|
7171
|
+
* Temps avant paiement en minutes
|
|
7172
|
+
* @type {number}
|
|
7173
|
+
* @memberof UpdateClubSettingsRequest
|
|
7174
|
+
*/
|
|
7175
|
+
'timeBeforePayment'?: number;
|
|
7176
|
+
}
|
|
7860
7177
|
/**
|
|
7861
7178
|
*
|
|
7862
7179
|
* @export
|
|
@@ -7935,10 +7252,10 @@ export interface UpdateEventRequest {
|
|
|
7935
7252
|
'endDate'?: string;
|
|
7936
7253
|
/**
|
|
7937
7254
|
*
|
|
7938
|
-
* @type {Array<
|
|
7255
|
+
* @type {Array<EventResponseCourtsInner>}
|
|
7939
7256
|
* @memberof UpdateEventRequest
|
|
7940
7257
|
*/
|
|
7941
|
-
'courts'?: Array<
|
|
7258
|
+
'courts'?: Array<EventResponseCourtsInner>;
|
|
7942
7259
|
/**
|
|
7943
7260
|
*
|
|
7944
7261
|
* @type {Array<string>}
|
|
@@ -8234,6 +7551,74 @@ export interface UserBookingsResponse {
|
|
|
8234
7551
|
*/
|
|
8235
7552
|
'bookings': Array<BookingSummary>;
|
|
8236
7553
|
}
|
|
7554
|
+
/**
|
|
7555
|
+
*
|
|
7556
|
+
* @export
|
|
7557
|
+
* @interface UserClubMembership
|
|
7558
|
+
*/
|
|
7559
|
+
export interface UserClubMembership {
|
|
7560
|
+
/**
|
|
7561
|
+
*
|
|
7562
|
+
* @type {string}
|
|
7563
|
+
* @memberof UserClubMembership
|
|
7564
|
+
*/
|
|
7565
|
+
'clubId': string;
|
|
7566
|
+
/**
|
|
7567
|
+
*
|
|
7568
|
+
* @type {string}
|
|
7569
|
+
* @memberof UserClubMembership
|
|
7570
|
+
*/
|
|
7571
|
+
'clubName': string | null;
|
|
7572
|
+
/**
|
|
7573
|
+
*
|
|
7574
|
+
* @type {string}
|
|
7575
|
+
* @memberof UserClubMembership
|
|
7576
|
+
*/
|
|
7577
|
+
'clubPicture': string | null;
|
|
7578
|
+
/**
|
|
7579
|
+
*
|
|
7580
|
+
* @type {number}
|
|
7581
|
+
* @memberof UserClubMembership
|
|
7582
|
+
*/
|
|
7583
|
+
'bookingCount': number;
|
|
7584
|
+
/**
|
|
7585
|
+
*
|
|
7586
|
+
* @type {number}
|
|
7587
|
+
* @memberof UserClubMembership
|
|
7588
|
+
*/
|
|
7589
|
+
'credits': number;
|
|
7590
|
+
/**
|
|
7591
|
+
*
|
|
7592
|
+
* @type {string}
|
|
7593
|
+
* @memberof UserClubMembership
|
|
7594
|
+
*/
|
|
7595
|
+
'billingPortalUrl': string | null;
|
|
7596
|
+
/**
|
|
7597
|
+
*
|
|
7598
|
+
* @type {boolean}
|
|
7599
|
+
* @memberof UserClubMembership
|
|
7600
|
+
*/
|
|
7601
|
+
'hasActiveSubscription': boolean;
|
|
7602
|
+
/**
|
|
7603
|
+
*
|
|
7604
|
+
* @type {Array<UserClubSubscription>}
|
|
7605
|
+
* @memberof UserClubMembership
|
|
7606
|
+
*/
|
|
7607
|
+
'subscriptions': Array<UserClubSubscription>;
|
|
7608
|
+
}
|
|
7609
|
+
/**
|
|
7610
|
+
*
|
|
7611
|
+
* @export
|
|
7612
|
+
* @interface UserClubMembershipsResponse
|
|
7613
|
+
*/
|
|
7614
|
+
export interface UserClubMembershipsResponse {
|
|
7615
|
+
/**
|
|
7616
|
+
*
|
|
7617
|
+
* @type {Array<UserClubMembership>}
|
|
7618
|
+
* @memberof UserClubMembershipsResponse
|
|
7619
|
+
*/
|
|
7620
|
+
'clubs': Array<UserClubMembership>;
|
|
7621
|
+
}
|
|
8237
7622
|
/**
|
|
8238
7623
|
*
|
|
8239
7624
|
* @export
|
|
@@ -9564,29 +8949,6 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
9564
8949
|
* @throws {RequiredError}
|
|
9565
8950
|
*/
|
|
9566
8951
|
getAnalyticsBySport: (sportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9567
|
-
/**
|
|
9568
|
-
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
9569
|
-
* @param {string} playerId
|
|
9570
|
-
* @param {number} [page]
|
|
9571
|
-
* @param {number} [pageSize]
|
|
9572
|
-
* @param {*} [options] Override http request option.
|
|
9573
|
-
* @throws {RequiredError}
|
|
9574
|
-
*/
|
|
9575
|
-
getClubPlayerBookingsById: (playerId: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9576
|
-
/**
|
|
9577
|
-
* Récupère les informations détaillées d\'un joueur par son ID
|
|
9578
|
-
* @param {string} playerId
|
|
9579
|
-
* @param {*} [options] Override http request option.
|
|
9580
|
-
* @throws {RequiredError}
|
|
9581
|
-
*/
|
|
9582
|
-
getClubPlayerById: (playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9583
|
-
/**
|
|
9584
|
-
* Récupère les statistiques d\'un joueur pour le staff
|
|
9585
|
-
* @param {string} playerId
|
|
9586
|
-
* @param {*} [options] Override http request option.
|
|
9587
|
-
* @throws {RequiredError}
|
|
9588
|
-
*/
|
|
9589
|
-
getClubPlayerStatisticsById: (playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9590
8952
|
/**
|
|
9591
8953
|
* Récupère la liste des joueurs du club
|
|
9592
8954
|
* @param {*} [options] Override http request option.
|
|
@@ -9660,29 +9022,6 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
9660
9022
|
* @throws {RequiredError}
|
|
9661
9023
|
*/
|
|
9662
9024
|
getAnalyticsBySport(sportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SportAnalyticsResponse>>;
|
|
9663
|
-
/**
|
|
9664
|
-
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
9665
|
-
* @param {string} playerId
|
|
9666
|
-
* @param {number} [page]
|
|
9667
|
-
* @param {number} [pageSize]
|
|
9668
|
-
* @param {*} [options] Override http request option.
|
|
9669
|
-
* @throws {RequiredError}
|
|
9670
|
-
*/
|
|
9671
|
-
getClubPlayerBookingsById(playerId: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerBookingsResponse>>;
|
|
9672
|
-
/**
|
|
9673
|
-
* Récupère les informations détaillées d\'un joueur par son ID
|
|
9674
|
-
* @param {string} playerId
|
|
9675
|
-
* @param {*} [options] Override http request option.
|
|
9676
|
-
* @throws {RequiredError}
|
|
9677
|
-
*/
|
|
9678
|
-
getClubPlayerById(playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerDetailResponse>>;
|
|
9679
|
-
/**
|
|
9680
|
-
* Récupère les statistiques d\'un joueur pour le staff
|
|
9681
|
-
* @param {string} playerId
|
|
9682
|
-
* @param {*} [options] Override http request option.
|
|
9683
|
-
* @throws {RequiredError}
|
|
9684
|
-
*/
|
|
9685
|
-
getClubPlayerStatisticsById(playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerStatisticsResponse>>;
|
|
9686
9025
|
/**
|
|
9687
9026
|
* Récupère la liste des joueurs du club
|
|
9688
9027
|
* @param {*} [options] Override http request option.
|
|
@@ -9756,27 +9095,6 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
9756
9095
|
* @throws {RequiredError}
|
|
9757
9096
|
*/
|
|
9758
9097
|
getAnalyticsBySport(requestParameters: ClubAnalyticsStaffApiGetAnalyticsBySportRequest, options?: RawAxiosRequestConfig): AxiosPromise<SportAnalyticsResponse>;
|
|
9759
|
-
/**
|
|
9760
|
-
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
9761
|
-
* @param {ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest} requestParameters Request parameters.
|
|
9762
|
-
* @param {*} [options] Override http request option.
|
|
9763
|
-
* @throws {RequiredError}
|
|
9764
|
-
*/
|
|
9765
|
-
getClubPlayerBookingsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayerBookingsResponse>;
|
|
9766
|
-
/**
|
|
9767
|
-
* Récupère les informations détaillées d\'un joueur par son ID
|
|
9768
|
-
* @param {ClubAnalyticsStaffApiGetClubPlayerByIdRequest} requestParameters Request parameters.
|
|
9769
|
-
* @param {*} [options] Override http request option.
|
|
9770
|
-
* @throws {RequiredError}
|
|
9771
|
-
*/
|
|
9772
|
-
getClubPlayerById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayerDetailResponse>;
|
|
9773
|
-
/**
|
|
9774
|
-
* Récupère les statistiques d\'un joueur pour le staff
|
|
9775
|
-
* @param {ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest} requestParameters Request parameters.
|
|
9776
|
-
* @param {*} [options] Override http request option.
|
|
9777
|
-
* @throws {RequiredError}
|
|
9778
|
-
*/
|
|
9779
|
-
getClubPlayerStatisticsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayerStatisticsResponse>;
|
|
9780
9098
|
/**
|
|
9781
9099
|
* Récupère la liste des joueurs du club
|
|
9782
9100
|
* @param {*} [options] Override http request option.
|
|
@@ -9827,78 +9145,27 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
9827
9145
|
* @param {*} [options] Override http request option.
|
|
9828
9146
|
* @throws {RequiredError}
|
|
9829
9147
|
*/
|
|
9830
|
-
getTenNextBookings(options?: RawAxiosRequestConfig): AxiosPromise<Array<BookingAnalyticsResponse>>;
|
|
9831
|
-
/**
|
|
9832
|
-
* Récupère le chiffre d\'affaires annuel avec détail mensuel
|
|
9833
|
-
* @param {ClubAnalyticsStaffApiGetYearlyTurnOverRequest} requestParameters Request parameters.
|
|
9834
|
-
* @param {*} [options] Override http request option.
|
|
9835
|
-
* @throws {RequiredError}
|
|
9836
|
-
*/
|
|
9837
|
-
getYearlyTurnOver(requestParameters: ClubAnalyticsStaffApiGetYearlyTurnOverRequest, options?: RawAxiosRequestConfig): AxiosPromise<YearlyTurnoverResponse>;
|
|
9838
|
-
};
|
|
9839
|
-
/**
|
|
9840
|
-
* Request parameters for getAnalyticsBySport operation in ClubAnalyticsStaffApi.
|
|
9841
|
-
* @export
|
|
9842
|
-
* @interface ClubAnalyticsStaffApiGetAnalyticsBySportRequest
|
|
9843
|
-
*/
|
|
9844
|
-
export interface ClubAnalyticsStaffApiGetAnalyticsBySportRequest {
|
|
9845
|
-
/**
|
|
9846
|
-
*
|
|
9847
|
-
* @type {string}
|
|
9848
|
-
* @memberof ClubAnalyticsStaffApiGetAnalyticsBySport
|
|
9849
|
-
*/
|
|
9850
|
-
readonly sportId: string;
|
|
9851
|
-
}
|
|
9852
|
-
/**
|
|
9853
|
-
* Request parameters for getClubPlayerBookingsById operation in ClubAnalyticsStaffApi.
|
|
9854
|
-
* @export
|
|
9855
|
-
* @interface ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest
|
|
9856
|
-
*/
|
|
9857
|
-
export interface ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest {
|
|
9858
|
-
/**
|
|
9859
|
-
*
|
|
9860
|
-
* @type {string}
|
|
9861
|
-
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
9862
|
-
*/
|
|
9863
|
-
readonly playerId: string;
|
|
9864
|
-
/**
|
|
9865
|
-
*
|
|
9866
|
-
* @type {number}
|
|
9867
|
-
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
9868
|
-
*/
|
|
9869
|
-
readonly page?: number;
|
|
9870
|
-
/**
|
|
9871
|
-
*
|
|
9872
|
-
* @type {number}
|
|
9873
|
-
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
9874
|
-
*/
|
|
9875
|
-
readonly pageSize?: number;
|
|
9876
|
-
}
|
|
9877
|
-
/**
|
|
9878
|
-
* Request parameters for getClubPlayerById operation in ClubAnalyticsStaffApi.
|
|
9879
|
-
* @export
|
|
9880
|
-
* @interface ClubAnalyticsStaffApiGetClubPlayerByIdRequest
|
|
9881
|
-
*/
|
|
9882
|
-
export interface ClubAnalyticsStaffApiGetClubPlayerByIdRequest {
|
|
9148
|
+
getTenNextBookings(options?: RawAxiosRequestConfig): AxiosPromise<Array<BookingAnalyticsResponse>>;
|
|
9883
9149
|
/**
|
|
9884
|
-
*
|
|
9885
|
-
* @
|
|
9886
|
-
* @
|
|
9150
|
+
* Récupère le chiffre d\'affaires annuel avec détail mensuel
|
|
9151
|
+
* @param {ClubAnalyticsStaffApiGetYearlyTurnOverRequest} requestParameters Request parameters.
|
|
9152
|
+
* @param {*} [options] Override http request option.
|
|
9153
|
+
* @throws {RequiredError}
|
|
9887
9154
|
*/
|
|
9888
|
-
|
|
9889
|
-
}
|
|
9155
|
+
getYearlyTurnOver(requestParameters: ClubAnalyticsStaffApiGetYearlyTurnOverRequest, options?: RawAxiosRequestConfig): AxiosPromise<YearlyTurnoverResponse>;
|
|
9156
|
+
};
|
|
9890
9157
|
/**
|
|
9891
|
-
* Request parameters for
|
|
9158
|
+
* Request parameters for getAnalyticsBySport operation in ClubAnalyticsStaffApi.
|
|
9892
9159
|
* @export
|
|
9893
|
-
* @interface
|
|
9160
|
+
* @interface ClubAnalyticsStaffApiGetAnalyticsBySportRequest
|
|
9894
9161
|
*/
|
|
9895
|
-
export interface
|
|
9162
|
+
export interface ClubAnalyticsStaffApiGetAnalyticsBySportRequest {
|
|
9896
9163
|
/**
|
|
9897
9164
|
*
|
|
9898
9165
|
* @type {string}
|
|
9899
|
-
* @memberof
|
|
9166
|
+
* @memberof ClubAnalyticsStaffApiGetAnalyticsBySport
|
|
9900
9167
|
*/
|
|
9901
|
-
readonly
|
|
9168
|
+
readonly sportId: string;
|
|
9902
9169
|
}
|
|
9903
9170
|
/**
|
|
9904
9171
|
* Request parameters for getDailyTurnOver operation in ClubAnalyticsStaffApi.
|
|
@@ -9979,30 +9246,6 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
9979
9246
|
* @memberof ClubAnalyticsStaffApi
|
|
9980
9247
|
*/
|
|
9981
9248
|
getAnalyticsBySport(requestParameters: ClubAnalyticsStaffApiGetAnalyticsBySportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportAnalyticsResponse, any, {}>>;
|
|
9982
|
-
/**
|
|
9983
|
-
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
9984
|
-
* @param {ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest} requestParameters Request parameters.
|
|
9985
|
-
* @param {*} [options] Override http request option.
|
|
9986
|
-
* @throws {RequiredError}
|
|
9987
|
-
* @memberof ClubAnalyticsStaffApi
|
|
9988
|
-
*/
|
|
9989
|
-
getClubPlayerBookingsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayerBookingsResponse, any, {}>>;
|
|
9990
|
-
/**
|
|
9991
|
-
* Récupère les informations détaillées d\'un joueur par son ID
|
|
9992
|
-
* @param {ClubAnalyticsStaffApiGetClubPlayerByIdRequest} requestParameters Request parameters.
|
|
9993
|
-
* @param {*} [options] Override http request option.
|
|
9994
|
-
* @throws {RequiredError}
|
|
9995
|
-
* @memberof ClubAnalyticsStaffApi
|
|
9996
|
-
*/
|
|
9997
|
-
getClubPlayerById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayerDetailResponse, any, {}>>;
|
|
9998
|
-
/**
|
|
9999
|
-
* Récupère les statistiques d\'un joueur pour le staff
|
|
10000
|
-
* @param {ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest} requestParameters Request parameters.
|
|
10001
|
-
* @param {*} [options] Override http request option.
|
|
10002
|
-
* @throws {RequiredError}
|
|
10003
|
-
* @memberof ClubAnalyticsStaffApi
|
|
10004
|
-
*/
|
|
10005
|
-
getClubPlayerStatisticsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayerStatisticsResponse, any, {}>>;
|
|
10006
9249
|
/**
|
|
10007
9250
|
* Récupère la liste des joueurs du club
|
|
10008
9251
|
* @param {*} [options] Override http request option.
|
|
@@ -10355,33 +9598,32 @@ export declare class ClubRolesStaffApi extends BaseAPI {
|
|
|
10355
9598
|
*/
|
|
10356
9599
|
export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
10357
9600
|
/**
|
|
10358
|
-
*
|
|
10359
|
-
* @param {
|
|
9601
|
+
* Crée les paramètres d\'un club
|
|
9602
|
+
* @param {string} clubId
|
|
9603
|
+
* @param {CreateClubSettingsRequest} createClubSettingsRequest
|
|
10360
9604
|
* @param {*} [options] Override http request option.
|
|
10361
9605
|
* @throws {RequiredError}
|
|
10362
9606
|
*/
|
|
10363
|
-
|
|
9607
|
+
createClubSettings: (clubId: string, createClubSettingsRequest: CreateClubSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10364
9608
|
/**
|
|
10365
|
-
*
|
|
10366
|
-
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
9609
|
+
* Supprime les paramètres d\'un club
|
|
10367
9610
|
* @param {*} [options] Override http request option.
|
|
10368
9611
|
* @throws {RequiredError}
|
|
10369
9612
|
*/
|
|
10370
|
-
|
|
9613
|
+
deleteClubSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10371
9614
|
/**
|
|
10372
|
-
*
|
|
10373
|
-
* @param {ClubPresentationSettingsResponse} clubPresentationSettingsResponse
|
|
9615
|
+
* Récupère les paramètres d\'un club
|
|
10374
9616
|
* @param {*} [options] Override http request option.
|
|
10375
9617
|
* @throws {RequiredError}
|
|
10376
9618
|
*/
|
|
10377
|
-
|
|
9619
|
+
getClubSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10378
9620
|
/**
|
|
10379
|
-
*
|
|
10380
|
-
* @param {
|
|
9621
|
+
* Met à jour les paramètres d\'un club
|
|
9622
|
+
* @param {UpdateClubSettingsRequest} updateClubSettingsRequest
|
|
10381
9623
|
* @param {*} [options] Override http request option.
|
|
10382
9624
|
* @throws {RequiredError}
|
|
10383
9625
|
*/
|
|
10384
|
-
|
|
9626
|
+
updateClubSettings: (updateClubSettingsRequest: UpdateClubSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10385
9627
|
};
|
|
10386
9628
|
/**
|
|
10387
9629
|
* ClubSettingsManagerApi - functional programming interface
|
|
@@ -10389,33 +9631,32 @@ export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: C
|
|
|
10389
9631
|
*/
|
|
10390
9632
|
export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) => {
|
|
10391
9633
|
/**
|
|
10392
|
-
*
|
|
10393
|
-
* @param {
|
|
9634
|
+
* Crée les paramètres d\'un club
|
|
9635
|
+
* @param {string} clubId
|
|
9636
|
+
* @param {CreateClubSettingsRequest} createClubSettingsRequest
|
|
10394
9637
|
* @param {*} [options] Override http request option.
|
|
10395
9638
|
* @throws {RequiredError}
|
|
10396
9639
|
*/
|
|
10397
|
-
|
|
9640
|
+
createClubSettings(clubId: string, createClubSettingsRequest: CreateClubSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubSettingsResponse>>;
|
|
10398
9641
|
/**
|
|
10399
|
-
*
|
|
10400
|
-
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
9642
|
+
* Supprime les paramètres d\'un club
|
|
10401
9643
|
* @param {*} [options] Override http request option.
|
|
10402
9644
|
* @throws {RequiredError}
|
|
10403
9645
|
*/
|
|
10404
|
-
|
|
9646
|
+
deleteClubSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteClubSettingsResponse>>;
|
|
10405
9647
|
/**
|
|
10406
|
-
*
|
|
10407
|
-
* @param {ClubPresentationSettingsResponse} clubPresentationSettingsResponse
|
|
9648
|
+
* Récupère les paramètres d\'un club
|
|
10408
9649
|
* @param {*} [options] Override http request option.
|
|
10409
9650
|
* @throws {RequiredError}
|
|
10410
9651
|
*/
|
|
10411
|
-
|
|
9652
|
+
getClubSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubSettingsResponse>>;
|
|
10412
9653
|
/**
|
|
10413
|
-
*
|
|
10414
|
-
* @param {
|
|
9654
|
+
* Met à jour les paramètres d\'un club
|
|
9655
|
+
* @param {UpdateClubSettingsRequest} updateClubSettingsRequest
|
|
10415
9656
|
* @param {*} [options] Override http request option.
|
|
10416
9657
|
* @throws {RequiredError}
|
|
10417
9658
|
*/
|
|
10418
|
-
|
|
9659
|
+
updateClubSettings(updateClubSettingsRequest: UpdateClubSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubSettingsResponse>>;
|
|
10419
9660
|
};
|
|
10420
9661
|
/**
|
|
10421
9662
|
* ClubSettingsManagerApi - factory interface
|
|
@@ -10423,85 +9664,63 @@ export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) =
|
|
|
10423
9664
|
*/
|
|
10424
9665
|
export declare const ClubSettingsManagerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10425
9666
|
/**
|
|
10426
|
-
*
|
|
10427
|
-
* @param {
|
|
9667
|
+
* Crée les paramètres d\'un club
|
|
9668
|
+
* @param {ClubSettingsManagerApiCreateClubSettingsRequest} requestParameters Request parameters.
|
|
10428
9669
|
* @param {*} [options] Override http request option.
|
|
10429
9670
|
* @throws {RequiredError}
|
|
10430
9671
|
*/
|
|
10431
|
-
|
|
9672
|
+
createClubSettings(requestParameters: ClubSettingsManagerApiCreateClubSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubSettingsResponse>;
|
|
10432
9673
|
/**
|
|
10433
|
-
*
|
|
10434
|
-
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|
|
9674
|
+
* Supprime les paramètres d\'un club
|
|
10435
9675
|
* @param {*} [options] Override http request option.
|
|
10436
9676
|
* @throws {RequiredError}
|
|
10437
9677
|
*/
|
|
10438
|
-
|
|
9678
|
+
deleteClubSettings(options?: RawAxiosRequestConfig): AxiosPromise<DeleteClubSettingsResponse>;
|
|
10439
9679
|
/**
|
|
10440
|
-
*
|
|
10441
|
-
* @param {ClubSettingsManagerApiUpdatePresentationSettingsRequest} requestParameters Request parameters.
|
|
9680
|
+
* Récupère les paramètres d\'un club
|
|
10442
9681
|
* @param {*} [options] Override http request option.
|
|
10443
9682
|
* @throws {RequiredError}
|
|
10444
9683
|
*/
|
|
10445
|
-
|
|
9684
|
+
getClubSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubSettingsResponse>;
|
|
10446
9685
|
/**
|
|
10447
|
-
*
|
|
10448
|
-
* @param {
|
|
9686
|
+
* Met à jour les paramètres d\'un club
|
|
9687
|
+
* @param {ClubSettingsManagerApiUpdateClubSettingsRequest} requestParameters Request parameters.
|
|
10449
9688
|
* @param {*} [options] Override http request option.
|
|
10450
9689
|
* @throws {RequiredError}
|
|
10451
9690
|
*/
|
|
10452
|
-
|
|
9691
|
+
updateClubSettings(requestParameters: ClubSettingsManagerApiUpdateClubSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubSettingsResponse>;
|
|
10453
9692
|
};
|
|
10454
9693
|
/**
|
|
10455
|
-
* Request parameters for
|
|
10456
|
-
* @export
|
|
10457
|
-
* @interface ClubSettingsManagerApiUpdateClubGeneralSettingsRequest
|
|
10458
|
-
*/
|
|
10459
|
-
export interface ClubSettingsManagerApiUpdateClubGeneralSettingsRequest {
|
|
10460
|
-
/**
|
|
10461
|
-
*
|
|
10462
|
-
* @type {UpdateClubGeneralSettingsRequest}
|
|
10463
|
-
* @memberof ClubSettingsManagerApiUpdateClubGeneralSettings
|
|
10464
|
-
*/
|
|
10465
|
-
readonly updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest;
|
|
10466
|
-
}
|
|
10467
|
-
/**
|
|
10468
|
-
* Request parameters for updateHoursSettings operation in ClubSettingsManagerApi.
|
|
9694
|
+
* Request parameters for createClubSettings operation in ClubSettingsManagerApi.
|
|
10469
9695
|
* @export
|
|
10470
|
-
* @interface
|
|
9696
|
+
* @interface ClubSettingsManagerApiCreateClubSettingsRequest
|
|
10471
9697
|
*/
|
|
10472
|
-
export interface
|
|
9698
|
+
export interface ClubSettingsManagerApiCreateClubSettingsRequest {
|
|
10473
9699
|
/**
|
|
10474
9700
|
*
|
|
10475
|
-
* @type {
|
|
10476
|
-
* @memberof
|
|
9701
|
+
* @type {string}
|
|
9702
|
+
* @memberof ClubSettingsManagerApiCreateClubSettings
|
|
10477
9703
|
*/
|
|
10478
|
-
readonly
|
|
10479
|
-
}
|
|
10480
|
-
/**
|
|
10481
|
-
* Request parameters for updatePresentationSettings operation in ClubSettingsManagerApi.
|
|
10482
|
-
* @export
|
|
10483
|
-
* @interface ClubSettingsManagerApiUpdatePresentationSettingsRequest
|
|
10484
|
-
*/
|
|
10485
|
-
export interface ClubSettingsManagerApiUpdatePresentationSettingsRequest {
|
|
9704
|
+
readonly clubId: string;
|
|
10486
9705
|
/**
|
|
10487
9706
|
*
|
|
10488
|
-
* @type {
|
|
10489
|
-
* @memberof
|
|
9707
|
+
* @type {CreateClubSettingsRequest}
|
|
9708
|
+
* @memberof ClubSettingsManagerApiCreateClubSettings
|
|
10490
9709
|
*/
|
|
10491
|
-
readonly
|
|
9710
|
+
readonly createClubSettingsRequest: CreateClubSettingsRequest;
|
|
10492
9711
|
}
|
|
10493
9712
|
/**
|
|
10494
|
-
* Request parameters for
|
|
9713
|
+
* Request parameters for updateClubSettings operation in ClubSettingsManagerApi.
|
|
10495
9714
|
* @export
|
|
10496
|
-
* @interface
|
|
9715
|
+
* @interface ClubSettingsManagerApiUpdateClubSettingsRequest
|
|
10497
9716
|
*/
|
|
10498
|
-
export interface
|
|
9717
|
+
export interface ClubSettingsManagerApiUpdateClubSettingsRequest {
|
|
10499
9718
|
/**
|
|
10500
9719
|
*
|
|
10501
|
-
* @type {
|
|
10502
|
-
* @memberof
|
|
9720
|
+
* @type {UpdateClubSettingsRequest}
|
|
9721
|
+
* @memberof ClubSettingsManagerApiUpdateClubSettings
|
|
10503
9722
|
*/
|
|
10504
|
-
readonly
|
|
9723
|
+
readonly updateClubSettingsRequest: UpdateClubSettingsRequest;
|
|
10505
9724
|
}
|
|
10506
9725
|
/**
|
|
10507
9726
|
* ClubSettingsManagerApi - object-oriented interface
|
|
@@ -10511,163 +9730,35 @@ export interface ClubSettingsManagerApiUpdateReservationSettingsRequest {
|
|
|
10511
9730
|
*/
|
|
10512
9731
|
export declare class ClubSettingsManagerApi extends BaseAPI {
|
|
10513
9732
|
/**
|
|
10514
|
-
*
|
|
10515
|
-
* @param {
|
|
9733
|
+
* Crée les paramètres d\'un club
|
|
9734
|
+
* @param {ClubSettingsManagerApiCreateClubSettingsRequest} requestParameters Request parameters.
|
|
10516
9735
|
* @param {*} [options] Override http request option.
|
|
10517
9736
|
* @throws {RequiredError}
|
|
10518
9737
|
* @memberof ClubSettingsManagerApi
|
|
10519
9738
|
*/
|
|
10520
|
-
|
|
9739
|
+
createClubSettings(requestParameters: ClubSettingsManagerApiCreateClubSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubSettingsResponse, any, {}>>;
|
|
10521
9740
|
/**
|
|
10522
|
-
*
|
|
10523
|
-
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|
|
9741
|
+
* Supprime les paramètres d\'un club
|
|
10524
9742
|
* @param {*} [options] Override http request option.
|
|
10525
9743
|
* @throws {RequiredError}
|
|
10526
9744
|
* @memberof ClubSettingsManagerApi
|
|
10527
9745
|
*/
|
|
10528
|
-
|
|
9746
|
+
deleteClubSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteClubSettingsResponse, any, {}>>;
|
|
10529
9747
|
/**
|
|
10530
|
-
*
|
|
10531
|
-
* @param {ClubSettingsManagerApiUpdatePresentationSettingsRequest} requestParameters Request parameters.
|
|
9748
|
+
* Récupère les paramètres d\'un club
|
|
10532
9749
|
* @param {*} [options] Override http request option.
|
|
10533
9750
|
* @throws {RequiredError}
|
|
10534
9751
|
* @memberof ClubSettingsManagerApi
|
|
10535
9752
|
*/
|
|
10536
|
-
|
|
9753
|
+
getClubSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubSettingsResponse, any, {}>>;
|
|
10537
9754
|
/**
|
|
10538
|
-
*
|
|
10539
|
-
* @param {
|
|
9755
|
+
* Met à jour les paramètres d\'un club
|
|
9756
|
+
* @param {ClubSettingsManagerApiUpdateClubSettingsRequest} requestParameters Request parameters.
|
|
10540
9757
|
* @param {*} [options] Override http request option.
|
|
10541
9758
|
* @throws {RequiredError}
|
|
10542
9759
|
* @memberof ClubSettingsManagerApi
|
|
10543
9760
|
*/
|
|
10544
|
-
|
|
10545
|
-
}
|
|
10546
|
-
/**
|
|
10547
|
-
* ClubSettingsStaffApi - axios parameter creator
|
|
10548
|
-
* @export
|
|
10549
|
-
*/
|
|
10550
|
-
export declare const ClubSettingsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
10551
|
-
/**
|
|
10552
|
-
*
|
|
10553
|
-
* @param {*} [options] Override http request option.
|
|
10554
|
-
* @throws {RequiredError}
|
|
10555
|
-
*/
|
|
10556
|
-
getClubGeneralSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10557
|
-
/**
|
|
10558
|
-
*
|
|
10559
|
-
* @param {*} [options] Override http request option.
|
|
10560
|
-
* @throws {RequiredError}
|
|
10561
|
-
*/
|
|
10562
|
-
getHoursSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10563
|
-
/**
|
|
10564
|
-
*
|
|
10565
|
-
* @param {*} [options] Override http request option.
|
|
10566
|
-
* @throws {RequiredError}
|
|
10567
|
-
*/
|
|
10568
|
-
getPresentationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10569
|
-
/**
|
|
10570
|
-
*
|
|
10571
|
-
* @param {*} [options] Override http request option.
|
|
10572
|
-
* @throws {RequiredError}
|
|
10573
|
-
*/
|
|
10574
|
-
getReservationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10575
|
-
};
|
|
10576
|
-
/**
|
|
10577
|
-
* ClubSettingsStaffApi - functional programming interface
|
|
10578
|
-
* @export
|
|
10579
|
-
*/
|
|
10580
|
-
export declare const ClubSettingsStaffApiFp: (configuration?: Configuration) => {
|
|
10581
|
-
/**
|
|
10582
|
-
*
|
|
10583
|
-
* @param {*} [options] Override http request option.
|
|
10584
|
-
* @throws {RequiredError}
|
|
10585
|
-
*/
|
|
10586
|
-
getClubGeneralSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubGeneralSettingsResponse>>;
|
|
10587
|
-
/**
|
|
10588
|
-
*
|
|
10589
|
-
* @param {*} [options] Override http request option.
|
|
10590
|
-
* @throws {RequiredError}
|
|
10591
|
-
*/
|
|
10592
|
-
getHoursSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
10593
|
-
/**
|
|
10594
|
-
*
|
|
10595
|
-
* @param {*} [options] Override http request option.
|
|
10596
|
-
* @throws {RequiredError}
|
|
10597
|
-
*/
|
|
10598
|
-
getPresentationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
10599
|
-
/**
|
|
10600
|
-
*
|
|
10601
|
-
* @param {*} [options] Override http request option.
|
|
10602
|
-
* @throws {RequiredError}
|
|
10603
|
-
*/
|
|
10604
|
-
getReservationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubReservationSettingsResponse>>;
|
|
10605
|
-
};
|
|
10606
|
-
/**
|
|
10607
|
-
* ClubSettingsStaffApi - factory interface
|
|
10608
|
-
* @export
|
|
10609
|
-
*/
|
|
10610
|
-
export declare const ClubSettingsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10611
|
-
/**
|
|
10612
|
-
*
|
|
10613
|
-
* @param {*} [options] Override http request option.
|
|
10614
|
-
* @throws {RequiredError}
|
|
10615
|
-
*/
|
|
10616
|
-
getClubGeneralSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubGeneralSettingsResponse>;
|
|
10617
|
-
/**
|
|
10618
|
-
*
|
|
10619
|
-
* @param {*} [options] Override http request option.
|
|
10620
|
-
* @throws {RequiredError}
|
|
10621
|
-
*/
|
|
10622
|
-
getHoursSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
10623
|
-
/**
|
|
10624
|
-
*
|
|
10625
|
-
* @param {*} [options] Override http request option.
|
|
10626
|
-
* @throws {RequiredError}
|
|
10627
|
-
*/
|
|
10628
|
-
getPresentationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
10629
|
-
/**
|
|
10630
|
-
*
|
|
10631
|
-
* @param {*} [options] Override http request option.
|
|
10632
|
-
* @throws {RequiredError}
|
|
10633
|
-
*/
|
|
10634
|
-
getReservationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubReservationSettingsResponse>;
|
|
10635
|
-
};
|
|
10636
|
-
/**
|
|
10637
|
-
* ClubSettingsStaffApi - object-oriented interface
|
|
10638
|
-
* @export
|
|
10639
|
-
* @class ClubSettingsStaffApi
|
|
10640
|
-
* @extends {BaseAPI}
|
|
10641
|
-
*/
|
|
10642
|
-
export declare class ClubSettingsStaffApi extends BaseAPI {
|
|
10643
|
-
/**
|
|
10644
|
-
*
|
|
10645
|
-
* @param {*} [options] Override http request option.
|
|
10646
|
-
* @throws {RequiredError}
|
|
10647
|
-
* @memberof ClubSettingsStaffApi
|
|
10648
|
-
*/
|
|
10649
|
-
getClubGeneralSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubGeneralSettingsResponse, any, {}>>;
|
|
10650
|
-
/**
|
|
10651
|
-
*
|
|
10652
|
-
* @param {*} [options] Override http request option.
|
|
10653
|
-
* @throws {RequiredError}
|
|
10654
|
-
* @memberof ClubSettingsStaffApi
|
|
10655
|
-
*/
|
|
10656
|
-
getHoursSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
10657
|
-
/**
|
|
10658
|
-
*
|
|
10659
|
-
* @param {*} [options] Override http request option.
|
|
10660
|
-
* @throws {RequiredError}
|
|
10661
|
-
* @memberof ClubSettingsStaffApi
|
|
10662
|
-
*/
|
|
10663
|
-
getPresentationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
10664
|
-
/**
|
|
10665
|
-
*
|
|
10666
|
-
* @param {*} [options] Override http request option.
|
|
10667
|
-
* @throws {RequiredError}
|
|
10668
|
-
* @memberof ClubSettingsStaffApi
|
|
10669
|
-
*/
|
|
10670
|
-
getReservationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubReservationSettingsResponse, any, {}>>;
|
|
9761
|
+
updateClubSettings(requestParameters: ClubSettingsManagerApiUpdateClubSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubSettingsResponse, any, {}>>;
|
|
10671
9762
|
}
|
|
10672
9763
|
/**
|
|
10673
9764
|
* ClubsApi - axios parameter creator
|
|
@@ -11175,6 +10266,14 @@ export declare const ClubsManagerApiAxiosParamCreator: (configuration?: Configur
|
|
|
11175
10266
|
* @throws {RequiredError}
|
|
11176
10267
|
*/
|
|
11177
10268
|
addClubMember: (addClubMemberRequest: AddClubMemberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10269
|
+
/**
|
|
10270
|
+
*
|
|
10271
|
+
* @param {string} userId
|
|
10272
|
+
* @param {AddCreditsToCustomerRequest} addCreditsToCustomerRequest
|
|
10273
|
+
* @param {*} [options] Override http request option.
|
|
10274
|
+
* @throws {RequiredError}
|
|
10275
|
+
*/
|
|
10276
|
+
addCreditsToCustomer: (userId: string, addCreditsToCustomerRequest: AddCreditsToCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11178
10277
|
/**
|
|
11179
10278
|
*
|
|
11180
10279
|
* @param {string} priceId
|
|
@@ -11281,13 +10380,6 @@ export declare const ClubsManagerApiAxiosParamCreator: (configuration?: Configur
|
|
|
11281
10380
|
* @throws {RequiredError}
|
|
11282
10381
|
*/
|
|
11283
10382
|
updateClubInfos: (body: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11284
|
-
/**
|
|
11285
|
-
*
|
|
11286
|
-
* @param {UpdateClubPresentationSettingsRequest} updateClubPresentationSettingsRequest
|
|
11287
|
-
* @param {*} [options] Override http request option.
|
|
11288
|
-
* @throws {RequiredError}
|
|
11289
|
-
*/
|
|
11290
|
-
updateClubPresentationSettings: (updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11291
10383
|
/**
|
|
11292
10384
|
*
|
|
11293
10385
|
* @param {string} courtId
|
|
@@ -11317,6 +10409,14 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
11317
10409
|
* @throws {RequiredError}
|
|
11318
10410
|
*/
|
|
11319
10411
|
addClubMember(addClubMemberRequest: AddClubMemberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddClubMember201Response>>;
|
|
10412
|
+
/**
|
|
10413
|
+
*
|
|
10414
|
+
* @param {string} userId
|
|
10415
|
+
* @param {AddCreditsToCustomerRequest} addCreditsToCustomerRequest
|
|
10416
|
+
* @param {*} [options] Override http request option.
|
|
10417
|
+
* @throws {RequiredError}
|
|
10418
|
+
*/
|
|
10419
|
+
addCreditsToCustomer(userId: string, addCreditsToCustomerRequest: AddCreditsToCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddCreditsToCustomer200Response>>;
|
|
11320
10420
|
/**
|
|
11321
10421
|
*
|
|
11322
10422
|
* @param {string} priceId
|
|
@@ -11423,13 +10523,6 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
11423
10523
|
* @throws {RequiredError}
|
|
11424
10524
|
*/
|
|
11425
10525
|
updateClubInfos(body: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
11426
|
-
/**
|
|
11427
|
-
*
|
|
11428
|
-
* @param {UpdateClubPresentationSettingsRequest} updateClubPresentationSettingsRequest
|
|
11429
|
-
* @param {*} [options] Override http request option.
|
|
11430
|
-
* @throws {RequiredError}
|
|
11431
|
-
*/
|
|
11432
|
-
updateClubPresentationSettings(updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
11433
10526
|
/**
|
|
11434
10527
|
*
|
|
11435
10528
|
* @param {string} courtId
|
|
@@ -11459,6 +10552,13 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
11459
10552
|
* @throws {RequiredError}
|
|
11460
10553
|
*/
|
|
11461
10554
|
addClubMember(requestParameters: ClubsManagerApiAddClubMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddClubMember201Response>;
|
|
10555
|
+
/**
|
|
10556
|
+
*
|
|
10557
|
+
* @param {ClubsManagerApiAddCreditsToCustomerRequest} requestParameters Request parameters.
|
|
10558
|
+
* @param {*} [options] Override http request option.
|
|
10559
|
+
* @throws {RequiredError}
|
|
10560
|
+
*/
|
|
10561
|
+
addCreditsToCustomer(requestParameters: ClubsManagerApiAddCreditsToCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddCreditsToCustomer200Response>;
|
|
11462
10562
|
/**
|
|
11463
10563
|
*
|
|
11464
10564
|
* @param {ClubsManagerApiArchivePriceForSubscriptionPlanRequest} requestParameters Request parameters.
|
|
@@ -11563,13 +10663,6 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
11563
10663
|
* @throws {RequiredError}
|
|
11564
10664
|
*/
|
|
11565
10665
|
updateClubInfos(requestParameters: ClubsManagerApiUpdateClubInfosRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
11566
|
-
/**
|
|
11567
|
-
*
|
|
11568
|
-
* @param {ClubsManagerApiUpdateClubPresentationSettingsRequest} requestParameters Request parameters.
|
|
11569
|
-
* @param {*} [options] Override http request option.
|
|
11570
|
-
* @throws {RequiredError}
|
|
11571
|
-
*/
|
|
11572
|
-
updateClubPresentationSettings(requestParameters: ClubsManagerApiUpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
11573
10666
|
/**
|
|
11574
10667
|
*
|
|
11575
10668
|
* @param {ClubsManagerApiUpdateCourtRequest} requestParameters Request parameters.
|
|
@@ -11598,6 +10691,25 @@ export interface ClubsManagerApiAddClubMemberRequest {
|
|
|
11598
10691
|
*/
|
|
11599
10692
|
readonly addClubMemberRequest: AddClubMemberRequest;
|
|
11600
10693
|
}
|
|
10694
|
+
/**
|
|
10695
|
+
* Request parameters for addCreditsToCustomer operation in ClubsManagerApi.
|
|
10696
|
+
* @export
|
|
10697
|
+
* @interface ClubsManagerApiAddCreditsToCustomerRequest
|
|
10698
|
+
*/
|
|
10699
|
+
export interface ClubsManagerApiAddCreditsToCustomerRequest {
|
|
10700
|
+
/**
|
|
10701
|
+
*
|
|
10702
|
+
* @type {string}
|
|
10703
|
+
* @memberof ClubsManagerApiAddCreditsToCustomer
|
|
10704
|
+
*/
|
|
10705
|
+
readonly userId: string;
|
|
10706
|
+
/**
|
|
10707
|
+
*
|
|
10708
|
+
* @type {AddCreditsToCustomerRequest}
|
|
10709
|
+
* @memberof ClubsManagerApiAddCreditsToCustomer
|
|
10710
|
+
*/
|
|
10711
|
+
readonly addCreditsToCustomerRequest: AddCreditsToCustomerRequest;
|
|
10712
|
+
}
|
|
11601
10713
|
/**
|
|
11602
10714
|
* Request parameters for archivePriceForSubscriptionPlan operation in ClubsManagerApi.
|
|
11603
10715
|
* @export
|
|
@@ -11792,19 +10904,6 @@ export interface ClubsManagerApiUpdateClubInfosRequest {
|
|
|
11792
10904
|
*/
|
|
11793
10905
|
readonly body: any;
|
|
11794
10906
|
}
|
|
11795
|
-
/**
|
|
11796
|
-
* Request parameters for updateClubPresentationSettings operation in ClubsManagerApi.
|
|
11797
|
-
* @export
|
|
11798
|
-
* @interface ClubsManagerApiUpdateClubPresentationSettingsRequest
|
|
11799
|
-
*/
|
|
11800
|
-
export interface ClubsManagerApiUpdateClubPresentationSettingsRequest {
|
|
11801
|
-
/**
|
|
11802
|
-
*
|
|
11803
|
-
* @type {UpdateClubPresentationSettingsRequest}
|
|
11804
|
-
* @memberof ClubsManagerApiUpdateClubPresentationSettings
|
|
11805
|
-
*/
|
|
11806
|
-
readonly updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest;
|
|
11807
|
-
}
|
|
11808
10907
|
/**
|
|
11809
10908
|
* Request parameters for updateCourt operation in ClubsManagerApi.
|
|
11810
10909
|
* @export
|
|
@@ -11858,6 +10957,14 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
11858
10957
|
* @memberof ClubsManagerApi
|
|
11859
10958
|
*/
|
|
11860
10959
|
addClubMember(requestParameters: ClubsManagerApiAddClubMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddClubMember201Response, any, {}>>;
|
|
10960
|
+
/**
|
|
10961
|
+
*
|
|
10962
|
+
* @param {ClubsManagerApiAddCreditsToCustomerRequest} requestParameters Request parameters.
|
|
10963
|
+
* @param {*} [options] Override http request option.
|
|
10964
|
+
* @throws {RequiredError}
|
|
10965
|
+
* @memberof ClubsManagerApi
|
|
10966
|
+
*/
|
|
10967
|
+
addCreditsToCustomer(requestParameters: ClubsManagerApiAddCreditsToCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddCreditsToCustomer200Response, any, {}>>;
|
|
11861
10968
|
/**
|
|
11862
10969
|
*
|
|
11863
10970
|
* @param {ClubsManagerApiArchivePriceForSubscriptionPlanRequest} requestParameters Request parameters.
|
|
@@ -11977,14 +11084,6 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
11977
11084
|
* @memberof ClubsManagerApi
|
|
11978
11085
|
*/
|
|
11979
11086
|
updateClubInfos(requestParameters: ClubsManagerApiUpdateClubInfosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
11980
|
-
/**
|
|
11981
|
-
*
|
|
11982
|
-
* @param {ClubsManagerApiUpdateClubPresentationSettingsRequest} requestParameters Request parameters.
|
|
11983
|
-
* @param {*} [options] Override http request option.
|
|
11984
|
-
* @throws {RequiredError}
|
|
11985
|
-
* @memberof ClubsManagerApi
|
|
11986
|
-
*/
|
|
11987
|
-
updateClubPresentationSettings(requestParameters: ClubsManagerApiUpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
11988
11087
|
/**
|
|
11989
11088
|
*
|
|
11990
11089
|
* @param {ClubsManagerApiUpdateCourtRequest} requestParameters Request parameters.
|
|
@@ -12025,12 +11124,6 @@ export declare const ClubsStaffApiAxiosParamCreator: (configuration?: Configurat
|
|
|
12025
11124
|
* @throws {RequiredError}
|
|
12026
11125
|
*/
|
|
12027
11126
|
getClubMembers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12028
|
-
/**
|
|
12029
|
-
*
|
|
12030
|
-
* @param {*} [options] Override http request option.
|
|
12031
|
-
* @throws {RequiredError}
|
|
12032
|
-
*/
|
|
12033
|
-
getClubPresentationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12034
11127
|
/**
|
|
12035
11128
|
* Récupère les rôles d\'un club
|
|
12036
11129
|
* @param {*} [options] Override http request option.
|
|
@@ -12080,12 +11173,6 @@ export declare const ClubsStaffApiFp: (configuration?: Configuration) => {
|
|
|
12080
11173
|
* @throws {RequiredError}
|
|
12081
11174
|
*/
|
|
12082
11175
|
getClubMembers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClubMembers200Response>>;
|
|
12083
|
-
/**
|
|
12084
|
-
*
|
|
12085
|
-
* @param {*} [options] Override http request option.
|
|
12086
|
-
* @throws {RequiredError}
|
|
12087
|
-
*/
|
|
12088
|
-
getClubPresentationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
12089
11176
|
/**
|
|
12090
11177
|
* Récupère les rôles d\'un club
|
|
12091
11178
|
* @param {*} [options] Override http request option.
|
|
@@ -12135,12 +11222,6 @@ export declare const ClubsStaffApiFactory: (configuration?: Configuration, baseP
|
|
|
12135
11222
|
* @throws {RequiredError}
|
|
12136
11223
|
*/
|
|
12137
11224
|
getClubMembers(options?: RawAxiosRequestConfig): AxiosPromise<GetClubMembers200Response>;
|
|
12138
|
-
/**
|
|
12139
|
-
*
|
|
12140
|
-
* @param {*} [options] Override http request option.
|
|
12141
|
-
* @throws {RequiredError}
|
|
12142
|
-
*/
|
|
12143
|
-
getClubPresentationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
12144
11225
|
/**
|
|
12145
11226
|
* Récupère les rôles d\'un club
|
|
12146
11227
|
* @param {*} [options] Override http request option.
|
|
@@ -12208,13 +11289,6 @@ export declare class ClubsStaffApi extends BaseAPI {
|
|
|
12208
11289
|
* @memberof ClubsStaffApi
|
|
12209
11290
|
*/
|
|
12210
11291
|
getClubMembers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClubMembers200Response, any, {}>>;
|
|
12211
|
-
/**
|
|
12212
|
-
*
|
|
12213
|
-
* @param {*} [options] Override http request option.
|
|
12214
|
-
* @throws {RequiredError}
|
|
12215
|
-
* @memberof ClubsStaffApi
|
|
12216
|
-
*/
|
|
12217
|
-
getClubPresentationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
12218
11292
|
/**
|
|
12219
11293
|
* Récupère les rôles d\'un club
|
|
12220
11294
|
* @param {*} [options] Override http request option.
|
|
@@ -13721,6 +12795,12 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13721
12795
|
* @throws {RequiredError}
|
|
13722
12796
|
*/
|
|
13723
12797
|
getMe: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12798
|
+
/**
|
|
12799
|
+
* Récupère les clubs associés à l\'utilisateur avec ses informations de paiement
|
|
12800
|
+
* @param {*} [options] Override http request option.
|
|
12801
|
+
* @throws {RequiredError}
|
|
12802
|
+
*/
|
|
12803
|
+
getMyClubMemberships: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13724
12804
|
/**
|
|
13725
12805
|
*
|
|
13726
12806
|
* @param {number} [radiusInKm]
|
|
@@ -13982,6 +13062,12 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
13982
13062
|
* @throws {RequiredError}
|
|
13983
13063
|
*/
|
|
13984
13064
|
getMe(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserProfileResponse>>;
|
|
13065
|
+
/**
|
|
13066
|
+
* Récupère les clubs associés à l\'utilisateur avec ses informations de paiement
|
|
13067
|
+
* @param {*} [options] Override http request option.
|
|
13068
|
+
* @throws {RequiredError}
|
|
13069
|
+
*/
|
|
13070
|
+
getMyClubMemberships(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserClubMembershipsResponse>>;
|
|
13985
13071
|
/**
|
|
13986
13072
|
*
|
|
13987
13073
|
* @param {number} [radiusInKm]
|
|
@@ -14251,6 +13337,12 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
14251
13337
|
* @throws {RequiredError}
|
|
14252
13338
|
*/
|
|
14253
13339
|
getMe(options?: RawAxiosRequestConfig): AxiosPromise<UserProfileResponse>;
|
|
13340
|
+
/**
|
|
13341
|
+
* Récupère les clubs associés à l\'utilisateur avec ses informations de paiement
|
|
13342
|
+
* @param {*} [options] Override http request option.
|
|
13343
|
+
* @throws {RequiredError}
|
|
13344
|
+
*/
|
|
13345
|
+
getMyClubMemberships(options?: RawAxiosRequestConfig): AxiosPromise<UserClubMembershipsResponse>;
|
|
14254
13346
|
/**
|
|
14255
13347
|
*
|
|
14256
13348
|
* @param {UsersApiGetNearestClubsRequest} requestParameters Request parameters.
|
|
@@ -14974,6 +14066,13 @@ export declare class UsersApi extends BaseAPI {
|
|
|
14974
14066
|
* @memberof UsersApi
|
|
14975
14067
|
*/
|
|
14976
14068
|
getMe(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserProfileResponse, any, {}>>;
|
|
14069
|
+
/**
|
|
14070
|
+
* Récupère les clubs associés à l\'utilisateur avec ses informations de paiement
|
|
14071
|
+
* @param {*} [options] Override http request option.
|
|
14072
|
+
* @throws {RequiredError}
|
|
14073
|
+
* @memberof UsersApi
|
|
14074
|
+
*/
|
|
14075
|
+
getMyClubMemberships(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserClubMembershipsResponse, any, {}>>;
|
|
14977
14076
|
/**
|
|
14978
14077
|
*
|
|
14979
14078
|
* @param {UsersApiGetNearestClubsRequest} requestParameters Request parameters.
|