@tennac-booking/sdk 1.0.138 → 1.0.140

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.
@@ -42,6 +42,7 @@ docs/CancelBookingResponse.md
42
42
  docs/CaptureResult.md
43
43
  docs/ChangePasswordRequestBody.md
44
44
  docs/ChangePasswordResponse.md
45
+ docs/CharacteristicEntry.md
45
46
  docs/CheckInEventParticipants200Response.md
46
47
  docs/CheckInEventParticipants200ResponseInvoicesInner.md
47
48
  docs/CheckInEventParticipantsRequest.md
@@ -75,6 +76,7 @@ docs/ClubPlayerBookingItem.md
75
76
  docs/ClubPlayerBookingsPagination.md
76
77
  docs/ClubPlayerBookingsResponse.md
77
78
  docs/ClubPlayerDetailResponse.md
79
+ docs/ClubPlayerDetailResponseCharacteristicsInner.md
78
80
  docs/ClubPlayerDetailResponseSportsLevelsInner.md
79
81
  docs/ClubPlayerResponse.md
80
82
  docs/ClubPlayerStatisticsResponse.md
@@ -175,6 +177,7 @@ docs/GoogleAuthRequestBody.md
175
177
  docs/GoogleAuthResponse.md
176
178
  docs/GoogleAuthResponseUser.md
177
179
  docs/HotelAccessSettings.md
180
+ docs/ICharacteristic.md
178
181
  docs/ICourtData.md
179
182
  docs/ILevelBySports.md
180
183
  docs/IUserAttributes.md
@@ -312,6 +315,7 @@ docs/UpdateSubscriptionPlanForClub200Response.md
312
315
  docs/UpdateSubscriptionPlanRequest.md
313
316
  docs/UpdateUserCreditsRequest.md
314
317
  docs/UpdateUserRequestBody.md
318
+ docs/UpdateUserRequestBodyCharacteristicsInner.md
315
319
  docs/UpdateUserRequestBodyLevelBySportsInner.md
316
320
  docs/UserApi.md
317
321
  docs/UserBookingsResponse.md
package/README.md CHANGED
@@ -261,6 +261,7 @@ Class | Method | HTTP request | Description
261
261
  - [CaptureResult](docs/CaptureResult.md)
262
262
  - [ChangePasswordRequestBody](docs/ChangePasswordRequestBody.md)
263
263
  - [ChangePasswordResponse](docs/ChangePasswordResponse.md)
264
+ - [CharacteristicEntry](docs/CharacteristicEntry.md)
264
265
  - [CheckInEventParticipants200Response](docs/CheckInEventParticipants200Response.md)
265
266
  - [CheckInEventParticipants200ResponseInvoicesInner](docs/CheckInEventParticipants200ResponseInvoicesInner.md)
266
267
  - [CheckInEventParticipantsRequest](docs/CheckInEventParticipantsRequest.md)
@@ -291,6 +292,7 @@ Class | Method | HTTP request | Description
291
292
  - [ClubPlayerBookingsPagination](docs/ClubPlayerBookingsPagination.md)
292
293
  - [ClubPlayerBookingsResponse](docs/ClubPlayerBookingsResponse.md)
293
294
  - [ClubPlayerDetailResponse](docs/ClubPlayerDetailResponse.md)
295
+ - [ClubPlayerDetailResponseCharacteristicsInner](docs/ClubPlayerDetailResponseCharacteristicsInner.md)
294
296
  - [ClubPlayerDetailResponseSportsLevelsInner](docs/ClubPlayerDetailResponseSportsLevelsInner.md)
295
297
  - [ClubPlayerResponse](docs/ClubPlayerResponse.md)
296
298
  - [ClubPlayerStatisticsResponse](docs/ClubPlayerStatisticsResponse.md)
@@ -380,6 +382,7 @@ Class | Method | HTTP request | Description
380
382
  - [GoogleAuthResponse](docs/GoogleAuthResponse.md)
381
383
  - [GoogleAuthResponseUser](docs/GoogleAuthResponseUser.md)
382
384
  - [HotelAccessSettings](docs/HotelAccessSettings.md)
385
+ - [ICharacteristic](docs/ICharacteristic.md)
383
386
  - [ICourtData](docs/ICourtData.md)
384
387
  - [ILevelBySports](docs/ILevelBySports.md)
385
388
  - [IUserAttributes](docs/IUserAttributes.md)
@@ -510,6 +513,7 @@ Class | Method | HTTP request | Description
510
513
  - [UpdateSubscriptionPlanRequest](docs/UpdateSubscriptionPlanRequest.md)
511
514
  - [UpdateUserCreditsRequest](docs/UpdateUserCreditsRequest.md)
512
515
  - [UpdateUserRequestBody](docs/UpdateUserRequestBody.md)
516
+ - [UpdateUserRequestBodyCharacteristicsInner](docs/UpdateUserRequestBodyCharacteristicsInner.md)
513
517
  - [UpdateUserRequestBodyLevelBySportsInner](docs/UpdateUserRequestBodyLevelBySportsInner.md)
514
518
  - [UserBookingsResponse](docs/UserBookingsResponse.md)
515
519
  - [UserClubMembership](docs/UserClubMembership.md)
