@tennac-booking/sdk 1.0.222 → 1.0.223
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 +452 -451
- package/README.md +4 -2
- package/api.ts +110 -8
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +69 -8
- package/dist/api.js +89 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/BookingsUserApi.md +52 -0
- package/docs/CloseOpenBookingResponse.md +22 -0
- package/docs/EstimateOpenBookingJoinRequest.md +5 -5
- package/index.ts +1 -1
- package/package.json +1 -1
- package/tsconfig.json +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# CloseOpenBookingResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**message** | **string** | Message de confirmation | [default to undefined]
|
|
9
|
+
**booking** | [**BookingInfo**](BookingInfo.md) | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { CloseOpenBookingResponse } from '@tennac-booking/sdk';
|
|
15
|
+
|
|
16
|
+
const instance: CloseOpenBookingResponse = {
|
|
17
|
+
message,
|
|
18
|
+
booking,
|
|
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,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**
|
|
9
|
-
**isCreatorPayingAll** | **boolean** |
|
|
10
|
-
**
|
|
8
|
+
**playerShares** | [**Array<PlayerShare>**](PlayerShare.md) | Liste des parts de paiement par joueur (utiliser ceci OU isCreatorPayingAll) | [optional] [default to undefined]
|
|
9
|
+
**isCreatorPayingAll** | **boolean** | Indique si le joueur qui rejoint paie pour tous les joueurs qu\'il ajoute (incompatible avec playerShares) | [optional] [default to undefined]
|
|
10
|
+
**creditToUseInCents** | **number** | Crédit à utiliser en centimes | [optional] [default to undefined]
|
|
11
11
|
|
|
12
12
|
## Example
|
|
13
13
|
|
|
@@ -15,9 +15,9 @@ Name | Type | Description | Notes
|
|
|
15
15
|
import { EstimateOpenBookingJoinRequest } from '@tennac-booking/sdk';
|
|
16
16
|
|
|
17
17
|
const instance: EstimateOpenBookingJoinRequest = {
|
|
18
|
-
creditToUseInCents,
|
|
19
|
-
isCreatorPayingAll,
|
|
20
18
|
playerShares,
|
|
19
|
+
isCreatorPayingAll,
|
|
20
|
+
creditToUseInCents,
|
|
21
21
|
};
|
|
22
22
|
```
|
|
23
23
|
|
package/index.ts
CHANGED
package/package.json
CHANGED