@tennac-booking/sdk 1.0.217 → 1.0.218
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 +1 -0
- package/README.md +1 -0
- package/api.ts +37 -0
- package/dist/api.d.ts +37 -0
- package/dist/esm/api.d.ts +37 -0
- package/docs/ClubPageResponse.md +2 -0
- package/docs/ClubPageResponseClubCustomerStatus.md +27 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -82,6 +82,7 @@ docs/ClubMetadataResponseLocation.md
|
|
|
82
82
|
docs/ClubNewBookingsResponse.md
|
|
83
83
|
docs/ClubNewSubscribersResponse.md
|
|
84
84
|
docs/ClubPageResponse.md
|
|
85
|
+
docs/ClubPageResponseClubCustomerStatus.md
|
|
85
86
|
docs/ClubPlayerBookingItem.md
|
|
86
87
|
docs/ClubPlayerBookingsPagination.md
|
|
87
88
|
docs/ClubPlayerBookingsResponse.md
|
package/README.md
CHANGED
|
@@ -367,6 +367,7 @@ Class | Method | HTTP request | Description
|
|
|
367
367
|
- [ClubNewBookingsResponse](docs/ClubNewBookingsResponse.md)
|
|
368
368
|
- [ClubNewSubscribersResponse](docs/ClubNewSubscribersResponse.md)
|
|
369
369
|
- [ClubPageResponse](docs/ClubPageResponse.md)
|
|
370
|
+
- [ClubPageResponseClubCustomerStatus](docs/ClubPageResponseClubCustomerStatus.md)
|
|
370
371
|
- [ClubPlayerBookingItem](docs/ClubPlayerBookingItem.md)
|
|
371
372
|
- [ClubPlayerBookingsPagination](docs/ClubPlayerBookingsPagination.md)
|
|
372
373
|
- [ClubPlayerBookingsResponse](docs/ClubPlayerBookingsResponse.md)
|
package/api.ts
CHANGED
|
@@ -2654,6 +2654,12 @@ export interface ClubPageResponse {
|
|
|
2654
2654
|
* @memberof ClubPageResponse
|
|
2655
2655
|
*/
|
|
2656
2656
|
'isNoShowEnabled'?: boolean;
|
|
2657
|
+
/**
|
|
2658
|
+
*
|
|
2659
|
+
* @type {ClubPageResponseClubCustomerStatus}
|
|
2660
|
+
* @memberof ClubPageResponse
|
|
2661
|
+
*/
|
|
2662
|
+
'clubCustomerStatus'?: ClubPageResponseClubCustomerStatus;
|
|
2657
2663
|
/**
|
|
2658
2664
|
* Liste des sports proposés par le club (identifiés par leur clé)
|
|
2659
2665
|
* @type {Array<string>}
|
|
@@ -2739,6 +2745,37 @@ export interface ClubPageResponse {
|
|
|
2739
2745
|
*/
|
|
2740
2746
|
'updatedAt'?: ClubResponseUpdatedAt;
|
|
2741
2747
|
}
|
|
2748
|
+
/**
|
|
2749
|
+
* Statut du client dans le club (si l\'utilisateur est connecte)
|
|
2750
|
+
* @export
|
|
2751
|
+
* @interface ClubPageResponseClubCustomerStatus
|
|
2752
|
+
*/
|
|
2753
|
+
export interface ClubPageResponseClubCustomerStatus {
|
|
2754
|
+
/**
|
|
2755
|
+
*
|
|
2756
|
+
* @type {boolean}
|
|
2757
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2758
|
+
*/
|
|
2759
|
+
'isNoShowForced': boolean;
|
|
2760
|
+
/**
|
|
2761
|
+
*
|
|
2762
|
+
* @type {boolean}
|
|
2763
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2764
|
+
*/
|
|
2765
|
+
'isFree': boolean;
|
|
2766
|
+
/**
|
|
2767
|
+
*
|
|
2768
|
+
* @type {boolean}
|
|
2769
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2770
|
+
*/
|
|
2771
|
+
'isIllimited': boolean;
|
|
2772
|
+
/**
|
|
2773
|
+
*
|
|
2774
|
+
* @type {boolean}
|
|
2775
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2776
|
+
*/
|
|
2777
|
+
'isBanned': boolean;
|
|
2778
|
+
}
|
|
2742
2779
|
/**
|
|
2743
2780
|
*
|
|
2744
2781
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -2605,6 +2605,12 @@ export interface ClubPageResponse {
|
|
|
2605
2605
|
* @memberof ClubPageResponse
|
|
2606
2606
|
*/
|
|
2607
2607
|
'isNoShowEnabled'?: boolean;
|
|
2608
|
+
/**
|
|
2609
|
+
*
|
|
2610
|
+
* @type {ClubPageResponseClubCustomerStatus}
|
|
2611
|
+
* @memberof ClubPageResponse
|
|
2612
|
+
*/
|
|
2613
|
+
'clubCustomerStatus'?: ClubPageResponseClubCustomerStatus;
|
|
2608
2614
|
/**
|
|
2609
2615
|
* Liste des sports proposés par le club (identifiés par leur clé)
|
|
2610
2616
|
* @type {Array<string>}
|
|
@@ -2698,6 +2704,37 @@ export interface ClubPageResponse {
|
|
|
2698
2704
|
*/
|
|
2699
2705
|
'updatedAt'?: ClubResponseUpdatedAt;
|
|
2700
2706
|
}
|
|
2707
|
+
/**
|
|
2708
|
+
* Statut du client dans le club (si l\'utilisateur est connecte)
|
|
2709
|
+
* @export
|
|
2710
|
+
* @interface ClubPageResponseClubCustomerStatus
|
|
2711
|
+
*/
|
|
2712
|
+
export interface ClubPageResponseClubCustomerStatus {
|
|
2713
|
+
/**
|
|
2714
|
+
*
|
|
2715
|
+
* @type {boolean}
|
|
2716
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2717
|
+
*/
|
|
2718
|
+
'isNoShowForced': boolean;
|
|
2719
|
+
/**
|
|
2720
|
+
*
|
|
2721
|
+
* @type {boolean}
|
|
2722
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2723
|
+
*/
|
|
2724
|
+
'isFree': boolean;
|
|
2725
|
+
/**
|
|
2726
|
+
*
|
|
2727
|
+
* @type {boolean}
|
|
2728
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2729
|
+
*/
|
|
2730
|
+
'isIllimited': boolean;
|
|
2731
|
+
/**
|
|
2732
|
+
*
|
|
2733
|
+
* @type {boolean}
|
|
2734
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2735
|
+
*/
|
|
2736
|
+
'isBanned': boolean;
|
|
2737
|
+
}
|
|
2701
2738
|
/**
|
|
2702
2739
|
*
|
|
2703
2740
|
* @export
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2605,6 +2605,12 @@ export interface ClubPageResponse {
|
|
|
2605
2605
|
* @memberof ClubPageResponse
|
|
2606
2606
|
*/
|
|
2607
2607
|
'isNoShowEnabled'?: boolean;
|
|
2608
|
+
/**
|
|
2609
|
+
*
|
|
2610
|
+
* @type {ClubPageResponseClubCustomerStatus}
|
|
2611
|
+
* @memberof ClubPageResponse
|
|
2612
|
+
*/
|
|
2613
|
+
'clubCustomerStatus'?: ClubPageResponseClubCustomerStatus;
|
|
2608
2614
|
/**
|
|
2609
2615
|
* Liste des sports proposés par le club (identifiés par leur clé)
|
|
2610
2616
|
* @type {Array<string>}
|
|
@@ -2698,6 +2704,37 @@ export interface ClubPageResponse {
|
|
|
2698
2704
|
*/
|
|
2699
2705
|
'updatedAt'?: ClubResponseUpdatedAt;
|
|
2700
2706
|
}
|
|
2707
|
+
/**
|
|
2708
|
+
* Statut du client dans le club (si l\'utilisateur est connecte)
|
|
2709
|
+
* @export
|
|
2710
|
+
* @interface ClubPageResponseClubCustomerStatus
|
|
2711
|
+
*/
|
|
2712
|
+
export interface ClubPageResponseClubCustomerStatus {
|
|
2713
|
+
/**
|
|
2714
|
+
*
|
|
2715
|
+
* @type {boolean}
|
|
2716
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2717
|
+
*/
|
|
2718
|
+
'isNoShowForced': boolean;
|
|
2719
|
+
/**
|
|
2720
|
+
*
|
|
2721
|
+
* @type {boolean}
|
|
2722
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2723
|
+
*/
|
|
2724
|
+
'isFree': boolean;
|
|
2725
|
+
/**
|
|
2726
|
+
*
|
|
2727
|
+
* @type {boolean}
|
|
2728
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2729
|
+
*/
|
|
2730
|
+
'isIllimited': boolean;
|
|
2731
|
+
/**
|
|
2732
|
+
*
|
|
2733
|
+
* @type {boolean}
|
|
2734
|
+
* @memberof ClubPageResponseClubCustomerStatus
|
|
2735
|
+
*/
|
|
2736
|
+
'isBanned': boolean;
|
|
2737
|
+
}
|
|
2701
2738
|
/**
|
|
2702
2739
|
*
|
|
2703
2740
|
* @export
|
package/docs/ClubPageResponse.md
CHANGED
|
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
|
|
|
16
16
|
**isActive** | **boolean** | Statut d\'activation du club | [default to undefined]
|
|
17
17
|
**paymentFeature** | **boolean** | Indique si le club utilise la fonctionnalité de paiement | [optional] [default to undefined]
|
|
18
18
|
**isNoShowEnabled** | **boolean** | Indique si la fonctionnalité \"no show\" est activée | [optional] [default to undefined]
|
|
19
|
+
**clubCustomerStatus** | [**ClubPageResponseClubCustomerStatus**](ClubPageResponseClubCustomerStatus.md) | | [optional] [default to undefined]
|
|
19
20
|
**sports** | **Array<string>** | Liste des sports proposés par le club (identifiés par leur clé) | [optional] [default to undefined]
|
|
20
21
|
**courtsCount** | **number** | Nombre total de terrains du club | [optional] [default to undefined]
|
|
21
22
|
**courtsCountBySport** | **{ [key: string]: number; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
@@ -48,6 +49,7 @@ const instance: ClubPageResponse = {
|
|
|
48
49
|
isActive,
|
|
49
50
|
paymentFeature,
|
|
50
51
|
isNoShowEnabled,
|
|
52
|
+
clubCustomerStatus,
|
|
51
53
|
sports,
|
|
52
54
|
courtsCount,
|
|
53
55
|
courtsCountBySport,
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# ClubPageResponseClubCustomerStatus
|
|
2
|
+
|
|
3
|
+
Statut du client dans le club (si l\'utilisateur est connecte)
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**isNoShowForced** | **boolean** | | [default to undefined]
|
|
10
|
+
**isFree** | **boolean** | | [default to undefined]
|
|
11
|
+
**isIllimited** | **boolean** | | [default to undefined]
|
|
12
|
+
**isBanned** | **boolean** | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ClubPageResponseClubCustomerStatus } from '@tennac-booking/sdk';
|
|
18
|
+
|
|
19
|
+
const instance: ClubPageResponseClubCustomerStatus = {
|
|
20
|
+
isNoShowForced,
|
|
21
|
+
isFree,
|
|
22
|
+
isIllimited,
|
|
23
|
+
isBanned,
|
|
24
|
+
};
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|