@drxsuperapp/sdk 1.1.36 → 1.1.44
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 +20 -11
- package/apis/ExampleApi.ts +60 -0
- package/apis/HealthCheckApi.ts +12 -0
- package/apis/NewsApi.ts +66 -3
- package/apis/PadelApi.ts +75 -140
- package/deploy.log +87 -45
- package/dist/apis/ExampleApi.js +50 -0
- package/dist/apis/HealthCheckApi.js +10 -0
- package/dist/apis/NewsApi.d.ts +8 -2
- package/dist/apis/NewsApi.js +52 -3
- package/dist/apis/PadelApi.d.ts +13 -47
- package/dist/apis/PadelApi.js +49 -112
- package/dist/models/ApiNewsCategoriesListGet200Response.d.ts +51 -0
- package/dist/models/ApiNewsCategoriesListGet200Response.js +54 -0
- package/dist/models/ApiNewsCategoriesListGet200ResponseResponseObject.d.ts +39 -0
- package/dist/models/ApiNewsCategoriesListGet200ResponseResponseObject.js +48 -0
- package/dist/models/ApiNewsCategoriesListGet200ResponseResponseObjectCategoriesInner.d.ts +50 -0
- package/dist/models/ApiNewsCategoriesListGet200ResponseResponseObjectCategoriesInner.js +53 -0
- package/dist/models/ApiPadelCronPointByPointGet200Response.d.ts +32 -0
- package/dist/models/ApiPadelCronPointByPointGet200Response.js +41 -0
- package/dist/models/ApiPadelMatchesGet200Response.d.ts +51 -0
- package/dist/models/ApiPadelMatchesGet200Response.js +54 -0
- package/dist/models/ApiPadelMatchesGet200ResponseResponseObject.d.ts +57 -0
- package/dist/models/ApiPadelMatchesGet200ResponseResponseObject.js +60 -0
- package/dist/models/ApiPadelMatchesGet200ResponseResponseObjectItemsInner.d.ts +118 -0
- package/dist/models/ApiPadelMatchesGet200ResponseResponseObjectItemsInner.js +101 -0
- package/dist/models/ApiPadelMatchesGet200ResponseResponseObjectItemsInnerPlayers.d.ts +39 -0
- package/dist/models/ApiPadelMatchesGet200ResponseResponseObjectItemsInnerPlayers.js +48 -0
- package/dist/models/ApiPadelMatchesGet200ResponseResponseObjectItemsInnerPlayersTeam1Inner.d.ts +62 -0
- package/dist/models/{ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner.js → ApiPadelMatchesGet200ResponseResponseObjectItemsInnerPlayersTeam1Inner.js} +8 -8
- package/dist/models/ApiPadelMatchesGet200ResponseResponseObjectItemsInnerScoreInner.d.ts +38 -0
- package/dist/models/{ApiPadelMatchesGet200ResponseInnerStatsMatchValue.js → ApiPadelMatchesGet200ResponseResponseObjectItemsInnerScoreInner.js} +8 -8
- package/dist/models/ApiPadelMatchesGetFilterParameter.d.ts +63 -0
- package/dist/models/ApiPadelMatchesGetFilterParameter.js +52 -0
- package/dist/models/ApiPadelMatchesGetFilterParameterId.d.ts +50 -0
- package/dist/models/ApiPadelMatchesGetFilterParameterId.js +47 -0
- package/dist/models/ApiPadelMatchesGetFilterParameterIdAnyOf.d.ts +50 -0
- package/dist/models/ApiPadelMatchesGetFilterParameterIdAnyOf.js +47 -0
- package/dist/models/ApiPadelMatchesIdGet200Response.d.ts +144 -0
- package/dist/models/{ApiPadelMatchesGet200ResponseInner.js → ApiPadelMatchesIdGet200Response.js} +20 -20
- package/dist/models/ApiPadelMatchesIdGet200ResponseSets.d.ts +52 -0
- package/dist/models/ApiPadelMatchesIdGet200ResponseSets.js +57 -0
- package/dist/models/ApiPadelMatchesIdGet200ResponseSetsSetsInner.d.ts +39 -0
- package/dist/models/ApiPadelMatchesIdGet200ResponseSetsSetsInner.js +48 -0
- package/dist/models/ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner.d.ts +44 -0
- package/dist/models/{ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner.js → ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner.js} +8 -8
- package/dist/models/ApiPadelMatchesIdGet200ResponseStats.d.ts +78 -0
- package/dist/models/ApiPadelMatchesIdGet200ResponseStats.js +68 -0
- package/dist/models/ApiPadelMatchesIdGet200ResponseStatsConnections.d.ts +32 -0
- package/dist/models/ApiPadelMatchesIdGet200ResponseStatsConnections.js +43 -0
- package/dist/models/ApiPadelMatchesIdGet200ResponseStatsMatchValue.d.ts +38 -0
- package/dist/models/{ApiPadelMatchesGet200ResponseInnerScoreInner.js → ApiPadelMatchesIdGet200ResponseStatsMatchValue.js} +8 -8
- package/dist/models/index.d.ts +20 -11
- package/dist/models/index.js +20 -11
- package/hooks.json +6 -1
- package/models/ApiNewsCategoriesListGet200Response.ts +100 -0
- package/models/ApiNewsCategoriesListGet200ResponseResponseObject.ts +83 -0
- package/models/ApiNewsCategoriesListGet200ResponseResponseObjectCategoriesInner.ts +92 -0
- package/models/ApiPadelCronPointByPointGet200Response.ts +65 -0
- package/models/ApiPadelMatchesGet200Response.ts +100 -0
- package/models/ApiPadelMatchesGet200ResponseResponseObject.ts +110 -0
- package/models/ApiPadelMatchesGet200ResponseResponseObjectItemsInner.ts +207 -0
- package/models/ApiPadelMatchesGet200ResponseResponseObjectItemsInnerPlayers.ts +83 -0
- package/models/ApiPadelMatchesGet200ResponseResponseObjectItemsInnerPlayersTeam1Inner.ts +111 -0
- package/models/ApiPadelMatchesGet200ResponseResponseObjectItemsInnerScoreInner.ts +75 -0
- package/models/ApiPadelMatchesGetFilterParameter.ts +113 -0
- package/models/ApiPadelMatchesGetFilterParameterId.ts +97 -0
- package/models/ApiPadelMatchesGetFilterParameterIdAnyOf.ts +89 -0
- package/models/{ApiPadelMatchesGet200ResponseInner.ts → ApiPadelMatchesIdGet200Response.ts} +69 -69
- package/models/ApiPadelMatchesIdGet200ResponseSets.ts +108 -0
- package/models/ApiPadelMatchesIdGet200ResponseSetsSetsInner.ts +83 -0
- package/models/ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner.ts +84 -0
- package/models/ApiPadelMatchesIdGet200ResponseStats.ts +134 -0
- package/models/ApiPadelMatchesIdGet200ResponseStatsConnections.ts +66 -0
- package/models/ApiPadelMatchesIdGet200ResponseStatsMatchValue.ts +75 -0
- package/models/index.ts +20 -11
- package/package.json +4 -4
- package/workflow.sh +10 -3
- package/dist/models/ApiPadelCronSeasonsGet200Response.d.ts +0 -32
- package/dist/models/ApiPadelCronSeasonsGet200Response.js +0 -41
- package/dist/models/ApiPadelMatchesGet200ResponseInner.d.ts +0 -144
- package/dist/models/ApiPadelMatchesGet200ResponseInnerPlayers.d.ts +0 -39
- package/dist/models/ApiPadelMatchesGet200ResponseInnerPlayers.js +0 -48
- package/dist/models/ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner.d.ts +0 -62
- package/dist/models/ApiPadelMatchesGet200ResponseInnerScoreInner.d.ts +0 -38
- package/dist/models/ApiPadelMatchesGet200ResponseInnerSets.d.ts +0 -52
- package/dist/models/ApiPadelMatchesGet200ResponseInnerSets.js +0 -57
- package/dist/models/ApiPadelMatchesGet200ResponseInnerSetsSetsInner.d.ts +0 -39
- package/dist/models/ApiPadelMatchesGet200ResponseInnerSetsSetsInner.js +0 -48
- package/dist/models/ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner.d.ts +0 -44
- package/dist/models/ApiPadelMatchesGet200ResponseInnerStats.d.ts +0 -78
- package/dist/models/ApiPadelMatchesGet200ResponseInnerStats.js +0 -68
- package/dist/models/ApiPadelMatchesGet200ResponseInnerStatsConnections.d.ts +0 -32
- package/dist/models/ApiPadelMatchesGet200ResponseInnerStatsConnections.js +0 -43
- package/dist/models/ApiPadelMatchesGet200ResponseInnerStatsMatchValue.d.ts +0 -38
- package/models/ApiPadelCronSeasonsGet200Response.ts +0 -65
- package/models/ApiPadelMatchesGet200ResponseInnerPlayers.ts +0 -83
- package/models/ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner.ts +0 -111
- package/models/ApiPadelMatchesGet200ResponseInnerScoreInner.ts +0 -75
- package/models/ApiPadelMatchesGet200ResponseInnerSets.ts +0 -108
- package/models/ApiPadelMatchesGet200ResponseInnerSetsSetsInner.ts +0 -83
- package/models/ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner.ts +0 -84
- package/models/ApiPadelMatchesGet200ResponseInnerStats.ts +0 -134
- package/models/ApiPadelMatchesGet200ResponseInnerStatsConnections.ts +0 -66
- package/models/ApiPadelMatchesGet200ResponseInnerStatsMatchValue.ts +0 -75
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner } from './ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ApiPadelMatchesIdGet200ResponseSetsSetsInner
|
|
17
|
+
*/
|
|
18
|
+
export interface ApiPadelMatchesIdGet200ResponseSetsSetsInner {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner>}
|
|
22
|
+
* @memberof ApiPadelMatchesIdGet200ResponseSetsSetsInner
|
|
23
|
+
*/
|
|
24
|
+
games: Array<ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ApiPadelMatchesIdGet200ResponseSetsSetsInner
|
|
29
|
+
*/
|
|
30
|
+
setNumber: number;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Check if a given object implements the ApiPadelMatchesIdGet200ResponseSetsSetsInner interface.
|
|
34
|
+
*/
|
|
35
|
+
export declare function instanceOfApiPadelMatchesIdGet200ResponseSetsSetsInner(value: object): value is ApiPadelMatchesIdGet200ResponseSetsSetsInner;
|
|
36
|
+
export declare function ApiPadelMatchesIdGet200ResponseSetsSetsInnerFromJSON(json: any): ApiPadelMatchesIdGet200ResponseSetsSetsInner;
|
|
37
|
+
export declare function ApiPadelMatchesIdGet200ResponseSetsSetsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiPadelMatchesIdGet200ResponseSetsSetsInner;
|
|
38
|
+
export declare function ApiPadelMatchesIdGet200ResponseSetsSetsInnerToJSON(json: any): ApiPadelMatchesIdGet200ResponseSetsSetsInner;
|
|
39
|
+
export declare function ApiPadelMatchesIdGet200ResponseSetsSetsInnerToJSONTyped(value?: ApiPadelMatchesIdGet200ResponseSetsSetsInner | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* DRX API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerFromJSON, ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerToJSON, } from './ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner';
|
|
15
|
+
/**
|
|
16
|
+
* Check if a given object implements the ApiPadelMatchesIdGet200ResponseSetsSetsInner interface.
|
|
17
|
+
*/
|
|
18
|
+
export function instanceOfApiPadelMatchesIdGet200ResponseSetsSetsInner(value) {
|
|
19
|
+
if (!('games' in value) || value['games'] === undefined)
|
|
20
|
+
return false;
|
|
21
|
+
if (!('setNumber' in value) || value['setNumber'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
return true;
|
|
24
|
+
}
|
|
25
|
+
export function ApiPadelMatchesIdGet200ResponseSetsSetsInnerFromJSON(json) {
|
|
26
|
+
return ApiPadelMatchesIdGet200ResponseSetsSetsInnerFromJSONTyped(json, false);
|
|
27
|
+
}
|
|
28
|
+
export function ApiPadelMatchesIdGet200ResponseSetsSetsInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
29
|
+
if (json == null) {
|
|
30
|
+
return json;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'games': (json['games'].map(ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerFromJSON)),
|
|
34
|
+
'setNumber': json['set_number'],
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
export function ApiPadelMatchesIdGet200ResponseSetsSetsInnerToJSON(json) {
|
|
38
|
+
return ApiPadelMatchesIdGet200ResponseSetsSetsInnerToJSONTyped(json, false);
|
|
39
|
+
}
|
|
40
|
+
export function ApiPadelMatchesIdGet200ResponseSetsSetsInnerToJSONTyped(value, ignoreDiscriminator = false) {
|
|
41
|
+
if (value == null) {
|
|
42
|
+
return value;
|
|
43
|
+
}
|
|
44
|
+
return {
|
|
45
|
+
'games': (value['games'].map(ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerToJSON)),
|
|
46
|
+
'set_number': value['setNumber'],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner
|
|
16
|
+
*/
|
|
17
|
+
export interface ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner
|
|
22
|
+
*/
|
|
23
|
+
points: Array<string>;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner
|
|
28
|
+
*/
|
|
29
|
+
gameScore: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner
|
|
34
|
+
*/
|
|
35
|
+
gameNumber: number;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner(value: object): value is ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner;
|
|
41
|
+
export declare function ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerFromJSON(json: any): ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner;
|
|
42
|
+
export declare function ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner;
|
|
43
|
+
export declare function ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerToJSON(json: any): ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner;
|
|
44
|
+
export declare function ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerToJSONTyped(value?: ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
/**
|
|
15
|
-
* Check if a given object implements the
|
|
15
|
+
* Check if a given object implements the ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner interface.
|
|
16
16
|
*/
|
|
17
|
-
export function
|
|
17
|
+
export function instanceOfApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner(value) {
|
|
18
18
|
if (!('points' in value) || value['points'] === undefined)
|
|
19
19
|
return false;
|
|
20
20
|
if (!('gameScore' in value) || value['gameScore'] === undefined)
|
|
@@ -23,10 +23,10 @@ export function instanceOfApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesIn
|
|
|
23
23
|
return false;
|
|
24
24
|
return true;
|
|
25
25
|
}
|
|
26
|
-
export function
|
|
27
|
-
return
|
|
26
|
+
export function ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerFromJSON(json) {
|
|
27
|
+
return ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerFromJSONTyped(json, false);
|
|
28
28
|
}
|
|
29
|
-
export function
|
|
29
|
+
export function ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
30
30
|
if (json == null) {
|
|
31
31
|
return json;
|
|
32
32
|
}
|
|
@@ -36,10 +36,10 @@ export function ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInnerFromJSO
|
|
|
36
36
|
'gameNumber': json['game_number'],
|
|
37
37
|
};
|
|
38
38
|
}
|
|
39
|
-
export function
|
|
40
|
-
return
|
|
39
|
+
export function ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerToJSON(json) {
|
|
40
|
+
return ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerToJSONTyped(json, false);
|
|
41
41
|
}
|
|
42
|
-
export function
|
|
42
|
+
export function ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInnerToJSONTyped(value, ignoreDiscriminator = false) {
|
|
43
43
|
if (value == null) {
|
|
44
44
|
return value;
|
|
45
45
|
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ApiPadelMatchesIdGet200ResponseStatsMatchValue } from './ApiPadelMatchesIdGet200ResponseStatsMatchValue';
|
|
13
|
+
import type { ApiPadelMatchesIdGet200ResponseStatsConnections } from './ApiPadelMatchesIdGet200ResponseStatsConnections';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ApiPadelMatchesIdGet200ResponseStats
|
|
18
|
+
*/
|
|
19
|
+
export interface ApiPadelMatchesIdGet200ResponseStats {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof ApiPadelMatchesIdGet200ResponseStats
|
|
24
|
+
*/
|
|
25
|
+
id: number;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof ApiPadelMatchesIdGet200ResponseStats
|
|
30
|
+
*/
|
|
31
|
+
self: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseStatsMatchValue; }}
|
|
35
|
+
* @memberof ApiPadelMatchesIdGet200ResponseStats
|
|
36
|
+
*/
|
|
37
|
+
match: {
|
|
38
|
+
[key: string]: ApiPadelMatchesIdGet200ResponseStatsMatchValue;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseStatsMatchValue; }}
|
|
43
|
+
* @memberof ApiPadelMatchesIdGet200ResponseStats
|
|
44
|
+
*/
|
|
45
|
+
set1: {
|
|
46
|
+
[key: string]: ApiPadelMatchesIdGet200ResponseStatsMatchValue;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseStatsMatchValue; }}
|
|
51
|
+
* @memberof ApiPadelMatchesIdGet200ResponseStats
|
|
52
|
+
*/
|
|
53
|
+
set2: {
|
|
54
|
+
[key: string]: ApiPadelMatchesIdGet200ResponseStatsMatchValue;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseStatsMatchValue; }}
|
|
59
|
+
* @memberof ApiPadelMatchesIdGet200ResponseStats
|
|
60
|
+
*/
|
|
61
|
+
set3?: {
|
|
62
|
+
[key: string]: ApiPadelMatchesIdGet200ResponseStatsMatchValue;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {ApiPadelMatchesIdGet200ResponseStatsConnections}
|
|
67
|
+
* @memberof ApiPadelMatchesIdGet200ResponseStats
|
|
68
|
+
*/
|
|
69
|
+
connections: ApiPadelMatchesIdGet200ResponseStatsConnections;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Check if a given object implements the ApiPadelMatchesIdGet200ResponseStats interface.
|
|
73
|
+
*/
|
|
74
|
+
export declare function instanceOfApiPadelMatchesIdGet200ResponseStats(value: object): value is ApiPadelMatchesIdGet200ResponseStats;
|
|
75
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsFromJSON(json: any): ApiPadelMatchesIdGet200ResponseStats;
|
|
76
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiPadelMatchesIdGet200ResponseStats;
|
|
77
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsToJSON(json: any): ApiPadelMatchesIdGet200ResponseStats;
|
|
78
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsToJSONTyped(value?: ApiPadelMatchesIdGet200ResponseStats | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* DRX API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { mapValues } from '../runtime';
|
|
15
|
+
import { ApiPadelMatchesIdGet200ResponseStatsMatchValueFromJSON, ApiPadelMatchesIdGet200ResponseStatsMatchValueToJSON, } from './ApiPadelMatchesIdGet200ResponseStatsMatchValue';
|
|
16
|
+
import { ApiPadelMatchesIdGet200ResponseStatsConnectionsFromJSON, ApiPadelMatchesIdGet200ResponseStatsConnectionsToJSON, } from './ApiPadelMatchesIdGet200ResponseStatsConnections';
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the ApiPadelMatchesIdGet200ResponseStats interface.
|
|
19
|
+
*/
|
|
20
|
+
export function instanceOfApiPadelMatchesIdGet200ResponseStats(value) {
|
|
21
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('self' in value) || value['self'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('match' in value) || value['match'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('set1' in value) || value['set1'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('set2' in value) || value['set2'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('connections' in value) || value['connections'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
return true;
|
|
34
|
+
}
|
|
35
|
+
export function ApiPadelMatchesIdGet200ResponseStatsFromJSON(json) {
|
|
36
|
+
return ApiPadelMatchesIdGet200ResponseStatsFromJSONTyped(json, false);
|
|
37
|
+
}
|
|
38
|
+
export function ApiPadelMatchesIdGet200ResponseStatsFromJSONTyped(json, ignoreDiscriminator) {
|
|
39
|
+
if (json == null) {
|
|
40
|
+
return json;
|
|
41
|
+
}
|
|
42
|
+
return {
|
|
43
|
+
'id': json['id'],
|
|
44
|
+
'self': json['self'],
|
|
45
|
+
'match': (mapValues(json['match'], ApiPadelMatchesIdGet200ResponseStatsMatchValueFromJSON)),
|
|
46
|
+
'set1': (mapValues(json['set_1'], ApiPadelMatchesIdGet200ResponseStatsMatchValueFromJSON)),
|
|
47
|
+
'set2': (mapValues(json['set_2'], ApiPadelMatchesIdGet200ResponseStatsMatchValueFromJSON)),
|
|
48
|
+
'set3': json['set_3'] == null ? undefined : (mapValues(json['set_3'], ApiPadelMatchesIdGet200ResponseStatsMatchValueFromJSON)),
|
|
49
|
+
'connections': ApiPadelMatchesIdGet200ResponseStatsConnectionsFromJSON(json['connections']),
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
export function ApiPadelMatchesIdGet200ResponseStatsToJSON(json) {
|
|
53
|
+
return ApiPadelMatchesIdGet200ResponseStatsToJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
export function ApiPadelMatchesIdGet200ResponseStatsToJSONTyped(value, ignoreDiscriminator = false) {
|
|
56
|
+
if (value == null) {
|
|
57
|
+
return value;
|
|
58
|
+
}
|
|
59
|
+
return {
|
|
60
|
+
'id': value['id'],
|
|
61
|
+
'self': value['self'],
|
|
62
|
+
'match': (mapValues(value['match'], ApiPadelMatchesIdGet200ResponseStatsMatchValueToJSON)),
|
|
63
|
+
'set_1': (mapValues(value['set1'], ApiPadelMatchesIdGet200ResponseStatsMatchValueToJSON)),
|
|
64
|
+
'set_2': (mapValues(value['set2'], ApiPadelMatchesIdGet200ResponseStatsMatchValueToJSON)),
|
|
65
|
+
'set_3': value['set3'] == null ? undefined : (mapValues(value['set3'], ApiPadelMatchesIdGet200ResponseStatsMatchValueToJSON)),
|
|
66
|
+
'connections': ApiPadelMatchesIdGet200ResponseStatsConnectionsToJSON(value['connections']),
|
|
67
|
+
};
|
|
68
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ApiPadelMatchesIdGet200ResponseStatsConnections
|
|
16
|
+
*/
|
|
17
|
+
export interface ApiPadelMatchesIdGet200ResponseStatsConnections {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ApiPadelMatchesIdGet200ResponseStatsConnections
|
|
22
|
+
*/
|
|
23
|
+
match: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the ApiPadelMatchesIdGet200ResponseStatsConnections interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfApiPadelMatchesIdGet200ResponseStatsConnections(value: object): value is ApiPadelMatchesIdGet200ResponseStatsConnections;
|
|
29
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsConnectionsFromJSON(json: any): ApiPadelMatchesIdGet200ResponseStatsConnections;
|
|
30
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsConnectionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiPadelMatchesIdGet200ResponseStatsConnections;
|
|
31
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsConnectionsToJSON(json: any): ApiPadelMatchesIdGet200ResponseStatsConnections;
|
|
32
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsConnectionsToJSONTyped(value?: ApiPadelMatchesIdGet200ResponseStatsConnections | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* DRX API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Check if a given object implements the ApiPadelMatchesIdGet200ResponseStatsConnections interface.
|
|
16
|
+
*/
|
|
17
|
+
export function instanceOfApiPadelMatchesIdGet200ResponseStatsConnections(value) {
|
|
18
|
+
if (!('match' in value) || value['match'] === undefined)
|
|
19
|
+
return false;
|
|
20
|
+
return true;
|
|
21
|
+
}
|
|
22
|
+
export function ApiPadelMatchesIdGet200ResponseStatsConnectionsFromJSON(json) {
|
|
23
|
+
return ApiPadelMatchesIdGet200ResponseStatsConnectionsFromJSONTyped(json, false);
|
|
24
|
+
}
|
|
25
|
+
export function ApiPadelMatchesIdGet200ResponseStatsConnectionsFromJSONTyped(json, ignoreDiscriminator) {
|
|
26
|
+
if (json == null) {
|
|
27
|
+
return json;
|
|
28
|
+
}
|
|
29
|
+
return {
|
|
30
|
+
'match': json['match'],
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
export function ApiPadelMatchesIdGet200ResponseStatsConnectionsToJSON(json) {
|
|
34
|
+
return ApiPadelMatchesIdGet200ResponseStatsConnectionsToJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
export function ApiPadelMatchesIdGet200ResponseStatsConnectionsToJSONTyped(value, ignoreDiscriminator = false) {
|
|
37
|
+
if (value == null) {
|
|
38
|
+
return value;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'match': value['match'],
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ApiPadelMatchesIdGet200ResponseStatsMatchValue
|
|
16
|
+
*/
|
|
17
|
+
export interface ApiPadelMatchesIdGet200ResponseStatsMatchValue {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ApiPadelMatchesIdGet200ResponseStatsMatchValue
|
|
22
|
+
*/
|
|
23
|
+
team1: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ApiPadelMatchesIdGet200ResponseStatsMatchValue
|
|
28
|
+
*/
|
|
29
|
+
team2: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the ApiPadelMatchesIdGet200ResponseStatsMatchValue interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfApiPadelMatchesIdGet200ResponseStatsMatchValue(value: object): value is ApiPadelMatchesIdGet200ResponseStatsMatchValue;
|
|
35
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsMatchValueFromJSON(json: any): ApiPadelMatchesIdGet200ResponseStatsMatchValue;
|
|
36
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsMatchValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiPadelMatchesIdGet200ResponseStatsMatchValue;
|
|
37
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsMatchValueToJSON(json: any): ApiPadelMatchesIdGet200ResponseStatsMatchValue;
|
|
38
|
+
export declare function ApiPadelMatchesIdGet200ResponseStatsMatchValueToJSONTyped(value?: ApiPadelMatchesIdGet200ResponseStatsMatchValue | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
/**
|
|
15
|
-
* Check if a given object implements the
|
|
15
|
+
* Check if a given object implements the ApiPadelMatchesIdGet200ResponseStatsMatchValue interface.
|
|
16
16
|
*/
|
|
17
|
-
export function
|
|
17
|
+
export function instanceOfApiPadelMatchesIdGet200ResponseStatsMatchValue(value) {
|
|
18
18
|
if (!('team1' in value) || value['team1'] === undefined)
|
|
19
19
|
return false;
|
|
20
20
|
if (!('team2' in value) || value['team2'] === undefined)
|
|
21
21
|
return false;
|
|
22
22
|
return true;
|
|
23
23
|
}
|
|
24
|
-
export function
|
|
25
|
-
return
|
|
24
|
+
export function ApiPadelMatchesIdGet200ResponseStatsMatchValueFromJSON(json) {
|
|
25
|
+
return ApiPadelMatchesIdGet200ResponseStatsMatchValueFromJSONTyped(json, false);
|
|
26
26
|
}
|
|
27
|
-
export function
|
|
27
|
+
export function ApiPadelMatchesIdGet200ResponseStatsMatchValueFromJSONTyped(json, ignoreDiscriminator) {
|
|
28
28
|
if (json == null) {
|
|
29
29
|
return json;
|
|
30
30
|
}
|
|
@@ -33,10 +33,10 @@ export function ApiPadelMatchesGet200ResponseInnerScoreInnerFromJSONTyped(json,
|
|
|
33
33
|
'team2': json['team_2'],
|
|
34
34
|
};
|
|
35
35
|
}
|
|
36
|
-
export function
|
|
37
|
-
return
|
|
36
|
+
export function ApiPadelMatchesIdGet200ResponseStatsMatchValueToJSON(json) {
|
|
37
|
+
return ApiPadelMatchesIdGet200ResponseStatsMatchValueToJSONTyped(json, false);
|
|
38
38
|
}
|
|
39
|
-
export function
|
|
39
|
+
export function ApiPadelMatchesIdGet200ResponseStatsMatchValueToJSONTyped(value, ignoreDiscriminator = false) {
|
|
40
40
|
if (value == null) {
|
|
41
41
|
return value;
|
|
42
42
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ export * from './ApiExamplesGet200ResponseInner';
|
|
|
2
2
|
export * from './ApiExamplesIdPutRequest';
|
|
3
3
|
export * from './ApiExamplesPostRequest';
|
|
4
4
|
export * from './ApiHealthCheckGet200Response';
|
|
5
|
+
export * from './ApiNewsCategoriesListGet200Response';
|
|
6
|
+
export * from './ApiNewsCategoriesListGet200ResponseResponseObject';
|
|
7
|
+
export * from './ApiNewsCategoriesListGet200ResponseResponseObjectCategoriesInner';
|
|
5
8
|
export * from './ApiNewsGet200Response';
|
|
6
9
|
export * from './ApiNewsGet200ResponseResponseObject';
|
|
7
10
|
export * from './ApiNewsGet200ResponseResponseObjectItemsInner';
|
|
@@ -9,14 +12,20 @@ export * from './ApiNewsIdGet200Response';
|
|
|
9
12
|
export * from './ApiNewsIdGet200ResponseResponseObject';
|
|
10
13
|
export * from './ApiNewsIdGet200ResponseResponseObjectLeaguesInner';
|
|
11
14
|
export * from './ApiNewsIdGet200ResponseResponseObjectLeaguesInnerLeague';
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './
|
|
14
|
-
export * from './
|
|
15
|
-
export * from './
|
|
16
|
-
export * from './
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './
|
|
15
|
+
export * from './ApiPadelCronPointByPointGet200Response';
|
|
16
|
+
export * from './ApiPadelMatchesGet200Response';
|
|
17
|
+
export * from './ApiPadelMatchesGet200ResponseResponseObject';
|
|
18
|
+
export * from './ApiPadelMatchesGet200ResponseResponseObjectItemsInner';
|
|
19
|
+
export * from './ApiPadelMatchesGet200ResponseResponseObjectItemsInnerPlayers';
|
|
20
|
+
export * from './ApiPadelMatchesGet200ResponseResponseObjectItemsInnerPlayersTeam1Inner';
|
|
21
|
+
export * from './ApiPadelMatchesGet200ResponseResponseObjectItemsInnerScoreInner';
|
|
22
|
+
export * from './ApiPadelMatchesGetFilterParameter';
|
|
23
|
+
export * from './ApiPadelMatchesGetFilterParameterId';
|
|
24
|
+
export * from './ApiPadelMatchesGetFilterParameterIdAnyOf';
|
|
25
|
+
export * from './ApiPadelMatchesIdGet200Response';
|
|
26
|
+
export * from './ApiPadelMatchesIdGet200ResponseSets';
|
|
27
|
+
export * from './ApiPadelMatchesIdGet200ResponseSetsSetsInner';
|
|
28
|
+
export * from './ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner';
|
|
29
|
+
export * from './ApiPadelMatchesIdGet200ResponseStats';
|
|
30
|
+
export * from './ApiPadelMatchesIdGet200ResponseStatsConnections';
|
|
31
|
+
export * from './ApiPadelMatchesIdGet200ResponseStatsMatchValue';
|
package/dist/models/index.js
CHANGED
|
@@ -4,6 +4,9 @@ export * from './ApiExamplesGet200ResponseInner';
|
|
|
4
4
|
export * from './ApiExamplesIdPutRequest';
|
|
5
5
|
export * from './ApiExamplesPostRequest';
|
|
6
6
|
export * from './ApiHealthCheckGet200Response';
|
|
7
|
+
export * from './ApiNewsCategoriesListGet200Response';
|
|
8
|
+
export * from './ApiNewsCategoriesListGet200ResponseResponseObject';
|
|
9
|
+
export * from './ApiNewsCategoriesListGet200ResponseResponseObjectCategoriesInner';
|
|
7
10
|
export * from './ApiNewsGet200Response';
|
|
8
11
|
export * from './ApiNewsGet200ResponseResponseObject';
|
|
9
12
|
export * from './ApiNewsGet200ResponseResponseObjectItemsInner';
|
|
@@ -11,14 +14,20 @@ export * from './ApiNewsIdGet200Response';
|
|
|
11
14
|
export * from './ApiNewsIdGet200ResponseResponseObject';
|
|
12
15
|
export * from './ApiNewsIdGet200ResponseResponseObjectLeaguesInner';
|
|
13
16
|
export * from './ApiNewsIdGet200ResponseResponseObjectLeaguesInnerLeague';
|
|
14
|
-
export * from './
|
|
15
|
-
export * from './
|
|
16
|
-
export * from './
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './
|
|
23
|
-
export * from './
|
|
24
|
-
export * from './
|
|
17
|
+
export * from './ApiPadelCronPointByPointGet200Response';
|
|
18
|
+
export * from './ApiPadelMatchesGet200Response';
|
|
19
|
+
export * from './ApiPadelMatchesGet200ResponseResponseObject';
|
|
20
|
+
export * from './ApiPadelMatchesGet200ResponseResponseObjectItemsInner';
|
|
21
|
+
export * from './ApiPadelMatchesGet200ResponseResponseObjectItemsInnerPlayers';
|
|
22
|
+
export * from './ApiPadelMatchesGet200ResponseResponseObjectItemsInnerPlayersTeam1Inner';
|
|
23
|
+
export * from './ApiPadelMatchesGet200ResponseResponseObjectItemsInnerScoreInner';
|
|
24
|
+
export * from './ApiPadelMatchesGetFilterParameter';
|
|
25
|
+
export * from './ApiPadelMatchesGetFilterParameterId';
|
|
26
|
+
export * from './ApiPadelMatchesGetFilterParameterIdAnyOf';
|
|
27
|
+
export * from './ApiPadelMatchesIdGet200Response';
|
|
28
|
+
export * from './ApiPadelMatchesIdGet200ResponseSets';
|
|
29
|
+
export * from './ApiPadelMatchesIdGet200ResponseSetsSetsInner';
|
|
30
|
+
export * from './ApiPadelMatchesIdGet200ResponseSetsSetsInnerGamesInner';
|
|
31
|
+
export * from './ApiPadelMatchesIdGet200ResponseStats';
|
|
32
|
+
export * from './ApiPadelMatchesIdGet200ResponseStatsConnections';
|
|
33
|
+
export * from './ApiPadelMatchesIdGet200ResponseStatsMatchValue';
|