@drxsuperapp/sdk 1.1.28 → 1.1.30

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,13 +88,20 @@
88
88
  # https://opencollective.com/openapi_generator/donate #
89
89
  ################################################################################
90
90
  ✅ SDK generated
91
- On branch master
92
- Your branch is up to date with 'origin/master'.
93
-
94
- nothing to commit, working tree clean
95
- Everything up-to-date
91
+ [master 817cfa1] VPS: Generated API SDK
92
+ 2 files changed, 26 insertions(+), 8 deletions(-)
93
+ remote:
94
+ remote: Project 'drxsuperapp/drx-sdk' was moved to 'drx-super/drx-sdk'.
95
+ remote:
96
+ remote: Please update your Git remote:
97
+ remote:
98
+ remote: git remote set-url origin https://gitlab.com/drx-super/drx-sdk.git
99
+ remote:
100
+ remote:
101
+ To https://gitlab.com/drxsuperapp/drx-sdk.git
102
+ 3bdd2d4..817cfa1 master -> master
96
103
  ✅ Changes committed and pushed
97
- v1.1.28
104
+ v1.1.30
98
105
  remote:
99
106
  remote: Project 'drxsuperapp/drx-sdk' was moved to 'drx-super/drx-sdk'.
100
107
  remote:
@@ -104,13 +111,13 @@ remote: git remote set-url origin https://gitlab.com/drx-super/drx-sdk.git
104
111
  remote:
105
112
  remote:
106
113
  To https://gitlab.com/drxsuperapp/drx-sdk.git
107
- f69c353..9cb814b master -> master
114
+ 817cfa1..cd3d74a master -> master
108
115
  ✅ Version bumped
109
116
 
110
- > @drxsuperapp/sdk@1.1.28 prepublishOnly
117
+ > @drxsuperapp/sdk@1.1.30 prepublishOnly
111
118
  > npm run build
112
119
 
113
120
 
114
- > @drxsuperapp/sdk@1.1.28 build
121
+ > @drxsuperapp/sdk@1.1.30 build
115
122
  > tsc
116
123
 
@@ -31,6 +31,30 @@ export interface ApiPadelMatchesGet200ResponseInner {
31
31
  * @memberof ApiPadelMatchesGet200ResponseInner
32
32
  */
33
33
  tournamentId: number;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof ApiPadelMatchesGet200ResponseInner
38
+ */
39
+ tournamentName: string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof ApiPadelMatchesGet200ResponseInner
44
+ */
45
+ tournamentLocation: string;
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof ApiPadelMatchesGet200ResponseInner
50
+ */
51
+ tournamentCountry: string;
52
+ /**
53
+ *
54
+ * @type {string}
55
+ * @memberof ApiPadelMatchesGet200ResponseInner
56
+ */
57
+ tournamentUrl: string;
34
58
  /**
35
59
  *
36
60
  * @type {string}
@@ -23,6 +23,14 @@ export function instanceOfApiPadelMatchesGet200ResponseInner(value) {
23
23
  return false;
24
24
  if (!('tournamentId' in value) || value['tournamentId'] === undefined)
25
25
  return false;
26
+ if (!('tournamentName' in value) || value['tournamentName'] === undefined)
27
+ return false;
28
+ if (!('tournamentLocation' in value) || value['tournamentLocation'] === undefined)
29
+ return false;
30
+ if (!('tournamentCountry' in value) || value['tournamentCountry'] === undefined)
31
+ return false;
32
+ if (!('tournamentUrl' in value) || value['tournamentUrl'] === undefined)
33
+ return false;
26
34
  if (!('name' in value) || value['name'] === undefined)
27
35
  return false;
28
36
  if (!('round' in value) || value['round'] === undefined)
@@ -61,6 +69,10 @@ export function ApiPadelMatchesGet200ResponseInnerFromJSONTyped(json, ignoreDisc
61
69
  return {
62
70
  'id': json['id'],
63
71
  'tournamentId': json['tournamentId'],
72
+ 'tournamentName': json['tournamentName'],
73
+ 'tournamentLocation': json['tournamentLocation'],
74
+ 'tournamentCountry': json['tournamentCountry'],
75
+ 'tournamentUrl': json['tournamentUrl'],
64
76
  'name': json['name'],
65
77
  'round': json['round'],
66
78
  'score': (json['score'].map(ApiPadelMatchesGet200ResponseInnerScoreInnerFromJSON)),
@@ -86,6 +98,10 @@ export function ApiPadelMatchesGet200ResponseInnerToJSONTyped(value, ignoreDiscr
86
98
  return {
87
99
  'id': value['id'],
88
100
  'tournamentId': value['tournamentId'],
101
+ 'tournamentName': value['tournamentName'],
102
+ 'tournamentLocation': value['tournamentLocation'],
103
+ 'tournamentCountry': value['tournamentCountry'],
104
+ 'tournamentUrl': value['tournamentUrl'],
89
105
  'name': value['name'],
90
106
  'round': value['round'],
91
107
  'score': (value['score'].map(ApiPadelMatchesGet200ResponseInnerScoreInnerToJSON)),
@@ -39,6 +39,18 @@ export interface ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner {
39
39
  * @memberof ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
40
40
  */
41
41
  side: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
46
+ */
47
+ nationality: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
52
+ */
53
+ photoUrl: string;
42
54
  }
