@tennac-booking/sdk 1.0.102 → 1.0.104
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 +31 -8
- package/README.md +50 -16
- package/api.ts +3941 -2237
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1785 -531
- package/dist/api.js +965 -272
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +1785 -531
- package/dist/esm/api.js +957 -264
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AddClubMemberRequest.md +7 -1
- package/docs/BookingPopulated.md +3 -3
- package/docs/BookingsStaffApi.md +4 -4
- package/docs/BookingsWithTimeBoundsResponse.md +22 -0
- package/docs/ClientAccountOnboardingRequest.md +2 -2
- package/docs/ClientAccountsApi.md +1 -1
- package/docs/ClubAnalyticsStaffApi.md +314 -0
- package/docs/{AddCreditsToCustomer200Response.md → ClubDaySchedule.md} +7 -5
- package/docs/ClubGeneralSettingsResponse.md +32 -0
- package/docs/ClubHoursSettingsResponse.md +22 -0
- package/docs/ClubLocationSettings.md +26 -0
- package/docs/ClubPlayerBookingItem.md +36 -0
- package/docs/ClubPlayerBookingsPagination.md +28 -0
- package/docs/ClubPlayerBookingsResponse.md +24 -0
- package/docs/ClubPlayerDetailResponse.md +46 -0
- package/docs/ClubPlayerDetailResponseSportsLevelsInner.md +22 -0
- package/docs/ClubPlayerStatisticsResponse.md +42 -0
- package/docs/ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner.md +22 -0
- package/docs/ClubPlayerStatisticsResponseFavoriteClub.md +23 -0
- package/docs/ClubPlayerStatisticsResponseMostPlayedClub.md +25 -0
- package/docs/ClubPlayerStatisticsResponseMostPlayedPartnersInner.md +26 -0
- package/docs/ClubPlayerSubscriptionSummary.md +28 -0
- package/docs/ClubPresentationSettingsResponse.md +26 -0
- package/docs/ClubPricingPeriodResponse.md +30 -0
- package/docs/ClubReservationSettingsResponse.md +26 -0
- package/docs/ClubResponse.md +2 -0
- package/docs/ClubSettingsManagerApi.md +54 -60
- package/docs/ClubSettingsStaffApi.md +183 -0
- package/docs/ClubWeeklySchedule.md +32 -0
- package/docs/ClubsManagerApi.md +112 -58
- package/docs/ClubsStaffApi.md +44 -0
- package/docs/CourtBookingShareItem.md +26 -0
- package/docs/CourtResponse.md +1 -1
- package/docs/CreateCourtRequest.md +1 -1
- package/docs/CreateEventRequest.md +3 -1
- package/docs/EventResponse.md +1 -1
- package/docs/PartialClubResponse.md +2 -0
- package/docs/PartialClubWeeklySchedule.md +33 -0
- package/docs/RetentionRateResponse.md +24 -0
- package/docs/RevenueBySportItem.md +24 -0
- package/docs/SlotInfo.md +2 -2
- package/docs/{DeleteClubSettingsResponse.md → TimeBounds.md} +7 -5
- package/docs/UpdateClubGeneralSettingsRequest.md +34 -0
- package/docs/UpdateClubHoursSettingsRequest.md +22 -0
- package/docs/UpdateClubMemberRequest.md +22 -0
- package/docs/UpdateClubPresentationSettingsRequest.md +26 -0
- package/docs/UpdateClubReservationSettingsRequest.md +28 -0
- package/docs/UpdateEventRequest.md +1 -1
- package/docs/UserInfo.md +2 -0
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AddCreditsToCustomerRequest.md +0 -22
- package/docs/ClubSettingsResponse.md +0 -39
- package/docs/CreateClubSettingsRequest.md +0 -34
- package/docs/EventResponseCourtsInner.md +0 -18
- package/docs/SportsStaffApi.md +0 -55
- package/docs/UpdateClubSettingsRequest.md +0 -32
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* openapi.json
|
|
3
3
|
* Pandook API Documentation
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.100
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -58,11 +58,11 @@ export interface AddClubMember201Response {
|
|
|
58
58
|
*/
|
|
59
59
|
export interface AddClubMemberRequest {
|
|
60
60
|
/**
|
|
61
|
-
* ID de l\'utilisateur à ajouter
|
|
61
|
+
* ID de l\'utilisateur à ajouter (optionnel si création d\'un compte)
|
|
62
62
|
* @type {string}
|
|
63
63
|
* @memberof AddClubMemberRequest
|
|
64
64
|
*/
|
|
65
|
-
'userId'
|
|
65
|
+
'userId'?: string;
|
|
66
66
|
/**
|
|
67
67
|
* ID du club (optionnel si fourni via le middleware d\'authentification)
|
|
68
68
|
* @type {string}
|
|
@@ -81,38 +81,24 @@ export interface AddClubMemberRequest {
|
|
|
81
81
|
* @memberof AddClubMemberRequest
|
|
82
82
|
*/
|
|
83
83
|
'rights'?: Array<string>;
|
|
84
|
-
}
|
|
85
|
-
/**
|
|
86
|
-
*
|
|
87
|
-
* @export
|
|
88
|
-
* @interface AddCreditsToCustomer200Response
|
|
89
|
-
*/
|
|
90
|
-
export interface AddCreditsToCustomer200Response {
|
|
91
84
|
/**
|
|
92
|
-
*
|
|
93
|
-
* @type {
|
|
94
|
-
* @memberof
|
|
85
|
+
* Prénom du membre (requis si création d\'un compte)
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof AddClubMemberRequest
|
|
95
88
|
*/
|
|
96
|
-
'
|
|
97
|
-
}
|
|
98
|
-
/**
|
|
99
|
-
*
|
|
100
|
-
* @export
|
|
101
|
-
* @interface AddCreditsToCustomerRequest
|
|
102
|
-
*/
|
|
103
|
-
export interface AddCreditsToCustomerRequest {
|
|
89
|
+
'firstName'?: string;
|
|
104
90
|
/**
|
|
105
|
-
*
|
|
91
|
+
* Nom du membre (requis si création d\'un compte)
|
|
106
92
|
* @type {string}
|
|
107
|
-
* @memberof
|
|
93
|
+
* @memberof AddClubMemberRequest
|
|
108
94
|
*/
|
|
109
|
-
'
|
|
95
|
+
'lastName'?: string;
|
|
110
96
|
/**
|
|
111
|
-
*
|
|
112
|
-
* @type {
|
|
113
|
-
* @memberof
|
|
97
|
+
* Email du membre (requis si création d\'un compte)
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof AddClubMemberRequest
|
|
114
100
|
*/
|
|
115
|
-
'
|
|
101
|
+
'email'?: string;
|
|
116
102
|
}
|
|
117
103
|
/**
|
|
118
104
|
*
|
|
@@ -608,11 +594,17 @@ export interface BookingPopulated {
|
|
|
608
594
|
*/
|
|
609
595
|
'creator': UserInfo;
|
|
610
596
|
/**
|
|
611
|
-
*
|
|
612
|
-
* @type {
|
|
597
|
+
*
|
|
598
|
+
* @type {SlotInfo}
|
|
599
|
+
* @memberof BookingPopulated
|
|
600
|
+
*/
|
|
601
|
+
'slotInfos': SlotInfo;
|
|
602
|
+
/**
|
|
603
|
+
*
|
|
604
|
+
* @type {Array<UserInfo>}
|
|
613
605
|
* @memberof BookingPopulated
|
|
614
606
|
*/
|
|
615
|
-
'
|
|
607
|
+
'players': Array<UserInfo>;
|
|
616
608
|
/**
|
|
617
609
|
* Statut des paiements par joueur
|
|
618
610
|
* @type {Array<PaymentByPlayerInfo>}
|
|
@@ -643,12 +635,6 @@ export interface BookingPopulated {
|
|
|
643
635
|
* @memberof BookingPopulated
|
|
644
636
|
*/
|
|
645
637
|
'isCreatorPayingAll': boolean;
|
|
646
|
-
/**
|
|
647
|
-
*
|
|
648
|
-
* @type {Array<string>}
|
|
649
|
-
* @memberof BookingPopulated
|
|
650
|
-
*/
|
|
651
|
-
'playersIds': Array<string>;
|
|
652
638
|
/**
|
|
653
639
|
*
|
|
654
640
|
* @type {Array<BookingHistoryPopulated>}
|
|
@@ -1131,6 +1117,25 @@ export interface BookingSummary {
|
|
|
1131
1117
|
*/
|
|
1132
1118
|
export interface BookingSummaryClubAddress {
|
|
1133
1119
|
}
|
|
1120
|
+
/**
|
|
1121
|
+
*
|
|
1122
|
+
* @export
|
|
1123
|
+
* @interface BookingsWithTimeBoundsResponse
|
|
1124
|
+
*/
|
|
1125
|
+
export interface BookingsWithTimeBoundsResponse {
|
|
1126
|
+
/**
|
|
1127
|
+
*
|
|
1128
|
+
* @type {Array<BookingPopulated>}
|
|
1129
|
+
* @memberof BookingsWithTimeBoundsResponse
|
|
1130
|
+
*/
|
|
1131
|
+
'bookings': Array<BookingPopulated>;
|
|
1132
|
+
/**
|
|
1133
|
+
*
|
|
1134
|
+
* @type {TimeBounds}
|
|
1135
|
+
* @memberof BookingsWithTimeBoundsResponse
|
|
1136
|
+
*/
|
|
1137
|
+
'timeBounds': TimeBounds;
|
|
1138
|
+
}
|
|
1134
1139
|
/**
|
|
1135
1140
|
*
|
|
1136
1141
|
* @export
|
|
@@ -1339,13 +1344,13 @@ export interface ClientAccountOnboardingRequest {
|
|
|
1339
1344
|
* @type {string}
|
|
1340
1345
|
* @memberof ClientAccountOnboardingRequest
|
|
1341
1346
|
*/
|
|
1342
|
-
'businessType'
|
|
1347
|
+
'businessType'?: ClientAccountOnboardingRequestBusinessTypeEnum;
|
|
1343
1348
|
/**
|
|
1344
1349
|
*
|
|
1345
1350
|
* @type {string}
|
|
1346
1351
|
* @memberof ClientAccountOnboardingRequest
|
|
1347
1352
|
*/
|
|
1348
|
-
'subscriptionType'
|
|
1353
|
+
'subscriptionType'?: ClientAccountOnboardingRequestSubscriptionTypeEnum;
|
|
1349
1354
|
/**
|
|
1350
1355
|
*
|
|
1351
1356
|
* @type {boolean}
|
|
@@ -1731,6 +1736,124 @@ export interface ClientSubscriptionResponse {
|
|
|
1731
1736
|
*/
|
|
1732
1737
|
'billingCycle': string;
|
|
1733
1738
|
}
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @export
|
|
1742
|
+
* @interface ClubDaySchedule
|
|
1743
|
+
*/
|
|
1744
|
+
export interface ClubDaySchedule {
|
|
1745
|
+
/**
|
|
1746
|
+
*
|
|
1747
|
+
* @type {string}
|
|
1748
|
+
* @memberof ClubDaySchedule
|
|
1749
|
+
*/
|
|
1750
|
+
'open': string;
|
|
1751
|
+
/**
|
|
1752
|
+
*
|
|
1753
|
+
* @type {string}
|
|
1754
|
+
* @memberof ClubDaySchedule
|
|
1755
|
+
*/
|
|
1756
|
+
'close': string;
|
|
1757
|
+
}
|
|
1758
|
+
/**
|
|
1759
|
+
*
|
|
1760
|
+
* @export
|
|
1761
|
+
* @interface ClubGeneralSettingsResponse
|
|
1762
|
+
*/
|
|
1763
|
+
export interface ClubGeneralSettingsResponse {
|
|
1764
|
+
/**
|
|
1765
|
+
*
|
|
1766
|
+
* @type {string}
|
|
1767
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1768
|
+
*/
|
|
1769
|
+
'name': string;
|
|
1770
|
+
/**
|
|
1771
|
+
*
|
|
1772
|
+
* @type {string}
|
|
1773
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1774
|
+
*/
|
|
1775
|
+
'email'?: string;
|
|
1776
|
+
/**
|
|
1777
|
+
*
|
|
1778
|
+
* @type {string}
|
|
1779
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1780
|
+
*/
|
|
1781
|
+
'phone'?: string;
|
|
1782
|
+
/**
|
|
1783
|
+
*
|
|
1784
|
+
* @type {string}
|
|
1785
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1786
|
+
*/
|
|
1787
|
+
'websiteUrl'?: string;
|
|
1788
|
+
/**
|
|
1789
|
+
*
|
|
1790
|
+
* @type {string}
|
|
1791
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1792
|
+
*/
|
|
1793
|
+
'logo'?: string | null;
|
|
1794
|
+
/**
|
|
1795
|
+
*
|
|
1796
|
+
* @type {ClubLocationSettings}
|
|
1797
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1798
|
+
*/
|
|
1799
|
+
'location': ClubLocationSettings;
|
|
1800
|
+
/**
|
|
1801
|
+
*
|
|
1802
|
+
* @type {string}
|
|
1803
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1804
|
+
*/
|
|
1805
|
+
'stripeUrl'?: string | null;
|
|
1806
|
+
}
|
|
1807
|
+
/**
|
|
1808
|
+
*
|
|
1809
|
+
* @export
|
|
1810
|
+
* @interface ClubHoursSettingsResponse
|
|
1811
|
+
*/
|
|
1812
|
+
export interface ClubHoursSettingsResponse {
|
|
1813
|
+
/**
|
|
1814
|
+
*
|
|
1815
|
+
* @type {ClubWeeklySchedule}
|
|
1816
|
+
* @memberof ClubHoursSettingsResponse
|
|
1817
|
+
*/
|
|
1818
|
+
'schedule': ClubWeeklySchedule;
|
|
1819
|
+
/**
|
|
1820
|
+
*
|
|
1821
|
+
* @type {Array<ClubPricingPeriodResponse>}
|
|
1822
|
+
* @memberof ClubHoursSettingsResponse
|
|
1823
|
+
*/
|
|
1824
|
+
'pricingPeriods': Array<ClubPricingPeriodResponse>;
|
|
1825
|
+
}
|
|
1826
|
+
/**
|
|
1827
|
+
*
|
|
1828
|
+
* @export
|
|
1829
|
+
* @interface ClubLocationSettings
|
|
1830
|
+
*/
|
|
1831
|
+
export interface ClubLocationSettings {
|
|
1832
|
+
/**
|
|
1833
|
+
*
|
|
1834
|
+
* @type {string}
|
|
1835
|
+
* @memberof ClubLocationSettings
|
|
1836
|
+
*/
|
|
1837
|
+
'address'?: string;
|
|
1838
|
+
/**
|
|
1839
|
+
*
|
|
1840
|
+
* @type {string}
|
|
1841
|
+
* @memberof ClubLocationSettings
|
|
1842
|
+
*/
|
|
1843
|
+
'zipCode'?: string;
|
|
1844
|
+
/**
|
|
1845
|
+
*
|
|
1846
|
+
* @type {string}
|
|
1847
|
+
* @memberof ClubLocationSettings
|
|
1848
|
+
*/
|
|
1849
|
+
'city'?: string;
|
|
1850
|
+
/**
|
|
1851
|
+
*
|
|
1852
|
+
* @type {string}
|
|
1853
|
+
* @memberof ClubLocationSettings
|
|
1854
|
+
*/
|
|
1855
|
+
'country'?: string;
|
|
1856
|
+
}
|
|
1734
1857
|
/**
|
|
1735
1858
|
*
|
|
1736
1859
|
* @export
|
|
@@ -1790,148 +1913,696 @@ export interface ClubMemberResponseUser {
|
|
|
1790
1913
|
/**
|
|
1791
1914
|
*
|
|
1792
1915
|
* @export
|
|
1793
|
-
* @interface
|
|
1916
|
+
* @interface ClubPlayerBookingItem
|
|
1794
1917
|
*/
|
|
1795
|
-
export interface
|
|
1918
|
+
export interface ClubPlayerBookingItem {
|
|
1796
1919
|
/**
|
|
1797
|
-
* ID de
|
|
1920
|
+
* ID de la réservation
|
|
1798
1921
|
* @type {string}
|
|
1799
|
-
* @memberof
|
|
1922
|
+
* @memberof ClubPlayerBookingItem
|
|
1800
1923
|
*/
|
|
1801
1924
|
'id': string;
|
|
1802
1925
|
/**
|
|
1803
|
-
*
|
|
1926
|
+
* Date de début de la réservation
|
|
1804
1927
|
* @type {string}
|
|
1805
|
-
* @memberof
|
|
1928
|
+
* @memberof ClubPlayerBookingItem
|
|
1806
1929
|
*/
|
|
1807
|
-
'
|
|
1930
|
+
'startDate': string | null;
|
|
1808
1931
|
/**
|
|
1809
|
-
*
|
|
1932
|
+
* Date de fin de la réservation
|
|
1810
1933
|
* @type {string}
|
|
1811
|
-
* @memberof
|
|
1934
|
+
* @memberof ClubPlayerBookingItem
|
|
1812
1935
|
*/
|
|
1813
|
-
'
|
|
1936
|
+
'endDate': string | null;
|
|
1814
1937
|
/**
|
|
1815
|
-
*
|
|
1938
|
+
* Nom du terrain ou emplacement
|
|
1816
1939
|
* @type {string}
|
|
1817
|
-
* @memberof
|
|
1940
|
+
* @memberof ClubPlayerBookingItem
|
|
1818
1941
|
*/
|
|
1819
|
-
'
|
|
1942
|
+
'location': string | null;
|
|
1820
1943
|
/**
|
|
1821
|
-
*
|
|
1944
|
+
* Nom du sport associé
|
|
1822
1945
|
* @type {string}
|
|
1823
|
-
* @memberof
|
|
1946
|
+
* @memberof ClubPlayerBookingItem
|
|
1824
1947
|
*/
|
|
1825
|
-
'
|
|
1948
|
+
'sport': string | null;
|
|
1826
1949
|
/**
|
|
1827
|
-
*
|
|
1950
|
+
* Statut de la réservation
|
|
1828
1951
|
* @type {string}
|
|
1829
|
-
* @memberof
|
|
1952
|
+
* @memberof ClubPlayerBookingItem
|
|
1830
1953
|
*/
|
|
1831
|
-
'
|
|
1954
|
+
'status': string;
|
|
1832
1955
|
/**
|
|
1833
|
-
*
|
|
1834
|
-
* @type {
|
|
1835
|
-
* @memberof
|
|
1956
|
+
* Prix total de la réservation en centimes
|
|
1957
|
+
* @type {number}
|
|
1958
|
+
* @memberof ClubPlayerBookingItem
|
|
1836
1959
|
*/
|
|
1837
|
-
'
|
|
1960
|
+
'totalPrice': number;
|
|
1838
1961
|
/**
|
|
1839
|
-
*
|
|
1962
|
+
* Indique si le joueur est le créateur de la réservation
|
|
1840
1963
|
* @type {boolean}
|
|
1841
|
-
* @memberof
|
|
1964
|
+
* @memberof ClubPlayerBookingItem
|
|
1842
1965
|
*/
|
|
1843
|
-
'
|
|
1966
|
+
'isCreator': boolean;
|
|
1844
1967
|
/**
|
|
1845
|
-
*
|
|
1968
|
+
* Nombre total de participants
|
|
1969
|
+
* @type {number}
|
|
1970
|
+
* @memberof ClubPlayerBookingItem
|
|
1971
|
+
*/
|
|
1972
|
+
'participantsCount': number;
|
|
1973
|
+
}
|
|
1974
|
+
/**
|
|
1975
|
+
*
|
|
1976
|
+
* @export
|
|
1977
|
+
* @interface ClubPlayerBookingsPagination
|
|
1978
|
+
*/
|
|
1979
|
+
export interface ClubPlayerBookingsPagination {
|
|
1980
|
+
/**
|
|
1981
|
+
* Page courante (1-based)
|
|
1982
|
+
* @type {number}
|
|
1983
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1984
|
+
*/
|
|
1985
|
+
'page': number;
|
|
1986
|
+
/**
|
|
1987
|
+
* Nombre d\'éléments par page
|
|
1988
|
+
* @type {number}
|
|
1989
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1990
|
+
*/
|
|
1991
|
+
'pageSize': number;
|
|
1992
|
+
/**
|
|
1993
|
+
* Nombre total d\'éléments disponibles
|
|
1994
|
+
* @type {number}
|
|
1995
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1996
|
+
*/
|
|
1997
|
+
'totalItems': number;
|
|
1998
|
+
/**
|
|
1999
|
+
* Nombre total de pages disponibles
|
|
2000
|
+
* @type {number}
|
|
2001
|
+
* @memberof ClubPlayerBookingsPagination
|
|
2002
|
+
*/
|
|
2003
|
+
'totalPages': number;
|
|
2004
|
+
/**
|
|
2005
|
+
* Existence d\'une page suivante
|
|
1846
2006
|
* @type {boolean}
|
|
1847
|
-
* @memberof
|
|
2007
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1848
2008
|
*/
|
|
1849
|
-
'
|
|
2009
|
+
'hasMore': boolean;
|
|
1850
2010
|
}
|
|
1851
2011
|
/**
|
|
1852
2012
|
*
|
|
1853
2013
|
* @export
|
|
1854
|
-
* @interface
|
|
2014
|
+
* @interface ClubPlayerBookingsResponse
|
|
1855
2015
|
*/
|
|
1856
|
-
export interface
|
|
2016
|
+
export interface ClubPlayerBookingsResponse {
|
|
1857
2017
|
/**
|
|
1858
|
-
*
|
|
2018
|
+
* Réservations à venir
|
|
2019
|
+
* @type {Array<ClubPlayerBookingItem>}
|
|
2020
|
+
* @memberof ClubPlayerBookingsResponse
|
|
2021
|
+
*/
|
|
2022
|
+
'upcomingBookings': Array<ClubPlayerBookingItem>;
|
|
2023
|
+
/**
|
|
2024
|
+
* Réservations passées
|
|
2025
|
+
* @type {Array<ClubPlayerBookingItem>}
|
|
2026
|
+
* @memberof ClubPlayerBookingsResponse
|
|
2027
|
+
*/
|
|
2028
|
+
'pastBookings': Array<ClubPlayerBookingItem>;
|
|
2029
|
+
/**
|
|
2030
|
+
*
|
|
2031
|
+
* @type {ClubPlayerBookingsPagination}
|
|
2032
|
+
* @memberof ClubPlayerBookingsResponse
|
|
2033
|
+
*/
|
|
2034
|
+
'pastPagination'?: ClubPlayerBookingsPagination;
|
|
2035
|
+
}
|
|
2036
|
+
/**
|
|
2037
|
+
*
|
|
2038
|
+
* @export
|
|
2039
|
+
* @interface ClubPlayerDetailResponse
|
|
2040
|
+
*/
|
|
2041
|
+
export interface ClubPlayerDetailResponse {
|
|
2042
|
+
/**
|
|
2043
|
+
* ID du joueur
|
|
1859
2044
|
* @type {string}
|
|
1860
|
-
* @memberof
|
|
2045
|
+
* @memberof ClubPlayerDetailResponse
|
|
1861
2046
|
*/
|
|
1862
2047
|
'id': string;
|
|
1863
2048
|
/**
|
|
1864
|
-
* Nom
|
|
2049
|
+
* Nom complet
|
|
1865
2050
|
* @type {string}
|
|
1866
|
-
* @memberof
|
|
2051
|
+
* @memberof ClubPlayerDetailResponse
|
|
1867
2052
|
*/
|
|
1868
2053
|
'name': string;
|
|
1869
2054
|
/**
|
|
1870
|
-
*
|
|
2055
|
+
* Prénom
|
|
1871
2056
|
* @type {string}
|
|
1872
|
-
* @memberof
|
|
2057
|
+
* @memberof ClubPlayerDetailResponse
|
|
1873
2058
|
*/
|
|
1874
|
-
'
|
|
2059
|
+
'firstName': string;
|
|
1875
2060
|
/**
|
|
1876
|
-
*
|
|
2061
|
+
* Nom
|
|
1877
2062
|
* @type {string}
|
|
1878
|
-
* @memberof
|
|
2063
|
+
* @memberof ClubPlayerDetailResponse
|
|
1879
2064
|
*/
|
|
1880
|
-
'
|
|
2065
|
+
'lastName': string;
|
|
1881
2066
|
/**
|
|
1882
|
-
* Email
|
|
2067
|
+
* Email
|
|
1883
2068
|
* @type {string}
|
|
1884
|
-
* @memberof
|
|
2069
|
+
* @memberof ClubPlayerDetailResponse
|
|
1885
2070
|
*/
|
|
1886
|
-
'email'
|
|
2071
|
+
'email': string;
|
|
1887
2072
|
/**
|
|
1888
|
-
*
|
|
2073
|
+
* Numéro de téléphone
|
|
1889
2074
|
* @type {string}
|
|
1890
|
-
* @memberof
|
|
2075
|
+
* @memberof ClubPlayerDetailResponse
|
|
1891
2076
|
*/
|
|
1892
|
-
'
|
|
2077
|
+
'phoneNumber': string | null;
|
|
1893
2078
|
/**
|
|
1894
|
-
* URL de
|
|
2079
|
+
* URL de la photo de profil
|
|
1895
2080
|
* @type {string}
|
|
1896
|
-
* @memberof
|
|
2081
|
+
* @memberof ClubPlayerDetailResponse
|
|
1897
2082
|
*/
|
|
1898
|
-
'
|
|
2083
|
+
'profilePictureUrl': string | null;
|
|
1899
2084
|
/**
|
|
1900
|
-
*
|
|
1901
|
-
* @type {
|
|
1902
|
-
* @memberof
|
|
2085
|
+
* Compte vérifié
|
|
2086
|
+
* @type {boolean}
|
|
2087
|
+
* @memberof ClubPlayerDetailResponse
|
|
1903
2088
|
*/
|
|
1904
|
-
'
|
|
2089
|
+
'isAccountVerified': boolean;
|
|
1905
2090
|
/**
|
|
1906
|
-
*
|
|
1907
|
-
* @type {
|
|
1908
|
-
* @memberof
|
|
2091
|
+
* Abonnements au club courant
|
|
2092
|
+
* @type {Array<ClubPlayerSubscriptionSummary>}
|
|
2093
|
+
* @memberof ClubPlayerDetailResponse
|
|
1909
2094
|
*/
|
|
1910
|
-
'
|
|
2095
|
+
'subscriptionsToMyClub': Array<ClubPlayerSubscriptionSummary>;
|
|
1911
2096
|
/**
|
|
1912
|
-
*
|
|
1913
|
-
* @type {
|
|
1914
|
-
* @memberof
|
|
2097
|
+
* Description du profil
|
|
2098
|
+
* @type {string}
|
|
2099
|
+
* @memberof ClubPlayerDetailResponse
|
|
1915
2100
|
*/
|
|
1916
|
-
'
|
|
2101
|
+
'profileDescription': string | null;
|
|
1917
2102
|
/**
|
|
1918
|
-
*
|
|
2103
|
+
* Genre
|
|
1919
2104
|
* @type {string}
|
|
1920
|
-
* @memberof
|
|
2105
|
+
* @memberof ClubPlayerDetailResponse
|
|
1921
2106
|
*/
|
|
1922
|
-
'
|
|
2107
|
+
'gender': string | null;
|
|
1923
2108
|
/**
|
|
1924
|
-
*
|
|
2109
|
+
* Ville
|
|
1925
2110
|
* @type {string}
|
|
1926
|
-
* @memberof
|
|
2111
|
+
* @memberof ClubPlayerDetailResponse
|
|
1927
2112
|
*/
|
|
1928
|
-
'
|
|
2113
|
+
'city': string | null;
|
|
1929
2114
|
/**
|
|
1930
|
-
*
|
|
1931
|
-
* @type {
|
|
1932
|
-
* @memberof
|
|
2115
|
+
* Niveaux par sport
|
|
2116
|
+
* @type {Array<ClubPlayerDetailResponseSportsLevelsInner>}
|
|
2117
|
+
* @memberof ClubPlayerDetailResponse
|
|
1933
2118
|
*/
|
|
1934
|
-
'
|
|
2119
|
+
'sportsLevels': Array<ClubPlayerDetailResponseSportsLevelsInner>;
|
|
2120
|
+
/**
|
|
2121
|
+
* Date de naissance
|
|
2122
|
+
* @type {string}
|
|
2123
|
+
* @memberof ClubPlayerDetailResponse
|
|
2124
|
+
*/
|
|
2125
|
+
'birthDate': string | null;
|
|
2126
|
+
}
|
|
2127
|
+
/**
|
|
2128
|
+
*
|
|
2129
|
+
* @export
|
|
2130
|
+
* @interface ClubPlayerDetailResponseSportsLevelsInner
|
|
2131
|
+
*/
|
|
2132
|
+
export interface ClubPlayerDetailResponseSportsLevelsInner {
|
|
2133
|
+
/**
|
|
2134
|
+
*
|
|
2135
|
+
* @type {string}
|
|
2136
|
+
* @memberof ClubPlayerDetailResponseSportsLevelsInner
|
|
2137
|
+
*/
|
|
2138
|
+
'level': string | null;
|
|
2139
|
+
/**
|
|
2140
|
+
*
|
|
2141
|
+
* @type {string}
|
|
2142
|
+
* @memberof ClubPlayerDetailResponseSportsLevelsInner
|
|
2143
|
+
*/
|
|
2144
|
+
'sport': string | null;
|
|
2145
|
+
}
|
|
2146
|
+
/**
|
|
2147
|
+
*
|
|
2148
|
+
* @export
|
|
2149
|
+
* @interface ClubPlayerResponse
|
|
2150
|
+
*/
|
|
2151
|
+
export interface ClubPlayerResponse {
|
|
2152
|
+
/**
|
|
2153
|
+
* ID de l\'utilisateur
|
|
2154
|
+
* @type {string}
|
|
2155
|
+
* @memberof ClubPlayerResponse
|
|
2156
|
+
*/
|
|
2157
|
+
'id': string;
|
|
2158
|
+
/**
|
|
2159
|
+
* Prénom
|
|
2160
|
+
* @type {string}
|
|
2161
|
+
* @memberof ClubPlayerResponse
|
|
2162
|
+
*/
|
|
2163
|
+
'firstName': string;
|
|
2164
|
+
/**
|
|
2165
|
+
* Nom
|
|
2166
|
+
* @type {string}
|
|
2167
|
+
* @memberof ClubPlayerResponse
|
|
2168
|
+
*/
|
|
2169
|
+
'lastName': string;
|
|
2170
|
+
/**
|
|
2171
|
+
* Genre
|
|
2172
|
+
* @type {string}
|
|
2173
|
+
* @memberof ClubPlayerResponse
|
|
2174
|
+
*/
|
|
2175
|
+
'gender'?: string;
|
|
2176
|
+
/**
|
|
2177
|
+
* Email
|
|
2178
|
+
* @type {string}
|
|
2179
|
+
* @memberof ClubPlayerResponse
|
|
2180
|
+
*/
|
|
2181
|
+
'email': string;
|
|
2182
|
+
/**
|
|
2183
|
+
* Photo de profil
|
|
2184
|
+
* @type {string}
|
|
2185
|
+
* @memberof ClubPlayerResponse
|
|
2186
|
+
*/
|
|
2187
|
+
'profilePicture'?: string;
|
|
2188
|
+
/**
|
|
2189
|
+
* Compte vérifié
|
|
2190
|
+
* @type {boolean}
|
|
2191
|
+
* @memberof ClubPlayerResponse
|
|
2192
|
+
*/
|
|
2193
|
+
'isAccountVerified': boolean;
|
|
2194
|
+
/**
|
|
2195
|
+
* Profil visible
|
|
2196
|
+
* @type {boolean}
|
|
2197
|
+
* @memberof ClubPlayerResponse
|
|
2198
|
+
*/
|
|
2199
|
+
'isProfileVisible': boolean;
|
|
2200
|
+
/**
|
|
2201
|
+
* Abonné au club
|
|
2202
|
+
* @type {boolean}
|
|
2203
|
+
* @memberof ClubPlayerResponse
|
|
2204
|
+
*/
|
|
2205
|
+
'isSubscribedToClub': boolean;
|
|
2206
|
+
}
|
|
2207
|
+
/**
|
|
2208
|
+
*
|
|
2209
|
+
* @export
|
|
2210
|
+
* @interface ClubPlayerStatisticsResponse
|
|
2211
|
+
*/
|
|
2212
|
+
export interface ClubPlayerStatisticsResponse {
|
|
2213
|
+
/**
|
|
2214
|
+
* Nombre total de réservations (tous clubs confondus)
|
|
2215
|
+
* @type {number}
|
|
2216
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2217
|
+
*/
|
|
2218
|
+
'totalBookings': number;
|
|
2219
|
+
/**
|
|
2220
|
+
* Nombre total de réservations dans le club courant
|
|
2221
|
+
* @type {number}
|
|
2222
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2223
|
+
*/
|
|
2224
|
+
'totalBookingsInMyClub': number;
|
|
2225
|
+
/**
|
|
2226
|
+
* Somme totale dépensée dans le club courant (centimes)
|
|
2227
|
+
* @type {number}
|
|
2228
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2229
|
+
*/
|
|
2230
|
+
'totalSpentAmount': number;
|
|
2231
|
+
/**
|
|
2232
|
+
* Sport le plus pratiqué dans le club courant
|
|
2233
|
+
* @type {string}
|
|
2234
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2235
|
+
*/
|
|
2236
|
+
'favoriteSport': string | null;
|
|
2237
|
+
/**
|
|
2238
|
+
* Temps moyen entre la réservation et le début du créneau (heures)
|
|
2239
|
+
* @type {number}
|
|
2240
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2241
|
+
*/
|
|
2242
|
+
'averageBookingLeadTimeHours': number | null;
|
|
2243
|
+
/**
|
|
2244
|
+
* Taux d\'annulation dans le club courant (0-1)
|
|
2245
|
+
* @type {number}
|
|
2246
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2247
|
+
*/
|
|
2248
|
+
'bookingCancellationRate': number;
|
|
2249
|
+
/**
|
|
2250
|
+
* Nombre d\'abonnements actifs au club courant
|
|
2251
|
+
* @type {number}
|
|
2252
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2253
|
+
*/
|
|
2254
|
+
'activeSubscriptionsToMyClub': number;
|
|
2255
|
+
/**
|
|
2256
|
+
* Heure de créneau favorite dans le club courant (format HH:00)
|
|
2257
|
+
* @type {string}
|
|
2258
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2259
|
+
*/
|
|
2260
|
+
'favoriteTimeSlot': string | null;
|
|
2261
|
+
/**
|
|
2262
|
+
*
|
|
2263
|
+
* @type {ClubPlayerStatisticsResponseFavoriteClub}
|
|
2264
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2265
|
+
*/
|
|
2266
|
+
'favoriteClub': ClubPlayerStatisticsResponseFavoriteClub | null;
|
|
2267
|
+
/**
|
|
2268
|
+
*
|
|
2269
|
+
* @type {ClubPlayerStatisticsResponseMostPlayedClub}
|
|
2270
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2271
|
+
*/
|
|
2272
|
+
'mostPlayedClub': ClubPlayerStatisticsResponseMostPlayedClub | null;
|
|
2273
|
+
/**
|
|
2274
|
+
* Évolution quotidienne des montants dépensés ce mois-ci
|
|
2275
|
+
* @type {Array<ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner>}
|
|
2276
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2277
|
+
*/
|
|
2278
|
+
'bookingAmountEvolutionThisMonth': Array<ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner>;
|
|
2279
|
+
/**
|
|
2280
|
+
* Joueurs les plus joués dans le club courant
|
|
2281
|
+
* @type {Array<ClubPlayerStatisticsResponseMostPlayedPartnersInner>}
|
|
2282
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2283
|
+
*/
|
|
2284
|
+
'mostPlayedPartners': Array<ClubPlayerStatisticsResponseMostPlayedPartnersInner>;
|
|
2285
|
+
}
|
|
2286
|
+
/**
|
|
2287
|
+
*
|
|
2288
|
+
* @export
|
|
2289
|
+
* @interface ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner
|
|
2290
|
+
*/
|
|
2291
|
+
export interface ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner {
|
|
2292
|
+
/**
|
|
2293
|
+
*
|
|
2294
|
+
* @type {number}
|
|
2295
|
+
* @memberof ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner
|
|
2296
|
+
*/
|
|
2297
|
+
'amount': number;
|
|
2298
|
+
/**
|
|
2299
|
+
*
|
|
2300
|
+
* @type {number}
|
|
2301
|
+
* @memberof ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner
|
|
2302
|
+
*/
|
|
2303
|
+
'day': number;
|
|
2304
|
+
}
|
|
2305
|
+
/**
|
|
2306
|
+
* Club favori selon le profil utilisateur
|
|
2307
|
+
* @export
|
|
2308
|
+
* @interface ClubPlayerStatisticsResponseFavoriteClub
|
|
2309
|
+
*/
|
|
2310
|
+
export interface ClubPlayerStatisticsResponseFavoriteClub {
|
|
2311
|
+
/**
|
|
2312
|
+
*
|
|
2313
|
+
* @type {string}
|
|
2314
|
+
* @memberof ClubPlayerStatisticsResponseFavoriteClub
|
|
2315
|
+
*/
|
|
2316
|
+
'name': string | null;
|
|
2317
|
+
/**
|
|
2318
|
+
*
|
|
2319
|
+
* @type {string}
|
|
2320
|
+
* @memberof ClubPlayerStatisticsResponseFavoriteClub
|
|
2321
|
+
*/
|
|
2322
|
+
'clubId': string;
|
|
2323
|
+
}
|
|
2324
|
+
/**
|
|
2325
|
+
* Club où le joueur a le plus joué
|
|
2326
|
+
* @export
|
|
2327
|
+
* @interface ClubPlayerStatisticsResponseMostPlayedClub
|
|
2328
|
+
*/
|
|
2329
|
+
export interface ClubPlayerStatisticsResponseMostPlayedClub {
|
|
2330
|
+
/**
|
|
2331
|
+
*
|
|
2332
|
+
* @type {number}
|
|
2333
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedClub
|
|
2334
|
+
*/
|
|
2335
|
+
'bookingsCount': number;
|
|
2336
|
+
/**
|
|
2337
|
+
*
|
|
2338
|
+
* @type {string}
|
|
2339
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedClub
|
|
2340
|
+
*/
|
|
2341
|
+
'name': string | null;
|
|
2342
|
+
/**
|
|
2343
|
+
*
|
|
2344
|
+
* @type {string}
|
|
2345
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedClub
|
|
2346
|
+
*/
|
|
2347
|
+
'clubId': string;
|
|
2348
|
+
}
|
|
2349
|
+
/**
|
|
2350
|
+
*
|
|
2351
|
+
* @export
|
|
2352
|
+
* @interface ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
2353
|
+
*/
|
|
2354
|
+
export interface ClubPlayerStatisticsResponseMostPlayedPartnersInner {
|
|
2355
|
+
/**
|
|
2356
|
+
*
|
|
2357
|
+
* @type {number}
|
|
2358
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
2359
|
+
*/
|
|
2360
|
+
'bookingsTogether': number;
|
|
2361
|
+
/**
|
|
2362
|
+
*
|
|
2363
|
+
* @type {string}
|
|
2364
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
2365
|
+
*/
|
|
2366
|
+
'lastName': string | null;
|
|
2367
|
+
/**
|
|
2368
|
+
*
|
|
2369
|
+
* @type {string}
|
|
2370
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
2371
|
+
*/
|
|
2372
|
+
'firstName': string | null;
|
|
2373
|
+
/**
|
|
2374
|
+
*
|
|
2375
|
+
* @type {string}
|
|
2376
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
2377
|
+
*/
|
|
2378
|
+
'userId': string;
|
|
2379
|
+
}
|
|
2380
|
+
/**
|
|
2381
|
+
*
|
|
2382
|
+
* @export
|
|
2383
|
+
* @interface ClubPlayerSubscriptionSummary
|
|
2384
|
+
*/
|
|
2385
|
+
export interface ClubPlayerSubscriptionSummary {
|
|
2386
|
+
/**
|
|
2387
|
+
* ID du plan d\'abonnement
|
|
2388
|
+
* @type {string}
|
|
2389
|
+
* @memberof ClubPlayerSubscriptionSummary
|
|
2390
|
+
*/
|
|
2391
|
+
'id': string;
|
|
2392
|
+
/**
|
|
2393
|
+
* Nom du plan
|
|
2394
|
+
* @type {string}
|
|
2395
|
+
* @memberof ClubPlayerSubscriptionSummary
|
|
2396
|
+
*/
|
|
2397
|
+
'name': string | null;
|
|
2398
|
+
/**
|
|
2399
|
+
* Montant en centimes
|
|
2400
|
+
* @type {number}
|
|
2401
|
+
* @memberof ClubPlayerSubscriptionSummary
|
|
2402
|
+
*/
|
|
2403
|
+
'amountInCents': number | null;
|
|
2404
|
+
/**
|
|
2405
|
+
* Devise
|
|
2406
|
+
* @type {string}
|
|
2407
|
+
* @memberof ClubPlayerSubscriptionSummary
|
|
2408
|
+
*/
|
|
2409
|
+
'currency': string | null;
|
|
2410
|
+
/**
|
|
2411
|
+
* Intervalle de facturation
|
|
2412
|
+
* @type {string}
|
|
2413
|
+
* @memberof ClubPlayerSubscriptionSummary
|
|
2414
|
+
*/
|
|
2415
|
+
'interval': string | null;
|
|
2416
|
+
}
|
|
2417
|
+
/**
|
|
2418
|
+
*
|
|
2419
|
+
* @export
|
|
2420
|
+
* @interface ClubPresentationSettingsResponse
|
|
2421
|
+
*/
|
|
2422
|
+
export interface ClubPresentationSettingsResponse {
|
|
2423
|
+
/**
|
|
2424
|
+
*
|
|
2425
|
+
* @type {string}
|
|
2426
|
+
* @memberof ClubPresentationSettingsResponse
|
|
2427
|
+
*/
|
|
2428
|
+
'description'?: string;
|
|
2429
|
+
/**
|
|
2430
|
+
*
|
|
2431
|
+
* @type {Array<string>}
|
|
2432
|
+
* @memberof ClubPresentationSettingsResponse
|
|
2433
|
+
*/
|
|
2434
|
+
'tags': Array<string>;
|
|
2435
|
+
/**
|
|
2436
|
+
*
|
|
2437
|
+
* @type {Array<string>}
|
|
2438
|
+
* @memberof ClubPresentationSettingsResponse
|
|
2439
|
+
*/
|
|
2440
|
+
'bannerImages': Array<string>;
|
|
2441
|
+
/**
|
|
2442
|
+
*
|
|
2443
|
+
* @type {Array<string>}
|
|
2444
|
+
* @memberof ClubPresentationSettingsResponse
|
|
2445
|
+
*/
|
|
2446
|
+
'galleryImages': Array<string>;
|
|
2447
|
+
}
|
|
2448
|
+
/**
|
|
2449
|
+
*
|
|
2450
|
+
* @export
|
|
2451
|
+
* @interface ClubPricingPeriodResponse
|
|
2452
|
+
*/
|
|
2453
|
+
export interface ClubPricingPeriodResponse {
|
|
2454
|
+
/**
|
|
2455
|
+
*
|
|
2456
|
+
* @type {string}
|
|
2457
|
+
* @memberof ClubPricingPeriodResponse
|
|
2458
|
+
*/
|
|
2459
|
+
'id': string;
|
|
2460
|
+
/**
|
|
2461
|
+
*
|
|
2462
|
+
* @type {string}
|
|
2463
|
+
* @memberof ClubPricingPeriodResponse
|
|
2464
|
+
*/
|
|
2465
|
+
'name': string;
|
|
2466
|
+
/**
|
|
2467
|
+
*
|
|
2468
|
+
* @type {Array<string>}
|
|
2469
|
+
* @memberof ClubPricingPeriodResponse
|
|
2470
|
+
*/
|
|
2471
|
+
'days': Array<string>;
|
|
2472
|
+
/**
|
|
2473
|
+
*
|
|
2474
|
+
* @type {string}
|
|
2475
|
+
* @memberof ClubPricingPeriodResponse
|
|
2476
|
+
*/
|
|
2477
|
+
'startTime': string;
|
|
2478
|
+
/**
|
|
2479
|
+
*
|
|
2480
|
+
* @type {string}
|
|
2481
|
+
* @memberof ClubPricingPeriodResponse
|
|
2482
|
+
*/
|
|
2483
|
+
'endTime': string;
|
|
2484
|
+
/**
|
|
2485
|
+
*
|
|
2486
|
+
* @type {number}
|
|
2487
|
+
* @memberof ClubPricingPeriodResponse
|
|
2488
|
+
*/
|
|
2489
|
+
'variation': number;
|
|
2490
|
+
}
|
|
2491
|
+
/**
|
|
2492
|
+
*
|
|
2493
|
+
* @export
|
|
2494
|
+
* @interface ClubReservationSettingsResponse
|
|
2495
|
+
*/
|
|
2496
|
+
export interface ClubReservationSettingsResponse {
|
|
2497
|
+
/**
|
|
2498
|
+
*
|
|
2499
|
+
* @type {number}
|
|
2500
|
+
* @memberof ClubReservationSettingsResponse
|
|
2501
|
+
*/
|
|
2502
|
+
'maxWeeklyBookings': number | null;
|
|
2503
|
+
/**
|
|
2504
|
+
*
|
|
2505
|
+
* @type {number}
|
|
2506
|
+
* @memberof ClubReservationSettingsResponse
|
|
2507
|
+
*/
|
|
2508
|
+
'sameTimeBookingsLimit': number;
|
|
2509
|
+
/**
|
|
2510
|
+
*
|
|
2511
|
+
* @type {number}
|
|
2512
|
+
* @memberof ClubReservationSettingsResponse
|
|
2513
|
+
*/
|
|
2514
|
+
'cancellationDelayInHours': number;
|
|
2515
|
+
/**
|
|
2516
|
+
*
|
|
2517
|
+
* @type {number}
|
|
2518
|
+
* @memberof ClubReservationSettingsResponse
|
|
2519
|
+
*/
|
|
2520
|
+
'bookingPeriodInDays': number;
|
|
2521
|
+
}
|
|
2522
|
+
/**
|
|
2523
|
+
*
|
|
2524
|
+
* @export
|
|
2525
|
+
* @interface ClubResponse
|
|
2526
|
+
*/
|
|
2527
|
+
export interface ClubResponse {
|
|
2528
|
+
/**
|
|
2529
|
+
* ID unique du club
|
|
2530
|
+
* @type {string}
|
|
2531
|
+
* @memberof ClubResponse
|
|
2532
|
+
*/
|
|
2533
|
+
'id': string;
|
|
2534
|
+
/**
|
|
2535
|
+
* Nom du club
|
|
2536
|
+
* @type {string}
|
|
2537
|
+
* @memberof ClubResponse
|
|
2538
|
+
*/
|
|
2539
|
+
'name': string;
|
|
2540
|
+
/**
|
|
2541
|
+
* URL du site web du club
|
|
2542
|
+
* @type {string}
|
|
2543
|
+
* @memberof ClubResponse
|
|
2544
|
+
*/
|
|
2545
|
+
'websiteUrl'?: string;
|
|
2546
|
+
/**
|
|
2547
|
+
* Description du club
|
|
2548
|
+
* @type {string}
|
|
2549
|
+
* @memberof ClubResponse
|
|
2550
|
+
*/
|
|
2551
|
+
'description'?: string;
|
|
2552
|
+
/**
|
|
2553
|
+
* Email du club
|
|
2554
|
+
* @type {string}
|
|
2555
|
+
* @memberof ClubResponse
|
|
2556
|
+
*/
|
|
2557
|
+
'email'?: string;
|
|
2558
|
+
/**
|
|
2559
|
+
* Téléphone du club
|
|
2560
|
+
* @type {string}
|
|
2561
|
+
* @memberof ClubResponse
|
|
2562
|
+
*/
|
|
2563
|
+
'phone'?: string;
|
|
2564
|
+
/**
|
|
2565
|
+
* URL de l\'image du club
|
|
2566
|
+
* @type {string}
|
|
2567
|
+
* @memberof ClubResponse
|
|
2568
|
+
*/
|
|
2569
|
+
'picture'?: string;
|
|
2570
|
+
/**
|
|
2571
|
+
*
|
|
2572
|
+
* @type {ClubResponseLocation}
|
|
2573
|
+
* @memberof ClubResponse
|
|
2574
|
+
*/
|
|
2575
|
+
'location'?: ClubResponseLocation;
|
|
2576
|
+
/**
|
|
2577
|
+
* Statut d\'activation du club
|
|
2578
|
+
* @type {boolean}
|
|
2579
|
+
* @memberof ClubResponse
|
|
2580
|
+
*/
|
|
2581
|
+
'isActive': boolean;
|
|
2582
|
+
/**
|
|
2583
|
+
* Indique si le club utilise la fonctionnalité de paiement
|
|
2584
|
+
* @type {boolean}
|
|
2585
|
+
* @memberof ClubResponse
|
|
2586
|
+
*/
|
|
2587
|
+
'paymentFeature'?: boolean;
|
|
2588
|
+
/**
|
|
2589
|
+
* ID du compte Stripe du club
|
|
2590
|
+
* @type {string}
|
|
2591
|
+
* @memberof ClubResponse
|
|
2592
|
+
*/
|
|
2593
|
+
'stripeAccountId'?: string;
|
|
2594
|
+
/**
|
|
2595
|
+
* URL du dashboard Stripe du club
|
|
2596
|
+
* @type {string}
|
|
2597
|
+
* @memberof ClubResponse
|
|
2598
|
+
*/
|
|
2599
|
+
'clubDashBoardUrl'?: string;
|
|
2600
|
+
/**
|
|
2601
|
+
* Indique si la fonctionnalité \"no show\" est activée
|
|
2602
|
+
* @type {boolean}
|
|
2603
|
+
* @memberof ClubResponse
|
|
2604
|
+
*/
|
|
2605
|
+
'isNoShowEnabled'?: boolean;
|
|
1935
2606
|
/**
|
|
1936
2607
|
* Liste des sports proposés par le club (identifiés par leur clé)
|
|
1937
2608
|
* @type {Array<string>}
|
|
@@ -1950,6 +2621,12 @@ export interface ClubResponse {
|
|
|
1950
2621
|
* @memberof ClubResponse
|
|
1951
2622
|
*/
|
|
1952
2623
|
'sameTimeBookingsLimit'?: number | null;
|
|
2624
|
+
/**
|
|
2625
|
+
*
|
|
2626
|
+
* @type {number}
|
|
2627
|
+
* @memberof ClubResponse
|
|
2628
|
+
*/
|
|
2629
|
+
'maxSlotsPerBooking'?: number | null;
|
|
1953
2630
|
/**
|
|
1954
2631
|
* Limite d\'annulation en heures
|
|
1955
2632
|
* @type {number}
|
|
@@ -2100,73 +2777,6 @@ export declare const ClubRoleResponseRoleEnum: {
|
|
|
2100
2777
|
readonly Staff: "staff";
|
|
2101
2778
|
};
|
|
2102
2779
|
export type ClubRoleResponseRoleEnum = typeof ClubRoleResponseRoleEnum[keyof typeof ClubRoleResponseRoleEnum];
|
|
2103
|
-
/**
|
|
2104
|
-
* Types TSOA pour les paramètres du club
|
|
2105
|
-
* @export
|
|
2106
|
-
* @interface ClubSettingsResponse
|
|
2107
|
-
*/
|
|
2108
|
-
export interface ClubSettingsResponse {
|
|
2109
|
-
/**
|
|
2110
|
-
* ID unique des paramètres
|
|
2111
|
-
* @type {string}
|
|
2112
|
-
* @memberof ClubSettingsResponse
|
|
2113
|
-
*/
|
|
2114
|
-
'_id': string;
|
|
2115
|
-
/**
|
|
2116
|
-
* ID du club
|
|
2117
|
-
* @type {string}
|
|
2118
|
-
* @memberof ClubSettingsResponse
|
|
2119
|
-
*/
|
|
2120
|
-
'clubId': string;
|
|
2121
|
-
/**
|
|
2122
|
-
* Nombre maximum de réservations par semaine
|
|
2123
|
-
* @type {number}
|
|
2124
|
-
* @memberof ClubSettingsResponse
|
|
2125
|
-
*/
|
|
2126
|
-
'maxWeeklyBookings': number;
|
|
2127
|
-
/**
|
|
2128
|
-
* Limite de réservations simultanées
|
|
2129
|
-
* @type {number}
|
|
2130
|
-
* @memberof ClubSettingsResponse
|
|
2131
|
-
*/
|
|
2132
|
-
'sameTimeBookingsLimit'?: number;
|
|
2133
|
-
/**
|
|
2134
|
-
* Limite d\'annulation en heures
|
|
2135
|
-
* @type {number}
|
|
2136
|
-
* @memberof ClubSettingsResponse
|
|
2137
|
-
*/
|
|
2138
|
-
'cancellationLimitHours': number;
|
|
2139
|
-
/**
|
|
2140
|
-
* Période de disponibilité en jours
|
|
2141
|
-
* @type {number}
|
|
2142
|
-
* @memberof ClubSettingsResponse
|
|
2143
|
-
*/
|
|
2144
|
-
'availabilityPeriodInDays': number;
|
|
2145
|
-
/**
|
|
2146
|
-
* Liste des sponsors
|
|
2147
|
-
* @type {Array<string>}
|
|
2148
|
-
* @memberof ClubSettingsResponse
|
|
2149
|
-
*/
|
|
2150
|
-
'sponsors': Array<string>;
|
|
2151
|
-
/**
|
|
2152
|
-
* Temps avant paiement en minutes
|
|
2153
|
-
* @type {number}
|
|
2154
|
-
* @memberof ClubSettingsResponse
|
|
2155
|
-
*/
|
|
2156
|
-
'timeBeforePayment': number;
|
|
2157
|
-
/**
|
|
2158
|
-
* Date de création
|
|
2159
|
-
* @type {string}
|
|
2160
|
-
* @memberof ClubSettingsResponse
|
|
2161
|
-
*/
|
|
2162
|
-
'createdAt': string;
|
|
2163
|
-
/**
|
|
2164
|
-
* Date de mise à jour
|
|
2165
|
-
* @type {string}
|
|
2166
|
-
* @memberof ClubSettingsResponse
|
|
2167
|
-
*/
|
|
2168
|
-
'updatedAt': string;
|
|
2169
|
-
}
|
|
2170
2780
|
/**
|
|
2171
2781
|
*
|
|
2172
2782
|
* @export
|
|
@@ -2248,6 +2858,86 @@ export interface ClubUserCountResponse {
|
|
|
2248
2858
|
*/
|
|
2249
2859
|
'count': number;
|
|
2250
2860
|
}
|
|
2861
|
+
/**
|
|
2862
|
+
*
|
|
2863
|
+
* @export
|
|
2864
|
+
* @interface ClubWeeklySchedule
|
|
2865
|
+
*/
|
|
2866
|
+
export interface ClubWeeklySchedule {
|
|
2867
|
+
/**
|
|
2868
|
+
*
|
|
2869
|
+
* @type {ClubDaySchedule}
|
|
2870
|
+
* @memberof ClubWeeklySchedule
|
|
2871
|
+
*/
|
|
2872
|
+
'sunday': ClubDaySchedule | null;
|
|
2873
|
+
/**
|
|
2874
|
+
*
|
|
2875
|
+
* @type {ClubDaySchedule}
|
|
2876
|
+
* @memberof ClubWeeklySchedule
|
|
2877
|
+
*/
|
|
2878
|
+
'saturday': ClubDaySchedule | null;
|
|
2879
|
+
/**
|
|
2880
|
+
*
|
|
2881
|
+
* @type {ClubDaySchedule}
|
|
2882
|
+
* @memberof ClubWeeklySchedule
|
|
2883
|
+
*/
|
|
2884
|
+
'friday': ClubDaySchedule | null;
|
|
2885
|
+
/**
|
|
2886
|
+
*
|
|
2887
|
+
* @type {ClubDaySchedule}
|
|
2888
|
+
* @memberof ClubWeeklySchedule
|
|
2889
|
+
*/
|
|
2890
|
+
'thursday': ClubDaySchedule | null;
|
|
2891
|
+
/**
|
|
2892
|
+
*
|
|
2893
|
+
* @type {ClubDaySchedule}
|
|
2894
|
+
* @memberof ClubWeeklySchedule
|
|
2895
|
+
*/
|
|
2896
|
+
'wednesday': ClubDaySchedule | null;
|
|
2897
|
+
/**
|
|
2898
|
+
*
|
|
2899
|
+
* @type {ClubDaySchedule}
|
|
2900
|
+
* @memberof ClubWeeklySchedule
|
|
2901
|
+
*/
|
|
2902
|
+
'tuesday': ClubDaySchedule | null;
|
|
2903
|
+
/**
|
|
2904
|
+
*
|
|
2905
|
+
* @type {ClubDaySchedule}
|
|
2906
|
+
* @memberof ClubWeeklySchedule
|
|
2907
|
+
*/
|
|
2908
|
+
'monday': ClubDaySchedule | null;
|
|
2909
|
+
}
|
|
2910
|
+
/**
|
|
2911
|
+
*
|
|
2912
|
+
* @export
|
|
2913
|
+
* @interface CourtBookingShareItem
|
|
2914
|
+
*/
|
|
2915
|
+
export interface CourtBookingShareItem {
|
|
2916
|
+
/**
|
|
2917
|
+
* ID du terrain
|
|
2918
|
+
* @type {string}
|
|
2919
|
+
* @memberof CourtBookingShareItem
|
|
2920
|
+
*/
|
|
2921
|
+
'courtId': string;
|
|
2922
|
+
/**
|
|
2923
|
+
* Nom du terrain
|
|
2924
|
+
* @type {string}
|
|
2925
|
+
* @memberof CourtBookingShareItem
|
|
2926
|
+
*/
|
|
2927
|
+
'courtName': string | null;
|
|
2928
|
+
/**
|
|
2929
|
+
* Pourcentage des réservations associées à ce terrain
|
|
2930
|
+
* @type {number}
|
|
2931
|
+
* @memberof CourtBookingShareItem
|
|
2932
|
+
*/
|
|
2933
|
+
'bookingPercentage': number;
|
|
2934
|
+
/**
|
|
2935
|
+
* Nombre total de réservations utilisant ce terrain
|
|
2936
|
+
* @type {number}
|
|
2937
|
+
* @memberof CourtBookingShareItem
|
|
2938
|
+
*/
|
|
2939
|
+
'totalBookings': number;
|
|
2940
|
+
}
|
|
2251
2941
|
/**
|
|
2252
2942
|
*
|
|
2253
2943
|
* @export
|
|
@@ -2358,11 +3048,11 @@ export interface CourtResponse {
|
|
|
2358
3048
|
*/
|
|
2359
3049
|
'sportName'?: string;
|
|
2360
3050
|
/**
|
|
2361
|
-
*
|
|
2362
|
-
* @type {
|
|
3051
|
+
*
|
|
3052
|
+
* @type {SurfaceType}
|
|
2363
3053
|
* @memberof CourtResponse
|
|
2364
3054
|
*/
|
|
2365
|
-
'surface':
|
|
3055
|
+
'surface': SurfaceType;
|
|
2366
3056
|
/**
|
|
2367
3057
|
* Indique si le terrain est en intérieur
|
|
2368
3058
|
* @type {boolean}
|
|
@@ -2490,62 +3180,7 @@ export declare const CreateClubRoleRequestRoleEnum: {
|
|
|
2490
3180
|
readonly Manager: "manager";
|
|
2491
3181
|
readonly Staff: "staff";
|
|
2492
3182
|
};
|
|
2493
|
-
export type CreateClubRoleRequestRoleEnum = typeof CreateClubRoleRequestRoleEnum[keyof typeof CreateClubRoleRequestRoleEnum];
|
|
2494
|
-
/**
|
|
2495
|
-
*
|
|
2496
|
-
* @export
|
|
2497
|
-
* @interface CreateClubSettingsRequest
|
|
2498
|
-
*/
|
|
2499
|
-
export interface CreateClubSettingsRequest {
|
|
2500
|
-
/**
|
|
2501
|
-
* ID du club
|
|
2502
|
-
* @type {string}
|
|
2503
|
-
* @memberof CreateClubSettingsRequest
|
|
2504
|
-
*/
|
|
2505
|
-
'clubId': string;
|
|
2506
|
-
/**
|
|
2507
|
-
* Nombre maximum de réservations par semaine
|
|
2508
|
-
* @type {number}
|
|
2509
|
-
* @memberof CreateClubSettingsRequest
|
|
2510
|
-
*/
|
|
2511
|
-
'maxWeeklyBookings'?: number;
|
|
2512
|
-
/**
|
|
2513
|
-
* Autoriser plusieurs réservations en même temps
|
|
2514
|
-
* @type {boolean}
|
|
2515
|
-
* @memberof CreateClubSettingsRequest
|
|
2516
|
-
*/
|
|
2517
|
-
'allowMultipleBookingsAtTheSameTime'?: boolean;
|
|
2518
|
-
/**
|
|
2519
|
-
* Limite de réservations simultanées
|
|
2520
|
-
* @type {number}
|
|
2521
|
-
* @memberof CreateClubSettingsRequest
|
|
2522
|
-
*/
|
|
2523
|
-
'sameTimeBookingsLimit'?: number;
|
|
2524
|
-
/**
|
|
2525
|
-
* Limite d\'annulation en heures
|
|
2526
|
-
* @type {number}
|
|
2527
|
-
* @memberof CreateClubSettingsRequest
|
|
2528
|
-
*/
|
|
2529
|
-
'cancellationLimitHours'?: number;
|
|
2530
|
-
/**
|
|
2531
|
-
* Période de disponibilité en jours
|
|
2532
|
-
* @type {number}
|
|
2533
|
-
* @memberof CreateClubSettingsRequest
|
|
2534
|
-
*/
|
|
2535
|
-
'availabilityPeriodInDays'?: number;
|
|
2536
|
-
/**
|
|
2537
|
-
* Liste des sponsors
|
|
2538
|
-
* @type {Array<string>}
|
|
2539
|
-
* @memberof CreateClubSettingsRequest
|
|
2540
|
-
*/
|
|
2541
|
-
'sponsors'?: Array<string>;
|
|
2542
|
-
/**
|
|
2543
|
-
* Temps avant paiement en minutes
|
|
2544
|
-
* @type {number}
|
|
2545
|
-
* @memberof CreateClubSettingsRequest
|
|
2546
|
-
*/
|
|
2547
|
-
'timeBeforePayment'?: number;
|
|
2548
|
-
}
|
|
3183
|
+
export type CreateClubRoleRequestRoleEnum = typeof CreateClubRoleRequestRoleEnum[keyof typeof CreateClubRoleRequestRoleEnum];
|
|
2549
3184
|
/**
|
|
2550
3185
|
*
|
|
2551
3186
|
* @export
|
|
@@ -2596,11 +3231,11 @@ export interface CreateCourtRequest {
|
|
|
2596
3231
|
*/
|
|
2597
3232
|
'sportId': string;
|
|
2598
3233
|
/**
|
|
2599
|
-
*
|
|
2600
|
-
* @type {
|
|
3234
|
+
*
|
|
3235
|
+
* @type {SurfaceType}
|
|
2601
3236
|
* @memberof CreateCourtRequest
|
|
2602
3237
|
*/
|
|
2603
|
-
'surface':
|
|
3238
|
+
'surface': SurfaceType;
|
|
2604
3239
|
/**
|
|
2605
3240
|
* Indique si le terrain est en intérieur
|
|
2606
3241
|
* @type {boolean}
|
|
@@ -2658,10 +3293,10 @@ export interface CreateEventRequest {
|
|
|
2658
3293
|
'endDate': string;
|
|
2659
3294
|
/**
|
|
2660
3295
|
*
|
|
2661
|
-
* @type {Array<
|
|
3296
|
+
* @type {Array<string>}
|
|
2662
3297
|
* @memberof CreateEventRequest
|
|
2663
3298
|
*/
|
|
2664
|
-
'courts': Array<
|
|
3299
|
+
'courts': Array<string>;
|
|
2665
3300
|
/**
|
|
2666
3301
|
*
|
|
2667
3302
|
* @type {Array<string>}
|
|
@@ -2722,6 +3357,12 @@ export interface CreateEventRequest {
|
|
|
2722
3357
|
* @memberof CreateEventRequest
|
|
2723
3358
|
*/
|
|
2724
3359
|
'subscriberPrices'?: Array<SubscriberPrice>;
|
|
3360
|
+
/**
|
|
3361
|
+
*
|
|
3362
|
+
* @type {Array<number>}
|
|
3363
|
+
* @memberof CreateEventRequest
|
|
3364
|
+
*/
|
|
3365
|
+
'levels'?: Array<number>;
|
|
2725
3366
|
/**
|
|
2726
3367
|
*
|
|
2727
3368
|
* @type {string}
|
|
@@ -3013,19 +3654,6 @@ export interface DeleteClubRoleResponse {
|
|
|
3013
3654
|
*/
|
|
3014
3655
|
'message': string;
|
|
3015
3656
|
}
|
|
3016
|
-
/**
|
|
3017
|
-
*
|
|
3018
|
-
* @export
|
|
3019
|
-
* @interface DeleteClubSettingsResponse
|
|
3020
|
-
*/
|
|
3021
|
-
export interface DeleteClubSettingsResponse {
|
|
3022
|
-
/**
|
|
3023
|
-
* Message de confirmation
|
|
3024
|
-
* @type {string}
|
|
3025
|
-
* @memberof DeleteClubSettingsResponse
|
|
3026
|
-
*/
|
|
3027
|
-
'message': string;
|
|
3028
|
-
}
|
|
3029
3657
|
/**
|
|
3030
3658
|
*
|
|
3031
3659
|
* @export
|
|
@@ -3146,10 +3774,10 @@ export interface EventResponse {
|
|
|
3146
3774
|
'endDate': string;
|
|
3147
3775
|
/**
|
|
3148
3776
|
*
|
|
3149
|
-
* @type {Array<
|
|
3777
|
+
* @type {Array<string>}
|
|
3150
3778
|
* @memberof EventResponse
|
|
3151
3779
|
*/
|
|
3152
|
-
'courts': Array<
|
|
3780
|
+
'courts': Array<string>;
|
|
3153
3781
|
/**
|
|
3154
3782
|
*
|
|
3155
3783
|
* @type {Array<SportWithLevels>}
|
|
@@ -3264,13 +3892,6 @@ export declare const EventResponseVisibilityTypeEnum: {
|
|
|
3264
3892
|
readonly Invitation: "invitation";
|
|
3265
3893
|
};
|
|
3266
3894
|
export type EventResponseVisibilityTypeEnum = typeof EventResponseVisibilityTypeEnum[keyof typeof EventResponseVisibilityTypeEnum];
|
|
3267
|
-
/**
|
|
3268
|
-
*
|
|
3269
|
-
* @export
|
|
3270
|
-
* @interface EventResponseCourtsInner
|
|
3271
|
-
*/
|
|
3272
|
-
export interface EventResponseCourtsInner {
|
|
3273
|
-
}
|
|
3274
3895
|
/**
|
|
3275
3896
|
*
|
|
3276
3897
|
* @export
|
|
@@ -4603,6 +5224,12 @@ export interface PartialClubResponse {
|
|
|
4603
5224
|
* @memberof PartialClubResponse
|
|
4604
5225
|
*/
|
|
4605
5226
|
'sameTimeBookingsLimit'?: number;
|
|
5227
|
+
/**
|
|
5228
|
+
*
|
|
5229
|
+
* @type {number}
|
|
5230
|
+
* @memberof PartialClubResponse
|
|
5231
|
+
*/
|
|
5232
|
+
'maxSlotsPerBooking'?: number;
|
|
4606
5233
|
/**
|
|
4607
5234
|
* Limite d\'annulation en heures
|
|
4608
5235
|
* @type {number}
|
|
@@ -4628,6 +5255,55 @@ export interface PartialClubResponse {
|
|
|
4628
5255
|
*/
|
|
4629
5256
|
'updatedAt'?: ClubResponseUpdatedAt;
|
|
4630
5257
|
}
|
|
5258
|
+
/**
|
|
5259
|
+
* Make all properties in T optional
|
|
5260
|
+
* @export
|
|
5261
|
+
* @interface PartialClubWeeklySchedule
|
|
5262
|
+
*/
|
|
5263
|
+
export interface PartialClubWeeklySchedule {
|
|
5264
|
+
/**
|
|
5265
|
+
*
|
|
5266
|
+
* @type {ClubDaySchedule}
|
|
5267
|
+
* @memberof PartialClubWeeklySchedule
|
|
5268
|
+
*/
|
|
5269
|
+
'monday'?: ClubDaySchedule;
|
|
5270
|
+
/**
|
|
5271
|
+
*
|
|
5272
|
+
* @type {ClubDaySchedule}
|
|
5273
|
+
* @memberof PartialClubWeeklySchedule
|
|
5274
|
+
*/
|
|
5275
|
+
'tuesday'?: ClubDaySchedule;
|
|
5276
|
+
/**
|
|
5277
|
+
*
|
|
5278
|
+
* @type {ClubDaySchedule}
|
|
5279
|
+
* @memberof PartialClubWeeklySchedule
|
|
5280
|
+
*/
|
|
5281
|
+
'wednesday'?: ClubDaySchedule;
|
|
5282
|
+
/**
|
|
5283
|
+
*
|
|
5284
|
+
* @type {ClubDaySchedule}
|
|
5285
|
+
* @memberof PartialClubWeeklySchedule
|
|
5286
|
+
*/
|
|
5287
|
+
'thursday'?: ClubDaySchedule;
|
|
5288
|
+
/**
|
|
5289
|
+
*
|
|
5290
|
+
* @type {ClubDaySchedule}
|
|
5291
|
+
* @memberof PartialClubWeeklySchedule
|
|
5292
|
+
*/
|
|
5293
|
+
'friday'?: ClubDaySchedule;
|
|
5294
|
+
/**
|
|
5295
|
+
*
|
|
5296
|
+
* @type {ClubDaySchedule}
|
|
5297
|
+
* @memberof PartialClubWeeklySchedule
|
|
5298
|
+
*/
|
|
5299
|
+
'saturday'?: ClubDaySchedule;
|
|
5300
|
+
/**
|
|
5301
|
+
*
|
|
5302
|
+
* @type {ClubDaySchedule}
|
|
5303
|
+
* @memberof PartialClubWeeklySchedule
|
|
5304
|
+
*/
|
|
5305
|
+
'sunday'?: ClubDaySchedule;
|
|
5306
|
+
}
|
|
4631
5307
|
/**
|
|
4632
5308
|
*
|
|
4633
5309
|
* @export
|
|
@@ -5711,6 +6387,56 @@ export interface ResetPasswordRequest {
|
|
|
5711
6387
|
*/
|
|
5712
6388
|
'token'?: string;
|
|
5713
6389
|
}
|
|
6390
|
+
/**
|
|
6391
|
+
*
|
|
6392
|
+
* @export
|
|
6393
|
+
* @interface RetentionRateResponse
|
|
6394
|
+
*/
|
|
6395
|
+
export interface RetentionRateResponse {
|
|
6396
|
+
/**
|
|
6397
|
+
* Pourcentage de joueurs fidèles (>= 2 réservations)
|
|
6398
|
+
* @type {number}
|
|
6399
|
+
* @memberof RetentionRateResponse
|
|
6400
|
+
*/
|
|
6401
|
+
'retentionRate': number;
|
|
6402
|
+
/**
|
|
6403
|
+
* Nombre de joueurs fidèles
|
|
6404
|
+
* @type {number}
|
|
6405
|
+
* @memberof RetentionRateResponse
|
|
6406
|
+
*/
|
|
6407
|
+
'loyalPlayers': number;
|
|
6408
|
+
/**
|
|
6409
|
+
* Nombre total de joueurs ayant réservé
|
|
6410
|
+
* @type {number}
|
|
6411
|
+
* @memberof RetentionRateResponse
|
|
6412
|
+
*/
|
|
6413
|
+
'totalPlayers': number;
|
|
6414
|
+
}
|
|
6415
|
+
/**
|
|
6416
|
+
*
|
|
6417
|
+
* @export
|
|
6418
|
+
* @interface RevenueBySportItem
|
|
6419
|
+
*/
|
|
6420
|
+
export interface RevenueBySportItem {
|
|
6421
|
+
/**
|
|
6422
|
+
* ID du sport
|
|
6423
|
+
* @type {string}
|
|
6424
|
+
* @memberof RevenueBySportItem
|
|
6425
|
+
*/
|
|
6426
|
+
'sportId': string;
|
|
6427
|
+
/**
|
|
6428
|
+
* Nom du sport (si disponible)
|
|
6429
|
+
* @type {string}
|
|
6430
|
+
* @memberof RevenueBySportItem
|
|
6431
|
+
*/
|
|
6432
|
+
'sportName': string | null;
|
|
6433
|
+
/**
|
|
6434
|
+
* Chiffre d\'affaires total pour ce sport
|
|
6435
|
+
* @type {number}
|
|
6436
|
+
* @memberof RevenueBySportItem
|
|
6437
|
+
*/
|
|
6438
|
+
'totalTurnover': number;
|
|
6439
|
+
}
|
|
5714
6440
|
/**
|
|
5715
6441
|
*
|
|
5716
6442
|
* @export
|
|
@@ -5740,7 +6466,7 @@ export interface SlotInfo {
|
|
|
5740
6466
|
* @type {CourtInfo}
|
|
5741
6467
|
* @memberof SlotInfo
|
|
5742
6468
|
*/
|
|
5743
|
-
'
|
|
6469
|
+
'court': CourtInfo;
|
|
5744
6470
|
}
|
|
5745
6471
|
/**
|
|
5746
6472
|
*
|
|
@@ -7497,6 +8223,25 @@ export interface Team {
|
|
|
7497
8223
|
*/
|
|
7498
8224
|
'players': Array<string>;
|
|
7499
8225
|
}
|
|
8226
|
+
/**
|
|
8227
|
+
*
|
|
8228
|
+
* @export
|
|
8229
|
+
* @interface TimeBounds
|
|
8230
|
+
*/
|
|
8231
|
+
export interface TimeBounds {
|
|
8232
|
+
/**
|
|
8233
|
+
* Heure de début au format HH:mm
|
|
8234
|
+
* @type {string}
|
|
8235
|
+
* @memberof TimeBounds
|
|
8236
|
+
*/
|
|
8237
|
+
'start': string;
|
|
8238
|
+
/**
|
|
8239
|
+
* Heure de fin au format HH:mm
|
|
8240
|
+
* @type {string}
|
|
8241
|
+
* @memberof TimeBounds
|
|
8242
|
+
*/
|
|
8243
|
+
'end': string;
|
|
8244
|
+
}
|
|
7500
8245
|
/**
|
|
7501
8246
|
*
|
|
7502
8247
|
* @export
|
|
@@ -7510,6 +8255,136 @@ export interface UpdateActuality200Response {
|
|
|
7510
8255
|
*/
|
|
7511
8256
|
'actuality': any;
|
|
7512
8257
|
}
|
|
8258
|
+
/**
|
|
8259
|
+
*
|
|
8260
|
+
* @export
|
|
8261
|
+
* @interface UpdateClubGeneralSettingsRequest
|
|
8262
|
+
*/
|
|
8263
|
+
export interface UpdateClubGeneralSettingsRequest {
|
|
8264
|
+
/**
|
|
8265
|
+
*
|
|
8266
|
+
* @type {string}
|
|
8267
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8268
|
+
*/
|
|
8269
|
+
'name'?: string;
|
|
8270
|
+
/**
|
|
8271
|
+
*
|
|
8272
|
+
* @type {string}
|
|
8273
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8274
|
+
*/
|
|
8275
|
+
'email'?: string;
|
|
8276
|
+
/**
|
|
8277
|
+
*
|
|
8278
|
+
* @type {string}
|
|
8279
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8280
|
+
*/
|
|
8281
|
+
'phone'?: string;
|
|
8282
|
+
/**
|
|
8283
|
+
*
|
|
8284
|
+
* @type {string}
|
|
8285
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8286
|
+
*/
|
|
8287
|
+
'websiteUrl'?: string;
|
|
8288
|
+
/**
|
|
8289
|
+
*
|
|
8290
|
+
* @type {string}
|
|
8291
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8292
|
+
*/
|
|
8293
|
+
'description'?: string;
|
|
8294
|
+
/**
|
|
8295
|
+
*
|
|
8296
|
+
* @type {string}
|
|
8297
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8298
|
+
*/
|
|
8299
|
+
'rib'?: string | null;
|
|
8300
|
+
/**
|
|
8301
|
+
*
|
|
8302
|
+
* @type {string}
|
|
8303
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8304
|
+
*/
|
|
8305
|
+
'logo'?: string | null;
|
|
8306
|
+
/**
|
|
8307
|
+
*
|
|
8308
|
+
* @type {ClubLocationSettings}
|
|
8309
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8310
|
+
*/
|
|
8311
|
+
'location'?: ClubLocationSettings;
|
|
8312
|
+
}
|
|
8313
|
+
/**
|
|
8314
|
+
*
|
|
8315
|
+
* @export
|
|
8316
|
+
* @interface UpdateClubHoursSettingsRequest
|
|
8317
|
+
*/
|
|
8318
|
+
export interface UpdateClubHoursSettingsRequest {
|
|
8319
|
+
/**
|
|
8320
|
+
*
|
|
8321
|
+
* @type {PartialClubWeeklySchedule}
|
|
8322
|
+
* @memberof UpdateClubHoursSettingsRequest
|
|
8323
|
+
*/
|
|
8324
|
+
'schedule'?: PartialClubWeeklySchedule;
|
|
8325
|
+
/**
|
|
8326
|
+
*
|
|
8327
|
+
* @type {Array<ClubPricingPeriodResponse>}
|
|
8328
|
+
* @memberof UpdateClubHoursSettingsRequest
|
|
8329
|
+
*/
|
|
8330
|
+
'pricingPeriods'?: Array<ClubPricingPeriodResponse>;
|
|
8331
|
+
}
|
|
8332
|
+
/**
|
|
8333
|
+
*
|
|
8334
|
+
* @export
|
|
8335
|
+
* @interface UpdateClubMemberRequest
|
|
8336
|
+
*/
|
|
8337
|
+
export interface UpdateClubMemberRequest {
|
|
8338
|
+
/**
|
|
8339
|
+
* Rôle du membre dans le club
|
|
8340
|
+
* @type {string}
|
|
8341
|
+
* @memberof UpdateClubMemberRequest
|
|
8342
|
+
*/
|
|
8343
|
+
'role'?: UpdateClubMemberRequestRoleEnum;
|
|
8344
|
+
/**
|
|
8345
|
+
* Droits du membre dans le club
|
|
8346
|
+
* @type {Array<string>}
|
|
8347
|
+
* @memberof UpdateClubMemberRequest
|
|
8348
|
+
*/
|
|
8349
|
+
'rights'?: Array<string>;
|
|
8350
|
+
}
|
|
8351
|
+
export declare const UpdateClubMemberRequestRoleEnum: {
|
|
8352
|
+
readonly Admin: "admin";
|
|
8353
|
+
readonly Manager: "manager";
|
|
8354
|
+
readonly Staff: "staff";
|
|
8355
|
+
};
|
|
8356
|
+
export type UpdateClubMemberRequestRoleEnum = typeof UpdateClubMemberRequestRoleEnum[keyof typeof UpdateClubMemberRequestRoleEnum];
|
|
8357
|
+
/**
|
|
8358
|
+
*
|
|
8359
|
+
* @export
|
|
8360
|
+
* @interface UpdateClubPresentationSettingsRequest
|
|
8361
|
+
*/
|
|
8362
|
+
export interface UpdateClubPresentationSettingsRequest {
|
|
8363
|
+
/**
|
|
8364
|
+
*
|
|
8365
|
+
* @type {string}
|
|
8366
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
8367
|
+
*/
|
|
8368
|
+
'description'?: string;
|
|
8369
|
+
/**
|
|
8370
|
+
*
|
|
8371
|
+
* @type {Array<string>}
|
|
8372
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
8373
|
+
*/
|
|
8374
|
+
'tags'?: Array<string>;
|
|
8375
|
+
/**
|
|
8376
|
+
*
|
|
8377
|
+
* @type {Array<string | null>}
|
|
8378
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
8379
|
+
*/
|
|
8380
|
+
'bannerImages'?: Array<string | null>;
|
|
8381
|
+
/**
|
|
8382
|
+
*
|
|
8383
|
+
* @type {Array<string | null>}
|
|
8384
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
8385
|
+
*/
|
|
8386
|
+
'galleryImages'?: Array<string | null>;
|
|
8387
|
+
}
|
|
7513
8388
|
/**
|
|
7514
8389
|
*
|
|
7515
8390
|
* @export
|
|
@@ -7621,6 +8496,43 @@ export interface UpdateClubRequestLocationCoordinates {
|
|
|
7621
8496
|
*/
|
|
7622
8497
|
'lat'?: number;
|
|
7623
8498
|
}
|
|
8499
|
+
/**
|
|
8500
|
+
*
|
|
8501
|
+
* @export
|
|
8502
|
+
* @interface UpdateClubReservationSettingsRequest
|
|
8503
|
+
*/
|
|
8504
|
+
export interface UpdateClubReservationSettingsRequest {
|
|
8505
|
+
/**
|
|
8506
|
+
*
|
|
8507
|
+
* @type {number}
|
|
8508
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
8509
|
+
*/
|
|
8510
|
+
'maxWeeklyBookings': number | null;
|
|
8511
|
+
/**
|
|
8512
|
+
*
|
|
8513
|
+
* @type {boolean}
|
|
8514
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
8515
|
+
*/
|
|
8516
|
+
'unlimitedWeeklyBookings': boolean;
|
|
8517
|
+
/**
|
|
8518
|
+
*
|
|
8519
|
+
* @type {number}
|
|
8520
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
8521
|
+
*/
|
|
8522
|
+
'sameTimeBookingsLimit': number;
|
|
8523
|
+
/**
|
|
8524
|
+
*
|
|
8525
|
+
* @type {number}
|
|
8526
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
8527
|
+
*/
|
|
8528
|
+
'cancellationDelayInHours': number;
|
|
8529
|
+
/**
|
|
8530
|
+
*
|
|
8531
|
+
* @type {number}
|
|
8532
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
8533
|
+
*/
|
|
8534
|
+
'bookingPeriodInDays': number;
|
|
8535
|
+
}
|
|
7624
8536
|
/**
|
|
7625
8537
|
*
|
|
7626
8538
|
* @export
|
|
@@ -7646,55 +8558,6 @@ export declare const UpdateClubRoleRequestRoleEnum: {
|
|
|
7646
8558
|
readonly Staff: "staff";
|
|
7647
8559
|
};
|
|
7648
8560
|
export type UpdateClubRoleRequestRoleEnum = typeof UpdateClubRoleRequestRoleEnum[keyof typeof UpdateClubRoleRequestRoleEnum];
|
|
7649
|
-
/**
|
|
7650
|
-
*
|
|
7651
|
-
* @export
|
|
7652
|
-
* @interface UpdateClubSettingsRequest
|
|
7653
|
-
*/
|
|
7654
|
-
export interface UpdateClubSettingsRequest {
|
|
7655
|
-
/**
|
|
7656
|
-
* Nombre maximum de réservations par semaine
|
|
7657
|
-
* @type {number}
|
|
7658
|
-
* @memberof UpdateClubSettingsRequest
|
|
7659
|
-
*/
|
|
7660
|
-
'maxWeeklyBookings'?: number;
|
|
7661
|
-
/**
|
|
7662
|
-
* Autoriser plusieurs réservations en même temps
|
|
7663
|
-
* @type {boolean}
|
|
7664
|
-
* @memberof UpdateClubSettingsRequest
|
|
7665
|
-
*/
|
|
7666
|
-
'allowMultipleBookingsAtTheSameTime'?: boolean;
|
|
7667
|
-
/**
|
|
7668
|
-
* Limite de réservations simultanées
|
|
7669
|
-
* @type {number}
|
|
7670
|
-
* @memberof UpdateClubSettingsRequest
|
|
7671
|
-
*/
|
|
7672
|
-
'sameTimeBookingsLimit'?: number;
|
|
7673
|
-
/**
|
|
7674
|
-
* Limite d\'annulation en heures
|
|
7675
|
-
* @type {number}
|
|
7676
|
-
* @memberof UpdateClubSettingsRequest
|
|
7677
|
-
*/
|
|
7678
|
-
'cancellationLimitHours'?: number;
|
|
7679
|
-
/**
|
|
7680
|
-
* Période de disponibilité en jours
|
|
7681
|
-
* @type {number}
|
|
7682
|
-
* @memberof UpdateClubSettingsRequest
|
|
7683
|
-
*/
|
|
7684
|
-
'availabilityPeriodInDays'?: number;
|
|
7685
|
-
/**
|
|
7686
|
-
* Liste des sponsors
|
|
7687
|
-
* @type {Array<string>}
|
|
7688
|
-
* @memberof UpdateClubSettingsRequest
|
|
7689
|
-
*/
|
|
7690
|
-
'sponsors'?: Array<string>;
|
|
7691
|
-
/**
|
|
7692
|
-
* Temps avant paiement en minutes
|
|
7693
|
-
* @type {number}
|
|
7694
|
-
* @memberof UpdateClubSettingsRequest
|
|
7695
|
-
*/
|
|
7696
|
-
'timeBeforePayment'?: number;
|
|
7697
|
-
}
|
|
7698
8561
|
/**
|
|
7699
8562
|
*
|
|
7700
8563
|
* @export
|
|
@@ -7773,10 +8636,10 @@ export interface UpdateEventRequest {
|
|
|
7773
8636
|
'endDate'?: string;
|
|
7774
8637
|
/**
|
|
7775
8638
|
*
|
|
7776
|
-
* @type {Array<
|
|
8639
|
+
* @type {Array<string>}
|
|
7777
8640
|
* @memberof UpdateEventRequest
|
|
7778
8641
|
*/
|
|
7779
|
-
'courts'?: Array<
|
|
8642
|
+
'courts'?: Array<string>;
|
|
7780
8643
|
/**
|
|
7781
8644
|
*
|
|
7782
8645
|
* @type {Array<string>}
|
|
@@ -8266,7 +9129,13 @@ export interface UserInfo {
|
|
|
8266
9129
|
* @type {string}
|
|
8267
9130
|
* @memberof UserInfo
|
|
8268
9131
|
*/
|
|
8269
|
-
'email': string;
|
|
9132
|
+
'email': string;
|
|
9133
|
+
/**
|
|
9134
|
+
*
|
|
9135
|
+
* @type {string}
|
|
9136
|
+
* @memberof UserInfo
|
|
9137
|
+
*/
|
|
9138
|
+
'phoneNumber'?: string;
|
|
8270
9139
|
/**
|
|
8271
9140
|
*
|
|
8272
9141
|
* @type {string}
|
|
@@ -9099,14 +9968,14 @@ export declare const BookingsStaffApiFp: (configuration?: Configuration) => {
|
|
|
9099
9968
|
* @param {*} [options] Override http request option.
|
|
9100
9969
|
* @throws {RequiredError}
|
|
9101
9970
|
*/
|
|
9102
|
-
getDailyBookings(date: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9971
|
+
getDailyBookings(date: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingsWithTimeBoundsResponse>>;
|
|
9103
9972
|
/**
|
|
9104
9973
|
* Obtenir les réservations hebdomadaires
|
|
9105
9974
|
* @param {string} weekId
|
|
9106
9975
|
* @param {*} [options] Override http request option.
|
|
9107
9976
|
* @throws {RequiredError}
|
|
9108
9977
|
*/
|
|
9109
|
-
getWeeklyBookings(weekId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9978
|
+
getWeeklyBookings(weekId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingsWithTimeBoundsResponse>>;
|
|
9110
9979
|
};
|
|
9111
9980
|
/**
|
|
9112
9981
|
* BookingsStaffApi - factory interface
|
|
@@ -9147,14 +10016,14 @@ export declare const BookingsStaffApiFactory: (configuration?: Configuration, ba
|
|
|
9147
10016
|
* @param {*} [options] Override http request option.
|
|
9148
10017
|
* @throws {RequiredError}
|
|
9149
10018
|
*/
|
|
9150
|
-
getDailyBookings(requestParameters: BookingsStaffApiGetDailyBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
10019
|
+
getDailyBookings(requestParameters: BookingsStaffApiGetDailyBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BookingsWithTimeBoundsResponse>;
|
|
9151
10020
|
/**
|
|
9152
10021
|
* Obtenir les réservations hebdomadaires
|
|
9153
10022
|
* @param {BookingsStaffApiGetWeeklyBookingsRequest} requestParameters Request parameters.
|
|
9154
10023
|
* @param {*} [options] Override http request option.
|
|
9155
10024
|
* @throws {RequiredError}
|
|
9156
10025
|
*/
|
|
9157
|
-
getWeeklyBookings(requestParameters: BookingsStaffApiGetWeeklyBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
10026
|
+
getWeeklyBookings(requestParameters: BookingsStaffApiGetWeeklyBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BookingsWithTimeBoundsResponse>;
|
|
9158
10027
|
};
|
|
9159
10028
|
/**
|
|
9160
10029
|
* Request parameters for checkInPlayers operation in BookingsStaffApi.
|
|
@@ -9286,7 +10155,7 @@ export declare class BookingsStaffApi extends BaseAPI {
|
|
|
9286
10155
|
* @throws {RequiredError}
|
|
9287
10156
|
* @memberof BookingsStaffApi
|
|
9288
10157
|
*/
|
|
9289
|
-
getDailyBookings(requestParameters: BookingsStaffApiGetDailyBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
10158
|
+
getDailyBookings(requestParameters: BookingsStaffApiGetDailyBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsWithTimeBoundsResponse, any, {}>>;
|
|
9290
10159
|
/**
|
|
9291
10160
|
* Obtenir les réservations hebdomadaires
|
|
9292
10161
|
* @param {BookingsStaffApiGetWeeklyBookingsRequest} requestParameters Request parameters.
|
|
@@ -9294,7 +10163,7 @@ export declare class BookingsStaffApi extends BaseAPI {
|
|
|
9294
10163
|
* @throws {RequiredError}
|
|
9295
10164
|
* @memberof BookingsStaffApi
|
|
9296
10165
|
*/
|
|
9297
|
-
getWeeklyBookings(requestParameters: BookingsStaffApiGetWeeklyBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
10166
|
+
getWeeklyBookings(requestParameters: BookingsStaffApiGetWeeklyBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsWithTimeBoundsResponse, any, {}>>;
|
|
9298
10167
|
}
|
|
9299
10168
|
/**
|
|
9300
10169
|
* BookingsUserApi - axios parameter creator
|
|
@@ -9864,6 +10733,29 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
9864
10733
|
* @throws {RequiredError}
|
|
9865
10734
|
*/
|
|
9866
10735
|
getAnalyticsBySport: (sportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10736
|
+
/**
|
|
10737
|
+
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
10738
|
+
* @param {string} playerId
|
|
10739
|
+
* @param {number} [page]
|
|
10740
|
+
* @param {number} [pageSize]
|
|
10741
|
+
* @param {*} [options] Override http request option.
|
|
10742
|
+
* @throws {RequiredError}
|
|
10743
|
+
*/
|
|
10744
|
+
getClubPlayerBookingsById: (playerId: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10745
|
+
/**
|
|
10746
|
+
* Récupère les informations détaillées d\'un joueur par son ID
|
|
10747
|
+
* @param {string} playerId
|
|
10748
|
+
* @param {*} [options] Override http request option.
|
|
10749
|
+
* @throws {RequiredError}
|
|
10750
|
+
*/
|
|
10751
|
+
getClubPlayerById: (playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10752
|
+
/**
|
|
10753
|
+
* Récupère les statistiques d\'un joueur pour le staff
|
|
10754
|
+
* @param {string} playerId
|
|
10755
|
+
* @param {*} [options] Override http request option.
|
|
10756
|
+
* @throws {RequiredError}
|
|
10757
|
+
*/
|
|
10758
|
+
getClubPlayerStatisticsById: (playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9867
10759
|
/**
|
|
9868
10760
|
* Récupère la liste des joueurs du club
|
|
9869
10761
|
* @param {*} [options] Override http request option.
|
|
@@ -9911,12 +10803,30 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
9911
10803
|
* @throws {RequiredError}
|
|
9912
10804
|
*/
|
|
9913
10805
|
getNumberOfClubUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10806
|
+
/**
|
|
10807
|
+
* Calcule le taux de fidélisation des joueurs
|
|
10808
|
+
* @param {*} [options] Override http request option.
|
|
10809
|
+
* @throws {RequiredError}
|
|
10810
|
+
*/
|
|
10811
|
+
getRetentionRate: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10812
|
+
/**
|
|
10813
|
+
* Récupère le chiffre d\'affaires par sport
|
|
10814
|
+
* @param {*} [options] Override http request option.
|
|
10815
|
+
* @throws {RequiredError}
|
|
10816
|
+
*/
|
|
10817
|
+
getRevenueBySport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9914
10818
|
/**
|
|
9915
10819
|
* Récupère les 10 prochaines réservations
|
|
9916
10820
|
* @param {*} [options] Override http request option.
|
|
9917
10821
|
* @throws {RequiredError}
|
|
9918
10822
|
*/
|
|
9919
10823
|
getTenNextBookings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10824
|
+
/**
|
|
10825
|
+
* Classement des terrains les plus réservés
|
|
10826
|
+
* @param {*} [options] Override http request option.
|
|
10827
|
+
* @throws {RequiredError}
|
|
10828
|
+
*/
|
|
10829
|
+
getTopCourtsByBookings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9920
10830
|
/**
|
|
9921
10831
|
* Récupère le chiffre d\'affaires annuel avec détail mensuel
|
|
9922
10832
|
* @param {string} year
|
|
@@ -9937,6 +10847,29 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
9937
10847
|
* @throws {RequiredError}
|
|
9938
10848
|
*/
|
|
9939
10849
|
getAnalyticsBySport(sportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SportAnalyticsResponse>>;
|
|
10850
|
+
/**
|
|
10851
|
+
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
10852
|
+
* @param {string} playerId
|
|
10853
|
+
* @param {number} [page]
|
|
10854
|
+
* @param {number} [pageSize]
|
|
10855
|
+
* @param {*} [options] Override http request option.
|
|
10856
|
+
* @throws {RequiredError}
|
|
10857
|
+
*/
|
|
10858
|
+
getClubPlayerBookingsById(playerId: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerBookingsResponse>>;
|
|
10859
|
+
/**
|
|
10860
|
+
* Récupère les informations détaillées d\'un joueur par son ID
|
|
10861
|
+
* @param {string} playerId
|
|
10862
|
+
* @param {*} [options] Override http request option.
|
|
10863
|
+
* @throws {RequiredError}
|
|
10864
|
+
*/
|
|
10865
|
+
getClubPlayerById(playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerDetailResponse>>;
|
|
10866
|
+
/**
|
|
10867
|
+
* Récupère les statistiques d\'un joueur pour le staff
|
|
10868
|
+
* @param {string} playerId
|
|
10869
|
+
* @param {*} [options] Override http request option.
|
|
10870
|
+
* @throws {RequiredError}
|
|
10871
|
+
*/
|
|
10872
|
+
getClubPlayerStatisticsById(playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerStatisticsResponse>>;
|
|
9940
10873
|
/**
|
|
9941
10874
|
* Récupère la liste des joueurs du club
|
|
9942
10875
|
* @param {*} [options] Override http request option.
|
|
@@ -9984,12 +10917,30 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
9984
10917
|
* @throws {RequiredError}
|
|
9985
10918
|
*/
|
|
9986
10919
|
getNumberOfClubUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubUserCountResponse>>;
|
|
10920
|
+
/**
|
|
10921
|
+
* Calcule le taux de fidélisation des joueurs
|
|
10922
|
+
* @param {*} [options] Override http request option.
|
|
10923
|
+
* @throws {RequiredError}
|
|
10924
|
+
*/
|
|
10925
|
+
getRetentionRate(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RetentionRateResponse>>;
|
|
10926
|
+
/**
|
|
10927
|
+
* Récupère le chiffre d\'affaires par sport
|
|
10928
|
+
* @param {*} [options] Override http request option.
|
|
10929
|
+
* @throws {RequiredError}
|
|
10930
|
+
*/
|
|
10931
|
+
getRevenueBySport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RevenueBySportItem>>>;
|
|
9987
10932
|
/**
|
|
9988
10933
|
* Récupère les 10 prochaines réservations
|
|
9989
10934
|
* @param {*} [options] Override http request option.
|
|
9990
10935
|
* @throws {RequiredError}
|
|
9991
10936
|
*/
|
|
9992
10937
|
getTenNextBookings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BookingAnalyticsResponse>>>;
|
|
10938
|
+
/**
|
|
10939
|
+
* Classement des terrains les plus réservés
|
|
10940
|
+
* @param {*} [options] Override http request option.
|
|
10941
|
+
* @throws {RequiredError}
|
|
10942
|
+
*/
|
|
10943
|
+
getTopCourtsByBookings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CourtBookingShareItem>>>;
|
|
9993
10944
|
/**
|
|
9994
10945
|
* Récupère le chiffre d\'affaires annuel avec détail mensuel
|
|
9995
10946
|
* @param {string} year
|
|
@@ -10010,6 +10961,27 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
10010
10961
|
* @throws {RequiredError}
|
|
10011
10962
|
*/
|
|
10012
10963
|
getAnalyticsBySport(requestParameters: ClubAnalyticsStaffApiGetAnalyticsBySportRequest, options?: RawAxiosRequestConfig): AxiosPromise<SportAnalyticsResponse>;
|
|
10964
|
+
/**
|
|
10965
|
+
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
10966
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest} requestParameters Request parameters.
|
|
10967
|
+
* @param {*} [options] Override http request option.
|
|
10968
|
+
* @throws {RequiredError}
|
|
10969
|
+
*/
|
|
10970
|
+
getClubPlayerBookingsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayerBookingsResponse>;
|
|
10971
|
+
/**
|
|
10972
|
+
* Récupère les informations détaillées d\'un joueur par son ID
|
|
10973
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerByIdRequest} requestParameters Request parameters.
|
|
10974
|
+
* @param {*} [options] Override http request option.
|
|
10975
|
+
* @throws {RequiredError}
|
|
10976
|
+
*/
|
|
10977
|
+
getClubPlayerById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayerDetailResponse>;
|
|
10978
|
+
/**
|
|
10979
|
+
* Récupère les statistiques d\'un joueur pour le staff
|
|
10980
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest} requestParameters Request parameters.
|
|
10981
|
+
* @param {*} [options] Override http request option.
|
|
10982
|
+
* @throws {RequiredError}
|
|
10983
|
+
*/
|
|
10984
|
+
getClubPlayerStatisticsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayerStatisticsResponse>;
|
|
10013
10985
|
/**
|
|
10014
10986
|
* Récupère la liste des joueurs du club
|
|
10015
10987
|
* @param {*} [options] Override http request option.
|
|
@@ -10055,12 +11027,30 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
10055
11027
|
* @throws {RequiredError}
|
|
10056
11028
|
*/
|
|
10057
11029
|
getNumberOfClubUsers(options?: RawAxiosRequestConfig): AxiosPromise<ClubUserCountResponse>;
|
|
11030
|
+
/**
|
|
11031
|
+
* Calcule le taux de fidélisation des joueurs
|
|
11032
|
+
* @param {*} [options] Override http request option.
|
|
11033
|
+
* @throws {RequiredError}
|
|
11034
|
+
*/
|
|
11035
|
+
getRetentionRate(options?: RawAxiosRequestConfig): AxiosPromise<RetentionRateResponse>;
|
|
11036
|
+
/**
|
|
11037
|
+
* Récupère le chiffre d\'affaires par sport
|
|
11038
|
+
* @param {*} [options] Override http request option.
|
|
11039
|
+
* @throws {RequiredError}
|
|
11040
|
+
*/
|
|
11041
|
+
getRevenueBySport(options?: RawAxiosRequestConfig): AxiosPromise<Array<RevenueBySportItem>>;
|
|
10058
11042
|
/**
|
|
10059
11043
|
* Récupère les 10 prochaines réservations
|
|
10060
11044
|
* @param {*} [options] Override http request option.
|
|
10061
11045
|
* @throws {RequiredError}
|
|
10062
11046
|
*/
|
|
10063
11047
|
getTenNextBookings(options?: RawAxiosRequestConfig): AxiosPromise<Array<BookingAnalyticsResponse>>;
|
|
11048
|
+
/**
|
|
11049
|
+
* Classement des terrains les plus réservés
|
|
11050
|
+
* @param {*} [options] Override http request option.
|
|
11051
|
+
* @throws {RequiredError}
|
|
11052
|
+
*/
|
|
11053
|
+
getTopCourtsByBookings(options?: RawAxiosRequestConfig): AxiosPromise<Array<CourtBookingShareItem>>;
|
|
10064
11054
|
/**
|
|
10065
11055
|
* Récupère le chiffre d\'affaires annuel avec détail mensuel
|
|
10066
11056
|
* @param {ClubAnalyticsStaffApiGetYearlyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -10082,6 +11072,57 @@ export interface ClubAnalyticsStaffApiGetAnalyticsBySportRequest {
|
|
|
10082
11072
|
*/
|
|
10083
11073
|
readonly sportId: string;
|
|
10084
11074
|
}
|
|
11075
|
+
/**
|
|
11076
|
+
* Request parameters for getClubPlayerBookingsById operation in ClubAnalyticsStaffApi.
|
|
11077
|
+
* @export
|
|
11078
|
+
* @interface ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest
|
|
11079
|
+
*/
|
|
11080
|
+
export interface ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest {
|
|
11081
|
+
/**
|
|
11082
|
+
*
|
|
11083
|
+
* @type {string}
|
|
11084
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
11085
|
+
*/
|
|
11086
|
+
readonly playerId: string;
|
|
11087
|
+
/**
|
|
11088
|
+
*
|
|
11089
|
+
* @type {number}
|
|
11090
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
11091
|
+
*/
|
|
11092
|
+
readonly page?: number;
|
|
11093
|
+
/**
|
|
11094
|
+
*
|
|
11095
|
+
* @type {number}
|
|
11096
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
11097
|
+
*/
|
|
11098
|
+
readonly pageSize?: number;
|
|
11099
|
+
}
|
|
11100
|
+
/**
|
|
11101
|
+
* Request parameters for getClubPlayerById operation in ClubAnalyticsStaffApi.
|
|
11102
|
+
* @export
|
|
11103
|
+
* @interface ClubAnalyticsStaffApiGetClubPlayerByIdRequest
|
|
11104
|
+
*/
|
|
11105
|
+
export interface ClubAnalyticsStaffApiGetClubPlayerByIdRequest {
|
|
11106
|
+
/**
|
|
11107
|
+
*
|
|
11108
|
+
* @type {string}
|
|
11109
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerById
|
|
11110
|
+
*/
|
|
11111
|
+
readonly playerId: string;
|
|
11112
|
+
}
|
|
11113
|
+
/**
|
|
11114
|
+
* Request parameters for getClubPlayerStatisticsById operation in ClubAnalyticsStaffApi.
|
|
11115
|
+
* @export
|
|
11116
|
+
* @interface ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest
|
|
11117
|
+
*/
|
|
11118
|
+
export interface ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest {
|
|
11119
|
+
/**
|
|
11120
|
+
*
|
|
11121
|
+
* @type {string}
|
|
11122
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerStatisticsById
|
|
11123
|
+
*/
|
|
11124
|
+
readonly playerId: string;
|
|
11125
|
+
}
|
|
10085
11126
|
/**
|
|
10086
11127
|
* Request parameters for getDailyTurnOver operation in ClubAnalyticsStaffApi.
|
|
10087
11128
|
* @export
|
|
@@ -10161,6 +11202,30 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
10161
11202
|
* @memberof ClubAnalyticsStaffApi
|
|
10162
11203
|
*/
|
|
10163
11204
|
getAnalyticsBySport(requestParameters: ClubAnalyticsStaffApiGetAnalyticsBySportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportAnalyticsResponse, any, {}>>;
|
|
11205
|
+
/**
|
|
11206
|
+
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
11207
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest} requestParameters Request parameters.
|
|
11208
|
+
* @param {*} [options] Override http request option.
|
|
11209
|
+
* @throws {RequiredError}
|
|
11210
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11211
|
+
*/
|
|
11212
|
+
getClubPlayerBookingsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayerBookingsResponse, any, {}>>;
|
|
11213
|
+
/**
|
|
11214
|
+
* Récupère les informations détaillées d\'un joueur par son ID
|
|
11215
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerByIdRequest} requestParameters Request parameters.
|
|
11216
|
+
* @param {*} [options] Override http request option.
|
|
11217
|
+
* @throws {RequiredError}
|
|
11218
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11219
|
+
*/
|
|
11220
|
+
getClubPlayerById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayerDetailResponse, any, {}>>;
|
|
11221
|
+
/**
|
|
11222
|
+
* Récupère les statistiques d\'un joueur pour le staff
|
|
11223
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest} requestParameters Request parameters.
|
|
11224
|
+
* @param {*} [options] Override http request option.
|
|
11225
|
+
* @throws {RequiredError}
|
|
11226
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11227
|
+
*/
|
|
11228
|
+
getClubPlayerStatisticsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayerStatisticsResponse, any, {}>>;
|
|
10164
11229
|
/**
|
|
10165
11230
|
* Récupère la liste des joueurs du club
|
|
10166
11231
|
* @param {*} [options] Override http request option.
|
|
@@ -10213,6 +11278,20 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
10213
11278
|
* @memberof ClubAnalyticsStaffApi
|
|
10214
11279
|
*/
|
|
10215
11280
|
getNumberOfClubUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubUserCountResponse, any, {}>>;
|
|
11281
|
+
/**
|
|
11282
|
+
* Calcule le taux de fidélisation des joueurs
|
|
11283
|
+
* @param {*} [options] Override http request option.
|
|
11284
|
+
* @throws {RequiredError}
|
|
11285
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11286
|
+
*/
|
|
11287
|
+
getRetentionRate(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RetentionRateResponse, any, {}>>;
|
|
11288
|
+
/**
|
|
11289
|
+
* Récupère le chiffre d\'affaires par sport
|
|
11290
|
+
* @param {*} [options] Override http request option.
|
|
11291
|
+
* @throws {RequiredError}
|
|
11292
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11293
|
+
*/
|
|
11294
|
+
getRevenueBySport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RevenueBySportItem[], any, {}>>;
|
|
10216
11295
|
/**
|
|
10217
11296
|
* Récupère les 10 prochaines réservations
|
|
10218
11297
|
* @param {*} [options] Override http request option.
|
|
@@ -10220,6 +11299,13 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
10220
11299
|
* @memberof ClubAnalyticsStaffApi
|
|
10221
11300
|
*/
|
|
10222
11301
|
getTenNextBookings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingAnalyticsResponse[], any, {}>>;
|
|
11302
|
+
/**
|
|
11303
|
+
* Classement des terrains les plus réservés
|
|
11304
|
+
* @param {*} [options] Override http request option.
|
|
11305
|
+
* @throws {RequiredError}
|
|
11306
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11307
|
+
*/
|
|
11308
|
+
getTopCourtsByBookings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CourtBookingShareItem[], any, {}>>;
|
|
10223
11309
|
/**
|
|
10224
11310
|
* Récupère le chiffre d\'affaires annuel avec détail mensuel
|
|
10225
11311
|
* @param {ClubAnalyticsStaffApiGetYearlyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -10445,235 +11531,387 @@ export declare const ClubRolesStaffApiFp: (configuration?: Configuration) => {
|
|
|
10445
11531
|
*/
|
|
10446
11532
|
export declare const ClubRolesStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10447
11533
|
/**
|
|
10448
|
-
* Récupère la liste des rôles d\'un club
|
|
11534
|
+
* Récupère la liste des rôles d\'un club
|
|
11535
|
+
* @param {*} [options] Override http request option.
|
|
11536
|
+
* @throws {RequiredError}
|
|
11537
|
+
*/
|
|
11538
|
+
getAllClubRoles(options?: RawAxiosRequestConfig): AxiosPromise<Array<ClubRoleResponse>>;
|
|
11539
|
+
/**
|
|
11540
|
+
* Récupère un rôle de club par ID
|
|
11541
|
+
* @param {ClubRolesStaffApiGetClubRoleByIdRequest} requestParameters Request parameters.
|
|
11542
|
+
* @param {*} [options] Override http request option.
|
|
11543
|
+
* @throws {RequiredError}
|
|
11544
|
+
*/
|
|
11545
|
+
getClubRoleById(requestParameters: ClubRolesStaffApiGetClubRoleByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubRoleResponse>;
|
|
11546
|
+
/**
|
|
11547
|
+
*
|
|
11548
|
+
* @param {*} [options] Override http request option.
|
|
11549
|
+
* @throws {RequiredError}
|
|
11550
|
+
*/
|
|
11551
|
+
getUserRolesInClubs(options?: RawAxiosRequestConfig): AxiosPromise<UserRolesResponse>;
|
|
11552
|
+
};
|
|
11553
|
+
/**
|
|
11554
|
+
* Request parameters for getClubRoleById operation in ClubRolesStaffApi.
|
|
11555
|
+
* @export
|
|
11556
|
+
* @interface ClubRolesStaffApiGetClubRoleByIdRequest
|
|
11557
|
+
*/
|
|
11558
|
+
export interface ClubRolesStaffApiGetClubRoleByIdRequest {
|
|
11559
|
+
/**
|
|
11560
|
+
*
|
|
11561
|
+
* @type {string}
|
|
11562
|
+
* @memberof ClubRolesStaffApiGetClubRoleById
|
|
11563
|
+
*/
|
|
11564
|
+
readonly id: string;
|
|
11565
|
+
}
|
|
11566
|
+
/**
|
|
11567
|
+
* ClubRolesStaffApi - object-oriented interface
|
|
11568
|
+
* @export
|
|
11569
|
+
* @class ClubRolesStaffApi
|
|
11570
|
+
* @extends {BaseAPI}
|
|
11571
|
+
*/
|
|
11572
|
+
export declare class ClubRolesStaffApi extends BaseAPI {
|
|
11573
|
+
/**
|
|
11574
|
+
* Récupère la liste des rôles d\'un club
|
|
11575
|
+
* @param {*} [options] Override http request option.
|
|
11576
|
+
* @throws {RequiredError}
|
|
11577
|
+
* @memberof ClubRolesStaffApi
|
|
11578
|
+
*/
|
|
11579
|
+
getAllClubRoles(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubRoleResponse[], any, {}>>;
|
|
11580
|
+
/**
|
|
11581
|
+
* Récupère un rôle de club par ID
|
|
11582
|
+
* @param {ClubRolesStaffApiGetClubRoleByIdRequest} requestParameters Request parameters.
|
|
11583
|
+
* @param {*} [options] Override http request option.
|
|
11584
|
+
* @throws {RequiredError}
|
|
11585
|
+
* @memberof ClubRolesStaffApi
|
|
11586
|
+
*/
|
|
11587
|
+
getClubRoleById(requestParameters: ClubRolesStaffApiGetClubRoleByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubRoleResponse, any, {}>>;
|
|
11588
|
+
/**
|
|
11589
|
+
*
|
|
11590
|
+
* @param {*} [options] Override http request option.
|
|
11591
|
+
* @throws {RequiredError}
|
|
11592
|
+
* @memberof ClubRolesStaffApi
|
|
11593
|
+
*/
|
|
11594
|
+
getUserRolesInClubs(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserRolesResponse, any, {}>>;
|
|
11595
|
+
}
|
|
11596
|
+
/**
|
|
11597
|
+
* ClubSettingsManagerApi - axios parameter creator
|
|
11598
|
+
* @export
|
|
11599
|
+
*/
|
|
11600
|
+
export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11601
|
+
/**
|
|
11602
|
+
*
|
|
11603
|
+
* @param {UpdateClubGeneralSettingsRequest} updateClubGeneralSettingsRequest
|
|
11604
|
+
* @param {*} [options] Override http request option.
|
|
11605
|
+
* @throws {RequiredError}
|
|
11606
|
+
*/
|
|
11607
|
+
updateClubGeneralSettings: (updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11608
|
+
/**
|
|
11609
|
+
*
|
|
11610
|
+
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
11611
|
+
* @param {*} [options] Override http request option.
|
|
11612
|
+
* @throws {RequiredError}
|
|
11613
|
+
*/
|
|
11614
|
+
updateHoursSettings: (updateClubHoursSettingsRequest: UpdateClubHoursSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11615
|
+
/**
|
|
11616
|
+
*
|
|
11617
|
+
* @param {ClubPresentationSettingsResponse} clubPresentationSettingsResponse
|
|
11618
|
+
* @param {*} [options] Override http request option.
|
|
11619
|
+
* @throws {RequiredError}
|
|
11620
|
+
*/
|
|
11621
|
+
updatePresentationSettings: (clubPresentationSettingsResponse: ClubPresentationSettingsResponse, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11622
|
+
/**
|
|
11623
|
+
*
|
|
11624
|
+
* @param {UpdateClubReservationSettingsRequest} updateClubReservationSettingsRequest
|
|
11625
|
+
* @param {*} [options] Override http request option.
|
|
11626
|
+
* @throws {RequiredError}
|
|
11627
|
+
*/
|
|
11628
|
+
updateReservationSettings: (updateClubReservationSettingsRequest: UpdateClubReservationSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11629
|
+
};
|
|
11630
|
+
/**
|
|
11631
|
+
* ClubSettingsManagerApi - functional programming interface
|
|
11632
|
+
* @export
|
|
11633
|
+
*/
|
|
11634
|
+
export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) => {
|
|
11635
|
+
/**
|
|
11636
|
+
*
|
|
11637
|
+
* @param {UpdateClubGeneralSettingsRequest} updateClubGeneralSettingsRequest
|
|
11638
|
+
* @param {*} [options] Override http request option.
|
|
11639
|
+
* @throws {RequiredError}
|
|
11640
|
+
*/
|
|
11641
|
+
updateClubGeneralSettings(updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubGeneralSettingsResponse>>;
|
|
11642
|
+
/**
|
|
11643
|
+
*
|
|
11644
|
+
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
11645
|
+
* @param {*} [options] Override http request option.
|
|
11646
|
+
* @throws {RequiredError}
|
|
11647
|
+
*/
|
|
11648
|
+
updateHoursSettings(updateClubHoursSettingsRequest: UpdateClubHoursSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
11649
|
+
/**
|
|
11650
|
+
*
|
|
11651
|
+
* @param {ClubPresentationSettingsResponse} clubPresentationSettingsResponse
|
|
11652
|
+
* @param {*} [options] Override http request option.
|
|
11653
|
+
* @throws {RequiredError}
|
|
11654
|
+
*/
|
|
11655
|
+
updatePresentationSettings(clubPresentationSettingsResponse: ClubPresentationSettingsResponse, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
11656
|
+
/**
|
|
11657
|
+
*
|
|
11658
|
+
* @param {UpdateClubReservationSettingsRequest} updateClubReservationSettingsRequest
|
|
11659
|
+
* @param {*} [options] Override http request option.
|
|
11660
|
+
* @throws {RequiredError}
|
|
11661
|
+
*/
|
|
11662
|
+
updateReservationSettings(updateClubReservationSettingsRequest: UpdateClubReservationSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubReservationSettingsResponse>>;
|
|
11663
|
+
};
|
|
11664
|
+
/**
|
|
11665
|
+
* ClubSettingsManagerApi - factory interface
|
|
11666
|
+
* @export
|
|
11667
|
+
*/
|
|
11668
|
+
export declare const ClubSettingsManagerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11669
|
+
/**
|
|
11670
|
+
*
|
|
11671
|
+
* @param {ClubSettingsManagerApiUpdateClubGeneralSettingsRequest} requestParameters Request parameters.
|
|
10449
11672
|
* @param {*} [options] Override http request option.
|
|
10450
11673
|
* @throws {RequiredError}
|
|
10451
11674
|
*/
|
|
10452
|
-
|
|
11675
|
+
updateClubGeneralSettings(requestParameters: ClubSettingsManagerApiUpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubGeneralSettingsResponse>;
|
|
10453
11676
|
/**
|
|
10454
|
-
*
|
|
10455
|
-
* @param {
|
|
11677
|
+
*
|
|
11678
|
+
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|
|
10456
11679
|
* @param {*} [options] Override http request option.
|
|
10457
11680
|
* @throws {RequiredError}
|
|
10458
11681
|
*/
|
|
10459
|
-
|
|
11682
|
+
updateHoursSettings(requestParameters: ClubSettingsManagerApiUpdateHoursSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
10460
11683
|
/**
|
|
10461
11684
|
*
|
|
11685
|
+
* @param {ClubSettingsManagerApiUpdatePresentationSettingsRequest} requestParameters Request parameters.
|
|
10462
11686
|
* @param {*} [options] Override http request option.
|
|
10463
11687
|
* @throws {RequiredError}
|
|
10464
11688
|
*/
|
|
10465
|
-
|
|
11689
|
+
updatePresentationSettings(requestParameters: ClubSettingsManagerApiUpdatePresentationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
11690
|
+
/**
|
|
11691
|
+
*
|
|
11692
|
+
* @param {ClubSettingsManagerApiUpdateReservationSettingsRequest} requestParameters Request parameters.
|
|
11693
|
+
* @param {*} [options] Override http request option.
|
|
11694
|
+
* @throws {RequiredError}
|
|
11695
|
+
*/
|
|
11696
|
+
updateReservationSettings(requestParameters: ClubSettingsManagerApiUpdateReservationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubReservationSettingsResponse>;
|
|
10466
11697
|
};
|
|
10467
11698
|
/**
|
|
10468
|
-
* Request parameters for
|
|
11699
|
+
* Request parameters for updateClubGeneralSettings operation in ClubSettingsManagerApi.
|
|
10469
11700
|
* @export
|
|
10470
|
-
* @interface
|
|
11701
|
+
* @interface ClubSettingsManagerApiUpdateClubGeneralSettingsRequest
|
|
10471
11702
|
*/
|
|
10472
|
-
export interface
|
|
11703
|
+
export interface ClubSettingsManagerApiUpdateClubGeneralSettingsRequest {
|
|
10473
11704
|
/**
|
|
10474
11705
|
*
|
|
10475
|
-
* @type {
|
|
10476
|
-
* @memberof
|
|
11706
|
+
* @type {UpdateClubGeneralSettingsRequest}
|
|
11707
|
+
* @memberof ClubSettingsManagerApiUpdateClubGeneralSettings
|
|
10477
11708
|
*/
|
|
10478
|
-
readonly
|
|
11709
|
+
readonly updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest;
|
|
10479
11710
|
}
|
|
10480
11711
|
/**
|
|
10481
|
-
*
|
|
11712
|
+
* Request parameters for updateHoursSettings operation in ClubSettingsManagerApi.
|
|
10482
11713
|
* @export
|
|
10483
|
-
* @
|
|
10484
|
-
* @extends {BaseAPI}
|
|
11714
|
+
* @interface ClubSettingsManagerApiUpdateHoursSettingsRequest
|
|
10485
11715
|
*/
|
|
10486
|
-
export
|
|
11716
|
+
export interface ClubSettingsManagerApiUpdateHoursSettingsRequest {
|
|
10487
11717
|
/**
|
|
10488
|
-
*
|
|
10489
|
-
* @
|
|
10490
|
-
* @
|
|
10491
|
-
* @memberof ClubRolesStaffApi
|
|
11718
|
+
*
|
|
11719
|
+
* @type {UpdateClubHoursSettingsRequest}
|
|
11720
|
+
* @memberof ClubSettingsManagerApiUpdateHoursSettings
|
|
10492
11721
|
*/
|
|
10493
|
-
|
|
11722
|
+
readonly updateClubHoursSettingsRequest: UpdateClubHoursSettingsRequest;
|
|
11723
|
+
}
|
|
11724
|
+
/**
|
|
11725
|
+
* Request parameters for updatePresentationSettings operation in ClubSettingsManagerApi.
|
|
11726
|
+
* @export
|
|
11727
|
+
* @interface ClubSettingsManagerApiUpdatePresentationSettingsRequest
|
|
11728
|
+
*/
|
|
11729
|
+
export interface ClubSettingsManagerApiUpdatePresentationSettingsRequest {
|
|
10494
11730
|
/**
|
|
10495
|
-
*
|
|
10496
|
-
* @
|
|
10497
|
-
* @
|
|
10498
|
-
* @throws {RequiredError}
|
|
10499
|
-
* @memberof ClubRolesStaffApi
|
|
11731
|
+
*
|
|
11732
|
+
* @type {ClubPresentationSettingsResponse}
|
|
11733
|
+
* @memberof ClubSettingsManagerApiUpdatePresentationSettings
|
|
10500
11734
|
*/
|
|
10501
|
-
|
|
11735
|
+
readonly clubPresentationSettingsResponse: ClubPresentationSettingsResponse;
|
|
11736
|
+
}
|
|
11737
|
+
/**
|
|
11738
|
+
* Request parameters for updateReservationSettings operation in ClubSettingsManagerApi.
|
|
11739
|
+
* @export
|
|
11740
|
+
* @interface ClubSettingsManagerApiUpdateReservationSettingsRequest
|
|
11741
|
+
*/
|
|
11742
|
+
export interface ClubSettingsManagerApiUpdateReservationSettingsRequest {
|
|
10502
11743
|
/**
|
|
10503
11744
|
*
|
|
10504
|
-
* @
|
|
10505
|
-
* @
|
|
10506
|
-
* @memberof ClubRolesStaffApi
|
|
11745
|
+
* @type {UpdateClubReservationSettingsRequest}
|
|
11746
|
+
* @memberof ClubSettingsManagerApiUpdateReservationSettings
|
|
10507
11747
|
*/
|
|
10508
|
-
|
|
11748
|
+
readonly updateClubReservationSettingsRequest: UpdateClubReservationSettingsRequest;
|
|
10509
11749
|
}
|
|
10510
11750
|
/**
|
|
10511
|
-
* ClubSettingsManagerApi -
|
|
11751
|
+
* ClubSettingsManagerApi - object-oriented interface
|
|
10512
11752
|
* @export
|
|
11753
|
+
* @class ClubSettingsManagerApi
|
|
11754
|
+
* @extends {BaseAPI}
|
|
10513
11755
|
*/
|
|
10514
|
-
export declare
|
|
11756
|
+
export declare class ClubSettingsManagerApi extends BaseAPI {
|
|
10515
11757
|
/**
|
|
10516
|
-
*
|
|
10517
|
-
* @param {
|
|
10518
|
-
* @param {CreateClubSettingsRequest} createClubSettingsRequest
|
|
11758
|
+
*
|
|
11759
|
+
* @param {ClubSettingsManagerApiUpdateClubGeneralSettingsRequest} requestParameters Request parameters.
|
|
10519
11760
|
* @param {*} [options] Override http request option.
|
|
10520
11761
|
* @throws {RequiredError}
|
|
11762
|
+
* @memberof ClubSettingsManagerApi
|
|
10521
11763
|
*/
|
|
10522
|
-
|
|
11764
|
+
updateClubGeneralSettings(requestParameters: ClubSettingsManagerApiUpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubGeneralSettingsResponse, any, {}>>;
|
|
10523
11765
|
/**
|
|
10524
|
-
*
|
|
11766
|
+
*
|
|
11767
|
+
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|
|
10525
11768
|
* @param {*} [options] Override http request option.
|
|
10526
11769
|
* @throws {RequiredError}
|
|
11770
|
+
* @memberof ClubSettingsManagerApi
|
|
10527
11771
|
*/
|
|
10528
|
-
|
|
11772
|
+
updateHoursSettings(requestParameters: ClubSettingsManagerApiUpdateHoursSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
10529
11773
|
/**
|
|
10530
|
-
*
|
|
11774
|
+
*
|
|
11775
|
+
* @param {ClubSettingsManagerApiUpdatePresentationSettingsRequest} requestParameters Request parameters.
|
|
10531
11776
|
* @param {*} [options] Override http request option.
|
|
10532
11777
|
* @throws {RequiredError}
|
|
11778
|
+
* @memberof ClubSettingsManagerApi
|
|
10533
11779
|
*/
|
|
10534
|
-
|
|
11780
|
+
updatePresentationSettings(requestParameters: ClubSettingsManagerApiUpdatePresentationSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
10535
11781
|
/**
|
|
10536
|
-
*
|
|
10537
|
-
* @param {
|
|
11782
|
+
*
|
|
11783
|
+
* @param {ClubSettingsManagerApiUpdateReservationSettingsRequest} requestParameters Request parameters.
|
|
10538
11784
|
* @param {*} [options] Override http request option.
|
|
10539
11785
|
* @throws {RequiredError}
|
|
11786
|
+
* @memberof ClubSettingsManagerApi
|
|
10540
11787
|
*/
|
|
10541
|
-
|
|
10542
|
-
}
|
|
11788
|
+
updateReservationSettings(requestParameters: ClubSettingsManagerApiUpdateReservationSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubReservationSettingsResponse, any, {}>>;
|
|
11789
|
+
}
|
|
10543
11790
|
/**
|
|
10544
|
-
*
|
|
11791
|
+
* ClubSettingsStaffApi - axios parameter creator
|
|
10545
11792
|
* @export
|
|
10546
11793
|
*/
|
|
10547
|
-
export declare const
|
|
11794
|
+
export declare const ClubSettingsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
10548
11795
|
/**
|
|
10549
|
-
*
|
|
10550
|
-
* @param {string} clubId
|
|
10551
|
-
* @param {CreateClubSettingsRequest} createClubSettingsRequest
|
|
11796
|
+
*
|
|
10552
11797
|
* @param {*} [options] Override http request option.
|
|
10553
11798
|
* @throws {RequiredError}
|
|
10554
11799
|
*/
|
|
10555
|
-
|
|
11800
|
+
getClubGeneralSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10556
11801
|
/**
|
|
10557
|
-
*
|
|
11802
|
+
*
|
|
10558
11803
|
* @param {*} [options] Override http request option.
|
|
10559
11804
|
* @throws {RequiredError}
|
|
10560
11805
|
*/
|
|
10561
|
-
|
|
11806
|
+
getHoursSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10562
11807
|
/**
|
|
10563
|
-
*
|
|
11808
|
+
*
|
|
10564
11809
|
* @param {*} [options] Override http request option.
|
|
10565
11810
|
* @throws {RequiredError}
|
|
10566
11811
|
*/
|
|
10567
|
-
|
|
11812
|
+
getPresentationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10568
11813
|
/**
|
|
10569
|
-
*
|
|
10570
|
-
* @param {UpdateClubSettingsRequest} updateClubSettingsRequest
|
|
11814
|
+
*
|
|
10571
11815
|
* @param {*} [options] Override http request option.
|
|
10572
11816
|
* @throws {RequiredError}
|
|
10573
11817
|
*/
|
|
10574
|
-
|
|
11818
|
+
getReservationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10575
11819
|
};
|
|
10576
11820
|
/**
|
|
10577
|
-
*
|
|
11821
|
+
* ClubSettingsStaffApi - functional programming interface
|
|
10578
11822
|
* @export
|
|
10579
11823
|
*/
|
|
10580
|
-
export declare const
|
|
11824
|
+
export declare const ClubSettingsStaffApiFp: (configuration?: Configuration) => {
|
|
10581
11825
|
/**
|
|
10582
|
-
*
|
|
10583
|
-
* @param {ClubSettingsManagerApiCreateClubSettingsRequest} requestParameters Request parameters.
|
|
11826
|
+
*
|
|
10584
11827
|
* @param {*} [options] Override http request option.
|
|
10585
11828
|
* @throws {RequiredError}
|
|
10586
11829
|
*/
|
|
10587
|
-
|
|
11830
|
+
getClubGeneralSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubGeneralSettingsResponse>>;
|
|
10588
11831
|
/**
|
|
10589
|
-
*
|
|
11832
|
+
*
|
|
10590
11833
|
* @param {*} [options] Override http request option.
|
|
10591
11834
|
* @throws {RequiredError}
|
|
10592
11835
|
*/
|
|
10593
|
-
|
|
11836
|
+
getHoursSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
10594
11837
|
/**
|
|
10595
|
-
*
|
|
11838
|
+
*
|
|
10596
11839
|
* @param {*} [options] Override http request option.
|
|
10597
11840
|
* @throws {RequiredError}
|
|
10598
11841
|
*/
|
|
10599
|
-
|
|
11842
|
+
getPresentationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
10600
11843
|
/**
|
|
10601
|
-
*
|
|
10602
|
-
* @param {ClubSettingsManagerApiUpdateClubSettingsRequest} requestParameters Request parameters.
|
|
11844
|
+
*
|
|
10603
11845
|
* @param {*} [options] Override http request option.
|
|
10604
11846
|
* @throws {RequiredError}
|
|
10605
11847
|
*/
|
|
10606
|
-
|
|
11848
|
+
getReservationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubReservationSettingsResponse>>;
|
|
10607
11849
|
};
|
|
10608
11850
|
/**
|
|
10609
|
-
*
|
|
11851
|
+
* ClubSettingsStaffApi - factory interface
|
|
10610
11852
|
* @export
|
|
10611
|
-
* @interface ClubSettingsManagerApiCreateClubSettingsRequest
|
|
10612
11853
|
*/
|
|
10613
|
-
export
|
|
11854
|
+
export declare const ClubSettingsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10614
11855
|
/**
|
|
10615
11856
|
*
|
|
10616
|
-
* @
|
|
10617
|
-
* @
|
|
11857
|
+
* @param {*} [options] Override http request option.
|
|
11858
|
+
* @throws {RequiredError}
|
|
10618
11859
|
*/
|
|
10619
|
-
|
|
11860
|
+
getClubGeneralSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubGeneralSettingsResponse>;
|
|
10620
11861
|
/**
|
|
10621
11862
|
*
|
|
10622
|
-
* @
|
|
10623
|
-
* @
|
|
11863
|
+
* @param {*} [options] Override http request option.
|
|
11864
|
+
* @throws {RequiredError}
|
|
10624
11865
|
*/
|
|
10625
|
-
|
|
10626
|
-
}
|
|
10627
|
-
/**
|
|
10628
|
-
* Request parameters for updateClubSettings operation in ClubSettingsManagerApi.
|
|
10629
|
-
* @export
|
|
10630
|
-
* @interface ClubSettingsManagerApiUpdateClubSettingsRequest
|
|
10631
|
-
*/
|
|
10632
|
-
export interface ClubSettingsManagerApiUpdateClubSettingsRequest {
|
|
11866
|
+
getHoursSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
10633
11867
|
/**
|
|
10634
11868
|
*
|
|
10635
|
-
* @
|
|
10636
|
-
* @
|
|
11869
|
+
* @param {*} [options] Override http request option.
|
|
11870
|
+
* @throws {RequiredError}
|
|
10637
11871
|
*/
|
|
10638
|
-
|
|
10639
|
-
|
|
11872
|
+
getPresentationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
11873
|
+
/**
|
|
11874
|
+
*
|
|
11875
|
+
* @param {*} [options] Override http request option.
|
|
11876
|
+
* @throws {RequiredError}
|
|
11877
|
+
*/
|
|
11878
|
+
getReservationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubReservationSettingsResponse>;
|
|
11879
|
+
};
|
|
10640
11880
|
/**
|
|
10641
|
-
*
|
|
11881
|
+
* ClubSettingsStaffApi - object-oriented interface
|
|
10642
11882
|
* @export
|
|
10643
|
-
* @class
|
|
11883
|
+
* @class ClubSettingsStaffApi
|
|
10644
11884
|
* @extends {BaseAPI}
|
|
10645
11885
|
*/
|
|
10646
|
-
export declare class
|
|
11886
|
+
export declare class ClubSettingsStaffApi extends BaseAPI {
|
|
10647
11887
|
/**
|
|
10648
|
-
*
|
|
10649
|
-
* @param {ClubSettingsManagerApiCreateClubSettingsRequest} requestParameters Request parameters.
|
|
11888
|
+
*
|
|
10650
11889
|
* @param {*} [options] Override http request option.
|
|
10651
11890
|
* @throws {RequiredError}
|
|
10652
|
-
* @memberof
|
|
11891
|
+
* @memberof ClubSettingsStaffApi
|
|
10653
11892
|
*/
|
|
10654
|
-
|
|
11893
|
+
getClubGeneralSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubGeneralSettingsResponse, any, {}>>;
|
|
10655
11894
|
/**
|
|
10656
|
-
*
|
|
11895
|
+
*
|
|
10657
11896
|
* @param {*} [options] Override http request option.
|
|
10658
11897
|
* @throws {RequiredError}
|
|
10659
|
-
* @memberof
|
|
11898
|
+
* @memberof ClubSettingsStaffApi
|
|
10660
11899
|
*/
|
|
10661
|
-
|
|
11900
|
+
getHoursSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
10662
11901
|
/**
|
|
10663
|
-
*
|
|
11902
|
+
*
|
|
10664
11903
|
* @param {*} [options] Override http request option.
|
|
10665
11904
|
* @throws {RequiredError}
|
|
10666
|
-
* @memberof
|
|
11905
|
+
* @memberof ClubSettingsStaffApi
|
|
10667
11906
|
*/
|
|
10668
|
-
|
|
11907
|
+
getPresentationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
10669
11908
|
/**
|
|
10670
|
-
*
|
|
10671
|
-
* @param {ClubSettingsManagerApiUpdateClubSettingsRequest} requestParameters Request parameters.
|
|
11909
|
+
*
|
|
10672
11910
|
* @param {*} [options] Override http request option.
|
|
10673
11911
|
* @throws {RequiredError}
|
|
10674
|
-
* @memberof
|
|
11912
|
+
* @memberof ClubSettingsStaffApi
|
|
10675
11913
|
*/
|
|
10676
|
-
|
|
11914
|
+
getReservationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubReservationSettingsResponse, any, {}>>;
|
|
10677
11915
|
}
|
|
10678
11916
|
/**
|
|
10679
11917
|
* ClubsApi - axios parameter creator
|
|
@@ -11181,14 +12419,6 @@ export declare const ClubsManagerApiAxiosParamCreator: (configuration?: Configur
|
|
|
11181
12419
|
* @throws {RequiredError}
|
|
11182
12420
|
*/
|
|
11183
12421
|
addClubMember: (addClubMemberRequest: AddClubMemberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11184
|
-
/**
|
|
11185
|
-
*
|
|
11186
|
-
* @param {string} userId
|
|
11187
|
-
* @param {AddCreditsToCustomerRequest} addCreditsToCustomerRequest
|
|
11188
|
-
* @param {*} [options] Override http request option.
|
|
11189
|
-
* @throws {RequiredError}
|
|
11190
|
-
*/
|
|
11191
|
-
addCreditsToCustomer: (userId: string, addCreditsToCustomerRequest: AddCreditsToCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11192
12422
|
/**
|
|
11193
12423
|
*
|
|
11194
12424
|
* @param {string} priceId
|
|
@@ -11295,6 +12525,21 @@ export declare const ClubsManagerApiAxiosParamCreator: (configuration?: Configur
|
|
|
11295
12525
|
* @throws {RequiredError}
|
|
11296
12526
|
*/
|
|
11297
12527
|
updateClubInfos: (body: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12528
|
+
/**
|
|
12529
|
+
* Met à jour un membre d\'un club
|
|
12530
|
+
* @param {string} userId
|
|
12531
|
+
* @param {UpdateClubMemberRequest} updateClubMemberRequest
|
|
12532
|
+
* @param {*} [options] Override http request option.
|
|
12533
|
+
* @throws {RequiredError}
|
|
12534
|
+
*/
|
|
12535
|
+
updateClubMember: (userId: string, updateClubMemberRequest: UpdateClubMemberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12536
|
+
/**
|
|
12537
|
+
*
|
|
12538
|
+
* @param {UpdateClubPresentationSettingsRequest} updateClubPresentationSettingsRequest
|
|
12539
|
+
* @param {*} [options] Override http request option.
|
|
12540
|
+
* @throws {RequiredError}
|
|
12541
|
+
*/
|
|
12542
|
+
updateClubPresentationSettings: (updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11298
12543
|
/**
|
|
11299
12544
|
*
|
|
11300
12545
|
* @param {string} courtId
|
|
@@ -11324,14 +12569,6 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
11324
12569
|
* @throws {RequiredError}
|
|
11325
12570
|
*/
|
|
11326
12571
|
addClubMember(addClubMemberRequest: AddClubMemberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddClubMember201Response>>;
|
|
11327
|
-
/**
|
|
11328
|
-
*
|
|
11329
|
-
* @param {string} userId
|
|
11330
|
-
* @param {AddCreditsToCustomerRequest} addCreditsToCustomerRequest
|
|
11331
|
-
* @param {*} [options] Override http request option.
|
|
11332
|
-
* @throws {RequiredError}
|
|
11333
|
-
*/
|
|
11334
|
-
addCreditsToCustomer(userId: string, addCreditsToCustomerRequest: AddCreditsToCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddCreditsToCustomer200Response>>;
|
|
11335
12572
|
/**
|
|
11336
12573
|
*
|
|
11337
12574
|
* @param {string} priceId
|
|
@@ -11438,6 +12675,21 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
11438
12675
|
* @throws {RequiredError}
|
|
11439
12676
|
*/
|
|
11440
12677
|
updateClubInfos(body: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
12678
|
+
/**
|
|
12679
|
+
* Met à jour un membre d\'un club
|
|
12680
|
+
* @param {string} userId
|
|
12681
|
+
* @param {UpdateClubMemberRequest} updateClubMemberRequest
|
|
12682
|
+
* @param {*} [options] Override http request option.
|
|
12683
|
+
* @throws {RequiredError}
|
|
12684
|
+
*/
|
|
12685
|
+
updateClubMember(userId: string, updateClubMemberRequest: UpdateClubMemberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddClubMember201Response>>;
|
|
12686
|
+
/**
|
|
12687
|
+
*
|
|
12688
|
+
* @param {UpdateClubPresentationSettingsRequest} updateClubPresentationSettingsRequest
|
|
12689
|
+
* @param {*} [options] Override http request option.
|
|
12690
|
+
* @throws {RequiredError}
|
|
12691
|
+
*/
|
|
12692
|
+
updateClubPresentationSettings(updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
11441
12693
|
/**
|
|
11442
12694
|
*
|
|
11443
12695
|
* @param {string} courtId
|
|
@@ -11467,13 +12719,6 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
11467
12719
|
* @throws {RequiredError}
|
|
11468
12720
|
*/
|
|
11469
12721
|
addClubMember(requestParameters: ClubsManagerApiAddClubMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddClubMember201Response>;
|
|
11470
|
-
/**
|
|
11471
|
-
*
|
|
11472
|
-
* @param {ClubsManagerApiAddCreditsToCustomerRequest} requestParameters Request parameters.
|
|
11473
|
-
* @param {*} [options] Override http request option.
|
|
11474
|
-
* @throws {RequiredError}
|
|
11475
|
-
*/
|
|
11476
|
-
addCreditsToCustomer(requestParameters: ClubsManagerApiAddCreditsToCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddCreditsToCustomer200Response>;
|
|
11477
12722
|
/**
|
|
11478
12723
|
*
|
|
11479
12724
|
* @param {ClubsManagerApiArchivePriceForSubscriptionPlanRequest} requestParameters Request parameters.
|
|
@@ -11578,6 +12823,20 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
11578
12823
|
* @throws {RequiredError}
|
|
11579
12824
|
*/
|
|
11580
12825
|
updateClubInfos(requestParameters: ClubsManagerApiUpdateClubInfosRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
12826
|
+
/**
|
|
12827
|
+
* Met à jour un membre d\'un club
|
|
12828
|
+
* @param {ClubsManagerApiUpdateClubMemberRequest} requestParameters Request parameters.
|
|
12829
|
+
* @param {*} [options] Override http request option.
|
|
12830
|
+
* @throws {RequiredError}
|
|
12831
|
+
*/
|
|
12832
|
+
updateClubMember(requestParameters: ClubsManagerApiUpdateClubMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddClubMember201Response>;
|
|
12833
|
+
/**
|
|
12834
|
+
*
|
|
12835
|
+
* @param {ClubsManagerApiUpdateClubPresentationSettingsRequest} requestParameters Request parameters.
|
|
12836
|
+
* @param {*} [options] Override http request option.
|
|
12837
|
+
* @throws {RequiredError}
|
|
12838
|
+
*/
|
|
12839
|
+
updateClubPresentationSettings(requestParameters: ClubsManagerApiUpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
11581
12840
|
/**
|
|
11582
12841
|
*
|
|
11583
12842
|
* @param {ClubsManagerApiUpdateCourtRequest} requestParameters Request parameters.
|
|
@@ -11606,25 +12865,6 @@ export interface ClubsManagerApiAddClubMemberRequest {
|
|
|
11606
12865
|
*/
|
|
11607
12866
|
readonly addClubMemberRequest: AddClubMemberRequest;
|
|
11608
12867
|
}
|
|
11609
|
-
/**
|
|
11610
|
-
* Request parameters for addCreditsToCustomer operation in ClubsManagerApi.
|
|
11611
|
-
* @export
|
|
11612
|
-
* @interface ClubsManagerApiAddCreditsToCustomerRequest
|
|
11613
|
-
*/
|
|
11614
|
-
export interface ClubsManagerApiAddCreditsToCustomerRequest {
|
|
11615
|
-
/**
|
|
11616
|
-
*
|
|
11617
|
-
* @type {string}
|
|
11618
|
-
* @memberof ClubsManagerApiAddCreditsToCustomer
|
|
11619
|
-
*/
|
|
11620
|
-
readonly userId: string;
|
|
11621
|
-
/**
|
|
11622
|
-
*
|
|
11623
|
-
* @type {AddCreditsToCustomerRequest}
|
|
11624
|
-
* @memberof ClubsManagerApiAddCreditsToCustomer
|
|
11625
|
-
*/
|
|
11626
|
-
readonly addCreditsToCustomerRequest: AddCreditsToCustomerRequest;
|
|
11627
|
-
}
|
|
11628
12868
|
/**
|
|
11629
12869
|
* Request parameters for archivePriceForSubscriptionPlan operation in ClubsManagerApi.
|
|
11630
12870
|
* @export
|
|
@@ -11819,6 +13059,38 @@ export interface ClubsManagerApiUpdateClubInfosRequest {
|
|
|
11819
13059
|
*/
|
|
11820
13060
|
readonly body: any;
|
|
11821
13061
|
}
|
|
13062
|
+
/**
|
|
13063
|
+
* Request parameters for updateClubMember operation in ClubsManagerApi.
|
|
13064
|
+
* @export
|
|
13065
|
+
* @interface ClubsManagerApiUpdateClubMemberRequest
|
|
13066
|
+
*/
|
|
13067
|
+
export interface ClubsManagerApiUpdateClubMemberRequest {
|
|
13068
|
+
/**
|
|
13069
|
+
*
|
|
13070
|
+
* @type {string}
|
|
13071
|
+
* @memberof ClubsManagerApiUpdateClubMember
|
|
13072
|
+
*/
|
|
13073
|
+
readonly userId: string;
|
|
13074
|
+
/**
|
|
13075
|
+
*
|
|
13076
|
+
* @type {UpdateClubMemberRequest}
|
|
13077
|
+
* @memberof ClubsManagerApiUpdateClubMember
|
|
13078
|
+
*/
|
|
13079
|
+
readonly updateClubMemberRequest: UpdateClubMemberRequest;
|
|
13080
|
+
}
|
|
13081
|
+
/**
|
|
13082
|
+
* Request parameters for updateClubPresentationSettings operation in ClubsManagerApi.
|
|
13083
|
+
* @export
|
|
13084
|
+
* @interface ClubsManagerApiUpdateClubPresentationSettingsRequest
|
|
13085
|
+
*/
|
|
13086
|
+
export interface ClubsManagerApiUpdateClubPresentationSettingsRequest {
|
|
13087
|
+
/**
|
|
13088
|
+
*
|
|
13089
|
+
* @type {UpdateClubPresentationSettingsRequest}
|
|
13090
|
+
* @memberof ClubsManagerApiUpdateClubPresentationSettings
|
|
13091
|
+
*/
|
|
13092
|
+
readonly updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest;
|
|
13093
|
+
}
|
|
11822
13094
|
/**
|
|
11823
13095
|
* Request parameters for updateCourt operation in ClubsManagerApi.
|
|
11824
13096
|
* @export
|
|
@@ -11872,14 +13144,6 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
11872
13144
|
* @memberof ClubsManagerApi
|
|
11873
13145
|
*/
|
|
11874
13146
|
addClubMember(requestParameters: ClubsManagerApiAddClubMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddClubMember201Response, any, {}>>;
|
|
11875
|
-
/**
|
|
11876
|
-
*
|
|
11877
|
-
* @param {ClubsManagerApiAddCreditsToCustomerRequest} requestParameters Request parameters.
|
|
11878
|
-
* @param {*} [options] Override http request option.
|
|
11879
|
-
* @throws {RequiredError}
|
|
11880
|
-
* @memberof ClubsManagerApi
|
|
11881
|
-
*/
|
|
11882
|
-
addCreditsToCustomer(requestParameters: ClubsManagerApiAddCreditsToCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddCreditsToCustomer200Response, any, {}>>;
|
|
11883
13147
|
/**
|
|
11884
13148
|
*
|
|
11885
13149
|
* @param {ClubsManagerApiArchivePriceForSubscriptionPlanRequest} requestParameters Request parameters.
|
|
@@ -11999,6 +13263,22 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
11999
13263
|
* @memberof ClubsManagerApi
|
|
12000
13264
|
*/
|
|
12001
13265
|
updateClubInfos(requestParameters: ClubsManagerApiUpdateClubInfosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
13266
|
+
/**
|
|
13267
|
+
* Met à jour un membre d\'un club
|
|
13268
|
+
* @param {ClubsManagerApiUpdateClubMemberRequest} requestParameters Request parameters.
|
|
13269
|
+
* @param {*} [options] Override http request option.
|
|
13270
|
+
* @throws {RequiredError}
|
|
13271
|
+
* @memberof ClubsManagerApi
|
|
13272
|
+
*/
|
|
13273
|
+
updateClubMember(requestParameters: ClubsManagerApiUpdateClubMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddClubMember201Response, any, {}>>;
|
|
13274
|
+
/**
|
|
13275
|
+
*
|
|
13276
|
+
* @param {ClubsManagerApiUpdateClubPresentationSettingsRequest} requestParameters Request parameters.
|
|
13277
|
+
* @param {*} [options] Override http request option.
|
|
13278
|
+
* @throws {RequiredError}
|
|
13279
|
+
* @memberof ClubsManagerApi
|
|
13280
|
+
*/
|
|
13281
|
+
updateClubPresentationSettings(requestParameters: ClubsManagerApiUpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
12002
13282
|
/**
|
|
12003
13283
|
*
|
|
12004
13284
|
* @param {ClubsManagerApiUpdateCourtRequest} requestParameters Request parameters.
|
|
@@ -12039,6 +13319,12 @@ export declare const ClubsStaffApiAxiosParamCreator: (configuration?: Configurat
|
|
|
12039
13319
|
* @throws {RequiredError}
|
|
12040
13320
|
*/
|
|
12041
13321
|
getClubMembers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13322
|
+
/**
|
|
13323
|
+
*
|
|
13324
|
+
* @param {*} [options] Override http request option.
|
|
13325
|
+
* @throws {RequiredError}
|
|
13326
|
+
*/
|
|
13327
|
+
getClubPresentationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12042
13328
|
/**
|
|
12043
13329
|
* Récupère les rôles d\'un club
|
|
12044
13330
|
* @param {*} [options] Override http request option.
|
|
@@ -12088,6 +13374,12 @@ export declare const ClubsStaffApiFp: (configuration?: Configuration) => {
|
|
|
12088
13374
|
* @throws {RequiredError}
|
|
12089
13375
|
*/
|
|
12090
13376
|
getClubMembers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClubMembers200Response>>;
|
|
13377
|
+
/**
|
|
13378
|
+
*
|
|
13379
|
+
* @param {*} [options] Override http request option.
|
|
13380
|
+
* @throws {RequiredError}
|
|
13381
|
+
*/
|
|
13382
|
+
getClubPresentationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
12091
13383
|
/**
|
|
12092
13384
|
* Récupère les rôles d\'un club
|
|
12093
13385
|
* @param {*} [options] Override http request option.
|
|
@@ -12137,6 +13429,12 @@ export declare const ClubsStaffApiFactory: (configuration?: Configuration, baseP
|
|
|
12137
13429
|
* @throws {RequiredError}
|
|
12138
13430
|
*/
|
|
12139
13431
|
getClubMembers(options?: RawAxiosRequestConfig): AxiosPromise<GetClubMembers200Response>;
|
|
13432
|
+
/**
|
|
13433
|
+
*
|
|
13434
|
+
* @param {*} [options] Override http request option.
|
|
13435
|
+
* @throws {RequiredError}
|
|
13436
|
+
*/
|
|
13437
|
+
getClubPresentationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
12140
13438
|
/**
|
|
12141
13439
|
* Récupère les rôles d\'un club
|
|
12142
13440
|
* @param {*} [options] Override http request option.
|
|
@@ -12204,6 +13502,13 @@ export declare class ClubsStaffApi extends BaseAPI {
|
|
|
12204
13502
|
* @memberof ClubsStaffApi
|
|
12205
13503
|
*/
|
|
12206
13504
|
getClubMembers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClubMembers200Response, any, {}>>;
|
|
13505
|
+
/**
|
|
13506
|
+
*
|
|
13507
|
+
* @param {*} [options] Override http request option.
|
|
13508
|
+
* @throws {RequiredError}
|
|
13509
|
+
* @memberof ClubsStaffApi
|
|
13510
|
+
*/
|
|
13511
|
+
getClubPresentationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
12207
13512
|
/**
|
|
12208
13513
|
* Récupère les rôles d\'un club
|
|
12209
13514
|
* @param {*} [options] Override http request option.
|
|
@@ -13051,57 +14356,6 @@ export declare class SportsPublicApi extends BaseAPI {
|
|
|
13051
14356
|
*/
|
|
13052
14357
|
getVerifiedSports(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportResponse[], any, {}>>;
|
|
13053
14358
|
}
|
|
13054
|
-
/**
|
|
13055
|
-
* SportsStaffApi - axios parameter creator
|
|
13056
|
-
* @export
|
|
13057
|
-
*/
|
|
13058
|
-
export declare const SportsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
13059
|
-
/**
|
|
13060
|
-
* Récupère la liste des sports (vérifiés + créés par le club de l\'utilisateur)
|
|
13061
|
-
* @param {*} [options] Override http request option.
|
|
13062
|
-
* @throws {RequiredError}
|
|
13063
|
-
*/
|
|
13064
|
-
getAllSports: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13065
|
-
};
|
|
13066
|
-
/**
|
|
13067
|
-
* SportsStaffApi - functional programming interface
|
|
13068
|
-
* @export
|
|
13069
|
-
*/
|
|
13070
|
-
export declare const SportsStaffApiFp: (configuration?: Configuration) => {
|
|
13071
|
-
/**
|
|
13072
|
-
* Récupère la liste des sports (vérifiés + créés par le club de l\'utilisateur)
|
|
13073
|
-
* @param {*} [options] Override http request option.
|
|
13074
|
-
* @throws {RequiredError}
|
|
13075
|
-
*/
|
|
13076
|
-
getAllSports(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SportResponse>>>;
|
|
13077
|
-
};
|
|
13078
|
-
/**
|
|
13079
|
-
* SportsStaffApi - factory interface
|
|
13080
|
-
* @export
|
|
13081
|
-
*/
|
|
13082
|
-
export declare const SportsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13083
|
-
/**
|
|
13084
|
-
* Récupère la liste des sports (vérifiés + créés par le club de l\'utilisateur)
|
|
13085
|
-
* @param {*} [options] Override http request option.
|
|
13086
|
-
* @throws {RequiredError}
|
|
13087
|
-
*/
|
|
13088
|
-
getAllSports(options?: RawAxiosRequestConfig): AxiosPromise<Array<SportResponse>>;
|
|
13089
|
-
};
|
|
13090
|
-
/**
|
|
13091
|
-
* SportsStaffApi - object-oriented interface
|
|
13092
|
-
* @export
|
|
13093
|
-
* @class SportsStaffApi
|
|
13094
|
-
* @extends {BaseAPI}
|
|
13095
|
-
*/
|
|
13096
|
-
export declare class SportsStaffApi extends BaseAPI {
|
|
13097
|
-
/**
|
|
13098
|
-
* Récupère la liste des sports (vérifiés + créés par le club de l\'utilisateur)
|
|
13099
|
-
* @param {*} [options] Override http request option.
|
|
13100
|
-
* @throws {RequiredError}
|
|
13101
|
-
* @memberof SportsStaffApi
|
|
13102
|
-
*/
|
|
13103
|
-
getAllSports(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportResponse[], any, {}>>;
|
|
13104
|
-
}
|
|
13105
14359
|
/**
|
|
13106
14360
|
* SubscriptionsManagerApi - axios parameter creator
|
|
13107
14361
|
* @export
|