@drxsuperapp/sdk 1.1.158 → 1.1.159

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
@@ -257,21 +257,20 @@
257
257
  # https://opencollective.com/openapi_generator/donate #
258
258
  ################################################################################
259
259
  ✅ SDK generated
260
- On branch master
261
- Your branch is up to date with 'origin/master'.
262
-
263
- nothing to commit, working tree clean
264
- Everything up-to-date
260
+ [master e76d977] VPS: Generated API SDK
261
+ 1 file changed, 16 insertions(+)
262
+ To https://gitlab.com/drx-super/drx-sdk.git
263
+ 3e567a2..e76d977 master -> master
265
264
  ✅ Changes committed and pushed
266
- v1.1.158
265
+ v1.1.159
267
266
  To https://gitlab.com/drx-super/drx-sdk.git
268
- 83db430..3e567a2 master -> master
267
+ e76d977..76011f4 master -> master
269
268
  ✅ Version bumped
270
269
 
271
- > @drxsuperapp/sdk@1.1.158 prepublishOnly
270
+ > @drxsuperapp/sdk@1.1.159 prepublishOnly
272
271
  > npm run build
273
272
 
274
273
 
275
- > @drxsuperapp/sdk@1.1.158 build
274
+ > @drxsuperapp/sdk@1.1.159 build
276
275
  > tsc
277
276
 
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "1.1.158",
3
+ "version": "1.1.159",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {