@remix-gg/mcp 0.4.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 (139) hide show
  1. package/README.md +81 -0
  2. package/dist/client-helpers/index.d.ts +2 -0
  3. package/dist/client-helpers/index.d.ts.map +1 -0
  4. package/dist/client-helpers/index.js +2 -0
  5. package/dist/client-helpers/index.js.map +1 -0
  6. package/dist/config.d.ts +20 -0
  7. package/dist/config.d.ts.map +1 -0
  8. package/dist/config.js +58 -0
  9. package/dist/config.js.map +1 -0
  10. package/dist/core/api-client.d.ts +4 -0
  11. package/dist/core/api-client.d.ts.map +1 -0
  12. package/dist/core/api-client.js +12 -0
  13. package/dist/core/api-client.js.map +1 -0
  14. package/dist/core/config.d.ts +6 -0
  15. package/dist/core/config.d.ts.map +1 -0
  16. package/dist/core/config.js +19 -0
  17. package/dist/core/config.js.map +1 -0
  18. package/dist/core/index.d.ts +5 -0
  19. package/dist/core/index.d.ts.map +1 -0
  20. package/dist/core/index.js +4 -0
  21. package/dist/core/index.js.map +1 -0
  22. package/dist/core/skills.d.ts +22 -0
  23. package/dist/core/skills.d.ts.map +1 -0
  24. package/dist/core/skills.js +49 -0
  25. package/dist/core/skills.js.map +1 -0
  26. package/dist/core/tool-defs.d.ts +12 -0
  27. package/dist/core/tool-defs.d.ts.map +1 -0
  28. package/dist/core/tool-defs.js +356 -0
  29. package/dist/core/tool-defs.js.map +1 -0
  30. package/dist/core/tools/create-game.d.ts +9 -0
  31. package/dist/core/tools/create-game.d.ts.map +1 -0
  32. package/dist/core/tools/create-game.js +21 -0
  33. package/dist/core/tools/create-game.js.map +1 -0
  34. package/dist/core/tools/create-shop-item.d.ts +14 -0
  35. package/dist/core/tools/create-shop-item.d.ts.map +1 -0
  36. package/dist/core/tools/create-shop-item.js +78 -0
  37. package/dist/core/tools/create-shop-item.js.map +1 -0
  38. package/dist/core/tools/delete-shop-item.d.ts +9 -0
  39. package/dist/core/tools/delete-shop-item.d.ts.map +1 -0
  40. package/dist/core/tools/delete-shop-item.js +19 -0
  41. package/dist/core/tools/delete-shop-item.js.map +1 -0
  42. package/dist/core/tools/generate-image.d.ts +8 -0
  43. package/dist/core/tools/generate-image.d.ts.map +1 -0
  44. package/dist/core/tools/generate-image.js +32 -0
  45. package/dist/core/tools/generate-image.js.map +1 -0
  46. package/dist/core/tools/generate-sprite-sheet.d.ts +14 -0
  47. package/dist/core/tools/generate-sprite-sheet.d.ts.map +1 -0
  48. package/dist/core/tools/generate-sprite-sheet.js +29 -0
  49. package/dist/core/tools/generate-sprite-sheet.js.map +1 -0
  50. package/dist/core/tools/helpers.d.ts +60 -0
  51. package/dist/core/tools/helpers.d.ts.map +1 -0
  52. package/dist/core/tools/helpers.js +68 -0
  53. package/dist/core/tools/helpers.js.map +1 -0
  54. package/dist/core/tools/index.d.ts +13 -0
  55. package/dist/core/tools/index.d.ts.map +1 -0
  56. package/dist/core/tools/index.js +13 -0
  57. package/dist/core/tools/index.js.map +1 -0
  58. package/dist/core/tools/list-shop-items.d.ts +8 -0
  59. package/dist/core/tools/list-shop-items.d.ts.map +1 -0
  60. package/dist/core/tools/list-shop-items.js +17 -0
  61. package/dist/core/tools/list-shop-items.js.map +1 -0
  62. package/dist/core/tools/update-game.d.ts +11 -0
  63. package/dist/core/tools/update-game.d.ts.map +1 -0
  64. package/dist/core/tools/update-game.js +22 -0
  65. package/dist/core/tools/update-game.js.map +1 -0
  66. package/dist/core/tools/update-shop-item.d.ts +15 -0
  67. package/dist/core/tools/update-shop-item.d.ts.map +1 -0
  68. package/dist/core/tools/update-shop-item.js +24 -0
  69. package/dist/core/tools/update-shop-item.js.map +1 -0
  70. package/dist/core/tools/upload-game-asset.d.ts +8 -0
  71. package/dist/core/tools/upload-game-asset.d.ts.map +1 -0
  72. package/dist/core/tools/upload-game-asset.js +43 -0
  73. package/dist/core/tools/upload-game-asset.js.map +1 -0
  74. package/dist/core/tools/upload-version.d.ts +8 -0
  75. package/dist/core/tools/upload-version.d.ts.map +1 -0
  76. package/dist/core/tools/upload-version.js +20 -0
  77. package/dist/core/tools/upload-version.js.map +1 -0
  78. package/dist/core/tools/validate-game.d.ts +6 -0
  79. package/dist/core/tools/validate-game.d.ts.map +1 -0
  80. package/dist/core/tools/validate-game.js +41 -0
  81. package/dist/core/tools/validate-game.js.map +1 -0
  82. package/dist/core/tools.test.d.ts +2 -0
  83. package/dist/core/tools.test.d.ts.map +1 -0
  84. package/dist/core/tools.test.js +825 -0
  85. package/dist/core/tools.test.js.map +1 -0
  86. package/dist/generated/server-api.d.ts +3673 -0
  87. package/dist/generated/server-api.d.ts.map +1 -0
  88. package/dist/generated/server-api.js +2 -0
  89. package/dist/generated/server-api.js.map +1 -0
  90. package/dist/index.d.ts +3 -0
  91. package/dist/index.d.ts.map +1 -0
  92. package/dist/index.js +365 -0
  93. package/dist/index.js.map +1 -0
  94. package/dist/server/create-server.d.ts +12 -0
  95. package/dist/server/create-server.d.ts.map +1 -0
  96. package/dist/server/create-server.js +29 -0
  97. package/dist/server/create-server.js.map +1 -0
  98. package/dist/server/create-server.test.d.ts +2 -0
  99. package/dist/server/create-server.test.d.ts.map +1 -0
  100. package/dist/server/create-server.test.js +37 -0
  101. package/dist/server/create-server.test.js.map +1 -0
  102. package/dist/server/index.d.ts +3 -0
  103. package/dist/server/index.d.ts.map +1 -0
  104. package/dist/server/index.js +8 -0
  105. package/dist/server/index.js.map +1 -0
  106. package/dist/server/lib/config.d.ts +2 -0
  107. package/dist/server/lib/config.d.ts.map +1 -0
  108. package/dist/server/lib/config.js +2 -0
  109. package/dist/server/lib/config.js.map +1 -0
  110. package/dist/server/resources/skills.d.ts +3 -0
  111. package/dist/server/resources/skills.d.ts.map +1 -0
  112. package/dist/server/resources/skills.js +60 -0
  113. package/dist/server/resources/skills.js.map +1 -0
  114. package/dist/server/resources/skills.test.d.ts +2 -0
  115. package/dist/server/resources/skills.test.d.ts.map +1 -0
  116. package/dist/server/resources/skills.test.js +44 -0
  117. package/dist/server/resources/skills.test.js.map +1 -0
  118. package/dist/server/tools/register.d.ts +3 -0
  119. package/dist/server/tools/register.d.ts.map +1 -0
  120. package/dist/server/tools/register.js +26 -0
  121. package/dist/server/tools/register.js.map +1 -0
  122. package/dist/server/tools/register.test.d.ts +2 -0
  123. package/dist/server/tools/register.test.d.ts.map +1 -0
  124. package/dist/server/tools/register.test.js +85 -0
  125. package/dist/server/tools/register.test.js.map +1 -0
  126. package/dist/types.d.ts +73 -0
  127. package/dist/types.d.ts.map +1 -0
  128. package/dist/types.js +31 -0
  129. package/dist/types.js.map +1 -0
  130. package/package.json +38 -0
  131. package/skills/SKILL.md +82 -0
  132. package/skills/actions/open-game.md +18 -0
  133. package/skills/workflows/add-image-to-game.md +121 -0
  134. package/skills/workflows/add-sprite-to-game.md +127 -0
  135. package/skills/workflows/game-creation.md +124 -0
  136. package/skills/workflows/implement-multiplayer.md +355 -0
  137. package/skills/workflows/integrate-save-game.md +135 -0
  138. package/skills/workflows/manage-shop-items.md +246 -0
  139. package/skills/workflows/upload-game.md +74 -0
@@ -0,0 +1,3673 @@
1
+ export interface paths {
2
+ "/health": {
3
+ parameters: {
4
+ query?: never;
5
+ header?: never;
6
+ path?: never;
7
+ cookie?: never;
8
+ };
9
+ /** Health check */
10
+ get: operations["getHealth"];
11
+ put?: never;
12
+ post?: never;
13
+ delete?: never;
14
+ options?: never;
15
+ head?: never;
16
+ patch?: never;
17
+ trace?: never;
18
+ };
19
+ "/v1/games": {
20
+ parameters: {
21
+ query?: never;
22
+ header?: never;
23
+ path?: never;
24
+ cookie?: never;
25
+ };
26
+ /**
27
+ * List games
28
+ * @description List games owned by the authenticated agent.
29
+ */
30
+ get: operations["getV1Games"];
31
+ put?: never;
32
+ /**
33
+ * Create draft game
34
+ * @description Create a draft game and initial version for an authenticated agent.
35
+ */
36
+ post: operations["postV1Games"];
37
+ delete?: never;
38
+ options?: never;
39
+ head?: never;
40
+ patch?: never;
41
+ trace?: never;
42
+ };
43
+ "/v1/games/{gameId}": {
44
+ parameters: {
45
+ query?: never;
46
+ header?: never;
47
+ path?: never;
48
+ cookie?: never;
49
+ };
50
+ /**
51
+ * Get game
52
+ * @description Get detail for an owned game.
53
+ */
54
+ get: operations["getV1GamesByGameId"];
55
+ put?: never;
56
+ /**
57
+ * Update game
58
+ * @description Update name and/or isMultiplayer for an owned game.
59
+ */
60
+ post: operations["postV1GamesByGameId"];
61
+ delete?: never;
62
+ options?: never;
63
+ head?: never;
64
+ patch?: never;
65
+ trace?: never;
66
+ };
67
+ "/v1/games/{gameId}/assets": {
68
+ parameters: {
69
+ query?: never;
70
+ header?: never;
71
+ path?: never;
72
+ cookie?: never;
73
+ };
74
+ /**
75
+ * List game assets
76
+ * @description List assets for an owned game.
77
+ */
78
+ get: operations["getV1GamesByGameIdAssets"];
79
+ put?: never;
80
+ /**
81
+ * Upload game asset
82
+ * @description Upload an asset file for an owned game.
83
+ */
84
+ post: operations["postV1GamesByGameIdAssets"];
85
+ delete?: never;
86
+ options?: never;
87
+ head?: never;
88
+ patch?: never;
89
+ trace?: never;
90
+ };
91
+ "/v1/games/{gameId}/categories": {
92
+ parameters: {
93
+ query?: never;
94
+ header?: never;
95
+ path?: never;
96
+ cookie?: never;
97
+ };
98
+ get?: never;
99
+ put?: never;
100
+ /**
101
+ * Set game categories
102
+ * @description Set 1-3 categories for an owned game in a single request.
103
+ */
104
+ post: operations["postV1GamesByGameIdCategories"];
105
+ delete?: never;
106
+ options?: never;
107
+ head?: never;
108
+ patch?: never;
109
+ trace?: never;
110
+ };
111
+ "/v1/games/{gameId}/icon": {
112
+ parameters: {
113
+ query?: never;
114
+ header?: never;
115
+ path?: never;
116
+ cookie?: never;
117
+ };
118
+ get?: never;
119
+ put?: never;
120
+ /**
121
+ * Upload game icon
122
+ * @description Upload an icon image and set appImageUrl for an owned game.
123
+ */
124
+ post: operations["postV1GamesByGameIdIcon"];
125
+ delete?: never;
126
+ options?: never;
127
+ head?: never;
128
+ patch?: never;
129
+ trace?: never;
130
+ };
131
+ "/v1/games/{gameId}/images/generate": {
132
+ parameters: {
133
+ query?: never;
134
+ header?: never;
135
+ path?: never;
136
+ cookie?: never;
137
+ };
138
+ get?: never;
139
+ put?: never;
140
+ /**
141
+ * Generate image
142
+ * @description Generate a game asset image with background removal. Returns base64-encoded image.
143
+ */
144
+ post: operations["postV1GamesByGameIdImagesGenerate"];
145
+ delete?: never;
146
+ options?: never;
147
+ head?: never;
148
+ patch?: never;
149
+ trace?: never;
150
+ };
151
+ "/v1/games/{gameId}/images/generate-icons": {
152
+ parameters: {
153
+ query?: never;
154
+ header?: never;
155
+ path?: never;
156
+ cookie?: never;
157
+ };
158
+ get?: never;
159
+ put?: never;
160
+ /**
161
+ * Generate game icons
162
+ * @description Generate 4 game icon variations. Returns base64-encoded images.
163
+ */
164
+ post: operations["postV1GamesByGameIdImagesGenerate-icons"];
165
+ delete?: never;
166
+ options?: never;
167
+ head?: never;
168
+ patch?: never;
169
+ trace?: never;
170
+ };
171
+ "/v1/games/{gameId}/images/save-icon": {
172
+ parameters: {
173
+ query?: never;
174
+ header?: never;
175
+ path?: never;
176
+ cookie?: never;
177
+ };
178
+ get?: never;
179
+ put?: never;
180
+ /**
181
+ * Save game icon
182
+ * @description Optimize and save a base64-encoded icon image as the game app icon.
183
+ */
184
+ post: operations["postV1GamesByGameIdImagesSave-icon"];
185
+ delete?: never;
186
+ options?: never;
187
+ head?: never;
188
+ patch?: never;
189
+ trace?: never;
190
+ };
191
+ "/v1/games/{gameId}/items": {
192
+ parameters: {
193
+ query?: never;
194
+ header?: never;
195
+ path?: never;
196
+ cookie?: never;
197
+ };
198
+ /**
199
+ * List shop items
200
+ * @description List shop items for an owned game.
201
+ */
202
+ get: operations["getV1GamesByGameIdItems"];
203
+ put?: never;
204
+ /**
205
+ * Create shop item
206
+ * @description Create a shop item for an owned game. New shop items always start in PENDING; status is managed internally.
207
+ */
208
+ post: operations["postV1GamesByGameIdItems"];
209
+ delete?: never;
210
+ options?: never;
211
+ head?: never;
212
+ patch?: never;
213
+ trace?: never;
214
+ };
215
+ "/v1/games/{gameId}/items/{itemId}": {
216
+ parameters: {
217
+ query?: never;
218
+ header?: never;
219
+ path?: never;
220
+ cookie?: never;
221
+ };
222
+ get?: never;
223
+ put?: never;
224
+ /**
225
+ * Update shop item
226
+ * @description Update shop item metadata for an owned game. Status is managed internally and cannot be changed through this route.
227
+ */
228
+ post: operations["postV1GamesByGameIdItemsByItemId"];
229
+ /**
230
+ * Deactivate shop item
231
+ * @description Soft delete a shop item by marking it INACTIVE. Shop item status is managed internally.
232
+ */
233
+ delete: operations["deleteV1GamesByGameIdItemsByItemId"];
234
+ options?: never;
235
+ head?: never;
236
+ patch?: never;
237
+ trace?: never;
238
+ };
239
+ "/v1/games/{gameId}/launch-readiness": {
240
+ parameters: {
241
+ query?: never;
242
+ header?: never;
243
+ path?: never;
244
+ cookie?: never;
245
+ };
246
+ /**
247
+ * Get launch readiness
248
+ * @description Get aggregate launch readiness for an owned game version.
249
+ */
250
+ get: operations["getV1GamesByGameIdLaunch-readiness"];
251
+ put?: never;
252
+ post?: never;
253
+ delete?: never;
254
+ options?: never;
255
+ head?: never;
256
+ patch?: never;
257
+ trace?: never;
258
+ };
259
+ "/v1/games/{gameId}/sprites/generate": {
260
+ parameters: {
261
+ query?: never;
262
+ header?: never;
263
+ path?: never;
264
+ cookie?: never;
265
+ };
266
+ get?: never;
267
+ put?: never;
268
+ /**
269
+ * Generate sprite sheet
270
+ * @description Generate an animated sprite sheet with LLM prompt enhancement and background removal. Returns URLs to both original and transparent versions.
271
+ */
272
+ post: operations["postV1GamesByGameIdSpritesGenerate"];
273
+ delete?: never;
274
+ options?: never;
275
+ head?: never;
276
+ patch?: never;
277
+ trace?: never;
278
+ };
279
+ "/v1/games/{gameId}/versions": {
280
+ parameters: {
281
+ query?: never;
282
+ header?: never;
283
+ path?: never;
284
+ cookie?: never;
285
+ };
286
+ /**
287
+ * List versions
288
+ * @description List all versions for an owned game.
289
+ */
290
+ get: operations["getV1GamesByGameIdVersions"];
291
+ put?: never;
292
+ post?: never;
293
+ delete?: never;
294
+ options?: never;
295
+ head?: never;
296
+ patch?: never;
297
+ trace?: never;
298
+ };
299
+ "/v1/games/{gameId}/versions/{versionId}": {
300
+ parameters: {
301
+ query?: never;
302
+ header?: never;
303
+ path?: never;
304
+ cookie?: never;
305
+ };
306
+ /**
307
+ * Get version detail
308
+ * @description Get detailed view of an owned version.
309
+ */
310
+ get: operations["getV1GamesByGameIdVersionsByVersionId"];
311
+ put?: never;
312
+ post?: never;
313
+ delete?: never;
314
+ options?: never;
315
+ head?: never;
316
+ patch?: never;
317
+ trace?: never;
318
+ };
319
+ "/v1/games/{gameId}/versions/{versionId}/code": {
320
+ parameters: {
321
+ query?: never;
322
+ header?: never;
323
+ path?: never;
324
+ cookie?: never;
325
+ };
326
+ /**
327
+ * Get version code
328
+ * @description Get the code payload for an owned version.
329
+ */
330
+ get: operations["getV1GamesByGameIdVersionsByVersionIdCode"];
331
+ put?: never;
332
+ /**
333
+ * Update version code
334
+ * @description Update code for an existing owned draft version.
335
+ */
336
+ post: operations["postV1GamesByGameIdVersionsByVersionIdCode"];
337
+ delete?: never;
338
+ options?: never;
339
+ head?: never;
340
+ patch?: never;
341
+ trace?: never;
342
+ };
343
+ "/v1/games/{gameId}/versions/{versionId}/status": {
344
+ parameters: {
345
+ query?: never;
346
+ header?: never;
347
+ path?: never;
348
+ cookie?: never;
349
+ };
350
+ /**
351
+ * Get version status
352
+ * @description Get publish status for an owned game version.
353
+ */
354
+ get: operations["getV1GamesByGameIdVersionsByVersionIdStatus"];
355
+ put?: never;
356
+ post?: never;
357
+ delete?: never;
358
+ options?: never;
359
+ head?: never;
360
+ patch?: never;
361
+ trace?: never;
362
+ };
363
+ "/v1/games/{gameId}/versions/{versionId}/thread": {
364
+ parameters: {
365
+ query?: never;
366
+ header?: never;
367
+ path?: never;
368
+ cookie?: never;
369
+ };
370
+ /**
371
+ * Get version thread
372
+ * @description Get thread metadata and HTML context for an owned version.
373
+ */
374
+ get: operations["getV1GamesByGameIdVersionsByVersionIdThread"];
375
+ put?: never;
376
+ post?: never;
377
+ delete?: never;
378
+ options?: never;
379
+ head?: never;
380
+ patch?: never;
381
+ trace?: never;
382
+ };
383
+ "/v1/games/{gameId}/versions/{versionId}/validate": {
384
+ parameters: {
385
+ query?: never;
386
+ header?: never;
387
+ path?: never;
388
+ cookie?: never;
389
+ };
390
+ /**
391
+ * Validate version
392
+ * @description Validate whether a version is ready for submission requirements.
393
+ */
394
+ get: operations["getV1GamesByGameIdVersionsByVersionIdValidate"];
395
+ put?: never;
396
+ post?: never;
397
+ delete?: never;
398
+ options?: never;
399
+ head?: never;
400
+ patch?: never;
401
+ trace?: never;
402
+ };
403
+ "/v1/metadata/categories": {
404
+ parameters: {
405
+ query?: never;
406
+ header?: never;
407
+ path?: never;
408
+ cookie?: never;
409
+ };
410
+ /**
411
+ * List category metadata
412
+ * @description List supported game categories for agent clients.
413
+ */
414
+ get: operations["getV1MetadataCategories"];
415
+ put?: never;
416
+ post?: never;
417
+ delete?: never;
418
+ options?: never;
419
+ head?: never;
420
+ patch?: never;
421
+ trace?: never;
422
+ };
423
+ }
424
+ export type webhooks = Record<string, never>;
425
+ export interface components {
426
+ schemas: never;
427
+ responses: never;
428
+ parameters: never;
429
+ requestBodies: never;
430
+ headers: never;
431
+ pathItems: never;
432
+ }
433
+ export type $defs = Record<string, never>;
434
+ export interface operations {
435
+ getHealth: {
436
+ parameters: {
437
+ query?: never;
438
+ header?: never;
439
+ path?: never;
440
+ cookie?: never;
441
+ };
442
+ requestBody?: never;
443
+ responses: never;
444
+ };
445
+ getV1Games: {
446
+ parameters: {
447
+ query?: never;
448
+ header?: never;
449
+ path?: never;
450
+ cookie?: never;
451
+ };
452
+ requestBody?: never;
453
+ responses: {
454
+ /** @description Response for status 200 */
455
+ 200: {
456
+ headers: {
457
+ [name: string]: unknown;
458
+ };
459
+ content: {
460
+ "application/json": {
461
+ data: {
462
+ games: unknown[];
463
+ };
464
+ /** @constant */
465
+ success: true;
466
+ };
467
+ };
468
+ };
469
+ /** @description Response for status 401 */
470
+ 401: {
471
+ headers: {
472
+ [name: string]: unknown;
473
+ };
474
+ content: {
475
+ "application/json": {
476
+ error: {
477
+ code: string;
478
+ details?: unknown;
479
+ message: string;
480
+ };
481
+ /** @constant */
482
+ success: false;
483
+ };
484
+ };
485
+ };
486
+ /** @description Response for status 403 */
487
+ 403: {
488
+ headers: {
489
+ [name: string]: unknown;
490
+ };
491
+ content: {
492
+ "application/json": {
493
+ error: {
494
+ code: string;
495
+ details?: unknown;
496
+ message: string;
497
+ };
498
+ /** @constant */
499
+ success: false;
500
+ };
501
+ };
502
+ };
503
+ /** @description Response for status 429 */
504
+ 429: {
505
+ headers: {
506
+ [name: string]: unknown;
507
+ };
508
+ content: {
509
+ "application/json": {
510
+ error: {
511
+ code: string;
512
+ details?: unknown;
513
+ message: string;
514
+ };
515
+ /** @constant */
516
+ success: false;
517
+ };
518
+ };
519
+ };
520
+ /** @description Response for status 500 */
521
+ 500: {
522
+ headers: {
523
+ [name: string]: unknown;
524
+ };
525
+ content: {
526
+ "application/json": {
527
+ error: {
528
+ code: string;
529
+ details?: unknown;
530
+ message: string;
531
+ };
532
+ /** @constant */
533
+ success: false;
534
+ };
535
+ };
536
+ };
537
+ };
538
+ };
539
+ postV1Games: {
540
+ parameters: {
541
+ query?: never;
542
+ header?: never;
543
+ path?: never;
544
+ cookie?: never;
545
+ };
546
+ requestBody: {
547
+ content: {
548
+ "application/json": {
549
+ name: string;
550
+ };
551
+ "application/x-www-form-urlencoded": {
552
+ name: string;
553
+ };
554
+ "multipart/form-data": {
555
+ name: string;
556
+ };
557
+ };
558
+ };
559
+ responses: {
560
+ /** @description Response for status 201 */
561
+ 201: {
562
+ headers: {
563
+ [name: string]: unknown;
564
+ };
565
+ content: {
566
+ "application/json": {
567
+ data: {
568
+ game: {
569
+ createdAt: Record<string, never> | string | number;
570
+ id: string;
571
+ name: string;
572
+ version: {
573
+ createdAt: (Record<string, never> | string | number) | null;
574
+ id: string | null;
575
+ };
576
+ };
577
+ };
578
+ /** @constant */
579
+ success: true;
580
+ };
581
+ };
582
+ };
583
+ /** @description Response for status 400 */
584
+ 400: {
585
+ headers: {
586
+ [name: string]: unknown;
587
+ };
588
+ content: {
589
+ "application/json": {
590
+ error: {
591
+ code: string;
592
+ details?: unknown;
593
+ message: string;
594
+ };
595
+ /** @constant */
596
+ success: false;
597
+ };
598
+ };
599
+ };
600
+ /** @description Response for status 401 */
601
+ 401: {
602
+ headers: {
603
+ [name: string]: unknown;
604
+ };
605
+ content: {
606
+ "application/json": {
607
+ error: {
608
+ code: string;
609
+ details?: unknown;
610
+ message: string;
611
+ };
612
+ /** @constant */
613
+ success: false;
614
+ };
615
+ };
616
+ };
617
+ /** @description Response for status 403 */
618
+ 403: {
619
+ headers: {
620
+ [name: string]: unknown;
621
+ };
622
+ content: {
623
+ "application/json": {
624
+ error: {
625
+ code: string;
626
+ details?: unknown;
627
+ message: string;
628
+ };
629
+ /** @constant */
630
+ success: false;
631
+ };
632
+ };
633
+ };
634
+ /** @description Response for status 429 */
635
+ 429: {
636
+ headers: {
637
+ [name: string]: unknown;
638
+ };
639
+ content: {
640
+ "application/json": {
641
+ error: {
642
+ code: string;
643
+ details?: unknown;
644
+ message: string;
645
+ };
646
+ /** @constant */
647
+ success: false;
648
+ };
649
+ };
650
+ };
651
+ /** @description Response for status 500 */
652
+ 500: {
653
+ headers: {
654
+ [name: string]: unknown;
655
+ };
656
+ content: {
657
+ "application/json": {
658
+ error: {
659
+ code: string;
660
+ details?: unknown;
661
+ message: string;
662
+ };
663
+ /** @constant */
664
+ success: false;
665
+ };
666
+ };
667
+ };
668
+ };
669
+ };
670
+ getV1GamesByGameId: {
671
+ parameters: {
672
+ query?: never;
673
+ header?: never;
674
+ path: {
675
+ gameId: string;
676
+ };
677
+ cookie?: never;
678
+ };
679
+ requestBody?: never;
680
+ responses: {
681
+ /** @description Response for status 200 */
682
+ 200: {
683
+ headers: {
684
+ [name: string]: unknown;
685
+ };
686
+ content: {
687
+ "application/json": {
688
+ data: {
689
+ game: unknown;
690
+ };
691
+ /** @constant */
692
+ success: true;
693
+ };
694
+ };
695
+ };
696
+ /** @description Response for status 401 */
697
+ 401: {
698
+ headers: {
699
+ [name: string]: unknown;
700
+ };
701
+ content: {
702
+ "application/json": {
703
+ error: {
704
+ code: string;
705
+ details?: unknown;
706
+ message: string;
707
+ };
708
+ /** @constant */
709
+ success: false;
710
+ };
711
+ };
712
+ };
713
+ /** @description Response for status 403 */
714
+ 403: {
715
+ headers: {
716
+ [name: string]: unknown;
717
+ };
718
+ content: {
719
+ "application/json": {
720
+ error: {
721
+ code: string;
722
+ details?: unknown;
723
+ message: string;
724
+ };
725
+ /** @constant */
726
+ success: false;
727
+ };
728
+ };
729
+ };
730
+ /** @description Response for status 404 */
731
+ 404: {
732
+ headers: {
733
+ [name: string]: unknown;
734
+ };
735
+ content: {
736
+ "application/json": {
737
+ error: {
738
+ code: string;
739
+ details?: unknown;
740
+ message: string;
741
+ };
742
+ /** @constant */
743
+ success: false;
744
+ };
745
+ };
746
+ };
747
+ /** @description Response for status 429 */
748
+ 429: {
749
+ headers: {
750
+ [name: string]: unknown;
751
+ };
752
+ content: {
753
+ "application/json": {
754
+ error: {
755
+ code: string;
756
+ details?: unknown;
757
+ message: string;
758
+ };
759
+ /** @constant */
760
+ success: false;
761
+ };
762
+ };
763
+ };
764
+ /** @description Response for status 500 */
765
+ 500: {
766
+ headers: {
767
+ [name: string]: unknown;
768
+ };
769
+ content: {
770
+ "application/json": {
771
+ error: {
772
+ code: string;
773
+ details?: unknown;
774
+ message: string;
775
+ };
776
+ /** @constant */
777
+ success: false;
778
+ };
779
+ };
780
+ };
781
+ };
782
+ };
783
+ postV1GamesByGameId: {
784
+ parameters: {
785
+ query?: never;
786
+ header?: never;
787
+ path: {
788
+ gameId: string;
789
+ };
790
+ cookie?: never;
791
+ };
792
+ requestBody: {
793
+ content: {
794
+ "application/json": {
795
+ isMultiplayer?: boolean;
796
+ name?: string;
797
+ };
798
+ "application/x-www-form-urlencoded": {
799
+ isMultiplayer?: boolean;
800
+ name?: string;
801
+ };
802
+ "multipart/form-data": {
803
+ isMultiplayer?: boolean;
804
+ name?: string;
805
+ };
806
+ };
807
+ };
808
+ responses: {
809
+ /** @description Response for status 200 */
810
+ 200: {
811
+ headers: {
812
+ [name: string]: unknown;
813
+ };
814
+ content: {
815
+ "application/json": {
816
+ data: {
817
+ game: {
818
+ id: string;
819
+ isMultiplayer: boolean;
820
+ name: string;
821
+ };
822
+ };
823
+ /** @constant */
824
+ success: true;
825
+ };
826
+ };
827
+ };
828
+ /** @description Response for status 400 */
829
+ 400: {
830
+ headers: {
831
+ [name: string]: unknown;
832
+ };
833
+ content: {
834
+ "application/json": {
835
+ error: {
836
+ code: string;
837
+ details?: unknown;
838
+ message: string;
839
+ };
840
+ /** @constant */
841
+ success: false;
842
+ };
843
+ };
844
+ };
845
+ /** @description Response for status 401 */
846
+ 401: {
847
+ headers: {
848
+ [name: string]: unknown;
849
+ };
850
+ content: {
851
+ "application/json": {
852
+ error: {
853
+ code: string;
854
+ details?: unknown;
855
+ message: string;
856
+ };
857
+ /** @constant */
858
+ success: false;
859
+ };
860
+ };
861
+ };
862
+ /** @description Response for status 403 */
863
+ 403: {
864
+ headers: {
865
+ [name: string]: unknown;
866
+ };
867
+ content: {
868
+ "application/json": {
869
+ error: {
870
+ code: string;
871
+ details?: unknown;
872
+ message: string;
873
+ };
874
+ /** @constant */
875
+ success: false;
876
+ };
877
+ };
878
+ };
879
+ /** @description Response for status 404 */
880
+ 404: {
881
+ headers: {
882
+ [name: string]: unknown;
883
+ };
884
+ content: {
885
+ "application/json": {
886
+ error: {
887
+ code: string;
888
+ details?: unknown;
889
+ message: string;
890
+ };
891
+ /** @constant */
892
+ success: false;
893
+ };
894
+ };
895
+ };
896
+ /** @description Response for status 429 */
897
+ 429: {
898
+ headers: {
899
+ [name: string]: unknown;
900
+ };
901
+ content: {
902
+ "application/json": {
903
+ error: {
904
+ code: string;
905
+ details?: unknown;
906
+ message: string;
907
+ };
908
+ /** @constant */
909
+ success: false;
910
+ };
911
+ };
912
+ };
913
+ /** @description Response for status 500 */
914
+ 500: {
915
+ headers: {
916
+ [name: string]: unknown;
917
+ };
918
+ content: {
919
+ "application/json": {
920
+ error: {
921
+ code: string;
922
+ details?: unknown;
923
+ message: string;
924
+ };
925
+ /** @constant */
926
+ success: false;
927
+ };
928
+ };
929
+ };
930
+ };
931
+ };
932
+ getV1GamesByGameIdAssets: {
933
+ parameters: {
934
+ query?: never;
935
+ header?: never;
936
+ path: {
937
+ gameId: string;
938
+ };
939
+ cookie?: never;
940
+ };
941
+ requestBody?: never;
942
+ responses: {
943
+ /** @description Response for status 200 */
944
+ 200: {
945
+ headers: {
946
+ [name: string]: unknown;
947
+ };
948
+ content: {
949
+ "application/json": {
950
+ data: {
951
+ assets: unknown[];
952
+ gameId: string;
953
+ };
954
+ /** @constant */
955
+ success: true;
956
+ };
957
+ };
958
+ };
959
+ /** @description Response for status 401 */
960
+ 401: {
961
+ headers: {
962
+ [name: string]: unknown;
963
+ };
964
+ content: {
965
+ "application/json": {
966
+ error: {
967
+ code: string;
968
+ details?: unknown;
969
+ message: string;
970
+ };
971
+ /** @constant */
972
+ success: false;
973
+ };
974
+ };
975
+ };
976
+ /** @description Response for status 403 */
977
+ 403: {
978
+ headers: {
979
+ [name: string]: unknown;
980
+ };
981
+ content: {
982
+ "application/json": {
983
+ error: {
984
+ code: string;
985
+ details?: unknown;
986
+ message: string;
987
+ };
988
+ /** @constant */
989
+ success: false;
990
+ };
991
+ };
992
+ };
993
+ /** @description Response for status 404 */
994
+ 404: {
995
+ headers: {
996
+ [name: string]: unknown;
997
+ };
998
+ content: {
999
+ "application/json": {
1000
+ error: {
1001
+ code: string;
1002
+ details?: unknown;
1003
+ message: string;
1004
+ };
1005
+ /** @constant */
1006
+ success: false;
1007
+ };
1008
+ };
1009
+ };
1010
+ /** @description Response for status 429 */
1011
+ 429: {
1012
+ headers: {
1013
+ [name: string]: unknown;
1014
+ };
1015
+ content: {
1016
+ "application/json": {
1017
+ error: {
1018
+ code: string;
1019
+ details?: unknown;
1020
+ message: string;
1021
+ };
1022
+ /** @constant */
1023
+ success: false;
1024
+ };
1025
+ };
1026
+ };
1027
+ /** @description Response for status 500 */
1028
+ 500: {
1029
+ headers: {
1030
+ [name: string]: unknown;
1031
+ };
1032
+ content: {
1033
+ "application/json": {
1034
+ error: {
1035
+ code: string;
1036
+ details?: unknown;
1037
+ message: string;
1038
+ };
1039
+ /** @constant */
1040
+ success: false;
1041
+ };
1042
+ };
1043
+ };
1044
+ };
1045
+ };
1046
+ postV1GamesByGameIdAssets: {
1047
+ parameters: {
1048
+ query?: never;
1049
+ header?: never;
1050
+ path: {
1051
+ gameId: string;
1052
+ };
1053
+ cookie?: never;
1054
+ };
1055
+ requestBody?: never;
1056
+ responses: {
1057
+ /** @description Response for status 200 */
1058
+ 200: {
1059
+ headers: {
1060
+ [name: string]: unknown;
1061
+ };
1062
+ content: {
1063
+ "application/json": {
1064
+ data: {
1065
+ asset: unknown;
1066
+ gameId: string;
1067
+ };
1068
+ /** @constant */
1069
+ success: true;
1070
+ };
1071
+ };
1072
+ };
1073
+ /** @description Response for status 400 */
1074
+ 400: {
1075
+ headers: {
1076
+ [name: string]: unknown;
1077
+ };
1078
+ content: {
1079
+ "application/json": {
1080
+ error: {
1081
+ code: string;
1082
+ details?: unknown;
1083
+ message: string;
1084
+ };
1085
+ /** @constant */
1086
+ success: false;
1087
+ };
1088
+ };
1089
+ };
1090
+ /** @description Response for status 401 */
1091
+ 401: {
1092
+ headers: {
1093
+ [name: string]: unknown;
1094
+ };
1095
+ content: {
1096
+ "application/json": {
1097
+ error: {
1098
+ code: string;
1099
+ details?: unknown;
1100
+ message: string;
1101
+ };
1102
+ /** @constant */
1103
+ success: false;
1104
+ };
1105
+ };
1106
+ };
1107
+ /** @description Response for status 403 */
1108
+ 403: {
1109
+ headers: {
1110
+ [name: string]: unknown;
1111
+ };
1112
+ content: {
1113
+ "application/json": {
1114
+ error: {
1115
+ code: string;
1116
+ details?: unknown;
1117
+ message: string;
1118
+ };
1119
+ /** @constant */
1120
+ success: false;
1121
+ };
1122
+ };
1123
+ };
1124
+ /** @description Response for status 404 */
1125
+ 404: {
1126
+ headers: {
1127
+ [name: string]: unknown;
1128
+ };
1129
+ content: {
1130
+ "application/json": {
1131
+ error: {
1132
+ code: string;
1133
+ details?: unknown;
1134
+ message: string;
1135
+ };
1136
+ /** @constant */
1137
+ success: false;
1138
+ };
1139
+ };
1140
+ };
1141
+ /** @description Response for status 429 */
1142
+ 429: {
1143
+ headers: {
1144
+ [name: string]: unknown;
1145
+ };
1146
+ content: {
1147
+ "application/json": {
1148
+ error: {
1149
+ code: string;
1150
+ details?: unknown;
1151
+ message: string;
1152
+ };
1153
+ /** @constant */
1154
+ success: false;
1155
+ };
1156
+ };
1157
+ };
1158
+ /** @description Response for status 500 */
1159
+ 500: {
1160
+ headers: {
1161
+ [name: string]: unknown;
1162
+ };
1163
+ content: {
1164
+ "application/json": {
1165
+ error: {
1166
+ code: string;
1167
+ details?: unknown;
1168
+ message: string;
1169
+ };
1170
+ /** @constant */
1171
+ success: false;
1172
+ };
1173
+ };
1174
+ };
1175
+ };
1176
+ };
1177
+ postV1GamesByGameIdCategories: {
1178
+ parameters: {
1179
+ query?: never;
1180
+ header?: never;
1181
+ path: {
1182
+ gameId: string;
1183
+ };
1184
+ cookie?: never;
1185
+ };
1186
+ requestBody: {
1187
+ content: {
1188
+ "application/json": {
1189
+ categories: ("ACTION" | "ADVENTURE" | "ARCADE" | "BOARD" | "CARD" | "CASUAL" | "EDUCATION" | "KIDS" | "MUSIC" | "PLATFORMER" | "PUZZLE" | "RACING" | "SHOOTER" | "SIMULATION" | "SPORTS" | "STRATEGY" | "TRIVIA" | "WORD")[];
1190
+ };
1191
+ "application/x-www-form-urlencoded": {
1192
+ categories: ("ACTION" | "ADVENTURE" | "ARCADE" | "BOARD" | "CARD" | "CASUAL" | "EDUCATION" | "KIDS" | "MUSIC" | "PLATFORMER" | "PUZZLE" | "RACING" | "SHOOTER" | "SIMULATION" | "SPORTS" | "STRATEGY" | "TRIVIA" | "WORD")[];
1193
+ };
1194
+ "multipart/form-data": {
1195
+ categories: ("ACTION" | "ADVENTURE" | "ARCADE" | "BOARD" | "CARD" | "CASUAL" | "EDUCATION" | "KIDS" | "MUSIC" | "PLATFORMER" | "PUZZLE" | "RACING" | "SHOOTER" | "SIMULATION" | "SPORTS" | "STRATEGY" | "TRIVIA" | "WORD")[];
1196
+ };
1197
+ };
1198
+ };
1199
+ responses: {
1200
+ /** @description Response for status 200 */
1201
+ 200: {
1202
+ headers: {
1203
+ [name: string]: unknown;
1204
+ };
1205
+ content: {
1206
+ "application/json": {
1207
+ data: {
1208
+ categories: string[];
1209
+ gameId: string;
1210
+ };
1211
+ /** @constant */
1212
+ success: true;
1213
+ };
1214
+ };
1215
+ };
1216
+ /** @description Response for status 400 */
1217
+ 400: {
1218
+ headers: {
1219
+ [name: string]: unknown;
1220
+ };
1221
+ content: {
1222
+ "application/json": {
1223
+ error: {
1224
+ code: string;
1225
+ details?: unknown;
1226
+ message: string;
1227
+ };
1228
+ /** @constant */
1229
+ success: false;
1230
+ };
1231
+ };
1232
+ };
1233
+ /** @description Response for status 401 */
1234
+ 401: {
1235
+ headers: {
1236
+ [name: string]: unknown;
1237
+ };
1238
+ content: {
1239
+ "application/json": {
1240
+ error: {
1241
+ code: string;
1242
+ details?: unknown;
1243
+ message: string;
1244
+ };
1245
+ /** @constant */
1246
+ success: false;
1247
+ };
1248
+ };
1249
+ };
1250
+ /** @description Response for status 403 */
1251
+ 403: {
1252
+ headers: {
1253
+ [name: string]: unknown;
1254
+ };
1255
+ content: {
1256
+ "application/json": {
1257
+ error: {
1258
+ code: string;
1259
+ details?: unknown;
1260
+ message: string;
1261
+ };
1262
+ /** @constant */
1263
+ success: false;
1264
+ };
1265
+ };
1266
+ };
1267
+ /** @description Response for status 404 */
1268
+ 404: {
1269
+ headers: {
1270
+ [name: string]: unknown;
1271
+ };
1272
+ content: {
1273
+ "application/json": {
1274
+ error: {
1275
+ code: string;
1276
+ details?: unknown;
1277
+ message: string;
1278
+ };
1279
+ /** @constant */
1280
+ success: false;
1281
+ };
1282
+ };
1283
+ };
1284
+ /** @description Response for status 429 */
1285
+ 429: {
1286
+ headers: {
1287
+ [name: string]: unknown;
1288
+ };
1289
+ content: {
1290
+ "application/json": {
1291
+ error: {
1292
+ code: string;
1293
+ details?: unknown;
1294
+ message: string;
1295
+ };
1296
+ /** @constant */
1297
+ success: false;
1298
+ };
1299
+ };
1300
+ };
1301
+ /** @description Response for status 500 */
1302
+ 500: {
1303
+ headers: {
1304
+ [name: string]: unknown;
1305
+ };
1306
+ content: {
1307
+ "application/json": {
1308
+ error: {
1309
+ code: string;
1310
+ details?: unknown;
1311
+ message: string;
1312
+ };
1313
+ /** @constant */
1314
+ success: false;
1315
+ };
1316
+ };
1317
+ };
1318
+ };
1319
+ };
1320
+ postV1GamesByGameIdIcon: {
1321
+ parameters: {
1322
+ query?: never;
1323
+ header?: never;
1324
+ path: {
1325
+ gameId: string;
1326
+ };
1327
+ cookie?: never;
1328
+ };
1329
+ requestBody?: never;
1330
+ responses: {
1331
+ /** @description Response for status 200 */
1332
+ 200: {
1333
+ headers: {
1334
+ [name: string]: unknown;
1335
+ };
1336
+ content: {
1337
+ "application/json": {
1338
+ data: {
1339
+ appImageUrl: string;
1340
+ gameId: string;
1341
+ };
1342
+ /** @constant */
1343
+ success: true;
1344
+ };
1345
+ };
1346
+ };
1347
+ /** @description Response for status 400 */
1348
+ 400: {
1349
+ headers: {
1350
+ [name: string]: unknown;
1351
+ };
1352
+ content: {
1353
+ "application/json": {
1354
+ error: {
1355
+ code: string;
1356
+ details?: unknown;
1357
+ message: string;
1358
+ };
1359
+ /** @constant */
1360
+ success: false;
1361
+ };
1362
+ };
1363
+ };
1364
+ /** @description Response for status 401 */
1365
+ 401: {
1366
+ headers: {
1367
+ [name: string]: unknown;
1368
+ };
1369
+ content: {
1370
+ "application/json": {
1371
+ error: {
1372
+ code: string;
1373
+ details?: unknown;
1374
+ message: string;
1375
+ };
1376
+ /** @constant */
1377
+ success: false;
1378
+ };
1379
+ };
1380
+ };
1381
+ /** @description Response for status 403 */
1382
+ 403: {
1383
+ headers: {
1384
+ [name: string]: unknown;
1385
+ };
1386
+ content: {
1387
+ "application/json": {
1388
+ error: {
1389
+ code: string;
1390
+ details?: unknown;
1391
+ message: string;
1392
+ };
1393
+ /** @constant */
1394
+ success: false;
1395
+ };
1396
+ };
1397
+ };
1398
+ /** @description Response for status 404 */
1399
+ 404: {
1400
+ headers: {
1401
+ [name: string]: unknown;
1402
+ };
1403
+ content: {
1404
+ "application/json": {
1405
+ error: {
1406
+ code: string;
1407
+ details?: unknown;
1408
+ message: string;
1409
+ };
1410
+ /** @constant */
1411
+ success: false;
1412
+ };
1413
+ };
1414
+ };
1415
+ /** @description Response for status 429 */
1416
+ 429: {
1417
+ headers: {
1418
+ [name: string]: unknown;
1419
+ };
1420
+ content: {
1421
+ "application/json": {
1422
+ error: {
1423
+ code: string;
1424
+ details?: unknown;
1425
+ message: string;
1426
+ };
1427
+ /** @constant */
1428
+ success: false;
1429
+ };
1430
+ };
1431
+ };
1432
+ /** @description Response for status 500 */
1433
+ 500: {
1434
+ headers: {
1435
+ [name: string]: unknown;
1436
+ };
1437
+ content: {
1438
+ "application/json": {
1439
+ error: {
1440
+ code: string;
1441
+ details?: unknown;
1442
+ message: string;
1443
+ };
1444
+ /** @constant */
1445
+ success: false;
1446
+ };
1447
+ };
1448
+ };
1449
+ };
1450
+ };
1451
+ postV1GamesByGameIdImagesGenerate: {
1452
+ parameters: {
1453
+ query?: never;
1454
+ header?: never;
1455
+ path: {
1456
+ gameId: string;
1457
+ };
1458
+ cookie?: never;
1459
+ };
1460
+ requestBody: {
1461
+ content: {
1462
+ "application/json": {
1463
+ prompt: string;
1464
+ };
1465
+ "application/x-www-form-urlencoded": {
1466
+ prompt: string;
1467
+ };
1468
+ "multipart/form-data": {
1469
+ prompt: string;
1470
+ };
1471
+ };
1472
+ };
1473
+ responses: {
1474
+ /** @description Response for status 200 */
1475
+ 200: {
1476
+ headers: {
1477
+ [name: string]: unknown;
1478
+ };
1479
+ content: {
1480
+ "application/json": {
1481
+ data: {
1482
+ image: {
1483
+ contentType: string;
1484
+ data: string;
1485
+ };
1486
+ prompt: string;
1487
+ };
1488
+ /** @constant */
1489
+ success: true;
1490
+ };
1491
+ };
1492
+ };
1493
+ /** @description Response for status 401 */
1494
+ 401: {
1495
+ headers: {
1496
+ [name: string]: unknown;
1497
+ };
1498
+ content: {
1499
+ "application/json": {
1500
+ error: {
1501
+ code: string;
1502
+ details?: unknown;
1503
+ message: string;
1504
+ };
1505
+ /** @constant */
1506
+ success: false;
1507
+ };
1508
+ };
1509
+ };
1510
+ /** @description Response for status 403 */
1511
+ 403: {
1512
+ headers: {
1513
+ [name: string]: unknown;
1514
+ };
1515
+ content: {
1516
+ "application/json": {
1517
+ error: {
1518
+ code: string;
1519
+ details?: unknown;
1520
+ message: string;
1521
+ };
1522
+ /** @constant */
1523
+ success: false;
1524
+ };
1525
+ };
1526
+ };
1527
+ /** @description Response for status 404 */
1528
+ 404: {
1529
+ headers: {
1530
+ [name: string]: unknown;
1531
+ };
1532
+ content: {
1533
+ "application/json": {
1534
+ error: {
1535
+ code: string;
1536
+ details?: unknown;
1537
+ message: string;
1538
+ };
1539
+ /** @constant */
1540
+ success: false;
1541
+ };
1542
+ };
1543
+ };
1544
+ /** @description Response for status 429 */
1545
+ 429: {
1546
+ headers: {
1547
+ [name: string]: unknown;
1548
+ };
1549
+ content: {
1550
+ "application/json": {
1551
+ error: {
1552
+ code: string;
1553
+ details?: unknown;
1554
+ message: string;
1555
+ };
1556
+ /** @constant */
1557
+ success: false;
1558
+ };
1559
+ };
1560
+ };
1561
+ /** @description Response for status 500 */
1562
+ 500: {
1563
+ headers: {
1564
+ [name: string]: unknown;
1565
+ };
1566
+ content: {
1567
+ "application/json": {
1568
+ error: {
1569
+ code: string;
1570
+ details?: unknown;
1571
+ message: string;
1572
+ };
1573
+ /** @constant */
1574
+ success: false;
1575
+ };
1576
+ };
1577
+ };
1578
+ };
1579
+ };
1580
+ "postV1GamesByGameIdImagesGenerate-icons": {
1581
+ parameters: {
1582
+ query?: never;
1583
+ header?: never;
1584
+ path: {
1585
+ gameId: string;
1586
+ };
1587
+ cookie?: never;
1588
+ };
1589
+ requestBody: {
1590
+ content: {
1591
+ "application/json": {
1592
+ prompt: string;
1593
+ };
1594
+ "application/x-www-form-urlencoded": {
1595
+ prompt: string;
1596
+ };
1597
+ "multipart/form-data": {
1598
+ prompt: string;
1599
+ };
1600
+ };
1601
+ };
1602
+ responses: {
1603
+ /** @description Response for status 200 */
1604
+ 200: {
1605
+ headers: {
1606
+ [name: string]: unknown;
1607
+ };
1608
+ content: {
1609
+ "application/json": {
1610
+ data: {
1611
+ icons: {
1612
+ b64_json: string;
1613
+ id: number;
1614
+ }[];
1615
+ };
1616
+ /** @constant */
1617
+ success: true;
1618
+ };
1619
+ };
1620
+ };
1621
+ /** @description Response for status 401 */
1622
+ 401: {
1623
+ headers: {
1624
+ [name: string]: unknown;
1625
+ };
1626
+ content: {
1627
+ "application/json": {
1628
+ error: {
1629
+ code: string;
1630
+ details?: unknown;
1631
+ message: string;
1632
+ };
1633
+ /** @constant */
1634
+ success: false;
1635
+ };
1636
+ };
1637
+ };
1638
+ /** @description Response for status 403 */
1639
+ 403: {
1640
+ headers: {
1641
+ [name: string]: unknown;
1642
+ };
1643
+ content: {
1644
+ "application/json": {
1645
+ error: {
1646
+ code: string;
1647
+ details?: unknown;
1648
+ message: string;
1649
+ };
1650
+ /** @constant */
1651
+ success: false;
1652
+ };
1653
+ };
1654
+ };
1655
+ /** @description Response for status 404 */
1656
+ 404: {
1657
+ headers: {
1658
+ [name: string]: unknown;
1659
+ };
1660
+ content: {
1661
+ "application/json": {
1662
+ error: {
1663
+ code: string;
1664
+ details?: unknown;
1665
+ message: string;
1666
+ };
1667
+ /** @constant */
1668
+ success: false;
1669
+ };
1670
+ };
1671
+ };
1672
+ /** @description Response for status 429 */
1673
+ 429: {
1674
+ headers: {
1675
+ [name: string]: unknown;
1676
+ };
1677
+ content: {
1678
+ "application/json": {
1679
+ error: {
1680
+ code: string;
1681
+ details?: unknown;
1682
+ message: string;
1683
+ };
1684
+ /** @constant */
1685
+ success: false;
1686
+ };
1687
+ };
1688
+ };
1689
+ /** @description Response for status 500 */
1690
+ 500: {
1691
+ headers: {
1692
+ [name: string]: unknown;
1693
+ };
1694
+ content: {
1695
+ "application/json": {
1696
+ error: {
1697
+ code: string;
1698
+ details?: unknown;
1699
+ message: string;
1700
+ };
1701
+ /** @constant */
1702
+ success: false;
1703
+ };
1704
+ };
1705
+ };
1706
+ };
1707
+ };
1708
+ "postV1GamesByGameIdImagesSave-icon": {
1709
+ parameters: {
1710
+ query?: never;
1711
+ header?: never;
1712
+ path: {
1713
+ gameId: string;
1714
+ };
1715
+ cookie?: never;
1716
+ };
1717
+ requestBody: {
1718
+ content: {
1719
+ "application/json": {
1720
+ iconData: string;
1721
+ };
1722
+ "application/x-www-form-urlencoded": {
1723
+ iconData: string;
1724
+ };
1725
+ "multipart/form-data": {
1726
+ iconData: string;
1727
+ };
1728
+ };
1729
+ };
1730
+ responses: {
1731
+ /** @description Response for status 200 */
1732
+ 200: {
1733
+ headers: {
1734
+ [name: string]: unknown;
1735
+ };
1736
+ content: {
1737
+ "application/json": {
1738
+ data: {
1739
+ url: string;
1740
+ };
1741
+ /** @constant */
1742
+ success: true;
1743
+ };
1744
+ };
1745
+ };
1746
+ /** @description Response for status 401 */
1747
+ 401: {
1748
+ headers: {
1749
+ [name: string]: unknown;
1750
+ };
1751
+ content: {
1752
+ "application/json": {
1753
+ error: {
1754
+ code: string;
1755
+ details?: unknown;
1756
+ message: string;
1757
+ };
1758
+ /** @constant */
1759
+ success: false;
1760
+ };
1761
+ };
1762
+ };
1763
+ /** @description Response for status 403 */
1764
+ 403: {
1765
+ headers: {
1766
+ [name: string]: unknown;
1767
+ };
1768
+ content: {
1769
+ "application/json": {
1770
+ error: {
1771
+ code: string;
1772
+ details?: unknown;
1773
+ message: string;
1774
+ };
1775
+ /** @constant */
1776
+ success: false;
1777
+ };
1778
+ };
1779
+ };
1780
+ /** @description Response for status 404 */
1781
+ 404: {
1782
+ headers: {
1783
+ [name: string]: unknown;
1784
+ };
1785
+ content: {
1786
+ "application/json": {
1787
+ error: {
1788
+ code: string;
1789
+ details?: unknown;
1790
+ message: string;
1791
+ };
1792
+ /** @constant */
1793
+ success: false;
1794
+ };
1795
+ };
1796
+ };
1797
+ /** @description Response for status 429 */
1798
+ 429: {
1799
+ headers: {
1800
+ [name: string]: unknown;
1801
+ };
1802
+ content: {
1803
+ "application/json": {
1804
+ error: {
1805
+ code: string;
1806
+ details?: unknown;
1807
+ message: string;
1808
+ };
1809
+ /** @constant */
1810
+ success: false;
1811
+ };
1812
+ };
1813
+ };
1814
+ /** @description Response for status 500 */
1815
+ 500: {
1816
+ headers: {
1817
+ [name: string]: unknown;
1818
+ };
1819
+ content: {
1820
+ "application/json": {
1821
+ error: {
1822
+ code: string;
1823
+ details?: unknown;
1824
+ message: string;
1825
+ };
1826
+ /** @constant */
1827
+ success: false;
1828
+ };
1829
+ };
1830
+ };
1831
+ };
1832
+ };
1833
+ getV1GamesByGameIdItems: {
1834
+ parameters: {
1835
+ query?: never;
1836
+ header?: never;
1837
+ path: {
1838
+ gameId: string;
1839
+ };
1840
+ cookie?: never;
1841
+ };
1842
+ requestBody?: never;
1843
+ responses: {
1844
+ /** @description Response for status 200 */
1845
+ 200: {
1846
+ headers: {
1847
+ [name: string]: unknown;
1848
+ };
1849
+ content: {
1850
+ "application/json": {
1851
+ data: {
1852
+ gameId: string;
1853
+ items: {
1854
+ bitsCost: (string | number) | null;
1855
+ /** Format: date-time */
1856
+ createdAt: string;
1857
+ description: string | null;
1858
+ gameId: string;
1859
+ iconUrl: string | null;
1860
+ id: string;
1861
+ /** @enum {string} */
1862
+ itemType: "TIER_UNLOCK" | "CONSUMABLE" | "ONE_TIME";
1863
+ name: string;
1864
+ slug: string;
1865
+ /** @enum {string} */
1866
+ status: "ACTIVE" | "PENDING" | "INACTIVE";
1867
+ tier: (string | number) | null;
1868
+ /** Format: date-time */
1869
+ updatedAt: string;
1870
+ }[];
1871
+ };
1872
+ /** @constant */
1873
+ success: true;
1874
+ };
1875
+ };
1876
+ };
1877
+ /** @description Response for status 401 */
1878
+ 401: {
1879
+ headers: {
1880
+ [name: string]: unknown;
1881
+ };
1882
+ content: {
1883
+ "application/json": {
1884
+ error: {
1885
+ code: string;
1886
+ details?: unknown;
1887
+ message: string;
1888
+ };
1889
+ /** @constant */
1890
+ success: false;
1891
+ };
1892
+ };
1893
+ };
1894
+ /** @description Response for status 403 */
1895
+ 403: {
1896
+ headers: {
1897
+ [name: string]: unknown;
1898
+ };
1899
+ content: {
1900
+ "application/json": {
1901
+ error: {
1902
+ code: string;
1903
+ details?: unknown;
1904
+ message: string;
1905
+ };
1906
+ /** @constant */
1907
+ success: false;
1908
+ };
1909
+ };
1910
+ };
1911
+ /** @description Response for status 404 */
1912
+ 404: {
1913
+ headers: {
1914
+ [name: string]: unknown;
1915
+ };
1916
+ content: {
1917
+ "application/json": {
1918
+ error: {
1919
+ code: string;
1920
+ details?: unknown;
1921
+ message: string;
1922
+ };
1923
+ /** @constant */
1924
+ success: false;
1925
+ };
1926
+ };
1927
+ };
1928
+ /** @description Response for status 429 */
1929
+ 429: {
1930
+ headers: {
1931
+ [name: string]: unknown;
1932
+ };
1933
+ content: {
1934
+ "application/json": {
1935
+ error: {
1936
+ code: string;
1937
+ details?: unknown;
1938
+ message: string;
1939
+ };
1940
+ /** @constant */
1941
+ success: false;
1942
+ };
1943
+ };
1944
+ };
1945
+ /** @description Response for status 500 */
1946
+ 500: {
1947
+ headers: {
1948
+ [name: string]: unknown;
1949
+ };
1950
+ content: {
1951
+ "application/json": {
1952
+ error: {
1953
+ code: string;
1954
+ details?: unknown;
1955
+ message: string;
1956
+ };
1957
+ /** @constant */
1958
+ success: false;
1959
+ };
1960
+ };
1961
+ };
1962
+ };
1963
+ };
1964
+ postV1GamesByGameIdItems: {
1965
+ parameters: {
1966
+ query?: never;
1967
+ header?: never;
1968
+ path: {
1969
+ gameId: string;
1970
+ };
1971
+ cookie?: never;
1972
+ };
1973
+ requestBody: {
1974
+ content: {
1975
+ "application/json": {
1976
+ bitsCost: string | number;
1977
+ description?: string;
1978
+ /** Format: uri */
1979
+ iconUrl?: string;
1980
+ /** @enum {string} */
1981
+ itemType?: "TIER_UNLOCK" | "CONSUMABLE" | "ONE_TIME";
1982
+ name: string;
1983
+ slug?: string;
1984
+ tier?: string | number;
1985
+ };
1986
+ "application/x-www-form-urlencoded": {
1987
+ bitsCost: string | number;
1988
+ description?: string;
1989
+ /** Format: uri */
1990
+ iconUrl?: string;
1991
+ /** @enum {string} */
1992
+ itemType?: "TIER_UNLOCK" | "CONSUMABLE" | "ONE_TIME";
1993
+ name: string;
1994
+ slug?: string;
1995
+ tier?: string | number;
1996
+ };
1997
+ "multipart/form-data": {
1998
+ bitsCost: string | number;
1999
+ description?: string;
2000
+ /** Format: uri */
2001
+ iconUrl?: string;
2002
+ /** @enum {string} */
2003
+ itemType?: "TIER_UNLOCK" | "CONSUMABLE" | "ONE_TIME";
2004
+ name: string;
2005
+ slug?: string;
2006
+ tier?: string | number;
2007
+ };
2008
+ };
2009
+ };
2010
+ responses: {
2011
+ /** @description Response for status 201 */
2012
+ 201: {
2013
+ headers: {
2014
+ [name: string]: unknown;
2015
+ };
2016
+ content: {
2017
+ "application/json": {
2018
+ data: {
2019
+ item: {
2020
+ bitsCost: (string | number) | null;
2021
+ /** Format: date-time */
2022
+ createdAt: string;
2023
+ description: string | null;
2024
+ gameId: string;
2025
+ iconUrl: string | null;
2026
+ id: string;
2027
+ /** @enum {string} */
2028
+ itemType: "TIER_UNLOCK" | "CONSUMABLE" | "ONE_TIME";
2029
+ name: string;
2030
+ slug: string;
2031
+ /** @enum {string} */
2032
+ status: "ACTIVE" | "PENDING" | "INACTIVE";
2033
+ tier: (string | number) | null;
2034
+ /** Format: date-time */
2035
+ updatedAt: string;
2036
+ };
2037
+ };
2038
+ /** @constant */
2039
+ success: true;
2040
+ };
2041
+ };
2042
+ };
2043
+ /** @description Response for status 400 */
2044
+ 400: {
2045
+ headers: {
2046
+ [name: string]: unknown;
2047
+ };
2048
+ content: {
2049
+ "application/json": {
2050
+ error: {
2051
+ code: string;
2052
+ details?: unknown;
2053
+ message: string;
2054
+ };
2055
+ /** @constant */
2056
+ success: false;
2057
+ };
2058
+ };
2059
+ };
2060
+ /** @description Response for status 401 */
2061
+ 401: {
2062
+ headers: {
2063
+ [name: string]: unknown;
2064
+ };
2065
+ content: {
2066
+ "application/json": {
2067
+ error: {
2068
+ code: string;
2069
+ details?: unknown;
2070
+ message: string;
2071
+ };
2072
+ /** @constant */
2073
+ success: false;
2074
+ };
2075
+ };
2076
+ };
2077
+ /** @description Response for status 403 */
2078
+ 403: {
2079
+ headers: {
2080
+ [name: string]: unknown;
2081
+ };
2082
+ content: {
2083
+ "application/json": {
2084
+ error: {
2085
+ code: string;
2086
+ details?: unknown;
2087
+ message: string;
2088
+ };
2089
+ /** @constant */
2090
+ success: false;
2091
+ };
2092
+ };
2093
+ };
2094
+ /** @description Response for status 404 */
2095
+ 404: {
2096
+ headers: {
2097
+ [name: string]: unknown;
2098
+ };
2099
+ content: {
2100
+ "application/json": {
2101
+ error: {
2102
+ code: string;
2103
+ details?: unknown;
2104
+ message: string;
2105
+ };
2106
+ /** @constant */
2107
+ success: false;
2108
+ };
2109
+ };
2110
+ };
2111
+ /** @description Response for status 429 */
2112
+ 429: {
2113
+ headers: {
2114
+ [name: string]: unknown;
2115
+ };
2116
+ content: {
2117
+ "application/json": {
2118
+ error: {
2119
+ code: string;
2120
+ details?: unknown;
2121
+ message: string;
2122
+ };
2123
+ /** @constant */
2124
+ success: false;
2125
+ };
2126
+ };
2127
+ };
2128
+ /** @description Response for status 500 */
2129
+ 500: {
2130
+ headers: {
2131
+ [name: string]: unknown;
2132
+ };
2133
+ content: {
2134
+ "application/json": {
2135
+ error: {
2136
+ code: string;
2137
+ details?: unknown;
2138
+ message: string;
2139
+ };
2140
+ /** @constant */
2141
+ success: false;
2142
+ };
2143
+ };
2144
+ };
2145
+ };
2146
+ };
2147
+ postV1GamesByGameIdItemsByItemId: {
2148
+ parameters: {
2149
+ query?: never;
2150
+ header?: never;
2151
+ path: {
2152
+ gameId: string;
2153
+ itemId: string;
2154
+ };
2155
+ cookie?: never;
2156
+ };
2157
+ requestBody: {
2158
+ content: {
2159
+ "application/json": {
2160
+ bitsCost?: string | number;
2161
+ description?: string | null;
2162
+ iconUrl?: string | null;
2163
+ /** @enum {string} */
2164
+ itemType?: "TIER_UNLOCK" | "CONSUMABLE" | "ONE_TIME";
2165
+ name?: string;
2166
+ slug?: string;
2167
+ tier?: (string | number) | null;
2168
+ };
2169
+ "application/x-www-form-urlencoded": {
2170
+ bitsCost?: string | number;
2171
+ description?: string | null;
2172
+ iconUrl?: string | null;
2173
+ /** @enum {string} */
2174
+ itemType?: "TIER_UNLOCK" | "CONSUMABLE" | "ONE_TIME";
2175
+ name?: string;
2176
+ slug?: string;
2177
+ tier?: (string | number) | null;
2178
+ };
2179
+ "multipart/form-data": {
2180
+ bitsCost?: string | number;
2181
+ description?: string | null;
2182
+ iconUrl?: string | null;
2183
+ /** @enum {string} */
2184
+ itemType?: "TIER_UNLOCK" | "CONSUMABLE" | "ONE_TIME";
2185
+ name?: string;
2186
+ slug?: string;
2187
+ tier?: (string | number) | null;
2188
+ };
2189
+ };
2190
+ };
2191
+ responses: {
2192
+ /** @description Response for status 200 */
2193
+ 200: {
2194
+ headers: {
2195
+ [name: string]: unknown;
2196
+ };
2197
+ content: {
2198
+ "application/json": {
2199
+ data: {
2200
+ item: {
2201
+ bitsCost: (string | number) | null;
2202
+ /** Format: date-time */
2203
+ createdAt: string;
2204
+ description: string | null;
2205
+ gameId: string;
2206
+ iconUrl: string | null;
2207
+ id: string;
2208
+ /** @enum {string} */
2209
+ itemType: "TIER_UNLOCK" | "CONSUMABLE" | "ONE_TIME";
2210
+ name: string;
2211
+ slug: string;
2212
+ /** @enum {string} */
2213
+ status: "ACTIVE" | "PENDING" | "INACTIVE";
2214
+ tier: (string | number) | null;
2215
+ /** Format: date-time */
2216
+ updatedAt: string;
2217
+ };
2218
+ };
2219
+ /** @constant */
2220
+ success: true;
2221
+ };
2222
+ };
2223
+ };
2224
+ /** @description Response for status 400 */
2225
+ 400: {
2226
+ headers: {
2227
+ [name: string]: unknown;
2228
+ };
2229
+ content: {
2230
+ "application/json": {
2231
+ error: {
2232
+ code: string;
2233
+ details?: unknown;
2234
+ message: string;
2235
+ };
2236
+ /** @constant */
2237
+ success: false;
2238
+ };
2239
+ };
2240
+ };
2241
+ /** @description Response for status 401 */
2242
+ 401: {
2243
+ headers: {
2244
+ [name: string]: unknown;
2245
+ };
2246
+ content: {
2247
+ "application/json": {
2248
+ error: {
2249
+ code: string;
2250
+ details?: unknown;
2251
+ message: string;
2252
+ };
2253
+ /** @constant */
2254
+ success: false;
2255
+ };
2256
+ };
2257
+ };
2258
+ /** @description Response for status 403 */
2259
+ 403: {
2260
+ headers: {
2261
+ [name: string]: unknown;
2262
+ };
2263
+ content: {
2264
+ "application/json": {
2265
+ error: {
2266
+ code: string;
2267
+ details?: unknown;
2268
+ message: string;
2269
+ };
2270
+ /** @constant */
2271
+ success: false;
2272
+ };
2273
+ };
2274
+ };
2275
+ /** @description Response for status 404 */
2276
+ 404: {
2277
+ headers: {
2278
+ [name: string]: unknown;
2279
+ };
2280
+ content: {
2281
+ "application/json": {
2282
+ error: {
2283
+ code: string;
2284
+ details?: unknown;
2285
+ message: string;
2286
+ };
2287
+ /** @constant */
2288
+ success: false;
2289
+ };
2290
+ };
2291
+ };
2292
+ /** @description Response for status 429 */
2293
+ 429: {
2294
+ headers: {
2295
+ [name: string]: unknown;
2296
+ };
2297
+ content: {
2298
+ "application/json": {
2299
+ error: {
2300
+ code: string;
2301
+ details?: unknown;
2302
+ message: string;
2303
+ };
2304
+ /** @constant */
2305
+ success: false;
2306
+ };
2307
+ };
2308
+ };
2309
+ /** @description Response for status 500 */
2310
+ 500: {
2311
+ headers: {
2312
+ [name: string]: unknown;
2313
+ };
2314
+ content: {
2315
+ "application/json": {
2316
+ error: {
2317
+ code: string;
2318
+ details?: unknown;
2319
+ message: string;
2320
+ };
2321
+ /** @constant */
2322
+ success: false;
2323
+ };
2324
+ };
2325
+ };
2326
+ };
2327
+ };
2328
+ deleteV1GamesByGameIdItemsByItemId: {
2329
+ parameters: {
2330
+ query?: never;
2331
+ header?: never;
2332
+ path: {
2333
+ gameId: string;
2334
+ itemId: string;
2335
+ };
2336
+ cookie?: never;
2337
+ };
2338
+ requestBody?: never;
2339
+ responses: {
2340
+ /** @description Response for status 200 */
2341
+ 200: {
2342
+ headers: {
2343
+ [name: string]: unknown;
2344
+ };
2345
+ content: {
2346
+ "application/json": {
2347
+ data: {
2348
+ deleted: boolean;
2349
+ item: {
2350
+ bitsCost: (string | number) | null;
2351
+ /** Format: date-time */
2352
+ createdAt: string;
2353
+ description: string | null;
2354
+ gameId: string;
2355
+ iconUrl: string | null;
2356
+ id: string;
2357
+ /** @enum {string} */
2358
+ itemType: "TIER_UNLOCK" | "CONSUMABLE" | "ONE_TIME";
2359
+ name: string;
2360
+ slug: string;
2361
+ /** @enum {string} */
2362
+ status: "ACTIVE" | "PENDING" | "INACTIVE";
2363
+ tier: (string | number) | null;
2364
+ /** Format: date-time */
2365
+ updatedAt: string;
2366
+ };
2367
+ itemId: string;
2368
+ };
2369
+ /** @constant */
2370
+ success: true;
2371
+ };
2372
+ };
2373
+ };
2374
+ /** @description Response for status 401 */
2375
+ 401: {
2376
+ headers: {
2377
+ [name: string]: unknown;
2378
+ };
2379
+ content: {
2380
+ "application/json": {
2381
+ error: {
2382
+ code: string;
2383
+ details?: unknown;
2384
+ message: string;
2385
+ };
2386
+ /** @constant */
2387
+ success: false;
2388
+ };
2389
+ };
2390
+ };
2391
+ /** @description Response for status 403 */
2392
+ 403: {
2393
+ headers: {
2394
+ [name: string]: unknown;
2395
+ };
2396
+ content: {
2397
+ "application/json": {
2398
+ error: {
2399
+ code: string;
2400
+ details?: unknown;
2401
+ message: string;
2402
+ };
2403
+ /** @constant */
2404
+ success: false;
2405
+ };
2406
+ };
2407
+ };
2408
+ /** @description Response for status 404 */
2409
+ 404: {
2410
+ headers: {
2411
+ [name: string]: unknown;
2412
+ };
2413
+ content: {
2414
+ "application/json": {
2415
+ error: {
2416
+ code: string;
2417
+ details?: unknown;
2418
+ message: string;
2419
+ };
2420
+ /** @constant */
2421
+ success: false;
2422
+ };
2423
+ };
2424
+ };
2425
+ /** @description Response for status 429 */
2426
+ 429: {
2427
+ headers: {
2428
+ [name: string]: unknown;
2429
+ };
2430
+ content: {
2431
+ "application/json": {
2432
+ error: {
2433
+ code: string;
2434
+ details?: unknown;
2435
+ message: string;
2436
+ };
2437
+ /** @constant */
2438
+ success: false;
2439
+ };
2440
+ };
2441
+ };
2442
+ /** @description Response for status 500 */
2443
+ 500: {
2444
+ headers: {
2445
+ [name: string]: unknown;
2446
+ };
2447
+ content: {
2448
+ "application/json": {
2449
+ error: {
2450
+ code: string;
2451
+ details?: unknown;
2452
+ message: string;
2453
+ };
2454
+ /** @constant */
2455
+ success: false;
2456
+ };
2457
+ };
2458
+ };
2459
+ };
2460
+ };
2461
+ "getV1GamesByGameIdLaunch-readiness": {
2462
+ parameters: {
2463
+ query?: {
2464
+ versionId?: string;
2465
+ };
2466
+ header?: never;
2467
+ path: {
2468
+ gameId: string;
2469
+ };
2470
+ cookie?: never;
2471
+ };
2472
+ requestBody?: never;
2473
+ responses: {
2474
+ /** @description Response for status 200 */
2475
+ 200: {
2476
+ headers: {
2477
+ [name: string]: unknown;
2478
+ };
2479
+ content: {
2480
+ "application/json": {
2481
+ data: {
2482
+ blockers: {
2483
+ code: string;
2484
+ fix: string;
2485
+ message: string;
2486
+ }[];
2487
+ gameId: string;
2488
+ readyForSubmission: boolean;
2489
+ /** @enum {string} */
2490
+ status: "draft" | "blocked" | "review" | "approved" | "live";
2491
+ valid: boolean;
2492
+ versionId: string;
2493
+ };
2494
+ /** @constant */
2495
+ success: true;
2496
+ };
2497
+ };
2498
+ };
2499
+ /** @description Response for status 401 */
2500
+ 401: {
2501
+ headers: {
2502
+ [name: string]: unknown;
2503
+ };
2504
+ content: {
2505
+ "application/json": {
2506
+ error: {
2507
+ code: string;
2508
+ details?: unknown;
2509
+ message: string;
2510
+ };
2511
+ /** @constant */
2512
+ success: false;
2513
+ };
2514
+ };
2515
+ };
2516
+ /** @description Response for status 403 */
2517
+ 403: {
2518
+ headers: {
2519
+ [name: string]: unknown;
2520
+ };
2521
+ content: {
2522
+ "application/json": {
2523
+ error: {
2524
+ code: string;
2525
+ details?: unknown;
2526
+ message: string;
2527
+ };
2528
+ /** @constant */
2529
+ success: false;
2530
+ };
2531
+ };
2532
+ };
2533
+ /** @description Response for status 404 */
2534
+ 404: {
2535
+ headers: {
2536
+ [name: string]: unknown;
2537
+ };
2538
+ content: {
2539
+ "application/json": {
2540
+ error: {
2541
+ code: string;
2542
+ details?: unknown;
2543
+ message: string;
2544
+ };
2545
+ /** @constant */
2546
+ success: false;
2547
+ };
2548
+ };
2549
+ };
2550
+ /** @description Response for status 429 */
2551
+ 429: {
2552
+ headers: {
2553
+ [name: string]: unknown;
2554
+ };
2555
+ content: {
2556
+ "application/json": {
2557
+ error: {
2558
+ code: string;
2559
+ details?: unknown;
2560
+ message: string;
2561
+ };
2562
+ /** @constant */
2563
+ success: false;
2564
+ };
2565
+ };
2566
+ };
2567
+ /** @description Response for status 500 */
2568
+ 500: {
2569
+ headers: {
2570
+ [name: string]: unknown;
2571
+ };
2572
+ content: {
2573
+ "application/json": {
2574
+ error: {
2575
+ code: string;
2576
+ details?: unknown;
2577
+ message: string;
2578
+ };
2579
+ /** @constant */
2580
+ success: false;
2581
+ };
2582
+ };
2583
+ };
2584
+ };
2585
+ };
2586
+ postV1GamesByGameIdSpritesGenerate: {
2587
+ parameters: {
2588
+ query?: never;
2589
+ header?: never;
2590
+ path: {
2591
+ gameId: string;
2592
+ };
2593
+ cookie?: never;
2594
+ };
2595
+ requestBody: {
2596
+ content: {
2597
+ "application/json": {
2598
+ gridSize?: string | number;
2599
+ /** Format: uri */
2600
+ imageUrl?: string;
2601
+ prompt: string;
2602
+ };
2603
+ "application/x-www-form-urlencoded": {
2604
+ gridSize?: string | number;
2605
+ /** Format: uri */
2606
+ imageUrl?: string;
2607
+ prompt: string;
2608
+ };
2609
+ "multipart/form-data": {
2610
+ gridSize?: string | number;
2611
+ /** Format: uri */
2612
+ imageUrl?: string;
2613
+ prompt: string;
2614
+ };
2615
+ };
2616
+ };
2617
+ responses: {
2618
+ /** @description Response for status 200 */
2619
+ 200: {
2620
+ headers: {
2621
+ [name: string]: unknown;
2622
+ };
2623
+ content: {
2624
+ "application/json": {
2625
+ data: {
2626
+ metadata: {
2627
+ gridDimensions: string;
2628
+ gridSize: number;
2629
+ };
2630
+ promptOriginal: string;
2631
+ promptRewritten: string;
2632
+ spriteUrl: string;
2633
+ transparentSpriteUrl: string;
2634
+ warnings: string[];
2635
+ };
2636
+ /** @constant */
2637
+ success: true;
2638
+ };
2639
+ };
2640
+ };
2641
+ /** @description Response for status 401 */
2642
+ 401: {
2643
+ headers: {
2644
+ [name: string]: unknown;
2645
+ };
2646
+ content: {
2647
+ "application/json": {
2648
+ error: {
2649
+ code: string;
2650
+ details?: unknown;
2651
+ message: string;
2652
+ };
2653
+ /** @constant */
2654
+ success: false;
2655
+ };
2656
+ };
2657
+ };
2658
+ /** @description Response for status 403 */
2659
+ 403: {
2660
+ headers: {
2661
+ [name: string]: unknown;
2662
+ };
2663
+ content: {
2664
+ "application/json": {
2665
+ error: {
2666
+ code: string;
2667
+ details?: unknown;
2668
+ message: string;
2669
+ };
2670
+ /** @constant */
2671
+ success: false;
2672
+ };
2673
+ };
2674
+ };
2675
+ /** @description Response for status 404 */
2676
+ 404: {
2677
+ headers: {
2678
+ [name: string]: unknown;
2679
+ };
2680
+ content: {
2681
+ "application/json": {
2682
+ error: {
2683
+ code: string;
2684
+ details?: unknown;
2685
+ message: string;
2686
+ };
2687
+ /** @constant */
2688
+ success: false;
2689
+ };
2690
+ };
2691
+ };
2692
+ /** @description Response for status 429 */
2693
+ 429: {
2694
+ headers: {
2695
+ [name: string]: unknown;
2696
+ };
2697
+ content: {
2698
+ "application/json": {
2699
+ error: {
2700
+ code: string;
2701
+ details?: unknown;
2702
+ message: string;
2703
+ };
2704
+ /** @constant */
2705
+ success: false;
2706
+ };
2707
+ };
2708
+ };
2709
+ /** @description Response for status 500 */
2710
+ 500: {
2711
+ headers: {
2712
+ [name: string]: unknown;
2713
+ };
2714
+ content: {
2715
+ "application/json": {
2716
+ error: {
2717
+ code: string;
2718
+ details?: unknown;
2719
+ message: string;
2720
+ };
2721
+ /** @constant */
2722
+ success: false;
2723
+ };
2724
+ };
2725
+ };
2726
+ };
2727
+ };
2728
+ getV1GamesByGameIdVersions: {
2729
+ parameters: {
2730
+ query?: never;
2731
+ header?: never;
2732
+ path: {
2733
+ gameId: string;
2734
+ };
2735
+ cookie?: never;
2736
+ };
2737
+ requestBody?: never;
2738
+ responses: {
2739
+ /** @description Response for status 200 */
2740
+ 200: {
2741
+ headers: {
2742
+ [name: string]: unknown;
2743
+ };
2744
+ content: {
2745
+ "application/json": {
2746
+ data: {
2747
+ gameId: string;
2748
+ liveVersionId: string | null;
2749
+ versions: unknown[];
2750
+ };
2751
+ /** @constant */
2752
+ success: true;
2753
+ };
2754
+ };
2755
+ };
2756
+ /** @description Response for status 401 */
2757
+ 401: {
2758
+ headers: {
2759
+ [name: string]: unknown;
2760
+ };
2761
+ content: {
2762
+ "application/json": {
2763
+ error: {
2764
+ code: string;
2765
+ details?: unknown;
2766
+ message: string;
2767
+ };
2768
+ /** @constant */
2769
+ success: false;
2770
+ };
2771
+ };
2772
+ };
2773
+ /** @description Response for status 403 */
2774
+ 403: {
2775
+ headers: {
2776
+ [name: string]: unknown;
2777
+ };
2778
+ content: {
2779
+ "application/json": {
2780
+ error: {
2781
+ code: string;
2782
+ details?: unknown;
2783
+ message: string;
2784
+ };
2785
+ /** @constant */
2786
+ success: false;
2787
+ };
2788
+ };
2789
+ };
2790
+ /** @description Response for status 404 */
2791
+ 404: {
2792
+ headers: {
2793
+ [name: string]: unknown;
2794
+ };
2795
+ content: {
2796
+ "application/json": {
2797
+ error: {
2798
+ code: string;
2799
+ details?: unknown;
2800
+ message: string;
2801
+ };
2802
+ /** @constant */
2803
+ success: false;
2804
+ };
2805
+ };
2806
+ };
2807
+ /** @description Response for status 429 */
2808
+ 429: {
2809
+ headers: {
2810
+ [name: string]: unknown;
2811
+ };
2812
+ content: {
2813
+ "application/json": {
2814
+ error: {
2815
+ code: string;
2816
+ details?: unknown;
2817
+ message: string;
2818
+ };
2819
+ /** @constant */
2820
+ success: false;
2821
+ };
2822
+ };
2823
+ };
2824
+ /** @description Response for status 500 */
2825
+ 500: {
2826
+ headers: {
2827
+ [name: string]: unknown;
2828
+ };
2829
+ content: {
2830
+ "application/json": {
2831
+ error: {
2832
+ code: string;
2833
+ details?: unknown;
2834
+ message: string;
2835
+ };
2836
+ /** @constant */
2837
+ success: false;
2838
+ };
2839
+ };
2840
+ };
2841
+ };
2842
+ };
2843
+ getV1GamesByGameIdVersionsByVersionId: {
2844
+ parameters: {
2845
+ query?: never;
2846
+ header?: never;
2847
+ path: {
2848
+ gameId: string;
2849
+ versionId: string;
2850
+ };
2851
+ cookie?: never;
2852
+ };
2853
+ requestBody?: never;
2854
+ responses: {
2855
+ /** @description Response for status 200 */
2856
+ 200: {
2857
+ headers: {
2858
+ [name: string]: unknown;
2859
+ };
2860
+ content: {
2861
+ "application/json": {
2862
+ data: {
2863
+ version: unknown;
2864
+ };
2865
+ /** @constant */
2866
+ success: true;
2867
+ };
2868
+ };
2869
+ };
2870
+ /** @description Response for status 401 */
2871
+ 401: {
2872
+ headers: {
2873
+ [name: string]: unknown;
2874
+ };
2875
+ content: {
2876
+ "application/json": {
2877
+ error: {
2878
+ code: string;
2879
+ details?: unknown;
2880
+ message: string;
2881
+ };
2882
+ /** @constant */
2883
+ success: false;
2884
+ };
2885
+ };
2886
+ };
2887
+ /** @description Response for status 403 */
2888
+ 403: {
2889
+ headers: {
2890
+ [name: string]: unknown;
2891
+ };
2892
+ content: {
2893
+ "application/json": {
2894
+ error: {
2895
+ code: string;
2896
+ details?: unknown;
2897
+ message: string;
2898
+ };
2899
+ /** @constant */
2900
+ success: false;
2901
+ };
2902
+ };
2903
+ };
2904
+ /** @description Response for status 404 */
2905
+ 404: {
2906
+ headers: {
2907
+ [name: string]: unknown;
2908
+ };
2909
+ content: {
2910
+ "application/json": {
2911
+ error: {
2912
+ code: string;
2913
+ details?: unknown;
2914
+ message: string;
2915
+ };
2916
+ /** @constant */
2917
+ success: false;
2918
+ };
2919
+ };
2920
+ };
2921
+ /** @description Response for status 429 */
2922
+ 429: {
2923
+ headers: {
2924
+ [name: string]: unknown;
2925
+ };
2926
+ content: {
2927
+ "application/json": {
2928
+ error: {
2929
+ code: string;
2930
+ details?: unknown;
2931
+ message: string;
2932
+ };
2933
+ /** @constant */
2934
+ success: false;
2935
+ };
2936
+ };
2937
+ };
2938
+ /** @description Response for status 500 */
2939
+ 500: {
2940
+ headers: {
2941
+ [name: string]: unknown;
2942
+ };
2943
+ content: {
2944
+ "application/json": {
2945
+ error: {
2946
+ code: string;
2947
+ details?: unknown;
2948
+ message: string;
2949
+ };
2950
+ /** @constant */
2951
+ success: false;
2952
+ };
2953
+ };
2954
+ };
2955
+ };
2956
+ };
2957
+ getV1GamesByGameIdVersionsByVersionIdCode: {
2958
+ parameters: {
2959
+ query?: never;
2960
+ header?: never;
2961
+ path: {
2962
+ gameId: string;
2963
+ versionId: string;
2964
+ };
2965
+ cookie?: never;
2966
+ };
2967
+ requestBody?: never;
2968
+ responses: {
2969
+ /** @description Response for status 200 */
2970
+ 200: {
2971
+ headers: {
2972
+ [name: string]: unknown;
2973
+ };
2974
+ content: {
2975
+ "application/json": {
2976
+ data: {
2977
+ code: string | null;
2978
+ gameId: string;
2979
+ versionId: string;
2980
+ };
2981
+ /** @constant */
2982
+ success: true;
2983
+ };
2984
+ };
2985
+ };
2986
+ /** @description Response for status 401 */
2987
+ 401: {
2988
+ headers: {
2989
+ [name: string]: unknown;
2990
+ };
2991
+ content: {
2992
+ "application/json": {
2993
+ error: {
2994
+ code: string;
2995
+ details?: unknown;
2996
+ message: string;
2997
+ };
2998
+ /** @constant */
2999
+ success: false;
3000
+ };
3001
+ };
3002
+ };
3003
+ /** @description Response for status 403 */
3004
+ 403: {
3005
+ headers: {
3006
+ [name: string]: unknown;
3007
+ };
3008
+ content: {
3009
+ "application/json": {
3010
+ error: {
3011
+ code: string;
3012
+ details?: unknown;
3013
+ message: string;
3014
+ };
3015
+ /** @constant */
3016
+ success: false;
3017
+ };
3018
+ };
3019
+ };
3020
+ /** @description Response for status 404 */
3021
+ 404: {
3022
+ headers: {
3023
+ [name: string]: unknown;
3024
+ };
3025
+ content: {
3026
+ "application/json": {
3027
+ error: {
3028
+ code: string;
3029
+ details?: unknown;
3030
+ message: string;
3031
+ };
3032
+ /** @constant */
3033
+ success: false;
3034
+ };
3035
+ };
3036
+ };
3037
+ /** @description Response for status 429 */
3038
+ 429: {
3039
+ headers: {
3040
+ [name: string]: unknown;
3041
+ };
3042
+ content: {
3043
+ "application/json": {
3044
+ error: {
3045
+ code: string;
3046
+ details?: unknown;
3047
+ message: string;
3048
+ };
3049
+ /** @constant */
3050
+ success: false;
3051
+ };
3052
+ };
3053
+ };
3054
+ /** @description Response for status 500 */
3055
+ 500: {
3056
+ headers: {
3057
+ [name: string]: unknown;
3058
+ };
3059
+ content: {
3060
+ "application/json": {
3061
+ error: {
3062
+ code: string;
3063
+ details?: unknown;
3064
+ message: string;
3065
+ };
3066
+ /** @constant */
3067
+ success: false;
3068
+ };
3069
+ };
3070
+ };
3071
+ };
3072
+ };
3073
+ postV1GamesByGameIdVersionsByVersionIdCode: {
3074
+ parameters: {
3075
+ query?: never;
3076
+ header?: never;
3077
+ path: {
3078
+ gameId: string;
3079
+ versionId: string;
3080
+ };
3081
+ cookie?: never;
3082
+ };
3083
+ requestBody: {
3084
+ content: {
3085
+ "application/json": {
3086
+ code: string;
3087
+ };
3088
+ "application/x-www-form-urlencoded": {
3089
+ code: string;
3090
+ };
3091
+ "multipart/form-data": {
3092
+ code: string;
3093
+ };
3094
+ };
3095
+ };
3096
+ responses: {
3097
+ /** @description Response for status 200 */
3098
+ 200: {
3099
+ headers: {
3100
+ [name: string]: unknown;
3101
+ };
3102
+ content: {
3103
+ "application/json": {
3104
+ data: {
3105
+ gameId: string;
3106
+ /** @constant */
3107
+ success: true;
3108
+ versionId: string;
3109
+ };
3110
+ /** @constant */
3111
+ success: true;
3112
+ };
3113
+ };
3114
+ };
3115
+ /** @description Response for status 400 */
3116
+ 400: {
3117
+ headers: {
3118
+ [name: string]: unknown;
3119
+ };
3120
+ content: {
3121
+ "application/json": {
3122
+ error: {
3123
+ code: string;
3124
+ details?: unknown;
3125
+ message: string;
3126
+ };
3127
+ /** @constant */
3128
+ success: false;
3129
+ };
3130
+ };
3131
+ };
3132
+ /** @description Response for status 401 */
3133
+ 401: {
3134
+ headers: {
3135
+ [name: string]: unknown;
3136
+ };
3137
+ content: {
3138
+ "application/json": {
3139
+ error: {
3140
+ code: string;
3141
+ details?: unknown;
3142
+ message: string;
3143
+ };
3144
+ /** @constant */
3145
+ success: false;
3146
+ };
3147
+ };
3148
+ };
3149
+ /** @description Response for status 403 */
3150
+ 403: {
3151
+ headers: {
3152
+ [name: string]: unknown;
3153
+ };
3154
+ content: {
3155
+ "application/json": {
3156
+ error: {
3157
+ code: string;
3158
+ details?: unknown;
3159
+ message: string;
3160
+ };
3161
+ /** @constant */
3162
+ success: false;
3163
+ };
3164
+ };
3165
+ };
3166
+ /** @description Response for status 404 */
3167
+ 404: {
3168
+ headers: {
3169
+ [name: string]: unknown;
3170
+ };
3171
+ content: {
3172
+ "application/json": {
3173
+ error: {
3174
+ code: string;
3175
+ details?: unknown;
3176
+ message: string;
3177
+ };
3178
+ /** @constant */
3179
+ success: false;
3180
+ };
3181
+ };
3182
+ };
3183
+ /** @description Response for status 429 */
3184
+ 429: {
3185
+ headers: {
3186
+ [name: string]: unknown;
3187
+ };
3188
+ content: {
3189
+ "application/json": {
3190
+ error: {
3191
+ code: string;
3192
+ details?: unknown;
3193
+ message: string;
3194
+ };
3195
+ /** @constant */
3196
+ success: false;
3197
+ };
3198
+ };
3199
+ };
3200
+ /** @description Response for status 500 */
3201
+ 500: {
3202
+ headers: {
3203
+ [name: string]: unknown;
3204
+ };
3205
+ content: {
3206
+ "application/json": {
3207
+ error: {
3208
+ code: string;
3209
+ details?: unknown;
3210
+ message: string;
3211
+ };
3212
+ /** @constant */
3213
+ success: false;
3214
+ };
3215
+ };
3216
+ };
3217
+ };
3218
+ };
3219
+ getV1GamesByGameIdVersionsByVersionIdStatus: {
3220
+ parameters: {
3221
+ query?: never;
3222
+ header?: never;
3223
+ path: {
3224
+ gameId: string;
3225
+ versionId: string;
3226
+ };
3227
+ cookie?: never;
3228
+ };
3229
+ requestBody?: never;
3230
+ responses: {
3231
+ /** @description Response for status 200 */
3232
+ 200: {
3233
+ headers: {
3234
+ [name: string]: unknown;
3235
+ };
3236
+ content: {
3237
+ "application/json": {
3238
+ data: {
3239
+ approvedAt: (Record<string, never> | string | number) | null;
3240
+ feedback: string | null;
3241
+ gameId: string;
3242
+ launchedAt: (Record<string, never> | string | number) | null;
3243
+ /** @enum {string} */
3244
+ status: "draft" | "blocked" | "review" | "approved" | "live";
3245
+ submittedAt: (Record<string, never> | string | number) | null;
3246
+ versionId: string;
3247
+ };
3248
+ /** @constant */
3249
+ success: true;
3250
+ };
3251
+ };
3252
+ };
3253
+ /** @description Response for status 401 */
3254
+ 401: {
3255
+ headers: {
3256
+ [name: string]: unknown;
3257
+ };
3258
+ content: {
3259
+ "application/json": {
3260
+ error: {
3261
+ code: string;
3262
+ details?: unknown;
3263
+ message: string;
3264
+ };
3265
+ /** @constant */
3266
+ success: false;
3267
+ };
3268
+ };
3269
+ };
3270
+ /** @description Response for status 403 */
3271
+ 403: {
3272
+ headers: {
3273
+ [name: string]: unknown;
3274
+ };
3275
+ content: {
3276
+ "application/json": {
3277
+ error: {
3278
+ code: string;
3279
+ details?: unknown;
3280
+ message: string;
3281
+ };
3282
+ /** @constant */
3283
+ success: false;
3284
+ };
3285
+ };
3286
+ };
3287
+ /** @description Response for status 404 */
3288
+ 404: {
3289
+ headers: {
3290
+ [name: string]: unknown;
3291
+ };
3292
+ content: {
3293
+ "application/json": {
3294
+ error: {
3295
+ code: string;
3296
+ details?: unknown;
3297
+ message: string;
3298
+ };
3299
+ /** @constant */
3300
+ success: false;
3301
+ };
3302
+ };
3303
+ };
3304
+ /** @description Response for status 429 */
3305
+ 429: {
3306
+ headers: {
3307
+ [name: string]: unknown;
3308
+ };
3309
+ content: {
3310
+ "application/json": {
3311
+ error: {
3312
+ code: string;
3313
+ details?: unknown;
3314
+ message: string;
3315
+ };
3316
+ /** @constant */
3317
+ success: false;
3318
+ };
3319
+ };
3320
+ };
3321
+ /** @description Response for status 500 */
3322
+ 500: {
3323
+ headers: {
3324
+ [name: string]: unknown;
3325
+ };
3326
+ content: {
3327
+ "application/json": {
3328
+ error: {
3329
+ code: string;
3330
+ details?: unknown;
3331
+ message: string;
3332
+ };
3333
+ /** @constant */
3334
+ success: false;
3335
+ };
3336
+ };
3337
+ };
3338
+ };
3339
+ };
3340
+ getV1GamesByGameIdVersionsByVersionIdThread: {
3341
+ parameters: {
3342
+ query?: never;
3343
+ header?: never;
3344
+ path: {
3345
+ gameId: string;
3346
+ versionId: string;
3347
+ };
3348
+ cookie?: never;
3349
+ };
3350
+ requestBody?: never;
3351
+ responses: {
3352
+ /** @description Response for status 200 */
3353
+ 200: {
3354
+ headers: {
3355
+ [name: string]: unknown;
3356
+ };
3357
+ content: {
3358
+ "application/json": {
3359
+ data: {
3360
+ gameId: string;
3361
+ html: string | null;
3362
+ threadId: string | null;
3363
+ versionId: string;
3364
+ };
3365
+ /** @constant */
3366
+ success: true;
3367
+ };
3368
+ };
3369
+ };
3370
+ /** @description Response for status 401 */
3371
+ 401: {
3372
+ headers: {
3373
+ [name: string]: unknown;
3374
+ };
3375
+ content: {
3376
+ "application/json": {
3377
+ error: {
3378
+ code: string;
3379
+ details?: unknown;
3380
+ message: string;
3381
+ };
3382
+ /** @constant */
3383
+ success: false;
3384
+ };
3385
+ };
3386
+ };
3387
+ /** @description Response for status 403 */
3388
+ 403: {
3389
+ headers: {
3390
+ [name: string]: unknown;
3391
+ };
3392
+ content: {
3393
+ "application/json": {
3394
+ error: {
3395
+ code: string;
3396
+ details?: unknown;
3397
+ message: string;
3398
+ };
3399
+ /** @constant */
3400
+ success: false;
3401
+ };
3402
+ };
3403
+ };
3404
+ /** @description Response for status 404 */
3405
+ 404: {
3406
+ headers: {
3407
+ [name: string]: unknown;
3408
+ };
3409
+ content: {
3410
+ "application/json": {
3411
+ error: {
3412
+ code: string;
3413
+ details?: unknown;
3414
+ message: string;
3415
+ };
3416
+ /** @constant */
3417
+ success: false;
3418
+ };
3419
+ };
3420
+ };
3421
+ /** @description Response for status 429 */
3422
+ 429: {
3423
+ headers: {
3424
+ [name: string]: unknown;
3425
+ };
3426
+ content: {
3427
+ "application/json": {
3428
+ error: {
3429
+ code: string;
3430
+ details?: unknown;
3431
+ message: string;
3432
+ };
3433
+ /** @constant */
3434
+ success: false;
3435
+ };
3436
+ };
3437
+ };
3438
+ /** @description Response for status 500 */
3439
+ 500: {
3440
+ headers: {
3441
+ [name: string]: unknown;
3442
+ };
3443
+ content: {
3444
+ "application/json": {
3445
+ error: {
3446
+ code: string;
3447
+ details?: unknown;
3448
+ message: string;
3449
+ };
3450
+ /** @constant */
3451
+ success: false;
3452
+ };
3453
+ };
3454
+ };
3455
+ };
3456
+ };
3457
+ getV1GamesByGameIdVersionsByVersionIdValidate: {
3458
+ parameters: {
3459
+ query?: never;
3460
+ header?: never;
3461
+ path: {
3462
+ gameId: string;
3463
+ versionId: string;
3464
+ };
3465
+ cookie?: never;
3466
+ };
3467
+ requestBody?: never;
3468
+ responses: {
3469
+ /** @description Response for status 200 */
3470
+ 200: {
3471
+ headers: {
3472
+ [name: string]: unknown;
3473
+ };
3474
+ content: {
3475
+ "application/json": {
3476
+ data: {
3477
+ blockers: {
3478
+ code: string;
3479
+ fix: string;
3480
+ message: string;
3481
+ }[];
3482
+ gameId: string;
3483
+ valid: boolean;
3484
+ versionId: string;
3485
+ };
3486
+ /** @constant */
3487
+ success: true;
3488
+ };
3489
+ };
3490
+ };
3491
+ /** @description Response for status 401 */
3492
+ 401: {
3493
+ headers: {
3494
+ [name: string]: unknown;
3495
+ };
3496
+ content: {
3497
+ "application/json": {
3498
+ error: {
3499
+ code: string;
3500
+ details?: unknown;
3501
+ message: string;
3502
+ };
3503
+ /** @constant */
3504
+ success: false;
3505
+ };
3506
+ };
3507
+ };
3508
+ /** @description Response for status 403 */
3509
+ 403: {
3510
+ headers: {
3511
+ [name: string]: unknown;
3512
+ };
3513
+ content: {
3514
+ "application/json": {
3515
+ error: {
3516
+ code: string;
3517
+ details?: unknown;
3518
+ message: string;
3519
+ };
3520
+ /** @constant */
3521
+ success: false;
3522
+ };
3523
+ };
3524
+ };
3525
+ /** @description Response for status 404 */
3526
+ 404: {
3527
+ headers: {
3528
+ [name: string]: unknown;
3529
+ };
3530
+ content: {
3531
+ "application/json": {
3532
+ error: {
3533
+ code: string;
3534
+ details?: unknown;
3535
+ message: string;
3536
+ };
3537
+ /** @constant */
3538
+ success: false;
3539
+ };
3540
+ };
3541
+ };
3542
+ /** @description Response for status 429 */
3543
+ 429: {
3544
+ headers: {
3545
+ [name: string]: unknown;
3546
+ };
3547
+ content: {
3548
+ "application/json": {
3549
+ error: {
3550
+ code: string;
3551
+ details?: unknown;
3552
+ message: string;
3553
+ };
3554
+ /** @constant */
3555
+ success: false;
3556
+ };
3557
+ };
3558
+ };
3559
+ /** @description Response for status 500 */
3560
+ 500: {
3561
+ headers: {
3562
+ [name: string]: unknown;
3563
+ };
3564
+ content: {
3565
+ "application/json": {
3566
+ error: {
3567
+ code: string;
3568
+ details?: unknown;
3569
+ message: string;
3570
+ };
3571
+ /** @constant */
3572
+ success: false;
3573
+ };
3574
+ };
3575
+ };
3576
+ };
3577
+ };
3578
+ getV1MetadataCategories: {
3579
+ parameters: {
3580
+ query?: never;
3581
+ header?: never;
3582
+ path?: never;
3583
+ cookie?: never;
3584
+ };
3585
+ requestBody?: never;
3586
+ responses: {
3587
+ /** @description Response for status 200 */
3588
+ 200: {
3589
+ headers: {
3590
+ [name: string]: unknown;
3591
+ };
3592
+ content: {
3593
+ "application/json": {
3594
+ data: {
3595
+ categories: string[];
3596
+ };
3597
+ /** @constant */
3598
+ success: true;
3599
+ };
3600
+ };
3601
+ };
3602
+ /** @description Response for status 401 */
3603
+ 401: {
3604
+ headers: {
3605
+ [name: string]: unknown;
3606
+ };
3607
+ content: {
3608
+ "application/json": {
3609
+ error: {
3610
+ code: string;
3611
+ details?: unknown;
3612
+ message: string;
3613
+ };
3614
+ /** @constant */
3615
+ success: false;
3616
+ };
3617
+ };
3618
+ };
3619
+ /** @description Response for status 403 */
3620
+ 403: {
3621
+ headers: {
3622
+ [name: string]: unknown;
3623
+ };
3624
+ content: {
3625
+ "application/json": {
3626
+ error: {
3627
+ code: string;
3628
+ details?: unknown;
3629
+ message: string;
3630
+ };
3631
+ /** @constant */
3632
+ success: false;
3633
+ };
3634
+ };
3635
+ };
3636
+ /** @description Response for status 429 */
3637
+ 429: {
3638
+ headers: {
3639
+ [name: string]: unknown;
3640
+ };
3641
+ content: {
3642
+ "application/json": {
3643
+ error: {
3644
+ code: string;
3645
+ details?: unknown;
3646
+ message: string;
3647
+ };
3648
+ /** @constant */
3649
+ success: false;
3650
+ };
3651
+ };
3652
+ };
3653
+ /** @description Response for status 500 */
3654
+ 500: {
3655
+ headers: {
3656
+ [name: string]: unknown;
3657
+ };
3658
+ content: {
3659
+ "application/json": {
3660
+ error: {
3661
+ code: string;
3662
+ details?: unknown;
3663
+ message: string;
3664
+ };
3665
+ /** @constant */
3666
+ success: false;
3667
+ };
3668
+ };
3669
+ };
3670
+ };
3671
+ };
3672
+ }
3673
+ //# sourceMappingURL=server-api.d.ts.map