@tennac-booking/sdk 1.0.309 → 1.0.310
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 +560 -560
- package/README.md +2 -2
- package/api.ts +5 -5
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +5 -5
- package/dist/api.js +2881 -3772
- package/dist/base.d.ts +1 -1
- package/dist/base.js +6 -3
- package/dist/common.d.ts +1 -1
- package/dist/common.js +23 -39
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +63 -3
- package/dist/esm/api.d.ts +5 -5
- package/dist/esm/api.js +2881 -3772
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +6 -3
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +23 -39
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +63 -3
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/CreateSubscriptionPlanRequest.md +2 -2
- package/docs/EstimateEventPrice200Response.md +30 -0
- package/docs/EstimateEventPriceRequestSharesInner.md +22 -0
- package/docs/EventBookingResponsePlayersInnerInvoiceStatus.md +18 -0
- package/docs/LoginResponse.md +30 -0
- package/docs/PublicSubscriptionPlanResponse.md +2 -2
- package/docs/SubscriptionPlanResponse.md +2 -2
- package/docs/UpdateSubscriptionPlanRequest.md +2 -2
- package/index.ts +1 -1
- package/package.json +1 -1
- package/tsconfig.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @tennac-booking/sdk@1.0.
|
|
1
|
+
## @tennac-booking/sdk@1.0.310
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @tennac-booking/sdk@1.0.
|
|
39
|
+
npm install @tennac-booking/sdk@1.0.310 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* openapi.json
|
|
5
5
|
* Pandook API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.310
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -6362,7 +6362,7 @@ export interface CreateSubscriptionPlanRequest {
|
|
|
6362
6362
|
* @type {number}
|
|
6363
6363
|
* @memberof CreateSubscriptionPlanRequest
|
|
6364
6364
|
*/
|
|
6365
|
-
'
|
|
6365
|
+
'commitmentInDays'?: number;
|
|
6366
6366
|
/**
|
|
6367
6367
|
*
|
|
6368
6368
|
* @type {CreateSubscriptionPlanRequestDiscount}
|
|
@@ -14414,7 +14414,7 @@ export interface PublicSubscriptionPlanResponse {
|
|
|
14414
14414
|
* @type {number}
|
|
14415
14415
|
* @memberof PublicSubscriptionPlanResponse
|
|
14416
14416
|
*/
|
|
14417
|
-
'
|
|
14417
|
+
'commitmentInDays'?: number;
|
|
14418
14418
|
/**
|
|
14419
14419
|
*
|
|
14420
14420
|
* @type {boolean}
|
|
@@ -17262,7 +17262,7 @@ export interface SubscriptionPlanResponse {
|
|
|
17262
17262
|
* @type {number}
|
|
17263
17263
|
* @memberof SubscriptionPlanResponse
|
|
17264
17264
|
*/
|
|
17265
|
-
'
|
|
17265
|
+
'commitmentInDays'?: number;
|
|
17266
17266
|
}
|
|
17267
17267
|
|
|
17268
17268
|
|
|
@@ -18856,7 +18856,7 @@ export interface UpdateSubscriptionPlanRequest {
|
|
|
18856
18856
|
* @type {number}
|
|
18857
18857
|
* @memberof UpdateSubscriptionPlanRequest
|
|
18858
18858
|
*/
|
|
18859
|
-
'
|
|
18859
|
+
'commitmentInDays'?: number;
|
|
18860
18860
|
/**
|
|
18861
18861
|
*
|
|
18862
18862
|
* @type {SubscriptionPlanDiscountUpdateRequest}
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* openapi.json
|
|
3
3
|
* Pandook API Documentation
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.310
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -6267,7 +6267,7 @@ export interface CreateSubscriptionPlanRequest {
|
|
|
6267
6267
|
* @type {number}
|
|
6268
6268
|
* @memberof CreateSubscriptionPlanRequest
|
|
6269
6269
|
*/
|
|
6270
|
-
'
|
|
6270
|
+
'commitmentInDays'?: number;
|
|
6271
6271
|
/**
|
|
6272
6272
|
*
|
|
6273
6273
|
* @type {CreateSubscriptionPlanRequestDiscount}
|
|
@@ -14176,7 +14176,7 @@ export interface PublicSubscriptionPlanResponse {
|
|
|
14176
14176
|
* @type {number}
|
|
14177
14177
|
* @memberof PublicSubscriptionPlanResponse
|
|
14178
14178
|
*/
|
|
14179
|
-
'
|
|
14179
|
+
'commitmentInDays'?: number;
|
|
14180
14180
|
/**
|
|
14181
14181
|
*
|
|
14182
14182
|
* @type {boolean}
|
|
@@ -16986,7 +16986,7 @@ export interface SubscriptionPlanResponse {
|
|
|
16986
16986
|
* @type {number}
|
|
16987
16987
|
* @memberof SubscriptionPlanResponse
|
|
16988
16988
|
*/
|
|
16989
|
-
'
|
|
16989
|
+
'commitmentInDays'?: number;
|
|
16990
16990
|
}
|
|
16991
16991
|
/**
|
|
16992
16992
|
*
|
|
@@ -18556,7 +18556,7 @@ export interface UpdateSubscriptionPlanRequest {
|
|
|
18556
18556
|
* @type {number}
|
|
18557
18557
|
* @memberof UpdateSubscriptionPlanRequest
|
|
18558
18558
|
*/
|
|
18559
|
-
'
|
|
18559
|
+
'commitmentInDays'?: number;
|
|
18560
18560
|
/**
|
|
18561
18561
|
*
|
|
18562
18562
|
* @type {SubscriptionPlanDiscountUpdateRequest}
|