@drxsuperapp/sdk 1.1.208 → 1.1.209
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/apis/EsportApi.ts +5 -0
- package/deploy.log +8 -9
- package/dist/apis/EsportApi.d.ts +1 -0
- package/dist/apis/EsportApi.js +3 -0
- package/package.json +1 -1
package/apis/EsportApi.ts
CHANGED
|
@@ -33,6 +33,7 @@ export interface ApiEsportIdMatchesGetRequest {
|
|
|
33
33
|
page?: number | null;
|
|
34
34
|
perPage?: number | null;
|
|
35
35
|
searchTerm?: string;
|
|
36
|
+
status?: string;
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
export interface ApiEsportMatchIdGetRequest {
|
|
@@ -69,6 +70,10 @@ export class EsportApi extends runtime.BaseAPI {
|
|
|
69
70
|
queryParameters['searchTerm'] = requestParameters['searchTerm'];
|
|
70
71
|
}
|
|
71
72
|
|
|
73
|
+
if (requestParameters['status'] != null) {
|
|
74
|
+
queryParameters['status'] = requestParameters['status'];
|
|
75
|
+
}
|
|
76
|
+
|
|
72
77
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
73
78
|
|
|
74
79
|
if (this.configuration && this.configuration.apiKey) {
|
package/deploy.log
CHANGED
|
@@ -386,21 +386,20 @@
|
|
|
386
386
|
# https://opencollective.com/openapi_generator/donate #
|
|
387
387
|
################################################################################
|
|
388
388
|
✅ SDK generated
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
Everything up-to-date
|
|
389
|
+
[master 39be15b] VPS: Generated API SDK
|
|
390
|
+
1 file changed, 5 insertions(+)
|
|
391
|
+
To https://gitlab.com/drx-super/drx-sdk.git
|
|
392
|
+
197c225..39be15b master -> master
|
|
394
393
|
✅ Changes committed and pushed
|
|
395
|
-
v1.1.
|
|
394
|
+
v1.1.209
|
|
396
395
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
397
|
-
|
|
396
|
+
39be15b..9ebef1c master -> master
|
|
398
397
|
✅ Version bumped
|
|
399
398
|
|
|
400
|
-
> @drxsuperapp/sdk@1.1.
|
|
399
|
+
> @drxsuperapp/sdk@1.1.209 prepublishOnly
|
|
401
400
|
> npm run build
|
|
402
401
|
|
|
403
402
|
|
|
404
|
-
> @drxsuperapp/sdk@1.1.
|
|
403
|
+
> @drxsuperapp/sdk@1.1.209 build
|
|
405
404
|
> tsc
|
|
406
405
|
|
package/dist/apis/EsportApi.d.ts
CHANGED
package/dist/apis/EsportApi.js
CHANGED
|
@@ -34,6 +34,9 @@ export class EsportApi extends runtime.BaseAPI {
|
|
|
34
34
|
if (requestParameters['searchTerm'] != null) {
|
|
35
35
|
queryParameters['searchTerm'] = requestParameters['searchTerm'];
|
|
36
36
|
}
|
|
37
|
+
if (requestParameters['status'] != null) {
|
|
38
|
+
queryParameters['status'] = requestParameters['status'];
|
|
39
|
+
}
|
|
37
40
|
const headerParameters = {};
|
|
38
41
|
if (this.configuration && this.configuration.apiKey) {
|
|
39
42
|
headerParameters["x-api-key"] = await this.configuration.apiKey("x-api-key"); // ApiKeyAuth authentication
|