@tennac-booking/sdk 1.0.101 → 1.0.103
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 +28 -8
- package/README.md +46 -16
- package/api.ts +8004 -6457
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1692 -545
- package/dist/api.js +883 -266
- 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 +1692 -545
- package/dist/esm/api.js +871 -254
- 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/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 +52 -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/UpdateClubGeneralSettingsRequest.md +34 -0
- package/docs/UpdateClubHoursSettingsRequest.md +22 -0
- package/docs/UpdateClubPresentationSettingsRequest.md +26 -0
- package/docs/UpdateClubReservationSettingsRequest.md +28 -0
- package/docs/UpdateEventRequest.md +1 -1
- package/docs/UserClubMembership.md +2 -0
- 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/DeleteClubSettingsResponse.md +0 -20
- package/docs/EventResponseCourtsInner.md +0 -18
- package/docs/SportsStaffApi.md +0 -55
- package/docs/UpdateClubSettingsRequest.md +0 -32
package/dist/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>}
|
|
@@ -1339,13 +1325,13 @@ export interface ClientAccountOnboardingRequest {
|
|
|
1339
1325
|
* @type {string}
|
|
1340
1326
|
* @memberof ClientAccountOnboardingRequest
|
|
1341
1327
|
*/
|
|
1342
|
-
'businessType'
|
|
1328
|
+
'businessType'?: ClientAccountOnboardingRequestBusinessTypeEnum;
|
|
1343
1329
|
/**
|
|
1344
1330
|
*
|
|
1345
1331
|
* @type {string}
|
|
1346
1332
|
* @memberof ClientAccountOnboardingRequest
|
|
1347
1333
|
*/
|
|
1348
|
-
'subscriptionType'
|
|
1334
|
+
'subscriptionType'?: ClientAccountOnboardingRequestSubscriptionTypeEnum;
|
|
1349
1335
|
/**
|
|
1350
1336
|
*
|
|
1351
1337
|
* @type {boolean}
|
|
@@ -1731,6 +1717,124 @@ export interface ClientSubscriptionResponse {
|
|
|
1731
1717
|
*/
|
|
1732
1718
|
'billingCycle': string;
|
|
1733
1719
|
}
|
|
1720
|
+
/**
|
|
1721
|
+
*
|
|
1722
|
+
* @export
|
|
1723
|
+
* @interface ClubDaySchedule
|
|
1724
|
+
*/
|
|
1725
|
+
export interface ClubDaySchedule {
|
|
1726
|
+
/**
|
|
1727
|
+
*
|
|
1728
|
+
* @type {string}
|
|
1729
|
+
* @memberof ClubDaySchedule
|
|
1730
|
+
*/
|
|
1731
|
+
'open': string;
|
|
1732
|
+
/**
|
|
1733
|
+
*
|
|
1734
|
+
* @type {string}
|
|
1735
|
+
* @memberof ClubDaySchedule
|
|
1736
|
+
*/
|
|
1737
|
+
'close': string;
|
|
1738
|
+
}
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @export
|
|
1742
|
+
* @interface ClubGeneralSettingsResponse
|
|
1743
|
+
*/
|
|
1744
|
+
export interface ClubGeneralSettingsResponse {
|
|
1745
|
+
/**
|
|
1746
|
+
*
|
|
1747
|
+
* @type {string}
|
|
1748
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1749
|
+
*/
|
|
1750
|
+
'name': string;
|
|
1751
|
+
/**
|
|
1752
|
+
*
|
|
1753
|
+
* @type {string}
|
|
1754
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1755
|
+
*/
|
|
1756
|
+
'email'?: string;
|
|
1757
|
+
/**
|
|
1758
|
+
*
|
|
1759
|
+
* @type {string}
|
|
1760
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1761
|
+
*/
|
|
1762
|
+
'phone'?: string;
|
|
1763
|
+
/**
|
|
1764
|
+
*
|
|
1765
|
+
* @type {string}
|
|
1766
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1767
|
+
*/
|
|
1768
|
+
'websiteUrl'?: string;
|
|
1769
|
+
/**
|
|
1770
|
+
*
|
|
1771
|
+
* @type {string}
|
|
1772
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1773
|
+
*/
|
|
1774
|
+
'logo'?: string | null;
|
|
1775
|
+
/**
|
|
1776
|
+
*
|
|
1777
|
+
* @type {ClubLocationSettings}
|
|
1778
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1779
|
+
*/
|
|
1780
|
+
'location': ClubLocationSettings;
|
|
1781
|
+
/**
|
|
1782
|
+
*
|
|
1783
|
+
* @type {string}
|
|
1784
|
+
* @memberof ClubGeneralSettingsResponse
|
|
1785
|
+
*/
|
|
1786
|
+
'stripeUrl'?: string | null;
|
|
1787
|
+
}
|
|
1788
|
+
/**
|
|
1789
|
+
*
|
|
1790
|
+
* @export
|
|
1791
|
+
* @interface ClubHoursSettingsResponse
|
|
1792
|
+
*/
|
|
1793
|
+
export interface ClubHoursSettingsResponse {
|
|
1794
|
+
/**
|
|
1795
|
+
*
|
|
1796
|
+
* @type {ClubWeeklySchedule}
|
|
1797
|
+
* @memberof ClubHoursSettingsResponse
|
|
1798
|
+
*/
|
|
1799
|
+
'schedule': ClubWeeklySchedule;
|
|
1800
|
+
/**
|
|
1801
|
+
*
|
|
1802
|
+
* @type {Array<ClubPricingPeriodResponse>}
|
|
1803
|
+
* @memberof ClubHoursSettingsResponse
|
|
1804
|
+
*/
|
|
1805
|
+
'pricingPeriods': Array<ClubPricingPeriodResponse>;
|
|
1806
|
+
}
|
|
1807
|
+
/**
|
|
1808
|
+
*
|
|
1809
|
+
* @export
|
|
1810
|
+
* @interface ClubLocationSettings
|
|
1811
|
+
*/
|
|
1812
|
+
export interface ClubLocationSettings {
|
|
1813
|
+
/**
|
|
1814
|
+
*
|
|
1815
|
+
* @type {string}
|
|
1816
|
+
* @memberof ClubLocationSettings
|
|
1817
|
+
*/
|
|
1818
|
+
'address'?: string;
|
|
1819
|
+
/**
|
|
1820
|
+
*
|
|
1821
|
+
* @type {string}
|
|
1822
|
+
* @memberof ClubLocationSettings
|
|
1823
|
+
*/
|
|
1824
|
+
'zipCode'?: string;
|
|
1825
|
+
/**
|
|
1826
|
+
*
|
|
1827
|
+
* @type {string}
|
|
1828
|
+
* @memberof ClubLocationSettings
|
|
1829
|
+
*/
|
|
1830
|
+
'city'?: string;
|
|
1831
|
+
/**
|
|
1832
|
+
*
|
|
1833
|
+
* @type {string}
|
|
1834
|
+
* @memberof ClubLocationSettings
|
|
1835
|
+
*/
|
|
1836
|
+
'country'?: string;
|
|
1837
|
+
}
|
|
1734
1838
|
/**
|
|
1735
1839
|
*
|
|
1736
1840
|
* @export
|
|
@@ -1790,166 +1894,720 @@ export interface ClubMemberResponseUser {
|
|
|
1790
1894
|
/**
|
|
1791
1895
|
*
|
|
1792
1896
|
* @export
|
|
1793
|
-
* @interface
|
|
1897
|
+
* @interface ClubPlayerBookingItem
|
|
1794
1898
|
*/
|
|
1795
|
-
export interface
|
|
1899
|
+
export interface ClubPlayerBookingItem {
|
|
1796
1900
|
/**
|
|
1797
|
-
* ID de
|
|
1901
|
+
* ID de la réservation
|
|
1798
1902
|
* @type {string}
|
|
1799
|
-
* @memberof
|
|
1903
|
+
* @memberof ClubPlayerBookingItem
|
|
1800
1904
|
*/
|
|
1801
1905
|
'id': string;
|
|
1802
1906
|
/**
|
|
1803
|
-
*
|
|
1907
|
+
* Date de début de la réservation
|
|
1804
1908
|
* @type {string}
|
|
1805
|
-
* @memberof
|
|
1909
|
+
* @memberof ClubPlayerBookingItem
|
|
1806
1910
|
*/
|
|
1807
|
-
'
|
|
1911
|
+
'startDate': string | null;
|
|
1808
1912
|
/**
|
|
1809
|
-
*
|
|
1913
|
+
* Date de fin de la réservation
|
|
1810
1914
|
* @type {string}
|
|
1811
|
-
* @memberof
|
|
1915
|
+
* @memberof ClubPlayerBookingItem
|
|
1812
1916
|
*/
|
|
1813
|
-
'
|
|
1917
|
+
'endDate': string | null;
|
|
1814
1918
|
/**
|
|
1815
|
-
*
|
|
1919
|
+
* Nom du terrain ou emplacement
|
|
1816
1920
|
* @type {string}
|
|
1817
|
-
* @memberof
|
|
1921
|
+
* @memberof ClubPlayerBookingItem
|
|
1818
1922
|
*/
|
|
1819
|
-
'
|
|
1923
|
+
'location': string | null;
|
|
1820
1924
|
/**
|
|
1821
|
-
*
|
|
1925
|
+
* Nom du sport associé
|
|
1822
1926
|
* @type {string}
|
|
1823
|
-
* @memberof
|
|
1927
|
+
* @memberof ClubPlayerBookingItem
|
|
1824
1928
|
*/
|
|
1825
|
-
'
|
|
1929
|
+
'sport': string | null;
|
|
1826
1930
|
/**
|
|
1827
|
-
*
|
|
1931
|
+
* Statut de la réservation
|
|
1828
1932
|
* @type {string}
|
|
1829
|
-
* @memberof
|
|
1933
|
+
* @memberof ClubPlayerBookingItem
|
|
1830
1934
|
*/
|
|
1831
|
-
'
|
|
1935
|
+
'status': string;
|
|
1832
1936
|
/**
|
|
1833
|
-
*
|
|
1834
|
-
* @type {
|
|
1835
|
-
* @memberof
|
|
1937
|
+
* Prix total de la réservation en centimes
|
|
1938
|
+
* @type {number}
|
|
1939
|
+
* @memberof ClubPlayerBookingItem
|
|
1836
1940
|
*/
|
|
1837
|
-
'
|
|
1941
|
+
'totalPrice': number;
|
|
1838
1942
|
/**
|
|
1839
|
-
*
|
|
1943
|
+
* Indique si le joueur est le créateur de la réservation
|
|
1840
1944
|
* @type {boolean}
|
|
1841
|
-
* @memberof
|
|
1945
|
+
* @memberof ClubPlayerBookingItem
|
|
1842
1946
|
*/
|
|
1843
|
-
'
|
|
1947
|
+
'isCreator': boolean;
|
|
1844
1948
|
/**
|
|
1845
|
-
*
|
|
1949
|
+
* Nombre total de participants
|
|
1950
|
+
* @type {number}
|
|
1951
|
+
* @memberof ClubPlayerBookingItem
|
|
1952
|
+
*/
|
|
1953
|
+
'participantsCount': number;
|
|
1954
|
+
}
|
|
1955
|
+
/**
|
|
1956
|
+
*
|
|
1957
|
+
* @export
|
|
1958
|
+
* @interface ClubPlayerBookingsPagination
|
|
1959
|
+
*/
|
|
1960
|
+
export interface ClubPlayerBookingsPagination {
|
|
1961
|
+
/**
|
|
1962
|
+
* Page courante (1-based)
|
|
1963
|
+
* @type {number}
|
|
1964
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1965
|
+
*/
|
|
1966
|
+
'page': number;
|
|
1967
|
+
/**
|
|
1968
|
+
* Nombre d\'éléments par page
|
|
1969
|
+
* @type {number}
|
|
1970
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1971
|
+
*/
|
|
1972
|
+
'pageSize': number;
|
|
1973
|
+
/**
|
|
1974
|
+
* Nombre total d\'éléments disponibles
|
|
1975
|
+
* @type {number}
|
|
1976
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1977
|
+
*/
|
|
1978
|
+
'totalItems': number;
|
|
1979
|
+
/**
|
|
1980
|
+
* Nombre total de pages disponibles
|
|
1981
|
+
* @type {number}
|
|
1982
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1983
|
+
*/
|
|
1984
|
+
'totalPages': number;
|
|
1985
|
+
/**
|
|
1986
|
+
* Existence d\'une page suivante
|
|
1846
1987
|
* @type {boolean}
|
|
1847
|
-
* @memberof
|
|
1988
|
+
* @memberof ClubPlayerBookingsPagination
|
|
1848
1989
|
*/
|
|
1849
|
-
'
|
|
1990
|
+
'hasMore': boolean;
|
|
1850
1991
|
}
|
|
1851
1992
|
/**
|
|
1852
1993
|
*
|
|
1853
1994
|
* @export
|
|
1854
|
-
* @interface
|
|
1995
|
+
* @interface ClubPlayerBookingsResponse
|
|
1855
1996
|
*/
|
|
1856
|
-
export interface
|
|
1997
|
+
export interface ClubPlayerBookingsResponse {
|
|
1857
1998
|
/**
|
|
1858
|
-
*
|
|
1999
|
+
* Réservations à venir
|
|
2000
|
+
* @type {Array<ClubPlayerBookingItem>}
|
|
2001
|
+
* @memberof ClubPlayerBookingsResponse
|
|
2002
|
+
*/
|
|
2003
|
+
'upcomingBookings': Array<ClubPlayerBookingItem>;
|
|
2004
|
+
/**
|
|
2005
|
+
* Réservations passées
|
|
2006
|
+
* @type {Array<ClubPlayerBookingItem>}
|
|
2007
|
+
* @memberof ClubPlayerBookingsResponse
|
|
2008
|
+
*/
|
|
2009
|
+
'pastBookings': Array<ClubPlayerBookingItem>;
|
|
2010
|
+
/**
|
|
2011
|
+
*
|
|
2012
|
+
* @type {ClubPlayerBookingsPagination}
|
|
2013
|
+
* @memberof ClubPlayerBookingsResponse
|
|
2014
|
+
*/
|
|
2015
|
+
'pastPagination'?: ClubPlayerBookingsPagination;
|
|
2016
|
+
}
|
|
2017
|
+
/**
|
|
2018
|
+
*
|
|
2019
|
+
* @export
|
|
2020
|
+
* @interface ClubPlayerDetailResponse
|
|
2021
|
+
*/
|
|
2022
|
+
export interface ClubPlayerDetailResponse {
|
|
2023
|
+
/**
|
|
2024
|
+
* ID du joueur
|
|
1859
2025
|
* @type {string}
|
|
1860
|
-
* @memberof
|
|
2026
|
+
* @memberof ClubPlayerDetailResponse
|
|
1861
2027
|
*/
|
|
1862
2028
|
'id': string;
|
|
1863
2029
|
/**
|
|
1864
|
-
* Nom
|
|
2030
|
+
* Nom complet
|
|
1865
2031
|
* @type {string}
|
|
1866
|
-
* @memberof
|
|
2032
|
+
* @memberof ClubPlayerDetailResponse
|
|
1867
2033
|
*/
|
|
1868
2034
|
'name': string;
|
|
1869
2035
|
/**
|
|
1870
|
-
*
|
|
2036
|
+
* Prénom
|
|
1871
2037
|
* @type {string}
|
|
1872
|
-
* @memberof
|
|
2038
|
+
* @memberof ClubPlayerDetailResponse
|
|
1873
2039
|
*/
|
|
1874
|
-
'
|
|
2040
|
+
'firstName': string;
|
|
1875
2041
|
/**
|
|
1876
|
-
*
|
|
2042
|
+
* Nom
|
|
1877
2043
|
* @type {string}
|
|
1878
|
-
* @memberof
|
|
2044
|
+
* @memberof ClubPlayerDetailResponse
|
|
1879
2045
|
*/
|
|
1880
|
-
'
|
|
2046
|
+
'lastName': string;
|
|
1881
2047
|
/**
|
|
1882
|
-
* Email
|
|
2048
|
+
* Email
|
|
1883
2049
|
* @type {string}
|
|
1884
|
-
* @memberof
|
|
2050
|
+
* @memberof ClubPlayerDetailResponse
|
|
1885
2051
|
*/
|
|
1886
|
-
'email'
|
|
2052
|
+
'email': string;
|
|
1887
2053
|
/**
|
|
1888
|
-
*
|
|
2054
|
+
* Numéro de téléphone
|
|
1889
2055
|
* @type {string}
|
|
1890
|
-
* @memberof
|
|
2056
|
+
* @memberof ClubPlayerDetailResponse
|
|
1891
2057
|
*/
|
|
1892
|
-
'
|
|
2058
|
+
'phoneNumber': string | null;
|
|
1893
2059
|
/**
|
|
1894
|
-
* URL de
|
|
2060
|
+
* URL de la photo de profil
|
|
1895
2061
|
* @type {string}
|
|
1896
|
-
* @memberof
|
|
1897
|
-
*/
|
|
1898
|
-
'picture'?: string;
|
|
1899
|
-
/**
|
|
1900
|
-
*
|
|
1901
|
-
* @type {ClubResponseLocation}
|
|
1902
|
-
* @memberof ClubResponse
|
|
2062
|
+
* @memberof ClubPlayerDetailResponse
|
|
1903
2063
|
*/
|
|
1904
|
-
'
|
|
2064
|
+
'profilePictureUrl': string | null;
|
|
1905
2065
|
/**
|
|
1906
|
-
*
|
|
2066
|
+
* Compte vérifié
|
|
1907
2067
|
* @type {boolean}
|
|
1908
|
-
* @memberof
|
|
2068
|
+
* @memberof ClubPlayerDetailResponse
|
|
1909
2069
|
*/
|
|
1910
|
-
'
|
|
2070
|
+
'isAccountVerified': boolean;
|
|
1911
2071
|
/**
|
|
1912
|
-
*
|
|
1913
|
-
* @type {
|
|
1914
|
-
* @memberof
|
|
2072
|
+
* Abonnements au club courant
|
|
2073
|
+
* @type {Array<ClubPlayerSubscriptionSummary>}
|
|
2074
|
+
* @memberof ClubPlayerDetailResponse
|
|
1915
2075
|
*/
|
|
1916
|
-
'
|
|
2076
|
+
'subscriptionsToMyClub': Array<ClubPlayerSubscriptionSummary>;
|
|
1917
2077
|
/**
|
|
1918
|
-
*
|
|
2078
|
+
* Description du profil
|
|
1919
2079
|
* @type {string}
|
|
1920
|
-
* @memberof
|
|
2080
|
+
* @memberof ClubPlayerDetailResponse
|
|
1921
2081
|
*/
|
|
1922
|
-
'
|
|
2082
|
+
'profileDescription': string | null;
|
|
1923
2083
|
/**
|
|
1924
|
-
*
|
|
2084
|
+
* Genre
|
|
1925
2085
|
* @type {string}
|
|
1926
|
-
* @memberof
|
|
2086
|
+
* @memberof ClubPlayerDetailResponse
|
|
1927
2087
|
*/
|
|
1928
|
-
'
|
|
2088
|
+
'gender': string | null;
|
|
1929
2089
|
/**
|
|
1930
|
-
*
|
|
1931
|
-
* @type {
|
|
1932
|
-
* @memberof
|
|
2090
|
+
* Ville
|
|
2091
|
+
* @type {string}
|
|
2092
|
+
* @memberof ClubPlayerDetailResponse
|
|
1933
2093
|
*/
|
|
1934
|
-
'
|
|
2094
|
+
'city': string | null;
|
|
1935
2095
|
/**
|
|
1936
|
-
*
|
|
1937
|
-
* @type {Array<
|
|
1938
|
-
* @memberof
|
|
2096
|
+
* Niveaux par sport
|
|
2097
|
+
* @type {Array<ClubPlayerDetailResponseSportsLevelsInner>}
|
|
2098
|
+
* @memberof ClubPlayerDetailResponse
|
|
1939
2099
|
*/
|
|
1940
|
-
'
|
|
2100
|
+
'sportsLevels': Array<ClubPlayerDetailResponseSportsLevelsInner>;
|
|
1941
2101
|
/**
|
|
1942
|
-
*
|
|
1943
|
-
* @type {
|
|
1944
|
-
* @memberof
|
|
2102
|
+
* Date de naissance
|
|
2103
|
+
* @type {string}
|
|
2104
|
+
* @memberof ClubPlayerDetailResponse
|
|
1945
2105
|
*/
|
|
1946
|
-
'
|
|
1947
|
-
|
|
1948
|
-
|
|
2106
|
+
'birthDate': string | null;
|
|
2107
|
+
}
|
|
2108
|
+
/**
|
|
2109
|
+
*
|
|
2110
|
+
* @export
|
|
2111
|
+
* @interface ClubPlayerDetailResponseSportsLevelsInner
|
|
2112
|
+
*/
|
|
2113
|
+
export interface ClubPlayerDetailResponseSportsLevelsInner {
|
|
2114
|
+
/**
|
|
2115
|
+
*
|
|
2116
|
+
* @type {string}
|
|
2117
|
+
* @memberof ClubPlayerDetailResponseSportsLevelsInner
|
|
2118
|
+
*/
|
|
2119
|
+
'level': string | null;
|
|
2120
|
+
/**
|
|
2121
|
+
*
|
|
2122
|
+
* @type {string}
|
|
2123
|
+
* @memberof ClubPlayerDetailResponseSportsLevelsInner
|
|
2124
|
+
*/
|
|
2125
|
+
'sport': string | null;
|
|
2126
|
+
}
|
|
2127
|
+
/**
|
|
2128
|
+
*
|
|
2129
|
+
* @export
|
|
2130
|
+
* @interface ClubPlayerResponse
|
|
2131
|
+
*/
|
|
2132
|
+
export interface ClubPlayerResponse {
|
|
2133
|
+
/**
|
|
2134
|
+
* ID de l\'utilisateur
|
|
2135
|
+
* @type {string}
|
|
2136
|
+
* @memberof ClubPlayerResponse
|
|
2137
|
+
*/
|
|
2138
|
+
'id': string;
|
|
2139
|
+
/**
|
|
2140
|
+
* Prénom
|
|
2141
|
+
* @type {string}
|
|
2142
|
+
* @memberof ClubPlayerResponse
|
|
2143
|
+
*/
|
|
2144
|
+
'firstName': string;
|
|
2145
|
+
/**
|
|
2146
|
+
* Nom
|
|
2147
|
+
* @type {string}
|
|
2148
|
+
* @memberof ClubPlayerResponse
|
|
2149
|
+
*/
|
|
2150
|
+
'lastName': string;
|
|
2151
|
+
/**
|
|
2152
|
+
* Genre
|
|
2153
|
+
* @type {string}
|
|
2154
|
+
* @memberof ClubPlayerResponse
|
|
2155
|
+
*/
|
|
2156
|
+
'gender'?: string;
|
|
2157
|
+
/**
|
|
2158
|
+
* Email
|
|
2159
|
+
* @type {string}
|
|
2160
|
+
* @memberof ClubPlayerResponse
|
|
2161
|
+
*/
|
|
2162
|
+
'email': string;
|
|
2163
|
+
/**
|
|
2164
|
+
* Photo de profil
|
|
2165
|
+
* @type {string}
|
|
2166
|
+
* @memberof ClubPlayerResponse
|
|
2167
|
+
*/
|
|
2168
|
+
'profilePicture'?: string;
|
|
2169
|
+
/**
|
|
2170
|
+
* Compte vérifié
|
|
2171
|
+
* @type {boolean}
|
|
2172
|
+
* @memberof ClubPlayerResponse
|
|
2173
|
+
*/
|
|
2174
|
+
'isAccountVerified': boolean;
|
|
2175
|
+
/**
|
|
2176
|
+
* Profil visible
|
|
2177
|
+
* @type {boolean}
|
|
2178
|
+
* @memberof ClubPlayerResponse
|
|
2179
|
+
*/
|
|
2180
|
+
'isProfileVisible': boolean;
|
|
2181
|
+
/**
|
|
2182
|
+
* Abonné au club
|
|
2183
|
+
* @type {boolean}
|
|
2184
|
+
* @memberof ClubPlayerResponse
|
|
2185
|
+
*/
|
|
2186
|
+
'isSubscribedToClub': boolean;
|
|
2187
|
+
}
|
|
2188
|
+
/**
|
|
2189
|
+
*
|
|
2190
|
+
* @export
|
|
2191
|
+
* @interface ClubPlayerStatisticsResponse
|
|
2192
|
+
*/
|
|
2193
|
+
export interface ClubPlayerStatisticsResponse {
|
|
2194
|
+
/**
|
|
2195
|
+
* Nombre total de réservations (tous clubs confondus)
|
|
2196
|
+
* @type {number}
|
|
2197
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2198
|
+
*/
|
|
2199
|
+
'totalBookings': number;
|
|
2200
|
+
/**
|
|
2201
|
+
* Nombre total de réservations dans le club courant
|
|
2202
|
+
* @type {number}
|
|
2203
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2204
|
+
*/
|
|
2205
|
+
'totalBookingsInMyClub': number;
|
|
2206
|
+
/**
|
|
2207
|
+
* Somme totale dépensée dans le club courant (centimes)
|
|
2208
|
+
* @type {number}
|
|
2209
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2210
|
+
*/
|
|
2211
|
+
'totalSpentAmount': number;
|
|
2212
|
+
/**
|
|
2213
|
+
* Sport le plus pratiqué dans le club courant
|
|
2214
|
+
* @type {string}
|
|
2215
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2216
|
+
*/
|
|
2217
|
+
'favoriteSport': string | null;
|
|
2218
|
+
/**
|
|
2219
|
+
* Temps moyen entre la réservation et le début du créneau (heures)
|
|
2220
|
+
* @type {number}
|
|
2221
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2222
|
+
*/
|
|
2223
|
+
'averageBookingLeadTimeHours': number | null;
|
|
2224
|
+
/**
|
|
2225
|
+
* Taux d\'annulation dans le club courant (0-1)
|
|
2226
|
+
* @type {number}
|
|
2227
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2228
|
+
*/
|
|
2229
|
+
'bookingCancellationRate': number;
|
|
2230
|
+
/**
|
|
2231
|
+
* Nombre d\'abonnements actifs au club courant
|
|
2232
|
+
* @type {number}
|
|
2233
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2234
|
+
*/
|
|
2235
|
+
'activeSubscriptionsToMyClub': number;
|
|
2236
|
+
/**
|
|
2237
|
+
* Heure de créneau favorite dans le club courant (format HH:00)
|
|
2238
|
+
* @type {string}
|
|
2239
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2240
|
+
*/
|
|
2241
|
+
'favoriteTimeSlot': string | null;
|
|
2242
|
+
/**
|
|
2243
|
+
*
|
|
2244
|
+
* @type {ClubPlayerStatisticsResponseFavoriteClub}
|
|
2245
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2246
|
+
*/
|
|
2247
|
+
'favoriteClub': ClubPlayerStatisticsResponseFavoriteClub | null;
|
|
2248
|
+
/**
|
|
2249
|
+
*
|
|
2250
|
+
* @type {ClubPlayerStatisticsResponseMostPlayedClub}
|
|
2251
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2252
|
+
*/
|
|
2253
|
+
'mostPlayedClub': ClubPlayerStatisticsResponseMostPlayedClub | null;
|
|
2254
|
+
/**
|
|
2255
|
+
* Évolution quotidienne des montants dépensés ce mois-ci
|
|
2256
|
+
* @type {Array<ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner>}
|
|
2257
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2258
|
+
*/
|
|
2259
|
+
'bookingAmountEvolutionThisMonth': Array<ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner>;
|
|
2260
|
+
/**
|
|
2261
|
+
* Joueurs les plus joués dans le club courant
|
|
2262
|
+
* @type {Array<ClubPlayerStatisticsResponseMostPlayedPartnersInner>}
|
|
2263
|
+
* @memberof ClubPlayerStatisticsResponse
|
|
2264
|
+
*/
|
|
2265
|
+
'mostPlayedPartners': Array<ClubPlayerStatisticsResponseMostPlayedPartnersInner>;
|
|
2266
|
+
}
|
|
2267
|
+
/**
|
|
2268
|
+
*
|
|
2269
|
+
* @export
|
|
2270
|
+
* @interface ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner
|
|
2271
|
+
*/
|
|
2272
|
+
export interface ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner {
|
|
2273
|
+
/**
|
|
2274
|
+
*
|
|
2275
|
+
* @type {number}
|
|
2276
|
+
* @memberof ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner
|
|
2277
|
+
*/
|
|
2278
|
+
'amount': number;
|
|
2279
|
+
/**
|
|
2280
|
+
*
|
|
2281
|
+
* @type {number}
|
|
2282
|
+
* @memberof ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner
|
|
2283
|
+
*/
|
|
2284
|
+
'day': number;
|
|
2285
|
+
}
|
|
2286
|
+
/**
|
|
2287
|
+
* Club favori selon le profil utilisateur
|
|
2288
|
+
* @export
|
|
2289
|
+
* @interface ClubPlayerStatisticsResponseFavoriteClub
|
|
2290
|
+
*/
|
|
2291
|
+
export interface ClubPlayerStatisticsResponseFavoriteClub {
|
|
2292
|
+
/**
|
|
2293
|
+
*
|
|
2294
|
+
* @type {string}
|
|
2295
|
+
* @memberof ClubPlayerStatisticsResponseFavoriteClub
|
|
2296
|
+
*/
|
|
2297
|
+
'name': string | null;
|
|
2298
|
+
/**
|
|
2299
|
+
*
|
|
2300
|
+
* @type {string}
|
|
2301
|
+
* @memberof ClubPlayerStatisticsResponseFavoriteClub
|
|
2302
|
+
*/
|
|
2303
|
+
'clubId': string;
|
|
2304
|
+
}
|
|
2305
|
+
/**
|
|
2306
|
+
* Club où le joueur a le plus joué
|
|
2307
|
+
* @export
|
|
2308
|
+
* @interface ClubPlayerStatisticsResponseMostPlayedClub
|
|
2309
|
+
*/
|
|
2310
|
+
export interface ClubPlayerStatisticsResponseMostPlayedClub {
|
|
2311
|
+
/**
|
|
2312
|
+
*
|
|
2313
|
+
* @type {number}
|
|
2314
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedClub
|
|
2315
|
+
*/
|
|
2316
|
+
'bookingsCount': number;
|
|
2317
|
+
/**
|
|
2318
|
+
*
|
|
2319
|
+
* @type {string}
|
|
2320
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedClub
|
|
2321
|
+
*/
|
|
2322
|
+
'name': string | null;
|
|
2323
|
+
/**
|
|
2324
|
+
*
|
|
2325
|
+
* @type {string}
|
|
2326
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedClub
|
|
2327
|
+
*/
|
|
2328
|
+
'clubId': string;
|
|
2329
|
+
}
|
|
2330
|
+
/**
|
|
2331
|
+
*
|
|
2332
|
+
* @export
|
|
2333
|
+
* @interface ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
2334
|
+
*/
|
|
2335
|
+
export interface ClubPlayerStatisticsResponseMostPlayedPartnersInner {
|
|
2336
|
+
/**
|
|
2337
|
+
*
|
|
2338
|
+
* @type {number}
|
|
2339
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
2340
|
+
*/
|
|
2341
|
+
'bookingsTogether': number;
|
|
2342
|
+
/**
|
|
2343
|
+
*
|
|
2344
|
+
* @type {string}
|
|
2345
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
2346
|
+
*/
|
|
2347
|
+
'lastName': string | null;
|
|
2348
|
+
/**
|
|
2349
|
+
*
|
|
2350
|
+
* @type {string}
|
|
2351
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
2352
|
+
*/
|
|
2353
|
+
'firstName': string | null;
|
|
2354
|
+
/**
|
|
2355
|
+
*
|
|
2356
|
+
* @type {string}
|
|
2357
|
+
* @memberof ClubPlayerStatisticsResponseMostPlayedPartnersInner
|
|
2358
|
+
*/
|
|
2359
|
+
'userId': string;
|
|
2360
|
+
}
|
|
2361
|
+
/**
|
|
2362
|
+
*
|
|
2363
|
+
* @export
|
|
2364
|
+
* @interface ClubPlayerSubscriptionSummary
|
|
2365
|
+
*/
|
|
2366
|
+
export interface ClubPlayerSubscriptionSummary {
|
|
2367
|
+
/**
|
|
2368
|
+
* ID du plan d\'abonnement
|
|
2369
|
+
* @type {string}
|
|
2370
|
+
* @memberof ClubPlayerSubscriptionSummary
|
|
2371
|
+
*/
|
|
2372
|
+
'id': string;
|
|
2373
|
+
/**
|
|
2374
|
+
* Nom du plan
|
|
2375
|
+
* @type {string}
|
|
2376
|
+
* @memberof ClubPlayerSubscriptionSummary
|
|
2377
|
+
*/
|
|
2378
|
+
'name': string | null;
|
|
2379
|
+
/**
|
|
2380
|
+
* Montant en centimes
|
|
2381
|
+
* @type {number}
|
|
2382
|
+
* @memberof ClubPlayerSubscriptionSummary
|
|
2383
|
+
*/
|
|
2384
|
+
'amountInCents': number | null;
|
|
2385
|
+
/**
|
|
2386
|
+
* Devise
|
|
2387
|
+
* @type {string}
|
|
2388
|
+
* @memberof ClubPlayerSubscriptionSummary
|
|
2389
|
+
*/
|
|
2390
|
+
'currency': string | null;
|
|
2391
|
+
/**
|
|
2392
|
+
* Intervalle de facturation
|
|
2393
|
+
* @type {string}
|
|
2394
|
+
* @memberof ClubPlayerSubscriptionSummary
|
|
2395
|
+
*/
|
|
2396
|
+
'interval': string | null;
|
|
2397
|
+
}
|
|
2398
|
+
/**
|
|
2399
|
+
*
|
|
2400
|
+
* @export
|
|
2401
|
+
* @interface ClubPresentationSettingsResponse
|
|
2402
|
+
*/
|
|
2403
|
+
export interface ClubPresentationSettingsResponse {
|
|
2404
|
+
/**
|
|
2405
|
+
*
|
|
2406
|
+
* @type {string}
|
|
2407
|
+
* @memberof ClubPresentationSettingsResponse
|
|
2408
|
+
*/
|
|
2409
|
+
'description'?: string;
|
|
2410
|
+
/**
|
|
2411
|
+
*
|
|
2412
|
+
* @type {Array<string>}
|
|
2413
|
+
* @memberof ClubPresentationSettingsResponse
|
|
2414
|
+
*/
|
|
2415
|
+
'tags': Array<string>;
|
|
2416
|
+
/**
|
|
2417
|
+
*
|
|
2418
|
+
* @type {Array<string>}
|
|
2419
|
+
* @memberof ClubPresentationSettingsResponse
|
|
2420
|
+
*/
|
|
2421
|
+
'bannerImages': Array<string>;
|
|
2422
|
+
/**
|
|
2423
|
+
*
|
|
2424
|
+
* @type {Array<string>}
|
|
2425
|
+
* @memberof ClubPresentationSettingsResponse
|
|
2426
|
+
*/
|
|
2427
|
+
'galleryImages': Array<string>;
|
|
2428
|
+
}
|
|
2429
|
+
/**
|
|
2430
|
+
*
|
|
2431
|
+
* @export
|
|
2432
|
+
* @interface ClubPricingPeriodResponse
|
|
2433
|
+
*/
|
|
2434
|
+
export interface ClubPricingPeriodResponse {
|
|
2435
|
+
/**
|
|
2436
|
+
*
|
|
2437
|
+
* @type {string}
|
|
2438
|
+
* @memberof ClubPricingPeriodResponse
|
|
2439
|
+
*/
|
|
2440
|
+
'id': string;
|
|
2441
|
+
/**
|
|
2442
|
+
*
|
|
2443
|
+
* @type {string}
|
|
2444
|
+
* @memberof ClubPricingPeriodResponse
|
|
2445
|
+
*/
|
|
2446
|
+
'name': string;
|
|
2447
|
+
/**
|
|
2448
|
+
*
|
|
2449
|
+
* @type {Array<string>}
|
|
2450
|
+
* @memberof ClubPricingPeriodResponse
|
|
2451
|
+
*/
|
|
2452
|
+
'days': Array<string>;
|
|
2453
|
+
/**
|
|
2454
|
+
*
|
|
2455
|
+
* @type {string}
|
|
2456
|
+
* @memberof ClubPricingPeriodResponse
|
|
2457
|
+
*/
|
|
2458
|
+
'startTime': string;
|
|
2459
|
+
/**
|
|
2460
|
+
*
|
|
2461
|
+
* @type {string}
|
|
2462
|
+
* @memberof ClubPricingPeriodResponse
|
|
2463
|
+
*/
|
|
2464
|
+
'endTime': string;
|
|
2465
|
+
/**
|
|
2466
|
+
*
|
|
2467
|
+
* @type {number}
|
|
2468
|
+
* @memberof ClubPricingPeriodResponse
|
|
2469
|
+
*/
|
|
2470
|
+
'variation': number;
|
|
2471
|
+
}
|
|
2472
|
+
/**
|
|
2473
|
+
*
|
|
2474
|
+
* @export
|
|
2475
|
+
* @interface ClubReservationSettingsResponse
|
|
2476
|
+
*/
|
|
2477
|
+
export interface ClubReservationSettingsResponse {
|
|
2478
|
+
/**
|
|
2479
|
+
*
|
|
2480
|
+
* @type {number}
|
|
2481
|
+
* @memberof ClubReservationSettingsResponse
|
|
2482
|
+
*/
|
|
2483
|
+
'maxWeeklyBookings': number | null;
|
|
2484
|
+
/**
|
|
2485
|
+
*
|
|
2486
|
+
* @type {number}
|
|
2487
|
+
* @memberof ClubReservationSettingsResponse
|
|
2488
|
+
*/
|
|
2489
|
+
'sameTimeBookingsLimit': number;
|
|
2490
|
+
/**
|
|
2491
|
+
*
|
|
2492
|
+
* @type {number}
|
|
2493
|
+
* @memberof ClubReservationSettingsResponse
|
|
2494
|
+
*/
|
|
2495
|
+
'cancellationDelayInHours': number;
|
|
2496
|
+
/**
|
|
2497
|
+
*
|
|
2498
|
+
* @type {number}
|
|
2499
|
+
* @memberof ClubReservationSettingsResponse
|
|
2500
|
+
*/
|
|
2501
|
+
'bookingPeriodInDays': number;
|
|
2502
|
+
}
|
|
2503
|
+
/**
|
|
2504
|
+
*
|
|
2505
|
+
* @export
|
|
2506
|
+
* @interface ClubResponse
|
|
2507
|
+
*/
|
|
2508
|
+
export interface ClubResponse {
|
|
2509
|
+
/**
|
|
2510
|
+
* ID unique du club
|
|
2511
|
+
* @type {string}
|
|
2512
|
+
* @memberof ClubResponse
|
|
2513
|
+
*/
|
|
2514
|
+
'id': string;
|
|
2515
|
+
/**
|
|
2516
|
+
* Nom du club
|
|
2517
|
+
* @type {string}
|
|
2518
|
+
* @memberof ClubResponse
|
|
2519
|
+
*/
|
|
2520
|
+
'name': string;
|
|
2521
|
+
/**
|
|
2522
|
+
* URL du site web du club
|
|
2523
|
+
* @type {string}
|
|
2524
|
+
* @memberof ClubResponse
|
|
2525
|
+
*/
|
|
2526
|
+
'websiteUrl'?: string;
|
|
2527
|
+
/**
|
|
2528
|
+
* Description du club
|
|
2529
|
+
* @type {string}
|
|
2530
|
+
* @memberof ClubResponse
|
|
2531
|
+
*/
|
|
2532
|
+
'description'?: string;
|
|
2533
|
+
/**
|
|
2534
|
+
* Email du club
|
|
2535
|
+
* @type {string}
|
|
2536
|
+
* @memberof ClubResponse
|
|
2537
|
+
*/
|
|
2538
|
+
'email'?: string;
|
|
2539
|
+
/**
|
|
2540
|
+
* Téléphone du club
|
|
2541
|
+
* @type {string}
|
|
2542
|
+
* @memberof ClubResponse
|
|
2543
|
+
*/
|
|
2544
|
+
'phone'?: string;
|
|
2545
|
+
/**
|
|
2546
|
+
* URL de l\'image du club
|
|
2547
|
+
* @type {string}
|
|
2548
|
+
* @memberof ClubResponse
|
|
2549
|
+
*/
|
|
2550
|
+
'picture'?: string;
|
|
2551
|
+
/**
|
|
2552
|
+
*
|
|
2553
|
+
* @type {ClubResponseLocation}
|
|
2554
|
+
* @memberof ClubResponse
|
|
2555
|
+
*/
|
|
2556
|
+
'location'?: ClubResponseLocation;
|
|
2557
|
+
/**
|
|
2558
|
+
* Statut d\'activation du club
|
|
2559
|
+
* @type {boolean}
|
|
2560
|
+
* @memberof ClubResponse
|
|
2561
|
+
*/
|
|
2562
|
+
'isActive': boolean;
|
|
2563
|
+
/**
|
|
2564
|
+
* Indique si le club utilise la fonctionnalité de paiement
|
|
2565
|
+
* @type {boolean}
|
|
2566
|
+
* @memberof ClubResponse
|
|
2567
|
+
*/
|
|
2568
|
+
'paymentFeature'?: boolean;
|
|
2569
|
+
/**
|
|
2570
|
+
* ID du compte Stripe du club
|
|
2571
|
+
* @type {string}
|
|
2572
|
+
* @memberof ClubResponse
|
|
2573
|
+
*/
|
|
2574
|
+
'stripeAccountId'?: string;
|
|
2575
|
+
/**
|
|
2576
|
+
* URL du dashboard Stripe du club
|
|
2577
|
+
* @type {string}
|
|
2578
|
+
* @memberof ClubResponse
|
|
2579
|
+
*/
|
|
2580
|
+
'clubDashBoardUrl'?: string;
|
|
2581
|
+
/**
|
|
2582
|
+
* Indique si la fonctionnalité \"no show\" est activée
|
|
2583
|
+
* @type {boolean}
|
|
2584
|
+
* @memberof ClubResponse
|
|
2585
|
+
*/
|
|
2586
|
+
'isNoShowEnabled'?: boolean;
|
|
2587
|
+
/**
|
|
2588
|
+
* Liste des sports proposés par le club (identifiés par leur clé)
|
|
2589
|
+
* @type {Array<string>}
|
|
2590
|
+
* @memberof ClubResponse
|
|
2591
|
+
*/
|
|
2592
|
+
'sports'?: Array<string>;
|
|
2593
|
+
/**
|
|
2594
|
+
* Autoriser plusieurs réservations en même temps
|
|
2595
|
+
* @type {boolean}
|
|
2596
|
+
* @memberof ClubResponse
|
|
2597
|
+
*/
|
|
2598
|
+
'allowMultipleBookingsAtTheSameTime'?: boolean | null;
|
|
2599
|
+
/**
|
|
2600
|
+
* Limite de réservations simultanées (même créneau)
|
|
1949
2601
|
* @type {number}
|
|
1950
2602
|
* @memberof ClubResponse
|
|
1951
2603
|
*/
|
|
1952
2604
|
'sameTimeBookingsLimit'?: number | null;
|
|
2605
|
+
/**
|
|
2606
|
+
*
|
|
2607
|
+
* @type {number}
|
|
2608
|
+
* @memberof ClubResponse
|
|
2609
|
+
*/
|
|
2610
|
+
'maxSlotsPerBooking'?: number | null;
|
|
1953
2611
|
/**
|
|
1954
2612
|
* Limite d\'annulation en heures
|
|
1955
2613
|
* @type {number}
|
|
@@ -2101,152 +2759,165 @@ export declare const ClubRoleResponseRoleEnum: {
|
|
|
2101
2759
|
};
|
|
2102
2760
|
export type ClubRoleResponseRoleEnum = typeof ClubRoleResponseRoleEnum[keyof typeof ClubRoleResponseRoleEnum];
|
|
2103
2761
|
/**
|
|
2104
|
-
*
|
|
2762
|
+
*
|
|
2105
2763
|
* @export
|
|
2106
|
-
* @interface
|
|
2764
|
+
* @interface ClubSubscriptions
|
|
2107
2765
|
*/
|
|
2108
|
-
export interface
|
|
2766
|
+
export interface ClubSubscriptions {
|
|
2109
2767
|
/**
|
|
2110
|
-
*
|
|
2111
|
-
* @type {
|
|
2112
|
-
* @memberof
|
|
2768
|
+
*
|
|
2769
|
+
* @type {Array<UserClubSubscription>}
|
|
2770
|
+
* @memberof ClubSubscriptions
|
|
2113
2771
|
*/
|
|
2114
|
-
'
|
|
2772
|
+
'subscriptions': Array<UserClubSubscription>;
|
|
2115
2773
|
/**
|
|
2116
|
-
*
|
|
2774
|
+
*
|
|
2117
2775
|
* @type {string}
|
|
2118
|
-
* @memberof
|
|
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
|
|
2776
|
+
* @memberof ClubSubscriptions
|
|
2155
2777
|
*/
|
|
2156
|
-
'
|
|
2778
|
+
'picture': string | null;
|
|
2157
2779
|
/**
|
|
2158
|
-
*
|
|
2780
|
+
*
|
|
2159
2781
|
* @type {string}
|
|
2160
|
-
* @memberof
|
|
2782
|
+
* @memberof ClubSubscriptions
|
|
2161
2783
|
*/
|
|
2162
|
-
'
|
|
2784
|
+
'clubName': string | null;
|
|
2163
2785
|
/**
|
|
2164
|
-
*
|
|
2786
|
+
*
|
|
2165
2787
|
* @type {string}
|
|
2166
|
-
* @memberof
|
|
2788
|
+
* @memberof ClubSubscriptions
|
|
2167
2789
|
*/
|
|
2168
|
-
'
|
|
2790
|
+
'clubId': string | null;
|
|
2169
2791
|
}
|
|
2170
2792
|
/**
|
|
2171
2793
|
*
|
|
2172
2794
|
* @export
|
|
2173
|
-
* @interface
|
|
2795
|
+
* @interface ClubSummary
|
|
2174
2796
|
*/
|
|
2175
|
-
export interface
|
|
2797
|
+
export interface ClubSummary {
|
|
2176
2798
|
/**
|
|
2177
2799
|
*
|
|
2178
|
-
* @type {
|
|
2179
|
-
* @memberof
|
|
2800
|
+
* @type {string}
|
|
2801
|
+
* @memberof ClubSummary
|
|
2180
2802
|
*/
|
|
2181
|
-
'
|
|
2803
|
+
'id': string;
|
|
2182
2804
|
/**
|
|
2183
2805
|
*
|
|
2184
2806
|
* @type {string}
|
|
2185
|
-
* @memberof
|
|
2807
|
+
* @memberof ClubSummary
|
|
2186
2808
|
*/
|
|
2187
|
-
'
|
|
2809
|
+
'name': string;
|
|
2188
2810
|
/**
|
|
2189
2811
|
*
|
|
2190
2812
|
* @type {string}
|
|
2191
|
-
* @memberof
|
|
2813
|
+
* @memberof ClubSummary
|
|
2192
2814
|
*/
|
|
2193
|
-
'
|
|
2815
|
+
'address'?: string | null;
|
|
2194
2816
|
/**
|
|
2195
2817
|
*
|
|
2196
|
-
* @type {
|
|
2197
|
-
* @memberof
|
|
2818
|
+
* @type {UserLocationSummary}
|
|
2819
|
+
* @memberof ClubSummary
|
|
2198
2820
|
*/
|
|
2199
|
-
'
|
|
2821
|
+
'location': UserLocationSummary | null;
|
|
2822
|
+
/**
|
|
2823
|
+
*
|
|
2824
|
+
* @type {number}
|
|
2825
|
+
* @memberof ClubSummary
|
|
2826
|
+
*/
|
|
2827
|
+
'visitCount'?: number;
|
|
2200
2828
|
}
|
|
2201
2829
|
/**
|
|
2202
2830
|
*
|
|
2203
2831
|
* @export
|
|
2204
|
-
* @interface
|
|
2832
|
+
* @interface ClubUserCountResponse
|
|
2205
2833
|
*/
|
|
2206
|
-
export interface
|
|
2834
|
+
export interface ClubUserCountResponse {
|
|
2835
|
+
/**
|
|
2836
|
+
* Nombre d\'utilisateurs du club
|
|
2837
|
+
* @type {number}
|
|
2838
|
+
* @memberof ClubUserCountResponse
|
|
2839
|
+
*/
|
|
2840
|
+
'count': number;
|
|
2841
|
+
}
|
|
2842
|
+
/**
|
|
2843
|
+
*
|
|
2844
|
+
* @export
|
|
2845
|
+
* @interface ClubWeeklySchedule
|
|
2846
|
+
*/
|
|
2847
|
+
export interface ClubWeeklySchedule {
|
|
2848
|
+
/**
|
|
2849
|
+
*
|
|
2850
|
+
* @type {ClubDaySchedule}
|
|
2851
|
+
* @memberof ClubWeeklySchedule
|
|
2852
|
+
*/
|
|
2853
|
+
'sunday': ClubDaySchedule | null;
|
|
2854
|
+
/**
|
|
2855
|
+
*
|
|
2856
|
+
* @type {ClubDaySchedule}
|
|
2857
|
+
* @memberof ClubWeeklySchedule
|
|
2858
|
+
*/
|
|
2859
|
+
'saturday': ClubDaySchedule | null;
|
|
2207
2860
|
/**
|
|
2208
2861
|
*
|
|
2209
|
-
* @type {
|
|
2210
|
-
* @memberof
|
|
2862
|
+
* @type {ClubDaySchedule}
|
|
2863
|
+
* @memberof ClubWeeklySchedule
|
|
2211
2864
|
*/
|
|
2212
|
-
'
|
|
2865
|
+
'friday': ClubDaySchedule | null;
|
|
2213
2866
|
/**
|
|
2214
2867
|
*
|
|
2215
|
-
* @type {
|
|
2216
|
-
* @memberof
|
|
2868
|
+
* @type {ClubDaySchedule}
|
|
2869
|
+
* @memberof ClubWeeklySchedule
|
|
2217
2870
|
*/
|
|
2218
|
-
'
|
|
2871
|
+
'thursday': ClubDaySchedule | null;
|
|
2219
2872
|
/**
|
|
2220
2873
|
*
|
|
2221
|
-
* @type {
|
|
2222
|
-
* @memberof
|
|
2874
|
+
* @type {ClubDaySchedule}
|
|
2875
|
+
* @memberof ClubWeeklySchedule
|
|
2223
2876
|
*/
|
|
2224
|
-
'
|
|
2877
|
+
'wednesday': ClubDaySchedule | null;
|
|
2225
2878
|
/**
|
|
2226
2879
|
*
|
|
2227
|
-
* @type {
|
|
2228
|
-
* @memberof
|
|
2880
|
+
* @type {ClubDaySchedule}
|
|
2881
|
+
* @memberof ClubWeeklySchedule
|
|
2229
2882
|
*/
|
|
2230
|
-
'
|
|
2883
|
+
'tuesday': ClubDaySchedule | null;
|
|
2231
2884
|
/**
|
|
2232
2885
|
*
|
|
2233
|
-
* @type {
|
|
2234
|
-
* @memberof
|
|
2886
|
+
* @type {ClubDaySchedule}
|
|
2887
|
+
* @memberof ClubWeeklySchedule
|
|
2235
2888
|
*/
|
|
2236
|
-
'
|
|
2889
|
+
'monday': ClubDaySchedule | null;
|
|
2237
2890
|
}
|
|
2238
2891
|
/**
|
|
2239
2892
|
*
|
|
2240
2893
|
* @export
|
|
2241
|
-
* @interface
|
|
2894
|
+
* @interface CourtBookingShareItem
|
|
2242
2895
|
*/
|
|
2243
|
-
export interface
|
|
2896
|
+
export interface CourtBookingShareItem {
|
|
2244
2897
|
/**
|
|
2245
|
-
*
|
|
2898
|
+
* ID du terrain
|
|
2899
|
+
* @type {string}
|
|
2900
|
+
* @memberof CourtBookingShareItem
|
|
2901
|
+
*/
|
|
2902
|
+
'courtId': string;
|
|
2903
|
+
/**
|
|
2904
|
+
* Nom du terrain
|
|
2905
|
+
* @type {string}
|
|
2906
|
+
* @memberof CourtBookingShareItem
|
|
2907
|
+
*/
|
|
2908
|
+
'courtName': string | null;
|
|
2909
|
+
/**
|
|
2910
|
+
* Pourcentage des réservations associées à ce terrain
|
|
2246
2911
|
* @type {number}
|
|
2247
|
-
* @memberof
|
|
2912
|
+
* @memberof CourtBookingShareItem
|
|
2248
2913
|
*/
|
|
2249
|
-
'
|
|
2914
|
+
'bookingPercentage': number;
|
|
2915
|
+
/**
|
|
2916
|
+
* Nombre total de réservations utilisant ce terrain
|
|
2917
|
+
* @type {number}
|
|
2918
|
+
* @memberof CourtBookingShareItem
|
|
2919
|
+
*/
|
|
2920
|
+
'totalBookings': number;
|
|
2250
2921
|
}
|
|
2251
2922
|
/**
|
|
2252
2923
|
*
|
|
@@ -2358,11 +3029,11 @@ export interface CourtResponse {
|
|
|
2358
3029
|
*/
|
|
2359
3030
|
'sportName'?: string;
|
|
2360
3031
|
/**
|
|
2361
|
-
*
|
|
2362
|
-
* @type {
|
|
3032
|
+
*
|
|
3033
|
+
* @type {SurfaceType}
|
|
2363
3034
|
* @memberof CourtResponse
|
|
2364
3035
|
*/
|
|
2365
|
-
'surface':
|
|
3036
|
+
'surface': SurfaceType;
|
|
2366
3037
|
/**
|
|
2367
3038
|
* Indique si le terrain est en intérieur
|
|
2368
3039
|
* @type {boolean}
|
|
@@ -2491,61 +3162,6 @@ export declare const CreateClubRoleRequestRoleEnum: {
|
|
|
2491
3162
|
readonly Staff: "staff";
|
|
2492
3163
|
};
|
|
2493
3164
|
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
|
-
}
|
|
2549
3165
|
/**
|
|
2550
3166
|
*
|
|
2551
3167
|
* @export
|
|
@@ -2596,11 +3212,11 @@ export interface CreateCourtRequest {
|
|
|
2596
3212
|
*/
|
|
2597
3213
|
'sportId': string;
|
|
2598
3214
|
/**
|
|
2599
|
-
*
|
|
2600
|
-
* @type {
|
|
3215
|
+
*
|
|
3216
|
+
* @type {SurfaceType}
|
|
2601
3217
|
* @memberof CreateCourtRequest
|
|
2602
3218
|
*/
|
|
2603
|
-
'surface':
|
|
3219
|
+
'surface': SurfaceType;
|
|
2604
3220
|
/**
|
|
2605
3221
|
* Indique si le terrain est en intérieur
|
|
2606
3222
|
* @type {boolean}
|
|
@@ -2658,10 +3274,10 @@ export interface CreateEventRequest {
|
|
|
2658
3274
|
'endDate': string;
|
|
2659
3275
|
/**
|
|
2660
3276
|
*
|
|
2661
|
-
* @type {Array<
|
|
3277
|
+
* @type {Array<string>}
|
|
2662
3278
|
* @memberof CreateEventRequest
|
|
2663
3279
|
*/
|
|
2664
|
-
'courts': Array<
|
|
3280
|
+
'courts': Array<string>;
|
|
2665
3281
|
/**
|
|
2666
3282
|
*
|
|
2667
3283
|
* @type {Array<string>}
|
|
@@ -2722,6 +3338,12 @@ export interface CreateEventRequest {
|
|
|
2722
3338
|
* @memberof CreateEventRequest
|
|
2723
3339
|
*/
|
|
2724
3340
|
'subscriberPrices'?: Array<SubscriberPrice>;
|
|
3341
|
+
/**
|
|
3342
|
+
*
|
|
3343
|
+
* @type {Array<number>}
|
|
3344
|
+
* @memberof CreateEventRequest
|
|
3345
|
+
*/
|
|
3346
|
+
'levels'?: Array<number>;
|
|
2725
3347
|
/**
|
|
2726
3348
|
*
|
|
2727
3349
|
* @type {string}
|
|
@@ -3013,19 +3635,6 @@ export interface DeleteClubRoleResponse {
|
|
|
3013
3635
|
*/
|
|
3014
3636
|
'message': string;
|
|
3015
3637
|
}
|
|
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
3638
|
/**
|
|
3030
3639
|
*
|
|
3031
3640
|
* @export
|
|
@@ -3146,10 +3755,10 @@ export interface EventResponse {
|
|
|
3146
3755
|
'endDate': string;
|
|
3147
3756
|
/**
|
|
3148
3757
|
*
|
|
3149
|
-
* @type {Array<
|
|
3758
|
+
* @type {Array<string>}
|
|
3150
3759
|
* @memberof EventResponse
|
|
3151
3760
|
*/
|
|
3152
|
-
'courts': Array<
|
|
3761
|
+
'courts': Array<string>;
|
|
3153
3762
|
/**
|
|
3154
3763
|
*
|
|
3155
3764
|
* @type {Array<SportWithLevels>}
|
|
@@ -3264,13 +3873,6 @@ export declare const EventResponseVisibilityTypeEnum: {
|
|
|
3264
3873
|
readonly Invitation: "invitation";
|
|
3265
3874
|
};
|
|
3266
3875
|
export type EventResponseVisibilityTypeEnum = typeof EventResponseVisibilityTypeEnum[keyof typeof EventResponseVisibilityTypeEnum];
|
|
3267
|
-
/**
|
|
3268
|
-
*
|
|
3269
|
-
* @export
|
|
3270
|
-
* @interface EventResponseCourtsInner
|
|
3271
|
-
*/
|
|
3272
|
-
export interface EventResponseCourtsInner {
|
|
3273
|
-
}
|
|
3274
3876
|
/**
|
|
3275
3877
|
*
|
|
3276
3878
|
* @export
|
|
@@ -4603,6 +5205,12 @@ export interface PartialClubResponse {
|
|
|
4603
5205
|
* @memberof PartialClubResponse
|
|
4604
5206
|
*/
|
|
4605
5207
|
'sameTimeBookingsLimit'?: number;
|
|
5208
|
+
/**
|
|
5209
|
+
*
|
|
5210
|
+
* @type {number}
|
|
5211
|
+
* @memberof PartialClubResponse
|
|
5212
|
+
*/
|
|
5213
|
+
'maxSlotsPerBooking'?: number;
|
|
4606
5214
|
/**
|
|
4607
5215
|
* Limite d\'annulation en heures
|
|
4608
5216
|
* @type {number}
|
|
@@ -4628,6 +5236,55 @@ export interface PartialClubResponse {
|
|
|
4628
5236
|
*/
|
|
4629
5237
|
'updatedAt'?: ClubResponseUpdatedAt;
|
|
4630
5238
|
}
|
|
5239
|
+
/**
|
|
5240
|
+
* Make all properties in T optional
|
|
5241
|
+
* @export
|
|
5242
|
+
* @interface PartialClubWeeklySchedule
|
|
5243
|
+
*/
|
|
5244
|
+
export interface PartialClubWeeklySchedule {
|
|
5245
|
+
/**
|
|
5246
|
+
*
|
|
5247
|
+
* @type {ClubDaySchedule}
|
|
5248
|
+
* @memberof PartialClubWeeklySchedule
|
|
5249
|
+
*/
|
|
5250
|
+
'monday'?: ClubDaySchedule;
|
|
5251
|
+
/**
|
|
5252
|
+
*
|
|
5253
|
+
* @type {ClubDaySchedule}
|
|
5254
|
+
* @memberof PartialClubWeeklySchedule
|
|
5255
|
+
*/
|
|
5256
|
+
'tuesday'?: ClubDaySchedule;
|
|
5257
|
+
/**
|
|
5258
|
+
*
|
|
5259
|
+
* @type {ClubDaySchedule}
|
|
5260
|
+
* @memberof PartialClubWeeklySchedule
|
|
5261
|
+
*/
|
|
5262
|
+
'wednesday'?: ClubDaySchedule;
|
|
5263
|
+
/**
|
|
5264
|
+
*
|
|
5265
|
+
* @type {ClubDaySchedule}
|
|
5266
|
+
* @memberof PartialClubWeeklySchedule
|
|
5267
|
+
*/
|
|
5268
|
+
'thursday'?: ClubDaySchedule;
|
|
5269
|
+
/**
|
|
5270
|
+
*
|
|
5271
|
+
* @type {ClubDaySchedule}
|
|
5272
|
+
* @memberof PartialClubWeeklySchedule
|
|
5273
|
+
*/
|
|
5274
|
+
'friday'?: ClubDaySchedule;
|
|
5275
|
+
/**
|
|
5276
|
+
*
|
|
5277
|
+
* @type {ClubDaySchedule}
|
|
5278
|
+
* @memberof PartialClubWeeklySchedule
|
|
5279
|
+
*/
|
|
5280
|
+
'saturday'?: ClubDaySchedule;
|
|
5281
|
+
/**
|
|
5282
|
+
*
|
|
5283
|
+
* @type {ClubDaySchedule}
|
|
5284
|
+
* @memberof PartialClubWeeklySchedule
|
|
5285
|
+
*/
|
|
5286
|
+
'sunday'?: ClubDaySchedule;
|
|
5287
|
+
}
|
|
4631
5288
|
/**
|
|
4632
5289
|
*
|
|
4633
5290
|
* @export
|
|
@@ -5711,6 +6368,56 @@ export interface ResetPasswordRequest {
|
|
|
5711
6368
|
*/
|
|
5712
6369
|
'token'?: string;
|
|
5713
6370
|
}
|
|
6371
|
+
/**
|
|
6372
|
+
*
|
|
6373
|
+
* @export
|
|
6374
|
+
* @interface RetentionRateResponse
|
|
6375
|
+
*/
|
|
6376
|
+
export interface RetentionRateResponse {
|
|
6377
|
+
/**
|
|
6378
|
+
* Pourcentage de joueurs fidèles (>= 2 réservations)
|
|
6379
|
+
* @type {number}
|
|
6380
|
+
* @memberof RetentionRateResponse
|
|
6381
|
+
*/
|
|
6382
|
+
'retentionRate': number;
|
|
6383
|
+
/**
|
|
6384
|
+
* Nombre de joueurs fidèles
|
|
6385
|
+
* @type {number}
|
|
6386
|
+
* @memberof RetentionRateResponse
|
|
6387
|
+
*/
|
|
6388
|
+
'loyalPlayers': number;
|
|
6389
|
+
/**
|
|
6390
|
+
* Nombre total de joueurs ayant réservé
|
|
6391
|
+
* @type {number}
|
|
6392
|
+
* @memberof RetentionRateResponse
|
|
6393
|
+
*/
|
|
6394
|
+
'totalPlayers': number;
|
|
6395
|
+
}
|
|
6396
|
+
/**
|
|
6397
|
+
*
|
|
6398
|
+
* @export
|
|
6399
|
+
* @interface RevenueBySportItem
|
|
6400
|
+
*/
|
|
6401
|
+
export interface RevenueBySportItem {
|
|
6402
|
+
/**
|
|
6403
|
+
* ID du sport
|
|
6404
|
+
* @type {string}
|
|
6405
|
+
* @memberof RevenueBySportItem
|
|
6406
|
+
*/
|
|
6407
|
+
'sportId': string;
|
|
6408
|
+
/**
|
|
6409
|
+
* Nom du sport (si disponible)
|
|
6410
|
+
* @type {string}
|
|
6411
|
+
* @memberof RevenueBySportItem
|
|
6412
|
+
*/
|
|
6413
|
+
'sportName': string | null;
|
|
6414
|
+
/**
|
|
6415
|
+
* Chiffre d\'affaires total pour ce sport
|
|
6416
|
+
* @type {number}
|
|
6417
|
+
* @memberof RevenueBySportItem
|
|
6418
|
+
*/
|
|
6419
|
+
'totalTurnover': number;
|
|
6420
|
+
}
|
|
5714
6421
|
/**
|
|
5715
6422
|
*
|
|
5716
6423
|
* @export
|
|
@@ -5740,7 +6447,7 @@ export interface SlotInfo {
|
|
|
5740
6447
|
* @type {CourtInfo}
|
|
5741
6448
|
* @memberof SlotInfo
|
|
5742
6449
|
*/
|
|
5743
|
-
'
|
|
6450
|
+
'court': CourtInfo;
|
|
5744
6451
|
}
|
|
5745
6452
|
/**
|
|
5746
6453
|
*
|
|
@@ -7447,68 +8154,173 @@ export interface SubscriptionPlanResponse {
|
|
|
7447
8154
|
* @type {number}
|
|
7448
8155
|
* @memberof SubscriptionPlanResponse
|
|
7449
8156
|
*/
|
|
7450
|
-
'amountInCents': number;
|
|
8157
|
+
'amountInCents': number;
|
|
8158
|
+
/**
|
|
8159
|
+
*
|
|
8160
|
+
* @type {string}
|
|
8161
|
+
* @memberof SubscriptionPlanResponse
|
|
8162
|
+
*/
|
|
8163
|
+
'currency': string;
|
|
8164
|
+
/**
|
|
8165
|
+
*
|
|
8166
|
+
* @type {PlanInterval}
|
|
8167
|
+
* @memberof SubscriptionPlanResponse
|
|
8168
|
+
*/
|
|
8169
|
+
'interval'?: PlanInterval;
|
|
8170
|
+
/**
|
|
8171
|
+
*
|
|
8172
|
+
* @type {boolean}
|
|
8173
|
+
* @memberof SubscriptionPlanResponse
|
|
8174
|
+
*/
|
|
8175
|
+
'priceActive': boolean;
|
|
8176
|
+
}
|
|
8177
|
+
/**
|
|
8178
|
+
*
|
|
8179
|
+
* @export
|
|
8180
|
+
* @enum {string}
|
|
8181
|
+
*/
|
|
8182
|
+
export declare const SurfaceType: {
|
|
8183
|
+
readonly Clay: "clay";
|
|
8184
|
+
readonly Grass: "grass";
|
|
8185
|
+
readonly Hard: "hard";
|
|
8186
|
+
};
|
|
8187
|
+
export type SurfaceType = typeof SurfaceType[keyof typeof SurfaceType];
|
|
8188
|
+
/**
|
|
8189
|
+
*
|
|
8190
|
+
* @export
|
|
8191
|
+
* @interface Team
|
|
8192
|
+
*/
|
|
8193
|
+
export interface Team {
|
|
8194
|
+
/**
|
|
8195
|
+
*
|
|
8196
|
+
* @type {string}
|
|
8197
|
+
* @memberof Team
|
|
8198
|
+
*/
|
|
8199
|
+
'name': string;
|
|
8200
|
+
/**
|
|
8201
|
+
*
|
|
8202
|
+
* @type {Array<string>}
|
|
8203
|
+
* @memberof Team
|
|
8204
|
+
*/
|
|
8205
|
+
'players': Array<string>;
|
|
8206
|
+
}
|
|
8207
|
+
/**
|
|
8208
|
+
*
|
|
8209
|
+
* @export
|
|
8210
|
+
* @interface UpdateActuality200Response
|
|
8211
|
+
*/
|
|
8212
|
+
export interface UpdateActuality200Response {
|
|
8213
|
+
/**
|
|
8214
|
+
*
|
|
8215
|
+
* @type {any}
|
|
8216
|
+
* @memberof UpdateActuality200Response
|
|
8217
|
+
*/
|
|
8218
|
+
'actuality': any;
|
|
8219
|
+
}
|
|
8220
|
+
/**
|
|
8221
|
+
*
|
|
8222
|
+
* @export
|
|
8223
|
+
* @interface UpdateClubGeneralSettingsRequest
|
|
8224
|
+
*/
|
|
8225
|
+
export interface UpdateClubGeneralSettingsRequest {
|
|
8226
|
+
/**
|
|
8227
|
+
*
|
|
8228
|
+
* @type {string}
|
|
8229
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8230
|
+
*/
|
|
8231
|
+
'name'?: string;
|
|
8232
|
+
/**
|
|
8233
|
+
*
|
|
8234
|
+
* @type {string}
|
|
8235
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8236
|
+
*/
|
|
8237
|
+
'email'?: string;
|
|
8238
|
+
/**
|
|
8239
|
+
*
|
|
8240
|
+
* @type {string}
|
|
8241
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8242
|
+
*/
|
|
8243
|
+
'phone'?: string;
|
|
8244
|
+
/**
|
|
8245
|
+
*
|
|
8246
|
+
* @type {string}
|
|
8247
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8248
|
+
*/
|
|
8249
|
+
'websiteUrl'?: string;
|
|
8250
|
+
/**
|
|
8251
|
+
*
|
|
8252
|
+
* @type {string}
|
|
8253
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
8254
|
+
*/
|
|
8255
|
+
'description'?: string;
|
|
7451
8256
|
/**
|
|
7452
8257
|
*
|
|
7453
8258
|
* @type {string}
|
|
7454
|
-
* @memberof
|
|
8259
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7455
8260
|
*/
|
|
7456
|
-
'
|
|
8261
|
+
'rib'?: string | null;
|
|
7457
8262
|
/**
|
|
7458
8263
|
*
|
|
7459
|
-
* @type {
|
|
7460
|
-
* @memberof
|
|
8264
|
+
* @type {string}
|
|
8265
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7461
8266
|
*/
|
|
7462
|
-
'
|
|
8267
|
+
'logo'?: string | null;
|
|
7463
8268
|
/**
|
|
7464
8269
|
*
|
|
7465
|
-
* @type {
|
|
7466
|
-
* @memberof
|
|
8270
|
+
* @type {ClubLocationSettings}
|
|
8271
|
+
* @memberof UpdateClubGeneralSettingsRequest
|
|
7467
8272
|
*/
|
|
7468
|
-
'
|
|
8273
|
+
'location'?: ClubLocationSettings;
|
|
7469
8274
|
}
|
|
7470
8275
|
/**
|
|
7471
8276
|
*
|
|
7472
8277
|
* @export
|
|
7473
|
-
* @
|
|
8278
|
+
* @interface UpdateClubHoursSettingsRequest
|
|
7474
8279
|
*/
|
|
7475
|
-
export
|
|
7476
|
-
|
|
7477
|
-
|
|
7478
|
-
|
|
7479
|
-
|
|
7480
|
-
|
|
8280
|
+
export interface UpdateClubHoursSettingsRequest {
|
|
8281
|
+
/**
|
|
8282
|
+
*
|
|
8283
|
+
* @type {PartialClubWeeklySchedule}
|
|
8284
|
+
* @memberof UpdateClubHoursSettingsRequest
|
|
8285
|
+
*/
|
|
8286
|
+
'schedule'?: PartialClubWeeklySchedule;
|
|
8287
|
+
/**
|
|
8288
|
+
*
|
|
8289
|
+
* @type {Array<ClubPricingPeriodResponse>}
|
|
8290
|
+
* @memberof UpdateClubHoursSettingsRequest
|
|
8291
|
+
*/
|
|
8292
|
+
'pricingPeriods'?: Array<ClubPricingPeriodResponse>;
|
|
8293
|
+
}
|
|
7481
8294
|
/**
|
|
7482
8295
|
*
|
|
7483
8296
|
* @export
|
|
7484
|
-
* @interface
|
|
8297
|
+
* @interface UpdateClubPresentationSettingsRequest
|
|
7485
8298
|
*/
|
|
7486
|
-
export interface
|
|
8299
|
+
export interface UpdateClubPresentationSettingsRequest {
|
|
7487
8300
|
/**
|
|
7488
8301
|
*
|
|
7489
8302
|
* @type {string}
|
|
7490
|
-
* @memberof
|
|
8303
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
7491
8304
|
*/
|
|
7492
|
-
'
|
|
8305
|
+
'description'?: string;
|
|
7493
8306
|
/**
|
|
7494
8307
|
*
|
|
7495
8308
|
* @type {Array<string>}
|
|
7496
|
-
* @memberof
|
|
8309
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
7497
8310
|
*/
|
|
7498
|
-
'
|
|
7499
|
-
}
|
|
7500
|
-
/**
|
|
7501
|
-
*
|
|
7502
|
-
* @export
|
|
7503
|
-
* @interface UpdateActuality200Response
|
|
7504
|
-
*/
|
|
7505
|
-
export interface UpdateActuality200Response {
|
|
8311
|
+
'tags'?: Array<string>;
|
|
7506
8312
|
/**
|
|
7507
8313
|
*
|
|
7508
|
-
* @type {
|
|
7509
|
-
* @memberof
|
|
8314
|
+
* @type {Array<string | null>}
|
|
8315
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
7510
8316
|
*/
|
|
7511
|
-
'
|
|
8317
|
+
'bannerImages'?: Array<string | null>;
|
|
8318
|
+
/**
|
|
8319
|
+
*
|
|
8320
|
+
* @type {Array<string | null>}
|
|
8321
|
+
* @memberof UpdateClubPresentationSettingsRequest
|
|
8322
|
+
*/
|
|
8323
|
+
'galleryImages'?: Array<string | null>;
|
|
7512
8324
|
}
|
|
7513
8325
|
/**
|
|
7514
8326
|
*
|
|
@@ -7621,6 +8433,43 @@ export interface UpdateClubRequestLocationCoordinates {
|
|
|
7621
8433
|
*/
|
|
7622
8434
|
'lat'?: number;
|
|
7623
8435
|
}
|
|
8436
|
+
/**
|
|
8437
|
+
*
|
|
8438
|
+
* @export
|
|
8439
|
+
* @interface UpdateClubReservationSettingsRequest
|
|
8440
|
+
*/
|
|
8441
|
+
export interface UpdateClubReservationSettingsRequest {
|
|
8442
|
+
/**
|
|
8443
|
+
*
|
|
8444
|
+
* @type {number}
|
|
8445
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
8446
|
+
*/
|
|
8447
|
+
'maxWeeklyBookings': number | null;
|
|
8448
|
+
/**
|
|
8449
|
+
*
|
|
8450
|
+
* @type {boolean}
|
|
8451
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
8452
|
+
*/
|
|
8453
|
+
'unlimitedWeeklyBookings': boolean;
|
|
8454
|
+
/**
|
|
8455
|
+
*
|
|
8456
|
+
* @type {number}
|
|
8457
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
8458
|
+
*/
|
|
8459
|
+
'sameTimeBookingsLimit': number;
|
|
8460
|
+
/**
|
|
8461
|
+
*
|
|
8462
|
+
* @type {number}
|
|
8463
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
8464
|
+
*/
|
|
8465
|
+
'cancellationDelayInHours': number;
|
|
8466
|
+
/**
|
|
8467
|
+
*
|
|
8468
|
+
* @type {number}
|
|
8469
|
+
* @memberof UpdateClubReservationSettingsRequest
|
|
8470
|
+
*/
|
|
8471
|
+
'bookingPeriodInDays': number;
|
|
8472
|
+
}
|
|
7624
8473
|
/**
|
|
7625
8474
|
*
|
|
7626
8475
|
* @export
|
|
@@ -7646,55 +8495,6 @@ export declare const UpdateClubRoleRequestRoleEnum: {
|
|
|
7646
8495
|
readonly Staff: "staff";
|
|
7647
8496
|
};
|
|
7648
8497
|
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
8498
|
/**
|
|
7699
8499
|
*
|
|
7700
8500
|
* @export
|
|
@@ -7773,10 +8573,10 @@ export interface UpdateEventRequest {
|
|
|
7773
8573
|
'endDate'?: string;
|
|
7774
8574
|
/**
|
|
7775
8575
|
*
|
|
7776
|
-
* @type {Array<
|
|
8576
|
+
* @type {Array<string>}
|
|
7777
8577
|
* @memberof UpdateEventRequest
|
|
7778
8578
|
*/
|
|
7779
|
-
'courts'?: Array<
|
|
8579
|
+
'courts'?: Array<string>;
|
|
7780
8580
|
/**
|
|
7781
8581
|
*
|
|
7782
8582
|
* @type {Array<string>}
|
|
@@ -8132,6 +8932,12 @@ export interface UserClubMembership {
|
|
|
8132
8932
|
* @memberof UserClubMembership
|
|
8133
8933
|
*/
|
|
8134
8934
|
'isPrivateOrganization': boolean;
|
|
8935
|
+
/**
|
|
8936
|
+
*
|
|
8937
|
+
* @type {boolean}
|
|
8938
|
+
* @memberof UserClubMembership
|
|
8939
|
+
*/
|
|
8940
|
+
'hasAvailableSubscriptions': boolean;
|
|
8135
8941
|
}
|
|
8136
8942
|
/**
|
|
8137
8943
|
*
|
|
@@ -8261,6 +9067,12 @@ export interface UserInfo {
|
|
|
8261
9067
|
* @memberof UserInfo
|
|
8262
9068
|
*/
|
|
8263
9069
|
'email': string;
|
|
9070
|
+
/**
|
|
9071
|
+
*
|
|
9072
|
+
* @type {string}
|
|
9073
|
+
* @memberof UserInfo
|
|
9074
|
+
*/
|
|
9075
|
+
'phoneNumber'?: string;
|
|
8264
9076
|
/**
|
|
8265
9077
|
*
|
|
8266
9078
|
* @type {string}
|
|
@@ -9858,6 +10670,29 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
9858
10670
|
* @throws {RequiredError}
|
|
9859
10671
|
*/
|
|
9860
10672
|
getAnalyticsBySport: (sportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10673
|
+
/**
|
|
10674
|
+
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
10675
|
+
* @param {string} playerId
|
|
10676
|
+
* @param {number} [page]
|
|
10677
|
+
* @param {number} [pageSize]
|
|
10678
|
+
* @param {*} [options] Override http request option.
|
|
10679
|
+
* @throws {RequiredError}
|
|
10680
|
+
*/
|
|
10681
|
+
getClubPlayerBookingsById: (playerId: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10682
|
+
/**
|
|
10683
|
+
* Récupère les informations détaillées d\'un joueur par son ID
|
|
10684
|
+
* @param {string} playerId
|
|
10685
|
+
* @param {*} [options] Override http request option.
|
|
10686
|
+
* @throws {RequiredError}
|
|
10687
|
+
*/
|
|
10688
|
+
getClubPlayerById: (playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10689
|
+
/**
|
|
10690
|
+
* Récupère les statistiques d\'un joueur pour le staff
|
|
10691
|
+
* @param {string} playerId
|
|
10692
|
+
* @param {*} [options] Override http request option.
|
|
10693
|
+
* @throws {RequiredError}
|
|
10694
|
+
*/
|
|
10695
|
+
getClubPlayerStatisticsById: (playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9861
10696
|
/**
|
|
9862
10697
|
* Récupère la liste des joueurs du club
|
|
9863
10698
|
* @param {*} [options] Override http request option.
|
|
@@ -9905,12 +10740,30 @@ export declare const ClubAnalyticsStaffApiAxiosParamCreator: (configuration?: Co
|
|
|
9905
10740
|
* @throws {RequiredError}
|
|
9906
10741
|
*/
|
|
9907
10742
|
getNumberOfClubUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10743
|
+
/**
|
|
10744
|
+
* Calcule le taux de fidélisation des joueurs
|
|
10745
|
+
* @param {*} [options] Override http request option.
|
|
10746
|
+
* @throws {RequiredError}
|
|
10747
|
+
*/
|
|
10748
|
+
getRetentionRate: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10749
|
+
/**
|
|
10750
|
+
* Récupère le chiffre d\'affaires par sport
|
|
10751
|
+
* @param {*} [options] Override http request option.
|
|
10752
|
+
* @throws {RequiredError}
|
|
10753
|
+
*/
|
|
10754
|
+
getRevenueBySport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9908
10755
|
/**
|
|
9909
10756
|
* Récupère les 10 prochaines réservations
|
|
9910
10757
|
* @param {*} [options] Override http request option.
|
|
9911
10758
|
* @throws {RequiredError}
|
|
9912
10759
|
*/
|
|
9913
10760
|
getTenNextBookings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10761
|
+
/**
|
|
10762
|
+
* Classement des terrains les plus réservés
|
|
10763
|
+
* @param {*} [options] Override http request option.
|
|
10764
|
+
* @throws {RequiredError}
|
|
10765
|
+
*/
|
|
10766
|
+
getTopCourtsByBookings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9914
10767
|
/**
|
|
9915
10768
|
* Récupère le chiffre d\'affaires annuel avec détail mensuel
|
|
9916
10769
|
* @param {string} year
|
|
@@ -9931,6 +10784,29 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
9931
10784
|
* @throws {RequiredError}
|
|
9932
10785
|
*/
|
|
9933
10786
|
getAnalyticsBySport(sportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SportAnalyticsResponse>>;
|
|
10787
|
+
/**
|
|
10788
|
+
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
10789
|
+
* @param {string} playerId
|
|
10790
|
+
* @param {number} [page]
|
|
10791
|
+
* @param {number} [pageSize]
|
|
10792
|
+
* @param {*} [options] Override http request option.
|
|
10793
|
+
* @throws {RequiredError}
|
|
10794
|
+
*/
|
|
10795
|
+
getClubPlayerBookingsById(playerId: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerBookingsResponse>>;
|
|
10796
|
+
/**
|
|
10797
|
+
* Récupère les informations détaillées d\'un joueur par son ID
|
|
10798
|
+
* @param {string} playerId
|
|
10799
|
+
* @param {*} [options] Override http request option.
|
|
10800
|
+
* @throws {RequiredError}
|
|
10801
|
+
*/
|
|
10802
|
+
getClubPlayerById(playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerDetailResponse>>;
|
|
10803
|
+
/**
|
|
10804
|
+
* Récupère les statistiques d\'un joueur pour le staff
|
|
10805
|
+
* @param {string} playerId
|
|
10806
|
+
* @param {*} [options] Override http request option.
|
|
10807
|
+
* @throws {RequiredError}
|
|
10808
|
+
*/
|
|
10809
|
+
getClubPlayerStatisticsById(playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPlayerStatisticsResponse>>;
|
|
9934
10810
|
/**
|
|
9935
10811
|
* Récupère la liste des joueurs du club
|
|
9936
10812
|
* @param {*} [options] Override http request option.
|
|
@@ -9978,12 +10854,30 @@ export declare const ClubAnalyticsStaffApiFp: (configuration?: Configuration) =>
|
|
|
9978
10854
|
* @throws {RequiredError}
|
|
9979
10855
|
*/
|
|
9980
10856
|
getNumberOfClubUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubUserCountResponse>>;
|
|
10857
|
+
/**
|
|
10858
|
+
* Calcule le taux de fidélisation des joueurs
|
|
10859
|
+
* @param {*} [options] Override http request option.
|
|
10860
|
+
* @throws {RequiredError}
|
|
10861
|
+
*/
|
|
10862
|
+
getRetentionRate(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RetentionRateResponse>>;
|
|
10863
|
+
/**
|
|
10864
|
+
* Récupère le chiffre d\'affaires par sport
|
|
10865
|
+
* @param {*} [options] Override http request option.
|
|
10866
|
+
* @throws {RequiredError}
|
|
10867
|
+
*/
|
|
10868
|
+
getRevenueBySport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RevenueBySportItem>>>;
|
|
9981
10869
|
/**
|
|
9982
10870
|
* Récupère les 10 prochaines réservations
|
|
9983
10871
|
* @param {*} [options] Override http request option.
|
|
9984
10872
|
* @throws {RequiredError}
|
|
9985
10873
|
*/
|
|
9986
10874
|
getTenNextBookings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BookingAnalyticsResponse>>>;
|
|
10875
|
+
/**
|
|
10876
|
+
* Classement des terrains les plus réservés
|
|
10877
|
+
* @param {*} [options] Override http request option.
|
|
10878
|
+
* @throws {RequiredError}
|
|
10879
|
+
*/
|
|
10880
|
+
getTopCourtsByBookings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CourtBookingShareItem>>>;
|
|
9987
10881
|
/**
|
|
9988
10882
|
* Récupère le chiffre d\'affaires annuel avec détail mensuel
|
|
9989
10883
|
* @param {string} year
|
|
@@ -10004,6 +10898,27 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
10004
10898
|
* @throws {RequiredError}
|
|
10005
10899
|
*/
|
|
10006
10900
|
getAnalyticsBySport(requestParameters: ClubAnalyticsStaffApiGetAnalyticsBySportRequest, options?: RawAxiosRequestConfig): AxiosPromise<SportAnalyticsResponse>;
|
|
10901
|
+
/**
|
|
10902
|
+
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
10903
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest} requestParameters Request parameters.
|
|
10904
|
+
* @param {*} [options] Override http request option.
|
|
10905
|
+
* @throws {RequiredError}
|
|
10906
|
+
*/
|
|
10907
|
+
getClubPlayerBookingsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayerBookingsResponse>;
|
|
10908
|
+
/**
|
|
10909
|
+
* Récupère les informations détaillées d\'un joueur par son ID
|
|
10910
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerByIdRequest} requestParameters Request parameters.
|
|
10911
|
+
* @param {*} [options] Override http request option.
|
|
10912
|
+
* @throws {RequiredError}
|
|
10913
|
+
*/
|
|
10914
|
+
getClubPlayerById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayerDetailResponse>;
|
|
10915
|
+
/**
|
|
10916
|
+
* Récupère les statistiques d\'un joueur pour le staff
|
|
10917
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest} requestParameters Request parameters.
|
|
10918
|
+
* @param {*} [options] Override http request option.
|
|
10919
|
+
* @throws {RequiredError}
|
|
10920
|
+
*/
|
|
10921
|
+
getClubPlayerStatisticsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPlayerStatisticsResponse>;
|
|
10007
10922
|
/**
|
|
10008
10923
|
* Récupère la liste des joueurs du club
|
|
10009
10924
|
* @param {*} [options] Override http request option.
|
|
@@ -10049,12 +10964,30 @@ export declare const ClubAnalyticsStaffApiFactory: (configuration?: Configuratio
|
|
|
10049
10964
|
* @throws {RequiredError}
|
|
10050
10965
|
*/
|
|
10051
10966
|
getNumberOfClubUsers(options?: RawAxiosRequestConfig): AxiosPromise<ClubUserCountResponse>;
|
|
10967
|
+
/**
|
|
10968
|
+
* Calcule le taux de fidélisation des joueurs
|
|
10969
|
+
* @param {*} [options] Override http request option.
|
|
10970
|
+
* @throws {RequiredError}
|
|
10971
|
+
*/
|
|
10972
|
+
getRetentionRate(options?: RawAxiosRequestConfig): AxiosPromise<RetentionRateResponse>;
|
|
10973
|
+
/**
|
|
10974
|
+
* Récupère le chiffre d\'affaires par sport
|
|
10975
|
+
* @param {*} [options] Override http request option.
|
|
10976
|
+
* @throws {RequiredError}
|
|
10977
|
+
*/
|
|
10978
|
+
getRevenueBySport(options?: RawAxiosRequestConfig): AxiosPromise<Array<RevenueBySportItem>>;
|
|
10052
10979
|
/**
|
|
10053
10980
|
* Récupère les 10 prochaines réservations
|
|
10054
10981
|
* @param {*} [options] Override http request option.
|
|
10055
10982
|
* @throws {RequiredError}
|
|
10056
10983
|
*/
|
|
10057
10984
|
getTenNextBookings(options?: RawAxiosRequestConfig): AxiosPromise<Array<BookingAnalyticsResponse>>;
|
|
10985
|
+
/**
|
|
10986
|
+
* Classement des terrains les plus réservés
|
|
10987
|
+
* @param {*} [options] Override http request option.
|
|
10988
|
+
* @throws {RequiredError}
|
|
10989
|
+
*/
|
|
10990
|
+
getTopCourtsByBookings(options?: RawAxiosRequestConfig): AxiosPromise<Array<CourtBookingShareItem>>;
|
|
10058
10991
|
/**
|
|
10059
10992
|
* Récupère le chiffre d\'affaires annuel avec détail mensuel
|
|
10060
10993
|
* @param {ClubAnalyticsStaffApiGetYearlyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -10076,6 +11009,57 @@ export interface ClubAnalyticsStaffApiGetAnalyticsBySportRequest {
|
|
|
10076
11009
|
*/
|
|
10077
11010
|
readonly sportId: string;
|
|
10078
11011
|
}
|
|
11012
|
+
/**
|
|
11013
|
+
* Request parameters for getClubPlayerBookingsById operation in ClubAnalyticsStaffApi.
|
|
11014
|
+
* @export
|
|
11015
|
+
* @interface ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest
|
|
11016
|
+
*/
|
|
11017
|
+
export interface ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest {
|
|
11018
|
+
/**
|
|
11019
|
+
*
|
|
11020
|
+
* @type {string}
|
|
11021
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
11022
|
+
*/
|
|
11023
|
+
readonly playerId: string;
|
|
11024
|
+
/**
|
|
11025
|
+
*
|
|
11026
|
+
* @type {number}
|
|
11027
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
11028
|
+
*/
|
|
11029
|
+
readonly page?: number;
|
|
11030
|
+
/**
|
|
11031
|
+
*
|
|
11032
|
+
* @type {number}
|
|
11033
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerBookingsById
|
|
11034
|
+
*/
|
|
11035
|
+
readonly pageSize?: number;
|
|
11036
|
+
}
|
|
11037
|
+
/**
|
|
11038
|
+
* Request parameters for getClubPlayerById operation in ClubAnalyticsStaffApi.
|
|
11039
|
+
* @export
|
|
11040
|
+
* @interface ClubAnalyticsStaffApiGetClubPlayerByIdRequest
|
|
11041
|
+
*/
|
|
11042
|
+
export interface ClubAnalyticsStaffApiGetClubPlayerByIdRequest {
|
|
11043
|
+
/**
|
|
11044
|
+
*
|
|
11045
|
+
* @type {string}
|
|
11046
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerById
|
|
11047
|
+
*/
|
|
11048
|
+
readonly playerId: string;
|
|
11049
|
+
}
|
|
11050
|
+
/**
|
|
11051
|
+
* Request parameters for getClubPlayerStatisticsById operation in ClubAnalyticsStaffApi.
|
|
11052
|
+
* @export
|
|
11053
|
+
* @interface ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest
|
|
11054
|
+
*/
|
|
11055
|
+
export interface ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest {
|
|
11056
|
+
/**
|
|
11057
|
+
*
|
|
11058
|
+
* @type {string}
|
|
11059
|
+
* @memberof ClubAnalyticsStaffApiGetClubPlayerStatisticsById
|
|
11060
|
+
*/
|
|
11061
|
+
readonly playerId: string;
|
|
11062
|
+
}
|
|
10079
11063
|
/**
|
|
10080
11064
|
* Request parameters for getDailyTurnOver operation in ClubAnalyticsStaffApi.
|
|
10081
11065
|
* @export
|
|
@@ -10155,6 +11139,30 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
10155
11139
|
* @memberof ClubAnalyticsStaffApi
|
|
10156
11140
|
*/
|
|
10157
11141
|
getAnalyticsBySport(requestParameters: ClubAnalyticsStaffApiGetAnalyticsBySportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportAnalyticsResponse, any, {}>>;
|
|
11142
|
+
/**
|
|
11143
|
+
* Récupère les réservations d\'un joueur par son ID (à venir et passées)
|
|
11144
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest} requestParameters Request parameters.
|
|
11145
|
+
* @param {*} [options] Override http request option.
|
|
11146
|
+
* @throws {RequiredError}
|
|
11147
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11148
|
+
*/
|
|
11149
|
+
getClubPlayerBookingsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerBookingsByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayerBookingsResponse, any, {}>>;
|
|
11150
|
+
/**
|
|
11151
|
+
* Récupère les informations détaillées d\'un joueur par son ID
|
|
11152
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerByIdRequest} requestParameters Request parameters.
|
|
11153
|
+
* @param {*} [options] Override http request option.
|
|
11154
|
+
* @throws {RequiredError}
|
|
11155
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11156
|
+
*/
|
|
11157
|
+
getClubPlayerById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayerDetailResponse, any, {}>>;
|
|
11158
|
+
/**
|
|
11159
|
+
* Récupère les statistiques d\'un joueur pour le staff
|
|
11160
|
+
* @param {ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest} requestParameters Request parameters.
|
|
11161
|
+
* @param {*} [options] Override http request option.
|
|
11162
|
+
* @throws {RequiredError}
|
|
11163
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11164
|
+
*/
|
|
11165
|
+
getClubPlayerStatisticsById(requestParameters: ClubAnalyticsStaffApiGetClubPlayerStatisticsByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPlayerStatisticsResponse, any, {}>>;
|
|
10158
11166
|
/**
|
|
10159
11167
|
* Récupère la liste des joueurs du club
|
|
10160
11168
|
* @param {*} [options] Override http request option.
|
|
@@ -10184,36 +11192,57 @@ export declare class ClubAnalyticsStaffApi extends BaseAPI {
|
|
|
10184
11192
|
* @throws {RequiredError}
|
|
10185
11193
|
* @memberof ClubAnalyticsStaffApi
|
|
10186
11194
|
*/
|
|
10187
|
-
getInfillPercentagePerPeriod(requestParameters?: ClubAnalyticsStaffApiGetInfillPercentagePerPeriodRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetInfillPercentagePerPeriod200Response, any, {}>>;
|
|
11195
|
+
getInfillPercentagePerPeriod(requestParameters?: ClubAnalyticsStaffApiGetInfillPercentagePerPeriodRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetInfillPercentagePerPeriod200Response, any, {}>>;
|
|
11196
|
+
/**
|
|
11197
|
+
* Récupère le chiffre d\'affaires des 6 derniers mois
|
|
11198
|
+
* @param {*} [options] Override http request option.
|
|
11199
|
+
* @throws {RequiredError}
|
|
11200
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11201
|
+
*/
|
|
11202
|
+
getLastSixMonthsTurnover(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LastSixMonthsTurnoverItem[], any, {}>>;
|
|
11203
|
+
/**
|
|
11204
|
+
* Récupère le chiffre d\'affaires mensuel
|
|
11205
|
+
* @param {ClubAnalyticsStaffApiGetMonthlyTurnOverRequest} requestParameters Request parameters.
|
|
11206
|
+
* @param {*} [options] Override http request option.
|
|
11207
|
+
* @throws {RequiredError}
|
|
11208
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11209
|
+
*/
|
|
11210
|
+
getMonthlyTurnOver(requestParameters: ClubAnalyticsStaffApiGetMonthlyTurnOverRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MonthlyTurnoverResponse, any, {}>>;
|
|
11211
|
+
/**
|
|
11212
|
+
* Récupère le nombre d\'utilisateurs du club
|
|
11213
|
+
* @param {*} [options] Override http request option.
|
|
11214
|
+
* @throws {RequiredError}
|
|
11215
|
+
* @memberof ClubAnalyticsStaffApi
|
|
11216
|
+
*/
|
|
11217
|
+
getNumberOfClubUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubUserCountResponse, any, {}>>;
|
|
10188
11218
|
/**
|
|
10189
|
-
*
|
|
11219
|
+
* Calcule le taux de fidélisation des joueurs
|
|
10190
11220
|
* @param {*} [options] Override http request option.
|
|
10191
11221
|
* @throws {RequiredError}
|
|
10192
11222
|
* @memberof ClubAnalyticsStaffApi
|
|
10193
11223
|
*/
|
|
10194
|
-
|
|
11224
|
+
getRetentionRate(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RetentionRateResponse, any, {}>>;
|
|
10195
11225
|
/**
|
|
10196
|
-
* Récupère le chiffre d\'affaires
|
|
10197
|
-
* @param {ClubAnalyticsStaffApiGetMonthlyTurnOverRequest} requestParameters Request parameters.
|
|
11226
|
+
* Récupère le chiffre d\'affaires par sport
|
|
10198
11227
|
* @param {*} [options] Override http request option.
|
|
10199
11228
|
* @throws {RequiredError}
|
|
10200
11229
|
* @memberof ClubAnalyticsStaffApi
|
|
10201
11230
|
*/
|
|
10202
|
-
|
|
11231
|
+
getRevenueBySport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RevenueBySportItem[], any, {}>>;
|
|
10203
11232
|
/**
|
|
10204
|
-
* Récupère
|
|
11233
|
+
* Récupère les 10 prochaines réservations
|
|
10205
11234
|
* @param {*} [options] Override http request option.
|
|
10206
11235
|
* @throws {RequiredError}
|
|
10207
11236
|
* @memberof ClubAnalyticsStaffApi
|
|
10208
11237
|
*/
|
|
10209
|
-
|
|
11238
|
+
getTenNextBookings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingAnalyticsResponse[], any, {}>>;
|
|
10210
11239
|
/**
|
|
10211
|
-
*
|
|
11240
|
+
* Classement des terrains les plus réservés
|
|
10212
11241
|
* @param {*} [options] Override http request option.
|
|
10213
11242
|
* @throws {RequiredError}
|
|
10214
11243
|
* @memberof ClubAnalyticsStaffApi
|
|
10215
11244
|
*/
|
|
10216
|
-
|
|
11245
|
+
getTopCourtsByBookings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CourtBookingShareItem[], any, {}>>;
|
|
10217
11246
|
/**
|
|
10218
11247
|
* Récupère le chiffre d\'affaires annuel avec détail mensuel
|
|
10219
11248
|
* @param {ClubAnalyticsStaffApiGetYearlyTurnOverRequest} requestParameters Request parameters.
|
|
@@ -10507,32 +11536,33 @@ export declare class ClubRolesStaffApi extends BaseAPI {
|
|
|
10507
11536
|
*/
|
|
10508
11537
|
export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
10509
11538
|
/**
|
|
10510
|
-
*
|
|
10511
|
-
* @param {
|
|
10512
|
-
* @param {CreateClubSettingsRequest} createClubSettingsRequest
|
|
11539
|
+
*
|
|
11540
|
+
* @param {UpdateClubGeneralSettingsRequest} updateClubGeneralSettingsRequest
|
|
10513
11541
|
* @param {*} [options] Override http request option.
|
|
10514
11542
|
* @throws {RequiredError}
|
|
10515
11543
|
*/
|
|
10516
|
-
|
|
11544
|
+
updateClubGeneralSettings: (updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10517
11545
|
/**
|
|
10518
|
-
*
|
|
11546
|
+
*
|
|
11547
|
+
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
10519
11548
|
* @param {*} [options] Override http request option.
|
|
10520
11549
|
* @throws {RequiredError}
|
|
10521
11550
|
*/
|
|
10522
|
-
|
|
11551
|
+
updateHoursSettings: (updateClubHoursSettingsRequest: UpdateClubHoursSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10523
11552
|
/**
|
|
10524
|
-
*
|
|
11553
|
+
*
|
|
11554
|
+
* @param {ClubPresentationSettingsResponse} clubPresentationSettingsResponse
|
|
10525
11555
|
* @param {*} [options] Override http request option.
|
|
10526
11556
|
* @throws {RequiredError}
|
|
10527
11557
|
*/
|
|
10528
|
-
|
|
11558
|
+
updatePresentationSettings: (clubPresentationSettingsResponse: ClubPresentationSettingsResponse, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10529
11559
|
/**
|
|
10530
|
-
*
|
|
10531
|
-
* @param {
|
|
11560
|
+
*
|
|
11561
|
+
* @param {UpdateClubReservationSettingsRequest} updateClubReservationSettingsRequest
|
|
10532
11562
|
* @param {*} [options] Override http request option.
|
|
10533
11563
|
* @throws {RequiredError}
|
|
10534
11564
|
*/
|
|
10535
|
-
|
|
11565
|
+
updateReservationSettings: (updateClubReservationSettingsRequest: UpdateClubReservationSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10536
11566
|
};
|
|
10537
11567
|
/**
|
|
10538
11568
|
* ClubSettingsManagerApi - functional programming interface
|
|
@@ -10540,32 +11570,33 @@ export declare const ClubSettingsManagerApiAxiosParamCreator: (configuration?: C
|
|
|
10540
11570
|
*/
|
|
10541
11571
|
export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) => {
|
|
10542
11572
|
/**
|
|
10543
|
-
*
|
|
10544
|
-
* @param {
|
|
10545
|
-
* @param {CreateClubSettingsRequest} createClubSettingsRequest
|
|
11573
|
+
*
|
|
11574
|
+
* @param {UpdateClubGeneralSettingsRequest} updateClubGeneralSettingsRequest
|
|
10546
11575
|
* @param {*} [options] Override http request option.
|
|
10547
11576
|
* @throws {RequiredError}
|
|
10548
11577
|
*/
|
|
10549
|
-
|
|
11578
|
+
updateClubGeneralSettings(updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubGeneralSettingsResponse>>;
|
|
10550
11579
|
/**
|
|
10551
|
-
*
|
|
11580
|
+
*
|
|
11581
|
+
* @param {UpdateClubHoursSettingsRequest} updateClubHoursSettingsRequest
|
|
10552
11582
|
* @param {*} [options] Override http request option.
|
|
10553
11583
|
* @throws {RequiredError}
|
|
10554
11584
|
*/
|
|
10555
|
-
|
|
11585
|
+
updateHoursSettings(updateClubHoursSettingsRequest: UpdateClubHoursSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
10556
11586
|
/**
|
|
10557
|
-
*
|
|
11587
|
+
*
|
|
11588
|
+
* @param {ClubPresentationSettingsResponse} clubPresentationSettingsResponse
|
|
10558
11589
|
* @param {*} [options] Override http request option.
|
|
10559
11590
|
* @throws {RequiredError}
|
|
10560
11591
|
*/
|
|
10561
|
-
|
|
11592
|
+
updatePresentationSettings(clubPresentationSettingsResponse: ClubPresentationSettingsResponse, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
10562
11593
|
/**
|
|
10563
|
-
*
|
|
10564
|
-
* @param {
|
|
11594
|
+
*
|
|
11595
|
+
* @param {UpdateClubReservationSettingsRequest} updateClubReservationSettingsRequest
|
|
10565
11596
|
* @param {*} [options] Override http request option.
|
|
10566
11597
|
* @throws {RequiredError}
|
|
10567
11598
|
*/
|
|
10568
|
-
|
|
11599
|
+
updateReservationSettings(updateClubReservationSettingsRequest: UpdateClubReservationSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubReservationSettingsResponse>>;
|
|
10569
11600
|
};
|
|
10570
11601
|
/**
|
|
10571
11602
|
* ClubSettingsManagerApi - factory interface
|
|
@@ -10573,63 +11604,85 @@ export declare const ClubSettingsManagerApiFp: (configuration?: Configuration) =
|
|
|
10573
11604
|
*/
|
|
10574
11605
|
export declare const ClubSettingsManagerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10575
11606
|
/**
|
|
10576
|
-
*
|
|
10577
|
-
* @param {
|
|
11607
|
+
*
|
|
11608
|
+
* @param {ClubSettingsManagerApiUpdateClubGeneralSettingsRequest} requestParameters Request parameters.
|
|
10578
11609
|
* @param {*} [options] Override http request option.
|
|
10579
11610
|
* @throws {RequiredError}
|
|
10580
11611
|
*/
|
|
10581
|
-
|
|
11612
|
+
updateClubGeneralSettings(requestParameters: ClubSettingsManagerApiUpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubGeneralSettingsResponse>;
|
|
10582
11613
|
/**
|
|
10583
|
-
*
|
|
11614
|
+
*
|
|
11615
|
+
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|
|
10584
11616
|
* @param {*} [options] Override http request option.
|
|
10585
11617
|
* @throws {RequiredError}
|
|
10586
11618
|
*/
|
|
10587
|
-
|
|
11619
|
+
updateHoursSettings(requestParameters: ClubSettingsManagerApiUpdateHoursSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
10588
11620
|
/**
|
|
10589
|
-
*
|
|
11621
|
+
*
|
|
11622
|
+
* @param {ClubSettingsManagerApiUpdatePresentationSettingsRequest} requestParameters Request parameters.
|
|
10590
11623
|
* @param {*} [options] Override http request option.
|
|
10591
11624
|
* @throws {RequiredError}
|
|
10592
11625
|
*/
|
|
10593
|
-
|
|
11626
|
+
updatePresentationSettings(requestParameters: ClubSettingsManagerApiUpdatePresentationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
10594
11627
|
/**
|
|
10595
|
-
*
|
|
10596
|
-
* @param {
|
|
11628
|
+
*
|
|
11629
|
+
* @param {ClubSettingsManagerApiUpdateReservationSettingsRequest} requestParameters Request parameters.
|
|
10597
11630
|
* @param {*} [options] Override http request option.
|
|
10598
11631
|
* @throws {RequiredError}
|
|
10599
11632
|
*/
|
|
10600
|
-
|
|
11633
|
+
updateReservationSettings(requestParameters: ClubSettingsManagerApiUpdateReservationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubReservationSettingsResponse>;
|
|
10601
11634
|
};
|
|
10602
11635
|
/**
|
|
10603
|
-
* Request parameters for
|
|
11636
|
+
* Request parameters for updateClubGeneralSettings operation in ClubSettingsManagerApi.
|
|
10604
11637
|
* @export
|
|
10605
|
-
* @interface
|
|
11638
|
+
* @interface ClubSettingsManagerApiUpdateClubGeneralSettingsRequest
|
|
10606
11639
|
*/
|
|
10607
|
-
export interface
|
|
11640
|
+
export interface ClubSettingsManagerApiUpdateClubGeneralSettingsRequest {
|
|
10608
11641
|
/**
|
|
10609
11642
|
*
|
|
10610
|
-
* @type {
|
|
10611
|
-
* @memberof
|
|
11643
|
+
* @type {UpdateClubGeneralSettingsRequest}
|
|
11644
|
+
* @memberof ClubSettingsManagerApiUpdateClubGeneralSettings
|
|
10612
11645
|
*/
|
|
10613
|
-
readonly
|
|
11646
|
+
readonly updateClubGeneralSettingsRequest: UpdateClubGeneralSettingsRequest;
|
|
11647
|
+
}
|
|
11648
|
+
/**
|
|
11649
|
+
* Request parameters for updateHoursSettings operation in ClubSettingsManagerApi.
|
|
11650
|
+
* @export
|
|
11651
|
+
* @interface ClubSettingsManagerApiUpdateHoursSettingsRequest
|
|
11652
|
+
*/
|
|
11653
|
+
export interface ClubSettingsManagerApiUpdateHoursSettingsRequest {
|
|
11654
|
+
/**
|
|
11655
|
+
*
|
|
11656
|
+
* @type {UpdateClubHoursSettingsRequest}
|
|
11657
|
+
* @memberof ClubSettingsManagerApiUpdateHoursSettings
|
|
11658
|
+
*/
|
|
11659
|
+
readonly updateClubHoursSettingsRequest: UpdateClubHoursSettingsRequest;
|
|
11660
|
+
}
|
|
11661
|
+
/**
|
|
11662
|
+
* Request parameters for updatePresentationSettings operation in ClubSettingsManagerApi.
|
|
11663
|
+
* @export
|
|
11664
|
+
* @interface ClubSettingsManagerApiUpdatePresentationSettingsRequest
|
|
11665
|
+
*/
|
|
11666
|
+
export interface ClubSettingsManagerApiUpdatePresentationSettingsRequest {
|
|
10614
11667
|
/**
|
|
10615
11668
|
*
|
|
10616
|
-
* @type {
|
|
10617
|
-
* @memberof
|
|
11669
|
+
* @type {ClubPresentationSettingsResponse}
|
|
11670
|
+
* @memberof ClubSettingsManagerApiUpdatePresentationSettings
|
|
10618
11671
|
*/
|
|
10619
|
-
readonly
|
|
11672
|
+
readonly clubPresentationSettingsResponse: ClubPresentationSettingsResponse;
|
|
10620
11673
|
}
|
|
10621
11674
|
/**
|
|
10622
|
-
* Request parameters for
|
|
11675
|
+
* Request parameters for updateReservationSettings operation in ClubSettingsManagerApi.
|
|
10623
11676
|
* @export
|
|
10624
|
-
* @interface
|
|
11677
|
+
* @interface ClubSettingsManagerApiUpdateReservationSettingsRequest
|
|
10625
11678
|
*/
|
|
10626
|
-
export interface
|
|
11679
|
+
export interface ClubSettingsManagerApiUpdateReservationSettingsRequest {
|
|
10627
11680
|
/**
|
|
10628
11681
|
*
|
|
10629
|
-
* @type {
|
|
10630
|
-
* @memberof
|
|
11682
|
+
* @type {UpdateClubReservationSettingsRequest}
|
|
11683
|
+
* @memberof ClubSettingsManagerApiUpdateReservationSettings
|
|
10631
11684
|
*/
|
|
10632
|
-
readonly
|
|
11685
|
+
readonly updateClubReservationSettingsRequest: UpdateClubReservationSettingsRequest;
|
|
10633
11686
|
}
|
|
10634
11687
|
/**
|
|
10635
11688
|
* ClubSettingsManagerApi - object-oriented interface
|
|
@@ -10639,35 +11692,163 @@ export interface ClubSettingsManagerApiUpdateClubSettingsRequest {
|
|
|
10639
11692
|
*/
|
|
10640
11693
|
export declare class ClubSettingsManagerApi extends BaseAPI {
|
|
10641
11694
|
/**
|
|
10642
|
-
*
|
|
10643
|
-
* @param {
|
|
11695
|
+
*
|
|
11696
|
+
* @param {ClubSettingsManagerApiUpdateClubGeneralSettingsRequest} requestParameters Request parameters.
|
|
10644
11697
|
* @param {*} [options] Override http request option.
|
|
10645
11698
|
* @throws {RequiredError}
|
|
10646
11699
|
* @memberof ClubSettingsManagerApi
|
|
10647
11700
|
*/
|
|
10648
|
-
|
|
11701
|
+
updateClubGeneralSettings(requestParameters: ClubSettingsManagerApiUpdateClubGeneralSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubGeneralSettingsResponse, any, {}>>;
|
|
10649
11702
|
/**
|
|
10650
|
-
*
|
|
11703
|
+
*
|
|
11704
|
+
* @param {ClubSettingsManagerApiUpdateHoursSettingsRequest} requestParameters Request parameters.
|
|
10651
11705
|
* @param {*} [options] Override http request option.
|
|
10652
11706
|
* @throws {RequiredError}
|
|
10653
11707
|
* @memberof ClubSettingsManagerApi
|
|
10654
11708
|
*/
|
|
10655
|
-
|
|
11709
|
+
updateHoursSettings(requestParameters: ClubSettingsManagerApiUpdateHoursSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
10656
11710
|
/**
|
|
10657
|
-
*
|
|
11711
|
+
*
|
|
11712
|
+
* @param {ClubSettingsManagerApiUpdatePresentationSettingsRequest} requestParameters Request parameters.
|
|
10658
11713
|
* @param {*} [options] Override http request option.
|
|
10659
11714
|
* @throws {RequiredError}
|
|
10660
11715
|
* @memberof ClubSettingsManagerApi
|
|
10661
11716
|
*/
|
|
10662
|
-
|
|
11717
|
+
updatePresentationSettings(requestParameters: ClubSettingsManagerApiUpdatePresentationSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
10663
11718
|
/**
|
|
10664
|
-
*
|
|
10665
|
-
* @param {
|
|
11719
|
+
*
|
|
11720
|
+
* @param {ClubSettingsManagerApiUpdateReservationSettingsRequest} requestParameters Request parameters.
|
|
10666
11721
|
* @param {*} [options] Override http request option.
|
|
10667
11722
|
* @throws {RequiredError}
|
|
10668
11723
|
* @memberof ClubSettingsManagerApi
|
|
10669
11724
|
*/
|
|
10670
|
-
|
|
11725
|
+
updateReservationSettings(requestParameters: ClubSettingsManagerApiUpdateReservationSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubReservationSettingsResponse, any, {}>>;
|
|
11726
|
+
}
|
|
11727
|
+
/**
|
|
11728
|
+
* ClubSettingsStaffApi - axios parameter creator
|
|
11729
|
+
* @export
|
|
11730
|
+
*/
|
|
11731
|
+
export declare const ClubSettingsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11732
|
+
/**
|
|
11733
|
+
*
|
|
11734
|
+
* @param {*} [options] Override http request option.
|
|
11735
|
+
* @throws {RequiredError}
|
|
11736
|
+
*/
|
|
11737
|
+
getClubGeneralSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11738
|
+
/**
|
|
11739
|
+
*
|
|
11740
|
+
* @param {*} [options] Override http request option.
|
|
11741
|
+
* @throws {RequiredError}
|
|
11742
|
+
*/
|
|
11743
|
+
getHoursSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11744
|
+
/**
|
|
11745
|
+
*
|
|
11746
|
+
* @param {*} [options] Override http request option.
|
|
11747
|
+
* @throws {RequiredError}
|
|
11748
|
+
*/
|
|
11749
|
+
getPresentationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11750
|
+
/**
|
|
11751
|
+
*
|
|
11752
|
+
* @param {*} [options] Override http request option.
|
|
11753
|
+
* @throws {RequiredError}
|
|
11754
|
+
*/
|
|
11755
|
+
getReservationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11756
|
+
};
|
|
11757
|
+
/**
|
|
11758
|
+
* ClubSettingsStaffApi - functional programming interface
|
|
11759
|
+
* @export
|
|
11760
|
+
*/
|
|
11761
|
+
export declare const ClubSettingsStaffApiFp: (configuration?: Configuration) => {
|
|
11762
|
+
/**
|
|
11763
|
+
*
|
|
11764
|
+
* @param {*} [options] Override http request option.
|
|
11765
|
+
* @throws {RequiredError}
|
|
11766
|
+
*/
|
|
11767
|
+
getClubGeneralSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubGeneralSettingsResponse>>;
|
|
11768
|
+
/**
|
|
11769
|
+
*
|
|
11770
|
+
* @param {*} [options] Override http request option.
|
|
11771
|
+
* @throws {RequiredError}
|
|
11772
|
+
*/
|
|
11773
|
+
getHoursSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubHoursSettingsResponse>>;
|
|
11774
|
+
/**
|
|
11775
|
+
*
|
|
11776
|
+
* @param {*} [options] Override http request option.
|
|
11777
|
+
* @throws {RequiredError}
|
|
11778
|
+
*/
|
|
11779
|
+
getPresentationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
11780
|
+
/**
|
|
11781
|
+
*
|
|
11782
|
+
* @param {*} [options] Override http request option.
|
|
11783
|
+
* @throws {RequiredError}
|
|
11784
|
+
*/
|
|
11785
|
+
getReservationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubReservationSettingsResponse>>;
|
|
11786
|
+
};
|
|
11787
|
+
/**
|
|
11788
|
+
* ClubSettingsStaffApi - factory interface
|
|
11789
|
+
* @export
|
|
11790
|
+
*/
|
|
11791
|
+
export declare const ClubSettingsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11792
|
+
/**
|
|
11793
|
+
*
|
|
11794
|
+
* @param {*} [options] Override http request option.
|
|
11795
|
+
* @throws {RequiredError}
|
|
11796
|
+
*/
|
|
11797
|
+
getClubGeneralSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubGeneralSettingsResponse>;
|
|
11798
|
+
/**
|
|
11799
|
+
*
|
|
11800
|
+
* @param {*} [options] Override http request option.
|
|
11801
|
+
* @throws {RequiredError}
|
|
11802
|
+
*/
|
|
11803
|
+
getHoursSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubHoursSettingsResponse>;
|
|
11804
|
+
/**
|
|
11805
|
+
*
|
|
11806
|
+
* @param {*} [options] Override http request option.
|
|
11807
|
+
* @throws {RequiredError}
|
|
11808
|
+
*/
|
|
11809
|
+
getPresentationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
11810
|
+
/**
|
|
11811
|
+
*
|
|
11812
|
+
* @param {*} [options] Override http request option.
|
|
11813
|
+
* @throws {RequiredError}
|
|
11814
|
+
*/
|
|
11815
|
+
getReservationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubReservationSettingsResponse>;
|
|
11816
|
+
};
|
|
11817
|
+
/**
|
|
11818
|
+
* ClubSettingsStaffApi - object-oriented interface
|
|
11819
|
+
* @export
|
|
11820
|
+
* @class ClubSettingsStaffApi
|
|
11821
|
+
* @extends {BaseAPI}
|
|
11822
|
+
*/
|
|
11823
|
+
export declare class ClubSettingsStaffApi extends BaseAPI {
|
|
11824
|
+
/**
|
|
11825
|
+
*
|
|
11826
|
+
* @param {*} [options] Override http request option.
|
|
11827
|
+
* @throws {RequiredError}
|
|
11828
|
+
* @memberof ClubSettingsStaffApi
|
|
11829
|
+
*/
|
|
11830
|
+
getClubGeneralSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubGeneralSettingsResponse, any, {}>>;
|
|
11831
|
+
/**
|
|
11832
|
+
*
|
|
11833
|
+
* @param {*} [options] Override http request option.
|
|
11834
|
+
* @throws {RequiredError}
|
|
11835
|
+
* @memberof ClubSettingsStaffApi
|
|
11836
|
+
*/
|
|
11837
|
+
getHoursSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubHoursSettingsResponse, any, {}>>;
|
|
11838
|
+
/**
|
|
11839
|
+
*
|
|
11840
|
+
* @param {*} [options] Override http request option.
|
|
11841
|
+
* @throws {RequiredError}
|
|
11842
|
+
* @memberof ClubSettingsStaffApi
|
|
11843
|
+
*/
|
|
11844
|
+
getPresentationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
11845
|
+
/**
|
|
11846
|
+
*
|
|
11847
|
+
* @param {*} [options] Override http request option.
|
|
11848
|
+
* @throws {RequiredError}
|
|
11849
|
+
* @memberof ClubSettingsStaffApi
|
|
11850
|
+
*/
|
|
11851
|
+
getReservationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubReservationSettingsResponse, any, {}>>;
|
|
10671
11852
|
}
|
|
10672
11853
|
/**
|
|
10673
11854
|
* ClubsApi - axios parameter creator
|
|
@@ -11175,14 +12356,6 @@ export declare const ClubsManagerApiAxiosParamCreator: (configuration?: Configur
|
|
|
11175
12356
|
* @throws {RequiredError}
|
|
11176
12357
|
*/
|
|
11177
12358
|
addClubMember: (addClubMemberRequest: AddClubMemberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11178
|
-
/**
|
|
11179
|
-
*
|
|
11180
|
-
* @param {string} userId
|
|
11181
|
-
* @param {AddCreditsToCustomerRequest} addCreditsToCustomerRequest
|
|
11182
|
-
* @param {*} [options] Override http request option.
|
|
11183
|
-
* @throws {RequiredError}
|
|
11184
|
-
*/
|
|
11185
|
-
addCreditsToCustomer: (userId: string, addCreditsToCustomerRequest: AddCreditsToCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11186
12359
|
/**
|
|
11187
12360
|
*
|
|
11188
12361
|
* @param {string} priceId
|
|
@@ -11289,6 +12462,13 @@ export declare const ClubsManagerApiAxiosParamCreator: (configuration?: Configur
|
|
|
11289
12462
|
* @throws {RequiredError}
|
|
11290
12463
|
*/
|
|
11291
12464
|
updateClubInfos: (body: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12465
|
+
/**
|
|
12466
|
+
*
|
|
12467
|
+
* @param {UpdateClubPresentationSettingsRequest} updateClubPresentationSettingsRequest
|
|
12468
|
+
* @param {*} [options] Override http request option.
|
|
12469
|
+
* @throws {RequiredError}
|
|
12470
|
+
*/
|
|
12471
|
+
updateClubPresentationSettings: (updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11292
12472
|
/**
|
|
11293
12473
|
*
|
|
11294
12474
|
* @param {string} courtId
|
|
@@ -11318,14 +12498,6 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
11318
12498
|
* @throws {RequiredError}
|
|
11319
12499
|
*/
|
|
11320
12500
|
addClubMember(addClubMemberRequest: AddClubMemberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddClubMember201Response>>;
|
|
11321
|
-
/**
|
|
11322
|
-
*
|
|
11323
|
-
* @param {string} userId
|
|
11324
|
-
* @param {AddCreditsToCustomerRequest} addCreditsToCustomerRequest
|
|
11325
|
-
* @param {*} [options] Override http request option.
|
|
11326
|
-
* @throws {RequiredError}
|
|
11327
|
-
*/
|
|
11328
|
-
addCreditsToCustomer(userId: string, addCreditsToCustomerRequest: AddCreditsToCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddCreditsToCustomer200Response>>;
|
|
11329
12501
|
/**
|
|
11330
12502
|
*
|
|
11331
12503
|
* @param {string} priceId
|
|
@@ -11432,6 +12604,13 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
11432
12604
|
* @throws {RequiredError}
|
|
11433
12605
|
*/
|
|
11434
12606
|
updateClubInfos(body: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
12607
|
+
/**
|
|
12608
|
+
*
|
|
12609
|
+
* @param {UpdateClubPresentationSettingsRequest} updateClubPresentationSettingsRequest
|
|
12610
|
+
* @param {*} [options] Override http request option.
|
|
12611
|
+
* @throws {RequiredError}
|
|
12612
|
+
*/
|
|
12613
|
+
updateClubPresentationSettings(updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
11435
12614
|
/**
|
|
11436
12615
|
*
|
|
11437
12616
|
* @param {string} courtId
|
|
@@ -11461,13 +12640,6 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
11461
12640
|
* @throws {RequiredError}
|
|
11462
12641
|
*/
|
|
11463
12642
|
addClubMember(requestParameters: ClubsManagerApiAddClubMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddClubMember201Response>;
|
|
11464
|
-
/**
|
|
11465
|
-
*
|
|
11466
|
-
* @param {ClubsManagerApiAddCreditsToCustomerRequest} requestParameters Request parameters.
|
|
11467
|
-
* @param {*} [options] Override http request option.
|
|
11468
|
-
* @throws {RequiredError}
|
|
11469
|
-
*/
|
|
11470
|
-
addCreditsToCustomer(requestParameters: ClubsManagerApiAddCreditsToCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddCreditsToCustomer200Response>;
|
|
11471
12643
|
/**
|
|
11472
12644
|
*
|
|
11473
12645
|
* @param {ClubsManagerApiArchivePriceForSubscriptionPlanRequest} requestParameters Request parameters.
|
|
@@ -11572,6 +12744,13 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
11572
12744
|
* @throws {RequiredError}
|
|
11573
12745
|
*/
|
|
11574
12746
|
updateClubInfos(requestParameters: ClubsManagerApiUpdateClubInfosRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
12747
|
+
/**
|
|
12748
|
+
*
|
|
12749
|
+
* @param {ClubsManagerApiUpdateClubPresentationSettingsRequest} requestParameters Request parameters.
|
|
12750
|
+
* @param {*} [options] Override http request option.
|
|
12751
|
+
* @throws {RequiredError}
|
|
12752
|
+
*/
|
|
12753
|
+
updateClubPresentationSettings(requestParameters: ClubsManagerApiUpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
11575
12754
|
/**
|
|
11576
12755
|
*
|
|
11577
12756
|
* @param {ClubsManagerApiUpdateCourtRequest} requestParameters Request parameters.
|
|
@@ -11600,25 +12779,6 @@ export interface ClubsManagerApiAddClubMemberRequest {
|
|
|
11600
12779
|
*/
|
|
11601
12780
|
readonly addClubMemberRequest: AddClubMemberRequest;
|
|
11602
12781
|
}
|
|
11603
|
-
/**
|
|
11604
|
-
* Request parameters for addCreditsToCustomer operation in ClubsManagerApi.
|
|
11605
|
-
* @export
|
|
11606
|
-
* @interface ClubsManagerApiAddCreditsToCustomerRequest
|
|
11607
|
-
*/
|
|
11608
|
-
export interface ClubsManagerApiAddCreditsToCustomerRequest {
|
|
11609
|
-
/**
|
|
11610
|
-
*
|
|
11611
|
-
* @type {string}
|
|
11612
|
-
* @memberof ClubsManagerApiAddCreditsToCustomer
|
|
11613
|
-
*/
|
|
11614
|
-
readonly userId: string;
|
|
11615
|
-
/**
|
|
11616
|
-
*
|
|
11617
|
-
* @type {AddCreditsToCustomerRequest}
|
|
11618
|
-
* @memberof ClubsManagerApiAddCreditsToCustomer
|
|
11619
|
-
*/
|
|
11620
|
-
readonly addCreditsToCustomerRequest: AddCreditsToCustomerRequest;
|
|
11621
|
-
}
|
|
11622
12782
|
/**
|
|
11623
12783
|
* Request parameters for archivePriceForSubscriptionPlan operation in ClubsManagerApi.
|
|
11624
12784
|
* @export
|
|
@@ -11813,6 +12973,19 @@ export interface ClubsManagerApiUpdateClubInfosRequest {
|
|
|
11813
12973
|
*/
|
|
11814
12974
|
readonly body: any;
|
|
11815
12975
|
}
|
|
12976
|
+
/**
|
|
12977
|
+
* Request parameters for updateClubPresentationSettings operation in ClubsManagerApi.
|
|
12978
|
+
* @export
|
|
12979
|
+
* @interface ClubsManagerApiUpdateClubPresentationSettingsRequest
|
|
12980
|
+
*/
|
|
12981
|
+
export interface ClubsManagerApiUpdateClubPresentationSettingsRequest {
|
|
12982
|
+
/**
|
|
12983
|
+
*
|
|
12984
|
+
* @type {UpdateClubPresentationSettingsRequest}
|
|
12985
|
+
* @memberof ClubsManagerApiUpdateClubPresentationSettings
|
|
12986
|
+
*/
|
|
12987
|
+
readonly updateClubPresentationSettingsRequest: UpdateClubPresentationSettingsRequest;
|
|
12988
|
+
}
|
|
11816
12989
|
/**
|
|
11817
12990
|
* Request parameters for updateCourt operation in ClubsManagerApi.
|
|
11818
12991
|
* @export
|
|
@@ -11866,14 +13039,6 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
11866
13039
|
* @memberof ClubsManagerApi
|
|
11867
13040
|
*/
|
|
11868
13041
|
addClubMember(requestParameters: ClubsManagerApiAddClubMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddClubMember201Response, any, {}>>;
|
|
11869
|
-
/**
|
|
11870
|
-
*
|
|
11871
|
-
* @param {ClubsManagerApiAddCreditsToCustomerRequest} requestParameters Request parameters.
|
|
11872
|
-
* @param {*} [options] Override http request option.
|
|
11873
|
-
* @throws {RequiredError}
|
|
11874
|
-
* @memberof ClubsManagerApi
|
|
11875
|
-
*/
|
|
11876
|
-
addCreditsToCustomer(requestParameters: ClubsManagerApiAddCreditsToCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddCreditsToCustomer200Response, any, {}>>;
|
|
11877
13042
|
/**
|
|
11878
13043
|
*
|
|
11879
13044
|
* @param {ClubsManagerApiArchivePriceForSubscriptionPlanRequest} requestParameters Request parameters.
|
|
@@ -11993,6 +13158,14 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
11993
13158
|
* @memberof ClubsManagerApi
|
|
11994
13159
|
*/
|
|
11995
13160
|
updateClubInfos(requestParameters: ClubsManagerApiUpdateClubInfosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
13161
|
+
/**
|
|
13162
|
+
*
|
|
13163
|
+
* @param {ClubsManagerApiUpdateClubPresentationSettingsRequest} requestParameters Request parameters.
|
|
13164
|
+
* @param {*} [options] Override http request option.
|
|
13165
|
+
* @throws {RequiredError}
|
|
13166
|
+
* @memberof ClubsManagerApi
|
|
13167
|
+
*/
|
|
13168
|
+
updateClubPresentationSettings(requestParameters: ClubsManagerApiUpdateClubPresentationSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
11996
13169
|
/**
|
|
11997
13170
|
*
|
|
11998
13171
|
* @param {ClubsManagerApiUpdateCourtRequest} requestParameters Request parameters.
|
|
@@ -12033,6 +13206,12 @@ export declare const ClubsStaffApiAxiosParamCreator: (configuration?: Configurat
|
|
|
12033
13206
|
* @throws {RequiredError}
|
|
12034
13207
|
*/
|
|
12035
13208
|
getClubMembers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13209
|
+
/**
|
|
13210
|
+
*
|
|
13211
|
+
* @param {*} [options] Override http request option.
|
|
13212
|
+
* @throws {RequiredError}
|
|
13213
|
+
*/
|
|
13214
|
+
getClubPresentationSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12036
13215
|
/**
|
|
12037
13216
|
* Récupère les rôles d\'un club
|
|
12038
13217
|
* @param {*} [options] Override http request option.
|
|
@@ -12082,6 +13261,12 @@ export declare const ClubsStaffApiFp: (configuration?: Configuration) => {
|
|
|
12082
13261
|
* @throws {RequiredError}
|
|
12083
13262
|
*/
|
|
12084
13263
|
getClubMembers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClubMembers200Response>>;
|
|
13264
|
+
/**
|
|
13265
|
+
*
|
|
13266
|
+
* @param {*} [options] Override http request option.
|
|
13267
|
+
* @throws {RequiredError}
|
|
13268
|
+
*/
|
|
13269
|
+
getClubPresentationSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClubPresentationSettingsResponse>>;
|
|
12085
13270
|
/**
|
|
12086
13271
|
* Récupère les rôles d\'un club
|
|
12087
13272
|
* @param {*} [options] Override http request option.
|
|
@@ -12131,6 +13316,12 @@ export declare const ClubsStaffApiFactory: (configuration?: Configuration, baseP
|
|
|
12131
13316
|
* @throws {RequiredError}
|
|
12132
13317
|
*/
|
|
12133
13318
|
getClubMembers(options?: RawAxiosRequestConfig): AxiosPromise<GetClubMembers200Response>;
|
|
13319
|
+
/**
|
|
13320
|
+
*
|
|
13321
|
+
* @param {*} [options] Override http request option.
|
|
13322
|
+
* @throws {RequiredError}
|
|
13323
|
+
*/
|
|
13324
|
+
getClubPresentationSettings(options?: RawAxiosRequestConfig): AxiosPromise<ClubPresentationSettingsResponse>;
|
|
12134
13325
|
/**
|
|
12135
13326
|
* Récupère les rôles d\'un club
|
|
12136
13327
|
* @param {*} [options] Override http request option.
|
|
@@ -12198,6 +13389,13 @@ export declare class ClubsStaffApi extends BaseAPI {
|
|
|
12198
13389
|
* @memberof ClubsStaffApi
|
|
12199
13390
|
*/
|
|
12200
13391
|
getClubMembers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClubMembers200Response, any, {}>>;
|
|
13392
|
+
/**
|
|
13393
|
+
*
|
|
13394
|
+
* @param {*} [options] Override http request option.
|
|
13395
|
+
* @throws {RequiredError}
|
|
13396
|
+
* @memberof ClubsStaffApi
|
|
13397
|
+
*/
|
|
13398
|
+
getClubPresentationSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubPresentationSettingsResponse, any, {}>>;
|
|
12201
13399
|
/**
|
|
12202
13400
|
* Récupère les rôles d\'un club
|
|
12203
13401
|
* @param {*} [options] Override http request option.
|
|
@@ -13045,57 +14243,6 @@ export declare class SportsPublicApi extends BaseAPI {
|
|
|
13045
14243
|
*/
|
|
13046
14244
|
getVerifiedSports(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportResponse[], any, {}>>;
|
|
13047
14245
|
}
|
|
13048
|
-
/**
|
|
13049
|
-
* SportsStaffApi - axios parameter creator
|
|
13050
|
-
* @export
|
|
13051
|
-
*/
|
|
13052
|
-
export declare const SportsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
13053
|
-
/**
|
|
13054
|
-
* Récupère la liste des sports (vérifiés + créés par le club de l\'utilisateur)
|
|
13055
|
-
* @param {*} [options] Override http request option.
|
|
13056
|
-
* @throws {RequiredError}
|
|
13057
|
-
*/
|
|
13058
|
-
getAllSports: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13059
|
-
};
|
|
13060
|
-
/**
|
|
13061
|
-
* SportsStaffApi - functional programming interface
|
|
13062
|
-
* @export
|
|
13063
|
-
*/
|
|
13064
|
-
export declare const SportsStaffApiFp: (configuration?: Configuration) => {
|
|
13065
|
-
/**
|
|
13066
|
-
* Récupère la liste des sports (vérifiés + créés par le club de l\'utilisateur)
|
|
13067
|
-
* @param {*} [options] Override http request option.
|
|
13068
|
-
* @throws {RequiredError}
|
|
13069
|
-
*/
|
|
13070
|
-
getAllSports(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SportResponse>>>;
|
|
13071
|
-
};
|
|
13072
|
-
/**
|
|
13073
|
-
* SportsStaffApi - factory interface
|
|
13074
|
-
* @export
|
|
13075
|
-
*/
|
|
13076
|
-
export declare const SportsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13077
|
-
/**
|
|
13078
|
-
* Récupère la liste des sports (vérifiés + créés par le club de l\'utilisateur)
|
|
13079
|
-
* @param {*} [options] Override http request option.
|
|
13080
|
-
* @throws {RequiredError}
|
|
13081
|
-
*/
|
|
13082
|
-
getAllSports(options?: RawAxiosRequestConfig): AxiosPromise<Array<SportResponse>>;
|
|
13083
|
-
};
|
|
13084
|
-
/**
|
|
13085
|
-
* SportsStaffApi - object-oriented interface
|
|
13086
|
-
* @export
|
|
13087
|
-
* @class SportsStaffApi
|
|
13088
|
-
* @extends {BaseAPI}
|
|
13089
|
-
*/
|
|
13090
|
-
export declare class SportsStaffApi extends BaseAPI {
|
|
13091
|
-
/**
|
|
13092
|
-
* Récupère la liste des sports (vérifiés + créés par le club de l\'utilisateur)
|
|
13093
|
-
* @param {*} [options] Override http request option.
|
|
13094
|
-
* @throws {RequiredError}
|
|
13095
|
-
* @memberof SportsStaffApi
|
|
13096
|
-
*/
|
|
13097
|
-
getAllSports(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportResponse[], any, {}>>;
|
|
13098
|
-
}
|
|
13099
14246
|
/**
|
|
13100
14247
|
* SubscriptionsManagerApi - axios parameter creator
|
|
13101
14248
|
* @export
|