package/api.ts CHANGED
@@ -1384,6 +1384,25 @@ export interface ChangePasswordResponse {
1384
1384
  */
1385
1385
  'message': string;
1386
1386
  }
1387
+ /**
1388
+ *
1389
+ * @export
1390
+ * @interface CharacteristicEntry
1391
+ */
1392
+ export interface CharacteristicEntry {
1393
+ /**
1394
+ *
1395
+ * @type {string}
1396
+ * @memberof CharacteristicEntry
1397
+ */
1398
+ 'value': string;
1399
+ /**
1400
+ *
1401
+ * @type {string}
1402
+ * @memberof CharacteristicEntry
1403
+ */
1404
+ 'key': string;
1405
+ }
1387
1406
  /**
1388
1407
  *
1389
1408
  * @export
@@ -1450,10 +1469,10 @@ export interface CheckInEventParticipants200ResponseInvoicesInner {
1450
1469
  export interface CheckInEventParticipantsRequest {
1451
1470
  /**
1452
1471
  *
1453
- * @type {Array<string>}
1472
+ * @type {string}
1454
1473
  * @memberof CheckInEventParticipantsRequest
1455
1474
  */
1456
- 'playerIds': Array<string>;
1475
+ 'playerId': string;
1457
1476
  }
1458
1477
  /**
1459
1478
  *
@@ -2493,6 +2512,12 @@ export interface ClubPlayerDetailResponse {
2493
2512
  * @memberof ClubPlayerDetailResponse
2494
2513
  */
2495
2514
  'sportsLevels': Array<ClubPlayerDetailResponseSportsLevelsInner>;
2515
+ /**
2516
+ * Caractéristiques personnalisées
2517
+ * @type {Array<ClubPlayerDetailResponseCharacteristicsInner>}
2518
+ * @memberof ClubPlayerDetailResponse
2519
+ */
2520
+ 'characteristics': Array<ClubPlayerDetailResponseCharacteristicsInner>;
2496
2521
  /**
2497
2522
  * Date de naissance
2498
2523
  * @type {string}
@@ -2506,6 +2531,25 @@ export interface ClubPlayerDetailResponse {
2506
2531
  */
2507
2532
  'credits': number | null;
2508
2533
  }
2534
+ /**
2535
+ *
2536
+ * @export
2537
+ * @interface ClubPlayerDetailResponseCharacteristicsInner
2538
+ */
2539
+ export interface ClubPlayerDetailResponseCharacteristicsInner {
2540
+ /**
2541
+ *
2542
+ * @type {string}
2543
+ * @memberof ClubPlayerDetailResponseCharacteristicsInner
2544
+ */
2545
+ 'value': string | null;
2546
+ /**
2547
+ *
2548
+ * @type {string}
2549
+ * @memberof ClubPlayerDetailResponseCharacteristicsInner
2550
+ */
2551
+ 'key': string | null;
2552
+ }
2509
2553
  /**
2510
2554
  *
2511
2555
  * @export
@@ -5540,6 +5584,25 @@ export interface HotelAccessSettings {
5540
5584
  */
5541
5585
  'validUntil'?: string | null;
5542
5586
  }
5587
+ /**
5588
+ *
5589
+ * @export
5590
+ * @interface ICharacteristic
5591
+ */
5592
+ export interface ICharacteristic {
5593
+ /**
5594
+ *
5595
+ * @type {string}
5596
+ * @memberof ICharacteristic
5597
+ */
5598
+ 'key': string;
5599
+ /**
5600
+ *
5601
+ * @type {string}
5602
+ * @memberof ICharacteristic
5603
+ */
5604
+ 'value': string;
5605
+ }
5543
5606
  /**
5544
5607
  *
5545
5608
  * @export
@@ -5706,6 +5769,12 @@ export interface IUserAttributes {
5706
5769
  * @memberof IUserAttributes
5707
5770
  */
5708
5771
  'levelBySports'?: Array<ILevelBySports>;
5772
+ /**
5773
+ *
5774
+ * @type {Array<ICharacteristic>}
5775
+ * @memberof IUserAttributes
5776
+ */
5777
+ 'characteristics'?: Array<ICharacteristic>;
5709
5778
  /**
5710
5779
  *
5711
5780
  * @type {string}
@@ -7421,6 +7490,12 @@ export interface PlayerSummary {
7421
7490
  * @memberof PlayerSummary
7422
7491
  */
7423
7492
  'levelBySports'?: Array<LevelBySportEntry>;
7493
+ /**
7494
+ *
7495
+ * @type {Array<CharacteristicEntry>}
7496
+ * @memberof PlayerSummary
7497
+ */
7498
+ 'characteristics'?: Array<CharacteristicEntry>;
7424
7499
  /**
7425
7500
  *
7426
7501
  * @type {UserLocationSummary}
@@ -7658,6 +7733,12 @@ export interface PublicUserProfileResponse {
7658
7733
  * @memberof PublicUserProfileResponse
7659
7734
  */
7660
7735
  'levelBySports'?: Array<LevelBySportEntry>;
