@drxsuperapp/sdk 1.1.71 → 1.1.72
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
|
@@ -94,21 +94,20 @@
|
|
|
94
94
|
# https://opencollective.com/openapi_generator/donate #
|
|
95
95
|
################################################################################
|
|
96
96
|
✅ SDK generated
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
Everything up-to-date
|
|
97
|
+
[master de175fd] VPS: Generated API SDK
|
|
98
|
+
1 file changed, 9 insertions(+), 12 deletions(-)
|
|
99
|
+
To https://gitlab.com/drx-super/drx-sdk.git
|
|
100
|
+
616bbb0..de175fd master -> master
|
|
102
101
|
✅ Changes committed and pushed
|
|
103
|
-
v1.1.
|
|
102
|
+
v1.1.72
|
|
104
103
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
105
|
-
|
|
104
|
+
de175fd..8fe56f6 master -> master
|
|
106
105
|
✅ Version bumped
|
|
107
106
|
|
|
108
|
-
> @drxsuperapp/sdk@1.1.
|
|
107
|
+
> @drxsuperapp/sdk@1.1.72 prepublishOnly
|
|
109
108
|
> npm run build
|
|
110
109
|
|
|
111
110
|
|
|
112
|
-
> @drxsuperapp/sdk@1.1.
|
|
111
|
+
> @drxsuperapp/sdk@1.1.72 build
|
|
113
112
|
> tsc
|
|
114
113
|
|
|
@@ -34,7 +34,7 @@ export interface ApiPadelMatchesIdGet200ResponseResponseObjectStats {
|
|
|
34
34
|
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue; }}
|
|
35
35
|
* @memberof ApiPadelMatchesIdGet200ResponseResponseObjectStats
|
|
36
36
|
*/
|
|
37
|
-
match
|
|
37
|
+
match?: {
|
|
38
38
|
[key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue;
|
|
39
39
|
};
|
|
40
40
|
/**
|
|
@@ -42,7 +42,7 @@ export interface ApiPadelMatchesIdGet200ResponseResponseObjectStats {
|
|
|
42
42
|
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue; }}
|
|
43
43
|
* @memberof ApiPadelMatchesIdGet200ResponseResponseObjectStats
|
|
44
44
|
*/
|
|
45
|
-
set1
|
|
45
|
+
set1?: {
|
|
46
46
|
[key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue;
|
|
47
47
|
};
|
|
48
48
|
/**
|
|
@@ -50,7 +50,7 @@ export interface ApiPadelMatchesIdGet200ResponseResponseObjectStats {
|
|
|
50
50
|
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue; }}
|
|
51
51
|
* @memberof ApiPadelMatchesIdGet200ResponseResponseObjectStats
|
|
52
52
|
*/
|
|
53
|
-
set2
|
|
53
|
+
set2?: {
|
|
54
54
|
[key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue;
|
|
55
55
|
};
|
|
56
56
|
/**
|
|
@@ -22,12 +22,6 @@ export function instanceOfApiPadelMatchesIdGet200ResponseResponseObjectStats(val
|
|
|
22
22
|
return false;
|
|
23
23
|
if (!('self' in value) || value['self'] === undefined)
|
|
24
24
|
return false;
|
|
25
|
-
if (!('match' in value) || value['match'] === undefined)
|
|
26
|
-
return false;
|
|
27
|
-
if (!('set1' in value) || value['set1'] === undefined)
|
|
28
|
-
return false;
|
|
29
|
-
if (!('set2' in value) || value['set2'] === undefined)
|
|
30
|
-
return false;
|
|
31
25
|
if (!('connections' in value) || value['connections'] === undefined)
|
|
32
26
|
return false;
|
|
33
27
|
return true;
|
|
@@ -42,9 +36,9 @@ export function ApiPadelMatchesIdGet200ResponseResponseObjectStatsFromJSONTyped(
|
|
|
42
36
|
return {
|
|
43
37
|
'id': json['id'],
|
|
44
38
|
'self': json['self'],
|
|
45
|
-
'match': (mapValues(json['match'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
46
|
-
'set1': (mapValues(json['set_1'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
47
|
-
'set2': (mapValues(json['set_2'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
39
|
+
'match': json['match'] == null ? undefined : (mapValues(json['match'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
40
|
+
'set1': json['set_1'] == null ? undefined : (mapValues(json['set_1'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
41
|
+
'set2': json['set_2'] == null ? undefined : (mapValues(json['set_2'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
48
42
|
'set3': json['set_3'] == null ? undefined : (mapValues(json['set_3'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
49
43
|
'connections': ApiPadelMatchesIdGet200ResponseResponseObjectStatsConnectionsFromJSON(json['connections']),
|
|
50
44
|
};
|
|
@@ -59,9 +53,9 @@ export function ApiPadelMatchesIdGet200ResponseResponseObjectStatsToJSONTyped(va
|
|
|
59
53
|
return {
|
|
60
54
|
'id': value['id'],
|
|
61
55
|
'self': value['self'],
|
|
62
|
-
'match': (mapValues(value['match'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
63
|
-
'set_1': (mapValues(value['set1'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
64
|
-
'set_2': (mapValues(value['set2'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
56
|
+
'match': value['match'] == null ? undefined : (mapValues(value['match'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
57
|
+
'set_1': value['set1'] == null ? undefined : (mapValues(value['set1'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
58
|
+
'set_2': value['set2'] == null ? undefined : (mapValues(value['set2'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
65
59
|
'set_3': value['set3'] == null ? undefined : (mapValues(value['set3'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
66
60
|
'connections': ApiPadelMatchesIdGet200ResponseResponseObjectStatsConnectionsToJSON(value['connections']),
|
|
67
61
|
};
|
|
@@ -51,19 +51,19 @@ export interface ApiPadelMatchesIdGet200ResponseResponseObjectStats {
|
|
|
51
51
|
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue; }}
|
|
52
52
|
* @memberof ApiPadelMatchesIdGet200ResponseResponseObjectStats
|
|
53
53
|
*/
|
|
54
|
-
match
|
|
54
|
+
match?: { [key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue; };
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
57
|
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue; }}
|
|
58
58
|
* @memberof ApiPadelMatchesIdGet200ResponseResponseObjectStats
|
|
59
59
|
*/
|
|
60
|
-
set1
|
|
60
|
+
set1?: { [key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue; };
|
|
61
61
|
/**
|
|
62
62
|
*
|
|
63
63
|
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue; }}
|
|
64
64
|
* @memberof ApiPadelMatchesIdGet200ResponseResponseObjectStats
|
|
65
65
|
*/
|
|
66
|
-
set2
|
|
66
|
+
set2?: { [key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue; };
|
|
67
67
|
/**
|
|
68
68
|
*
|
|
69
69
|
* @type {{ [key: string]: ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValue; }}
|
|
@@ -84,9 +84,6 @@ export interface ApiPadelMatchesIdGet200ResponseResponseObjectStats {
|
|
|
84
84
|
export function instanceOfApiPadelMatchesIdGet200ResponseResponseObjectStats(value: object): value is ApiPadelMatchesIdGet200ResponseResponseObjectStats {
|
|
85
85
|
if (!('id' in value) || value['id'] === undefined) return false;
|
|
86
86
|
if (!('self' in value) || value['self'] === undefined) return false;
|
|
87
|
-
if (!('match' in value) || value['match'] === undefined) return false;
|
|
88
|
-
if (!('set1' in value) || value['set1'] === undefined) return false;
|
|
89
|
-
if (!('set2' in value) || value['set2'] === undefined) return false;
|
|
90
87
|
if (!('connections' in value) || value['connections'] === undefined) return false;
|
|
91
88
|
return true;
|
|
92
89
|
}
|
|
@@ -103,9 +100,9 @@ export function ApiPadelMatchesIdGet200ResponseResponseObjectStatsFromJSONTyped(
|
|
|
103
100
|
|
|
104
101
|
'id': json['id'],
|
|
105
102
|
'self': json['self'],
|
|
106
|
-
'match': (mapValues(json['match'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
107
|
-
'set1': (mapValues(json['set_1'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
108
|
-
'set2': (mapValues(json['set_2'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
103
|
+
'match': json['match'] == null ? undefined : (mapValues(json['match'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
104
|
+
'set1': json['set_1'] == null ? undefined : (mapValues(json['set_1'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
105
|
+
'set2': json['set_2'] == null ? undefined : (mapValues(json['set_2'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
109
106
|
'set3': json['set_3'] == null ? undefined : (mapValues(json['set_3'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueFromJSON)),
|
|
110
107
|
'connections': ApiPadelMatchesIdGet200ResponseResponseObjectStatsConnectionsFromJSON(json['connections']),
|
|
111
108
|
};
|
|
@@ -124,9 +121,9 @@ export function ApiPadelMatchesIdGet200ResponseResponseObjectStatsToJSONTyped(va
|
|
|
124
121
|
|
|
125
122
|
'id': value['id'],
|
|
126
123
|
'self': value['self'],
|
|
127
|
-
'match': (mapValues(value['match'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
128
|
-
'set_1': (mapValues(value['set1'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
129
|
-
'set_2': (mapValues(value['set2'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
124
|
+
'match': value['match'] == null ? undefined : (mapValues(value['match'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
125
|
+
'set_1': value['set1'] == null ? undefined : (mapValues(value['set1'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
126
|
+
'set_2': value['set2'] == null ? undefined : (mapValues(value['set2'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
130
127
|
'set_3': value['set3'] == null ? undefined : (mapValues(value['set3'], ApiPadelMatchesIdGet200ResponseResponseObjectStatsMatchValueToJSON)),
|
|
131
128
|
'connections': ApiPadelMatchesIdGet200ResponseResponseObjectStatsConnectionsToJSON(value['connections']),
|
|
132
129
|
};
|