@drxsuperapp/sdk 1.1.158 → 1.1.160
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/ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer.d.ts +12 -0
- package/dist/models/ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer.js +4 -0
- package/models/ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer.ts +16 -0
- 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.160
|
|
267
267
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
268
|
-
|
|
268
|
+
76011f4..08a0f1f master -> master
|
|
269
269
|
✅ Version bumped
|
|
270
270
|
|
|
271
|
-
> @drxsuperapp/sdk@1.1.
|
|
271
|
+
> @drxsuperapp/sdk@1.1.160 prepublishOnly
|
|
272
272
|
> npm run build
|
|
273
273
|
|
|
274
274
|
|
|
275
|
-
> @drxsuperapp/sdk@1.1.
|
|
275
|
+
> @drxsuperapp/sdk@1.1.160 build
|
|
276
276
|
> tsc
|
|
277
277
|
|
|
@@ -45,6 +45,18 @@ export interface ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer {
|
|
|
45
45
|
* @memberof ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer
|
|
46
46
|
*/
|
|
47
47
|
photoUrl: string | null;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {any}
|
|
51
|
+
* @memberof ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer
|
|
52
|
+
*/
|
|
53
|
+
stats?: any | null;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {any}
|
|
57
|
+
* @memberof ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer
|
|
58
|
+
*/
|
|
59
|
+
tournaments?: any | null;
|
|
48
60
|
}
|
|
49
61
|
/**
|
|
50
62
|
* Check if a given object implements the ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer interface.
|
|
@@ -40,6 +40,8 @@ export function ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayerFromJSO
|
|
|
40
40
|
'fullName': json['fullName'],
|
|
41
41
|
'nationality': json['nationality'],
|
|
42
42
|
'photoUrl': json['photoUrl'],
|
|
43
|
+
'stats': json['stats'] == null ? undefined : json['stats'],
|
|
44
|
+
'tournaments': json['tournaments'] == null ? undefined : json['tournaments'],
|
|
43
45
|
};
|
|
44
46
|
}
|
|
45
47
|
export function ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayerToJSON(json) {
|
|
@@ -55,5 +57,7 @@ export function ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayerToJSONT
|
|
|
55
57
|
'fullName': value['fullName'],
|
|
56
58
|
'nationality': value['nationality'],
|
|
57
59
|
'photoUrl': value['photoUrl'],
|
|
60
|
+
'stats': value['stats'],
|
|
61
|
+
'tournaments': value['tournaments'],
|
|
58
62
|
};
|
|
59
63
|
}
|
|
@@ -49,6 +49,18 @@ export interface ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer {
|
|
|
49
49
|
* @memberof ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer
|
|
50
50
|
*/
|
|
51
51
|
photoUrl: string | null;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {any}
|
|
55
|
+
* @memberof ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer
|
|
56
|
+
*/
|
|
57
|
+
stats?: any | null;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {any}
|
|
61
|
+
* @memberof ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayer
|
|
62
|
+
*/
|
|
63
|
+
tournaments?: any | null;
|
|
52
64
|
}
|
|
53
65
|
|
|
54
66
|
/**
|
|
@@ -78,6 +90,8 @@ export function ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayerFromJSO
|
|
|
78
90
|
'fullName': json['fullName'],
|
|
79
91
|
'nationality': json['nationality'],
|
|
80
92
|
'photoUrl': json['photoUrl'],
|
|
93
|
+
'stats': json['stats'] == null ? undefined : json['stats'],
|
|
94
|
+
'tournaments': json['tournaments'] == null ? undefined : json['tournaments'],
|
|
81
95
|
};
|
|
82
96
|
}
|
|
83
97
|
|
|
@@ -97,6 +111,8 @@ export function ApiTennisMatchesIdGet200ResponseResponseObjectFirstPlayerToJSONT
|
|
|
97
111
|
'fullName': value['fullName'],
|
|
98
112
|
'nationality': value['nationality'],
|
|
99
113
|
'photoUrl': value['photoUrl'],
|
|
114
|
+
'stats': value['stats'],
|
|
115
|
+
'tournaments': value['tournaments'],
|
|
100
116
|
};
|
|
101
117
|
}
|
|
102
118
|
|