7736
+ /**
7737
+ *
7738
+ * @type {Array<CharacteristicEntry>}
7739
+ * @memberof PublicUserProfileResponse
7740
+ */
7741
+ 'characteristics'?: Array<CharacteristicEntry>;
7661
7742
  /**
7662
7743
  *
7663
7744
  * @type {string}
@@ -9034,6 +9115,12 @@ export interface StaffUserProfileResponse {
9034
9115
  * @memberof StaffUserProfileResponse
9035
9116
  */
9036
9117
  'levelBySports'?: Array<ILevelBySports>;
9118
+ /**
9119
+ *
9120
+ * @type {Array<ICharacteristic>}
9121
+ * @memberof StaffUserProfileResponse
9122
+ */
9123
+ 'characteristics'?: Array<ICharacteristic>;
9037
9124
  /**
9038
9125
  *
9039
9126
  * @type {string}
@@ -9462,7 +9549,10 @@ export interface SubscriptionPlanResponse {
9462
9549
  export const SurfaceType = {
9463
9550
  Clay: 'clay',
9464
9551
  Grass: 'grass',
9465
- Hard: 'hard'
9552
+ Hard: 'hard',
9553
+ Turf: 'turf',
9554
+ Carpet: 'carpet',
9555
+ Wooden: 'wooden'
9466
9556
  } as const;
9467
9557
 
9468
9558
  export type SurfaceType = typeof SurfaceType[keyof typeof SurfaceType];
@@ -10426,6 +10516,12 @@ export interface UpdateUserRequestBody {
10426
10516
  * @memberof UpdateUserRequestBody
10427
10517
  */
10428
10518
  'levelBySports'?: Array<UpdateUserRequestBodyLevelBySportsInner>;
10519
+ /**
10520
+ *
10521
+ * @type {Array<UpdateUserRequestBodyCharacteristicsInner>}
10522
+ * @memberof UpdateUserRequestBody
10523
+ */
10524
+ 'characteristics'?: Array<UpdateUserRequestBodyCharacteristicsInner>;
10429
10525
  /**
10430
10526
  *
10431
10527
  * @type {boolean}
@@ -10445,6 +10541,25 @@ export interface UpdateUserRequestBody {
10445
10541
  */
10446
10542
  'location'?: RegisterRequestBodyLocation;
10447
10543
  }
10544
+ /**
10545
+ *
10546
+ * @export
10547
+ * @interface UpdateUserRequestBodyCharacteristicsInner
10548
+ */
10549
+ export interface UpdateUserRequestBodyCharacteristicsInner {
10550
+ /**
10551
+ *
10552
+ * @type {string}
10553
+ * @memberof UpdateUserRequestBodyCharacteristicsInner
10554
+ */
10555
+ 'value': string;
10556
+ /**
10557
+ *
10558
+ * @type {string}
10559
+ * @memberof UpdateUserRequestBodyCharacteristicsInner
10560
+ */
10561
+ 'key': string;
10562
+ }
10448
10563
  /**
10449
10564
  *
10450
10565
  * @export
@@ -11012,6 +11127,12 @@ export interface UserProfileResponse {
11012
11127
  * @memberof UserProfileResponse
11013
11128
  */
11014
11129
  'levelBySports'?: Array<ILevelBySports>;
11130
+ /**
11131
+ *
11132
+ * @type {Array<ICharacteristic>}
11133
+ * @memberof UserProfileResponse
11134
+ */
11135
+ 'characteristics'?: Array<ICharacteristic>;
11015
11136
  /**
11016
11137
  *
11017
11138
  * @type {string}
package/dist/api.d.ts CHANGED
@@ -1349,6 +1349,25 @@ export interface ChangePasswordResponse {
1349
1349
  */
1350
1350
  'message': string;
1351
1351
  }
1352
+ /**
1353
+ *
1354
+ * @export
1355
+ * @interface CharacteristicEntry
1356
+ */
1357
+ export interface CharacteristicEntry {
1358
+ /**
1359
+ *
1360
+ * @type {string}
1361
+ * @memberof CharacteristicEntry
1362
+ */
1363
+ 'value': string;
1364
+ /**
1365
+ *
1366
+ * @type {string}
1367
+ * @memberof CharacteristicEntry
1368
+ */
1369
+ 'key': string;
1370
+ }
1352
1371
  /**
1353
1372
  *
1354
1373
  * @export
@@ -1413,10 +1432,10 @@ export interface CheckInEventParticipants200ResponseInvoicesInner {
1413
1432
  export interface CheckInEventParticipantsRequest {
1414
1433
  /**
1415
1434
  *
1416
- * @type {Array<string>}
1435
+ * @type {string}
1417
1436
  * @memberof CheckInEventParticipantsRequest
1418
1437
  */
1419
- 'playerIds': Array<string>;
1438
+ 'playerId': string;
1420
1439
  }
1421
1440
  /**
1422
1441
  *
@@ -2451,6 +2470,12 @@ export interface ClubPlayerDetailResponse {
2451
2470
  * @memberof ClubPlayerDetailResponse
2452
2471
  */
2453
2472
  'sportsLevels': Array<ClubPlayerDetailResponseSportsLevelsInner>;
