@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 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 7d8812e] VPS: Generated API SDK
390
- 9 files changed, 252 insertions(+), 352 deletions(-)
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
- b275c69..7d8812e master -> master
392
+ 197c225..39be15b master -> master
399
393
  ✅ Changes committed and pushed
400
- v1.1.207
394
+ v1.1.209
401
395
  To https://gitlab.com/drx-super/drx-sdk.git
402
- 7d8812e..19c84e7 master -> master
396
+ 39be15b..9ebef1c master -> master
403
397
  ✅ Version bumped
404
398
 
405
- > @drxsuperapp/sdk@1.1.207 prepublishOnly
399
+ > @drxsuperapp/sdk@1.1.209 prepublishOnly
406
400
  > npm run build
407
401
 
408
402
 
409
- > @drxsuperapp/sdk@1.1.207 build
403
+ > @drxsuperapp/sdk@1.1.209 build
410
404
  > tsc
411
405
 
@@ -16,6 +16,7 @@ export interface ApiEsportIdMatchesGetRequest {
16
16
  page?: number | null;
17
17
  perPage?: number | null;
18
18
  searchTerm?: string;
19
+ status?: string;
19
20
  }
20
21
  export interface ApiEsportMatchIdGetRequest {
21
22
  id: string;
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "1.1.207",
3
+ "version": "1.1.209",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {