@tennac-booking/sdk 1.0.131 → 1.0.132
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 +1 -0
- package/README.md +3 -2
- package/api.ts +50 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +50 -1
- package/dist/api.js +1 -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/esm/api.d.ts +50 -1
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- 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/EventBookingResponse.md +2 -0
- package/docs/EventBookingResponsePaymentPerPlayersInner.md +30 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -139,6 +139,7 @@ docs/EstimateEventPriceRequestSharesInner.md
|
|
|
139
139
|
docs/EventBookingDetailSummary.md
|
|
140
140
|
docs/EventBookingDetailSummaryPaymentPerPlayersInner.md
|
|
141
141
|
docs/EventBookingResponse.md
|
|
142
|
+
docs/EventBookingResponsePaymentPerPlayersInner.md
|
|
142
143
|
docs/EventBookingResponsePlayersInner.md
|
|
143
144
|
docs/EventBookingResponsePlayersInnerInvoiceStatus.md
|
|
144
145
|
docs/EventBookingResponseSetupStatus.md
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @tennac-booking/sdk@1.0.
|
|
1
|
+
## @tennac-booking/sdk@1.0.132
|
|
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.132 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -347,6 +347,7 @@ Class | Method | HTTP request | Description
|
|
|
347
347
|
- [EventBookingDetailSummary](docs/EventBookingDetailSummary.md)
|
|
348
348
|
- [EventBookingDetailSummaryPaymentPerPlayersInner](docs/EventBookingDetailSummaryPaymentPerPlayersInner.md)
|
|
349
349
|
- [EventBookingResponse](docs/EventBookingResponse.md)
|
|
350
|
+
- [EventBookingResponsePaymentPerPlayersInner](docs/EventBookingResponsePaymentPerPlayersInner.md)
|
|
350
351
|
- [EventBookingResponsePlayersInner](docs/EventBookingResponsePlayersInner.md)
|
|
351
352
|
- [EventBookingResponsePlayersInnerInvoiceStatus](docs/EventBookingResponsePlayersInnerInvoiceStatus.md)
|
|
352
353
|
- [EventBookingResponseSetupStatus](docs/EventBookingResponseSetupStatus.md)
|
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.132
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4605,6 +4605,12 @@ export interface EventBookingResponse {
|
|
|
4605
4605
|
* @memberof EventBookingResponse
|
|
4606
4606
|
*/
|
|
4607
4607
|
'players': Array<EventBookingResponsePlayersInner>;
|
|
4608
|
+
/**
|
|
4609
|
+
*
|
|
4610
|
+
* @type {Array<EventBookingResponsePaymentPerPlayersInner>}
|
|
4611
|
+
* @memberof EventBookingResponse
|
|
4612
|
+
*/
|
|
4613
|
+
'paymentPerPlayers'?: Array<EventBookingResponsePaymentPerPlayersInner>;
|
|
4608
4614
|
/**
|
|
4609
4615
|
*
|
|
4610
4616
|
* @type {string}
|
|
@@ -4638,6 +4644,49 @@ export interface EventBookingResponse {
|
|
|
4638
4644
|
}
|
|
4639
4645
|
|
|
4640
4646
|
|
|
4647
|
+
/**
|
|
4648
|
+
*
|
|
4649
|
+
* @export
|
|
4650
|
+
* @interface EventBookingResponsePaymentPerPlayersInner
|
|
4651
|
+
*/
|
|
4652
|
+
export interface EventBookingResponsePaymentPerPlayersInner {
|
|
4653
|
+
/**
|
|
4654
|
+
*
|
|
4655
|
+
* @type {number}
|
|
4656
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4657
|
+
*/
|
|
4658
|
+
'amount'?: number | null;
|
|
4659
|
+
/**
|
|
4660
|
+
*
|
|
4661
|
+
* @type {EventBookingResponsePlayersInnerInvoiceStatus}
|
|
4662
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4663
|
+
*/
|
|
4664
|
+
'status'?: EventBookingResponsePlayersInnerInvoiceStatus | null;
|
|
4665
|
+
/**
|
|
4666
|
+
*
|
|
4667
|
+
* @type {string}
|
|
4668
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4669
|
+
*/
|
|
4670
|
+
'photo'?: string | null;
|
|
4671
|
+
/**
|
|
4672
|
+
*
|
|
4673
|
+
* @type {string}
|
|
4674
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4675
|
+
*/
|
|
4676
|
+
'lastName'?: string | null;
|
|
4677
|
+
/**
|
|
4678
|
+
*
|
|
4679
|
+
* @type {string}
|
|
4680
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4681
|
+
*/
|
|
4682
|
+
'firstName'?: string | null;
|
|
4683
|
+
/**
|
|
4684
|
+
*
|
|
4685
|
+
* @type {string}
|
|
4686
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4687
|
+
*/
|
|
4688
|
+
'id': string;
|
|
4689
|
+
}
|
|
4641
4690
|
/**
|
|
4642
4691
|
*
|
|
4643
4692
|
* @export
|
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.132
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4529,6 +4529,12 @@ export interface EventBookingResponse {
|
|
|
4529
4529
|
* @memberof EventBookingResponse
|
|
4530
4530
|
*/
|
|
4531
4531
|
'players': Array<EventBookingResponsePlayersInner>;
|
|
4532
|
+
/**
|
|
4533
|
+
*
|
|
4534
|
+
* @type {Array<EventBookingResponsePaymentPerPlayersInner>}
|
|
4535
|
+
* @memberof EventBookingResponse
|
|
4536
|
+
*/
|
|
4537
|
+
'paymentPerPlayers'?: Array<EventBookingResponsePaymentPerPlayersInner>;
|
|
4532
4538
|
/**
|
|
4533
4539
|
*
|
|
4534
4540
|
* @type {string}
|
|
@@ -4560,6 +4566,49 @@ export interface EventBookingResponse {
|
|
|
4560
4566
|
*/
|
|
4561
4567
|
'updatedAt': string;
|
|
4562
4568
|
}
|
|
4569
|
+
/**
|
|
4570
|
+
*
|
|
4571
|
+
* @export
|
|
4572
|
+
* @interface EventBookingResponsePaymentPerPlayersInner
|
|
4573
|
+
*/
|
|
4574
|
+
export interface EventBookingResponsePaymentPerPlayersInner {
|
|
4575
|
+
/**
|
|
4576
|
+
*
|
|
4577
|
+
* @type {number}
|
|
4578
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4579
|
+
*/
|
|
4580
|
+
'amount'?: number | null;
|
|
4581
|
+
/**
|
|
4582
|
+
*
|
|
4583
|
+
* @type {EventBookingResponsePlayersInnerInvoiceStatus}
|
|
4584
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4585
|
+
*/
|
|
4586
|
+
'status'?: EventBookingResponsePlayersInnerInvoiceStatus | null;
|
|
4587
|
+
/**
|
|
4588
|
+
*
|
|
4589
|
+
* @type {string}
|
|
4590
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4591
|
+
*/
|
|
4592
|
+
'photo'?: string | null;
|
|
4593
|
+
/**
|
|
4594
|
+
*
|
|
4595
|
+
* @type {string}
|
|
4596
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4597
|
+
*/
|
|
4598
|
+
'lastName'?: string | null;
|
|
4599
|
+
/**
|
|
4600
|
+
*
|
|
4601
|
+
* @type {string}
|
|
4602
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4603
|
+
*/
|
|
4604
|
+
'firstName'?: string | null;
|
|
4605
|
+
/**
|
|
4606
|
+
*
|
|
4607
|
+
* @type {string}
|
|
4608
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4609
|
+
*/
|
|
4610
|
+
'id': string;
|
|
4611
|
+
}
|
|
4563
4612
|
/**
|
|
4564
4613
|
*
|
|
4565
4614
|
* @export
|
package/dist/api.js
CHANGED
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
package/dist/esm/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.132
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4529,6 +4529,12 @@ export interface EventBookingResponse {
|
|
|
4529
4529
|
* @memberof EventBookingResponse
|
|
4530
4530
|
*/
|
|
4531
4531
|
'players': Array<EventBookingResponsePlayersInner>;
|
|
4532
|
+
/**
|
|
4533
|
+
*
|
|
4534
|
+
* @type {Array<EventBookingResponsePaymentPerPlayersInner>}
|
|
4535
|
+
* @memberof EventBookingResponse
|
|
4536
|
+
*/
|
|
4537
|
+
'paymentPerPlayers'?: Array<EventBookingResponsePaymentPerPlayersInner>;
|
|
4532
4538
|
/**
|
|
4533
4539
|
*
|
|
4534
4540
|
* @type {string}
|
|
@@ -4560,6 +4566,49 @@ export interface EventBookingResponse {
|
|
|
4560
4566
|
*/
|
|
4561
4567
|
'updatedAt': string;
|
|
4562
4568
|
}
|
|
4569
|
+
/**
|
|
4570
|
+
*
|
|
4571
|
+
* @export
|
|
4572
|
+
* @interface EventBookingResponsePaymentPerPlayersInner
|
|
4573
|
+
*/
|
|
4574
|
+
export interface EventBookingResponsePaymentPerPlayersInner {
|
|
4575
|
+
/**
|
|
4576
|
+
*
|
|
4577
|
+
* @type {number}
|
|
4578
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4579
|
+
*/
|
|
4580
|
+
'amount'?: number | null;
|
|
4581
|
+
/**
|
|
4582
|
+
*
|
|
4583
|
+
* @type {EventBookingResponsePlayersInnerInvoiceStatus}
|
|
4584
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4585
|
+
*/
|
|
4586
|
+
'status'?: EventBookingResponsePlayersInnerInvoiceStatus | null;
|
|
4587
|
+
/**
|
|
4588
|
+
*
|
|
4589
|
+
* @type {string}
|
|
4590
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4591
|
+
*/
|
|
4592
|
+
'photo'?: string | null;
|
|
4593
|
+
/**
|
|
4594
|
+
*
|
|
4595
|
+
* @type {string}
|
|
4596
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4597
|
+
*/
|
|
4598
|
+
'lastName'?: string | null;
|
|
4599
|
+
/**
|
|
4600
|
+
*
|
|
4601
|
+
* @type {string}
|
|
4602
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4603
|
+
*/
|
|
4604
|
+
'firstName'?: string | null;
|
|
4605
|
+
/**
|
|
4606
|
+
*
|
|
4607
|
+
* @type {string}
|
|
4608
|
+
* @memberof EventBookingResponsePaymentPerPlayersInner
|
|
4609
|
+
*/
|
|
4610
|
+
'id': string;
|
|
4611
|
+
}
|
|
4563
4612
|
/**
|
|
4564
4613
|
*
|
|
4565
4614
|
* @export
|
package/dist/esm/api.js
CHANGED
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**status** | [**EventBookingStatus**](EventBookingStatus.md) | | [default to undefined]
|
|
10
10
|
**teamName** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**players** | [**Array<EventBookingResponsePlayersInner>**](EventBookingResponsePlayersInner.md) | | [default to undefined]
|
|
12
|
+
**paymentPerPlayers** | [**Array<EventBookingResponsePaymentPerPlayersInner>**](EventBookingResponsePaymentPerPlayersInner.md) | | [optional] [default to undefined]
|
|
12
13
|
**setupLimitDate** | **string** | | [optional] [default to undefined]
|
|
13
14
|
**cancellationLimitDate** | **string** | | [optional] [default to undefined]
|
|
14
15
|
**setupStatus** | [**EventBookingResponseSetupStatus**](EventBookingResponseSetupStatus.md) | | [optional] [default to undefined]
|
|
@@ -25,6 +26,7 @@ const instance: EventBookingResponse = {
|
|
|
25
26
|
status,
|
|
26
27
|
teamName,
|
|
27
28
|
players,
|
|
29
|
+
paymentPerPlayers,
|
|
28
30
|
setupLimitDate,
|
|
29
31
|
cancellationLimitDate,
|
|
30
32
|
setupStatus,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# EventBookingResponsePaymentPerPlayersInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**amount** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**status** | [**EventBookingResponsePlayersInnerInvoiceStatus**](EventBookingResponsePlayersInnerInvoiceStatus.md) | | [optional] [default to undefined]
|
|
10
|
+
**photo** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**lastName** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**firstName** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**id** | **string** | | [default to undefined]
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import { EventBookingResponsePaymentPerPlayersInner } from '@tennac-booking/sdk';
|
|
19
|
+
|
|
20
|
+
const instance: EventBookingResponsePaymentPerPlayersInner = {
|
|
21
|
+
amount,
|
|
22
|
+
status,
|
|
23
|
+
photo,
|
|
24
|
+
lastName,
|
|
25
|
+
firstName,
|
|
26
|
+
id,
|
|
27
|
+
};
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/index.ts
CHANGED