@tennac-booking/sdk 1.0.117 → 1.0.118
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 +42 -5
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +42 -5
- 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 +42 -5
- 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/EventResponse.md +1 -1
- package/docs/EventUser.md +28 -0
- package/docs/Team.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @tennac-booking/sdk@1.0.
|
|
1
|
+
## @tennac-booking/sdk@1.0.118
|
|
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.118 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -334,6 +334,7 @@ Class | Method | HTTP request | Description
|
|
|
334
334
|
- [EventConflictCheckRequest](docs/EventConflictCheckRequest.md)
|
|
335
335
|
- [EventConflictCheckResponse](docs/EventConflictCheckResponse.md)
|
|
336
336
|
- [EventResponse](docs/EventResponse.md)
|
|
337
|
+
- [EventUser](docs/EventUser.md)
|
|
337
338
|
- [EventsListResponse](docs/EventsListResponse.md)
|
|
338
339
|
- [FavoriteClubMutationResponse](docs/FavoriteClubMutationResponse.md)
|
|
339
340
|
- [FavoriteClubRequestBody](docs/FavoriteClubRequestBody.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.118
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4516,10 +4516,10 @@ export interface EventResponse {
|
|
|
4516
4516
|
'participationType': EventResponseParticipationTypeEnum;
|
|
4517
4517
|
/**
|
|
4518
4518
|
*
|
|
4519
|
-
* @type {Array<
|
|
4519
|
+
* @type {Array<EventUser>}
|
|
4520
4520
|
* @memberof EventResponse
|
|
4521
4521
|
*/
|
|
4522
|
-
'participants'?: Array<
|
|
4522
|
+
'participants'?: Array<EventUser>;
|
|
4523
4523
|
/**
|
|
4524
4524
|
*
|
|
4525
4525
|
* @type {Array<Team>}
|
|
@@ -4616,6 +4616,43 @@ export const EventResponseVisibilityTypeEnum = {
|
|
|
4616
4616
|
|
|
4617
4617
|
export type EventResponseVisibilityTypeEnum = typeof EventResponseVisibilityTypeEnum[keyof typeof EventResponseVisibilityTypeEnum];
|
|
4618
4618
|
|
|
4619
|
+
/**
|
|
4620
|
+
*
|
|
4621
|
+
* @export
|
|
4622
|
+
* @interface EventUser
|
|
4623
|
+
*/
|
|
4624
|
+
export interface EventUser {
|
|
4625
|
+
/**
|
|
4626
|
+
*
|
|
4627
|
+
* @type {string}
|
|
4628
|
+
* @memberof EventUser
|
|
4629
|
+
*/
|
|
4630
|
+
'id': string;
|
|
4631
|
+
/**
|
|
4632
|
+
*
|
|
4633
|
+
* @type {string}
|
|
4634
|
+
* @memberof EventUser
|
|
4635
|
+
*/
|
|
4636
|
+
'firstName': string;
|
|
4637
|
+
/**
|
|
4638
|
+
*
|
|
4639
|
+
* @type {string}
|
|
4640
|
+
* @memberof EventUser
|
|
4641
|
+
*/
|
|
4642
|
+
'lastName': string;
|
|
4643
|
+
/**
|
|
4644
|
+
*
|
|
4645
|
+
* @type {string}
|
|
4646
|
+
* @memberof EventUser
|
|
4647
|
+
*/
|
|
4648
|
+
'username'?: string;
|
|
4649
|
+
/**
|
|
4650
|
+
*
|
|
4651
|
+
* @type {string}
|
|
4652
|
+
* @memberof EventUser
|
|
4653
|
+
*/
|
|
4654
|
+
'profilePicture'?: string;
|
|
4655
|
+
}
|
|
4619
4656
|
/**
|
|
4620
4657
|
*
|
|
4621
4658
|
* @export
|
|
@@ -9114,10 +9151,10 @@ export interface Team {
|
|
|
9114
9151
|
'name': string;
|
|
9115
9152
|
/**
|
|
9116
9153
|
*
|
|
9117
|
-
* @type {Array<
|
|
9154
|
+
* @type {Array<EventUser>}
|
|
9118
9155
|
* @memberof Team
|
|
9119
9156
|
*/
|
|
9120
|
-
'players': Array<
|
|
9157
|
+
'players': Array<EventUser>;
|
|
9121
9158
|
}
|
|
9122
9159
|
/**
|
|
9123
9160
|
*
|
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.118
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4446,10 +4446,10 @@ export interface EventResponse {
|
|
|
4446
4446
|
'participationType': EventResponseParticipationTypeEnum;
|
|
4447
4447
|
/**
|
|
4448
4448
|
*
|
|
4449
|
-
* @type {Array<
|
|
4449
|
+
* @type {Array<EventUser>}
|
|
4450
4450
|
* @memberof EventResponse
|
|
4451
4451
|
*/
|
|
4452
|
-
'participants'?: Array<
|
|
4452
|
+
'participants'?: Array<EventUser>;
|
|
4453
4453
|
/**
|
|
4454
4454
|
*
|
|
4455
4455
|
* @type {Array<Team>}
|
|
@@ -4540,6 +4540,43 @@ export declare const EventResponseVisibilityTypeEnum: {
|
|
|
4540
4540
|
readonly Invitation: "invitation";
|
|
4541
4541
|
};
|
|
4542
4542
|
export type EventResponseVisibilityTypeEnum = typeof EventResponseVisibilityTypeEnum[keyof typeof EventResponseVisibilityTypeEnum];
|
|
4543
|
+
/**
|
|
4544
|
+
*
|
|
4545
|
+
* @export
|
|
4546
|
+
* @interface EventUser
|
|
4547
|
+
*/
|
|
4548
|
+
export interface EventUser {
|
|
4549
|
+
/**
|
|
4550
|
+
*
|
|
4551
|
+
* @type {string}
|
|
4552
|
+
* @memberof EventUser
|
|
4553
|
+
*/
|
|
4554
|
+
'id': string;
|
|
4555
|
+
/**
|
|
4556
|
+
*
|
|
4557
|
+
* @type {string}
|
|
4558
|
+
* @memberof EventUser
|
|
4559
|
+
*/
|
|
4560
|
+
'firstName': string;
|
|
4561
|
+
/**
|
|
4562
|
+
*
|
|
4563
|
+
* @type {string}
|
|
4564
|
+
* @memberof EventUser
|
|
4565
|
+
*/
|
|
4566
|
+
'lastName': string;
|
|
4567
|
+
/**
|
|
4568
|
+
*
|
|
4569
|
+
* @type {string}
|
|
4570
|
+
* @memberof EventUser
|
|
4571
|
+
*/
|
|
4572
|
+
'username'?: string;
|
|
4573
|
+
/**
|
|
4574
|
+
*
|
|
4575
|
+
* @type {string}
|
|
4576
|
+
* @memberof EventUser
|
|
4577
|
+
*/
|
|
4578
|
+
'profilePicture'?: string;
|
|
4579
|
+
}
|
|
4543
4580
|
/**
|
|
4544
4581
|
*
|
|
4545
4582
|
* @export
|
|
@@ -8952,10 +8989,10 @@ export interface Team {
|
|
|
8952
8989
|
'name': string;
|
|
8953
8990
|
/**
|
|
8954
8991
|
*
|
|
8955
|
-
* @type {Array<
|
|
8992
|
+
* @type {Array<EventUser>}
|
|
8956
8993
|
* @memberof Team
|
|
8957
8994
|
*/
|
|
8958
|
-
'players': Array<
|
|
8995
|
+
'players': Array<EventUser>;
|
|
8959
8996
|
}
|
|
8960
8997
|
/**
|
|
8961
8998
|
*
|
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.118
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4446,10 +4446,10 @@ export interface EventResponse {
|
|
|
4446
4446
|
'participationType': EventResponseParticipationTypeEnum;
|
|
4447
4447
|
/**
|
|
4448
4448
|
*
|
|
4449
|
-
* @type {Array<
|
|
4449
|
+
* @type {Array<EventUser>}
|
|
4450
4450
|
* @memberof EventResponse
|
|
4451
4451
|
*/
|
|
4452
|
-
'participants'?: Array<
|
|
4452
|
+
'participants'?: Array<EventUser>;
|
|
4453
4453
|
/**
|
|
4454
4454
|
*
|
|
4455
4455
|
* @type {Array<Team>}
|
|
@@ -4540,6 +4540,43 @@ export declare const EventResponseVisibilityTypeEnum: {
|
|
|
4540
4540
|
readonly Invitation: "invitation";
|
|
4541
4541
|
};
|
|
4542
4542
|
export type EventResponseVisibilityTypeEnum = typeof EventResponseVisibilityTypeEnum[keyof typeof EventResponseVisibilityTypeEnum];
|
|
4543
|
+
/**
|
|
4544
|
+
*
|
|
4545
|
+
* @export
|
|
4546
|
+
* @interface EventUser
|
|
4547
|
+
*/
|
|
4548
|
+
export interface EventUser {
|
|
4549
|
+
/**
|
|
4550
|
+
*
|
|
4551
|
+
* @type {string}
|
|
4552
|
+
* @memberof EventUser
|
|
4553
|
+
*/
|
|
4554
|
+
'id': string;
|
|
4555
|
+
/**
|
|
4556
|
+
*
|
|
4557
|
+
* @type {string}
|
|
4558
|
+
* @memberof EventUser
|
|
4559
|
+
*/
|
|
4560
|
+
'firstName': string;
|
|
4561
|
+
/**
|
|
4562
|
+
*
|
|
4563
|
+
* @type {string}
|
|
4564
|
+
* @memberof EventUser
|
|
4565
|
+
*/
|
|
4566
|
+
'lastName': string;
|
|
4567
|
+
/**
|
|
4568
|
+
*
|
|
4569
|
+
* @type {string}
|
|
4570
|
+
* @memberof EventUser
|
|
4571
|
+
*/
|
|
4572
|
+
'username'?: string;
|
|
4573
|
+
/**
|
|
4574
|
+
*
|
|
4575
|
+
* @type {string}
|
|
4576
|
+
* @memberof EventUser
|
|
4577
|
+
*/
|
|
4578
|
+
'profilePicture'?: string;
|
|
4579
|
+
}
|
|
4543
4580
|
/**
|
|
4544
4581
|
*
|
|
4545
4582
|
* @export
|
|
@@ -8952,10 +8989,10 @@ export interface Team {
|
|
|
8952
8989
|
'name': string;
|
|
8953
8990
|
/**
|
|
8954
8991
|
*
|
|
8955
|
-
* @type {Array<
|
|
8992
|
+
* @type {Array<EventUser>}
|
|
8956
8993
|
* @memberof Team
|
|
8957
8994
|
*/
|
|
8958
|
-
'players': Array<
|
|
8995
|
+
'players': Array<EventUser>;
|
|
8959
8996
|
}
|
|
8960
8997
|
/**
|
|
8961
8998
|
*
|
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
package/docs/EventResponse.md
CHANGED
|
@@ -18,7 +18,7 @@ Name | Type | Description | Notes
|
|
|
18
18
|
**recurringType** | **string** | | [default to undefined]
|
|
19
19
|
**recurrenceEndDate** | **string** | | [optional] [default to undefined]
|
|
20
20
|
**participationType** | **string** | | [default to undefined]
|
|
21
|
-
**participants** | **Array<
|
|
21
|
+
**participants** | [**Array<EventUser>**](EventUser.md) | | [optional] [default to undefined]
|
|
22
22
|
**teams** | [**Array<Team>**](Team.md) | | [optional] [default to undefined]
|
|
23
23
|
**playerLimit** | **number** | | [optional] [default to undefined]
|
|
24
24
|
**teamLimit** | **number** | | [optional] [default to undefined]
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# EventUser
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
**firstName** | **string** | | [default to undefined]
|
|
10
|
+
**lastName** | **string** | | [default to undefined]
|
|
11
|
+
**username** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**profilePicture** | **string** | | [optional] [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { EventUser } from '@tennac-booking/sdk';
|
|
18
|
+
|
|
19
|
+
const instance: EventUser = {
|
|
20
|
+
id,
|
|
21
|
+
firstName,
|
|
22
|
+
lastName,
|
|
23
|
+
username,
|
|
24
|
+
profilePicture,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[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/docs/Team.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**name** | **string** | | [default to undefined]
|
|
9
|
-
**players** | **Array<
|
|
9
|
+
**players** | [**Array<EventUser>**](EventUser.md) | | [default to undefined]
|
|
10
10
|
|
|
11
11
|
## Example
|
|
12
12
|
|
package/index.ts
CHANGED