@drxsuperapp/sdk 1.1.249 → 1.1.251
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 +27 -0
- package/apis/GarudakuApi.ts +792 -0
- package/apis/index.ts +1 -0
- package/deploy.log +93 -9
- package/dist/apis/GarudakuApi.d.ts +193 -0
- package/dist/apis/GarudakuApi.js +543 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/models/ApiGarudakuGameTopupsGet200Response.d.ts +51 -0
- package/dist/models/ApiGarudakuGameTopupsGet200Response.js +54 -0
- package/dist/models/ApiGarudakuGameTopupsGet200ResponseResponseObject.d.ts +57 -0
- package/dist/models/ApiGarudakuGameTopupsGet200ResponseResponseObject.js +60 -0
- package/dist/models/ApiGarudakuGameTopupsGet200ResponseResponseObjectItemsInner.d.ts +74 -0
- package/dist/models/ApiGarudakuGameTopupsGet200ResponseResponseObjectItemsInner.js +67 -0
- package/dist/models/ApiGarudakuGameTopupsGetFilterParameter.d.ts +60 -0
- package/dist/models/ApiGarudakuGameTopupsGetFilterParameter.js +53 -0
- package/dist/models/ApiGarudakuGameTopupsGetFilterParameterIsPopular.d.ts +32 -0
- package/dist/models/ApiGarudakuGameTopupsGetFilterParameterIsPopular.js +41 -0
- package/dist/models/ApiGarudakuGameTopupsIdDelete200Response.d.ts +44 -0
- package/dist/models/ApiGarudakuGameTopupsIdDelete200Response.js +45 -0
- package/dist/models/ApiGarudakuGameTopupsPost200Response.d.ts +51 -0
- package/dist/models/ApiGarudakuGameTopupsPost200Response.js +54 -0
- package/dist/models/ApiGarudakuTournamentsGet200Response.d.ts +51 -0
- package/dist/models/ApiGarudakuTournamentsGet200Response.js +54 -0
- package/dist/models/ApiGarudakuTournamentsGet200ResponseResponseObject.d.ts +57 -0
- package/dist/models/ApiGarudakuTournamentsGet200ResponseResponseObject.js +60 -0
- package/dist/models/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.d.ts +76 -0
- package/dist/models/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.js +74 -0
- package/dist/models/ApiGarudakuTournamentsGetFilterParameter.d.ts +65 -0
- package/dist/models/ApiGarudakuTournamentsGetFilterParameter.js +54 -0
- package/dist/models/ApiGarudakuTournamentsIdDelete200Response.d.ts +44 -0
- package/dist/models/ApiGarudakuTournamentsIdDelete200Response.js +45 -0
- package/dist/models/ApiGarudakuTournamentsPost200Response.d.ts +51 -0
- package/dist/models/ApiGarudakuTournamentsPost200Response.js +54 -0
- package/dist/models/ApiGarudakuTournamentsRefreshCachePost200Response.d.ts +38 -0
- package/dist/models/ApiGarudakuTournamentsRefreshCachePost200Response.js +43 -0
- package/dist/models/CreateGameTopupRequest.d.ts +56 -0
- package/dist/models/CreateGameTopupRequest.js +55 -0
- package/dist/models/CreateTournamentRequest.d.ts +58 -0
- package/dist/models/CreateTournamentRequest.js +62 -0
- package/dist/models/GameTopup.d.ts +74 -0
- package/dist/models/GameTopup.js +67 -0
- package/dist/models/GameTopupList.d.ts +57 -0
- package/dist/models/GameTopupList.js +60 -0
- package/dist/models/QueryGameTopupList.d.ts +33 -0
- package/dist/models/QueryGameTopupList.js +44 -0
- package/dist/models/QueryGameTopupListQuery.d.ts +52 -0
- package/dist/models/QueryGameTopupListQuery.js +48 -0
- package/dist/models/QueryTournamentList.d.ts +33 -0
- package/dist/models/QueryTournamentList.js +44 -0
- package/dist/models/QueryTournamentListQuery.d.ts +52 -0
- package/dist/models/QueryTournamentListQuery.js +48 -0
- package/dist/models/Tournament.d.ts +76 -0
- package/dist/models/Tournament.js +74 -0
- package/dist/models/TournamentList.d.ts +57 -0
- package/dist/models/TournamentList.js +60 -0
- package/dist/models/UpdateGameTopupRequest.d.ts +56 -0
- package/dist/models/UpdateGameTopupRequest.js +49 -0
- package/dist/models/UpdateTournamentRequest.d.ts +58 -0
- package/dist/models/UpdateTournamentRequest.js +54 -0
- package/dist/models/index.d.ts +26 -0
- package/dist/models/index.js +26 -0
- package/models/ApiGarudakuGameTopupsGet200Response.ts +100 -0
- package/models/ApiGarudakuGameTopupsGet200ResponseResponseObject.ts +110 -0
- package/models/ApiGarudakuGameTopupsGet200ResponseResponseObjectItemsInner.ts +127 -0
- package/models/ApiGarudakuGameTopupsGetFilterParameter.ts +126 -0
- package/models/ApiGarudakuGameTopupsGetFilterParameterIsPopular.ts +65 -0
- package/models/ApiGarudakuGameTopupsIdDelete200Response.ts +81 -0
- package/models/ApiGarudakuGameTopupsPost200Response.ts +100 -0
- package/models/ApiGarudakuTournamentsGet200Response.ts +100 -0
- package/models/ApiGarudakuTournamentsGet200ResponseResponseObject.ts +110 -0
- package/models/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.ts +131 -0
- package/models/ApiGarudakuTournamentsGetFilterParameter.ts +127 -0
- package/models/ApiGarudakuTournamentsIdDelete200Response.ts +81 -0
- package/models/ApiGarudakuTournamentsPost200Response.ts +100 -0
- package/models/ApiGarudakuTournamentsRefreshCachePost200Response.ts +73 -0
- package/models/CreateGameTopupRequest.ts +100 -0
- package/models/CreateTournamentRequest.ts +104 -0
- package/models/GameTopup.ts +127 -0
- package/models/GameTopupList.ts +110 -0
- package/models/QueryGameTopupList.ts +74 -0
- package/models/QueryGameTopupListQuery.ts +98 -0
- package/models/QueryTournamentList.ts +74 -0
- package/models/QueryTournamentListQuery.ts +98 -0
- package/models/Tournament.ts +131 -0
- package/models/TournamentList.ts +110 -0
- package/models/UpdateGameTopupRequest.ts +97 -0
- package/models/UpdateTournamentRequest.ts +100 -0
- package/models/index.ts +26 -0
- package/package.json +1 -1
package/apis/index.ts
CHANGED
package/deploy.log
CHANGED
|
@@ -41,6 +41,20 @@
|
|
|
41
41
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_youtube_private_stream_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_youtube_private_stream_post_200_response_responseObject=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_youtube_private_stream_post_200_response_responseObject=NewModel,ModelA=NewModelA in CLI).
|
|
42
42
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_youtube_private_stream_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_youtube_private_stream_post_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_youtube_private_stream_post_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
43
43
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_youtube_private_stream_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_youtube_private_stream_delete_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_youtube_private_stream_delete_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
44
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_game_topups_get_filter_parameter_isPopular. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_garudaku_game_topups_get_filter_parameter_isPopular=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_game_topups_get_filter_parameter_isPopular=NewModel,ModelA=NewModelA in CLI).
|
|
45
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_game_topups_get_filter_parameter. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_garudaku_game_topups_get_filter_parameter=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_game_topups_get_filter_parameter=NewModel,ModelA=NewModelA in CLI).
|
|
46
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_game_topups_get_200_response_responseObject_items_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_garudaku_game_topups_get_200_response_responseObject_items_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_game_topups_get_200_response_responseObject_items_inner=NewModel,ModelA=NewModelA in CLI).
|
|
47
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_game_topups_get_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_garudaku_game_topups_get_200_response_responseObject=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_game_topups_get_200_response_responseObject=NewModel,ModelA=NewModelA in CLI).
|
|
48
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_game_topups_get_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_garudaku_game_topups_get_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_game_topups_get_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
49
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_game_topups_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_garudaku_game_topups_post_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_game_topups_post_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
50
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_game_topups__id__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_garudaku_game_topups__id__delete_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_game_topups__id__delete_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
51
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_tournaments_get_filter_parameter. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_garudaku_tournaments_get_filter_parameter=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_tournaments_get_filter_parameter=NewModel,ModelA=NewModelA in CLI).
|
|
52
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_tournaments_get_200_response_responseObject_items_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_garudaku_tournaments_get_200_response_responseObject_items_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_tournaments_get_200_response_responseObject_items_inner=NewModel,ModelA=NewModelA in CLI).
|
|
53
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_tournaments_get_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_garudaku_tournaments_get_200_response_responseObject=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_tournaments_get_200_response_responseObject=NewModel,ModelA=NewModelA in CLI).
|
|
54
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_tournaments_get_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_garudaku_tournaments_get_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_tournaments_get_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
55
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_tournaments_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_garudaku_tournaments_post_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_tournaments_post_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
56
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_tournaments__id__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_garudaku_tournaments__id__delete_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_tournaments__id__delete_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
57
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_garudaku_tournaments_refresh_cache_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_garudaku_tournaments_refresh_cache_post_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_garudaku_tournaments_refresh_cache_post_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
44
58
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_tournament_get_filter_parameter. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_tournament_get_filter_parameter=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_tournament_get_filter_parameter=NewModel,ModelA=NewModelA in CLI).
|
|
45
59
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_tournament_get_200_response_responseObject_items_inner_game_type. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_tournament_get_200_response_responseObject_items_inner_game_type=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_tournament_get_200_response_responseObject_items_inner_game_type=NewModel,ModelA=NewModelA in CLI).
|
|
46
60
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_tournament_get_200_response_responseObject_items_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings _api_tournament_get_200_response_responseObject_items_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_tournament_get_200_response_responseObject_items_inner=NewModel,ModelA=NewModelA in CLI).
|
|
@@ -203,6 +217,8 @@
|
|
|
203
217
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_esport_leagues_get_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_esport_leagues_get_200_response_responseObject=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_esport_leagues_get_200_response_responseObject=NewModel,ModelA=NewModelA in CLI).
|
|
204
218
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_esport_leagues_get_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_esport_leagues_get_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_esport_leagues_get_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
205
219
|
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as _api_esport_leagues__id__get_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_esport_leagues__id__get_200_response=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings _api_esport_leagues__id__get_200_response=NewModel,ModelA=NewModelA in CLI).
|
|
220
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as QueryGameTopupList_query. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings QueryGameTopupList_query=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings QueryGameTopupList_query=NewModel,ModelA=NewModelA in CLI).
|
|
221
|
+
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as QueryTournamentList_query. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings QueryTournamentList_query=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings QueryTournamentList_query=NewModel,ModelA=NewModelA in CLI).
|
|
206
222
|
[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/]
|
|
207
223
|
[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/]
|
|
208
224
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiAuthForgotPasswordChangePasswordPost200Response.ts
|
|
@@ -272,6 +288,20 @@
|
|
|
272
288
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiEsportTournamentsIdGet200Response.ts
|
|
273
289
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiEsportVideogamesGet200Response.ts
|
|
274
290
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiEsportVideogamesGet200ResponseResponseObjectInner.ts
|
|
291
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuGameTopupsGet200Response.ts
|
|
292
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuGameTopupsGet200ResponseResponseObject.ts
|
|
293
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuGameTopupsGet200ResponseResponseObjectItemsInner.ts
|
|
294
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuGameTopupsGetFilterParameter.ts
|
|
295
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuGameTopupsGetFilterParameterIsPopular.ts
|
|
296
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuGameTopupsIdDelete200Response.ts
|
|
297
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuGameTopupsPost200Response.ts
|
|
298
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuTournamentsGet200Response.ts
|
|
299
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuTournamentsGet200ResponseResponseObject.ts
|
|
300
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.ts
|
|
301
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuTournamentsGetFilterParameter.ts
|
|
302
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuTournamentsIdDelete200Response.ts
|
|
303
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuTournamentsPost200Response.ts
|
|
304
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiGarudakuTournamentsRefreshCachePost200Response.ts
|
|
275
305
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiHealthCheckGet200Response.ts
|
|
276
306
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiNewsCategoriesListGet200Response.ts
|
|
277
307
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiNewsCategoriesListGet200ResponseResponseObject.ts
|
|
@@ -404,8 +434,20 @@
|
|
|
404
434
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiYoutubePrivateStreamPost200Response.ts
|
|
405
435
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiYoutubePrivateStreamPost200ResponseResponseObject.ts
|
|
406
436
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/ApiYoutubePrivateStreamPost200ResponseResponseObjectPrivateStream.ts
|
|
437
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/CreateGameTopupRequest.ts
|
|
438
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/CreateTournamentRequest.ts
|
|
439
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/GameTopup.ts
|
|
440
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/GameTopupList.ts
|
|
407
441
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/PrivateStreamRequest.ts
|
|
408
442
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/PrivateStreamResponse.ts
|
|
443
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/QueryGameTopupList.ts
|
|
444
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/QueryGameTopupListQuery.ts
|
|
445
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/QueryTournamentList.ts
|
|
446
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/QueryTournamentListQuery.ts
|
|
447
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/Tournament.ts
|
|
448
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/TournamentList.ts
|
|
449
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/UpdateGameTopupRequest.ts
|
|
450
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./models/UpdateTournamentRequest.ts
|
|
409
451
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: get /api/healthCheck. Renamed to auto-generated operationId: apiHealthCheckGet
|
|
410
452
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: get /api/news. Renamed to auto-generated operationId: apiNewsGet
|
|
411
453
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: get /api/news/{id}. Renamed to auto-generated operationId: apiNewsIdGet
|
|
@@ -418,6 +460,20 @@
|
|
|
418
460
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: post /api/youtube/private-stream. Renamed to auto-generated operationId: apiYoutubePrivateStreamPost
|
|
419
461
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: delete /api/youtube/private-stream. Renamed to auto-generated operationId: apiYoutubePrivateStreamDelete
|
|
420
462
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: post /api/youtube/refresh. Renamed to auto-generated operationId: apiYoutubeRefreshPost
|
|
463
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: get /api/garudaku/content. Renamed to auto-generated operationId: apiGarudakuContentGet
|
|
464
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: post /api/garudaku/private-stream. Renamed to auto-generated operationId: apiGarudakuPrivateStreamPost
|
|
465
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: delete /api/garudaku/private-stream. Renamed to auto-generated operationId: apiGarudakuPrivateStreamDelete
|
|
466
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: post /api/garudaku/refresh. Renamed to auto-generated operationId: apiGarudakuRefreshPost
|
|
467
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: get /api/garudaku/game-topups. Renamed to auto-generated operationId: apiGarudakuGameTopupsGet
|
|
468
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: post /api/garudaku/game-topups. Renamed to auto-generated operationId: apiGarudakuGameTopupsPost
|
|
469
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: put /api/garudaku/game-topups/{id}. Renamed to auto-generated operationId: apiGarudakuGameTopupsIdPut
|
|
470
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: delete /api/garudaku/game-topups/{id}. Renamed to auto-generated operationId: apiGarudakuGameTopupsIdDelete
|
|
471
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: post /api/garudaku/game-topups/refresh. Renamed to auto-generated operationId: apiGarudakuGameTopupsRefreshPost
|
|
472
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: get /api/garudaku/tournaments. Renamed to auto-generated operationId: apiGarudakuTournamentsGet
|
|
473
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: post /api/garudaku/tournaments. Renamed to auto-generated operationId: apiGarudakuTournamentsPost
|
|
474
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: put /api/garudaku/tournaments/{id}. Renamed to auto-generated operationId: apiGarudakuTournamentsIdPut
|
|
475
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: delete /api/garudaku/tournaments/{id}. Renamed to auto-generated operationId: apiGarudakuTournamentsIdDelete
|
|
476
|
+
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: post /api/garudaku/tournaments/refresh-cache. Renamed to auto-generated operationId: apiGarudakuTournamentsRefreshCachePost
|
|
421
477
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: get /api/tournament. Renamed to auto-generated operationId: apiTournamentGet
|
|
422
478
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: post /api/tournament/padel. Renamed to auto-generated operationId: apiTournamentPadelPost
|
|
423
479
|
[main] WARN o.o.codegen.DefaultCodegen - Empty operationId found for path: get /api/tournament/padel/{id}. Renamed to auto-generated operationId: apiTournamentPadelIdGet
|
|
@@ -477,6 +533,8 @@
|
|
|
477
533
|
[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/]
|
|
478
534
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/EsportApi.ts
|
|
479
535
|
[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/]
|
|
536
|
+
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/GarudakuApi.ts
|
|
537
|
+
[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/]
|
|
480
538
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/HealthCheckApi.ts
|
|
481
539
|
[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/]
|
|
482
540
|
[main] INFO o.o.codegen.TemplateManager - writing file /root/drx-sdk/./apis/NewsApi.ts
|
|
@@ -508,21 +566,47 @@
|
|
|
508
566
|
# https://opencollective.com/openapi_generator/donate #
|
|
509
567
|
################################################################################
|
|
510
568
|
✅ SDK generated
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
569
|
+
[master 0e424c2] VPS: Generated API SDK
|
|
570
|
+
30 files changed, 3500 insertions(+)
|
|
571
|
+
create mode 100644 apis/GarudakuApi.ts
|
|
572
|
+
create mode 100644 models/ApiGarudakuGameTopupsGet200Response.ts
|
|
573
|
+
create mode 100644 models/ApiGarudakuGameTopupsGet200ResponseResponseObject.ts
|
|
574
|
+
create mode 100644 models/ApiGarudakuGameTopupsGet200ResponseResponseObjectItemsInner.ts
|
|
575
|
+
create mode 100644 models/ApiGarudakuGameTopupsGetFilterParameter.ts
|
|
576
|
+
create mode 100644 models/ApiGarudakuGameTopupsGetFilterParameterIsPopular.ts
|
|
577
|
+
create mode 100644 models/ApiGarudakuGameTopupsIdDelete200Response.ts
|
|
578
|
+
create mode 100644 models/ApiGarudakuGameTopupsPost200Response.ts
|
|
579
|
+
create mode 100644 models/ApiGarudakuTournamentsGet200Response.ts
|
|
580
|
+
create mode 100644 models/ApiGarudakuTournamentsGet200ResponseResponseObject.ts
|
|
581
|
+
create mode 100644 models/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.ts
|
|
582
|
+
create mode 100644 models/ApiGarudakuTournamentsGetFilterParameter.ts
|
|
583
|
+
create mode 100644 models/ApiGarudakuTournamentsIdDelete200Response.ts
|
|
584
|
+
create mode 100644 models/ApiGarudakuTournamentsPost200Response.ts
|
|
585
|
+
create mode 100644 models/ApiGarudakuTournamentsRefreshCachePost200Response.ts
|
|
586
|
+
create mode 100644 models/CreateGameTopupRequest.ts
|
|
587
|
+
create mode 100644 models/CreateTournamentRequest.ts
|
|
588
|
+
create mode 100644 models/GameTopup.ts
|
|
589
|
+
create mode 100644 models/GameTopupList.ts
|
|
590
|
+
create mode 100644 models/QueryGameTopupList.ts
|
|
591
|
+
create mode 100644 models/QueryGameTopupListQuery.ts
|
|
592
|
+
create mode 100644 models/QueryTournamentList.ts
|
|
593
|
+
create mode 100644 models/QueryTournamentListQuery.ts
|
|
594
|
+
create mode 100644 models/Tournament.ts
|
|
595
|
+
create mode 100644 models/TournamentList.ts
|
|
596
|
+
create mode 100644 models/UpdateGameTopupRequest.ts
|
|
597
|
+
create mode 100644 models/UpdateTournamentRequest.ts
|
|
598
|
+
To https://gitlab.com/drx-super/drx-sdk.git
|
|
599
|
+
4c21756..0e424c2 master -> master
|
|
516
600
|
✅ Changes committed and pushed
|
|
517
|
-
v1.1.
|
|
601
|
+
v1.1.251
|
|
518
602
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
519
|
-
|
|
603
|
+
0e424c2..2f472e4 master -> master
|
|
520
604
|
✅ Version bumped
|
|
521
605
|
|
|
522
|
-
> @drxsuperapp/sdk@1.1.
|
|
606
|
+
> @drxsuperapp/sdk@1.1.251 prepublishOnly
|
|
523
607
|
> npm run build
|
|
524
608
|
|
|
525
609
|
|
|
526
|
-
> @drxsuperapp/sdk@1.1.
|
|
610
|
+
> @drxsuperapp/sdk@1.1.251 build
|
|
527
611
|
> tsc
|
|
528
612
|
|
|
@@ -0,0 +1,193 @@
|
|
|
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 * as runtime from '../runtime';
|
|
13
|
+
import type { ApiGarudakuGameTopupsGet200Response, ApiGarudakuGameTopupsGetFilterParameter, ApiGarudakuGameTopupsIdDelete200Response, ApiGarudakuGameTopupsPost200Response, ApiGarudakuTournamentsGet200Response, ApiGarudakuTournamentsGetFilterParameter, ApiGarudakuTournamentsIdDelete200Response, ApiGarudakuTournamentsPost200Response, ApiGarudakuTournamentsRefreshCachePost200Response, ApiYoutubeDrxContentGet200Response, ApiYoutubePrivateStreamDelete200Response, ApiYoutubePrivateStreamPost200Response, CreateGameTopupRequest, CreateTournamentRequest, PrivateStreamRequest, UpdateGameTopupRequest, UpdateTournamentRequest } from '../models/index';
|
|
14
|
+
export interface ApiGarudakuGameTopupsGetRequest {
|
|
15
|
+
page?: number;
|
|
16
|
+
pageSize?: number;
|
|
17
|
+
sort?: string;
|
|
18
|
+
filter?: ApiGarudakuGameTopupsGetFilterParameter;
|
|
19
|
+
}
|
|
20
|
+
export interface ApiGarudakuGameTopupsIdDeleteRequest {
|
|
21
|
+
id: string;
|
|
22
|
+
}
|
|
23
|
+
export interface ApiGarudakuGameTopupsIdPutRequest {
|
|
24
|
+
id: string;
|
|
25
|
+
updateGameTopupRequest: UpdateGameTopupRequest;
|
|
26
|
+
}
|
|
27
|
+
export interface ApiGarudakuGameTopupsPostRequest {
|
|
28
|
+
createGameTopupRequest: CreateGameTopupRequest;
|
|
29
|
+
}
|
|
30
|
+
export interface ApiGarudakuPrivateStreamPostRequest {
|
|
31
|
+
privateStreamRequest: PrivateStreamRequest;
|
|
32
|
+
}
|
|
33
|
+
export interface ApiGarudakuTournamentsGetRequest {
|
|
34
|
+
page?: number;
|
|
35
|
+
pageSize?: number;
|
|
36
|
+
sort?: string;
|
|
37
|
+
filter?: ApiGarudakuTournamentsGetFilterParameter;
|
|
38
|
+
}
|
|
39
|
+
export interface ApiGarudakuTournamentsIdDeleteRequest {
|
|
40
|
+
id: string;
|
|
41
|
+
}
|
|
42
|
+
export interface ApiGarudakuTournamentsIdPutRequest {
|
|
43
|
+
id: string;
|
|
44
|
+
updateTournamentRequest: UpdateTournamentRequest;
|
|
45
|
+
}
|
|
46
|
+
export interface ApiGarudakuTournamentsPostRequest {
|
|
47
|
+
createTournamentRequest: CreateTournamentRequest;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
*/
|
|
52
|
+
export declare class GarudakuApi extends runtime.BaseAPI {
|
|
53
|
+
/**
|
|
54
|
+
* Get current live stream and 3 previous long-form videos from Garudaku YouTube channel
|
|
55
|
+
* Get Garudaku Content
|
|
56
|
+
*/
|
|
57
|
+
apiGarudakuContentGetRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiYoutubeDrxContentGet200Response>>;
|
|
58
|
+
/**
|
|
59
|
+
* Get current live stream and 3 previous long-form videos from Garudaku YouTube channel
|
|
60
|
+
* Get Garudaku Content
|
|
61
|
+
*/
|
|
62
|
+
apiGarudakuContentGet(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiYoutubeDrxContentGet200Response>;
|
|
63
|
+
/**
|
|
64
|
+
* Get all game top-ups with filtering and pagination
|
|
65
|
+
* Get All Game Top-ups
|
|
66
|
+
*/
|
|
67
|
+
apiGarudakuGameTopupsGetRaw(requestParameters: ApiGarudakuGameTopupsGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiGarudakuGameTopupsGet200Response>>;
|
|
68
|
+
/**
|
|
69
|
+
* Get all game top-ups with filtering and pagination
|
|
70
|
+
* Get All Game Top-ups
|
|
71
|
+
*/
|
|
72
|
+
apiGarudakuGameTopupsGet(requestParameters?: ApiGarudakuGameTopupsGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiGarudakuGameTopupsGet200Response>;
|
|
73
|
+
/**
|
|
74
|
+
* Delete a specific game top-up
|
|
75
|
+
* Delete Game Top-up
|
|
76
|
+
*/
|
|
77
|
+
apiGarudakuGameTopupsIdDeleteRaw(requestParameters: ApiGarudakuGameTopupsIdDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiGarudakuGameTopupsIdDelete200Response>>;
|
|
78
|
+
/**
|
|
79
|
+
* Delete a specific game top-up
|
|
80
|
+
* Delete Game Top-up
|
|
81
|
+
*/
|
|
82
|
+
apiGarudakuGameTopupsIdDelete(requestParameters: ApiGarudakuGameTopupsIdDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiGarudakuGameTopupsIdDelete200Response>;
|
|
83
|
+
/**
|
|
84
|
+
* Update a specific game top-up
|
|
85
|
+
* Update Game Top-up
|
|
86
|
+
*/
|
|
87
|
+
apiGarudakuGameTopupsIdPutRaw(requestParameters: ApiGarudakuGameTopupsIdPutRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiGarudakuGameTopupsPost200Response>>;
|
|
88
|
+
/**
|
|
89
|
+
* Update a specific game top-up
|
|
90
|
+
* Update Game Top-up
|
|
91
|
+
*/
|
|
92
|
+
apiGarudakuGameTopupsIdPut(requestParameters: ApiGarudakuGameTopupsIdPutRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiGarudakuGameTopupsPost200Response>;
|
|
93
|
+
/**
|
|
94
|
+
* Create a new game top-up entry
|
|
95
|
+
* Create Game Top-up
|
|
96
|
+
*/
|
|
97
|
+
apiGarudakuGameTopupsPostRaw(requestParameters: ApiGarudakuGameTopupsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiGarudakuGameTopupsPost200Response>>;
|
|
98
|
+
/**
|
|
99
|
+
* Create a new game top-up entry
|
|
100
|
+
* Create Game Top-up
|
|
101
|
+
*/
|
|
102
|
+
apiGarudakuGameTopupsPost(requestParameters: ApiGarudakuGameTopupsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiGarudakuGameTopupsPost200Response>;
|
|
103
|
+
/**
|
|
104
|
+
* Manually refresh the game top-up cache
|
|
105
|
+
* Refresh Game Top-up Cache
|
|
106
|
+
*/
|
|
107
|
+
apiGarudakuGameTopupsRefreshPostRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiGarudakuGameTopupsIdDelete200Response>>;
|
|
108
|
+
/**
|
|
109
|
+
* Manually refresh the game top-up cache
|
|
110
|
+
* Refresh Game Top-up Cache
|
|
111
|
+
*/
|
|
112
|
+
apiGarudakuGameTopupsRefreshPost(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiGarudakuGameTopupsIdDelete200Response>;
|
|
113
|
+
/**
|
|
114
|
+
* Remove the private stream and resume automatic live stream detection
|
|
115
|
+
* Remove Private Stream
|
|
116
|
+
*/
|
|
117
|
+
apiGarudakuPrivateStreamDeleteRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiYoutubePrivateStreamDelete200Response>>;
|
|
118
|
+
/**
|
|
119
|
+
* Remove the private stream and resume automatic live stream detection
|
|
120
|
+
* Remove Private Stream
|
|
121
|
+
*/
|
|
122
|
+
apiGarudakuPrivateStreamDelete(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiYoutubePrivateStreamDelete200Response>;
|
|
123
|
+
/**
|
|
124
|
+
* Set a private (unlisted) stream that will override the automatic live stream detection
|
|
125
|
+
* Set Private Stream
|
|
126
|
+
*/
|
|
127
|
+
apiGarudakuPrivateStreamPostRaw(requestParameters: ApiGarudakuPrivateStreamPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiYoutubePrivateStreamPost200Response>>;
|
|
128
|
+
/**
|
|
129
|
+
* Set a private (unlisted) stream that will override the automatic live stream detection
|
|
130
|
+
* Set Private Stream
|
|
131
|
+
*/
|
|
132
|
+
apiGarudakuPrivateStreamPost(requestParameters: ApiGarudakuPrivateStreamPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiYoutubePrivateStreamPost200Response>;
|
|
133
|
+
/**
|
|
134
|
+
* Manually trigger fetch and store of live stream and previous videos from Garudaku YouTube channel
|
|
135
|
+
* Refresh Garudaku Content
|
|
136
|
+
*/
|
|
137
|
+
apiGarudakuRefreshPostRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiYoutubePrivateStreamDelete200Response>>;
|
|
138
|
+
/**
|
|
139
|
+
* Manually trigger fetch and store of live stream and previous videos from Garudaku YouTube channel
|
|
140
|
+
* Refresh Garudaku Content
|
|
141
|
+
*/
|
|
142
|
+
apiGarudakuRefreshPost(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiYoutubePrivateStreamDelete200Response>;
|
|
143
|
+
/**
|
|
144
|
+
* Get all tournaments with filtering and pagination
|
|
145
|
+
* Get All Tournaments
|
|
146
|
+
*/
|
|
147
|
+
apiGarudakuTournamentsGetRaw(requestParameters: ApiGarudakuTournamentsGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiGarudakuTournamentsGet200Response>>;
|
|
148
|
+
/**
|
|
149
|
+
* Get all tournaments with filtering and pagination
|
|
150
|
+
* Get All Tournaments
|
|
151
|
+
*/
|
|
152
|
+
apiGarudakuTournamentsGet(requestParameters?: ApiGarudakuTournamentsGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiGarudakuTournamentsGet200Response>;
|
|
153
|
+
/**
|
|
154
|
+
* Delete a tournament by its ID
|
|
155
|
+
* Delete Tournament
|
|
156
|
+
*/
|
|
157
|
+
apiGarudakuTournamentsIdDeleteRaw(requestParameters: ApiGarudakuTournamentsIdDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiGarudakuTournamentsIdDelete200Response>>;
|
|
158
|
+
/**
|
|
159
|
+
* Delete a tournament by its ID
|
|
160
|
+
* Delete Tournament
|
|
161
|
+
*/
|
|
162
|
+
apiGarudakuTournamentsIdDelete(requestParameters: ApiGarudakuTournamentsIdDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiGarudakuTournamentsIdDelete200Response>;
|
|
163
|
+
/**
|
|
164
|
+
* Update an existing tournament
|
|
165
|
+
* Update Tournament
|
|
166
|
+
*/
|
|
167
|
+
apiGarudakuTournamentsIdPutRaw(requestParameters: ApiGarudakuTournamentsIdPutRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiGarudakuTournamentsPost200Response>>;
|
|
168
|
+
/**
|
|
169
|
+
* Update an existing tournament
|
|
170
|
+
* Update Tournament
|
|
171
|
+
*/
|
|
172
|
+
apiGarudakuTournamentsIdPut(requestParameters: ApiGarudakuTournamentsIdPutRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiGarudakuTournamentsPost200Response>;
|
|
173
|
+
/**
|
|
174
|
+
* Create a new tournament entry
|
|
175
|
+
* Create Tournament
|
|
176
|
+
*/
|
|
177
|
+
apiGarudakuTournamentsPostRaw(requestParameters: ApiGarudakuTournamentsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiGarudakuTournamentsPost200Response>>;
|
|
178
|
+
/**
|
|
179
|
+
* Create a new tournament entry
|
|
180
|
+
* Create Tournament
|
|
181
|
+
*/
|
|
182
|
+
apiGarudakuTournamentsPost(requestParameters: ApiGarudakuTournamentsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiGarudakuTournamentsPost200Response>;
|
|
183
|
+
/**
|
|
184
|
+
* Manually refresh tournament cache
|
|
185
|
+
* Refresh Tournament Cache
|
|
186
|
+
*/
|
|
187
|
+
apiGarudakuTournamentsRefreshCachePostRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiGarudakuTournamentsRefreshCachePost200Response>>;
|
|
188
|
+
/**
|
|
189
|
+
* Manually refresh tournament cache
|
|
190
|
+
* Refresh Tournament Cache
|
|
191
|
+
*/
|
|
192
|
+
apiGarudakuTournamentsRefreshCachePost(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiGarudakuTournamentsRefreshCachePost200Response>;
|
|
193
|
+
}
|