@tennac-booking/sdk 1.0.248 → 1.0.249

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
@@ -9256,6 +9256,12 @@ export interface MobileSubscriptionDetailResponse {
9256
9256
  * @memberof MobileSubscriptionDetailResponse
9257
9257
  */
9258
9258
  'defaultPaymentMethodBrand'?: string | null;
9259
+ /**
9260
+ *
9261
+ * @type {SubscriptionPlanDiscountResponse}
9262
+ * @memberof MobileSubscriptionDetailResponse
9263
+ */
9264
+ 'discount'?: SubscriptionPlanDiscountResponse | null;
9259
9265
  /**
9260
9266
  *
9261
9267
  * @type {string}
@@ -9292,6 +9298,24 @@ export interface MobileSubscriptionDetailResponse {
9292
9298
  * @memberof MobileSubscriptionDetailResponse
9293
9299
  */
9294
9300
  'productId': string | null;
9301
+ /**
9302
+ *
9303
+ * @type {string}
9304
+ * @memberof MobileSubscriptionDetailResponse
9305
+ */
9306
+ 'planDescription'?: string | null;
9307
+ /**
9308
+ *
9309
+ * @type {string}
9310
+ * @memberof MobileSubscriptionDetailResponse
9311
+ */
9312
+ 'planName'?: string | null;
9313
+ /**
9314
+ *
9315
+ * @type {string}
9316
+ * @memberof MobileSubscriptionDetailResponse
9317
+ */
9318
+ 'planId'?: string | null;
9295
9319
  /**
9296
9320
  *
9297
9321
  * @type {string}
package/dist/api.d.ts CHANGED
@@ -9131,6 +9131,12 @@ export interface MobileSubscriptionDetailResponse {
9131
9131
  * @memberof MobileSubscriptionDetailResponse
9132
9132
  */
9133
9133
  'defaultPaymentMethodBrand'?: string | null;
9134
+ /**
9135
+ *
9136
+ * @type {SubscriptionPlanDiscountResponse}
9137
+ * @memberof MobileSubscriptionDetailResponse
9138
+ */
9139
+ 'discount'?: SubscriptionPlanDiscountResponse | null;
9134
9140
  /**
9135
9141
  *
9136
9142
  * @type {string}
@@ -9167,6 +9173,24 @@ export interface MobileSubscriptionDetailResponse {
9167
9173
  * @memberof MobileSubscriptionDetailResponse
9168
9174
  */
9169
9175
  'productId': string | null;
9176
+ /**
9177
+ *
9178
+ * @type {string}
9179
+ * @memberof MobileSubscriptionDetailResponse
9180
+ */
9181
+ 'planDescription'?: string | null;
9182
+ /**
9183
+ *
9184
+ * @type {string}
9185
+ * @memberof MobileSubscriptionDetailResponse
9186
+ */
9187
+ 'planName'?: string | null;
9188
+ /**
9189
+ *
9190
+ * @type {string}
9191
+ * @memberof MobileSubscriptionDetailResponse
9192
+ */
9193
+ 'planId'?: string | null;
9170
9194
  /**
9171
9195
  *
9172
9196
  * @type {string}
package/dist/esm/api.d.ts CHANGED
@@ -9131,6 +9131,12 @@ export interface MobileSubscriptionDetailResponse {
9131
9131
  * @memberof MobileSubscriptionDetailResponse
9132
9132
  */
9133
9133
  'defaultPaymentMethodBrand'?: string | null;
9134
+ /**
9135
+ *
9136
+ * @type {SubscriptionPlanDiscountResponse}
9137
+ * @memberof MobileSubscriptionDetailResponse
9138
+ */
9139
+ 'discount'?: SubscriptionPlanDiscountResponse | null;
9134
9140
  /**
9135
9141
  *
9136
9142
  * @type {string}
@@ -9167,6 +9173,24 @@ export interface MobileSubscriptionDetailResponse {
9167
9173
  * @memberof MobileSubscriptionDetailResponse
9168
9174
  */
9169
9175
  'productId': string | null;
9176
+ /**
9177
+ *
9178
+ * @type {string}
9179
+ * @memberof MobileSubscriptionDetailResponse
9180
+ */
9181
+ 'planDescription'?: string | null;
9182
+ /**
9183
+ *
9184
+ * @type {string}
9185
+ * @memberof MobileSubscriptionDetailResponse
9186
+ */
9187
+ 'planName'?: string | null;
9188
+ /**
9189
+ *
9190
+ * @type {string}
9191
+ * @memberof MobileSubscriptionDetailResponse
9192
+ */
9193
+ 'planId'?: string | null;
9170
9194
  /**
9171
9195
  *
9172
9196
  * @type {string}
@@ -9,12 +9,16 @@ Name | Type | Description | Notes
9
9
  **defaultPaymentMethodExpMonth** | **number** | | [optional] [default to undefined]
10
10
  **defaultPaymentMethodLast4** | **string** | | [optional] [default to undefined]
11
11
  **defaultPaymentMethodBrand** | **string** | | [optional] [default to undefined]
12
+ **discount** | [**SubscriptionPlanDiscountResponse**](SubscriptionPlanDiscountResponse.md) | | [optional] [default to undefined]
12
13
  **clubName** | **string** | | [default to undefined]
13
14
  **clubId** | **string** | | [default to undefined]
14
15
  **interval** | [**PlanInterval**](PlanInterval.md) | | [default to undefined]
15
16
  **currency** | **string** | | [default to undefined]
16
17
  **amountInCents** | **number** | | [default to undefined]
17
18
  **productId** | **string** | | [default to undefined]
19
+ **planDescription** | **string** | | [optional] [default to undefined]
20
+ **planName** | **string** | | [optional] [default to undefined]
21
+ **planId** | **string** | | [optional] [default to undefined]
18
22
  **priceId** | **string** | | [default to undefined]
19
23
  **currentPeriodEnd** | **number** | | [default to undefined]
20
24
  **currentPeriodStart** | **number** | | [default to undefined]
@@ -33,12 +37,16 @@ const instance: MobileSubscriptionDetailResponse = {
33
37
  defaultPaymentMethodExpMonth,
34
38
  defaultPaymentMethodLast4,
35
39
  defaultPaymentMethodBrand,
40
+ discount,
36
41
  clubName,
37
42
  clubId,
38
43
  interval,
39
44
  currency,
40
45
  amountInCents,
41
46
  productId,
47
+ planDescription,
48
+ planName,
49
+ planId,
42
50
  priceId,
43
51
  currentPeriodEnd,
44
52
  currentPeriodStart,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tennac-booking/sdk",
3
- "version": "1.0.248",
3
+ "version": "1.0.249",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {