@tennac-booking/sdk 1.0.10 → 1.0.12
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 +56 -0
- package/.openapi-generator/VERSION +1 -1
- package/README.md +95 -4
- package/api.ts +6129 -367
- package/common.ts +4 -4
- package/dist/api.d.ts +4124 -295
- package/dist/api.js +3318 -58
- package/dist/esm/api.d.ts +4124 -295
- package/dist/esm/api.js +3282 -58
- package/docs/AddClubMemberRequest.md +22 -0
- package/docs/AddClubMemberResponse.md +22 -0
- package/docs/BlockSlotResponse.md +22 -0
- package/docs/BookingResponse.md +28 -0
- package/docs/BookingsApi.md +120 -0
- package/docs/Club.md +46 -0
- package/docs/ClubCourtsApi.md +118 -0
- package/docs/ClubInfoResponse.md +46 -0
- package/docs/ClubListResponse.md +22 -0
- package/docs/ClubMember.md +34 -0
- package/docs/ClubMembersResponse.md +22 -0
- package/docs/ClubResponse.md +46 -0
- package/docs/ClubRole.md +30 -0
- package/docs/ClubRoleResponse.md +30 -0
- package/docs/ClubRolesApi.md +268 -0
- package/docs/ClubRolesResponse.md +22 -0
- package/docs/ClubSettings.md +28 -0
- package/docs/ClubSettingsApi.md +227 -0
- package/docs/ClubSlotsApi.md +300 -0
- package/docs/ClubSportsApi.md +118 -0
- package/docs/ClubSubscriptionsApi.md +408 -0
- package/docs/ClubsApi.md +432 -0
- package/docs/CourtResponse.md +44 -0
- package/docs/CourtsResponse.md +22 -0
- package/docs/CreateBookingRequest.md +28 -0
- package/docs/CreateClubRequest.md +38 -0
- package/docs/CreateClubRoleRequestBody.md +24 -0
- package/docs/CreateCourtRequest.md +34 -0
- package/docs/CreatePriceRequest.md +26 -0
- package/docs/CreateSportRequest.md +22 -0
- package/docs/CreateSubscriptionPlanRequest.md +24 -0
- package/docs/DeleteClub200Response.md +20 -0
- package/docs/DeleteClubRole200Response.md +20 -0
- package/docs/DeleteSlotsByClubInRange200Response.md +20 -0
- package/docs/GenerateSlotsForNextThreeWeeks201Response.md +20 -0
- package/docs/GetAllSportsRequest.md +20 -0
- package/docs/GetClubSettingsRequest.md +20 -0
- package/docs/GetUserRolesInClubs200Response.md +20 -0
- package/docs/PaymentMethod.md +11 -0
- package/docs/PlayerWithPaymentMethod.md +22 -0
- package/docs/PriceResponse.md +38 -0
- package/docs/RestoreSubscriptionPlanForClub200Response.md +20 -0
- package/docs/SlotResponse.md +40 -0
- package/docs/SlotsResponse.md +22 -0
- package/docs/Sport.md +24 -0
- package/docs/SportResponse.md +34 -0
- package/docs/SportsApi.md +229 -0
- package/docs/SportsResponse.md +22 -0
- package/docs/SubscriptionPlan.md +36 -0
- package/docs/SubscriptionPlanResponse.md +36 -0
- package/docs/UpdateClubRequest.md +40 -0
- package/docs/UpdateClubRoleRequestBody.md +24 -0
- package/docs/UpdateSportRequest.md +20 -0
- package/docs/UpdateSubscriptionPlanRequest.md +24 -0
- package/docs/UpdateSubscriptionPlanResponse.md +22 -0
- package/docs/UsersApi.md +77 -46
- package/package.json +1 -29
package/.openapi-generator/FILES
CHANGED
|
@@ -1,25 +1,81 @@
|
|
|
1
1
|
.gitignore
|
|
2
2
|
.npmignore
|
|
3
|
+
.openapi-generator-ignore
|
|
3
4
|
README.md
|
|
4
5
|
api.ts
|
|
5
6
|
base.ts
|
|
6
7
|
common.ts
|
|
7
8
|
configuration.ts
|
|
9
|
+
docs/AddClubMemberRequest.md
|
|
10
|
+
docs/AddClubMemberResponse.md
|
|
8
11
|
docs/ApiErrorResponse.md
|
|
12
|
+
docs/BlockSlotResponse.md
|
|
9
13
|
docs/Booking.md
|
|
14
|
+
docs/BookingResponse.md
|
|
10
15
|
docs/BookingStatus.md
|
|
16
|
+
docs/BookingsApi.md
|
|
11
17
|
docs/ChangePasswordRequestBody.md
|
|
12
18
|
docs/ChangePasswordResponse.md
|
|
19
|
+
docs/Club.md
|
|
20
|
+
docs/ClubCourtsApi.md
|
|
21
|
+
docs/ClubInfoResponse.md
|
|
22
|
+
docs/ClubListResponse.md
|
|
23
|
+
docs/ClubMember.md
|
|
24
|
+
docs/ClubMembersResponse.md
|
|
25
|
+
docs/ClubResponse.md
|
|
26
|
+
docs/ClubRole.md
|
|
27
|
+
docs/ClubRoleResponse.md
|
|
28
|
+
docs/ClubRolesApi.md
|
|
29
|
+
docs/ClubRolesResponse.md
|
|
30
|
+
docs/ClubSettings.md
|
|
31
|
+
docs/ClubSettingsApi.md
|
|
32
|
+
docs/ClubSlotsApi.md
|
|
33
|
+
docs/ClubSportsApi.md
|
|
34
|
+
docs/ClubSubscriptionsApi.md
|
|
35
|
+
docs/ClubsApi.md
|
|
13
36
|
docs/Court.md
|
|
37
|
+
docs/CourtResponse.md
|
|
14
38
|
docs/CourtStatus.md
|
|
39
|
+
docs/CourtsResponse.md
|
|
40
|
+
docs/CreateBookingRequest.md
|
|
41
|
+
docs/CreateClubRequest.md
|
|
42
|
+
docs/CreateClubRoleRequestBody.md
|
|
43
|
+
docs/CreateCourtRequest.md
|
|
44
|
+
docs/CreatePriceRequest.md
|
|
45
|
+
docs/CreateSportRequest.md
|
|
46
|
+
docs/CreateSubscriptionPlanRequest.md
|
|
47
|
+
docs/DeleteClub200Response.md
|
|
48
|
+
docs/DeleteClubRole200Response.md
|
|
49
|
+
docs/DeleteSlotsByClubInRange200Response.md
|
|
50
|
+
docs/GenerateSlotsForNextThreeWeeks201Response.md
|
|
51
|
+
docs/GetAllSportsRequest.md
|
|
52
|
+
docs/GetClubSettingsRequest.md
|
|
53
|
+
docs/GetUserRolesInClubs200Response.md
|
|
15
54
|
docs/LoginRequestBody.md
|
|
16
55
|
docs/LoginResponse.md
|
|
56
|
+
docs/PaymentMethod.md
|
|
57
|
+
docs/PlayerWithPaymentMethod.md
|
|
58
|
+
docs/PriceResponse.md
|
|
17
59
|
docs/RefreshTokenRequestBody.md
|
|
18
60
|
docs/RefreshTokenResponse.md
|
|
19
61
|
docs/RegisterRequestBody.md
|
|
62
|
+
docs/RestoreSubscriptionPlanForClub200Response.md
|
|
20
63
|
docs/Slot.md
|
|
21
64
|
docs/SlotException.md
|
|
65
|
+
docs/SlotResponse.md
|
|
66
|
+
docs/SlotsResponse.md
|
|
67
|
+
docs/Sport.md
|
|
68
|
+
docs/SportResponse.md
|
|
69
|
+
docs/SportsApi.md
|
|
70
|
+
docs/SportsResponse.md
|
|
22
71
|
docs/StripeStatus.md
|
|
72
|
+
docs/SubscriptionPlan.md
|
|
73
|
+
docs/SubscriptionPlanResponse.md
|
|
74
|
+
docs/UpdateClubRequest.md
|
|
75
|
+
docs/UpdateClubRoleRequestBody.md
|
|
76
|
+
docs/UpdateSportRequest.md
|
|
77
|
+
docs/UpdateSubscriptionPlanRequest.md
|
|
78
|
+
docs/UpdateSubscriptionPlanResponse.md
|
|
23
79
|
docs/UpdateUserRequestBody.md
|
|
24
80
|
docs/User.md
|
|
25
81
|
docs/UserResponse.md
|
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.14.0
|
package/README.md
CHANGED
|
@@ -51,32 +51,118 @@ All URIs are relative to *https://api.mon-domaine.com*
|
|
|
51
51
|
|
|
52
52
|
Class | Method | HTTP request | Description
|
|
53
53
|
------------ | ------------- | ------------- | -------------
|
|
54
|
-
*
|
|
54
|
+
*BookingsApi* | [**bookingsPost**](docs/BookingsApi.md#bookingspost) | **POST** /bookings | Créer une réservation
|
|
55
|
+
*BookingsApi* | [**bookingsPreBookSlotIdPatch**](docs/BookingsApi.md#bookingsprebookslotidpatch) | **PATCH** /bookings/pre-book/{slotId} | Bloquer un créneau
|
|
56
|
+
*ClubCourtsApi* | [**createCourtForClub**](docs/ClubCourtsApi.md#createcourtforclub) | **POST** /api/clubs/{id}/courts | Créer un terrain pour un club
|
|
57
|
+
*ClubCourtsApi* | [**getCourtsByClub**](docs/ClubCourtsApi.md#getcourtsbyclub) | **GET** /api/clubs/{id}/courts | Récupérer tous les terrains pour un club
|
|
58
|
+
*ClubRolesApi* | [**createClubRole**](docs/ClubRolesApi.md#createclubrole) | **POST** /api/club-roles | Crée un nouveau rôle de club
|
|
59
|
+
*ClubRolesApi* | [**deleteClubRole**](docs/ClubRolesApi.md#deleteclubrole) | **DELETE** /api/club-roles/{id} | Supprime un rôle de club
|
|
60
|
+
*ClubRolesApi* | [**getAllClubRoles**](docs/ClubRolesApi.md#getallclubroles) | **GET** /api/club-roles | Récupère tous les rôles de clubs
|
|
61
|
+
*ClubRolesApi* | [**getClubRoleById**](docs/ClubRolesApi.md#getclubrolebyid) | **GET** /api/club-roles/{id} | Récupère un rôle de club par son ID
|
|
62
|
+
*ClubRolesApi* | [**updateClubRole**](docs/ClubRolesApi.md#updateclubrole) | **PUT** /api/club-roles/{id} | Met à jour un rôle de club
|
|
63
|
+
*ClubSettingsApi* | [**createClubSettings**](docs/ClubSettingsApi.md#createclubsettings) | **POST** /api/club-settings | Crée les paramètres d’un club
|
|
64
|
+
*ClubSettingsApi* | [**deleteClubSettings**](docs/ClubSettingsApi.md#deleteclubsettings) | **DELETE** /api/club-settings | Supprime les paramètres d’un club
|
|
65
|
+
*ClubSettingsApi* | [**getClubSettings**](docs/ClubSettingsApi.md#getclubsettings) | **GET** /api/club-settings | Récupère les paramètres d’un club
|
|
66
|
+
*ClubSettingsApi* | [**updateClubSettings**](docs/ClubSettingsApi.md#updateclubsettings) | **PUT** /api/club-settings | Met à jour les paramètres d’un club
|
|
67
|
+
*ClubSlotsApi* | [**deleteSlotsByClubInRange**](docs/ClubSlotsApi.md#deleteslotsbyclubinrange) | **DELETE** /api/clubs/{id}/slots | Supprimer des créneaux pour un club sur une plage de dates
|
|
68
|
+
*ClubSlotsApi* | [**generateSlotsForNextThreeWeeks**](docs/ClubSlotsApi.md#generateslotsfornextthreeweeks) | **POST** /api/clubs/{id}/generate-slots | Générer les créneaux pour les 3 semaines à venir
|
|
69
|
+
*ClubSlotsApi* | [**getAvailableSlotsBySports**](docs/ClubSlotsApi.md#getavailableslotsbysports) | **GET** /api/clubs/{id}/sports/{sportId}/slots | Obtenir tous les slots disponibles pour un sport dans un club
|
|
70
|
+
*ClubSlotsApi* | [**getAvailableSlotsBySportsAndDay**](docs/ClubSlotsApi.md#getavailableslotsbysportsandday) | **GET** /api/clubs/{id}/sports/{sportId}/slots/{day} | Obtenir les slots disponibles pour un jour donné
|
|
71
|
+
*ClubSlotsApi* | [**getSlotsByClub**](docs/ClubSlotsApi.md#getslotsbyclub) | **GET** /api/clubs/{id}/slots | Récupérer tous les créneaux pour un club
|
|
72
|
+
*ClubSportsApi* | [**createSportForClub**](docs/ClubSportsApi.md#createsportforclub) | **POST** /api/clubs/{id}/sports | Créer un sport pour un club
|
|
73
|
+
*ClubSportsApi* | [**getSportsByClub**](docs/ClubSportsApi.md#getsportsbyclub) | **GET** /api/clubs/{id}/sports | Récupérer tous les sports pour un club
|
|
74
|
+
*ClubSubscriptionsApi* | [**archivePriceForSubscriptionPlan**](docs/ClubSubscriptionsApi.md#archivepriceforsubscriptionplan) | **DELETE** /api/clubs/{id}/subscription-plans/{priceId}/archive-price | Archiver un prix
|
|
75
|
+
*ClubSubscriptionsApi* | [**createPriceForSubscriptionPlan**](docs/ClubSubscriptionsApi.md#createpriceforsubscriptionplan) | **POST** /api/clubs/{id}/subscription-plans/{productId}/prices | Créer un nouveau prix pour un plan
|
|
76
|
+
*ClubSubscriptionsApi* | [**createSubscriptionPlanForClub**](docs/ClubSubscriptionsApi.md#createsubscriptionplanforclub) | **POST** /api/clubs/{id}/subscription-plans | Créer un plan d\'abonnement pour un club
|
|
77
|
+
*ClubSubscriptionsApi* | [**deleteSubscriptionPlanForClub**](docs/ClubSubscriptionsApi.md#deletesubscriptionplanforclub) | **DELETE** /api/clubs/{id}/subscription-plans/{productId} | Supprimer un plan d\'abonnement pour un club
|
|
78
|
+
*ClubSubscriptionsApi* | [**restoreSubscriptionPlanForClub**](docs/ClubSubscriptionsApi.md#restoresubscriptionplanforclub) | **POST** /api/clubs/{id}/subscription-plans/{productId}/restore | Réactiver un plan d\'abonnement
|
|
79
|
+
*ClubSubscriptionsApi* | [**restoreSubscriptionPriceForClub**](docs/ClubSubscriptionsApi.md#restoresubscriptionpriceforclub) | **POST** /api/clubs/{id}/subscription-plans/{priceId}/restore-price | Réactiver un prix
|
|
80
|
+
*ClubSubscriptionsApi* | [**updateSubscriptionPlanForClub**](docs/ClubSubscriptionsApi.md#updatesubscriptionplanforclub) | **PUT** /api/clubs/{id}/subscription-plans/{priceId} | Mettre à jour un plan d\'abonnement
|
|
81
|
+
*ClubsApi* | [**addClubMember**](docs/ClubsApi.md#addclubmember) | **PUT** /api/clubs/{id}/add_members | Ajouter un membre à un club
|
|
82
|
+
*ClubsApi* | [**createClub**](docs/ClubsApi.md#createclub) | **POST** /api/clubs | Créer un nouveau club
|
|
83
|
+
*ClubsApi* | [**deleteClub**](docs/ClubsApi.md#deleteclub) | **DELETE** /api/clubs/{id} | Supprimer un club
|
|
84
|
+
*ClubsApi* | [**getAllClubs**](docs/ClubsApi.md#getallclubs) | **GET** /api/clubs | Récupérer tous les clubs
|
|
85
|
+
*ClubsApi* | [**getClubInfo**](docs/ClubsApi.md#getclubinfo) | **GET** /api/clubs/{id} | Récupérer les informations d\'un club
|
|
86
|
+
*ClubsApi* | [**getClubMembers**](docs/ClubsApi.md#getclubmembers) | **GET** /api/clubs/{id}/members | Récupérer les membres d\'un club
|
|
87
|
+
*ClubsApi* | [**getClubRoles**](docs/ClubsApi.md#getclubroles) | **GET** /api/clubs/{id}/roles | Récupérer les rôles d\'un club
|
|
88
|
+
*ClubsApi* | [**updateClub**](docs/ClubsApi.md#updateclub) | **PUT** /api/clubs/{id} | Mettre à jour un club existant
|
|
89
|
+
*SportsApi* | [**createSport**](docs/SportsApi.md#createsport) | **POST** /api/sports | Crée un sport dans un club
|
|
90
|
+
*SportsApi* | [**deleteSport**](docs/SportsApi.md#deletesport) | **DELETE** /api/sports/{id} | Supprime un sport
|
|
91
|
+
*SportsApi* | [**getAllSports**](docs/SportsApi.md#getallsports) | **GET** /api/sports | Récupère la liste des sports d’un club
|
|
92
|
+
*SportsApi* | [**updateSport**](docs/SportsApi.md#updatesport) | **PUT** /api/sports/{id} | Met à jour un sport
|
|
93
|
+
*UsersApi* | [**changePassword**](docs/UsersApi.md#changepassword) | **PUT** /api/users/me/password | Modifie le mot de passe de l\'utilisateur connecté
|
|
55
94
|
*UsersApi* | [**getAllUsers**](docs/UsersApi.md#getallusers) | **GET** /api/users | Récupère la liste des utilisateurs
|
|
56
|
-
*UsersApi* | [**getUserInfo**](docs/UsersApi.md#getuserinfo) | **GET** /api/users/
|
|
95
|
+
*UsersApi* | [**getUserInfo**](docs/UsersApi.md#getuserinfo) | **GET** /api/users/me | Récupère les informations de l\'utilisateur connecté
|
|
96
|
+
*UsersApi* | [**getUserRolesInClubs**](docs/UsersApi.md#getuserrolesinclubs) | **GET** /api/users/me/roles | Récupère les rôles de l\'utilisateur dans les clubs
|
|
57
97
|
*UsersApi* | [**login**](docs/UsersApi.md#login) | **POST** /api/users/login | Authentifie un utilisateur
|
|
58
98
|
*UsersApi* | [**refreshToken**](docs/UsersApi.md#refreshtoken) | **POST** /api/users/refresh-token | Rafraîchit le token d\'accès
|
|
59
99
|
*UsersApi* | [**register**](docs/UsersApi.md#register) | **POST** /api/users | Crée un nouvel utilisateur
|
|
60
|
-
*UsersApi* | [**updateUser**](docs/UsersApi.md#updateuser) | **PUT** /api/users/
|
|
100
|
+
*UsersApi* | [**updateUser**](docs/UsersApi.md#updateuser) | **PUT** /api/users/me | Met à jour les données de l\'utilisateur connecté
|
|
61
101
|
|
|
62
102
|
|
|
63
103
|
### Documentation For Models
|
|
64
104
|
|
|
105
|
+
- [AddClubMemberRequest](docs/AddClubMemberRequest.md)
|
|
106
|
+
- [AddClubMemberResponse](docs/AddClubMemberResponse.md)
|
|
65
107
|
- [ApiErrorResponse](docs/ApiErrorResponse.md)
|
|
108
|
+
- [BlockSlotResponse](docs/BlockSlotResponse.md)
|
|
66
109
|
- [Booking](docs/Booking.md)
|
|
110
|
+
- [BookingResponse](docs/BookingResponse.md)
|
|
67
111
|
- [BookingStatus](docs/BookingStatus.md)
|
|
68
112
|
- [ChangePasswordRequestBody](docs/ChangePasswordRequestBody.md)
|
|
69
113
|
- [ChangePasswordResponse](docs/ChangePasswordResponse.md)
|
|
114
|
+
- [Club](docs/Club.md)
|
|
115
|
+
- [ClubInfoResponse](docs/ClubInfoResponse.md)
|
|
116
|
+
- [ClubListResponse](docs/ClubListResponse.md)
|
|
117
|
+
- [ClubMember](docs/ClubMember.md)
|
|
118
|
+
- [ClubMembersResponse](docs/ClubMembersResponse.md)
|
|
119
|
+
- [ClubResponse](docs/ClubResponse.md)
|
|
120
|
+
- [ClubRole](docs/ClubRole.md)
|
|
121
|
+
- [ClubRoleResponse](docs/ClubRoleResponse.md)
|
|
122
|
+
- [ClubRolesResponse](docs/ClubRolesResponse.md)
|
|
123
|
+
- [ClubSettings](docs/ClubSettings.md)
|
|
70
124
|
- [Court](docs/Court.md)
|
|
125
|
+
- [CourtResponse](docs/CourtResponse.md)
|
|
71
126
|
- [CourtStatus](docs/CourtStatus.md)
|
|
127
|
+
- [CourtsResponse](docs/CourtsResponse.md)
|
|
128
|
+
- [CreateBookingRequest](docs/CreateBookingRequest.md)
|
|
129
|
+
- [CreateClubRequest](docs/CreateClubRequest.md)
|
|
130
|
+
- [CreateClubRoleRequestBody](docs/CreateClubRoleRequestBody.md)
|
|
131
|
+
- [CreateCourtRequest](docs/CreateCourtRequest.md)
|
|
132
|
+
- [CreatePriceRequest](docs/CreatePriceRequest.md)
|
|
133
|
+
- [CreateSportRequest](docs/CreateSportRequest.md)
|
|
134
|
+
- [CreateSubscriptionPlanRequest](docs/CreateSubscriptionPlanRequest.md)
|
|
135
|
+
- [DeleteClub200Response](docs/DeleteClub200Response.md)
|
|
136
|
+
- [DeleteClubRole200Response](docs/DeleteClubRole200Response.md)
|
|
137
|
+
- [DeleteSlotsByClubInRange200Response](docs/DeleteSlotsByClubInRange200Response.md)
|
|
138
|
+
- [GenerateSlotsForNextThreeWeeks201Response](docs/GenerateSlotsForNextThreeWeeks201Response.md)
|
|
139
|
+
- [GetAllSportsRequest](docs/GetAllSportsRequest.md)
|
|
140
|
+
- [GetClubSettingsRequest](docs/GetClubSettingsRequest.md)
|
|
141
|
+
- [GetUserRolesInClubs200Response](docs/GetUserRolesInClubs200Response.md)
|
|
72
142
|
- [LoginRequestBody](docs/LoginRequestBody.md)
|
|
73
143
|
- [LoginResponse](docs/LoginResponse.md)
|
|
144
|
+
- [PaymentMethod](docs/PaymentMethod.md)
|
|
145
|
+
- [PlayerWithPaymentMethod](docs/PlayerWithPaymentMethod.md)
|
|
146
|
+
- [PriceResponse](docs/PriceResponse.md)
|
|
74
147
|
- [RefreshTokenRequestBody](docs/RefreshTokenRequestBody.md)
|
|
75
148
|
- [RefreshTokenResponse](docs/RefreshTokenResponse.md)
|
|
76
149
|
- [RegisterRequestBody](docs/RegisterRequestBody.md)
|
|
150
|
+
- [RestoreSubscriptionPlanForClub200Response](docs/RestoreSubscriptionPlanForClub200Response.md)
|
|
77
151
|
- [Slot](docs/Slot.md)
|
|
78
152
|
- [SlotException](docs/SlotException.md)
|
|
153
|
+
- [SlotResponse](docs/SlotResponse.md)
|
|
154
|
+
- [SlotsResponse](docs/SlotsResponse.md)
|
|
155
|
+
- [Sport](docs/Sport.md)
|
|
156
|
+
- [SportResponse](docs/SportResponse.md)
|
|
157
|
+
- [SportsResponse](docs/SportsResponse.md)
|
|
79
158
|
- [StripeStatus](docs/StripeStatus.md)
|
|
159
|
+
- [SubscriptionPlan](docs/SubscriptionPlan.md)
|
|
160
|
+
- [SubscriptionPlanResponse](docs/SubscriptionPlanResponse.md)
|
|
161
|
+
- [UpdateClubRequest](docs/UpdateClubRequest.md)
|
|
162
|
+
- [UpdateClubRoleRequestBody](docs/UpdateClubRoleRequestBody.md)
|
|
163
|
+
- [UpdateSportRequest](docs/UpdateSportRequest.md)
|
|
164
|
+
- [UpdateSubscriptionPlanRequest](docs/UpdateSubscriptionPlanRequest.md)
|
|
165
|
+
- [UpdateSubscriptionPlanResponse](docs/UpdateSubscriptionPlanResponse.md)
|
|
80
166
|
- [UpdateUserRequestBody](docs/UpdateUserRequestBody.md)
|
|
81
167
|
- [User](docs/User.md)
|
|
82
168
|
- [UserResponse](docs/UserResponse.md)
|
|
@@ -85,5 +171,10 @@ Class | Method | HTTP request | Description
|
|
|
85
171
|
<a id="documentation-for-authorization"></a>
|
|
86
172
|
## Documentation For Authorization
|
|
87
173
|
|
|
88
|
-
|
|
174
|
+
|
|
175
|
+
Authentication schemes defined for the API:
|
|
176
|
+
<a id="bearerAuth"></a>
|
|
177
|
+
### bearerAuth
|
|
178
|
+
|
|
179
|
+
- **Type**: Bearer authentication (JWT)
|
|
89
180
|
|