43
55
  /**
44
56
  * Check if a given object implements the ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner interface.
@@ -23,6 +23,10 @@ export function instanceOfApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner(va
23
23
  return false;
24
24
  if (!('side' in value) || value['side'] === undefined)
25
25
  return false;
26
+ if (!('nationality' in value) || value['nationality'] === undefined)
27
+ return false;
28
+ if (!('photoUrl' in value) || value['photoUrl'] === undefined)
29
+ return false;
26
30
  return true;
27
31
  }
28
32
  export function ApiPadelMatchesGet200ResponseInnerPlayersTeam1InnerFromJSON(json) {
@@ -37,6 +41,8 @@ export function ApiPadelMatchesGet200ResponseInnerPlayersTeam1InnerFromJSONTyped
37
41
  'name': json['name'],
38
42
  'self': json['self'],
39
43
  'side': json['side'],
44
+ 'nationality': json['nationality'],
45
+ 'photoUrl': json['photoUrl'],
40
46
  };
41
47
  }
42
48
  export function ApiPadelMatchesGet200ResponseInnerPlayersTeam1InnerToJSON(json) {
@@ -51,5 +57,7 @@ export function ApiPadelMatchesGet200ResponseInnerPlayersTeam1InnerToJSONTyped(v
51
57
  'name': value['name'],
52
58
  'self': value['self'],
53
59
  'side': value['side'],
60
+ 'nationality': value['nationality'],
61
+ 'photoUrl': value['photoUrl'],
54
62
  };
55
63
  }
@@ -60,6 +60,30 @@ export interface ApiPadelMatchesGet200ResponseInner {
60
60
  * @memberof ApiPadelMatchesGet200ResponseInner
61
61
  */
62
62
  tournamentId: number;
