@tennac-booking/sdk 1.0.268 → 1.0.269
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/api.ts +6 -0
- package/dist/api.d.ts +6 -0
- package/dist/esm/api.d.ts +6 -0
- package/docs/BookingPlayerPaymentSummary.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -881,6 +881,12 @@ export interface BookingPlayerPaymentSummary {
|
|
|
881
881
|
* @memberof BookingPlayerPaymentSummary
|
|
882
882
|
*/
|
|
883
883
|
'isCreator': boolean;
|
|
884
|
+
/**
|
|
885
|
+
* Nom(s) des abonnements actifs du joueur dans le club.
|
|
886
|
+
* @type {Array<string>}
|
|
887
|
+
* @memberof BookingPlayerPaymentSummary
|
|
888
|
+
*/
|
|
889
|
+
'subscriptions'?: Array<string>;
|
|
884
890
|
}
|
|
885
891
|
|
|
886
892
|
|
package/dist/api.d.ts
CHANGED
|
@@ -858,6 +858,12 @@ export interface BookingPlayerPaymentSummary {
|
|
|
858
858
|
* @memberof BookingPlayerPaymentSummary
|
|
859
859
|
*/
|
|
860
860
|
'isCreator': boolean;
|
|
861
|
+
/**
|
|
862
|
+
* Nom(s) des abonnements actifs du joueur dans le club.
|
|
863
|
+
* @type {Array<string>}
|
|
864
|
+
* @memberof BookingPlayerPaymentSummary
|
|
865
|
+
*/
|
|
866
|
+
'subscriptions'?: Array<string>;
|
|
861
867
|
}
|
|
862
868
|
/**
|
|
863
869
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -858,6 +858,12 @@ export interface BookingPlayerPaymentSummary {
|
|
|
858
858
|
* @memberof BookingPlayerPaymentSummary
|
|
859
859
|
*/
|
|
860
860
|
'isCreator': boolean;
|
|
861
|
+
/**
|
|
862
|
+
* Nom(s) des abonnements actifs du joueur dans le club.
|
|
863
|
+
* @type {Array<string>}
|
|
864
|
+
* @memberof BookingPlayerPaymentSummary
|
|
865
|
+
*/
|
|
866
|
+
'subscriptions'?: Array<string>;
|
|
861
867
|
}
|
|
862
868
|
/**
|
|
863
869
|
*
|
|
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
|
13
13
|
**invoiceId** | **string** | | [optional] [default to undefined]
|
|
14
14
|
**invoiceStatus** | [**InvoiceStatus**](InvoiceStatus.md) | | [optional] [default to undefined]
|
|
15
15
|
**isCreator** | **boolean** | | [default to undefined]
|
|
16
|
+
**subscriptions** | **Array<string>** | Nom(s) des abonnements actifs du joueur dans le club. | [optional] [default to undefined]
|
|
16
17
|
|
|
17
18
|
## Example
|
|
18
19
|
|
|
@@ -28,6 +29,7 @@ const instance: BookingPlayerPaymentSummary = {
|
|
|
28
29
|
invoiceId,
|
|
29
30
|
invoiceStatus,
|
|
30
31
|
isCreator,
|
|
32
|
+
subscriptions,
|
|
31
33
|
};
|
|
32
34
|
```
|
|
33
35
|
|