@drxsuperapp/sdk 2.0.2 → 2.0.3

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.
Files changed (25) hide show
  1. package/.ai/mcp/mcp.json +0 -0
  2. package/.idea/vcs.xml +6 -0
  3. package/.openapi-generator/FILES +2 -0
  4. package/apis/AuthenticationApi.ts +98 -0
  5. package/dist/apis/AuthenticationApi.d.ts +24 -1
  6. package/dist/apis/AuthenticationApi.js +73 -1
  7. package/dist/models/ApiAuthOneTimeLoginCodePost200Response.d.ts +51 -0
  8. package/dist/models/{ApiWalletUnbindPost200Response.js → ApiAuthOneTimeLoginCodePost200Response.js} +11 -11
  9. package/dist/models/ApiAuthOneTimeLoginCodePost200ResponseResponseObject.d.ts +38 -0
  10. package/dist/models/ApiAuthOneTimeLoginCodePost200ResponseResponseObject.js +47 -0
  11. package/dist/models/index.d.ts +2 -0
  12. package/dist/models/index.js +2 -0
  13. package/models/ApiAdminPointDropsPost200ResponseResponseObject.ts +101 -101
  14. package/models/ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt.ts +46 -46
  15. package/models/ApiAuthOneTimeLoginCodePost200Response.ts +100 -0
  16. package/models/ApiAuthOneTimeLoginCodePost200ResponseResponseObject.ts +75 -0
  17. package/models/ApiPwaTournamentPostRequestAdminInner.ts +46 -46
  18. package/models/index.ts +2 -0
  19. package/package.json +1 -1
  20. package/workflow.sh +88 -88
  21. package/dist/models/ApiWalletUnbindPost200Response.d.ts +0 -51
  22. package/dist/models/ApiWalletUnbindPost200ResponseResponseObject.d.ts +0 -32
  23. package/dist/models/ApiWalletUnbindPost200ResponseResponseObject.js +0 -43
  24. package/dist/models/ApiWeb3RedeemPost200ResponseResponseObjectData.d.ts +0 -69
  25. package/dist/models/ApiWeb3RedeemPost200ResponseResponseObjectData.js +0 -68