2473
+ /**
2474
+ * Caractéristiques personnalisées
2475
+ * @type {Array<ClubPlayerDetailResponseCharacteristicsInner>}
2476
+ * @memberof ClubPlayerDetailResponse
2477
+ */
2478
+ 'characteristics': Array<ClubPlayerDetailResponseCharacteristicsInner>;
2454
2479
  /**
2455
2480
  * Date de naissance
2456
2481
  * @type {string}
@@ -2464,6 +2489,25 @@ export interface ClubPlayerDetailResponse {
2464
2489
  */
2465
2490
  'credits': number | null;
2466
2491
  }
2492
+ /**
2493
+ *
2494
+ * @export
2495
+ * @interface ClubPlayerDetailResponseCharacteristicsInner
2496
+ */
2497
+ export interface ClubPlayerDetailResponseCharacteristicsInner {
2498
+ /**
2499
+ *
2500
+ * @type {string}
2501
+ * @memberof ClubPlayerDetailResponseCharacteristicsInner
2502
+ */
2503
+ 'value': string | null;
2504
+ /**
2505
+ *
2506
+ * @type {string}
2507
+ * @memberof ClubPlayerDetailResponseCharacteristicsInner
2508
+ */
2509
+ 'key': string | null;
2510
+ }
2467
2511
  /**
2468
2512
  *
2469
2513
  * @export
@@ -5448,6 +5492,25 @@ export interface HotelAccessSettings {
5448
5492
  */
5449
5493
  'validUntil'?: string | null;
5450
5494
  }
5495
+ /**
5496
+ *
5497
+ * @export
5498
+ * @interface ICharacteristic
5499
+ */
5500
+ export interface ICharacteristic {
5501
+ /**
5502
+ *
5503
+ * @type {string}
5504
+ * @memberof ICharacteristic
5505
+ */
5506
+ 'key': string;
5507
+ /**
5508
+ *
5509
+ * @type {string}
5510
+ * @memberof ICharacteristic
5511
+ */
5512
+ 'value': string;
5513
+ }
5451
5514
  /**
5452
5515
  *
5453
5516
  * @export
@@ -5612,6 +5675,12 @@ export interface IUserAttributes {
5612
5675
  * @memberof IUserAttributes
5613
5676
  */
5614
5677
  'levelBySports'?: Array<ILevelBySports>;
5678
+ /**
5679
+ *
5680
+ * @type {Array<ICharacteristic>}
5681
+ * @memberof IUserAttributes
5682
+ */
5683
+ 'characteristics'?: Array<ICharacteristic>;
5615
5684
  /**
5616
5685
  *
5617
5686
  * @type {string}
@@ -7285,6 +7354,12 @@ export interface PlayerSummary {
7285
7354
  * @memberof PlayerSummary
7286
7355
  */
7287
7356
  'levelBySports'?: Array<LevelBySportEntry>;
7357
+ /**
7358
+ *
7359
+ * @type {Array<CharacteristicEntry>}
7360
+ * @memberof PlayerSummary
7361
+ */
7362
+ 'characteristics'?: Array<CharacteristicEntry>;
7288
7363
  /**
7289
7364
  *
7290
7365
  * @type {UserLocationSummary}
@@ -7513,6 +7588,12 @@ export interface PublicUserProfileResponse {
7513
7588
  * @memberof PublicUserProfileResponse
7514
7589
  */
7515
7590
  'levelBySports'?: Array<LevelBySportEntry>;
7591
+ /**
7592
+ *
7593
+ * @type {Array<CharacteristicEntry>}
7594
+ * @memberof PublicUserProfileResponse
7595
+ */
7596
+ 'characteristics'?: Array<CharacteristicEntry>;
7516
7597
  /**
7517
7598
  *
7518
7599
  * @type {string}
@@ -8871,6 +8952,12 @@ export interface StaffUserProfileResponse {
8871
8952
  * @memberof StaffUserProfileResponse
8872
8953
  */
8873
8954
  'levelBySports'?: Array<ILevelBySports>;
8955
+ /**
8956
+ *
8957
+ * @type {Array<ICharacteristic>}
8958
+ * @memberof StaffUserProfileResponse
8959
+ */
8960
+ 'characteristics'?: Array<ICharacteristic>;
8874
8961
  /**
8875
8962
  *
8876
8963
  * @type {string}
@@ -9295,6 +9382,9 @@ export declare const SurfaceType: {
9295
9382
  readonly Clay: "clay";
9296
9383
  readonly Grass: "grass";
9297
9384
  readonly Hard: "hard";
9385
+ readonly Turf: "turf";
9386
+ readonly Carpet: "carpet";
9387
+ readonly Wooden: "wooden";
9298
9388
  };
9299
9389
  export type SurfaceType = typeof SurfaceType[keyof typeof SurfaceType];
9300
9390
  /**
@@ -10235,6 +10325,12 @@ export interface UpdateUserRequestBody {
10235
10325
  * @memberof UpdateUserRequestBody
10236
10326
  */
10237
10327
  'levelBySports'?: Array<UpdateUserRequestBodyLevelBySportsInner>;
