@drxsuperapp/sdk 1.1.207 → 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 +7 -13
- 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,26 +386,20 @@
|
|
|
386
386
|
# https://opencollective.com/openapi_generator/donate #
|
|
387
387
|
################################################################################
|
|
388
388
|
✅ SDK generated
|
|
389
|
-
[master
|
|
390
|
-
|
|
391
|
-
delete mode 100644 models/ApiAuthGoogleCallbackPost200Response.ts
|
|
392
|
-
delete mode 100644 models/ApiAuthGoogleCallbackPostRequest.ts
|
|
393
|
-
delete mode 100644 models/ApiAuthGoogleMobilePostRequest.ts
|
|
394
|
-
create mode 100644 models/ApiAuthSocialMobilePost200Response.ts
|
|
395
|
-
rename models/{ApiAuthGoogleCallbackPost200ResponseResponseObject.ts => ApiAuthSocialMobilePost200ResponseResponseObject.ts} (60%)
|
|
396
|
-
create mode 100644 models/ApiAuthSocialMobilePostRequest.ts
|
|
389
|
+
[master 39be15b] VPS: Generated API SDK
|
|
390
|
+
1 file changed, 5 insertions(+)
|
|
397
391
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
398
|
-
|
|
392
|
+
197c225..39be15b master -> master
|
|
399
393
|
✅ Changes committed and pushed
|
|
400
|
-
v1.1.
|
|
394
|
+
v1.1.209
|
|
401
395
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
402
|
-
|
|
396
|
+
39be15b..9ebef1c master -> master
|
|
403
397
|
✅ Version bumped
|
|
404
398
|
|
|
405
|
-
> @drxsuperapp/sdk@1.1.
|
|
399
|
+
> @drxsuperapp/sdk@1.1.209 prepublishOnly
|
|
406
400
|
> npm run build
|
|
407
401
|
|
|
408
402
|
|
|
409
|
-
> @drxsuperapp/sdk@1.1.
|
|
403
|
+
> @drxsuperapp/sdk@1.1.209 build
|
|
410
404
|
> tsc
|
|
411
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
|