@drxsuperapp/sdk 1.1.153 → 1.1.155
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 +4 -4
- package/dist/models/ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner.d.ts +24 -0
- package/dist/models/ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner.js +16 -0
- package/dist/models/ApiTournamentPadelMatchSoloPutRequestBody.d.ts +19 -1
- package/dist/models/ApiTournamentPadelMatchSoloPutRequestBody.js +12 -2
- package/models/ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner.ts +36 -0
- package/models/ApiTournamentPadelMatchSoloPutRequestBody.ts +29 -3
- package/package.json +1 -1
package/deploy.log
CHANGED
|
@@ -263,15 +263,15 @@ Your branch is up to date with 'origin/master'.
|
|
|
263
263
|
nothing to commit, working tree clean
|
|
264
264
|
Everything up-to-date
|
|
265
265
|
✅ Changes committed and pushed
|
|
266
|
-
v1.1.
|
|
266
|
+
v1.1.155
|
|
267
267
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
268
|
-
|
|
268
|
+
85a1927..26669e9 master -> master
|
|
269
269
|
✅ Version bumped
|
|
270
270
|
|
|
271
|
-
> @drxsuperapp/sdk@1.1.
|
|
271
|
+
> @drxsuperapp/sdk@1.1.155 prepublishOnly
|
|
272
272
|
> npm run build
|
|
273
273
|
|
|
274
274
|
|
|
275
|
-
> @drxsuperapp/sdk@1.1.
|
|
275
|
+
> @drxsuperapp/sdk@1.1.155 build
|
|
276
276
|
> tsc
|
|
277
277
|
|
|
@@ -76,6 +76,30 @@ export interface ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInne
|
|
|
76
76
|
* @memberof ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
77
77
|
*/
|
|
78
78
|
court: number;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {number}
|
|
82
|
+
* @memberof ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
83
|
+
*/
|
|
84
|
+
extraPointA: number | null;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {number}
|
|
88
|
+
* @memberof ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
89
|
+
*/
|
|
90
|
+
extraPointB: number | null;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {boolean}
|
|
94
|
+
* @memberof ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
95
|
+
*/
|
|
96
|
+
hasExtraPointA: boolean;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {boolean}
|
|
100
|
+
* @memberof ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
101
|
+
*/
|
|
102
|
+
hasExtraPointB: boolean;
|
|
79
103
|
/**
|
|
80
104
|
*
|
|
81
105
|
* @type {ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1}
|
|
@@ -36,6 +36,14 @@ export function instanceOfApiTournamentPadelIdGet200ResponseResponseObjectMatche
|
|
|
36
36
|
return false;
|
|
37
37
|
if (!('court' in value) || value['court'] === undefined)
|
|
38
38
|
return false;
|
|
39
|
+
if (!('extraPointA' in value) || value['extraPointA'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
if (!('extraPointB' in value) || value['extraPointB'] === undefined)
|
|
42
|
+
return false;
|
|
43
|
+
if (!('hasExtraPointA' in value) || value['hasExtraPointA'] === undefined)
|
|
44
|
+
return false;
|
|
45
|
+
if (!('hasExtraPointB' in value) || value['hasExtraPointB'] === undefined)
|
|
46
|
+
return false;
|
|
39
47
|
if (!('playerA1' in value) || value['playerA1'] === undefined)
|
|
40
48
|
return false;
|
|
41
49
|
if (!('playerA2' in value) || value['playerA2'] === undefined)
|
|
@@ -64,6 +72,10 @@ export function ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
|
64
72
|
'scoreB': json['score_b'],
|
|
65
73
|
'round': json['round'],
|
|
66
74
|
'court': json['court'],
|
|
75
|
+
'extraPointA': json['extra_point_a'],
|
|
76
|
+
'extraPointB': json['extra_point_b'],
|
|
77
|
+
'hasExtraPointA': json['has_extra_point_a'],
|
|
78
|
+
'hasExtraPointB': json['has_extra_point_b'],
|
|
67
79
|
'playerA1': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1FromJSON(json['playerA1']),
|
|
68
80
|
'playerA2': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1FromJSON(json['playerA2']),
|
|
69
81
|
'playerB1': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1FromJSON(json['playerB1']),
|
|
@@ -88,6 +100,10 @@ export function ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
|
88
100
|
'score_b': value['scoreB'],
|
|
89
101
|
'round': value['round'],
|
|
90
102
|
'court': value['court'],
|
|
103
|
+
'extra_point_a': value['extraPointA'],
|
|
104
|
+
'extra_point_b': value['extraPointB'],
|
|
105
|
+
'has_extra_point_a': value['hasExtraPointA'],
|
|
106
|
+
'has_extra_point_b': value['hasExtraPointB'],
|
|
91
107
|
'playerA1': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1ToJSON(value['playerA1']),
|
|
92
108
|
'playerA2': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1ToJSON(value['playerA2']),
|
|
93
109
|
'playerB1': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1ToJSON(value['playerB1']),
|
|
@@ -80,7 +80,25 @@ export interface ApiTournamentPadelMatchSoloPutRequestBody {
|
|
|
80
80
|
* @type {number}
|
|
81
81
|
* @memberof ApiTournamentPadelMatchSoloPutRequestBody
|
|
82
82
|
*/
|
|
83
|
-
|
|
83
|
+
extraPointA: number | null;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {number}
|
|
87
|
+
* @memberof ApiTournamentPadelMatchSoloPutRequestBody
|
|
88
|
+
*/
|
|
89
|
+
extraPointB: number | null;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {boolean}
|
|
93
|
+
* @memberof ApiTournamentPadelMatchSoloPutRequestBody
|
|
94
|
+
*/
|
|
95
|
+
hasExtraPointA?: boolean;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {boolean}
|
|
99
|
+
* @memberof ApiTournamentPadelMatchSoloPutRequestBody
|
|
100
|
+
*/
|
|
101
|
+
hasExtraPointB?: boolean;
|
|
84
102
|
}
|
|
85
103
|
/**
|
|
86
104
|
* Check if a given object implements the ApiTournamentPadelMatchSoloPutRequestBody interface.
|
|
@@ -35,6 +35,10 @@ export function instanceOfApiTournamentPadelMatchSoloPutRequestBody(value) {
|
|
|
35
35
|
return false;
|
|
36
36
|
if (!('court' in value) || value['court'] === undefined)
|
|
37
37
|
return false;
|
|
38
|
+
if (!('extraPointA' in value) || value['extraPointA'] === undefined)
|
|
39
|
+
return false;
|
|
40
|
+
if (!('extraPointB' in value) || value['extraPointB'] === undefined)
|
|
41
|
+
return false;
|
|
38
42
|
return true;
|
|
39
43
|
}
|
|
40
44
|
export function ApiTournamentPadelMatchSoloPutRequestBodyFromJSON(json) {
|
|
@@ -55,7 +59,10 @@ export function ApiTournamentPadelMatchSoloPutRequestBodyFromJSONTyped(json, ign
|
|
|
55
59
|
'scoreB': json['score_b'],
|
|
56
60
|
'round': json['round'],
|
|
57
61
|
'court': json['court'],
|
|
58
|
-
'
|
|
62
|
+
'extraPointA': json['extra_point_a'],
|
|
63
|
+
'extraPointB': json['extra_point_b'],
|
|
64
|
+
'hasExtraPointA': json['has_extra_point_a'] == null ? undefined : json['has_extra_point_a'],
|
|
65
|
+
'hasExtraPointB': json['has_extra_point_b'] == null ? undefined : json['has_extra_point_b'],
|
|
59
66
|
};
|
|
60
67
|
}
|
|
61
68
|
export function ApiTournamentPadelMatchSoloPutRequestBodyToJSON(json) {
|
|
@@ -76,6 +83,9 @@ export function ApiTournamentPadelMatchSoloPutRequestBodyToJSONTyped(value, igno
|
|
|
76
83
|
'score_b': value['scoreB'],
|
|
77
84
|
'round': value['round'],
|
|
78
85
|
'court': value['court'],
|
|
79
|
-
'
|
|
86
|
+
'extra_point_a': value['extraPointA'],
|
|
87
|
+
'extra_point_b': value['extraPointB'],
|
|
88
|
+
'has_extra_point_a': value['hasExtraPointA'],
|
|
89
|
+
'has_extra_point_b': value['hasExtraPointB'],
|
|
80
90
|
};
|
|
81
91
|
}
|
|
@@ -87,6 +87,30 @@ export interface ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInne
|
|
|
87
87
|
* @memberof ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
88
88
|
*/
|
|
89
89
|
court: number;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {number}
|
|
93
|
+
* @memberof ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
94
|
+
*/
|
|
95
|
+
extraPointA: number | null;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {number}
|
|
99
|
+
* @memberof ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
100
|
+
*/
|
|
101
|
+
extraPointB: number | null;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {boolean}
|
|
105
|
+
* @memberof ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
106
|
+
*/
|
|
107
|
+
hasExtraPointA: boolean;
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @type {boolean}
|
|
111
|
+
* @memberof ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
112
|
+
*/
|
|
113
|
+
hasExtraPointB: boolean;
|
|
90
114
|
/**
|
|
91
115
|
*
|
|
92
116
|
* @type {ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1}
|
|
@@ -127,6 +151,10 @@ export function instanceOfApiTournamentPadelIdGet200ResponseResponseObjectMatche
|
|
|
127
151
|
if (!('scoreB' in value) || value['scoreB'] === undefined) return false;
|
|
128
152
|
if (!('round' in value) || value['round'] === undefined) return false;
|
|
129
153
|
if (!('court' in value) || value['court'] === undefined) return false;
|
|
154
|
+
if (!('extraPointA' in value) || value['extraPointA'] === undefined) return false;
|
|
155
|
+
if (!('extraPointB' in value) || value['extraPointB'] === undefined) return false;
|
|
156
|
+
if (!('hasExtraPointA' in value) || value['hasExtraPointA'] === undefined) return false;
|
|
157
|
+
if (!('hasExtraPointB' in value) || value['hasExtraPointB'] === undefined) return false;
|
|
130
158
|
if (!('playerA1' in value) || value['playerA1'] === undefined) return false;
|
|
131
159
|
if (!('playerA2' in value) || value['playerA2'] === undefined) return false;
|
|
132
160
|
if (!('playerB1' in value) || value['playerB1'] === undefined) return false;
|
|
@@ -154,6 +182,10 @@ export function ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
|
154
182
|
'scoreB': json['score_b'],
|
|
155
183
|
'round': json['round'],
|
|
156
184
|
'court': json['court'],
|
|
185
|
+
'extraPointA': json['extra_point_a'],
|
|
186
|
+
'extraPointB': json['extra_point_b'],
|
|
187
|
+
'hasExtraPointA': json['has_extra_point_a'],
|
|
188
|
+
'hasExtraPointB': json['has_extra_point_b'],
|
|
157
189
|
'playerA1': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1FromJSON(json['playerA1']),
|
|
158
190
|
'playerA2': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1FromJSON(json['playerA2']),
|
|
159
191
|
'playerB1': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1FromJSON(json['playerB1']),
|
|
@@ -182,6 +214,10 @@ export function ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInner
|
|
|
182
214
|
'score_b': value['scoreB'],
|
|
183
215
|
'round': value['round'],
|
|
184
216
|
'court': value['court'],
|
|
217
|
+
'extra_point_a': value['extraPointA'],
|
|
218
|
+
'extra_point_b': value['extraPointB'],
|
|
219
|
+
'has_extra_point_a': value['hasExtraPointA'],
|
|
220
|
+
'has_extra_point_b': value['hasExtraPointB'],
|
|
185
221
|
'playerA1': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1ToJSON(value['playerA1']),
|
|
186
222
|
'playerA2': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1ToJSON(value['playerA2']),
|
|
187
223
|
'playerB1': ApiTournamentPadelIdGet200ResponseResponseObjectMatchesSoloInnerPlayerA1ToJSON(value['playerB1']),
|
|
@@ -84,7 +84,25 @@ export interface ApiTournamentPadelMatchSoloPutRequestBody {
|
|
|
84
84
|
* @type {number}
|
|
85
85
|
* @memberof ApiTournamentPadelMatchSoloPutRequestBody
|
|
86
86
|
*/
|
|
87
|
-
|
|
87
|
+
extraPointA: number | null;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @type {number}
|
|
91
|
+
* @memberof ApiTournamentPadelMatchSoloPutRequestBody
|
|
92
|
+
*/
|
|
93
|
+
extraPointB: number | null;
|
|
94
|
+
/**
|
|
95
|
+
*
|
|
96
|
+
* @type {boolean}
|
|
97
|
+
* @memberof ApiTournamentPadelMatchSoloPutRequestBody
|
|
98
|
+
*/
|
|
99
|
+
hasExtraPointA?: boolean;
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @type {boolean}
|
|
103
|
+
* @memberof ApiTournamentPadelMatchSoloPutRequestBody
|
|
104
|
+
*/
|
|
105
|
+
hasExtraPointB?: boolean;
|
|
88
106
|
}
|
|
89
107
|
|
|
90
108
|
/**
|
|
@@ -101,6 +119,8 @@ export function instanceOfApiTournamentPadelMatchSoloPutRequestBody(value: objec
|
|
|
101
119
|
if (!('scoreB' in value) || value['scoreB'] === undefined) return false;
|
|
102
120
|
if (!('round' in value) || value['round'] === undefined) return false;
|
|
103
121
|
if (!('court' in value) || value['court'] === undefined) return false;
|
|
122
|
+
if (!('extraPointA' in value) || value['extraPointA'] === undefined) return false;
|
|
123
|
+
if (!('extraPointB' in value) || value['extraPointB'] === undefined) return false;
|
|
104
124
|
return true;
|
|
105
125
|
}
|
|
106
126
|
|
|
@@ -124,7 +144,10 @@ export function ApiTournamentPadelMatchSoloPutRequestBodyFromJSONTyped(json: any
|
|
|
124
144
|
'scoreB': json['score_b'],
|
|
125
145
|
'round': json['round'],
|
|
126
146
|
'court': json['court'],
|
|
127
|
-
'
|
|
147
|
+
'extraPointA': json['extra_point_a'],
|
|
148
|
+
'extraPointB': json['extra_point_b'],
|
|
149
|
+
'hasExtraPointA': json['has_extra_point_a'] == null ? undefined : json['has_extra_point_a'],
|
|
150
|
+
'hasExtraPointB': json['has_extra_point_b'] == null ? undefined : json['has_extra_point_b'],
|
|
128
151
|
};
|
|
129
152
|
}
|
|
130
153
|
|
|
@@ -149,7 +172,10 @@ export function ApiTournamentPadelMatchSoloPutRequestBodyToJSONTyped(value?: Api
|
|
|
149
172
|
'score_b': value['scoreB'],
|
|
150
173
|
'round': value['round'],
|
|
151
174
|
'court': value['court'],
|
|
152
|
-
'
|
|
175
|
+
'extra_point_a': value['extraPointA'],
|
|
176
|
+
'extra_point_b': value['extraPointB'],
|
|
177
|
+
'has_extra_point_a': value['hasExtraPointA'],
|
|
178
|
+
'has_extra_point_b': value['hasExtraPointB'],
|
|
153
179
|
};
|
|
154
180
|
}
|
|
155
181
|
|