@@ -1,101 +1,101 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * DRX API
5
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
- *
7
- * The version of the OpenAPI document: 1.0.0
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
- import { mapValues } from '../runtime';
16
- import type { ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt } from './ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt';
17
- import {
18
- ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSON,
19
- ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSONTyped,
20
- ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSON,
21
- ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSONTyped,
22
- } from './ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt';
23
-
24
- /**
25
- *
26
- * @export
27
- * @interface ApiAdminPointDropsPost200ResponseResponseObject
28
- */
29
- export interface ApiAdminPointDropsPost200ResponseResponseObject {
30
- /**
31
- *
32
- * @type {string}
33
- * @memberof ApiAdminPointDropsPost200ResponseResponseObject
34
- */
35
- id: string;
36
- /**
37
- *
38
- * @type {string}
39
- * @memberof ApiAdminPointDropsPost200ResponseResponseObject
40
- */
41
- title: string;
42
- /**
43
- *
44
- * @type {string}
45
- * @memberof ApiAdminPointDropsPost200ResponseResponseObject
46
- */
47
- status: string;
48
- /**
49
- *
50
- * @type {ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt}
51
- * @memberof ApiAdminPointDropsPost200ResponseResponseObject
52
- */
53
- createdAt: ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt;
54
- }
55
-
56
- /**
57
- * Check if a given object implements the ApiAdminPointDropsPost200ResponseResponseObject interface.
58
- */
59
- export function instanceOfApiAdminPointDropsPost200ResponseResponseObject(value: object): value is ApiAdminPointDropsPost200ResponseResponseObject {
60
- if (!('id' in value) || value['id'] === undefined) return false;
61
- if (!('title' in value) || value['title'] === undefined) return false;
62
- if (!('status' in value) || value['status'] === undefined) return false;
63
- if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
64
- return true;
65
- }
66
-
67
- export function ApiAdminPointDropsPost200ResponseResponseObjectFromJSON(json: any): ApiAdminPointDropsPost200ResponseResponseObject {
68
- return ApiAdminPointDropsPost200ResponseResponseObjectFromJSONTyped(json, false);
69
- }
70
-
71
- export function ApiAdminPointDropsPost200ResponseResponseObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiAdminPointDropsPost200ResponseResponseObject {
72
- if (json == null) {
73
- return json;
74
- }
75
- return {
76
-
77
- 'id': json['id'],
78
- 'title': json['title'],
79
- 'status': json['status'],
80
- 'createdAt': ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSON(json['createdAt']),
81
- };
82
- }
83
-
84
- export function ApiAdminPointDropsPost200ResponseResponseObjectToJSON(json: any): ApiAdminPointDropsPost200ResponseResponseObject {
85
- return ApiAdminPointDropsPost200ResponseResponseObjectToJSONTyped(json, false);
86
- }
87
-
88
- export function ApiAdminPointDropsPost200ResponseResponseObjectToJSONTyped(value?: ApiAdminPointDropsPost200ResponseResponseObject | null, ignoreDiscriminator: boolean = false): any {
89
- if (value == null) {
90
- return value;
91
- }
92
-
93
- return {
94
-
95
- 'id': value['id'],
96
- 'title': value['title'],
97
- 'status': value['status'],
98
- 'createdAt': ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSON(value['createdAt']),
99
- };
100
- }
101
-
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * DRX API
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt } from './ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt';
17
+ import {
18
+ ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSON,
19
+ ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSONTyped,
20
+ ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSON,
21
+ ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSONTyped,
22
+ } from './ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface ApiAdminPointDropsPost200ResponseResponseObject
28
+ */
29
+ export interface ApiAdminPointDropsPost200ResponseResponseObject {
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof ApiAdminPointDropsPost200ResponseResponseObject
34
+ */
35
+ id: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof ApiAdminPointDropsPost200ResponseResponseObject
40
+ */
41
+ title: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof ApiAdminPointDropsPost200ResponseResponseObject
46
+ */
47
+ status: string;
48
+ /**
49
+ *
50
+ * @type {ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt}
51
+ * @memberof ApiAdminPointDropsPost200ResponseResponseObject
52
+ */
53
+ createdAt: ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt;
54
+ }
55
+
56
+ /**
57
+ * Check if a given object implements the ApiAdminPointDropsPost200ResponseResponseObject interface.
58
+ */
59
+ export function instanceOfApiAdminPointDropsPost200ResponseResponseObject(value: object): value is ApiAdminPointDropsPost200ResponseResponseObject {
60
+ if (!('id' in value) || value['id'] === undefined) return false;
61
+ if (!('title' in value) || value['title'] === undefined) return false;
62
+ if (!('status' in value) || value['status'] === undefined) return false;
63
+ if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
64
+ return true;
65
+ }
66
+
67
+ export function ApiAdminPointDropsPost200ResponseResponseObjectFromJSON(json: any): ApiAdminPointDropsPost200ResponseResponseObject {
68
+ return ApiAdminPointDropsPost200ResponseResponseObjectFromJSONTyped(json, false);
69
+ }
70
+
71
+ export function ApiAdminPointDropsPost200ResponseResponseObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiAdminPointDropsPost200ResponseResponseObject {
72
+ if (json == null) {
73
+ return json;
74
+ }
75
+ return {
76
+
77
+ 'id': json['id'],
78
+ 'title': json['title'],
79
+ 'status': json['status'],
80
+ 'createdAt': ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSON(json['createdAt']),
81
+ };
82
+ }
83
+
84
+ export function ApiAdminPointDropsPost200ResponseResponseObjectToJSON(json: any): ApiAdminPointDropsPost200ResponseResponseObject {
85
+ return ApiAdminPointDropsPost200ResponseResponseObjectToJSONTyped(json, false);
86
+ }
87
+
88
+ export function ApiAdminPointDropsPost200ResponseResponseObjectToJSONTyped(value?: ApiAdminPointDropsPost200ResponseResponseObject | null, ignoreDiscriminator: boolean = false): any {
89
+ if (value == null) {
90
+ return value;
91
+ }
92
+
93
+ return {
94
+
95
+ 'id': value['id'],
96
+ 'title': value['title'],
97
+ 'status': value['status'],
98
+ 'createdAt': ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSON(value['createdAt']),
99
+ };
100
+ }
101
+
@@ -1,46 +1,46 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * DRX API
5
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
- *
7
- * The version of the OpenAPI document: 1.0.0
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
- import { mapValues } from '../runtime';
16
- /**
17
- *
18
- * @export
19
- * @interface ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt
20
- */
21
- export interface ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt {
22
- }
23
-
24
- /**
25
- * Check if a given object implements the ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt interface.
26
- */
27
- export function instanceOfApiAdminPointDropsPost200ResponseResponseObjectCreatedAt(value: object): value is ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt {
28
- return true;
29
- }
30
-
31
- export function ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSON(json: any): ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt {
32
- return ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSONTyped(json, false);
33
- }
34
-
35
- export function ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt {
36
- return json;
37
- }
38
-
39
- export function ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSON(json: any): ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt {
40
- return ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSONTyped(json, false);
41
- }
42
-
43
- export function ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSONTyped(value?: ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt | null, ignoreDiscriminator: boolean = false): any {
44
- return value;
45
- }
46
-
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * DRX API
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt
20
+ */
21
+ export interface ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt {
22
+ }
23
+
24
+ /**
25
+ * Check if a given object implements the ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt interface.
26
+ */
27
+ export function instanceOfApiAdminPointDropsPost200ResponseResponseObjectCreatedAt(value: object): value is ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt {
28
+ return true;
29
+ }
30
+
31
+ export function ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSON(json: any): ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt {
32
+ return ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSONTyped(json, false);
33
+ }
34
+
35
+ export function ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt {
36
+ return json;
37
+ }
38
+
39
+ export function ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSON(json: any): ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt {
40
+ return ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSONTyped(json, false);
41
+ }
42
+
43
+ export function ApiAdminPointDropsPost200ResponseResponseObjectCreatedAtToJSONTyped(value?: ApiAdminPointDropsPost200ResponseResponseObjectCreatedAt | null, ignoreDiscriminator: boolean = false): any {
44
+ return value;
45
+ }
46
+
@@ -0,0 +1,100 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * DRX API
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { ApiAuthOneTimeLoginCodePost200ResponseResponseObject } from './ApiAuthOneTimeLoginCodePost200ResponseResponseObject';
17
+ import {
18
+ ApiAuthOneTimeLoginCodePost200ResponseResponseObjectFromJSON,
19
+ ApiAuthOneTimeLoginCodePost200ResponseResponseObjectFromJSONTyped,
20
+ ApiAuthOneTimeLoginCodePost200ResponseResponseObjectToJSON,
21
+ ApiAuthOneTimeLoginCodePost200ResponseResponseObjectToJSONTyped,
22
+ } from './ApiAuthOneTimeLoginCodePost200ResponseResponseObject';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface ApiAuthOneTimeLoginCodePost200Response
28
+ */
29
+ export interface ApiAuthOneTimeLoginCodePost200Response {
30
+ /**
31
+ *
32
+ * @type {boolean}
33
+ * @memberof ApiAuthOneTimeLoginCodePost200Response
34
+ */
35
+ success: boolean;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof ApiAuthOneTimeLoginCodePost200Response
40
+ */
41
+ message: string;
42
+ /**
43
+ *
44
+ * @type {ApiAuthOneTimeLoginCodePost200ResponseResponseObject}
45
+ * @memberof ApiAuthOneTimeLoginCodePost200Response
46
+ */
47
+ responseObject?: ApiAuthOneTimeLoginCodePost200ResponseResponseObject;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof ApiAuthOneTimeLoginCodePost200Response
52
+ */
53
+ statusCode: number;
54
+ }
55
+
56
+ /**
57
+ * Check if a given object implements the ApiAuthOneTimeLoginCodePost200Response interface.
58
+ */
59
+ export function instanceOfApiAuthOneTimeLoginCodePost200Response(value: object): value is ApiAuthOneTimeLoginCodePost200Response {
60
+ if (!('success' in value) || value['success'] === undefined) return false;
61
+ if (!('message' in value) || value['message'] === undefined) return false;
62
+ if (!('statusCode' in value) || value['statusCode'] === undefined) return false;
63
+ return true;
64
+ }
65
+
66
+ export function ApiAuthOneTimeLoginCodePost200ResponseFromJSON(json: any): ApiAuthOneTimeLoginCodePost200Response {
67
+ return ApiAuthOneTimeLoginCodePost200ResponseFromJSONTyped(json, false);
68
+ }
69
+
70
+ export function ApiAuthOneTimeLoginCodePost200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiAuthOneTimeLoginCodePost200Response {
71
+ if (json == null) {
72
+ return json;
73
+ }
74
+ return {
75
+
76
+ 'success': json['success'],
77
+ 'message': json['message'],
78
+ 'responseObject': json['responseObject'] == null ? undefined : ApiAuthOneTimeLoginCodePost200ResponseResponseObjectFromJSON(json['responseObject']),
79
+ 'statusCode': json['statusCode'],
80
+ };
81
+ }
82
+
83
+ export function ApiAuthOneTimeLoginCodePost200ResponseToJSON(json: any): ApiAuthOneTimeLoginCodePost200Response {
84
+ return ApiAuthOneTimeLoginCodePost200ResponseToJSONTyped(json, false);
85
+ }
86
+
87
+ export function ApiAuthOneTimeLoginCodePost200ResponseToJSONTyped(value?: ApiAuthOneTimeLoginCodePost200Response | null, ignoreDiscriminator: boolean = false): any {
88
+ if (value == null) {
89
+ return value;
90
+ }
91
+
92
+ return {
93
+
94
+ 'success': value['success'],
95
+ 'message': value['message'],
96
+ 'responseObject': ApiAuthOneTimeLoginCodePost200ResponseResponseObjectToJSON(value['responseObject']),
97
+ 'statusCode': value['statusCode'],
98
+ };
99
+ }
100
+
@@ -0,0 +1,75 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * DRX API
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface ApiAuthOneTimeLoginCodePost200ResponseResponseObject
20
+ */
21
+ export interface ApiAuthOneTimeLoginCodePost200ResponseResponseObject {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof ApiAuthOneTimeLoginCodePost200ResponseResponseObject
26
+ */
27
+ code: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof ApiAuthOneTimeLoginCodePost200ResponseResponseObject
32
+ */
33
+ expiredAt: string;
34
+ }
35
+
36
+ /**
37
+ * Check if a given object implements the ApiAuthOneTimeLoginCodePost200ResponseResponseObject interface.
38
+ */
39
+ export function instanceOfApiAuthOneTimeLoginCodePost200ResponseResponseObject(value: object): value is ApiAuthOneTimeLoginCodePost200ResponseResponseObject {
40
+ if (!('code' in value) || value['code'] === undefined) return false;
41
+ if (!('expiredAt' in value) || value['expiredAt'] === undefined) return false;
42
+ return true;
43
+ }
44
+
45
+ export function ApiAuthOneTimeLoginCodePost200ResponseResponseObjectFromJSON(json: any): ApiAuthOneTimeLoginCodePost200ResponseResponseObject {
46
+ return ApiAuthOneTimeLoginCodePost200ResponseResponseObjectFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function ApiAuthOneTimeLoginCodePost200ResponseResponseObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiAuthOneTimeLoginCodePost200ResponseResponseObject {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'code': json['code'],
56
+ 'expiredAt': json['expiredAt'],
57
+ };
58
+ }
59
+
60
+ export function ApiAuthOneTimeLoginCodePost200ResponseResponseObjectToJSON(json: any): ApiAuthOneTimeLoginCodePost200ResponseResponseObject {
61
+ return ApiAuthOneTimeLoginCodePost200ResponseResponseObjectToJSONTyped(json, false);
62
+ }
63
+
64
+ export function ApiAuthOneTimeLoginCodePost200ResponseResponseObjectToJSONTyped(value?: ApiAuthOneTimeLoginCodePost200ResponseResponseObject | null, ignoreDiscriminator: boolean = false): any {
65
+ if (value == null) {
66
+ return value;
67
+ }
68
+
69
+ return {
70
+
71
+ 'code': value['code'],
72
+ 'expiredAt': value['expiredAt'],
73
+ };
74
+ }
75
+
@@ -1,46 +1,46 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * DRX API
5
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
- *
7
- * The version of the OpenAPI document: 1.0.0
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
- import { mapValues } from '../runtime';
16
- /**
17
- *
18
- * @export
19
- * @interface ApiPwaTournamentPostRequestAdminInner
20
- */
21
- export interface ApiPwaTournamentPostRequestAdminInner {
22
- }
23
-
24
- /**
25
- * Check if a given object implements the ApiPwaTournamentPostRequestAdminInner interface.
26
- */
27
- export function instanceOfApiPwaTournamentPostRequestAdminInner(value: object): value is ApiPwaTournamentPostRequestAdminInner {
28
- return true;
29
- }
30
-
31
- export function ApiPwaTournamentPostRequestAdminInnerFromJSON(json: any): ApiPwaTournamentPostRequestAdminInner {
32
- return ApiPwaTournamentPostRequestAdminInnerFromJSONTyped(json, false);
33
- }
34
-
35
- export function ApiPwaTournamentPostRequestAdminInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiPwaTournamentPostRequestAdminInner {
36
- return json;
37
- }
38
-
39
- export function ApiPwaTournamentPostRequestAdminInnerToJSON(json: any): ApiPwaTournamentPostRequestAdminInner {
40
- return ApiPwaTournamentPostRequestAdminInnerToJSONTyped(json, false);
41
- }
42
-
43
- export function ApiPwaTournamentPostRequestAdminInnerToJSONTyped(value?: ApiPwaTournamentPostRequestAdminInner | null, ignoreDiscriminator: boolean = false): any {
44
- return value;
45
- }
46
-
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * DRX API
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface ApiPwaTournamentPostRequestAdminInner
20
+ */
21
+ export interface ApiPwaTournamentPostRequestAdminInner {
22
+ }
23
+
24
+ /**
25
+ * Check if a given object implements the ApiPwaTournamentPostRequestAdminInner interface.
26
+ */
27
+ export function instanceOfApiPwaTournamentPostRequestAdminInner(value: object): value is ApiPwaTournamentPostRequestAdminInner {
28
+ return true;
29
+ }
30
+
31
+ export function ApiPwaTournamentPostRequestAdminInnerFromJSON(json: any): ApiPwaTournamentPostRequestAdminInner {
32
+ return ApiPwaTournamentPostRequestAdminInnerFromJSONTyped(json, false);
33
+ }
34
+
35
+ export function ApiPwaTournamentPostRequestAdminInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiPwaTournamentPostRequestAdminInner {
36
+ return json;
37
+ }
38
+
39
+ export function ApiPwaTournamentPostRequestAdminInnerToJSON(json: any): ApiPwaTournamentPostRequestAdminInner {
40
+ return ApiPwaTournamentPostRequestAdminInnerToJSONTyped(json, false);
41
+ }
42
+
43
+ export function ApiPwaTournamentPostRequestAdminInnerToJSONTyped(value?: ApiPwaTournamentPostRequestAdminInner | null, ignoreDiscriminator: boolean = false): any {
44
+ return value;
45
+ }
46
+
package/models/index.ts CHANGED
@@ -33,6 +33,8 @@ export * from './ApiAuthLoginPost200Response';
33
33
  export * from './ApiAuthLoginPost200ResponseResponseObject';
34
34
  export * from './ApiAuthLoginPost200ResponseResponseObjectUser';
35
35
  export * from './ApiAuthLoginPostRequest';
36
+ export * from './ApiAuthOneTimeLoginCodePost200Response';
37
+ export * from './ApiAuthOneTimeLoginCodePost200ResponseResponseObject';
36
38
  export * from './ApiAuthRefreshPost200Response';
37
39
  export * from './ApiAuthRefreshPost200ResponseResponseObject';
38
40
  export * from './ApiAuthRegisterCompletePost200Response';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {