@tennac-booking/sdk 1.0.8 → 1.0.10
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 +10 -1
- package/README.md +17 -1
- package/api.ts +881 -9
- package/dist/api.d.ts +639 -7
- package/dist/api.js +415 -4
- package/dist/esm/api.d.ts +639 -7
- package/dist/esm/api.js +416 -5
- package/docs/ApiErrorResponse.md +22 -0
- package/docs/ChangePasswordRequestBody.md +22 -0
- package/docs/ChangePasswordResponse.md +20 -0
- package/docs/LoginRequestBody.md +22 -0
- package/docs/LoginResponse.md +26 -0
- package/docs/RefreshTokenRequestBody.md +20 -0
- package/docs/RefreshTokenResponse.md +26 -0
- package/docs/RegisterRequestBody.md +36 -0
- package/docs/UpdateUserRequestBody.md +32 -0
- package/docs/UserResponse.md +44 -0
- package/docs/UsersApi.md +343 -4
- package/package.json +1 -4
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# RegisterRequestBody
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**username** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**firstName** | **string** | | [default to undefined]
|
|
10
|
+
**lastName** | **string** | | [default to undefined]
|
|
11
|
+
**email** | **string** | | [default to undefined]
|
|
12
|
+
**password** | **string** | | [default to undefined]
|
|
13
|
+
**level** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**stripeCustomerId** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**phone** | **string** | | [optional] [default to undefined]
|
|
16
|
+
**profilePicture** | **string** | | [optional] [default to undefined]
|
|
17
|
+
|
|
18
|
+
## Example
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import { RegisterRequestBody } from '@tennac-booking/sdk';
|
|
22
|
+
|
|
23
|
+
const instance: RegisterRequestBody = {
|
|
24
|
+
username,
|
|
25
|
+
firstName,
|
|
26
|
+
lastName,
|
|
27
|
+
email,
|
|
28
|
+
password,
|
|
29
|
+
level,
|
|
30
|
+
stripeCustomerId,
|
|
31
|
+
phone,
|
|
32
|
+
profilePicture,
|
|
33
|
+
};
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# UpdateUserRequestBody
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**username** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**firstName** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**lastName** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**email** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**phone** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**profilePicture** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**level** | **string** | | [optional] [default to undefined]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import { UpdateUserRequestBody } from '@tennac-booking/sdk';
|
|
20
|
+
|
|
21
|
+
const instance: UpdateUserRequestBody = {
|
|
22
|
+
username,
|
|
23
|
+
firstName,
|
|
24
|
+
lastName,
|
|
25
|
+
email,
|
|
26
|
+
phone,
|
|
27
|
+
profilePicture,
|
|
28
|
+
level,
|
|
29
|
+
};
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# UserResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
**username** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**firstName** | **string** | | [default to undefined]
|
|
11
|
+
**lastName** | **string** | | [default to undefined]
|
|
12
|
+
**email** | **string** | | [default to undefined]
|
|
13
|
+
**isAccountVerified** | **boolean** | | [default to undefined]
|
|
14
|
+
**level** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**stripeCustomerId** | **string** | | [optional] [default to undefined]
|
|
16
|
+
**phone** | **string** | | [optional] [default to undefined]
|
|
17
|
+
**profilePicture** | **string** | | [optional] [default to undefined]
|
|
18
|
+
**isAdmin** | **boolean** | | [default to undefined]
|
|
19
|
+
**createdAt** | **string** | | [default to undefined]
|
|
20
|
+
**updatedAt** | **string** | | [default to undefined]
|
|
21
|
+
|
|
22
|
+
## Example
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
import { UserResponse } from '@tennac-booking/sdk';
|
|
26
|
+
|
|
27
|
+
const instance: UserResponse = {
|
|
28
|
+
id,
|
|
29
|
+
username,
|
|
30
|
+
firstName,
|
|
31
|
+
lastName,
|
|
32
|
+
email,
|
|
33
|
+
isAccountVerified,
|
|
34
|
+
level,
|
|
35
|
+
stripeCustomerId,
|
|
36
|
+
phone,
|
|
37
|
+
profilePicture,
|
|
38
|
+
isAdmin,
|
|
39
|
+
createdAt,
|
|
40
|
+
updatedAt,
|
|
41
|
+
};
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/UsersApi.md
CHANGED
|
@@ -4,10 +4,74 @@ All URIs are relative to *https://api.mon-domaine.com*
|
|
|
4
4
|
|
|
5
5
|
|Method | HTTP request | Description|
|
|
6
6
|
|------------- | ------------- | -------------|
|
|
7
|
-
|[**
|
|
7
|
+
|[**changePassword**](#changepassword) | **PUT** /api/users/{id}/password | Modifie le mot de passe d\'un utilisateur|
|
|
8
|
+
|[**getAllUsers**](#getallusers) | **GET** /api/users | Récupère la liste des utilisateurs|
|
|
9
|
+
|[**getUserInfo**](#getuserinfo) | **GET** /api/users/{id} | Récupère un utilisateur par ID|
|
|
10
|
+
|[**login**](#login) | **POST** /api/users/login | Authentifie un utilisateur|
|
|
11
|
+
|[**refreshToken**](#refreshtoken) | **POST** /api/users/refresh-token | Rafraîchit le token d\'accès|
|
|
12
|
+
|[**register**](#register) | **POST** /api/users | Crée un nouvel utilisateur|
|
|
13
|
+
|[**updateUser**](#updateuser) | **PUT** /api/users/{id} | Met à jour un utilisateur|
|
|
14
|
+
|
|
15
|
+
# **changePassword**
|
|
16
|
+
> ChangePasswordResponse changePassword(changePasswordRequestBody)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Example
|
|
20
|
+
|
|
21
|
+
```typescript
|
|
22
|
+
import {
|
|
23
|
+
UsersApi,
|
|
24
|
+
Configuration,
|
|
25
|
+
ChangePasswordRequestBody
|
|
26
|
+
} from '@tennac-booking/sdk';
|
|
27
|
+
|
|
28
|
+
const configuration = new Configuration();
|
|
29
|
+
const apiInstance = new UsersApi(configuration);
|
|
30
|
+
|
|
31
|
+
let id: string; //ID de l\'utilisateur (default to undefined)
|
|
32
|
+
let changePasswordRequestBody: ChangePasswordRequestBody; //
|
|
33
|
+
|
|
34
|
+
const { status, data } = await apiInstance.changePassword(
|
|
35
|
+
id,
|
|
36
|
+
changePasswordRequestBody
|
|
37
|
+
);
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Parameters
|
|
41
|
+
|
|
42
|
+
|Name | Type | Description | Notes|
|
|
43
|
+
|------------- | ------------- | ------------- | -------------|
|
|
44
|
+
| **changePasswordRequestBody** | **ChangePasswordRequestBody**| | |
|
|
45
|
+
| **id** | [**string**] | ID de l\'utilisateur | defaults to undefined|
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Return type
|
|
49
|
+
|
|
50
|
+
**ChangePasswordResponse**
|
|
51
|
+
|
|
52
|
+
### Authorization
|
|
53
|
+
|
|
54
|
+
No authorization required
|
|
55
|
+
|
|
56
|
+
### HTTP request headers
|
|
57
|
+
|
|
58
|
+
- **Content-Type**: application/json
|
|
59
|
+
- **Accept**: application/json
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### HTTP response details
|
|
63
|
+
| Status code | Description | Response headers |
|
|
64
|
+
|-------------|-------------|------------------|
|
|
65
|
+
|**200** | Mot de passe modifié | - |
|
|
66
|
+
|**400** | | - |
|
|
67
|
+
|**401** | | - |
|
|
68
|
+
|**404** | | - |
|
|
69
|
+
|**500** | | - |
|
|
70
|
+
|
|
71
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
8
72
|
|
|
9
73
|
# **getAllUsers**
|
|
10
|
-
> Array<
|
|
74
|
+
> Array<UserResponse> getAllUsers()
|
|
11
75
|
|
|
12
76
|
|
|
13
77
|
### Example
|
|
@@ -30,7 +94,59 @@ This endpoint does not have any parameters.
|
|
|
30
94
|
|
|
31
95
|
### Return type
|
|
32
96
|
|
|
33
|
-
**Array<
|
|
97
|
+
**Array<UserResponse>**
|
|
98
|
+
|
|
99
|
+
### Authorization
|
|
100
|
+
|
|
101
|
+
No authorization required
|
|
102
|
+
|
|
103
|
+
### HTTP request headers
|
|
104
|
+
|
|
105
|
+
- **Content-Type**: Not defined
|
|
106
|
+
- **Accept**: application/json
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### HTTP response details
|
|
110
|
+
| Status code | Description | Response headers |
|
|
111
|
+
|-------------|-------------|------------------|
|
|
112
|
+
|**200** | Liste des utilisateurs | - |
|
|
113
|
+
|**401** | | - |
|
|
114
|
+
|**500** | | - |
|
|
115
|
+
|
|
116
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
117
|
+
|
|
118
|
+
# **getUserInfo**
|
|
119
|
+
> UserResponse getUserInfo()
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
### Example
|
|
123
|
+
|
|
124
|
+
```typescript
|
|
125
|
+
import {
|
|
126
|
+
UsersApi,
|
|
127
|
+
Configuration
|
|
128
|
+
} from '@tennac-booking/sdk';
|
|
129
|
+
|
|
130
|
+
const configuration = new Configuration();
|
|
131
|
+
const apiInstance = new UsersApi(configuration);
|
|
132
|
+
|
|
133
|
+
let id: string; //ID de l\'utilisateur (default to undefined)
|
|
134
|
+
|
|
135
|
+
const { status, data } = await apiInstance.getUserInfo(
|
|
136
|
+
id
|
|
137
|
+
);
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
### Parameters
|
|
141
|
+
|
|
142
|
+
|Name | Type | Description | Notes|
|
|
143
|
+
|------------- | ------------- | ------------- | -------------|
|
|
144
|
+
| **id** | [**string**] | ID de l\'utilisateur | defaults to undefined|
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
### Return type
|
|
148
|
+
|
|
149
|
+
**UserResponse**
|
|
34
150
|
|
|
35
151
|
### Authorization
|
|
36
152
|
|
|
@@ -45,7 +161,230 @@ No authorization required
|
|
|
45
161
|
### HTTP response details
|
|
46
162
|
| Status code | Description | Response headers |
|
|
47
163
|
|-------------|-------------|------------------|
|
|
48
|
-
|**200** |
|
|
164
|
+
|**200** | Informations de l\'utilisateur | - |
|
|
165
|
+
|**401** | | - |
|
|
166
|
+
|**404** | | - |
|
|
167
|
+
|**500** | | - |
|
|
168
|
+
|
|
169
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
170
|
+
|
|
171
|
+
# **login**
|
|
172
|
+
> LoginResponse login(loginRequestBody)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Example
|
|
176
|
+
|
|
177
|
+
```typescript
|
|
178
|
+
import {
|
|
179
|
+
UsersApi,
|
|
180
|
+
Configuration,
|
|
181
|
+
LoginRequestBody
|
|
182
|
+
} from '@tennac-booking/sdk';
|
|
183
|
+
|
|
184
|
+
const configuration = new Configuration();
|
|
185
|
+
const apiInstance = new UsersApi(configuration);
|
|
186
|
+
|
|
187
|
+
let loginRequestBody: LoginRequestBody; //
|
|
188
|
+
|
|
189
|
+
const { status, data } = await apiInstance.login(
|
|
190
|
+
loginRequestBody
|
|
191
|
+
);
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
### Parameters
|
|
195
|
+
|
|
196
|
+
|Name | Type | Description | Notes|
|
|
197
|
+
|------------- | ------------- | ------------- | -------------|
|
|
198
|
+
| **loginRequestBody** | **LoginRequestBody**| | |
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
### Return type
|
|
202
|
+
|
|
203
|
+
**LoginResponse**
|
|
204
|
+
|
|
205
|
+
### Authorization
|
|
206
|
+
|
|
207
|
+
No authorization required
|
|
208
|
+
|
|
209
|
+
### HTTP request headers
|
|
210
|
+
|
|
211
|
+
- **Content-Type**: application/json
|
|
212
|
+
- **Accept**: application/json
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
### HTTP response details
|
|
216
|
+
| Status code | Description | Response headers |
|
|
217
|
+
|-------------|-------------|------------------|
|
|
218
|
+
|**200** | Authentification réussie | - |
|
|
219
|
+
|**400** | | - |
|
|
220
|
+
|**401** | | - |
|
|
221
|
+
|**500** | | - |
|
|
222
|
+
|
|
223
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
224
|
+
|
|
225
|
+
# **refreshToken**
|
|
226
|
+
> RefreshTokenResponse refreshToken(refreshTokenRequestBody)
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
### Example
|
|
230
|
+
|
|
231
|
+
```typescript
|
|
232
|
+
import {
|
|
233
|
+
UsersApi,
|
|
234
|
+
Configuration,
|
|
235
|
+
RefreshTokenRequestBody
|
|
236
|
+
} from '@tennac-booking/sdk';
|
|
237
|
+
|
|
238
|
+
const configuration = new Configuration();
|
|
239
|
+
const apiInstance = new UsersApi(configuration);
|
|
240
|
+
|
|
241
|
+
let refreshTokenRequestBody: RefreshTokenRequestBody; //
|
|
242
|
+
|
|
243
|
+
const { status, data } = await apiInstance.refreshToken(
|
|
244
|
+
refreshTokenRequestBody
|
|
245
|
+
);
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
### Parameters
|
|
249
|
+
|
|
250
|
+
|Name | Type | Description | Notes|
|
|
251
|
+
|------------- | ------------- | ------------- | -------------|
|
|
252
|
+
| **refreshTokenRequestBody** | **RefreshTokenRequestBody**| | |
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
### Return type
|
|
256
|
+
|
|
257
|
+
**RefreshTokenResponse**
|
|
258
|
+
|
|
259
|
+
### Authorization
|
|
260
|
+
|
|
261
|
+
No authorization required
|
|
262
|
+
|
|
263
|
+
### HTTP request headers
|
|
264
|
+
|
|
265
|
+
- **Content-Type**: application/json
|
|
266
|
+
- **Accept**: application/json
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
### HTTP response details
|
|
270
|
+
| Status code | Description | Response headers |
|
|
271
|
+
|-------------|-------------|------------------|
|
|
272
|
+
|**200** | Nouveaux tokens | - |
|
|
273
|
+
|**400** | | - |
|
|
274
|
+
|**401** | | - |
|
|
275
|
+
|**500** | | - |
|
|
276
|
+
|
|
277
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
278
|
+
|
|
279
|
+
# **register**
|
|
280
|
+
> UserResponse register(registerRequestBody)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
### Example
|
|
284
|
+
|
|
285
|
+
```typescript
|
|
286
|
+
import {
|
|
287
|
+
UsersApi,
|
|
288
|
+
Configuration,
|
|
289
|
+
RegisterRequestBody
|
|
290
|
+
} from '@tennac-booking/sdk';
|
|
291
|
+
|
|
292
|
+
const configuration = new Configuration();
|
|
293
|
+
const apiInstance = new UsersApi(configuration);
|
|
294
|
+
|
|
295
|
+
let registerRequestBody: RegisterRequestBody; //
|
|
296
|
+
|
|
297
|
+
const { status, data } = await apiInstance.register(
|
|
298
|
+
registerRequestBody
|
|
299
|
+
);
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
### Parameters
|
|
303
|
+
|
|
304
|
+
|Name | Type | Description | Notes|
|
|
305
|
+
|------------- | ------------- | ------------- | -------------|
|
|
306
|
+
| **registerRequestBody** | **RegisterRequestBody**| | |
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
### Return type
|
|
310
|
+
|
|
311
|
+
**UserResponse**
|
|
312
|
+
|
|
313
|
+
### Authorization
|
|
314
|
+
|
|
315
|
+
No authorization required
|
|
316
|
+
|
|
317
|
+
### HTTP request headers
|
|
318
|
+
|
|
319
|
+
- **Content-Type**: application/json
|
|
320
|
+
- **Accept**: application/json
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
### HTTP response details
|
|
324
|
+
| Status code | Description | Response headers |
|
|
325
|
+
|-------------|-------------|------------------|
|
|
326
|
+
|**201** | Utilisateur créé | - |
|
|
327
|
+
|**400** | | - |
|
|
328
|
+
|**409** | Email déjà utilisé | - |
|
|
329
|
+
|**500** | | - |
|
|
330
|
+
|
|
331
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
332
|
+
|
|
333
|
+
# **updateUser**
|
|
334
|
+
> UserResponse updateUser(updateUserRequestBody)
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
### Example
|
|
338
|
+
|
|
339
|
+
```typescript
|
|
340
|
+
import {
|
|
341
|
+
UsersApi,
|
|
342
|
+
Configuration,
|
|
343
|
+
UpdateUserRequestBody
|
|
344
|
+
} from '@tennac-booking/sdk';
|
|
345
|
+
|
|
346
|
+
const configuration = new Configuration();
|
|
347
|
+
const apiInstance = new UsersApi(configuration);
|
|
348
|
+
|
|
349
|
+
let id: string; //ID de l\'utilisateur (default to undefined)
|
|
350
|
+
let updateUserRequestBody: UpdateUserRequestBody; //
|
|
351
|
+
|
|
352
|
+
const { status, data } = await apiInstance.updateUser(
|
|
353
|
+
id,
|
|
354
|
+
updateUserRequestBody
|
|
355
|
+
);
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
### Parameters
|
|
359
|
+
|
|
360
|
+
|Name | Type | Description | Notes|
|
|
361
|
+
|------------- | ------------- | ------------- | -------------|
|
|
362
|
+
| **updateUserRequestBody** | **UpdateUserRequestBody**| | |
|
|
363
|
+
| **id** | [**string**] | ID de l\'utilisateur | defaults to undefined|
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Return type
|
|
367
|
+
|
|
368
|
+
**UserResponse**
|
|
369
|
+
|
|
370
|
+
### Authorization
|
|
371
|
+
|
|
372
|
+
No authorization required
|
|
373
|
+
|
|
374
|
+
### HTTP request headers
|
|
375
|
+
|
|
376
|
+
- **Content-Type**: application/json
|
|
377
|
+
- **Accept**: application/json
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
### HTTP response details
|
|
381
|
+
| Status code | Description | Response headers |
|
|
382
|
+
|-------------|-------------|------------------|
|
|
383
|
+
|**200** | Utilisateur mis à jour | - |
|
|
384
|
+
|**400** | | - |
|
|
385
|
+
|**401** | | - |
|
|
386
|
+
|**404** | | - |
|
|
387
|
+
|**500** | | - |
|
|
49
388
|
|
|
50
389
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
51
390
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tennac-booking/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "OpenAPI client for @tennac-booking/sdk",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
|
-
"publishConfig": {
|
|
7
|
-
"access": "public"
|
|
8
|
-
},
|
|
9
6
|
"keywords": [
|
|
10
7
|
"axios",
|
|
11
8
|
"typescript",
|