@drxsuperapp/sdk 1.1.27 → 1.1.29
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/deploy.log
CHANGED
|
@@ -88,8 +88,8 @@
|
|
|
88
88
|
# https://opencollective.com/openapi_generator/donate #
|
|
89
89
|
################################################################################
|
|
90
90
|
✅ SDK generated
|
|
91
|
-
[master
|
|
92
|
-
1 file changed,
|
|
91
|
+
[master 767b052] VPS: Generated API SDK
|
|
92
|
+
1 file changed, 36 insertions(+)
|
|
93
93
|
remote:
|
|
94
94
|
remote: Project 'drxsuperapp/drx-sdk' was moved to 'drx-super/drx-sdk'.
|
|
95
95
|
remote:
|
|
@@ -99,9 +99,9 @@ remote: git remote set-url origin https://gitlab.com/drx-super/drx-sdk.git
|
|
|
99
99
|
remote:
|
|
100
100
|
remote:
|
|
101
101
|
To https://gitlab.com/drxsuperapp/drx-sdk.git
|
|
102
|
-
|
|
102
|
+
9cb814b..767b052 master -> master
|
|
103
103
|
✅ Changes committed and pushed
|
|
104
|
-
v1.1.
|
|
104
|
+
v1.1.29
|
|
105
105
|
remote:
|
|
106
106
|
remote: Project 'drxsuperapp/drx-sdk' was moved to 'drx-super/drx-sdk'.
|
|
107
107
|
remote:
|
|
@@ -111,13 +111,13 @@ remote: git remote set-url origin https://gitlab.com/drx-super/drx-sdk.git
|
|
|
111
111
|
remote:
|
|
112
112
|
remote:
|
|
113
113
|
To https://gitlab.com/drxsuperapp/drx-sdk.git
|
|
114
|
-
|
|
114
|
+
767b052..3bdd2d4 master -> master
|
|
115
115
|
✅ Version bumped
|
|
116
116
|
|
|
117
|
-
> @drxsuperapp/sdk@1.1.
|
|
117
|
+
> @drxsuperapp/sdk@1.1.29 prepublishOnly
|
|
118
118
|
> npm run build
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
> @drxsuperapp/sdk@1.1.
|
|
121
|
+
> @drxsuperapp/sdk@1.1.29 build
|
|
122
122
|
> tsc
|
|
123
123
|
|
|
@@ -37,6 +37,30 @@ export interface ApiPadelMatchesGet200ResponseInner {
|
|
|
37
37
|
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
38
38
|
*/
|
|
39
39
|
name: string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
44
|
+
*/
|
|
45
|
+
tournamentName: string;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
50
|
+
*/
|
|
51
|
+
tournamentLocation: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
56
|
+
*/
|
|
57
|
+
tournamentCountry: string;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
62
|
+
*/
|
|
63
|
+
tournamentUrl: string;
|
|
40
64
|
/**
|
|
41
65
|
*
|
|
42
66
|
* @type {number}
|
|
@@ -25,6 +25,14 @@ export function instanceOfApiPadelMatchesGet200ResponseInner(value) {
|
|
|
25
25
|
return false;
|
|
26
26
|
if (!('name' in value) || value['name'] === undefined)
|
|
27
27
|
return false;
|
|
28
|
+
if (!('tournamentName' in value) || value['tournamentName'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('tournamentLocation' in value) || value['tournamentLocation'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('tournamentCountry' in value) || value['tournamentCountry'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
if (!('tournamentUrl' in value) || value['tournamentUrl'] === undefined)
|
|
35
|
+
return false;
|
|
28
36
|
if (!('round' in value) || value['round'] === undefined)
|
|
29
37
|
return false;
|
|
30
38
|
if (!('score' in value) || value['score'] === undefined)
|
|
@@ -62,6 +70,10 @@ export function ApiPadelMatchesGet200ResponseInnerFromJSONTyped(json, ignoreDisc
|
|
|
62
70
|
'id': json['id'],
|
|
63
71
|
'tournamentId': json['tournamentId'],
|
|
64
72
|
'name': json['name'],
|
|
73
|
+
'tournamentName': json['tournamentName'],
|
|
74
|
+
'tournamentLocation': json['tournamentLocation'],
|
|
75
|
+
'tournamentCountry': json['tournamentCountry'],
|
|
76
|
+
'tournamentUrl': json['tournamentUrl'],
|
|
65
77
|
'round': json['round'],
|
|
66
78
|
'score': (json['score'].map(ApiPadelMatchesGet200ResponseInnerScoreInnerFromJSON)),
|
|
67
79
|
'players': ApiPadelMatchesGet200ResponseInnerPlayersFromJSON(json['players']),
|
|
@@ -87,6 +99,10 @@ export function ApiPadelMatchesGet200ResponseInnerToJSONTyped(value, ignoreDiscr
|
|
|
87
99
|
'id': value['id'],
|
|
88
100
|
'tournamentId': value['tournamentId'],
|
|
89
101
|
'name': value['name'],
|
|
102
|
+
'tournamentName': value['tournamentName'],
|
|
103
|
+
'tournamentLocation': value['tournamentLocation'],
|
|
104
|
+
'tournamentCountry': value['tournamentCountry'],
|
|
105
|
+
'tournamentUrl': value['tournamentUrl'],
|
|
90
106
|
'round': value['round'],
|
|
91
107
|
'score': (value['score'].map(ApiPadelMatchesGet200ResponseInnerScoreInnerToJSON)),
|
|
92
108
|
'players': ApiPadelMatchesGet200ResponseInnerPlayersToJSON(value['players']),
|
|
@@ -66,6 +66,30 @@ export interface ApiPadelMatchesGet200ResponseInner {
|
|
|
66
66
|
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
67
67
|
*/
|
|
68
68
|
name: string;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {string}
|
|
72
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
73
|
+
*/
|
|
74
|
+
tournamentName: string;
|
|
75
|
+
/**
|
|
76
|
+
*
|
|
77
|
+
* @type {string}
|
|
78
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
79
|
+
*/
|
|
80
|
+
tournamentLocation: string;
|
|
81
|
+
/**
|
|
82
|
+
*
|
|
83
|
+
* @type {string}
|
|
84
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
85
|
+
*/
|
|
86
|
+
tournamentCountry: string;
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
91
|
+
*/
|
|
92
|
+
tournamentUrl: string;
|
|
69
93
|
/**
|
|
70
94
|
*
|
|
71
95
|
* @type {number}
|
|
@@ -147,6 +171,10 @@ export function instanceOfApiPadelMatchesGet200ResponseInner(value: object): val
|
|
|
147
171
|
if (!('id' in value) || value['id'] === undefined) return false;
|
|
148
172
|
if (!('tournamentId' in value) || value['tournamentId'] === undefined) return false;
|
|
149
173
|
if (!('name' in value) || value['name'] === undefined) return false;
|
|
174
|
+
if (!('tournamentName' in value) || value['tournamentName'] === undefined) return false;
|
|
175
|
+
if (!('tournamentLocation' in value) || value['tournamentLocation'] === undefined) return false;
|
|
176
|
+
if (!('tournamentCountry' in value) || value['tournamentCountry'] === undefined) return false;
|
|
177
|
+
if (!('tournamentUrl' in value) || value['tournamentUrl'] === undefined) return false;
|
|
150
178
|
if (!('round' in value) || value['round'] === undefined) return false;
|
|
151
179
|
if (!('score' in value) || value['score'] === undefined) return false;
|
|
152
180
|
if (!('players' in value) || value['players'] === undefined) return false;
|
|
@@ -175,6 +203,10 @@ export function ApiPadelMatchesGet200ResponseInnerFromJSONTyped(json: any, ignor
|
|
|
175
203
|
'id': json['id'],
|
|
176
204
|
'tournamentId': json['tournamentId'],
|
|
177
205
|
'name': json['name'],
|
|
206
|
+
'tournamentName': json['tournamentName'],
|
|
207
|
+
'tournamentLocation': json['tournamentLocation'],
|
|
208
|
+
'tournamentCountry': json['tournamentCountry'],
|
|
209
|
+
'tournamentUrl': json['tournamentUrl'],
|
|
178
210
|
'round': json['round'],
|
|
179
211
|
'score': ((json['score'] as Array<any>).map(ApiPadelMatchesGet200ResponseInnerScoreInnerFromJSON)),
|
|
180
212
|
'players': ApiPadelMatchesGet200ResponseInnerPlayersFromJSON(json['players']),
|
|
@@ -204,6 +236,10 @@ export function ApiPadelMatchesGet200ResponseInnerToJSONTyped(value?: ApiPadelMa
|
|
|
204
236
|
'id': value['id'],
|
|
205
237
|
'tournamentId': value['tournamentId'],
|
|
206
238
|
'name': value['name'],
|
|
239
|
+
'tournamentName': value['tournamentName'],
|
|
240
|
+
'tournamentLocation': value['tournamentLocation'],
|
|
241
|
+
'tournamentCountry': value['tournamentCountry'],
|
|
242
|
+
'tournamentUrl': value['tournamentUrl'],
|
|
207
243
|
'round': value['round'],
|
|
208
244
|
'score': ((value['score'] as Array<any>).map(ApiPadelMatchesGet200ResponseInnerScoreInnerToJSON)),
|
|
209
245
|
'players': ApiPadelMatchesGet200ResponseInnerPlayersToJSON(value['players']),
|