@drxsuperapp/sdk 1.1.356 → 1.1.357
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/.openapi-generator/FILES +3 -1
- package/apis/{UploadApi.ts → FileApi.ts} +53 -1
- package/apis/index.ts +1 -1
- package/deploy.log +17 -12
- package/dist/apis/{UploadApi.d.ts → FileApi.d.ts} +13 -2
- package/dist/apis/{UploadApi.js → FileApi.js} +36 -2
- package/dist/apis/index.d.ts +1 -1
- package/dist/apis/index.js +1 -1
- package/dist/models/ApiUploadFilenameDelete200Response.d.ts +51 -0
- package/dist/models/ApiUploadFilenameDelete200Response.js +54 -0
- package/dist/models/ApiUploadFilenameDelete200ResponseResponseObject.d.ts +38 -0
- package/dist/models/ApiUploadFilenameDelete200ResponseResponseObject.js +47 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/models/ApiUploadFilenameDelete200Response.ts +100 -0
- package/models/ApiUploadFilenameDelete200ResponseResponseObject.ts +75 -0
- package/models/index.ts +2 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
apis/AppConfigurationApi.ts
|
|
2
2
|
apis/AuthenticationApi.ts
|
|
3
3
|
apis/EsportsManagementApi.ts
|
|
4
|
+
apis/FileApi.ts
|
|
4
5
|
apis/GarudakuIntegrationApi.ts
|
|
5
6
|
apis/HealthCheckApi.ts
|
|
6
7
|
apis/MMASportsApi.ts
|
|
@@ -12,7 +13,6 @@ apis/RedemptionApi.ts
|
|
|
12
13
|
apis/RewardManagementApi.ts
|
|
13
14
|
apis/TennisSportsApi.ts
|
|
14
15
|
apis/TournamentManagementApi.ts
|
|
15
|
-
apis/UploadApi.ts
|
|
16
16
|
apis/UserAffiliateApi.ts
|
|
17
17
|
apis/UserManagementApi.ts
|
|
18
18
|
apis/UserNotificationsApi.ts
|
|
@@ -218,6 +218,8 @@ models/ApiTournamentPadelPostRequestBody.ts
|
|
|
218
218
|
models/ApiTournamentPadelPostRequestBodyPlayersInner.ts
|
|
219
219
|
models/ApiTournamentPadelPostRequestBodyTeamsInner.ts
|
|
220
220
|
models/ApiTournamentSeedGameTypesGet200Response.ts
|
|
221
|
+
models/ApiUploadFilenameDelete200Response.ts
|
|
222
|
+
models/ApiUploadFilenameDelete200ResponseResponseObject.ts
|
|
221
223
|
models/ApiUploadPost200Response.ts
|
|
222
224
|
models/ApiUploadPost200ResponseResponseObject.ts
|
|
223
225
|
models/ApiUserAffiliateGet200Response.ts
|
|
@@ -15,13 +15,20 @@
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
17
|
import type {
|
|
18
|
+
ApiUploadFilenameDelete200Response,
|
|
18
19
|
ApiUploadPost200Response,
|
|
19
20
|
} from '../models/index';
|
|
20
21
|
import {
|
|
22
|
+
ApiUploadFilenameDelete200ResponseFromJSON,
|
|
23
|
+
ApiUploadFilenameDelete200ResponseToJSON,
|
|
21
24
|
ApiUploadPost200ResponseFromJSON,
|
|
22
25
|
ApiUploadPost200ResponseToJSON,
|
|
23
26
|
} from '../models/index';
|
|
24
27
|
|
|
28
|
+
export interface ApiUploadFilenameDeleteRequest {
|
|
29
|
+
filename: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
25
32
|
export interface ApiUploadPostRequest {
|
|
26
33
|
file: Blob;
|
|
27
34
|
}
|
|
@@ -29,7 +36,52 @@ export interface ApiUploadPostRequest {
|
|
|
29
36
|
/**
|
|
30
37
|
*
|
|
31
38
|
*/
|
|
32
|
-
export class
|
|
39
|
+
export class FileApi extends runtime.BaseAPI {
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Delete File
|
|
43
|
+
*/
|
|
44
|
+
async apiUploadFilenameDeleteRaw(requestParameters: ApiUploadFilenameDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiUploadFilenameDelete200Response>> {
|
|
45
|
+
if (requestParameters['filename'] == null) {
|
|
46
|
+
throw new runtime.RequiredError(
|
|
47
|
+
'filename',
|
|
48
|
+
'Required parameter "filename" was null or undefined when calling apiUploadFilenameDelete().'
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
const queryParameters: any = {};
|
|
53
|
+
|
|
54
|
+
const headerParameters: runtime.HTTPHeaders = {};
|
|
55
|
+
|
|
56
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
57
|
+
headerParameters["x-api-key"] = await this.configuration.apiKey("x-api-key"); // ApiKeyAuth authentication
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
61
|
+
const token = this.configuration.accessToken;
|
|
62
|
+
const tokenString = await token("BearerAuth", []);
|
|
63
|
+
|
|
64
|
+
if (tokenString) {
|
|
65
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
const response = await this.request({
|
|
69
|
+
path: `/api/upload/{filename}`.replace(`{${"filename"}}`, encodeURIComponent(String(requestParameters['filename']))),
|
|
70
|
+
method: 'DELETE',
|
|
71
|
+
headers: headerParameters,
|
|
72
|
+
query: queryParameters,
|
|
73
|
+
}, initOverrides);
|
|
74
|
+
|
|
75
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => ApiUploadFilenameDelete200ResponseFromJSON(jsonValue));
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Delete File
|
|
80
|
+
*/
|
|
81
|
+
async apiUploadFilenameDelete(requestParameters: ApiUploadFilenameDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiUploadFilenameDelete200Response> {
|
|
82
|
+
const response = await this.apiUploadFilenameDeleteRaw(requestParameters, initOverrides);
|
|
83
|
+
return await response.value();
|
|
84
|
+
}
|
|
33
85
|
|
|
34
86
|
/**
|
|
35
87
|
* Upload File
|
package/apis/index.ts
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
export * from './AppConfigurationApi';
|
|
4
4
|
export * from './AuthenticationApi';
|
|
5
5
|
export * from './EsportsManagementApi';
|
|
6
|
+
export * from './FileApi';
|
|
6
7
|
export * from './GarudakuIntegrationApi';
|
|
7
8
|
export * from './HealthCheckApi';
|
|
8
9
|
export * from './MMASportsApi';
|
|
@@ -14,7 +15,6 @@ export * from './RedemptionApi';
|
|
|
14
15
|
export * from './RewardManagementApi';
|
|
15
16
|
export * from './TennisSportsApi';
|
|
16
17
|
export * from './TournamentManagementApi';
|
|
17
|
-
export * from './UploadApi';
|
|
18
18
|
export * from './UserAffiliateApi';
|
|
19
19
|
export * from './UserManagementApi';
|
|
20
20
|
export * from './UserNotificationsApi';
|
package/deploy.log
CHANGED
|
@@ -280,6 +280,8 @@
|
|
|
280
280
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_upload_post_request. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_upload_post_request=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_upload_post_request=NewModel,ModelA=NewModelA in CLI).
|
|
281
281
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_upload_post_200_response_responseObject. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_upload_post_200_response_responseObject=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_upload_post_200_response_responseObject=NewModel,ModelA=NewModelA in CLI).
|
|
282
282
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_upload_post_200_response. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_upload_post_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_upload_post_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
283
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_upload__filename__delete_200_response_responseObject. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_upload__filename__delete_200_response_responseObject=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_upload__filename__delete_200_response_responseObject=NewModel,ModelA=NewModelA in CLI).
|
|
284
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_upload__filename__delete_200_response. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_upload__filename__delete_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_upload__filename__delete_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
283
285
|
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
284
286
|
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
285
287
|
[main] INFO o.o.codegen.DefaultGenerator - Model _api_upload_post_request not generated since it's marked as unused (due to form parameters) and `skipFormModel` (global property) set to true (default)
|
|
@@ -480,6 +482,8 @@
|
|
|
480
482
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiTournamentPadelPostRequestBodyPlayersInner.ts
|
|
481
483
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiTournamentPadelPostRequestBodyTeamsInner.ts
|
|
482
484
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiTournamentSeedGameTypesGet200Response.ts
|
|
485
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiUploadFilenameDelete200Response.ts
|
|
486
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiUploadFilenameDelete200ResponseResponseObject.ts
|
|
483
487
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiUploadPost200Response.ts
|
|
484
488
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiUploadPost200ResponseResponseObject.ts
|
|
485
489
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiUserAffiliateGet200Response.ts
|
|
@@ -666,6 +670,7 @@
|
|
|
666
670
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: get /api/public/web3/reward/{id}. Renamed to auto-generated operationId: apiPublicWeb3RewardIdGet
|
|
667
671
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: get /api/public/web3/reward. Renamed to auto-generated operationId: apiPublicWeb3RewardGet
|
|
668
672
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: post /api/upload. Renamed to auto-generated operationId: apiUploadPost
|
|
673
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: delete /api/upload/{filename}. Renamed to auto-generated operationId: apiUploadFilenameDelete
|
|
669
674
|
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
670
675
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/AppConfigurationApi.ts
|
|
671
676
|
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
@@ -673,6 +678,8 @@
|
|
|
673
678
|
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
674
679
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/EsportsManagementApi.ts
|
|
675
680
|
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
681
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/FileApi.ts
|
|
682
|
+
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
676
683
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/GarudakuIntegrationApi.ts
|
|
677
684
|
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
678
685
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/HealthCheckApi.ts
|
|
@@ -695,8 +702,6 @@
|
|
|
695
702
|
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
696
703
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/TournamentManagementApi.ts
|
|
697
704
|
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
698
|
-
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/UploadApi.ts
|
|
699
|
-
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
700
705
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/UserAffiliateApi.ts
|
|
701
706
|
[main] INFO o.o.codegen.utils.URLPathUtils - 'host' (OAS 2.0) or 'servers' (OAS 3.0) not defined in the spec. Default to [http://localhost] for server URL [http://localhost/]
|
|
702
707
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/UserManagementApi.ts
|
|
@@ -722,23 +727,23 @@
|
|
|
722
727
|
# https://opencollective.com/openapi_generator/donate #
|
|
723
728
|
################################################################################
|
|
724
729
|
✅ SDK generated
|
|
725
|
-
[master
|
|
726
|
-
6 files changed,
|
|
727
|
-
|
|
728
|
-
create mode 100644 models/
|
|
729
|
-
create mode 100644 models/
|
|
730
|
+
[master 79234dc] VPS: Generated API SDK
|
|
731
|
+
6 files changed, 234 insertions(+), 3 deletions(-)
|
|
732
|
+
rename apis/{UploadApi.ts => FileApi.ts} (59%)
|
|
733
|
+
create mode 100644 models/ApiUploadFilenameDelete200Response.ts
|
|
734
|
+
create mode 100644 models/ApiUploadFilenameDelete200ResponseResponseObject.ts
|
|
730
735
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
731
|
-
|
|
736
|
+
54ac6a4..79234dc master -> master
|
|
732
737
|
✅ Changes committed and pushed
|
|
733
|
-
v1.1.
|
|
738
|
+
v1.1.357
|
|
734
739
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
735
|
-
|
|
740
|
+
79234dc..be1296e master -> master
|
|
736
741
|
✅ Version bumped
|
|
737
742
|
|
|
738
|
-
> @drxsuperapp/sdk@1.1.
|
|
743
|
+
> @drxsuperapp/sdk@1.1.357 prepublishOnly
|
|
739
744
|
> npm run build
|
|
740
745
|
|
|
741
746
|
|
|
742
|
-
> @drxsuperapp/sdk@1.1.
|
|
747
|
+
> @drxsuperapp/sdk@1.1.357 build
|
|
743
748
|
> tsc
|
|
744
749
|
|
|
@@ -10,14 +10,25 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { ApiUploadPost200Response } from '../models/index';
|
|
13
|
+
import type { ApiUploadFilenameDelete200Response, ApiUploadPost200Response } from '../models/index';
|
|
14
|
+
export interface ApiUploadFilenameDeleteRequest {
|
|
15
|
+
filename: string;
|
|
16
|
+
}
|
|
14
17
|
export interface ApiUploadPostRequest {
|
|
15
18
|
file: Blob;
|
|
16
19
|
}
|
|
17
20
|
/**
|
|
18
21
|
*
|
|
19
22
|
*/
|
|
20
|
-
export declare class
|
|
23
|
+
export declare class FileApi extends runtime.BaseAPI {
|
|
24
|
+
/**
|
|
25
|
+
* Delete File
|
|
26
|
+
*/
|
|
27
|
+
apiUploadFilenameDeleteRaw(requestParameters: ApiUploadFilenameDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiUploadFilenameDelete200Response>>;
|
|
28
|
+
/**
|
|
29
|
+
* Delete File
|
|
30
|
+
*/
|
|
31
|
+
apiUploadFilenameDelete(requestParameters: ApiUploadFilenameDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiUploadFilenameDelete200Response>;
|
|
21
32
|
/**
|
|
22
33
|
* Upload File
|
|
23
34
|
*/
|
|
@@ -12,11 +12,45 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import * as runtime from '../runtime';
|
|
15
|
-
import { ApiUploadPost200ResponseFromJSON, } from '../models/index';
|
|
15
|
+
import { ApiUploadFilenameDelete200ResponseFromJSON, ApiUploadPost200ResponseFromJSON, } from '../models/index';
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
18
18
|
*/
|
|
19
|
-
export class
|
|
19
|
+
export class FileApi extends runtime.BaseAPI {
|
|
20
|
+
/**
|
|
21
|
+
* Delete File
|
|
22
|
+
*/
|
|
23
|
+
async apiUploadFilenameDeleteRaw(requestParameters, initOverrides) {
|
|
24
|
+
if (requestParameters['filename'] == null) {
|
|
25
|
+
throw new runtime.RequiredError('filename', 'Required parameter "filename" was null or undefined when calling apiUploadFilenameDelete().');
|
|
26
|
+
}
|
|
27
|
+
const queryParameters = {};
|
|
28
|
+
const headerParameters = {};
|
|
29
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
30
|
+
headerParameters["x-api-key"] = await this.configuration.apiKey("x-api-key"); // ApiKeyAuth authentication
|
|
31
|
+
}
|
|
32
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
33
|
+
const token = this.configuration.accessToken;
|
|
34
|
+
const tokenString = await token("BearerAuth", []);
|
|
35
|
+
if (tokenString) {
|
|
36
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
const response = await this.request({
|
|
40
|
+
path: `/api/upload/{filename}`.replace(`{${"filename"}}`, encodeURIComponent(String(requestParameters['filename']))),
|
|
41
|
+
method: 'DELETE',
|
|
42
|
+
headers: headerParameters,
|
|
43
|
+
query: queryParameters,
|
|
44
|
+
}, initOverrides);
|
|
45
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => ApiUploadFilenameDelete200ResponseFromJSON(jsonValue));
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Delete File
|
|
49
|
+
*/
|
|
50
|
+
async apiUploadFilenameDelete(requestParameters, initOverrides) {
|
|
51
|
+
const response = await this.apiUploadFilenameDeleteRaw(requestParameters, initOverrides);
|
|
52
|
+
return await response.value();
|
|
53
|
+
}
|
|
20
54
|
/**
|
|
21
55
|
* Upload File
|
|
22
56
|
*/
|
package/dist/apis/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './AppConfigurationApi';
|
|
2
2
|
export * from './AuthenticationApi';
|
|
3
3
|
export * from './EsportsManagementApi';
|
|
4
|
+
export * from './FileApi';
|
|
4
5
|
export * from './GarudakuIntegrationApi';
|
|
5
6
|
export * from './HealthCheckApi';
|
|
6
7
|
export * from './MMASportsApi';
|
|
@@ -12,7 +13,6 @@ export * from './RedemptionApi';
|
|
|
12
13
|
export * from './RewardManagementApi';
|
|
13
14
|
export * from './TennisSportsApi';
|
|
14
15
|
export * from './TournamentManagementApi';
|
|
15
|
-
export * from './UploadApi';
|
|
16
16
|
export * from './UserAffiliateApi';
|
|
17
17
|
export * from './UserManagementApi';
|
|
18
18
|
export * from './UserNotificationsApi';
|
package/dist/apis/index.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
export * from './AppConfigurationApi';
|
|
4
4
|
export * from './AuthenticationApi';
|
|
5
5
|
export * from './EsportsManagementApi';
|
|
6
|
+
export * from './FileApi';
|
|
6
7
|
export * from './GarudakuIntegrationApi';
|
|
7
8
|
export * from './HealthCheckApi';
|
|
8
9
|
export * from './MMASportsApi';
|
|
@@ -14,7 +15,6 @@ export * from './RedemptionApi';
|
|
|
14
15
|
export * from './RewardManagementApi';
|
|
15
16
|
export * from './TennisSportsApi';
|
|
16
17
|
export * from './TournamentManagementApi';
|
|
17
|
-
export * from './UploadApi';
|
|
18
18
|
export * from './UserAffiliateApi';
|
|
19
19
|
export * from './UserManagementApi';
|
|
20
20
|
export * from './UserNotificationsApi';
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ApiUploadFilenameDelete200ResponseResponseObject } from './ApiUploadFilenameDelete200ResponseResponseObject';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ApiUploadFilenameDelete200Response
|
|
17
|
+
*/
|
|
18
|
+
export interface ApiUploadFilenameDelete200Response {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {boolean}
|
|
22
|
+
* @memberof ApiUploadFilenameDelete200Response
|
|
23
|
+
*/
|
|
24
|
+
success: boolean;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ApiUploadFilenameDelete200Response
|
|
29
|
+
*/
|
|
30
|
+
message: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {ApiUploadFilenameDelete200ResponseResponseObject}
|
|
34
|
+
* @memberof ApiUploadFilenameDelete200Response
|
|
35
|
+
*/
|
|
36
|
+
responseObject?: ApiUploadFilenameDelete200ResponseResponseObject;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ApiUploadFilenameDelete200Response
|
|
41
|
+
*/
|
|
42
|
+
statusCode: number;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Check if a given object implements the ApiUploadFilenameDelete200Response interface.
|
|
46
|
+
*/
|
|
47
|
+
export declare function instanceOfApiUploadFilenameDelete200Response(value: object): value is ApiUploadFilenameDelete200Response;
|
|
48
|
+
export declare function ApiUploadFilenameDelete200ResponseFromJSON(json: any): ApiUploadFilenameDelete200Response;
|
|
49
|
+
export declare function ApiUploadFilenameDelete200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiUploadFilenameDelete200Response;
|
|
50
|
+
export declare function ApiUploadFilenameDelete200ResponseToJSON(json: any): ApiUploadFilenameDelete200Response;
|
|
51
|
+
export declare function ApiUploadFilenameDelete200ResponseToJSONTyped(value?: ApiUploadFilenameDelete200Response | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
+
import { ApiUploadFilenameDelete200ResponseResponseObjectFromJSON, ApiUploadFilenameDelete200ResponseResponseObjectToJSON, } from './ApiUploadFilenameDelete200ResponseResponseObject';
|
|
15
|
+
/**
|
|
16
|
+
* Check if a given object implements the ApiUploadFilenameDelete200Response interface.
|
|
17
|
+
*/
|
|
18
|
+
export function instanceOfApiUploadFilenameDelete200Response(value) {
|
|
19
|
+
if (!('success' in value) || value['success'] === undefined)
|
|
20
|
+
return false;
|
|
21
|
+
if (!('message' in value) || value['message'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('statusCode' in value) || value['statusCode'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
export function ApiUploadFilenameDelete200ResponseFromJSON(json) {
|
|
28
|
+
return ApiUploadFilenameDelete200ResponseFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
export function ApiUploadFilenameDelete200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'success': json['success'],
|
|
36
|
+
'message': json['message'],
|
|
37
|
+
'responseObject': json['responseObject'] == null ? undefined : ApiUploadFilenameDelete200ResponseResponseObjectFromJSON(json['responseObject']),
|
|
38
|
+
'statusCode': json['statusCode'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
export function ApiUploadFilenameDelete200ResponseToJSON(json) {
|
|
42
|
+
return ApiUploadFilenameDelete200ResponseToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
export function ApiUploadFilenameDelete200ResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'success': value['success'],
|
|
50
|
+
'message': value['message'],
|
|
51
|
+
'responseObject': ApiUploadFilenameDelete200ResponseResponseObjectToJSON(value['responseObject']),
|
|
52
|
+
'statusCode': value['statusCode'],
|
|
53
|
+
};
|
|
54
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ApiUploadFilenameDelete200ResponseResponseObject
|
|
16
|
+
*/
|
|
17
|
+
export interface ApiUploadFilenameDelete200ResponseResponseObject {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ApiUploadFilenameDelete200ResponseResponseObject
|
|
22
|
+
*/
|
|
23
|
+
message: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ApiUploadFilenameDelete200ResponseResponseObject
|
|
28
|
+
*/
|
|
29
|
+
deleted_key: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the ApiUploadFilenameDelete200ResponseResponseObject interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfApiUploadFilenameDelete200ResponseResponseObject(value: object): value is ApiUploadFilenameDelete200ResponseResponseObject;
|
|
35
|
+
export declare function ApiUploadFilenameDelete200ResponseResponseObjectFromJSON(json: any): ApiUploadFilenameDelete200ResponseResponseObject;
|
|
36
|
+
export declare function ApiUploadFilenameDelete200ResponseResponseObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiUploadFilenameDelete200ResponseResponseObject;
|
|
37
|
+
export declare function ApiUploadFilenameDelete200ResponseResponseObjectToJSON(json: any): ApiUploadFilenameDelete200ResponseResponseObject;
|
|
38
|
+
export declare function ApiUploadFilenameDelete200ResponseResponseObjectToJSONTyped(value?: ApiUploadFilenameDelete200ResponseResponseObject | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,47 @@
|
|
|
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
|
+
* Check if a given object implements the ApiUploadFilenameDelete200ResponseResponseObject interface.
|
|
16
|
+
*/
|
|
17
|
+
export function instanceOfApiUploadFilenameDelete200ResponseResponseObject(value) {
|
|
18
|
+
if (!('message' in value) || value['message'] === undefined)
|
|
19
|
+
return false;
|
|
20
|
+
if (!('deleted_key' in value) || value['deleted_key'] === undefined)
|
|
21
|
+
return false;
|
|
22
|
+
return true;
|
|
23
|
+
}
|
|
24
|
+
export function ApiUploadFilenameDelete200ResponseResponseObjectFromJSON(json) {
|
|
25
|
+
return ApiUploadFilenameDelete200ResponseResponseObjectFromJSONTyped(json, false);
|
|
26
|
+
}
|
|
27
|
+
export function ApiUploadFilenameDelete200ResponseResponseObjectFromJSONTyped(json, ignoreDiscriminator) {
|
|
28
|
+
if (json == null) {
|
|
29
|
+
return json;
|
|
30
|
+
}
|
|
31
|
+
return {
|
|
32
|
+
'message': json['message'],
|
|
33
|
+
'deleted_key': json['deleted_key'],
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
export function ApiUploadFilenameDelete200ResponseResponseObjectToJSON(json) {
|
|
37
|
+
return ApiUploadFilenameDelete200ResponseResponseObjectToJSONTyped(json, false);
|
|
38
|
+
}
|
|
39
|
+
export function ApiUploadFilenameDelete200ResponseResponseObjectToJSONTyped(value, ignoreDiscriminator = false) {
|
|
40
|
+
if (value == null) {
|
|
41
|
+
return value;
|
|
42
|
+
}
|
|
43
|
+
return {
|
|
44
|
+
'message': value['message'],
|
|
45
|
+
'deleted_key': value['deleted_key'],
|
|
46
|
+
};
|
|
47
|
+
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -195,6 +195,8 @@ export * from './ApiTournamentPadelPostRequestBody';
|
|
|
195
195
|
export * from './ApiTournamentPadelPostRequestBodyPlayersInner';
|
|
196
196
|
export * from './ApiTournamentPadelPostRequestBodyTeamsInner';
|
|
197
197
|
export * from './ApiTournamentSeedGameTypesGet200Response';
|
|
198
|
+
export * from './ApiUploadFilenameDelete200Response';
|
|
199
|
+
export * from './ApiUploadFilenameDelete200ResponseResponseObject';
|
|
198
200
|
export * from './ApiUploadPost200Response';
|
|
199
201
|
export * from './ApiUploadPost200ResponseResponseObject';
|
|
200
202
|
export * from './ApiUserAffiliateGet200Response';
|
package/dist/models/index.js
CHANGED
|
@@ -197,6 +197,8 @@ export * from './ApiTournamentPadelPostRequestBody';
|
|
|
197
197
|
export * from './ApiTournamentPadelPostRequestBodyPlayersInner';
|
|
198
198
|
export * from './ApiTournamentPadelPostRequestBodyTeamsInner';
|
|
199
199
|
export * from './ApiTournamentSeedGameTypesGet200Response';
|
|
200
|
+
export * from './ApiUploadFilenameDelete200Response';
|
|
201
|
+
export * from './ApiUploadFilenameDelete200ResponseResponseObject';
|
|
200
202
|
export * from './ApiUploadPost200Response';
|
|
201
203
|
export * from './ApiUploadPost200ResponseResponseObject';
|
|
202
204
|
export * from './ApiUserAffiliateGet200Response';
|
|
@@ -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 { ApiUploadFilenameDelete200ResponseResponseObject } from './ApiUploadFilenameDelete200ResponseResponseObject';
|
|
17
|
+
import {
|
|
18
|
+
ApiUploadFilenameDelete200ResponseResponseObjectFromJSON,
|
|
19
|
+
ApiUploadFilenameDelete200ResponseResponseObjectFromJSONTyped,
|
|
20
|
+
ApiUploadFilenameDelete200ResponseResponseObjectToJSON,
|
|
21
|
+
ApiUploadFilenameDelete200ResponseResponseObjectToJSONTyped,
|
|
22
|
+
} from './ApiUploadFilenameDelete200ResponseResponseObject';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface ApiUploadFilenameDelete200Response
|
|
28
|
+
*/
|
|
29
|
+
export interface ApiUploadFilenameDelete200Response {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof ApiUploadFilenameDelete200Response
|
|
34
|
+
*/
|
|
35
|
+
success: boolean;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ApiUploadFilenameDelete200Response
|
|
40
|
+
*/
|
|
41
|
+
message: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {ApiUploadFilenameDelete200ResponseResponseObject}
|
|
45
|
+
* @memberof ApiUploadFilenameDelete200Response
|
|
46
|
+
*/
|
|
47
|
+
responseObject?: ApiUploadFilenameDelete200ResponseResponseObject;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof ApiUploadFilenameDelete200Response
|
|
52
|
+
*/
|
|
53
|
+
statusCode: number;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Check if a given object implements the ApiUploadFilenameDelete200Response interface.
|
|
58
|
+
*/
|
|
59
|
+
export function instanceOfApiUploadFilenameDelete200Response(value: object): value is ApiUploadFilenameDelete200Response {
|
|
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 ApiUploadFilenameDelete200ResponseFromJSON(json: any): ApiUploadFilenameDelete200Response {
|
|
67
|
+
return ApiUploadFilenameDelete200ResponseFromJSONTyped(json, false);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export function ApiUploadFilenameDelete200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiUploadFilenameDelete200Response {
|
|
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 : ApiUploadFilenameDelete200ResponseResponseObjectFromJSON(json['responseObject']),
|
|
79
|
+
'statusCode': json['statusCode'],
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export function ApiUploadFilenameDelete200ResponseToJSON(json: any): ApiUploadFilenameDelete200Response {
|
|
84
|
+
return ApiUploadFilenameDelete200ResponseToJSONTyped(json, false);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export function ApiUploadFilenameDelete200ResponseToJSONTyped(value?: ApiUploadFilenameDelete200Response | 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': ApiUploadFilenameDelete200ResponseResponseObjectToJSON(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 ApiUploadFilenameDelete200ResponseResponseObject
|
|
20
|
+
*/
|
|
21
|
+
export interface ApiUploadFilenameDelete200ResponseResponseObject {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof ApiUploadFilenameDelete200ResponseResponseObject
|
|
26
|
+
*/
|
|
27
|
+
message: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof ApiUploadFilenameDelete200ResponseResponseObject
|
|
32
|
+
*/
|
|
33
|
+
deleted_key: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the ApiUploadFilenameDelete200ResponseResponseObject interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfApiUploadFilenameDelete200ResponseResponseObject(value: object): value is ApiUploadFilenameDelete200ResponseResponseObject {
|
|
40
|
+
if (!('message' in value) || value['message'] === undefined) return false;
|
|
41
|
+
if (!('deleted_key' in value) || value['deleted_key'] === undefined) return false;
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function ApiUploadFilenameDelete200ResponseResponseObjectFromJSON(json: any): ApiUploadFilenameDelete200ResponseResponseObject {
|
|
46
|
+
return ApiUploadFilenameDelete200ResponseResponseObjectFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function ApiUploadFilenameDelete200ResponseResponseObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiUploadFilenameDelete200ResponseResponseObject {
|
|
50
|
+
if (json == null) {
|
|
51
|
+
return json;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
|
|
55
|
+
'message': json['message'],
|
|
56
|
+
'deleted_key': json['deleted_key'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function ApiUploadFilenameDelete200ResponseResponseObjectToJSON(json: any): ApiUploadFilenameDelete200ResponseResponseObject {
|
|
61
|
+
return ApiUploadFilenameDelete200ResponseResponseObjectToJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function ApiUploadFilenameDelete200ResponseResponseObjectToJSONTyped(value?: ApiUploadFilenameDelete200ResponseResponseObject | null, ignoreDiscriminator: boolean = false): any {
|
|
65
|
+
if (value == null) {
|
|
66
|
+
return value;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return {
|
|
70
|
+
|
|
71
|
+
'message': value['message'],
|
|
72
|
+
'deleted_key': value['deleted_key'],
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
package/models/index.ts
CHANGED
|
@@ -197,6 +197,8 @@ export * from './ApiTournamentPadelPostRequestBody';
|
|
|
197
197
|
export * from './ApiTournamentPadelPostRequestBodyPlayersInner';
|
|
198
198
|
export * from './ApiTournamentPadelPostRequestBodyTeamsInner';
|
|
199
199
|
export * from './ApiTournamentSeedGameTypesGet200Response';
|
|
200
|
+
export * from './ApiUploadFilenameDelete200Response';
|
|
201
|
+
export * from './ApiUploadFilenameDelete200ResponseResponseObject';
|
|
200
202
|
export * from './ApiUploadPost200Response';
|
|
201
203
|
export * from './ApiUploadPost200ResponseResponseObject';
|
|
202
204
|
export * from './ApiUserAffiliateGet200Response';
|