@tennac-booking/sdk 1.0.294 → 1.0.296
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/BookingPriceResponse.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1185,6 +1185,12 @@ export interface BookingPriceResponse {
|
|
|
1185
1185
|
* @memberof BookingPriceResponse
|
|
1186
1186
|
*/
|
|
1187
1187
|
'creatorCreditAvailableInCents'?: number;
|
|
1188
|
+
/**
|
|
1189
|
+
* Prix total brut de la réservation (sans réductions joueurs, en centimes)
|
|
1190
|
+
* @type {number}
|
|
1191
|
+
* @memberof BookingPriceResponse
|
|
1192
|
+
*/
|
|
1193
|
+
'fullTotalPrice'?: number;
|
|
1188
1194
|
/**
|
|
1189
1195
|
*
|
|
1190
1196
|
* @type {Array<PlayerPrice>}
|
package/dist/api.d.ts
CHANGED
|
@@ -1158,6 +1158,12 @@ export interface BookingPriceResponse {
|
|
|
1158
1158
|
* @memberof BookingPriceResponse
|
|
1159
1159
|
*/
|
|
1160
1160
|
'creatorCreditAvailableInCents'?: number;
|
|
1161
|
+
/**
|
|
1162
|
+
* Prix total brut de la réservation (sans réductions joueurs, en centimes)
|
|
1163
|
+
* @type {number}
|
|
1164
|
+
* @memberof BookingPriceResponse
|
|
1165
|
+
*/
|
|
1166
|
+
'fullTotalPrice'?: number;
|
|
1161
1167
|
/**
|
|
1162
1168
|
*
|
|
1163
1169
|
* @type {Array<PlayerPrice>}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1158,6 +1158,12 @@ export interface BookingPriceResponse {
|
|
|
1158
1158
|
* @memberof BookingPriceResponse
|
|
1159
1159
|
*/
|
|
1160
1160
|
'creatorCreditAvailableInCents'?: number;
|
|
1161
|
+
/**
|
|
1162
|
+
* Prix total brut de la réservation (sans réductions joueurs, en centimes)
|
|
1163
|
+
* @type {number}
|
|
1164
|
+
* @memberof BookingPriceResponse
|
|
1165
|
+
*/
|
|
1166
|
+
'fullTotalPrice'?: number;
|
|
1161
1167
|
/**
|
|
1162
1168
|
*
|
|
1163
1169
|
* @type {Array<PlayerPrice>}
|
|
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**creatorNeedsToRegisterPaymentMethod** | **boolean** | | [default to undefined]
|
|
9
9
|
**needsToSetupPaymentMethod** | **boolean** | | [optional] [default to undefined]
|
|
10
10
|
**creatorCreditAvailableInCents** | **number** | | [optional] [default to undefined]
|
|
11
|
+
**fullTotalPrice** | **number** | Prix total brut de la réservation (sans réductions joueurs, en centimes) | [optional] [default to undefined]
|
|
11
12
|
**playerPrices** | [**Array<PlayerPrice>**](PlayerPrice.md) | | [default to undefined]
|
|
12
13
|
|
|
13
14
|
## Example
|
|
@@ -19,6 +20,7 @@ const instance: BookingPriceResponse = {
|
|
|
19
20
|
creatorNeedsToRegisterPaymentMethod,
|
|
20
21
|
needsToSetupPaymentMethod,
|
|
21
22
|
creatorCreditAvailableInCents,
|
|
23
|
+
fullTotalPrice,
|
|
22
24
|
playerPrices,
|
|
23
25
|
};
|
|
24
26
|
```
|