10328
+ /**
10329
+ *
10330
+ * @type {Array<UpdateUserRequestBodyCharacteristicsInner>}
10331
+ * @memberof UpdateUserRequestBody
10332
+ */
10333
+ 'characteristics'?: Array<UpdateUserRequestBodyCharacteristicsInner>;
10238
10334
  /**
10239
10335
  *
10240
10336
  * @type {boolean}
@@ -10254,6 +10350,25 @@ export interface UpdateUserRequestBody {
10254
10350
  */
10255
10351
  'location'?: RegisterRequestBodyLocation;
10256
10352
  }
10353
+ /**
10354
+ *
10355
+ * @export
10356
+ * @interface UpdateUserRequestBodyCharacteristicsInner
10357
+ */
10358
+ export interface UpdateUserRequestBodyCharacteristicsInner {
10359
+ /**
10360
+ *
10361
+ * @type {string}
10362
+ * @memberof UpdateUserRequestBodyCharacteristicsInner
10363
+ */
10364
+ 'value': string;
10365
+ /**
10366
+ *
10367
+ * @type {string}
10368
+ * @memberof UpdateUserRequestBodyCharacteristicsInner
10369
+ */
10370
+ 'key': string;
10371
+ }
10257
10372
  /**
10258
10373
  *
10259
10374
  * @export
@@ -10818,6 +10933,12 @@ export interface UserProfileResponse {
10818
10933
  * @memberof UserProfileResponse
10819
10934
  */
10820
10935
  'levelBySports'?: Array<ILevelBySports>;
10936
+ /**
10937
+ *
10938
+ * @type {Array<ICharacteristic>}
10939
+ * @memberof UserProfileResponse
10940
+ */
10941
+ 'characteristics'?: Array<ICharacteristic>;
10821
10942
  /**
10822
10943
  *
10823
10944
  * @type {string}
package/dist/api.js CHANGED
@@ -306,7 +306,10 @@ exports.StaffBookingPaymentState = {
306
306
  exports.SurfaceType = {
307
307
  Clay: 'clay',
308
308
  Grass: 'grass',
309
- Hard: 'hard'
309
+ Hard: 'hard',
310
+ Turf: 'turf',
311
+ Carpet: 'carpet',
312
+ Wooden: 'wooden'
310
313
  };
311
314
  exports.UpdateClubMemberRequestRoleEnum = {
312
315
  Admin: 'admin',
package/dist/esm/api.d.ts CHANGED
@@ -1349,6 +1349,25 @@ export interface ChangePasswordResponse {
1349
1349
  */
1350
1350
  'message': string;
1351
1351
  }
1352
+ /**
1353
+ *
1354
+ * @export
1355
+ * @interface CharacteristicEntry
1356
+ */
1357
+ export interface CharacteristicEntry {
1358
+ /**
1359
+ *
1360
+ * @type {string}
1361
+ * @memberof CharacteristicEntry
1362
+ */
1363
+ 'value': string;
1364
+ /**
1365
+ *
1366
+ * @type {string}
1367
+ * @memberof CharacteristicEntry
1368
+ */
1369
+ 'key': string;
1370
+ }
1352
1371
  /**
1353
1372
  *
1354
1373
  * @export
@@ -1413,10 +1432,10 @@ export interface CheckInEventParticipants200ResponseInvoicesInner {
1413
1432
  export interface CheckInEventParticipantsRequest {
1414
1433
  /**
1415
1434
  *
1416
- * @type {Array<string>}
1435
+ * @type {string}
1417
1436
  * @memberof CheckInEventParticipantsRequest
1418
1437
  */
1419
- 'playerIds': Array<string>;
1438
+ 'playerId': string;
1420
1439
  }
1421
1440
  /**
1422
1441
  *
@@ -2451,6 +2470,12 @@ export interface ClubPlayerDetailResponse {
2451
2470
  * @memberof ClubPlayerDetailResponse
2452
2471
  */
2453
2472
  'sportsLevels': Array<ClubPlayerDetailResponseSportsLevelsInner>;
2473
+ /**
2474
+ * Caractéristiques personnalisées
2475
+ * @type {Array<ClubPlayerDetailResponseCharacteristicsInner>}
2476
+ * @memberof ClubPlayerDetailResponse
2477
+ */
2478
+ 'characteristics': Array<ClubPlayerDetailResponseCharacteristicsInner>;
2454
2479
  /**
2455
2480
  * Date de naissance
2456
2481
  * @type {string}
@@ -2464,6 +2489,25 @@ export interface ClubPlayerDetailResponse {
2464
2489
  */
2465
2490
  'credits': number | null;
2466
2491
  }
2492
+ /**
2493
+ *
2494
+ * @export
2495
+ * @interface ClubPlayerDetailResponseCharacteristicsInner
2496
+ */
2497
+ export interface ClubPlayerDetailResponseCharacteristicsInner {
2498
+ /**
2499
+ *
2500
+ * @type {string}
2501
+ * @memberof ClubPlayerDetailResponseCharacteristicsInner
2502
+ */
2503
+ 'value': string | null;
2504
+ /**
2505
+ *
2506
+ * @type {string}
2507
+ * @memberof ClubPlayerDetailResponseCharacteristicsInner
2508
+ */
2509
+ 'key': string | null;
2510
+ }
2467
2511
  /**
2468
2512
  *
2469
2513
  * @export
@@ -5448,6 +5492,25 @@ export interface HotelAccessSettings {
5448
5492
  */
