@tennac-booking/sdk 1.0.299 → 1.0.300

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 CHANGED
@@ -6687,6 +6687,12 @@ export interface EstimateOpenBookingJoinRequest {
6687
6687
  * @memberof EstimateOpenBookingJoinRequest
6688
6688
  */
6689
6689
  'playerShares'?: Array<PlayerShare>;
6690
+ /**
6691
+ * Nombre total de joueurs qui rejoignent (incluant invités non enregistrés)
6692
+ * @type {number}
6693
+ * @memberof EstimateOpenBookingJoinRequest
6694
+ */
6695
+ 'playersCount'?: number;
6690
6696
  /**
6691
6697
  *
6692
6698
  * @type {boolean}
@@ -9915,6 +9921,12 @@ export interface JoinOpenBookingRequest {
9915
9921
  * @memberof JoinOpenBookingRequest
9916
9922
  */
9917
9923
  'playerShares'?: Array<PlayerShare>;
9924
+ /**
9925
+ * Nombre total de joueurs qui rejoignent (incluant invités non enregistrés)
9926
+ * @type {number}
9927
+ * @memberof JoinOpenBookingRequest
9928
+ */
9929
+ 'playersCount'?: number;
9918
9930
  /**
9919
9931
  *
9920
9932
  * @type {boolean}
package/dist/api.d.ts CHANGED
@@ -6588,6 +6588,12 @@ export interface EstimateOpenBookingJoinRequest {
6588
6588
  * @memberof EstimateOpenBookingJoinRequest
6589
6589
  */
6590
6590
  'playerShares'?: Array<PlayerShare>;
6591
+ /**
6592
+ * Nombre total de joueurs qui rejoignent (incluant invités non enregistrés)
6593
+ * @type {number}
6594
+ * @memberof EstimateOpenBookingJoinRequest
6595
+ */
6596
+ 'playersCount'?: number;
6591
6597
  /**
6592
6598
  *
6593
6599
  * @type {boolean}
@@ -9763,6 +9769,12 @@ export interface JoinOpenBookingRequest {
9763
9769
  * @memberof JoinOpenBookingRequest
9764
9770
  */
9765
9771
  'playerShares'?: Array<PlayerShare>;
9772
+ /**
9773
+ * Nombre total de joueurs qui rejoignent (incluant invités non enregistrés)
9774
+ * @type {number}
9775
+ * @memberof JoinOpenBookingRequest
9776
+ */
9777
+ 'playersCount'?: number;
9766
9778
  /**
9767
9779
  *
9768
9780
  * @type {boolean}
package/dist/esm/api.d.ts CHANGED
@@ -6588,6 +6588,12 @@ export interface EstimateOpenBookingJoinRequest {
6588
6588
  * @memberof EstimateOpenBookingJoinRequest
6589
6589
  */
6590
6590
  'playerShares'?: Array<PlayerShare>;
6591
+ /**
6592
+ * Nombre total de joueurs qui rejoignent (incluant invités non enregistrés)
6593
+ * @type {number}
6594
+ * @memberof EstimateOpenBookingJoinRequest
6595
+ */
6596
+ 'playersCount'?: number;
6591
6597
  /**
6592
6598
  *
6593
6599
  * @type {boolean}
@@ -9763,6 +9769,12 @@ export interface JoinOpenBookingRequest {
9763
9769
  * @memberof JoinOpenBookingRequest
9764
9770
  */
9765
9771
  'playerShares'?: Array<PlayerShare>;
9772
+ /**
9773
+ * Nombre total de joueurs qui rejoignent (incluant invités non enregistrés)
9774
+ * @type {number}
9775
+ * @memberof JoinOpenBookingRequest
9776
+ */
9777
+ 'playersCount'?: number;
9766
9778
  /**
9767
9779
  *
9768
9780
  * @type {boolean}
@@ -6,6 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **playerShares** | [**Array&lt;PlayerShare&gt;**](PlayerShare.md) | Liste des parts de paiement par joueur (source de verite pour l\&#39;estimation join open booking) | [optional] [default to undefined]
9
+ **playersCount** | **number** | Nombre total de joueurs qui rejoignent (incluant invités non enregistrés) | [optional] [default to undefined]
9
10
  **isCreatorPayingAll** | **boolean** | | [optional] [default to undefined]
10
11
  **creditToUseInCents** | **number** | Crédit à utiliser en centimes | [optional] [default to undefined]
11
12
 
@@ -16,6 +17,7 @@ import { EstimateOpenBookingJoinRequest } from '@tennac-booking/sdk';
16
17
 
17
18
  const instance: EstimateOpenBookingJoinRequest = {
18
19
  playerShares,
20
+ playersCount,
19
21
  isCreatorPayingAll,
20
22
  creditToUseInCents,
21
23
  };
@@ -6,6 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **playerShares** | [**Array&lt;PlayerShare&gt;**](PlayerShare.md) | Liste des parts de paiement par joueur (source de verite pour le join open booking) | [optional] [default to undefined]
9
+ **playersCount** | **number** | Nombre total de joueurs qui rejoignent (incluant invités non enregistrés) | [optional] [default to undefined]
9
10
  **isCreatorPayingAll** | **boolean** | | [optional] [default to undefined]
10
11
  **paymentMethod** | [**PaymentMethod**](PaymentMethod.md) | | [optional] [default to undefined]
11
12
  **useDefaultPaymentMethod** | **boolean** | Indique si l\&#39;utilisateur veut utiliser sa méthode de paiement par défaut | [optional] [default to undefined]
@@ -18,6 +19,7 @@ import { JoinOpenBookingRequest } from '@tennac-booking/sdk';
18
19
 
19
20
  const instance: JoinOpenBookingRequest = {
20
21
  playerShares,
22
+ playersCount,
21
23
  isCreatorPayingAll,
22
24
  paymentMethod,
23
25
  useDefaultPaymentMethod,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tennac-booking/sdk",
3
- "version": "1.0.299",
3
+ "version": "1.0.300",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {