@drxsuperapp/sdk 1.1.253 → 1.1.255
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/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.d.ts +6 -0
- package/dist/models/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.js +4 -0
- package/dist/models/ApiGarudakuTournamentsGetFilterParameter.d.ts +6 -0
- package/dist/models/ApiGarudakuTournamentsGetFilterParameter.js +2 -0
- package/dist/models/ApiGarudakuTournamentsIdPutRequest.d.ts +6 -0
- package/dist/models/ApiGarudakuTournamentsIdPutRequest.js +2 -0
- package/dist/models/ApiGarudakuTournamentsPostRequest.d.ts +6 -0
- package/dist/models/ApiGarudakuTournamentsPostRequest.js +4 -0
- package/models/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.ts +9 -0
- package/models/ApiGarudakuTournamentsGetFilterParameter.ts +8 -0
- package/models/ApiGarudakuTournamentsIdPutRequest.ts +8 -0
- package/models/ApiGarudakuTournamentsPostRequest.ts +9 -0
- package/package.json +1 -1
package/deploy.log
CHANGED
|
@@ -562,15 +562,15 @@ Your branch is up to date with 'origin/master'.
|
|
|
562
562
|
nothing to commit, working tree clean
|
|
563
563
|
Everything up-to-date
|
|
564
564
|
✅ Changes committed and pushed
|
|
565
|
-
v1.1.
|
|
565
|
+
v1.1.255
|
|
566
566
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
567
|
-
|
|
567
|
+
cd419b1..24414ac master -> master
|
|
568
568
|
✅ Version bumped
|
|
569
569
|
|
|
570
|
-
> @drxsuperapp/sdk@1.1.
|
|
570
|
+
> @drxsuperapp/sdk@1.1.255 prepublishOnly
|
|
571
571
|
> npm run build
|
|
572
572
|
|
|
573
573
|
|
|
574
|
-
> @drxsuperapp/sdk@1.1.
|
|
574
|
+
> @drxsuperapp/sdk@1.1.255 build
|
|
575
575
|
> tsc
|
|
576
576
|
|
|
@@ -45,6 +45,12 @@ export interface ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner {
|
|
|
45
45
|
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
46
46
|
*/
|
|
47
47
|
prizePool: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
52
|
+
*/
|
|
53
|
+
slots: string;
|
|
48
54
|
/**
|
|
49
55
|
*
|
|
50
56
|
* @type {Date}
|
|
@@ -32,6 +32,8 @@ export function instanceOfApiGarudakuTournamentsGet200ResponseResponseObjectItem
|
|
|
32
32
|
return false;
|
|
33
33
|
if (!('prizePool' in value) || value['prizePool'] === undefined)
|
|
34
34
|
return false;
|
|
35
|
+
if (!('slots' in value) || value['slots'] === undefined)
|
|
36
|
+
return false;
|
|
35
37
|
if (!('tournamentDatetime' in value) || value['tournamentDatetime'] === undefined)
|
|
36
38
|
return false;
|
|
37
39
|
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
@@ -53,6 +55,7 @@ export function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerFrom
|
|
|
53
55
|
'tournamentLink': json['tournamentLink'],
|
|
54
56
|
'category': json['category'],
|
|
55
57
|
'prizePool': json['prizePool'],
|
|
58
|
+
'slots': json['slots'],
|
|
56
59
|
'tournamentDatetime': (new Date(json['tournamentDatetime'])),
|
|
57
60
|
'createdAt': (new Date(json['createdAt'])),
|
|
58
61
|
'updatedAt': (new Date(json['updatedAt'])),
|
|
@@ -71,6 +74,7 @@ export function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerToJS
|
|
|
71
74
|
'tournamentLink': value['tournamentLink'],
|
|
72
75
|
'category': value['category'],
|
|
73
76
|
'prizePool': value['prizePool'],
|
|
77
|
+
'slots': value['slots'],
|
|
74
78
|
'tournamentDatetime': ((value['tournamentDatetime']).toISOString()),
|
|
75
79
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
76
80
|
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
@@ -35,6 +35,12 @@ export interface ApiGarudakuTournamentsGetFilterParameter {
|
|
|
35
35
|
* @memberof ApiGarudakuTournamentsGetFilterParameter
|
|
36
36
|
*/
|
|
37
37
|
prizePool?: ApiPadelMatchesGetFilterParameterName;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {ApiPadelMatchesGetFilterParameterName}
|
|
41
|
+
* @memberof ApiGarudakuTournamentsGetFilterParameter
|
|
42
|
+
*/
|
|
43
|
+
slots?: ApiPadelMatchesGetFilterParameterName;
|
|
38
44
|
/**
|
|
39
45
|
*
|
|
40
46
|
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
@@ -30,6 +30,7 @@ export function ApiGarudakuTournamentsGetFilterParameterFromJSONTyped(json, igno
|
|
|
30
30
|
'tournamentName': json['tournamentName'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['tournamentName']),
|
|
31
31
|
'category': json['category'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['category']),
|
|
32
32
|
'prizePool': json['prizePool'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['prizePool']),
|
|
33
|
+
'slots': json['slots'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['slots']),
|
|
33
34
|
'tournamentDatetime': json['tournamentDatetime'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['tournamentDatetime']),
|
|
34
35
|
'createdAt': json['createdAt'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['createdAt']),
|
|
35
36
|
'updatedAt': json['updatedAt'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['updatedAt']),
|
|
@@ -46,6 +47,7 @@ export function ApiGarudakuTournamentsGetFilterParameterToJSONTyped(value, ignor
|
|
|
46
47
|
'tournamentName': ApiPadelMatchesGetFilterParameterNameToJSON(value['tournamentName']),
|
|
47
48
|
'category': ApiPadelMatchesGetFilterParameterNameToJSON(value['category']),
|
|
48
49
|
'prizePool': ApiPadelMatchesGetFilterParameterNameToJSON(value['prizePool']),
|
|
50
|
+
'slots': ApiPadelMatchesGetFilterParameterNameToJSON(value['slots']),
|
|
49
51
|
'tournamentDatetime': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['tournamentDatetime']),
|
|
50
52
|
'createdAt': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['createdAt']),
|
|
51
53
|
'updatedAt': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['updatedAt']),
|
|
@@ -39,6 +39,12 @@ export interface ApiGarudakuTournamentsIdPutRequest {
|
|
|
39
39
|
* @memberof ApiGarudakuTournamentsIdPutRequest
|
|
40
40
|
*/
|
|
41
41
|
prizePool?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ApiGarudakuTournamentsIdPutRequest
|
|
46
|
+
*/
|
|
47
|
+
slots?: string;
|
|
42
48
|
/**
|
|
43
49
|
*
|
|
44
50
|
* @type {Date}
|
|
@@ -36,6 +36,7 @@ export function ApiGarudakuTournamentsIdPutRequestFromJSONTyped(json, ignoreDisc
|
|
|
36
36
|
'tournamentLink': json['tournamentLink'] == null ? undefined : json['tournamentLink'],
|
|
37
37
|
'category': json['category'] == null ? undefined : json['category'],
|
|
38
38
|
'prizePool': json['prizePool'] == null ? undefined : json['prizePool'],
|
|
39
|
+
'slots': json['slots'] == null ? undefined : json['slots'],
|
|
39
40
|
'tournamentDatetime': json['tournamentDatetime'] == null ? undefined : (new Date(json['tournamentDatetime'])),
|
|
40
41
|
};
|
|
41
42
|
}
|
|
@@ -51,6 +52,7 @@ export function ApiGarudakuTournamentsIdPutRequestToJSONTyped(value, ignoreDiscr
|
|
|
51
52
|
'tournamentLink': value['tournamentLink'],
|
|
52
53
|
'category': value['category'],
|
|
53
54
|
'prizePool': value['prizePool'],
|
|
55
|
+
'slots': value['slots'],
|
|
54
56
|
'tournamentDatetime': value['tournamentDatetime'] == null ? undefined : ((value['tournamentDatetime']).toISOString()),
|
|
55
57
|
};
|
|
56
58
|
}
|
|
@@ -39,6 +39,12 @@ export interface ApiGarudakuTournamentsPostRequest {
|
|
|
39
39
|
* @memberof ApiGarudakuTournamentsPostRequest
|
|
40
40
|
*/
|
|
41
41
|
prizePool: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ApiGarudakuTournamentsPostRequest
|
|
46
|
+
*/
|
|
47
|
+
slots: string;
|
|
42
48
|
/**
|
|
43
49
|
*
|
|
44
50
|
* @type {Date}
|
|
@@ -30,6 +30,8 @@ export function instanceOfApiGarudakuTournamentsPostRequest(value) {
|
|
|
30
30
|
return false;
|
|
31
31
|
if (!('prizePool' in value) || value['prizePool'] === undefined)
|
|
32
32
|
return false;
|
|
33
|
+
if (!('slots' in value) || value['slots'] === undefined)
|
|
34
|
+
return false;
|
|
33
35
|
if (!('tournamentDatetime' in value) || value['tournamentDatetime'] === undefined)
|
|
34
36
|
return false;
|
|
35
37
|
return true;
|
|
@@ -46,6 +48,7 @@ export function ApiGarudakuTournamentsPostRequestFromJSONTyped(json, ignoreDiscr
|
|
|
46
48
|
'tournamentLink': json['tournamentLink'],
|
|
47
49
|
'category': json['category'],
|
|
48
50
|
'prizePool': json['prizePool'],
|
|
51
|
+
'slots': json['slots'],
|
|
49
52
|
'tournamentDatetime': (new Date(json['tournamentDatetime'])),
|
|
50
53
|
};
|
|
51
54
|
}
|
|
@@ -61,6 +64,7 @@ export function ApiGarudakuTournamentsPostRequestToJSONTyped(value, ignoreDiscri
|
|
|
61
64
|
'tournamentLink': value['tournamentLink'],
|
|
62
65
|
'category': value['category'],
|
|
63
66
|
'prizePool': value['prizePool'],
|
|
67
|
+
'slots': value['slots'],
|
|
64
68
|
'tournamentDatetime': ((value['tournamentDatetime']).toISOString()),
|
|
65
69
|
};
|
|
66
70
|
}
|
|
@@ -49,6 +49,12 @@ export interface ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner {
|
|
|
49
49
|
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
50
50
|
*/
|
|
51
51
|
prizePool: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
56
|
+
*/
|
|
57
|
+
slots: string;
|
|
52
58
|
/**
|
|
53
59
|
*
|
|
54
60
|
* @type {Date}
|
|
@@ -89,6 +95,7 @@ export function instanceOfApiGarudakuTournamentsGet200ResponseResponseObjectItem
|
|
|
89
95
|
if (!('tournamentLink' in value) || value['tournamentLink'] === undefined) return false;
|
|
90
96
|
if (!('category' in value) || value['category'] === undefined) return false;
|
|
91
97
|
if (!('prizePool' in value) || value['prizePool'] === undefined) return false;
|
|
98
|
+
if (!('slots' in value) || value['slots'] === undefined) return false;
|
|
92
99
|
if (!('tournamentDatetime' in value) || value['tournamentDatetime'] === undefined) return false;
|
|
93
100
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
94
101
|
if (!('updatedAt' in value) || value['updatedAt'] === undefined) return false;
|
|
@@ -110,6 +117,7 @@ export function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerFrom
|
|
|
110
117
|
'tournamentLink': json['tournamentLink'],
|
|
111
118
|
'category': json['category'],
|
|
112
119
|
'prizePool': json['prizePool'],
|
|
120
|
+
'slots': json['slots'],
|
|
113
121
|
'tournamentDatetime': (new Date(json['tournamentDatetime'])),
|
|
114
122
|
'createdAt': (new Date(json['createdAt'])),
|
|
115
123
|
'updatedAt': (new Date(json['updatedAt'])),
|
|
@@ -132,6 +140,7 @@ export function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerToJS
|
|
|
132
140
|
'tournamentLink': value['tournamentLink'],
|
|
133
141
|
'category': value['category'],
|
|
134
142
|
'prizePool': value['prizePool'],
|
|
143
|
+
'slots': value['slots'],
|
|
135
144
|
'tournamentDatetime': ((value['tournamentDatetime']).toISOString()),
|
|
136
145
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
137
146
|
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
@@ -52,6 +52,12 @@ export interface ApiGarudakuTournamentsGetFilterParameter {
|
|
|
52
52
|
* @memberof ApiGarudakuTournamentsGetFilterParameter
|
|
53
53
|
*/
|
|
54
54
|
prizePool?: ApiPadelMatchesGetFilterParameterName;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {ApiPadelMatchesGetFilterParameterName}
|
|
58
|
+
* @memberof ApiGarudakuTournamentsGetFilterParameter
|
|
59
|
+
*/
|
|
60
|
+
slots?: ApiPadelMatchesGetFilterParameterName;
|
|
55
61
|
/**
|
|
56
62
|
*
|
|
57
63
|
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
@@ -92,6 +98,7 @@ export function ApiGarudakuTournamentsGetFilterParameterFromJSONTyped(json: any,
|
|
|
92
98
|
'tournamentName': json['tournamentName'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['tournamentName']),
|
|
93
99
|
'category': json['category'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['category']),
|
|
94
100
|
'prizePool': json['prizePool'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['prizePool']),
|
|
101
|
+
'slots': json['slots'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['slots']),
|
|
95
102
|
'tournamentDatetime': json['tournamentDatetime'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['tournamentDatetime']),
|
|
96
103
|
'createdAt': json['createdAt'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['createdAt']),
|
|
97
104
|
'updatedAt': json['updatedAt'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['updatedAt']),
|
|
@@ -112,6 +119,7 @@ export function ApiGarudakuTournamentsGetFilterParameterToJSONTyped(value?: ApiG
|
|
|
112
119
|
'tournamentName': ApiPadelMatchesGetFilterParameterNameToJSON(value['tournamentName']),
|
|
113
120
|
'category': ApiPadelMatchesGetFilterParameterNameToJSON(value['category']),
|
|
114
121
|
'prizePool': ApiPadelMatchesGetFilterParameterNameToJSON(value['prizePool']),
|
|
122
|
+
'slots': ApiPadelMatchesGetFilterParameterNameToJSON(value['slots']),
|
|
115
123
|
'tournamentDatetime': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['tournamentDatetime']),
|
|
116
124
|
'createdAt': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['createdAt']),
|
|
117
125
|
'updatedAt': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['updatedAt']),
|
|
@@ -43,6 +43,12 @@ export interface ApiGarudakuTournamentsIdPutRequest {
|
|
|
43
43
|
* @memberof ApiGarudakuTournamentsIdPutRequest
|
|
44
44
|
*/
|
|
45
45
|
prizePool?: string;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof ApiGarudakuTournamentsIdPutRequest
|
|
50
|
+
*/
|
|
51
|
+
slots?: string;
|
|
46
52
|
/**
|
|
47
53
|
*
|
|
48
54
|
* @type {Date}
|
|
@@ -83,6 +89,7 @@ export function ApiGarudakuTournamentsIdPutRequestFromJSONTyped(json: any, ignor
|
|
|
83
89
|
'tournamentLink': json['tournamentLink'] == null ? undefined : json['tournamentLink'],
|
|
84
90
|
'category': json['category'] == null ? undefined : json['category'],
|
|
85
91
|
'prizePool': json['prizePool'] == null ? undefined : json['prizePool'],
|
|
92
|
+
'slots': json['slots'] == null ? undefined : json['slots'],
|
|
86
93
|
'tournamentDatetime': json['tournamentDatetime'] == null ? undefined : (new Date(json['tournamentDatetime'])),
|
|
87
94
|
};
|
|
88
95
|
}
|
|
@@ -102,6 +109,7 @@ export function ApiGarudakuTournamentsIdPutRequestToJSONTyped(value?: ApiGarudak
|
|
|
102
109
|
'tournamentLink': value['tournamentLink'],
|
|
103
110
|
'category': value['category'],
|
|
104
111
|
'prizePool': value['prizePool'],
|
|
112
|
+
'slots': value['slots'],
|
|
105
113
|
'tournamentDatetime': value['tournamentDatetime'] == null ? undefined : ((value['tournamentDatetime']).toISOString()),
|
|
106
114
|
};
|
|
107
115
|
}
|
|
@@ -43,6 +43,12 @@ export interface ApiGarudakuTournamentsPostRequest {
|
|
|
43
43
|
* @memberof ApiGarudakuTournamentsPostRequest
|
|
44
44
|
*/
|
|
45
45
|
prizePool: string;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof ApiGarudakuTournamentsPostRequest
|
|
50
|
+
*/
|
|
51
|
+
slots: string;
|
|
46
52
|
/**
|
|
47
53
|
*
|
|
48
54
|
* @type {Date}
|
|
@@ -70,6 +76,7 @@ export function instanceOfApiGarudakuTournamentsPostRequest(value: object): valu
|
|
|
70
76
|
if (!('tournamentLink' in value) || value['tournamentLink'] === undefined) return false;
|
|
71
77
|
if (!('category' in value) || value['category'] === undefined) return false;
|
|
72
78
|
if (!('prizePool' in value) || value['prizePool'] === undefined) return false;
|
|
79
|
+
if (!('slots' in value) || value['slots'] === undefined) return false;
|
|
73
80
|
if (!('tournamentDatetime' in value) || value['tournamentDatetime'] === undefined) return false;
|
|
74
81
|
return true;
|
|
75
82
|
}
|
|
@@ -88,6 +95,7 @@ export function ApiGarudakuTournamentsPostRequestFromJSONTyped(json: any, ignore
|
|
|
88
95
|
'tournamentLink': json['tournamentLink'],
|
|
89
96
|
'category': json['category'],
|
|
90
97
|
'prizePool': json['prizePool'],
|
|
98
|
+
'slots': json['slots'],
|
|
91
99
|
'tournamentDatetime': (new Date(json['tournamentDatetime'])),
|
|
92
100
|
};
|
|
93
101
|
}
|
|
@@ -107,6 +115,7 @@ export function ApiGarudakuTournamentsPostRequestToJSONTyped(value?: ApiGarudaku
|
|
|
107
115
|
'tournamentLink': value['tournamentLink'],
|
|
108
116
|
'category': value['category'],
|
|
109
117
|
'prizePool': value['prizePool'],
|
|
118
|
+
'slots': value['slots'],
|
|
110
119
|
'tournamentDatetime': ((value['tournamentDatetime']).toISOString()),
|
|
111
120
|
};
|
|
112
121
|
}
|