5449
5493
  'validUntil'?: string | null;
5450
5494
  }
5495
+ /**
5496
+ *
5497
+ * @export
5498
+ * @interface ICharacteristic
5499
+ */
5500
+ export interface ICharacteristic {
5501
+ /**
5502
+ *
5503
+ * @type {string}
5504
+ * @memberof ICharacteristic
5505
+ */
5506
+ 'key': string;
5507
+ /**
5508
+ *
5509
+ * @type {string}
5510
+ * @memberof ICharacteristic
5511
+ */
5512
+ 'value': string;
5513
+ }
5451
5514
  /**
5452
5515
  *
5453
5516
  * @export
@@ -5612,6 +5675,12 @@ export interface IUserAttributes {
5612
5675
  * @memberof IUserAttributes
5613
5676
  */
5614
5677
  'levelBySports'?: Array<ILevelBySports>;
5678
+ /**
5679
+ *
5680
+ * @type {Array<ICharacteristic>}
5681
+ * @memberof IUserAttributes
5682
+ */
5683
+ 'characteristics'?: Array<ICharacteristic>;
5615
5684
  /**
5616
5685
  *
5617
5686
  * @type {string}
@@ -7285,6 +7354,12 @@ export interface PlayerSummary {
7285
7354
  * @memberof PlayerSummary
7286
7355
  */
7287
7356
  'levelBySports'?: Array<LevelBySportEntry>;
7357
+ /**
7358
+ *
7359
+ * @type {Array<CharacteristicEntry>}
7360
+ * @memberof PlayerSummary
7361
+ */
7362
+ 'characteristics'?: Array<CharacteristicEntry>;
7288
7363
  /**
7289
7364
  *
7290
7365
  * @type {UserLocationSummary}
@@ -7513,6 +7588,12 @@ export interface PublicUserProfileResponse {
7513
7588
  * @memberof PublicUserProfileResponse
7514
7589
  */
7515
7590
  'levelBySports'?: Array<LevelBySportEntry>;
7591
+ /**
7592
+ *
7593
+ * @type {Array<CharacteristicEntry>}
7594
+ * @memberof PublicUserProfileResponse
7595
+ */
7596
+ 'characteristics'?: Array<CharacteristicEntry>;
7516
7597
  /**
7517
7598
  *
7518
7599
  * @type {string}
@@ -8871,6 +8952,12 @@ export interface StaffUserProfileResponse {
8871
8952
  * @memberof StaffUserProfileResponse
8872
8953
  */
8873
8954
  'levelBySports'?: Array<ILevelBySports>;
8955
+ /**
8956
+ *
8957
+ * @type {Array<ICharacteristic>}
8958
+ * @memberof StaffUserProfileResponse
8959
+ */
8960
+ 'characteristics'?: Array<ICharacteristic>;
8874
8961
  /**
8875
8962
  *
8876
8963
  * @type {string}
@@ -9295,6 +9382,9 @@ export declare const SurfaceType: {
9295
9382
  readonly Clay: "clay";
9296
9383
  readonly Grass: "grass";
9297
9384
  readonly Hard: "hard";
9385
+ readonly Turf: "turf";
9386
+ readonly Carpet: "carpet";
9387
+ readonly Wooden: "wooden";
9298
9388
  };
9299
9389
  export type SurfaceType = typeof SurfaceType[keyof typeof SurfaceType];
9300
9390
  /**
@@ -10235,6 +10325,12 @@ export interface UpdateUserRequestBody {
10235
10325
  * @memberof UpdateUserRequestBody
10236
10326
  */
10237
10327
  'levelBySports'?: Array<UpdateUserRequestBodyLevelBySportsInner>;
10328
+ /**
10329
+ *
10330
+ * @type {Array<UpdateUserRequestBodyCharacteristicsInner>}
10331
+ * @memberof UpdateUserRequestBody
10332
+ */
10333
+ 'characteristics'?: Array<UpdateUserRequestBodyCharacteristicsInner>;
10238
10334
  /**
10239
10335
  *
10240
10336
  * @type {boolean}
@@ -10254,6 +10350,25 @@ export interface UpdateUserRequestBody {
10254
10350
  */
10255
10351
  'location'?: RegisterRequestBodyLocation;
10256
10352
  }
10353
+ /**
10354
+ *
10355
+ * @export
10356
+ * @interface UpdateUserRequestBodyCharacteristicsInner
10357
+ */
10358
+ export interface UpdateUserRequestBodyCharacteristicsInner {
10359
+ /**
10360
+ *
10361
+ * @type {string}
10362
+ * @memberof UpdateUserRequestBodyCharacteristicsInner
10363
+ */
10364
+ 'value': string;
10365
+ /**
10366
+ *
10367
+ * @type {string}
10368
+ * @memberof UpdateUserRequestBodyCharacteristicsInner
10369
+ */
10370
+ 'key': string;
10371
+ }
10257
10372
  /**
10258
10373
  *
10259
10374
  * @export
@@ -10818,6 +10933,12 @@ export interface UserProfileResponse {
10818
10933
  * @memberof UserProfileResponse
10819
10934
  */