63
+ /**
64
+ *
65
+ * @type {string}
66
+ * @memberof ApiPadelMatchesGet200ResponseInner
67
+ */
68
+ tournamentName: string;
69
+ /**
70
+ *
71
+ * @type {string}
72
+ * @memberof ApiPadelMatchesGet200ResponseInner
73
+ */
74
+ tournamentLocation: string;
75
+ /**
76
+ *
77
+ * @type {string}
78
+ * @memberof ApiPadelMatchesGet200ResponseInner
79
+ */
80
+ tournamentCountry: string;
81
+ /**
82
+ *
83
+ * @type {string}
84
+ * @memberof ApiPadelMatchesGet200ResponseInner
85
+ */
86
+ tournamentUrl: string;
63
87
  /**
64
88
  *
65
89
  * @type {string}
@@ -146,6 +170,10 @@ export interface ApiPadelMatchesGet200ResponseInner {
146
170
  export function instanceOfApiPadelMatchesGet200ResponseInner(value: object): value is ApiPadelMatchesGet200ResponseInner {
147
171
  if (!('id' in value) || value['id'] === undefined) return false;
148
172
  if (!('tournamentId' in value) || value['tournamentId'] === undefined) return false;
173
+ if (!('tournamentName' in value) || value['tournamentName'] === undefined) return false;
174
+ if (!('tournamentLocation' in value) || value['tournamentLocation'] === undefined) return false;
175
+ if (!('tournamentCountry' in value) || value['tournamentCountry'] === undefined) return false;
176
+ if (!('tournamentUrl' in value) || value['tournamentUrl'] === undefined) return false;
149
177
  if (!('name' in value) || value['name'] === 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;
@@ -174,6 +202,10 @@ export function ApiPadelMatchesGet200ResponseInnerFromJSONTyped(json: any, ignor
174
202
 
175
203
  'id': json['id'],
176
204
  'tournamentId': json['tournamentId'],
205
+ 'tournamentName': json['tournamentName'],
206
+ 'tournamentLocation': json['tournamentLocation'],
207
+ 'tournamentCountry': json['tournamentCountry'],
208
+ 'tournamentUrl': json['tournamentUrl'],
177
209
  'name': json['name'],
178
210
  'round': json['round'],
179
211
  'score': ((json['score'] as Array<any>).map(ApiPadelMatchesGet200ResponseInnerScoreInnerFromJSON)),
@@ -203,6 +235,10 @@ export function ApiPadelMatchesGet200ResponseInnerToJSONTyped(value?: ApiPadelMa
203
235
 
204
236
  'id': value['id'],
205
237
  'tournamentId': value['tournamentId'],
238
+ 'tournamentName': value['tournamentName'],
239
+ 'tournamentLocation': value['tournamentLocation'],
240
+ 'tournamentCountry': value['tournamentCountry'],
241
+ 'tournamentUrl': value['tournamentUrl'],
206
242
  'name': value['name'],
207
243
  'round': value['round'],
208
244
  'score': ((value['score'] as Array<any>).map(ApiPadelMatchesGet200ResponseInnerScoreInnerToJSON)),
@@ -43,6 +43,18 @@ export interface ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner {
43
43
  * @memberof ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
44
44
  */
45
45
  side: string;
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
50
+ */
51
+ nationality: string;
52
+ /**
53
+ *
54
+ * @type {string}
55
+ * @memberof ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
56
+ */
57
+ photoUrl: string;
46
58
  }
47
59
 
48
60
  /**
@@ -53,6 +65,8 @@ export function instanceOfApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner(va
53
65
  if (!('name' in value) || value['name'] === undefined) return false;
54
66
  if (!('self' in value) || value['self'] === undefined) return false;
55
67
  if (!('side' in value) || value['side'] === undefined) return false;
68
+ if (!('nationality' in value) || value['nationality'] === undefined) return false;
69
+ if (!('photoUrl' in value) || value['photoUrl'] === undefined) return false;
56
70
  return true;
57
71
  }
58
72
 
@@ -70,6 +84,8 @@ export function ApiPadelMatchesGet200ResponseInnerPlayersTeam1InnerFromJSONTyped
70
84
  'name': json['name'],
71
85
  'self': json['self'],
72
86
  'side': json['side'],
87
+ 'nationality': json['nationality'],
88
+ 'photoUrl': json['photoUrl'],
73
89
  };
74
90
  }
75
91
 
@@ -88,6 +104,8 @@ export function ApiPadelMatchesGet200ResponseInnerPlayersTeam1InnerToJSONTyped(v
88
104
  'name': value['name'],
89
105
  'self': value['self'],
90
106
  'side': value['side'],
107
+ 'nationality': value['nationality'],
108
+ 'photoUrl': value['photoUrl'],
91
109
  };
92
110
  }
93
111
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "1.1.28",
3
+ "version": "1.1.30",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {