@tennac-booking/sdk 1.0.82 → 1.0.83
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 +25 -1
- package/README.md +32 -1
- package/api.ts +1565 -73
- package/dist/api.d.ts +1224 -81
- package/dist/api.js +562 -8
- package/dist/esm/api.d.ts +1224 -81
- package/dist/esm/api.js +555 -5
- package/docs/BookingPopulated.md +2 -0
- package/docs/ClubAnalyticsStaffApi.md +7 -1
- package/docs/{EventResponseCourtsInner.md → ClubDaySchedule.md} +7 -3
- package/docs/ClubGeneralSettingsResponse.md +34 -0
- package/docs/ClubHoursSettingsResponse.md +22 -0
- package/docs/ClubLocationSettings.md +26 -0
- package/docs/ClubPlayerBookingsPagination.md +28 -0
- package/docs/ClubPlayerBookingsResponse.md +2 -0
- package/docs/ClubPresentationSettingsResponse.md +26 -0
- package/docs/ClubPricingPeriodResponse.md +30 -0
- package/docs/ClubReservationAccessSettingsResponse.md +26 -0
- package/docs/ClubReservationSettingsResponse.md +36 -0
- package/docs/ClubSettingsManagerApi.md +104 -0
- package/docs/ClubSettingsStaffApi.md +95 -0
- package/docs/ClubWeeklySchedule.md +32 -0
- package/docs/ClubsManagerApi.md +104 -0
- package/docs/ClubsStaffApi.md +88 -0
- package/docs/CreateEventRequest.md +1 -1
- package/docs/EventResponse.md +1 -1
- package/docs/HotelAccessSettings.md +26 -0
- package/docs/PartialClubWeeklySchedule.md +33 -0
- package/docs/PartialHotelAccessSettings.md +27 -0
- package/docs/PartialPaymentRequirementsSettings.md +23 -0
- package/docs/PartialPublicAccessPartialPublicAccessSettingsSchoolAccessPartialSchoolAccessSettingsHotelAccessPartialHotelAccessSettingsPaymentRequirementsPartialPaymentRequirementsSettings.md +27 -0
- package/docs/PartialPublicAccessSettings.md +25 -0
- package/docs/PartialSchoolAccessSettings.md +25 -0
- package/docs/PaymentRequirementsSettings.md +22 -0
- package/docs/PublicAccessSettings.md +24 -0
- package/docs/SchoolAccessSettings.md +24 -0
- package/docs/UpdateClubGeneralSettingsRequest.md +34 -0
- package/docs/UpdateClubHoursSettingsRequest.md +22 -0
- package/docs/UpdateClubPresentationSettingsRequest.md +26 -0
- package/docs/UpdateClubReservationSettingsRequest.md +34 -0
- package/docs/UpdateEventRequest.md +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -530,6 +530,12 @@ export interface BookingPopulated {
|
|
|
530
530
|
* @memberof BookingPopulated
|
|
531
531
|
*/
|
|
532
532
|
'slotInfos': SlotInfo;
|
|
533
|
+
/**
|
|
534
|
+
*
|
|
535
|
+
* @type {Array<UserInfo>}
|
|
536
|
+
* @memberof BookingPopulated
|
|
537
|
+
*/
|
|
538
|
+
'players': Array<UserInfo>;
|
|
533
539
|
/**
|
|
534
540
|
* Statut des paiements par joueur
|
|
535
541
|
* @type {Array<PaymentByPlayerInfo>}
|
|
@@ -947,6 +953,130 @@ export interface CheckedInPlayer {
|
|
|
947
953
|
*/
|
|
948
954
|
'note'?: string;
|
|
949
955
|
}
|
|
956
|
+
/**
|
|
957
|
+
*
|
|
958
|
+
* @export
|
|
959
|
+
* @interface ClubDaySchedule
|
|
960
|
+
*/
|
|
961
|
+
export interface ClubDaySchedule {
|
|
962
|
+
/**
|
|
963
|
+
*
|
|
964
|
+
* @type {string}
|
|
965
|
+
* @memberof ClubDaySchedule
|
|
966
|
+
*/
|
|
967
|
+
'open': string;
|
|
968
|
+
/**
|
|
969
|
+
*
|
|
970
|
+
* @type {string}
|
|
971
|
+
* @memberof ClubDaySchedule
|
|
972
|
+
*/
|
|
973
|
+
'close': string;
|
|
974
|
+
}
|
|
975
|
+
/**
|
|
976
|
+
*
|
|
977
|
+
* @export
|
|
978
|
+
* @interface ClubGeneralSettingsResponse
|
|
979
|
+
*/
|
|
980
|
+
export interface ClubGeneralSettingsResponse {
|
|
981
|
+
/**
|
|
982
|
+
*
|
|
983
|
+
* @type {string}
|
|
984
|
+
* @memberof ClubGeneralSettingsResponse
|
|
985
|
+
*/
|
|
986
|
+
'name': string;
|
|
987
|
+
/**
|
|
988
|
+
*
|
|
989
|
+
* @type {string}
|
|
990
|
+
* @memberof ClubGeneralSettingsResponse
|
|
991
|
+
*/
|
|
992
|
+
'email'?: string;
|
|
993
|
+
/**
|
|
994
|
+
*
|
|
995
|
+
* @type {string}
|
|
996
|
+
* @memberof ClubGeneralSettingsResponse
|
|
997
|
+
*/
|
|
998
|
+
'phone'?: string;
|
|
999
|
+
/**
|
|
1000
|
+
*
|
|
1001
|
+
* @type {string}
|
|
1002
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1003
|
+
*/
|
|
1004
|
+
'websiteUrl'?: string;
|
|
1005
|
+
/**
|
|
1006
|
+
*
|
|
1007
|
+
* @type {string}
|
|
1008
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1009
|
+
*/
|
|
1010
|
+
'description'?: string;
|
|
1011
|
+
/**
|
|
1012
|
+
*
|
|
1013
|
+
* @type {string}
|
|
1014
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1015
|
+
*/
|
|
1016
|
+
'rib'?: string;
|
|
1017
|
+
/**
|
|
1018
|
+
*
|
|
1019
|
+
* @type {string}
|
|
1020
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1021
|
+
*/
|
|
1022
|
+
'logo'?: string | null;
|
|
1023
|
+
/**
|
|
1024
|
+
*
|
|
1025
|
+
* @type {ClubLocationSettings}
|
|
1026
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1027
|
+
*/
|
|
1028
|
+
'location': ClubLocationSettings;
|
|
1029
|
+
}
|
|
1030
|
+
/**
|
|
1031
|
+
*
|
|
1032
|
+
* @export
|
|
1033
|
+
* @interface ClubHoursSettingsResponse
|
|
1034
|
+
*/
|
|
1035
|
+
export interface ClubHoursSettingsResponse {
|
|
1036
|
+
/**
|
|
1037
|
+
*
|
|
1038
|
+
* @type {ClubWeeklySchedule}
|
|
1039
|
+
* @memberof ClubHoursSettingsResponse
|
|
1040
|
+
*/
|
|
1041
|
+
'schedule': ClubWeeklySchedule;
|
|
1042
|
+
/**
|
|
1043
|
+
*
|
|
1044
|
+
* @type {Array<ClubPricingPeriodResponse>}
|
|
1045
|
+
* @memberof ClubHoursSettingsResponse
|
|
1046
|
+
*/
|
|
1047
|
+
'pricingPeriods': Array<ClubPricingPeriodResponse>;
|
|
1048
|
+
}
|
|
1049
|
+
/**
|
|
1050
|
+
*
|
|
1051
|
+
* @export
|
|
1052
|
+
* @interface ClubLocationSettings
|
|
1053
|
+
*/
|
|
1054
|
+
export interface ClubLocationSettings {
|
|
1055
|
+
/**
|
|
1056
|
+
*
|
|
1057
|
+
* @type {string}
|
|
1058
|
+
* @memberof ClubLocationSettings
|
|
1059
|
+
*/
|
|
1060
|
+
'address'?: string;
|
|
1061
|
+
/**
|
|
1062
|
+
*
|
|
1063
|
+
* @type {string}
|
|
1064
|
+
* @memberof ClubLocationSettings
|
|
1065
|
+
*/
|
|
1066
|
+
'zipCode'?: string;
|
|
1067
|
+
/**
|
|
1068
|
+
*
|
|
1069
|
+
* @type {string}
|
|
1070
|
+
* @memberof ClubLocationSettings
|
|
1071
|
+
*/
|
|
1072
|
+
'city'?: string;
|
|
1073
|
+
/**
|
|
1074
|
+
*
|
|
1075
|
+
* @type {string}
|
|
1076
|
+
* @memberof ClubLocationSettings
|
|
1077
|
+
*/
|
|
1078
|
+
'country'?: string;
|
|
1079
|
+
}
|
|
950
1080
|
/**
|
|
951
1081
|
*
|
|
952
1082
|
* @export
|
|
@@ -1064,6 +1194,43 @@ export interface ClubPlayerBookingItem {
|
|
|
1064
1194
|
*/
|
|
1065
1195
|
'participantsCount': number;
|
|
1066
1196
|
}
|
|
1197
|
+
/**
|
|
1198
|
+
*
|
|
1199
|
+
* @export
|
|
1200
|
+
* @interface ClubPlayerBookingsPagination
|
|
1201
|
+
*/
|
|
1202
|
+
export interface ClubPlayerBookingsPagination {
|
|
1203
|
+
/**
|
|
1204
|
+
* Page courante (1-based)
|
|
1205
|
+
* @type {number}
|
|
1206
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1207
|
+
*/
|
|
1208
|
+
'page': number;
|
|
1209
|
+
/**
|
|
1210
|
+
* Nombre d\'éléments par page
|
|
1211
|
+
* @type {number}
|
|
1212
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1213
|
+
*/
|
|
1214
|
+
'pageSize': number;
|
|
1215
|
+
/**
|
|
1216
|
+
* Nombre total d\'éléments disponibles
|
|
1217
|
+
* @type {number}
|
|
1218
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1219
|
+
*/
|
|
1220
|
+
'totalItems': number;
|
|
1221
|
+
/**
|
|
1222
|
+
* Nombre total de pages disponibles
|
|
1223
|
+
* @type {number}
|
|
1224
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1225
|
+
*/
|
|
1226
|
+
'totalPages': number;
|
|
1227
|
+
/**
|
|
1228
|
+
* Existence d\'une page suivante
|
|
1229
|
+
* @type {boolean}
|
|
1230
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1231
|
+
*/
|
|
1232
|
+
'hasMore': boolean;
|
|
1233
|
+
}
|
|
1067
1234
|
/**
|
|
1068
1235
|
*
|
|
1069
1236
|
* @export
|
|
@@ -1082,6 +1249,12 @@ export interface ClubPlayerBookingsResponse {
|
|
|
1082
1249
|
* @memberof ClubPlayerBookingsResponse
|
|
1083
1250
|
*/
|
|
1084
1251
|
'pastBookings': Array<ClubPlayerBookingItem>;
|
|
1252
|
+
/**
|
|
1253
|
+
*
|
|
1254
|
+
* @type {ClubPlayerBookingsPagination}
|
|
1255
|
+
* @memberof ClubPlayerBookingsResponse
|
|
1256
|
+
*/
|
|
1257
|
+
'pastPagination'?: ClubPlayerBookingsPagination;
|
|
1085
1258
|
}
|
|
1086
1259
|
/**
|
|
1087
1260
|
*
|
|
@@ -1464,6 +1637,172 @@ export interface ClubPlayerSubscriptionSummary {
|
|
|
1464
1637
|
*/
|
|
1465
1638
|
'interval': string | null;
|
|
1466
1639
|
}
|
|
1640
|
+
/**
|
|
1641
|
+
*
|
|
1642
|
+
* @export
|
|
1643
|
+
* @interface ClubPresentationSettingsResponse
|
|
1644
|
+
*/
|
|
1645
|
+
export interface ClubPresentationSettingsResponse {
|
|
1646
|
+
/**
|
|
1647
|
+
*
|
|
1648
|
+
* @type {string}
|
|
1649
|
+
* @memberof ClubPresentationSettingsResponse
|
|
1650
|
+
*/
|
|
1651
|
+
'description'?: string;
|
|
1652
|
+
/**
|
|
1653
|
+
*
|
|
1654
|
+
* @type {Array<string>}
|
|
1655
|
+
* @memberof ClubPresentationSettingsResponse
|
|
1656
|
+
*/
|
|
1657
|
+
'tags': Array<string>;
|
|
1658
|
+
/**
|
|
1659
|
+
*
|
|
1660
|
+
* @type {Array<string>}
|
|
1661
|
+
* @memberof ClubPresentationSettingsResponse
|
|
1662
|
+
*/
|
|
1663
|
+
'bannerImages': Array<string>;
|
|
1664
|
+
/**
|
|
1665
|
+
*
|
|
1666
|
+
* @type {Array<string>}
|
|
1667
|
+
* @memberof ClubPresentationSettingsResponse
|
|
1668
|
+
*/
|
|
1669
|
+
'galleryImages': Array<string>;
|
|
1670
|
+
}
|
|
1671
|
+
/**
|
|
1672
|
+
*
|
|
1673
|
+
* @export
|
|
1674
|
+
* @interface ClubPricingPeriodResponse
|
|
1675
|
+
*/
|
|
1676
|
+
export interface ClubPricingPeriodResponse {
|
|
1677
|
+
/**
|
|
1678
|
+
*
|
|
1679
|
+
* @type {string}
|
|
1680
|
+
* @memberof ClubPricingPeriodResponse
|
|
1681
|
+
*/
|
|
1682
|
+
'id': string;
|
|
1683
|
+
/**
|
|
1684
|
+
*
|
|
1685
|
+
* @type {string}
|
|
1686
|
+
* @memberof ClubPricingPeriodResponse
|
|
1687
|
+
*/
|
|
1688
|
+
'name': string;
|
|
1689
|
+
/**
|
|
1690
|
+
*
|
|
1691
|
+
* @type {Array<string>}
|
|
1692
|
+
* @memberof ClubPricingPeriodResponse
|
|
1693
|
+
*/
|
|
1694
|
+
'days': Array<string>;
|
|
1695
|
+
/**
|
|
1696
|
+
*
|
|
1697
|
+
* @type {string}
|
|
1698
|
+
* @memberof ClubPricingPeriodResponse
|
|
1699
|
+
*/
|
|
1700
|
+
'startTime': string;
|
|
1701
|
+
/**
|
|
1702
|
+
*
|
|
1703
|
+
* @type {string}
|
|
1704
|
+
* @memberof ClubPricingPeriodResponse
|
|
1705
|
+
*/
|
|
1706
|
+
'endTime': string;
|
|
1707
|
+
/**
|
|
1708
|
+
*
|
|
1709
|
+
* @type {number}
|
|
1710
|
+
* @memberof ClubPricingPeriodResponse
|
|
1711
|
+
*/
|
|
1712
|
+
'variation': number;
|
|
1713
|
+
}
|
|
1714
|
+
/**
|
|
1715
|
+
*
|
|
1716
|
+
* @export
|
|
1717
|
+
* @interface ClubReservationAccessSettingsResponse
|
|
1718
|
+
*/
|
|
1719
|
+
export interface ClubReservationAccessSettingsResponse {
|
|
1720
|
+
/**
|
|
1721
|
+
*
|
|
1722
|
+
* @type {PublicAccessSettings}
|
|
1723
|
+
* @memberof ClubReservationAccessSettingsResponse
|
|
1724
|
+
*/
|
|
1725
|
+
'publicAccess': PublicAccessSettings;
|
|
1726
|
+
/**
|
|
1727
|
+
*
|
|
1728
|
+
* @type {SchoolAccessSettings}
|
|
1729
|
+
* @memberof ClubReservationAccessSettingsResponse
|
|
1730
|
+
*/
|
|
1731
|
+
'schoolAccess': SchoolAccessSettings;
|
|
1732
|
+
/**
|
|
1733
|
+
*
|
|
1734
|
+
* @type {HotelAccessSettings}
|
|
1735
|
+
* @memberof ClubReservationAccessSettingsResponse
|
|
1736
|
+
*/
|
|
1737
|
+
'hotelAccess': HotelAccessSettings;
|
|
1738
|
+
/**
|
|
1739
|
+
*
|
|
1740
|
+
* @type {PaymentRequirementsSettings}
|
|
1741
|
+
* @memberof ClubReservationAccessSettingsResponse
|
|
1742
|
+
*/
|
|
1743
|
+
'paymentRequirements': PaymentRequirementsSettings;
|
|
1744
|
+
}
|
|
1745
|
+
/**
|
|
1746
|
+
*
|
|
1747
|
+
* @export
|
|
1748
|
+
* @interface ClubReservationSettingsResponse
|
|
1749
|
+
*/
|
|
1750
|
+
export interface ClubReservationSettingsResponse {
|
|
1751
|
+
/**
|
|
1752
|
+
*
|
|
1753
|
+
* @type {number}
|
|
1754
|
+
* @memberof ClubReservationSettingsResponse
|
|
1755
|
+
*/
|
|
1756
|
+
'slotDuration': number;
|
|
1757
|
+
/**
|
|
1758
|
+
*
|
|
1759
|
+
* @type {number}
|
|
1760
|
+
* @memberof ClubReservationSettingsResponse
|
|
1761
|
+
*/
|
|
1762
|
+
'slotPrice': number;
|
|
1763
|
+
/**
|
|
1764
|
+
*
|
|
1765
|
+
* @type {number}
|
|
1766
|
+
* @memberof ClubReservationSettingsResponse
|
|
1767
|
+
*/
|
|
1768
|
+
'maxReservations': number | null;
|
|
1769
|
+
/**
|
|
1770
|
+
*
|
|
1771
|
+
* @type {boolean}
|
|
1772
|
+
* @memberof ClubReservationSettingsResponse
|
|
1773
|
+
*/
|
|
1774
|
+
'unlimitedReservations': boolean;
|
|
1775
|
+
/**
|
|
1776
|
+
*
|
|
1777
|
+
* @type {number}
|
|
1778
|
+
* @memberof ClubReservationSettingsResponse
|
|
1779
|
+
*/
|
|
1780
|
+
'cancellationDelay': number;
|
|
1781
|
+
/**
|
|
1782
|
+
*
|
|
1783
|
+
* @type {number}
|
|
1784
|
+
* @memberof ClubReservationSettingsResponse
|
|
1785
|
+
*/
|
|
1786
|
+
'bookingPeriod': number;
|
|
1787
|
+
/**
|
|
1788
|
+
*
|
|
1789
|
+
* @type {number}
|
|
1790
|
+
* @memberof ClubReservationSettingsResponse
|
|
1791
|
+
*/
|
|
1792
|
+
'limitMultipleReservations': number | null;
|
|
1793
|
+
/**
|
|
1794
|
+
*
|
|
1795
|
+
* @type {boolean}
|
|
1796
|
+
* @memberof ClubReservationSettingsResponse
|
|
1797
|
+
*/
|
|
1798
|
+
'allowMultipleReservations': boolean;
|
|
1799
|
+
/**
|
|
1800
|
+
*
|
|
1801
|
+
* @type {ClubReservationAccessSettingsResponse}
|
|
1802
|
+
* @memberof ClubReservationSettingsResponse
|
|
1803
|
+
*/
|
|
1804
|
+
'accessSettings': ClubReservationAccessSettingsResponse;
|
|
1805
|
+
}
|
|
1467
1806
|
/**
|
|
1468
1807
|
*
|
|
1469
1808
|
* @export
|
|
@@ -1715,7 +2054,7 @@ export interface ClubSettingsResponse {
|
|
|
1715
2054
|
* @type {number}
|
|
1716
2055
|
* @memberof ClubSettingsResponse
|
|
1717
2056
|
*/
|
|
1718
|
-
'maxWeeklyBookings': number;
|
|
2057
|
+
'maxWeeklyBookings': number | null;
|
|
1719
2058
|
/**
|
|
1720
2059
|
* Autoriser plusieurs réservations en même temps
|
|
1721
2060
|
* @type {boolean}
|
|
@@ -1727,7 +2066,7 @@ export interface ClubSettingsResponse {
|
|
|
1727
2066
|
* @type {number}
|
|
1728
2067
|
* @memberof ClubSettingsResponse
|
|
1729
2068
|
*/
|
|
1730
|
-
'sameTimeBookingsLimit'?: number;
|
|
2069
|
+
'sameTimeBookingsLimit'?: number | null;
|
|
1731
2070
|
/**
|
|
1732
2071
|
* Limite d\'annulation en heures
|
|
1733
2072
|
* @type {number}
|
|
@@ -1846,6 +2185,55 @@ export interface ClubUserCountResponse {
|
|
|
1846
2185
|
*/
|
|
1847
2186
|
'count': number;
|
|
1848
2187
|
}
|
|
2188
|
+
/**
|
|
2189
|
+
*
|
|
2190
|
+
* @export
|
|
2191
|
+
* @interface ClubWeeklySchedule
|
|
2192
|
+
*/
|
|
2193
|
+
export interface ClubWeeklySchedule {
|
|
2194
|
+
/**
|
|
2195
|
+
*
|
|
2196
|
+
* @type {ClubDaySchedule}
|
|
2197
|
+
* @memberof ClubWeeklySchedule
|
|
2198
|
+
*/
|
|
2199
|
+
'dimanche': ClubDaySchedule | null;
|
|
2200
|
+
/**
|
|
2201
|
+
*
|
|
2202
|
+
* @type {ClubDaySchedule}
|
|
2203
|
+
* @memberof ClubWeeklySchedule
|
|
2204
|
+
*/
|
|
2205
|
+
'samedi': ClubDaySchedule | null;
|
|
2206
|
+
/**
|
|
2207
|
+
*
|
|
2208
|
+
* @type {ClubDaySchedule}
|
|
2209
|
+
* @memberof ClubWeeklySchedule
|
|
2210
|
+
*/
|
|
2211
|
+
'vendredi': ClubDaySchedule | null;
|
|
2212
|
+
/**
|
|
2213
|
+
*
|
|
2214
|
+
* @type {ClubDaySchedule}
|
|
2215
|
+
* @memberof ClubWeeklySchedule
|
|
2216
|
+
*/
|
|
2217
|
+
'jeudi': ClubDaySchedule | null;
|
|
2218
|
+
/**
|
|
2219
|
+
*
|
|
2220
|
+
* @type {ClubDaySchedule}
|
|
2221
|
+
* @memberof ClubWeeklySchedule
|
|
2222
|
+
*/
|
|
2223
|
+
'mercredi': ClubDaySchedule | null;
|
|
2224
|
+
/**
|
|
2225
|
+
*
|
|
2226
|
+
* @type {ClubDaySchedule}
|
|
2227
|
+
* @memberof ClubWeeklySchedule
|
|
2228
|
+
*/
|
|
2229
|
+
'mardi': ClubDaySchedule | null;
|
|
2230
|
+
/**
|
|
2231
|
+
*
|
|
2232
|
+
* @type {ClubDaySchedule}
|
|
2233
|
+
* @memberof ClubWeeklySchedule
|
|
2234
|
+
*/
|
|
2235
|
+
'lundi': ClubDaySchedule | null;
|
|
2236
|
+
}
|
|
1849
2237
|
/**
|
|
1850
2238
|
*
|
|
1851
2239
|
* @export
|
|
@@ -2132,7 +2520,7 @@ export interface CreateClubSettingsRequest {
|
|
|
2132
2520
|
* @type {number}
|
|
2133
2521
|
* @memberof CreateClubSettingsRequest
|
|
2134
2522
|
*/
|
|
2135
|
-
'maxWeeklyBookings'?: number;
|
|
2523
|
+
'maxWeeklyBookings'?: number | null;
|
|
2136
2524
|
/**
|
|
2137
2525
|
* Autoriser plusieurs réservations en même temps
|
|
2138
2526
|
* @type {boolean}
|
|
@@ -2144,7 +2532,7 @@ export interface CreateClubSettingsRequest {
|
|
|
2144
2532
|
* @type {number}
|
|
2145
2533
|
* @memberof CreateClubSettingsRequest
|
|
2146
2534
|
*/
|
|
2147
|
-
'sameTimeBookingsLimit'?: number;
|
|
2535
|
+
'sameTimeBookingsLimit'?: number | null;
|
|
2148
2536
|
/**
|
|
2149
2537
|
* Limite d\'annulation en heures
|
|
2150
2538
|
* @type {number}
|
|
@@ -2282,10 +2670,10 @@ export interface CreateEventRequest {
|
|
|
2282
2670
|
'endDate': string;
|
|
2283
2671
|
/**
|
|
2284
2672
|
*
|
|
2285
|
-
* @type {Array<
|
|
2673
|
+
* @type {Array<string>}
|
|
2286
2674
|
* @memberof CreateEventRequest
|
|
2287
2675
|
*/
|
|
2288
|
-
'courts': Array<
|
|
2676
|
+
'courts': Array<string>;
|
|
2289
2677
|
/**
|
|
2290
2678
|
*
|
|
2291
2679
|
* @type {Array<string>}
|
|
@@ -2776,10 +3164,10 @@ export interface EventResponse {
|
|
|
2776
3164
|
'endDate': string;
|
|
2777
3165
|
/**
|
|
2778
3166
|
*
|
|
2779
|
-
* @type {Array<
|
|
3167
|
+
* @type {Array<string>}
|
|
2780
3168
|
* @memberof EventResponse
|
|
2781
3169
|
*/
|
|
2782
|
-
'courts': Array<
|
|
3170
|
+
'courts': Array<string>;
|
|
2783
3171
|
/**
|
|
2784
3172
|
*
|
|
2785
3173
|
* @type {Array<SportWithLevels>}
|
|
@@ -2894,13 +3282,6 @@ export declare const EventResponseVisibilityTypeEnum: {
|
|
|
2894
3282
|
readonly Invitation: "invitation";
|
|
2895
3283
|
};
|
|
2896
3284
|
export type EventResponseVisibilityTypeEnum = typeof EventResponseVisibilityTypeEnum[keyof typeof EventResponseVisibilityTypeEnum];
|
|
2897
|
-
/**
|
|
2898
|
-
*
|
|
2899
|
-
* @export
|
|
2900
|
-
* @interface EventResponseCourtsInner
|
|
2901
|
-
*/
|
|
2902
|
-
export interface EventResponseCourtsInner {
|
|
2903
|
-
}
|
|
2904
3285
|
/**
|
|
2905
3286
|
*
|
|
2906
3287
|
* @export
|
|
@@ -3310,6 +3691,37 @@ export interface GoogleAuthResponseUser {
|
|
|
3310
3691
|
*/
|
|
3311
3692
|
'id': string;
|
|
3312
3693
|
}
|
|
3694
|
+
/**
|
|
3695
|
+
*
|
|
3696
|
+
* @export
|
|
3697
|
+
* @interface HotelAccessSettings
|
|
3698
|
+
*/
|
|
3699
|
+
export interface HotelAccessSettings {
|
|
3700
|
+
/**
|
|
3701
|
+
*
|
|
3702
|
+
* @type {boolean}
|
|
3703
|
+
* @memberof HotelAccessSettings
|
|
3704
|
+
*/
|
|
3705
|
+
'enabled': boolean;
|
|
3706
|
+
/**
|
|
3707
|
+
*
|
|
3708
|
+
* @type {string}
|
|
3709
|
+
* @memberof HotelAccessSettings
|
|
3710
|
+
*/
|
|
3711
|
+
'accessCode'?: string | null;
|
|
3712
|
+
/**
|
|
3713
|
+
*
|
|
3714
|
+
* @type {string}
|
|
3715
|
+
* @memberof HotelAccessSettings
|
|
3716
|
+
*/
|
|
3717
|
+
'validFrom'?: string | null;
|
|
3718
|
+
/**
|
|
3719
|
+
*
|
|
3720
|
+
* @type {string}
|
|
3721
|
+
* @memberof HotelAccessSettings
|
|
3722
|
+
*/
|
|
3723
|
+
'validUntil'?: string | null;
|
|
3724
|
+
}
|
|
3313
3725
|
/**
|
|
3314
3726
|
*
|
|
3315
3727
|
* @export
|
|
@@ -4107,71 +4519,257 @@ export interface PartialClubResponse {
|
|
|
4107
4519
|
*/
|
|
4108
4520
|
'email'?: string;
|
|
4109
4521
|
/**
|
|
4110
|
-
* Téléphone du club
|
|
4522
|
+
* Téléphone du club
|
|
4523
|
+
* @type {string}
|
|
4524
|
+
* @memberof PartialClubResponse
|
|
4525
|
+
*/
|
|
4526
|
+
'phone'?: string;
|
|
4527
|
+
/**
|
|
4528
|
+
* URL de l\'image du club
|
|
4529
|
+
* @type {string}
|
|
4530
|
+
* @memberof PartialClubResponse
|
|
4531
|
+
*/
|
|
4532
|
+
'picture'?: string;
|
|
4533
|
+
/**
|
|
4534
|
+
*
|
|
4535
|
+
* @type {ClubResponseLocation}
|
|
4536
|
+
* @memberof PartialClubResponse
|
|
4537
|
+
*/
|
|
4538
|
+
'location'?: ClubResponseLocation;
|
|
4539
|
+
/**
|
|
4540
|
+
* Statut d\'activation du club
|
|
4541
|
+
* @type {boolean}
|
|
4542
|
+
* @memberof PartialClubResponse
|
|
4543
|
+
*/
|
|
4544
|
+
'isActive'?: boolean;
|
|
4545
|
+
/**
|
|
4546
|
+
* Indique si le club utilise la fonctionnalité de paiement
|
|
4547
|
+
* @type {boolean}
|
|
4548
|
+
* @memberof PartialClubResponse
|
|
4549
|
+
*/
|
|
4550
|
+
'paymentFeature'?: boolean;
|
|
4551
|
+
/**
|
|
4552
|
+
* ID du compte Stripe du club
|
|
4553
|
+
* @type {string}
|
|
4554
|
+
* @memberof PartialClubResponse
|
|
4555
|
+
*/
|
|
4556
|
+
'stripeAccountId'?: string;
|
|
4557
|
+
/**
|
|
4558
|
+
* URL du dashboard Stripe du club
|
|
4559
|
+
* @type {string}
|
|
4560
|
+
* @memberof PartialClubResponse
|
|
4561
|
+
*/
|
|
4562
|
+
'clubDashBoardUrl'?: string;
|
|
4563
|
+
/**
|
|
4564
|
+
* Indique si la fonctionnalité \"no show\" est activée
|
|
4565
|
+
* @type {boolean}
|
|
4566
|
+
* @memberof PartialClubResponse
|
|
4567
|
+
*/
|
|
4568
|
+
'isNoShowEnabled'?: boolean;
|
|
4569
|
+
/**
|
|
4570
|
+
* Liste des sports proposés par le club (identifiés par leur clé)
|
|
4571
|
+
* @type {Array<string>}
|
|
4572
|
+
* @memberof PartialClubResponse
|
|
4573
|
+
*/
|
|
4574
|
+
'sports'?: Array<string>;
|
|
4575
|
+
/**
|
|
4576
|
+
*
|
|
4577
|
+
* @type {ClubResponseCreatedAt}
|
|
4578
|
+
* @memberof PartialClubResponse
|
|
4579
|
+
*/
|
|
4580
|
+
'createdAt'?: ClubResponseCreatedAt;
|
|
4581
|
+
/**
|
|
4582
|
+
*
|
|
4583
|
+
* @type {ClubResponseUpdatedAt}
|
|
4584
|
+
* @memberof PartialClubResponse
|
|
4585
|
+
*/
|
|
4586
|
+
'updatedAt'?: ClubResponseUpdatedAt;
|
|
4587
|
+
}
|
|
4588
|
+
/**
|
|
4589
|
+
* Make all properties in T optional
|
|
4590
|
+
* @export
|
|
4591
|
+
* @interface PartialClubWeeklySchedule
|
|
4592
|
+
*/
|
|
4593
|
+
export interface PartialClubWeeklySchedule {
|
|
4594
|
+
/**
|
|
4595
|
+
*
|
|
4596
|
+
* @type {ClubDaySchedule}
|
|
4597
|
+
* @memberof PartialClubWeeklySchedule
|
|
4598
|
+
*/
|
|
4599
|
+
'lundi'?: ClubDaySchedule;
|
|
4600
|
+
/**
|
|
4601
|
+
*
|
|
4602
|
+
* @type {ClubDaySchedule}
|
|
4603
|
+
* @memberof PartialClubWeeklySchedule
|
|
4604
|
+
*/
|
|
4605
|
+
'mardi'?: ClubDaySchedule;
|
|
4606
|
+
/**
|
|
4607
|
+
*
|
|
4608
|
+
* @type {ClubDaySchedule}
|
|
4609
|
+
* @memberof PartialClubWeeklySchedule
|
|
4610
|
+
*/
|
|
4611
|
+
'mercredi'?: ClubDaySchedule;
|
|
4612
|
+
/**
|
|
4613
|
+
*
|
|
4614
|
+
* @type {ClubDaySchedule}
|
|
4615
|
+
* @memberof PartialClubWeeklySchedule
|
|
4616
|
+
*/
|
|
4617
|
+
'jeudi'?: ClubDaySchedule;
|
|
4618
|
+
/**
|
|
4619
|
+
*
|
|
4620
|
+
* @type {ClubDaySchedule}
|
|
4621
|
+
* @memberof PartialClubWeeklySchedule
|
|
4622
|
+
*/
|
|
4623
|
+
'vendredi'?: ClubDaySchedule;
|
|
4624
|
+
/**
|
|
4625
|
+
*
|
|
4626
|
+
* @type {ClubDaySchedule}
|
|
4627
|
+
* @memberof PartialClubWeeklySchedule
|
|
4628
|
+
*/
|
|
4629
|
+
'samedi'?: ClubDaySchedule;
|
|
4630
|
+
/**
|
|
4631
|
+
*
|
|
4632
|
+
* @type {ClubDaySchedule}
|
|
4633
|
+
* @memberof PartialClubWeeklySchedule
|
|
4634
|
+
*/
|
|
4635
|
+
'dimanche'?: ClubDaySchedule;
|
|
4636
|
+
}
|
|
4637
|
+
/**
|
|
4638
|
+
* Make all properties in T optional
|
|
4639
|
+
* @export
|
|
4640
|
+
* @interface PartialHotelAccessSettings
|
|
4641
|
+
*/
|
|
4642
|
+
export interface PartialHotelAccessSettings {
|
|
4643
|
+
/**
|
|
4644
|
+
*
|
|
4645
|
+
* @type {string}
|
|
4646
|
+
* @memberof PartialHotelAccessSettings
|
|
4647
|
+
*/
|
|
4648
|
+
'accessCode'?: string;
|
|
4649
|
+
/**
|
|
4650
|
+
*
|
|
4111
4651
|
* @type {string}
|
|
4112
|
-
* @memberof
|
|
4652
|
+
* @memberof PartialHotelAccessSettings
|
|
4113
4653
|
*/
|
|
4114
|
-
'
|
|
4654
|
+
'validFrom'?: string;
|
|
4115
4655
|
/**
|
|
4116
|
-
*
|
|
4656
|
+
*
|
|
4117
4657
|
* @type {string}
|
|
4118
|
-
* @memberof
|
|
4658
|
+
* @memberof PartialHotelAccessSettings
|
|
4119
4659
|
*/
|
|
4120
|
-
'
|
|
4660
|
+
'validUntil'?: string;
|
|
4121
4661
|
/**
|
|
4122
4662
|
*
|
|
4123
|
-
* @type {
|
|
4124
|
-
* @memberof
|
|
4663
|
+
* @type {boolean}
|
|
4664
|
+
* @memberof PartialHotelAccessSettings
|
|
4125
4665
|
*/
|
|
4126
|
-
'
|
|
4666
|
+
'enabled'?: boolean;
|
|
4667
|
+
}
|
|
4668
|
+
/**
|
|
4669
|
+
* Make all properties in T optional
|
|
4670
|
+
* @export
|
|
4671
|
+
* @interface PartialPaymentRequirementsSettings
|
|
4672
|
+
*/
|
|
4673
|
+
export interface PartialPaymentRequirementsSettings {
|
|
4127
4674
|
/**
|
|
4128
|
-
*
|
|
4675
|
+
*
|
|
4129
4676
|
* @type {boolean}
|
|
4130
|
-
* @memberof
|
|
4677
|
+
* @memberof PartialPaymentRequirementsSettings
|
|
4131
4678
|
*/
|
|
4132
|
-
'
|
|
4679
|
+
'requireCardImprint'?: boolean;
|
|
4133
4680
|
/**
|
|
4134
|
-
*
|
|
4681
|
+
*
|
|
4135
4682
|
* @type {boolean}
|
|
4136
|
-
* @memberof
|
|
4683
|
+
* @memberof PartialPaymentRequirementsSettings
|
|
4137
4684
|
*/
|
|
4138
|
-
'
|
|
4685
|
+
'requireOnlinePayment'?: boolean;
|
|
4686
|
+
}
|
|
4687
|
+
/**
|
|
4688
|
+
* Make all properties in T optional
|
|
4689
|
+
* @export
|
|
4690
|
+
* @interface PartialPublicAccessPartialPublicAccessSettingsSchoolAccessPartialSchoolAccessSettingsHotelAccessPartialHotelAccessSettingsPaymentRequirementsPartialPaymentRequirementsSettings
|
|
4691
|
+
*/
|
|
4692
|
+
export interface PartialPublicAccessPartialPublicAccessSettingsSchoolAccessPartialSchoolAccessSettingsHotelAccessPartialHotelAccessSettingsPaymentRequirementsPartialPaymentRequirementsSettings {
|
|
4139
4693
|
/**
|
|
4140
|
-
*
|
|
4141
|
-
* @type {
|
|
4142
|
-
* @memberof
|
|
4694
|
+
*
|
|
4695
|
+
* @type {PartialPublicAccessSettings}
|
|
4696
|
+
* @memberof PartialPublicAccessPartialPublicAccessSettingsSchoolAccessPartialSchoolAccessSettingsHotelAccessPartialHotelAccessSettingsPaymentRequirementsPartialPaymentRequirementsSettings
|
|
4143
4697
|
*/
|
|
4144
|
-
'
|
|
4698
|
+
'publicAccess'?: PartialPublicAccessSettings;
|
|
4145
4699
|
/**
|
|
4146
|
-
*
|
|
4700
|
+
*
|
|
4701
|
+
* @type {PartialSchoolAccessSettings}
|
|
4702
|
+
* @memberof PartialPublicAccessPartialPublicAccessSettingsSchoolAccessPartialSchoolAccessSettingsHotelAccessPartialHotelAccessSettingsPaymentRequirementsPartialPaymentRequirementsSettings
|
|
4703
|
+
*/
|
|
4704
|
+
'schoolAccess'?: PartialSchoolAccessSettings;
|
|
4705
|
+
/**
|
|
4706
|
+
*
|
|
4707
|
+
* @type {PartialHotelAccessSettings}
|
|
4708
|
+
* @memberof PartialPublicAccessPartialPublicAccessSettingsSchoolAccessPartialSchoolAccessSettingsHotelAccessPartialHotelAccessSettingsPaymentRequirementsPartialPaymentRequirementsSettings
|
|
4709
|
+
*/
|
|
4710
|
+
'hotelAccess'?: PartialHotelAccessSettings;
|
|
4711
|
+
/**
|
|
4712
|
+
*
|
|
4713
|
+
* @type {PartialPaymentRequirementsSettings}
|
|
4714
|
+
* @memberof PartialPublicAccessPartialPublicAccessSettingsSchoolAccessPartialSchoolAccessSettingsHotelAccessPartialHotelAccessSettingsPaymentRequirementsPartialPaymentRequirementsSettings
|
|
4715
|
+
*/
|
|
4716
|
+
'paymentRequirements'?: PartialPaymentRequirementsSettings;
|
|
4717
|
+
}
|
|
4718
|
+
/**
|
|
4719
|
+
* Make all properties in T optional
|
|
4720
|
+
* @export
|
|
4721
|
+
* @interface PartialPublicAccessSettings
|
|
4722
|
+
*/
|
|
4723
|
+
export interface PartialPublicAccessSettings {
|
|
4724
|
+
/**
|
|
4725
|
+
*
|
|
4147
4726
|
* @type {string}
|
|
4148
|
-
* @memberof
|
|
4727
|
+
* @memberof PartialPublicAccessSettings
|
|
4149
4728
|
*/
|
|
4150
|
-
'
|
|
4729
|
+
'paymentMode'?: PartialPublicAccessSettingsPaymentModeEnum;
|
|
4151
4730
|
/**
|
|
4152
|
-
*
|
|
4731
|
+
*
|
|
4732
|
+
* @type {number}
|
|
4733
|
+
* @memberof PartialPublicAccessSettings
|
|
4734
|
+
*/
|
|
4735
|
+
'pricePerAccess'?: number;
|
|
4736
|
+
/**
|
|
4737
|
+
*
|
|
4153
4738
|
* @type {boolean}
|
|
4154
|
-
* @memberof
|
|
4739
|
+
* @memberof PartialPublicAccessSettings
|
|
4155
4740
|
*/
|
|
4156
|
-
'
|
|
4741
|
+
'enabled'?: boolean;
|
|
4742
|
+
}
|
|
4743
|
+
export declare const PartialPublicAccessSettingsPaymentModeEnum: {
|
|
4744
|
+
readonly Free: "free";
|
|
4745
|
+
readonly AccessFee: "access_fee";
|
|
4746
|
+
readonly PerCourt: "per_court";
|
|
4747
|
+
};
|
|
4748
|
+
export type PartialPublicAccessSettingsPaymentModeEnum = typeof PartialPublicAccessSettingsPaymentModeEnum[keyof typeof PartialPublicAccessSettingsPaymentModeEnum];
|
|
4749
|
+
/**
|
|
4750
|
+
* Make all properties in T optional
|
|
4751
|
+
* @export
|
|
4752
|
+
* @interface PartialSchoolAccessSettings
|
|
4753
|
+
*/
|
|
4754
|
+
export interface PartialSchoolAccessSettings {
|
|
4157
4755
|
/**
|
|
4158
|
-
*
|
|
4756
|
+
*
|
|
4159
4757
|
* @type {Array<string>}
|
|
4160
|
-
* @memberof
|
|
4758
|
+
* @memberof PartialSchoolAccessSettings
|
|
4161
4759
|
*/
|
|
4162
|
-
'
|
|
4760
|
+
'emailSuffixes'?: Array<string>;
|
|
4163
4761
|
/**
|
|
4164
4762
|
*
|
|
4165
|
-
* @type {
|
|
4166
|
-
* @memberof
|
|
4763
|
+
* @type {boolean}
|
|
4764
|
+
* @memberof PartialSchoolAccessSettings
|
|
4167
4765
|
*/
|
|
4168
|
-
'
|
|
4766
|
+
'requireCertification'?: boolean;
|
|
4169
4767
|
/**
|
|
4170
4768
|
*
|
|
4171
|
-
* @type {
|
|
4172
|
-
* @memberof
|
|
4769
|
+
* @type {boolean}
|
|
4770
|
+
* @memberof PartialSchoolAccessSettings
|
|
4173
4771
|
*/
|
|
4174
|
-
'
|
|
4772
|
+
'enabled'?: boolean;
|
|
4175
4773
|
}
|
|
4176
4774
|
/**
|
|
4177
4775
|
*
|
|
@@ -4241,6 +4839,25 @@ export interface PaymentMethodSetupResponse {
|
|
|
4241
4839
|
*/
|
|
4242
4840
|
'defaultPaymentMethodId'?: string | null;
|
|
4243
4841
|
}
|
|
4842
|
+
/**
|
|
4843
|
+
*
|
|
4844
|
+
* @export
|
|
4845
|
+
* @interface PaymentRequirementsSettings
|
|
4846
|
+
*/
|
|
4847
|
+
export interface PaymentRequirementsSettings {
|
|
4848
|
+
/**
|
|
4849
|
+
*
|
|
4850
|
+
* @type {boolean}
|
|
4851
|
+
* @memberof PaymentRequirementsSettings
|
|
4852
|
+
*/
|
|
4853
|
+
'requireCardImprint': boolean;
|
|
4854
|
+
/**
|
|
4855
|
+
*
|
|
4856
|
+
* @type {boolean}
|
|
4857
|
+
* @memberof PaymentRequirementsSettings
|
|
4858
|
+
*/
|
|
4859
|
+
'requireOnlinePayment': boolean;
|
|
4860
|
+
}
|
|
4244
4861
|
/**
|
|
4245
4862
|
* From T, pick a set of properties whose keys are in the union K
|
|
4246
4863
|
* @export
|
|
@@ -4609,6 +5226,37 @@ export interface ProfilePictureUpdateRequestBody {
|
|
|
4609
5226
|
*/
|
|
4610
5227
|
'profilePicture': string;
|
|
4611
5228
|
}
|
|
5229
|
+
/**
|
|
5230
|
+
*
|
|
5231
|
+
* @export
|
|
5232
|
+
* @interface PublicAccessSettings
|
|
5233
|
+
*/
|
|
5234
|
+
export interface PublicAccessSettings {
|
|
5235
|
+
/**
|
|
5236
|
+
*
|
|
5237
|
+
* @type {boolean}
|
|
5238
|
+
* @memberof PublicAccessSettings
|
|
5239
|
+
*/
|
|
5240
|
+
'enabled': boolean;
|
|
5241
|
+
/**
|
|
5242
|
+
*
|
|
5243
|
+
* @type {string}
|
|
5244
|
+
* @memberof PublicAccessSettings
|
|
5245
|
+
*/
|
|
5246
|
+
'paymentMode': PublicAccessSettingsPaymentModeEnum;
|
|
5247
|
+
/**
|
|
5248
|
+
*
|
|
5249
|
+
* @type {number}
|
|
5250
|
+
* @memberof PublicAccessSettings
|
|
5251
|
+
*/
|
|
5252
|
+
'pricePerAccess': number | null;
|
|
5253
|
+
}
|
|
5254
|
+
export declare const PublicAccessSettingsPaymentModeEnum: {
|
|
5255
|
+
readonly Free: "free";
|
|
5256
|
+
readonly AccessFee: "access_fee";
|
|
5257
|
+
readonly PerCourt: "per_court";
|
|
5258
|
+
};
|
|
5259
|
+
export type PublicAccessSettingsPaymentModeEnum = typeof PublicAccessSettingsPaymentModeEnum[keyof typeof PublicAccessSettingsPaymentModeEnum];
|
|
4612
5260
|
/**
|
|
4613
5261
|
*
|
|
4614
5262
|
* @export
|
|
@@ -5176,6 +5824,31 @@ export interface ResetPasswordRequest {
|
|
|
5176
5824
|
*/
|
|
5177
5825
|
'token'?: string;
|
|
5178
5826
|
}
|
|
5827
|
+
/**
|
|
5828
|
+
*
|
|
5829
|
+
* @export
|
|
5830
|
+
* @interface SchoolAccessSettings
|
|
5831
|
+
*/
|
|
5832
|
+
export interface SchoolAccessSettings {
|
|
5833
|
+
/**
|
|
5834
|
+
*
|
|
5835
|
+
* @type {boolean}
|
|
5836
|
+
* @memberof SchoolAccessSettings
|
|
5837
|
+
*/
|
|
5838
|
+
'enabled': boolean;
|
|
5839
|
+
/**
|
|
5840
|
+
*
|
|
5841
|
+
* @type {Array<string>}
|
|
5842
|
+
* @memberof SchoolAccessSettings
|
|
5843
|
+
*/
|
|
5844
|
+
'emailSuffixes': Array<string>;
|
|
5845
|
+
/**
|
|
5846
|
+
*
|
|
5847
|
+
* @type {boolean}
|
|
5848
|
+
* @memberof SchoolAccessSettings
|
|
5849
|
+
*/
|
|
5850
|
+
'requireCertification': boolean;
|
|
5851
|
+
}
|
|
5179
5852
|
/**
|
|
5180
5853
|
*
|
|
5181
5854
|
* @export
|
|
@@ -7006,6 +7679,111 @@ export interface UpdateActuality200Response {
|
|
|
7006
7679
|
*/
|
|
7007
7680
|
'actuality': any;
|
|
7008
7681
|
}
|
|
7682
|
+
/**
|
|
7683
|
+
*
|
|
7684
|
+
* @export
|
|
7685
|
+
* @interface UpdateClubGeneralSettingsRequest
|
|
7686
|
+
*/
|
|
7687
|
+
export interface UpdateClubGeneralSettingsRequest {
|
|
7688
|
+
/**
|
|
7689
|
+
*
|
|
7690
|
+
* @type {string}
|
|
7691
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7692
|
+
*/
|
|
7693
|
+
'name'?: string;
|
|
7694
|
+
/**
|
|
7695
|
+
*
|
|
7696
|
+
* @type {string}
|
|
7697
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7698
|
+
*/
|
|
7699
|
+
'email'?: string;
|
|
7700
|
+
/**
|
|
7701
|
+
*
|
|
7702
|
+
* @type {string}
|
|
7703
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7704
|
+
*/
|
|
7705
|
+
'phone'?: string;
|
|
7706
|
+
/**
|
|
7707
|
+
*
|
|
7708
|
+
* @type {string}
|
|
7709
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7710
|
+
*/
|
|
7711
|
+
'websiteUrl'?: string;
|
|
7712
|
+
/**
|
|
7713
|
+
*
|
|
7714
|
+
* @type {string}
|
|
7715
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7716
|
+
*/
|
|
7717
|
+
'description'?: string;
|
|
7718
|
+
/**
|
|
7719
|
+
*
|
|
7720
|
+
* @type {string}
|
|
7721
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7722
|
+
*/
|
|
7723
|
+
'rib'?: string | null;
|
|
7724
|
+
/**
|
|
7725
|
+
*
|
|
7726
|
+
* @type {string}
|
|
7727
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7728
|
+
*/
|
|
7729
|
+
'logo'?: string | null;
|
|
7730
|
+
/**
|
|
7731
|
+
*
|
|
7732
|
+
* @type {ClubLocationSettings}
|
|
7733
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7734
|
+
*/
|
|
7735
|
+
'location'?: ClubLocationSettings;
|
|
7736
|
+
}
|
|
7737
|
+
/**
|
|
7738
|
+
*
|
|
7739
|
+
* @export
|
|
7740
|
+
* @interface UpdateClubHoursSettingsRequest
|
|
7741
|
+
*/
|
|
7742
|
+
export interface UpdateClubHoursSettingsRequest {
|
|
7743
|
+
/**
|
|
7744
|
+
*
|
|
7745
|
+
* @type {PartialClubWeeklySchedule}
|
|
7746
|
+
* @memberof UpdateClubHoursSettingsRequest
|
|
7747
|
+
*/
|
|
7748
|
+
'schedule'?: PartialClubWeeklySchedule;
|
|
7749
|
+
/**
|
|
7750
|
+
*
|
|
7751
|
+
* @type {Array<ClubPricingPeriodResponse>}
|
|
7752
|
+
* @memberof UpdateClubHoursSettingsRequest
|
|
7753
|
+
*/
|
|
7754
|
+
'pricingPeriods'?: Array<ClubPricingPeriodResponse>;
|
|
7755
|
+
}
|
|
7756
|
+
/**
|
|
7757
|
+
*
|
|
7758
|
+
* @export
|
|
7759
|
+
* @interface UpdateClubPresentationSettingsRequest
|
|
7760
|
+
*/
|
|
7761
|
+
export interface UpdateClubPresentationSettingsRequest {
|
|
7762
|
+
/**
|
|
7763
|
+
*
|
|
7764
|
+
* @type {string}
|
|
7765
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
7766
|
+
*/
|
|
7767
|
+
'description'?: string;
|
|
7768
|
+
/**
|
|
7769
|
+
*
|
|
7770
|
+
* @type {Array<string>}
|
|
7771
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
7772
|
+
*/
|
|
7773
|
+
'tags'?: Array<string>;
|
|
7774
|
+
/**
|
|
7775
|
+
*
|
|
7776
|
+
* @type {Array<string | null>}
|
|
7777
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
7778
|
+
*/
|
|
7779
|
+
'bannerImages'?: Array<string | null>;
|
|
7780
|
+
/**
|
|
7781
|
+
*
|
|
7782
|
+
* @type {Array<string | null>}
|
|
7783
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
7784
|
+
*/
|
|
7785
|
+
'galleryImages'?: Array<string | null>;
|
|
7786
|
+
}
|
|
7009
7787
|
/**
|
|
7010
7788
|
*
|
|
7011
7789
|
* @export
|
|
@@ -7069,53 +7847,108 @@ export interface UpdateClubRequest {
|
|
|
7069
7847
|
export interface UpdateClubRequestLocation {
|
|
7070
7848
|
/**
|
|
7071
7849
|
*
|
|
7072
|
-
* @type {UpdateClubRequestLocationCoordinates}
|
|
7073
|
-
* @memberof UpdateClubRequestLocation
|
|
7850
|
+
* @type {UpdateClubRequestLocationCoordinates}
|
|
7851
|
+
* @memberof UpdateClubRequestLocation
|
|
7852
|
+
*/
|
|
7853
|
+
'coordinates'?: UpdateClubRequestLocationCoordinates;
|
|
7854
|
+
/**
|
|
7855
|
+
*
|
|
7856
|
+
* @type {string}
|
|
7857
|
+
* @memberof UpdateClubRequestLocation
|
|
7858
|
+
*/
|
|
7859
|
+
'country'?: string;
|
|
7860
|
+
/**
|
|
7861
|
+
*
|
|
7862
|
+
* @type {string}
|
|
7863
|
+
* @memberof UpdateClubRequestLocation
|
|
7864
|
+
*/
|
|
7865
|
+
'zipCode'?: string;
|
|
7866
|
+
/**
|
|
7867
|
+
*
|
|
7868
|
+
* @type {string}
|
|
7869
|
+
* @memberof UpdateClubRequestLocation
|
|
7870
|
+
*/
|
|
7871
|
+
'city'?: string;
|
|
7872
|
+
/**
|
|
7873
|
+
*
|
|
7874
|
+
* @type {string}
|
|
7875
|
+
* @memberof UpdateClubRequestLocation
|
|
7876
|
+
*/
|
|
7877
|
+
'address'?: string;
|
|
7878
|
+
}
|
|
7879
|
+
/**
|
|
7880
|
+
*
|
|
7881
|
+
* @export
|
|
7882
|
+
* @interface UpdateClubRequestLocationCoordinates
|
|
7883
|
+
*/
|
|
7884
|
+
export interface UpdateClubRequestLocationCoordinates {
|
|
7885
|
+
/**
|
|
7886
|
+
*
|
|
7887
|
+
* @type {number}
|
|
7888
|
+
* @memberof UpdateClubRequestLocationCoordinates
|
|
7889
|
+
*/
|
|
7890
|
+
'lng'?: number;
|
|
7891
|
+
/**
|
|
7892
|
+
*
|
|
7893
|
+
* @type {number}
|
|
7894
|
+
* @memberof UpdateClubRequestLocationCoordinates
|
|
7895
|
+
*/
|
|
7896
|
+
'lat'?: number;
|
|
7897
|
+
}
|
|
7898
|
+
/**
|
|
7899
|
+
*
|
|
7900
|
+
* @export
|
|
7901
|
+
* @interface UpdateClubReservationSettingsRequest
|
|
7902
|
+
*/
|
|
7903
|
+
export interface UpdateClubReservationSettingsRequest {
|
|
7904
|
+
/**
|
|
7905
|
+
*
|
|
7906
|
+
* @type {number}
|
|
7907
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
7074
7908
|
*/
|
|
7075
|
-
'
|
|
7909
|
+
'slotDuration'?: number;
|
|
7076
7910
|
/**
|
|
7077
7911
|
*
|
|
7078
|
-
* @type {
|
|
7079
|
-
* @memberof
|
|
7912
|
+
* @type {number}
|
|
7913
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
7080
7914
|
*/
|
|
7081
|
-
'
|
|
7915
|
+
'slotPrice'?: number;
|
|
7082
7916
|
/**
|
|
7083
7917
|
*
|
|
7084
|
-
* @type {
|
|
7085
|
-
* @memberof
|
|
7918
|
+
* @type {number}
|
|
7919
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
7086
7920
|
*/
|
|
7087
|
-
'
|
|
7921
|
+
'maxReservations'?: number | null;
|
|
7088
7922
|
/**
|
|
7089
7923
|
*
|
|
7090
|
-
* @type {
|
|
7091
|
-
* @memberof
|
|
7924
|
+
* @type {boolean}
|
|
7925
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
7092
7926
|
*/
|
|
7093
|
-
'
|
|
7927
|
+
'unlimitedReservations'?: boolean;
|
|
7094
7928
|
/**
|
|
7095
7929
|
*
|
|
7096
|
-
* @type {
|
|
7097
|
-
* @memberof
|
|
7930
|
+
* @type {number}
|
|
7931
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
7098
7932
|
*/
|
|
7099
|
-
'
|
|
7100
|
-
}
|
|
7101
|
-
/**
|
|
7102
|
-
*
|
|
7103
|
-
* @export
|
|
7104
|
-
* @interface UpdateClubRequestLocationCoordinates
|
|
7105
|
-
*/
|
|
7106
|
-
export interface UpdateClubRequestLocationCoordinates {
|
|
7933
|
+
'cancellationDelay'?: number;
|
|
7107
7934
|
/**
|
|
7108
7935
|
*
|
|
7109
7936
|
* @type {number}
|
|
7110
|
-
* @memberof
|
|
7937
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
7111
7938
|
*/
|
|
7112
|
-
'
|
|
7939
|
+
'bookingPeriod'?: number;
|
|
7113
7940
|
/**
|
|
7114
7941
|
*
|
|
7115
7942
|
* @type {number}
|
|
7116
|
-
* @memberof
|
|
7943
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
7117
7944
|
*/
|
|
7118
|
-
'
|
|
7945
|
+
'limitMultipleReservations'?: number | null;
|
|
7946
|
+
/**
|
|
7947
|
+
*
|
|
7948
|
+
* @type {PartialPublicAccessPartialPublicAccessSettingsSchoolAccessPartialSchoolAccessSettingsHotelAccessPartialHotelAccessSettingsPaymentRequirementsPartialPaymentRequirementsSettings}
|
|
7949
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
7950
|
+
*/
|
|
7951
|
+
'accessSettings'?: PartialPublicAccessPartialPublicAccessSettingsSchoolAccessPartialSchoolAccessSettingsHotelAccessPartialHotelAccessSettingsPaymentRequirementsPartialPaymentRequirementsSettings;
|
|
7119
7952
|
}
|
|
7120
7953
|
/**
|
|
7121
7954
|
*
|
|
@@ -7153,7 +7986,7 @@ export interface UpdateClubSettingsRequest {
|
|
|
7153
7986
|
* @type {number}
|
|
7154
7987
|
* @memberof UpdateClubSettingsRequest
|
|
7155
7988
|
*/
|
|
7156
|
-
'maxWeeklyBookings'?: number;
|
|
7989
|
+
'maxWeeklyBookings'?: number | null;
|
|
7157
7990
|
/**
|
|
7158
7991
|
* Autoriser plusieurs réservations en même temps
|
|
7159
7992
|
* @type {boolean}
|
|
@@ -7165,7 +7998,7 @@ export interface UpdateClubSettingsRequest {
|
|
|
7165
7998
|
* @type {number}
|
|
7166
7999
|
* @memberof UpdateClubSettingsRequest
|
|
7167
8000
|
*/
|
|
7168
|
-
'sameTimeBookingsLimit'?: number;
|
|
8001
|
+
'sameTimeBookingsLimit'?: number | null;
|
|
7169
8002
|
/**
|
|
7170
8003
|
* Limite d\'annulation en heures
|
|
7171
8004
|
* @type {number}
|
|
@@ -7269,10 +8102,10 @@ export interface UpdateEventRequest {
|
|
|
7269
8102
|
'endDate'?: string;
|
|
7270
8103
|
/**
|
|
7271
8104
|
*
|
|
7272
|
-
* @type {Array<
|
|
8105
|
+
* @type {Array<string>}
|
|
7273
8106
|
* @memberof UpdateEventRequest
|
|
7274
8107
|
*/
|
|
7275
|
-
'courts'?: Array<
|
|
8108
|
+
'courts'?: Array<string>;
|
|
7276
8109
|
/**
|
|
7277
8110
|
*
|
|
7278
8111
|
* @type {Array<string>}
|
|
@@ -8838,10 +9671,12 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
8838
9671
|
/**
|
|
8839
9672
|
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
8840
9673
|
* @param {string} playerId
|
|
9674
|
+
* @param {number} [page]
|
|
9675
|
+
* @param {number} [pageSize]
|
|
8841
9676
|
* @param {*} [options] Override http request option.
|
|
8842
9677
|
* @throws {RequiredError}
|
|
8843
9678
|
*/
|
|
8844
|
-
getClubPlayerBookingsById: (playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9679
|
+
getClubPlayerBookingsById: (playerId: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8845
9680
|
/**
|
|
8846
9681
|
* Récupère les informations détaillées d\'un joueur par son ID
|
|
8847
9682
|
* @param {string} playerId
|
|
@@ -8932,10 +9767,12 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
8932
9767
|
/**
|
|
8933
9768
|
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
8934
9769
|
* @param {string} playerId
|
|
9770
|
+
* @param {number} [page]
|
|
9771
|
+
* @param {number} [pageSize]
|
|
8935
9772
|
* @param {*} [options] Override http request option.
|
|
8936
9773
|
* @throws {RequiredError}
|
|
8937
9774
|
*/
|
|
8938
|
-
getClubPlayerBookingsById(playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerBookingsResponse>>;
|
|
9775
|
+
getClubPlayerBookingsById(playerId: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerBookingsResponse>>;
|
|
8939
9776
|
/**
|
|
8940
9777
|
* Récupère les informations détaillées d\'un joueur par son ID
|
|
8941
9778
|
* @param {string} playerId
|
|
@@ -9128,6 +9965,18 @@ export interface ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest {
|
|
|
9128
9965
|
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
9129
9966
|
*/
|
|
9130
9967
|
readonly playerId: string;
|
|
9968
|
+
/**
|
|
9969
|
+
*
|
|
9970
|
+
* @type {number}
|
|
9971
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
9972
|
+
*/
|
|
9973
|
+
readonly page?: number;
|
|
9974
|
+
/**
|
|
9975
|
+
*
|
|
9976
|
+
* @type {number}
|
|
9977
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
9978
|
+
*/
|
|
9979
|
+
readonly pageSize?: number;
|
|
9131
9980
|
}
|
|
9132
9981
|
/**
|
|
9133
9982
|
* Request parameters for getClubPlayerById operation in ClubAnalyticsStaffApi.
|
|
@@ -9636,6 +10485,20 @@ export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: C
|
|
|
9636
10485
|
* @throws {RequiredError}
|
|
9637
10486
|
*/
|
|
9638
10487
|
updateClubSettings: (updateClubSettingsRequest: UpdateClubSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10488
|
+
/**
|
|
10489
|
+
*
|
|
10490
|
+
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
10491
|
+
* @param {*} [options] Override http request option.
|
|
10492
|
+
* @throws {RequiredError}
|
|
10493
|
+
*/
|
|
10494
|
+
updateHoursSettings: (updateClubHoursSettingsRequest: UpdateClubHoursSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10495
|
+
/**
|
|
10496
|
+
*
|
|
10497
|
+
* @param {UpdateClubReservationSettingsRequest} updateClubReservationSettingsRequest
|
|
10498
|
+
* @param {*} [options] Override http request option.
|
|
10499
|
+
* @throws {RequiredError}
|
|
10500
|
+
*/
|
|
10501
|
+
updateReservationSettings: (updateClubReservationSettingsRequest: UpdateClubReservationSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9639
10502
|
};
|
|
9640
10503
|
/**
|
|
9641
10504
|
* ClubSettingsManagerApi - functional programming interface
|
|
@@ -9669,6 +10532,20 @@ export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) =
|
|
|
9669
10532
|
* @throws {RequiredError}
|
|
9670
10533
|
*/
|
|
9671
10534
|
updateClubSettings(updateClubSettingsRequest: UpdateClubSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubSettingsResponse>>;
|
|
10535
|
+
/**
|
|
10536
|
+
*
|
|
10537
|
+
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
10538
|
+
* @param {*} [options] Override http request option.
|
|
10539
|
+
* @throws {RequiredError}
|
|
10540
|
+
*/
|
|
10541
|
+
updateHoursSettings(updateClubHoursSettingsRequest: UpdateClubHoursSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
10542
|
+
/**
|
|
10543
|
+
*
|
|
10544
|
+
* @param {UpdateClubReservationSettingsRequest} updateClubReservationSettingsRequest
|
|
10545
|
+
* @param {*} [options] Override http request option.
|
|
10546
|
+
* @throws {RequiredError}
|
|
10547
|
+
*/
|
|
10548
|
+
updateReservationSettings(updateClubReservationSettingsRequest: UpdateClubReservationSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubReservationSettingsResponse>>;
|
|
9672
10549
|
};
|
|
9673
10550
|
/**
|
|
9674
10551
|
* ClubSettingsManagerApi - factory interface
|
|
@@ -9701,6 +10578,20 @@ export declare const ClubSettingsManagerApiFactory: (configuration?: Configurati
|
|
|
9701
10578
|
* @throws {RequiredError}
|
|
9702
10579
|
*/
|
|
9703
10580
|
updateClubSettings(requestParameters: ClubSettingsManagerApiUpdateClubSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubSettingsResponse>;
|
|
10581
|
+
/**
|
|
10582
|
+
*
|
|
10583
|
+
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|
|
10584
|
+
* @param {*} [options] Override http request option.
|
|
10585
|
+
* @throws {RequiredError}
|
|
10586
|
+
*/
|
|
10587
|
+
updateHoursSettings(requestParameters: ClubSettingsManagerApiUpdateHoursSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
10588
|
+
/**
|
|
10589
|
+
*
|
|
10590
|
+
* @param {ClubSettingsManagerApiUpdateReservationSettingsRequest} requestParameters Request parameters.
|
|
10591
|
+
* @param {*} [options] Override http request option.
|
|
10592
|
+
* @throws {RequiredError}
|
|
10593
|
+
*/
|
|
10594
|
+
updateReservationSettings(requestParameters: ClubSettingsManagerApiUpdateReservationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubReservationSettingsResponse>;
|
|
9704
10595
|
};
|
|
9705
10596
|
/**
|
|
9706
10597
|
* Request parameters for createClubSettings operation in ClubSettingsManagerApi.
|
|
@@ -9734,6 +10625,32 @@ export interface ClubSettingsManagerApiUpdateClubSettingsRequest {
|
|
|
9734
10625
|
*/
|
|
9735
10626
|
readonly updateClubSettingsRequest: UpdateClubSettingsRequest;
|
|
9736
10627
|
}
|
|
10628
|
+
/**
|
|
10629
|
+
* Request parameters for updateHoursSettings operation in ClubSettingsManagerApi.
|
|
10630
|
+
* @export
|
|
10631
|
+
* @interface ClubSettingsManagerApiUpdateHoursSettingsRequest
|
|
10632
|
+
*/
|
|
10633
|
+
export interface ClubSettingsManagerApiUpdateHoursSettingsRequest {
|
|
10634
|
+
/**
|
|
10635
|
+
*
|
|
10636
|
+
* @type {UpdateClubHoursSettingsRequest}
|
|
10637
|
+
* @memberof ClubSettingsManagerApiUpdateHoursSettings
|
|
10638
|
+
*/
|
|
10639
|
+
readonly updateClubHoursSettingsRequest: UpdateClubHoursSettingsRequest;
|
|
10640
|
+
}
|
|
10641
|
+
/**
|
|
10642
|
+
* Request parameters for updateReservationSettings operation in ClubSettingsManagerApi.
|
|
10643
|
+
* @export
|
|
10644
|
+
* @interface ClubSettingsManagerApiUpdateReservationSettingsRequest
|
|
10645
|
+
*/
|
|
10646
|
+
export interface ClubSettingsManagerApiUpdateReservationSettingsRequest {
|
|
10647
|
+
/**
|
|
10648
|
+
*
|
|
10649
|
+
* @type {UpdateClubReservationSettingsRequest}
|
|
10650
|
+
* @memberof ClubSettingsManagerApiUpdateReservationSettings
|
|
10651
|
+
*/
|
|
10652
|
+
readonly updateClubReservationSettingsRequest: UpdateClubReservationSettingsRequest;
|
|
10653
|
+
}
|
|
9737
10654
|
/**
|
|
9738
10655
|
* ClubSettingsManagerApi - object-oriented interface
|
|
9739
10656
|
* @export
|
|
@@ -9771,6 +10688,98 @@ export declare class ClubSettingsManagerApi extends BaseAPI {
|
|
|
9771
10688
|
* @memberof ClubSettingsManagerApi
|
|
9772
10689
|
*/
|
|
9773
10690
|
updateClubSettings(requestParameters: ClubSettingsManagerApiUpdateClubSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubSettingsResponse, any, {}>>;
|
|
10691
|
+
/**
|
|
10692
|
+
*
|
|
10693
|
+
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|
|
10694
|
+
* @param {*} [options] Override http request option.
|
|
10695
|
+
* @throws {RequiredError}
|
|
10696
|
+
* @memberof ClubSettingsManagerApi
|
|
10697
|
+
*/
|
|
10698
|
+
updateHoursSettings(requestParameters: ClubSettingsManagerApiUpdateHoursSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
10699
|
+
/**
|
|
10700
|
+
*
|
|
10701
|
+
* @param {ClubSettingsManagerApiUpdateReservationSettingsRequest} requestParameters Request parameters.
|
|
10702
|
+
* @param {*} [options] Override http request option.
|
|
10703
|
+
* @throws {RequiredError}
|
|
10704
|
+
* @memberof ClubSettingsManagerApi
|
|
10705
|
+
*/
|
|
10706
|
+
updateReservationSettings(requestParameters: ClubSettingsManagerApiUpdateReservationSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubReservationSettingsResponse, any, {}>>;
|
|
10707
|
+
}
|
|
10708
|
+
/**
|
|
10709
|
+
* ClubSettingsStaffApi - axios parameter creator
|
|
10710
|
+
* @export
|
|
10711
|
+
*/
|
|
10712
|
+
export declare const ClubSettingsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
10713
|
+
/**
|
|
10714
|
+
*
|
|
10715
|
+
* @param {*} [options] Override http request option.
|
|
10716
|
+
* @throws {RequiredError}
|
|
10717
|
+
*/
|
|
10718
|
+
getHoursSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10719
|
+
/**
|
|
10720
|
+
*
|
|
10721
|
+
* @param {*} [options] Override http request option.
|
|
10722
|
+
* @throws {RequiredError}
|
|
10723
|
+
*/
|
|
10724
|
+
getReservationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10725
|
+
};
|
|
10726
|
+
/**
|
|
10727
|
+
* ClubSettingsStaffApi - functional programming interface
|
|
10728
|
+
* @export
|
|
10729
|
+
*/
|
|
10730
|
+
export declare const ClubSettingsStaffApiFp: (configuration?: Configuration) => {
|
|
10731
|
+
/**
|
|
10732
|
+
*
|
|
10733
|
+
* @param {*} [options] Override http request option.
|
|
10734
|
+
* @throws {RequiredError}
|
|
10735
|
+
*/
|
|
10736
|
+
getHoursSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
10737
|
+
/**
|
|
10738
|
+
*
|
|
10739
|
+
* @param {*} [options] Override http request option.
|
|
10740
|
+
* @throws {RequiredError}
|
|
10741
|
+
*/
|
|
10742
|
+
getReservationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubReservationSettingsResponse>>;
|
|
10743
|
+
};
|
|
10744
|
+
/**
|
|
10745
|
+
* ClubSettingsStaffApi - factory interface
|
|
10746
|
+
* @export
|
|
10747
|
+
*/
|
|
10748
|
+
export declare const ClubSettingsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10749
|
+
/**
|
|
10750
|
+
*
|
|
10751
|
+
* @param {*} [options] Override http request option.
|
|
10752
|
+
* @throws {RequiredError}
|
|
10753
|
+
*/
|
|
10754
|
+
getHoursSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
10755
|
+
/**
|
|
10756
|
+
*
|
|
10757
|
+
* @param {*} [options] Override http request option.
|
|
10758
|
+
* @throws {RequiredError}
|
|
10759
|
+
*/
|
|
10760
|
+
getReservationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubReservationSettingsResponse>;
|
|
10761
|
+
};
|
|
10762
|
+
/**
|
|
10763
|
+
* ClubSettingsStaffApi - object-oriented interface
|
|
10764
|
+
* @export
|
|
10765
|
+
* @class ClubSettingsStaffApi
|
|
10766
|
+
* @extends {BaseAPI}
|
|
10767
|
+
*/
|
|
10768
|
+
export declare class ClubSettingsStaffApi extends BaseAPI {
|
|
10769
|
+
/**
|
|
10770
|
+
*
|
|
10771
|
+
* @param {*} [options] Override http request option.
|
|
10772
|
+
* @throws {RequiredError}
|
|
10773
|
+
* @memberof ClubSettingsStaffApi
|
|
10774
|
+
*/
|
|
10775
|
+
getHoursSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
10776
|
+
/**
|
|
10777
|
+
*
|
|
10778
|
+
* @param {*} [options] Override http request option.
|
|
10779
|
+
* @throws {RequiredError}
|
|
10780
|
+
* @memberof ClubSettingsStaffApi
|
|
10781
|
+
*/
|
|
10782
|
+
getReservationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubReservationSettingsResponse, any, {}>>;
|
|
9774
10783
|
}
|
|
9775
10784
|
/**
|
|
9776
10785
|
* ClubsApi - axios parameter creator
|
|
@@ -10377,6 +11386,13 @@ export declare const ClubsManagerApiAxiosParamCreator: (configuration?: Configur
|
|
|
10377
11386
|
* @throws {RequiredError}
|
|
10378
11387
|
*/
|
|
10379
11388
|
updateClub: (updateClubRequest: UpdateClubRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11389
|
+
/**
|
|
11390
|
+
*
|
|
11391
|
+
* @param {UpdateClubGeneralSettingsRequest} updateClubGeneralSettingsRequest
|
|
11392
|
+
* @param {*} [options] Override http request option.
|
|
11393
|
+
* @throws {RequiredError}
|
|
11394
|
+
*/
|
|
11395
|
+
updateClubGeneralSettings: (updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10380
11396
|
/**
|
|
10381
11397
|
*
|
|
10382
11398
|
* @param {any} body
|
|
@@ -10384,6 +11400,13 @@ export declare const ClubsManagerApiAxiosParamCreator: (configuration?: Configur
|
|
|
10384
11400
|
* @throws {RequiredError}
|
|
10385
11401
|
*/
|
|
10386
11402
|
updateClubInfos: (body: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11403
|
+
/**
|
|
11404
|
+
*
|
|
11405
|
+
* @param {UpdateClubPresentationSettingsRequest} updateClubPresentationSettingsRequest
|
|
11406
|
+
* @param {*} [options] Override http request option.
|
|
11407
|
+
* @throws {RequiredError}
|
|
11408
|
+
*/
|
|
11409
|
+
updateClubPresentationSettings: (updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10387
11410
|
/**
|
|
10388
11411
|
*
|
|
10389
11412
|
* @param {string} courtId
|
|
@@ -10512,6 +11535,13 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
10512
11535
|
* @throws {RequiredError}
|
|
10513
11536
|
*/
|
|
10514
11537
|
updateClub(updateClubRequest: UpdateClubRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubResponse>>;
|
|
11538
|
+
/**
|
|
11539
|
+
*
|
|
11540
|
+
* @param {UpdateClubGeneralSettingsRequest} updateClubGeneralSettingsRequest
|
|
11541
|
+
* @param {*} [options] Override http request option.
|
|
11542
|
+
* @throws {RequiredError}
|
|
11543
|
+
*/
|
|
11544
|
+
updateClubGeneralSettings(updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubGeneralSettingsResponse>>;
|
|
10515
11545
|
/**
|
|
10516
11546
|
*
|
|
10517
11547
|
* @param {any} body
|
|
@@ -10519,6 +11549,13 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
10519
11549
|
* @throws {RequiredError}
|
|
10520
11550
|
*/
|
|
10521
11551
|
updateClubInfos(body: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
11552
|
+
/**
|
|
11553
|
+
*
|
|
11554
|
+
* @param {UpdateClubPresentationSettingsRequest} updateClubPresentationSettingsRequest
|
|
11555
|
+
* @param {*} [options] Override http request option.
|
|
11556
|
+
* @throws {RequiredError}
|
|
11557
|
+
*/
|
|
11558
|
+
updateClubPresentationSettings(updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
10522
11559
|
/**
|
|
10523
11560
|
*
|
|
10524
11561
|
* @param {string} courtId
|
|
@@ -10645,6 +11682,13 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
10645
11682
|
* @throws {RequiredError}
|
|
10646
11683
|
*/
|
|
10647
11684
|
updateClub(requestParameters: ClubsManagerApiUpdateClubRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubResponse>;
|
|
11685
|
+
/**
|
|
11686
|
+
*
|
|
11687
|
+
* @param {ClubsManagerApiUpdateClubGeneralSettingsRequest} requestParameters Request parameters.
|
|
11688
|
+
* @param {*} [options] Override http request option.
|
|
11689
|
+
* @throws {RequiredError}
|
|
11690
|
+
*/
|
|
11691
|
+
updateClubGeneralSettings(requestParameters: ClubsManagerApiUpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubGeneralSettingsResponse>;
|
|
10648
11692
|
/**
|
|
10649
11693
|
*
|
|
10650
11694
|
* @param {ClubsManagerApiUpdateClubInfosRequest} requestParameters Request parameters.
|
|
@@ -10652,6 +11696,13 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
10652
11696
|
* @throws {RequiredError}
|
|
10653
11697
|
*/
|
|
10654
11698
|
updateClubInfos(requestParameters: ClubsManagerApiUpdateClubInfosRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
11699
|
+
/**
|
|
11700
|
+
*
|
|
11701
|
+
* @param {ClubsManagerApiUpdateClubPresentationSettingsRequest} requestParameters Request parameters.
|
|
11702
|
+
* @param {*} [options] Override http request option.
|
|
11703
|
+
* @throws {RequiredError}
|
|
11704
|
+
*/
|
|
11705
|
+
updateClubPresentationSettings(requestParameters: ClubsManagerApiUpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
10655
11706
|
/**
|
|
10656
11707
|
*
|
|
10657
11708
|
* @param {ClubsManagerApiUpdateCourtRequest} requestParameters Request parameters.
|
|
@@ -10861,6 +11912,19 @@ export interface ClubsManagerApiUpdateClubRequest {
|
|
|
10861
11912
|
*/
|
|
10862
11913
|
readonly updateClubRequest: UpdateClubRequest;
|
|
10863
11914
|
}
|
|
11915
|
+
/**
|
|
11916
|
+
* Request parameters for updateClubGeneralSettings operation in ClubsManagerApi.
|
|
11917
|
+
* @export
|
|
11918
|
+
* @interface ClubsManagerApiUpdateClubGeneralSettingsRequest
|
|
11919
|
+
*/
|
|
11920
|
+
export interface ClubsManagerApiUpdateClubGeneralSettingsRequest {
|
|
11921
|
+
/**
|
|
11922
|
+
*
|
|
11923
|
+
* @type {UpdateClubGeneralSettingsRequest}
|
|
11924
|
+
* @memberof ClubsManagerApiUpdateClubGeneralSettings
|
|
11925
|
+
*/
|
|
11926
|
+
readonly updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest;
|
|
11927
|
+
}
|
|
10864
11928
|
/**
|
|
10865
11929
|
* Request parameters for updateClubInfos operation in ClubsManagerApi.
|
|
10866
11930
|
* @export
|
|
@@ -10874,6 +11938,19 @@ export interface ClubsManagerApiUpdateClubInfosRequest {
|
|
|
10874
11938
|
*/
|
|
10875
11939
|
readonly body: any;
|
|
10876
11940
|
}
|
|
11941
|
+
/**
|
|
11942
|
+
* Request parameters for updateClubPresentationSettings operation in ClubsManagerApi.
|
|
11943
|
+
* @export
|
|
11944
|
+
* @interface ClubsManagerApiUpdateClubPresentationSettingsRequest
|
|
11945
|
+
*/
|
|
11946
|
+
export interface ClubsManagerApiUpdateClubPresentationSettingsRequest {
|
|
11947
|
+
/**
|
|
11948
|
+
*
|
|
11949
|
+
* @type {UpdateClubPresentationSettingsRequest}
|
|
11950
|
+
* @memberof ClubsManagerApiUpdateClubPresentationSettings
|
|
11951
|
+
*/
|
|
11952
|
+
readonly updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest;
|
|
11953
|
+
}
|
|
10877
11954
|
/**
|
|
10878
11955
|
* Request parameters for updateCourt operation in ClubsManagerApi.
|
|
10879
11956
|
* @export
|
|
@@ -11038,6 +12115,14 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
11038
12115
|
* @memberof ClubsManagerApi
|
|
11039
12116
|
*/
|
|
11040
12117
|
updateClub(requestParameters: ClubsManagerApiUpdateClubRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubResponse, any, {}>>;
|
|
12118
|
+
/**
|
|
12119
|
+
*
|
|
12120
|
+
* @param {ClubsManagerApiUpdateClubGeneralSettingsRequest} requestParameters Request parameters.
|
|
12121
|
+
* @param {*} [options] Override http request option.
|
|
12122
|
+
* @throws {RequiredError}
|
|
12123
|
+
* @memberof ClubsManagerApi
|
|
12124
|
+
*/
|
|
12125
|
+
updateClubGeneralSettings(requestParameters: ClubsManagerApiUpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubGeneralSettingsResponse, any, {}>>;
|
|
11041
12126
|
/**
|
|
11042
12127
|
*
|
|
11043
12128
|
* @param {ClubsManagerApiUpdateClubInfosRequest} requestParameters Request parameters.
|
|
@@ -11046,6 +12131,14 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
11046
12131
|
* @memberof ClubsManagerApi
|
|
11047
12132
|
*/
|
|
11048
12133
|
updateClubInfos(requestParameters: ClubsManagerApiUpdateClubInfosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
12134
|
+
/**
|
|
12135
|
+
*
|
|
12136
|
+
* @param {ClubsManagerApiUpdateClubPresentationSettingsRequest} requestParameters Request parameters.
|
|
12137
|
+
* @param {*} [options] Override http request option.
|
|
12138
|
+
* @throws {RequiredError}
|
|
12139
|
+
* @memberof ClubsManagerApi
|
|
12140
|
+
*/
|
|
12141
|
+
updateClubPresentationSettings(requestParameters: ClubsManagerApiUpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
11049
12142
|
/**
|
|
11050
12143
|
*
|
|
11051
12144
|
* @param {ClubsManagerApiUpdateCourtRequest} requestParameters Request parameters.
|
|
@@ -11074,6 +12167,12 @@ export declare const ClubsStaffApiAxiosParamCreator: (configuration?: Configurat
|
|
|
11074
12167
|
* @throws {RequiredError}
|
|
11075
12168
|
*/
|
|
11076
12169
|
getActualities: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12170
|
+
/**
|
|
12171
|
+
*
|
|
12172
|
+
* @param {*} [options] Override http request option.
|
|
12173
|
+
* @throws {RequiredError}
|
|
12174
|
+
*/
|
|
12175
|
+
getClubGeneralSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11077
12176
|
/**
|
|
11078
12177
|
*
|
|
11079
12178
|
* @param {*} [options] Override http request option.
|
|
@@ -11086,6 +12185,12 @@ export declare const ClubsStaffApiAxiosParamCreator: (configuration?: Configurat
|
|
|
11086
12185
|
* @throws {RequiredError}
|
|
11087
12186
|
*/
|
|
11088
12187
|
getClubMembers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12188
|
+
/**
|
|
12189
|
+
*
|
|
12190
|
+
* @param {*} [options] Override http request option.
|
|
12191
|
+
* @throws {RequiredError}
|
|
12192
|
+
*/
|
|
12193
|
+
getClubPresentationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11089
12194
|
/**
|
|
11090
12195
|
* Récupère les rôles d\'un club
|
|
11091
12196
|
* @param {*} [options] Override http request option.
|
|
@@ -11123,6 +12228,12 @@ export declare const ClubsStaffApiFp: (configuration?: Configuration) => {
|
|
|
11123
12228
|
* @throws {RequiredError}
|
|
11124
12229
|
*/
|
|
11125
12230
|
getActualities(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetActualities200Response>>;
|
|
12231
|
+
/**
|
|
12232
|
+
*
|
|
12233
|
+
* @param {*} [options] Override http request option.
|
|
12234
|
+
* @throws {RequiredError}
|
|
12235
|
+
*/
|
|
12236
|
+
getClubGeneralSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubGeneralSettingsResponse>>;
|
|
11126
12237
|
/**
|
|
11127
12238
|
*
|
|
11128
12239
|
* @param {*} [options] Override http request option.
|
|
@@ -11135,6 +12246,12 @@ export declare const ClubsStaffApiFp: (configuration?: Configuration) => {
|
|
|
11135
12246
|
* @throws {RequiredError}
|
|
11136
12247
|
*/
|
|
11137
12248
|
getClubMembers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClubMembers200Response>>;
|
|
12249
|
+
/**
|
|
12250
|
+
*
|
|
12251
|
+
* @param {*} [options] Override http request option.
|
|
12252
|
+
* @throws {RequiredError}
|
|
12253
|
+
*/
|
|
12254
|
+
getClubPresentationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
11138
12255
|
/**
|
|
11139
12256
|
* Récupère les rôles d\'un club
|
|
11140
12257
|
* @param {*} [options] Override http request option.
|
|
@@ -11172,6 +12289,12 @@ export declare const ClubsStaffApiFactory: (configuration?: Configuration, baseP
|
|
|
11172
12289
|
* @throws {RequiredError}
|
|
11173
12290
|
*/
|
|
11174
12291
|
getActualities(options?: RawAxiosRequestConfig): AxiosPromise<GetActualities200Response>;
|
|
12292
|
+
/**
|
|
12293
|
+
*
|
|
12294
|
+
* @param {*} [options] Override http request option.
|
|
12295
|
+
* @throws {RequiredError}
|
|
12296
|
+
*/
|
|
12297
|
+
getClubGeneralSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubGeneralSettingsResponse>;
|
|
11175
12298
|
/**
|
|
11176
12299
|
*
|
|
11177
12300
|
* @param {*} [options] Override http request option.
|
|
@@ -11184,6 +12307,12 @@ export declare const ClubsStaffApiFactory: (configuration?: Configuration, baseP
|
|
|
11184
12307
|
* @throws {RequiredError}
|
|
11185
12308
|
*/
|
|
11186
12309
|
getClubMembers(options?: RawAxiosRequestConfig): AxiosPromise<GetClubMembers200Response>;
|
|
12310
|
+
/**
|
|
12311
|
+
*
|
|
12312
|
+
* @param {*} [options] Override http request option.
|
|
12313
|
+
* @throws {RequiredError}
|
|
12314
|
+
*/
|
|
12315
|
+
getClubPresentationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
11187
12316
|
/**
|
|
11188
12317
|
* Récupère les rôles d\'un club
|
|
11189
12318
|
* @param {*} [options] Override http request option.
|
|
@@ -11237,6 +12366,13 @@ export declare class ClubsStaffApi extends BaseAPI {
|
|
|
11237
12366
|
* @memberof ClubsStaffApi
|
|
11238
12367
|
*/
|
|
11239
12368
|
getActualities(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetActualities200Response, any, {}>>;
|
|
12369
|
+
/**
|
|
12370
|
+
*
|
|
12371
|
+
* @param {*} [options] Override http request option.
|
|
12372
|
+
* @throws {RequiredError}
|
|
12373
|
+
* @memberof ClubsStaffApi
|
|
12374
|
+
*/
|
|
12375
|
+
getClubGeneralSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubGeneralSettingsResponse, any, {}>>;
|
|
11240
12376
|
/**
|
|
11241
12377
|
*
|
|
11242
12378
|
* @param {*} [options] Override http request option.
|
|
@@ -11251,6 +12387,13 @@ export declare class ClubsStaffApi extends BaseAPI {
|
|
|
11251
12387
|
* @memberof ClubsStaffApi
|
|
11252
12388
|
*/
|
|
11253
12389
|
getClubMembers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClubMembers200Response, any, {}>>;
|
|
12390
|
+
/**
|
|
12391
|
+
*
|
|
12392
|
+
* @param {*} [options] Override http request option.
|
|
12393
|
+
* @throws {RequiredError}
|
|
12394
|
+
* @memberof ClubsStaffApi
|
|
12395
|
+
*/
|
|
12396
|
+
getClubPresentationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
11254
12397
|
/**
|
|
11255
12398
|
* Récupère les rôles d\'un club
|
|
11256
12399
|
* @param {*} [options] Override http request option.
|