10820
10935
  'levelBySports'?: Array<ILevelBySports>;
10936
+ /**
10937
+ *
10938
+ * @type {Array<ICharacteristic>}
10939
+ * @memberof UserProfileResponse
10940
+ */
10941
+ 'characteristics'?: Array<ICharacteristic>;
10821
10942
  /**
10822
10943
  *
10823
10944
  * @type {string}
package/dist/esm/api.js CHANGED
@@ -300,7 +300,10 @@ export const StaffBookingPaymentState = {
300
300
  export const SurfaceType = {
301
301
  Clay: 'clay',
302
302
  Grass: 'grass',
303
- Hard: 'hard'
303
+ Hard: 'hard',
304
+ Turf: 'turf',
305
+ Carpet: 'carpet',
306
+ Wooden: 'wooden'
304
307
  };
305
308
  export const UpdateClubMemberRequestRoleEnum = {
306
309
  Admin: 'admin',
@@ -0,0 +1,22 @@
1
+ # CharacteristicEntry
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **value** | **string** | | [default to undefined]
9
+ **key** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { CharacteristicEntry } from '@tennac-booking/sdk';
15
+
16
+ const instance: CharacteristicEntry = {
17
+ value,
18
+ key,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **playerIds** | **Array&lt;string&gt;** | | [default to undefined]
8
+ **playerId** | **string** | | [default to undefined]
9
9
 
10
10
  ## Example
11
11
 
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
13
13
  import { CheckInEventParticipantsRequest } from '@tennac-booking/sdk';
14
14
 
15
15
  const instance: CheckInEventParticipantsRequest = {
16
- playerIds,
16
+ playerId,
17
17
  };
18
18
  ```
19
19
 
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
18
18
  **gender** | **string** | Genre | [default to undefined]
19
19
  **city** | **string** | Ville | [default to undefined]
20
20
  **sportsLevels** | [**Array&lt;ClubPlayerDetailResponseSportsLevelsInner&gt;**](ClubPlayerDetailResponseSportsLevelsInner.md) | Niveaux par sport | [default to undefined]
21
+ **characteristics** | [**Array&lt;ClubPlayerDetailResponseCharacteristicsInner&gt;**](ClubPlayerDetailResponseCharacteristicsInner.md) | Caractéristiques personnalisées | [default to undefined]
21
22
  **birthDate** | **string** | Date de naissance | [default to undefined]
22
23
  **credits** | **number** | | [default to undefined]
23
24
 
@@ -40,6 +41,7 @@ const instance: ClubPlayerDetailResponse = {
40
41
  gender,
41
42
  city,
42
43
  sportsLevels,
44
+ characteristics,
43
45
  birthDate,
44
46
  credits,
45
47
  };
@@ -0,0 +1,22 @@
1
+ # ClubPlayerDetailResponseCharacteristicsInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **value** | **string** | | [default to undefined]
9
+ **key** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ClubPlayerDetailResponseCharacteristicsInner } from '@tennac-booking/sdk';
15
+
16
+ const instance: ClubPlayerDetailResponseCharacteristicsInner = {
17
+ value,
18
+ key,
19
+ };
20
+ ```
21
+
22
+ [[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,22 @@
1
+ # ICharacteristic
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **key** | **string** | | [default to undefined]
9
+ **value** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ICharacteristic } from '@tennac-booking/sdk';
15
+
16
+ const instance: ICharacteristic = {
17
+ key,
18
+ value,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **location** | [**IUserLocation**](IUserLocation.md) | | [optional] [default to undefined]
15
15
  **isAccountVerified** | **boolean** | | [default to undefined]
16
16
  **levelBySports** | [**Array&lt;ILevelBySports&gt;**](ILevelBySports.md) | | [optional] [default to undefined]
17
+ **characteristics** | [**Array&lt;ICharacteristic&gt;**](ICharacteristic.md) | | [optional] [default to undefined]
17
18
  **phone** | **string** | | [optional] [default to undefined]
18
19
  **password** | **string** | | [optional] [default to undefined]
19
20
  **profilePicture** | **string** | | [optional] [default to undefined]
@@ -49,6 +50,7 @@ const instance: IUserAttributes = {
49
50
  location,
50
51
  isAccountVerified,
51
52
  levelBySports,
53
+ characteristics,
52
54
  phone,
53
55
  password,
54
56
  profilePicture,
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **profilePicture** | **string** | | [optional] [default to undefined]
14
14
  **gender** | [**Gender**](Gender.md) | | [optional] [default to undefined]
15
15
  **levelBySports** | [**Array&lt;LevelBySportEntry&gt;**](LevelBySportEntry.md) | | [optional] [default to undefined]
16
+ **characteristics** | [**Array&lt;CharacteristicEntry&gt;**](CharacteristicEntry.md) | | [optional] [default to undefined]
16
17
  **location** | [**UserLocationSummary**](UserLocationSummary.md) | | [default to undefined]
17
18
  **sharedClubs** | **boolean** | | [default to undefined]
18
19
  **lastPlayedAt** | **string** | | [optional] [default to undefined]
@@ -32,6 +33,7 @@ const instance: PlayerSummary = {
32
33
  profilePicture,
33
34
  gender,
34
35
  levelBySports,
36
+ characteristics,
35
37
  location,
36
38
  sharedClubs,
37
39
  lastPlayedAt,
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
  **createdAt** | **string** | | [default to undefined]
16
16
  **profilePicture** | **string** | | [optional] [default to undefined]
17
17
  **levelBySports** | [**Array&lt;LevelBySportEntry&gt;**](LevelBySportEntry.md) | | [optional] [default to undefined]
18
+ **characteristics** | [**Array&lt;CharacteristicEntry&gt;**](CharacteristicEntry.md) | | [optional] [default to undefined]
18
19
  **description** | **string** | | [optional] [default to undefined]
19
20
  **frequentlyVisitedClubs** | [**Array&lt;ClubSummary&gt;**](ClubSummary.md) | | [default to undefined]
20
21
  **recentlyPlayedWith** | [**Array&lt;PlayerSummary&gt;**](PlayerSummary.md) | | [default to undefined]
@@ -35,6 +36,7 @@ const instance: PublicUserProfileResponse = {
35
36
  createdAt,
36
37
  profilePicture,
37
38
  levelBySports,
39
+ characteristics,
38
40
  description,
39
41
  frequentlyVisitedClubs,
40
42
  recentlyPlayedWith,
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **location** | [**IUserLocation**](IUserLocation.md) | | [optional] [default to undefined]
15
15
  **isAccountVerified** | **boolean** | | [default to undefined]
16
16
  **levelBySports** | [**Array&lt;ILevelBySports&gt;**](ILevelBySports.md) | | [optional] [default to undefined]
17
+ **characteristics** | [**Array&lt;ICharacteristic&gt;**](ICharacteristic.md) | | [optional] [default to undefined]
17
18
  **phone** | **string** | | [optional] [default to undefined]
18
19
  **password** | **string** | | [optional] [default to undefined]
19
20
  **profilePicture** | **string** | | [optional] [default to undefined]
@@ -51,6 +52,7 @@ const instance: StaffUserProfileResponse = {
51
52
  location,
52
53
  isAccountVerified,
53
54
  levelBySports,
55
+ characteristics,
54
56
  phone,
55
57
  password,
56
58
  profilePicture,
@@ -9,4 +9,10 @@
9
9
 
10
10
  * `Hard` (value: `'hard'`)
11
11
 
12
+ * `Turf` (value: `'turf'`)
13
+
14
+ * `Carpet` (value: `'carpet'`)
15
+
16
+ * `Wooden` (value: `'wooden'`)
17
+
12
18
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
12
12
  **phone** | **string** | | [optional] [default to undefined]
13
13
  **profilePicture** | **string** | | [optional] [default to undefined]
14
14
  **levelBySports** | [**Array&lt;UpdateUserRequestBodyLevelBySportsInner&gt;**](UpdateUserRequestBodyLevelBySportsInner.md) | | [optional] [default to undefined]
15
+ **characteristics** | [**Array&lt;UpdateUserRequestBodyCharacteristicsInner&gt;**](UpdateUserRequestBodyCharacteristicsInner.md) | | [optional] [default to undefined]
15
16
  **isProfileVisible** | **boolean** | | [optional] [default to undefined]
16
17
  **description** | **string** | | [optional] [default to undefined]
17
18
  **location** | [**RegisterRequestBodyLocation**](RegisterRequestBodyLocation.md) | | [optional] [default to undefined]
@@ -29,6 +30,7 @@ const instance: UpdateUserRequestBody = {
29
30
  phone,
30
31
  profilePicture,
31
32
  levelBySports,
33
+ characteristics,
32
34
  isProfileVisible,
33
35
  description,
34
36
  location,
@@ -0,0 +1,22 @@
1
+ # UpdateUserRequestBodyCharacteristicsInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **value** | **string** | | [default to undefined]
9
+ **key** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { UpdateUserRequestBodyCharacteristicsInner } from '@tennac-booking/sdk';
15
+
16
+ const instance: UpdateUserRequestBodyCharacteristicsInner = {
17
+ value,
18
+ key,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **location** | [**IUserLocation**](IUserLocation.md) | | [optional] [default to undefined]
15
15
  **isAccountVerified** | **boolean** | | [default to undefined]
16
16
  **levelBySports** | [**Array&lt;ILevelBySports&gt;**](ILevelBySports.md) | | [optional] [default to undefined]
17
+ **characteristics** | [**Array&lt;ICharacteristic&gt;**](ICharacteristic.md) | | [optional] [default to undefined]
17
18
  **phone** | **string** | | [optional] [default to undefined]
18
19
  **password** | **string** | | [optional] [default to undefined]
19
20
  **profilePicture** | **string** | | [optional] [default to undefined]
@@ -57,6 +58,7 @@ const instance: UserProfileResponse = {
57
58
  location,
58
59
  isAccountVerified,
59
60
  levelBySports,
61
+ characteristics,
60
62
  phone,
61
63
  password,
62
64
  profilePicture,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tennac-booking/sdk",
3
- "version": "1.0.138",
3
+ "version": "1.0.140",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {