@takaro/apiclient 0.0.0-dev.cd89c68 → 0.0.0-dev.d0e0bc3

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.
@@ -2664,6 +2664,50 @@ export const DomainUpdateInputDTOStateEnum = {
2664
2664
  export type DomainUpdateInputDTOStateEnum =
2665
2665
  (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
2666
2666
 
2667
+ /**
2668
+ *
2669
+ * @export
2670
+ * @interface EffectiveStorefrontConfigDTO
2671
+ */
2672
+ export interface EffectiveStorefrontConfigDTO {
2673
+ /**
2674
+ *
2675
+ * @type {string}
2676
+ * @memberof EffectiveStorefrontConfigDTO
2677
+ */
2678
+ templateId: string;
2679
+ /**
2680
+ *
2681
+ * @type {object}
2682
+ * @memberof EffectiveStorefrontConfigDTO
2683
+ */
2684
+ values: object;
2685
+ /**
2686
+ *
2687
+ * @type {object}
2688
+ * @memberof EffectiveStorefrontConfigDTO
2689
+ */
2690
+ schema: object;
2691
+ }
2692
+ /**
2693
+ *
2694
+ * @export
2695
+ * @interface EffectiveStorefrontConfigOutputDTOAPI
2696
+ */
2697
+ export interface EffectiveStorefrontConfigOutputDTOAPI {
2698
+ /**
2699
+ *
2700
+ * @type {EffectiveStorefrontConfigDTO}
2701
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2702
+ */
2703
+ data: EffectiveStorefrontConfigDTO;
2704
+ /**
2705
+ *
2706
+ * @type {MetadataOutput}
2707
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2708
+ */
2709
+ meta: MetadataOutput;
2710
+ }
2667
2711
  /**
2668
2712
  *
2669
2713
  * @export
@@ -3322,6 +3366,315 @@ export interface EventEntityKilled {
3322
3366
  */
3323
3367
  msg?: string;
3324
3368
  }
3369
+ /**
3370
+ *
3371
+ * @export
3372
+ * @interface EventExploreCursorDTO
3373
+ */
3374
+ export interface EventExploreCursorDTO {
3375
+ /**
3376
+ *
3377
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
3378
+ * @memberof EventExploreCursorDTO
3379
+ */
3380
+ time: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
3381
+ /**
3382
+ *
3383
+ * @type {string}
3384
+ * @memberof EventExploreCursorDTO
3385
+ */
3386
+ id: string;
3387
+ }
3388
+ /**
3389
+ *
3390
+ * @export
3391
+ * @interface EventExploreFiltersDTO
3392
+ */
3393
+ export interface EventExploreFiltersDTO {
3394
+ /**
3395
+ *
3396
+ * @type {Array<string>}
3397
+ * @memberof EventExploreFiltersDTO
3398
+ */
3399
+ id?: Array<string>;
3400
+ /**
3401
+ *
3402
+ * @type {Array<string>}
3403
+ * @memberof EventExploreFiltersDTO
3404
+ */
3405
+ eventName?: Array<EventExploreFiltersDTOEventNameEnum>;
3406
+ /**
3407
+ *
3408
+ * @type {Array<string>}
3409
+ * @memberof EventExploreFiltersDTO
3410
+ */
3411
+ playerId?: Array<string>;
3412
+ /**
3413
+ *
3414
+ * @type {Array<string>}
3415
+ * @memberof EventExploreFiltersDTO
3416
+ */
3417
+ gameserverId?: Array<string>;
3418
+ /**
3419
+ *
3420
+ * @type {Array<string>}
3421
+ * @memberof EventExploreFiltersDTO
3422
+ */
3423
+ moduleId?: Array<string>;
3424
+ /**
3425
+ *
3426
+ * @type {Array<string>}
3427
+ * @memberof EventExploreFiltersDTO
3428
+ */
3429
+ userId?: Array<string>;
3430
+ /**
3431
+ *
3432
+ * @type {Array<string>}
3433
+ * @memberof EventExploreFiltersDTO
3434
+ */
3435
+ actingUserId?: Array<string>;
3436
+ /**
3437
+ *
3438
+ * @type {Array<string>}
3439
+ * @memberof EventExploreFiltersDTO
3440
+ */
3441
+ actingModuleId?: Array<string>;
3442
+ }
3443
+
3444
+ export const EventExploreFiltersDTOEventNameEnum = {
3445
+ RoleAssigned: 'role-assigned',
3446
+ RoleRemoved: 'role-removed',
3447
+ RoleCreated: 'role-created',
3448
+ RoleUpdated: 'role-updated',
3449
+ RoleDeleted: 'role-deleted',
3450
+ CommandExecuted: 'command-executed',
3451
+ CommandExecutionDenied: 'command-execution-denied',
3452
+ HookExecuted: 'hook-executed',
3453
+ CronjobExecuted: 'cronjob-executed',
3454
+ CurrencyAdded: 'currency-added',
3455
+ CurrencyDeducted: 'currency-deducted',
3456
+ CurrencyResetAll: 'currency-reset-all',
3457
+ SettingsSet: 'settings-set',
3458
+ PlayerNewIpDetected: 'player-new-ip-detected',
3459
+ PlayerNewNameDetected: 'player-new-name-detected',
3460
+ ServerStatusChanged: 'server-status-changed',
3461
+ ModuleCreated: 'module-created',
3462
+ ModuleUpdated: 'module-updated',
3463
+ ModuleDeleted: 'module-deleted',
3464
+ ModuleInstalled: 'module-installed',
3465
+ ModuleUninstalled: 'module-uninstalled',
3466
+ PlayerCreated: 'player-created',
3467
+ ShopListingCreated: 'shop-listing-created',
3468
+ ShopListingUpdated: 'shop-listing-updated',
3469
+ ShopListingDeleted: 'shop-listing-deleted',
3470
+ ShopOrderCreated: 'shop-order-created',
3471
+ ShopOrderStatusChanged: 'shop-order-status-changed',
3472
+ ShopOrderDeliveryFailed: 'shop-order-delivery-failed',
3473
+ PlayerLinked: 'player-linked',
3474
+ GameserverCreated: 'gameserver-created',
3475
+ GameserverUpdated: 'gameserver-updated',
3476
+ GameserverDeleted: 'gameserver-deleted',
3477
+ PlayerBanned: 'player-banned',
3478
+ PlayerUnbanned: 'player-unbanned',
3479
+ PlayerDeleted: 'player-deleted',
3480
+ ShopActionExecuted: 'shop-action-executed',
3481
+ PlayerInventoryChanged: 'player-inventory-changed',
3482
+ EventRateLimited: 'event-rate-limited',
3483
+ PlayerSyncSnapshot: 'player-sync-snapshot',
3484
+ PlayerConnected: 'player-connected',
3485
+ PlayerDisconnected: 'player-disconnected',
3486
+ ChatMessage: 'chat-message',
3487
+ PlayerDeath: 'player-death',
3488
+ EntityKilled: 'entity-killed',
3489
+ } as const;
3490
+
3491
+ export type EventExploreFiltersDTOEventNameEnum =
3492
+ (typeof EventExploreFiltersDTOEventNameEnum)[keyof typeof EventExploreFiltersDTOEventNameEnum];
3493
+
3494
+ /**
3495
+ *
3496
+ * @export
3497
+ * @interface EventExploreInputDTO
3498
+ */
3499
+ export interface EventExploreInputDTO {
3500
+ /**
3501
+ *
3502
+ * @type {EventExploreFiltersDTO}
3503
+ * @memberof EventExploreInputDTO
3504
+ */
3505
+ filters?: EventExploreFiltersDTO;
3506
+ /**
3507
+ *
3508
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
3509
+ * @memberof EventExploreInputDTO
3510
+ */
3511
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
3512
+ /**
3513
+ *
3514
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
3515
+ * @memberof EventExploreInputDTO
3516
+ */
3517
+ startDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
3518
+ /**
3519
+ *
3520
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
3521
+ * @memberof EventExploreInputDTO
3522
+ */
3523
+ endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
3524
+ /**
3525
+ *
3526
+ * @type {EventExploreCursorDTO}
3527
+ * @memberof EventExploreInputDTO
3528
+ */
3529
+ cursor?: EventExploreCursorDTO;
3530
+ /**
3531
+ *
3532
+ * @type {number}
3533
+ * @memberof EventExploreInputDTO
3534
+ */
3535
+ limit?: number;
3536
+ }
3537
+ /**
3538
+ *
3539
+ * @export
3540
+ * @interface EventExploreOutputDTO
3541
+ */
3542
+ export interface EventExploreOutputDTO {
3543
+ /**
3544
+ *
3545
+ * @type {Array<EventExploreRowDTO>}
3546
+ * @memberof EventExploreOutputDTO
3547
+ */
3548
+ rows: Array<EventExploreRowDTO>;
3549
+ /**
3550
+ *
3551
+ * @type {any}
3552
+ * @memberof EventExploreOutputDTO
3553
+ */
3554
+ nextCursor?: any;
3555
+ }
3556
+ /**
3557
+ *
3558
+ * @export
3559
+ * @interface EventExploreOutputDTOAPI
3560
+ */
3561
+ export interface EventExploreOutputDTOAPI {
3562
+ /**
3563
+ *
3564
+ * @type {EventExploreOutputDTO}
3565
+ * @memberof EventExploreOutputDTOAPI
3566
+ */
3567
+ data: EventExploreOutputDTO;
3568
+ /**
3569
+ *
3570
+ * @type {MetadataOutput}
3571
+ * @memberof EventExploreOutputDTOAPI
3572
+ */
3573
+ meta: MetadataOutput;
3574
+ }
3575
+ /**
3576
+ *
3577
+ * @export
3578
+ * @interface EventExploreRowDTO
3579
+ */
3580
+ export interface EventExploreRowDTO {
3581
+ /**
3582
+ *
3583
+ * @type {string}
3584
+ * @memberof EventExploreRowDTO
3585
+ */
3586
+ id: string;
3587
+ /**
3588
+ *
3589
+ * @type {string}
3590
+ * @memberof EventExploreRowDTO
3591
+ */
3592
+ eventName: string;
3593
+ /**
3594
+ *
3595
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
3596
+ * @memberof EventExploreRowDTO
3597
+ */
3598
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
3599
+ /**
3600
+ *
3601
+ * @type {string}
3602
+ * @memberof EventExploreRowDTO
3603
+ */
3604
+ playerId?: string;
3605
+ /**
3606
+ *
3607
+ * @type {string}
3608
+ * @memberof EventExploreRowDTO
3609
+ */
3610
+ playerName?: string;
3611
+ /**
3612
+ *
3613
+ * @type {string}
3614
+ * @memberof EventExploreRowDTO
3615
+ */
3616
+ gameserverId?: string;
3617
+ /**
3618
+ *
3619
+ * @type {string}
3620
+ * @memberof EventExploreRowDTO
3621
+ */
3622
+ gameServerName?: string;
3623
+ /**
3624
+ *
3625
+ * @type {string}
3626
+ * @memberof EventExploreRowDTO
3627
+ */
3628
+ moduleId?: string;
3629
+ /**
3630
+ *
3631
+ * @type {string}
3632
+ * @memberof EventExploreRowDTO
3633
+ */
3634
+ moduleName?: string;
3635
+ /**
3636
+ *
3637
+ * @type {string}
3638
+ * @memberof EventExploreRowDTO
3639
+ */
3640
+ userId?: string;
3641
+ /**
3642
+ *
3643
+ * @type {string}
3644
+ * @memberof EventExploreRowDTO
3645
+ */
3646
+ userName?: string;
3647
+ /**
3648
+ *
3649
+ * @type {string}
3650
+ * @memberof EventExploreRowDTO
3651
+ */
3652
+ actingUserId?: string;
3653
+ /**
3654
+ *
3655
+ * @type {string}
3656
+ * @memberof EventExploreRowDTO
3657
+ */
3658
+ actingUserName?: string;
3659
+ /**
3660
+ *
3661
+ * @type {string}
3662
+ * @memberof EventExploreRowDTO
3663
+ */
3664
+ actingModuleId?: string;
3665
+ /**
3666
+ *
3667
+ * @type {string}
3668
+ * @memberof EventExploreRowDTO
3669
+ */
3670
+ actingModuleName?: string;
3671
+ /**
3672
+ *
3673
+ * @type {object}
3674
+ * @memberof EventExploreRowDTO
3675
+ */
3676
+ meta: object;
3677
+ }
3325
3678
  /**
3326
3679
  *
3327
3680
  * @export
@@ -3826,6 +4179,165 @@ export const EventSearchInputDTOSortDirectionEnum = {
3826
4179
  export type EventSearchInputDTOSortDirectionEnum =
3827
4180
  (typeof EventSearchInputDTOSortDirectionEnum)[keyof typeof EventSearchInputDTOSortDirectionEnum];
3828
4181
 
4182
+ /**
4183
+ *
4184
+ * @export
4185
+ * @interface EventVolumeDimensionTotalDTO
4186
+ */
4187
+ export interface EventVolumeDimensionTotalDTO {
4188
+ /**
4189
+ *
4190
+ * @type {string}
4191
+ * @memberof EventVolumeDimensionTotalDTO
4192
+ */
4193
+ key: string;
4194
+ /**
4195
+ *
4196
+ * @type {string}
4197
+ * @memberof EventVolumeDimensionTotalDTO
4198
+ */
4199
+ name?: string;
4200
+ /**
4201
+ *
4202
+ * @type {number}
4203
+ * @memberof EventVolumeDimensionTotalDTO
4204
+ */
4205
+ count: number;
4206
+ }
4207
+ /**
4208
+ *
4209
+ * @export
4210
+ * @interface EventVolumeInputDTO
4211
+ */
4212
+ export interface EventVolumeInputDTO {
4213
+ /**
4214
+ *
4215
+ * @type {EventExploreFiltersDTO}
4216
+ * @memberof EventVolumeInputDTO
4217
+ */
4218
+ filters?: EventExploreFiltersDTO;
4219
+ /**
4220
+ *
4221
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
4222
+ * @memberof EventVolumeInputDTO
4223
+ */
4224
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
4225
+ /**
4226
+ *
4227
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
4228
+ * @memberof EventVolumeInputDTO
4229
+ */
4230
+ startDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
4231
+ /**
4232
+ *
4233
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
4234
+ * @memberof EventVolumeInputDTO
4235
+ */
4236
+ endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
4237
+ /**
4238
+ *
4239
+ * @type {string}
4240
+ * @memberof EventVolumeInputDTO
4241
+ */
4242
+ groupBy?: EventVolumeInputDTOGroupByEnum;
4243
+ /**
4244
+ *
4245
+ * @type {string}
4246
+ * @memberof EventVolumeInputDTO
4247
+ */
4248
+ period?: string;
4249
+ }
4250
+
4251
+ export const EventVolumeInputDTOGroupByEnum = {
4252
+ EventName: 'eventName',
4253
+ GameServerId: 'gameServerId',
4254
+ } as const;
4255
+
4256
+ export type EventVolumeInputDTOGroupByEnum =
4257
+ (typeof EventVolumeInputDTOGroupByEnum)[keyof typeof EventVolumeInputDTOGroupByEnum];
4258
+
4259
+ /**
4260
+ *
4261
+ * @export
4262
+ * @interface EventVolumeOutputDTO
4263
+ */
4264
+ export interface EventVolumeOutputDTO {
4265
+ /**
4266
+ *
4267
+ * @type {Array<EventVolumeSeriesDTO>}
4268
+ * @memberof EventVolumeOutputDTO
4269
+ */
4270
+ series: Array<EventVolumeSeriesDTO>;
4271
+ /**
4272
+ *
4273
+ * @type {Array<EventVolumeDimensionTotalDTO>}
4274
+ * @memberof EventVolumeOutputDTO
4275
+ */
4276
+ totalsByDimension: Array<EventVolumeDimensionTotalDTO>;
4277
+ }
4278
+ /**
4279
+ *
4280
+ * @export
4281
+ * @interface EventVolumeOutputDTOAPI
4282
+ */
4283
+ export interface EventVolumeOutputDTOAPI {
4284
+ /**
4285
+ *
4286
+ * @type {EventVolumeOutputDTO}
4287
+ * @memberof EventVolumeOutputDTOAPI
4288
+ */
4289
+ data: EventVolumeOutputDTO;
4290
+ /**
4291
+ *
4292
+ * @type {MetadataOutput}
4293
+ * @memberof EventVolumeOutputDTOAPI
4294
+ */
4295
+ meta: MetadataOutput;
4296
+ }
4297
+ /**
4298
+ *
4299
+ * @export
4300
+ * @interface EventVolumePointDTO
4301
+ */
4302
+ export interface EventVolumePointDTO {
4303
+ /**
4304
+ *
4305
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
4306
+ * @memberof EventVolumePointDTO
4307
+ */
4308
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
4309
+ /**
4310
+ *
4311
+ * @type {number}
4312
+ * @memberof EventVolumePointDTO
4313
+ */
4314
+ value: number;
4315
+ }
4316
+ /**
4317
+ *
4318
+ * @export
4319
+ * @interface EventVolumeSeriesDTO
4320
+ */
4321
+ export interface EventVolumeSeriesDTO {
4322
+ /**
4323
+ *
4324
+ * @type {string}
4325
+ * @memberof EventVolumeSeriesDTO
4326
+ */
4327
+ key: string;
4328
+ /**
4329
+ *
4330
+ * @type {string}
4331
+ * @memberof EventVolumeSeriesDTO
4332
+ */
4333
+ name?: string;
4334
+ /**
4335
+ *
4336
+ * @type {Array<EventVolumePointDTO>}
4337
+ * @memberof EventVolumeSeriesDTO
4338
+ */
4339
+ points: Array<EventVolumePointDTO>;
4340
+ }
3829
4341
  /**
3830
4342
  *
3831
4343
  * @export
@@ -6976,6 +7488,32 @@ export interface LoginOutputDTOAPI {
6976
7488
  */
6977
7489
  meta: MetadataOutput;
6978
7490
  }
7491
+ /**
7492
+ *
7493
+ * @export
7494
+ * @interface LoginQueryParams
7495
+ */
7496
+ export interface LoginQueryParams {
7497
+ /**
7498
+ *
7499
+ * @type {string}
7500
+ * @memberof LoginQueryParams
7501
+ */
7502
+ redirect?: string;
7503
+ }
7504
+ /**
7505
+ *
7506
+ * @export
7507
+ * @interface LogoutQueryParams
7508
+ */
7509
+ export interface LogoutQueryParams {
7510
+ /**
7511
+ *
7512
+ * @type {string}
7513
+ * @memberof LogoutQueryParams
7514
+ */
7515
+ redirect?: string;
7516
+ }
6979
7517
  /**
6980
7518
  *
6981
7519
  * @export
@@ -7099,7 +7637,7 @@ export interface MeOutputDTO {
7099
7637
  * @type {UserOutputWithRolesDTO}
7100
7638
  * @memberof MeOutputDTO
7101
7639
  */
7102
- user: UserOutputWithRolesDTO;
7640
+ user?: UserOutputWithRolesDTO;
7103
7641
  /**
7104
7642
  *
7105
7643
  * @type {Array<DomainOutputDTO>}
@@ -7111,7 +7649,7 @@ export interface MeOutputDTO {
7111
7649
  * @type {string}
7112
7650
  * @memberof MeOutputDTO
7113
7651
  */
7114
- domain: string;
7652
+ domain?: string;
7115
7653
  /**
7116
7654
  *
7117
7655
  * @type {PlayerOutputWithRolesDTO}
@@ -7200,6 +7738,62 @@ export interface MessageSendInputDTO {
7200
7738
  */
7201
7739
  opts?: IMessageOptsDTO;
7202
7740
  }
7741
+ /**
7742
+ *
7743
+ * @export
7744
+ * @interface MetaFilterGroupOrLeafDTO
7745
+ */
7746
+ export interface MetaFilterGroupOrLeafDTO {
7747
+ /**
7748
+ *
7749
+ * @type {string}
7750
+ * @memberof MetaFilterGroupOrLeafDTO
7751
+ */
7752
+ logicalOperator?: MetaFilterGroupOrLeafDTOLogicalOperatorEnum;
7753
+ /**
7754
+ *
7755
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
7756
+ * @memberof MetaFilterGroupOrLeafDTO
7757
+ */
7758
+ filters?: Array<MetaFilterGroupOrLeafDTO>;
7759
+ /**
7760
+ *
7761
+ * @type {string}
7762
+ * @memberof MetaFilterGroupOrLeafDTO
7763
+ */
7764
+ field?: string;
7765
+ /**
7766
+ *
7767
+ * @type {string}
7768
+ * @memberof MetaFilterGroupOrLeafDTO
7769
+ */
7770
+ operator?: MetaFilterGroupOrLeafDTOOperatorEnum;
7771
+ /**
7772
+ *
7773
+ * @type {string}
7774
+ * @memberof MetaFilterGroupOrLeafDTO
7775
+ */
7776
+ value?: string;
7777
+ }
7778
+
7779
+ export const MetaFilterGroupOrLeafDTOLogicalOperatorEnum = {
7780
+ And: 'AND',
7781
+ Or: 'OR',
7782
+ } as const;
7783
+
7784
+ export type MetaFilterGroupOrLeafDTOLogicalOperatorEnum =
7785
+ (typeof MetaFilterGroupOrLeafDTOLogicalOperatorEnum)[keyof typeof MetaFilterGroupOrLeafDTOLogicalOperatorEnum];
7786
+ export const MetaFilterGroupOrLeafDTOOperatorEnum = {
7787
+ Equal: '=',
7788
+ NotEqual: '!=',
7789
+ GreaterThan: '>',
7790
+ LessThan: '<',
7791
+ ArrayContains: 'array_contains',
7792
+ } as const;
7793
+
7794
+ export type MetaFilterGroupOrLeafDTOOperatorEnum =
7795
+ (typeof MetaFilterGroupOrLeafDTOOperatorEnum)[keyof typeof MetaFilterGroupOrLeafDTOOperatorEnum];
7796
+
7203
7797
  /**
7204
7798
  *
7205
7799
  * @export
@@ -7549,6 +8143,98 @@ export interface ModuleInstallParamId {
7549
8143
  */
7550
8144
  gameServerId: string;
7551
8145
  }
8146
+ /**
8147
+ *
8148
+ * @export
8149
+ * @interface ModuleInstallationKpisDTO
8150
+ */
8151
+ export interface ModuleInstallationKpisDTO {
8152
+ /**
8153
+ *
8154
+ * @type {number}
8155
+ * @memberof ModuleInstallationKpisDTO
8156
+ */
8157
+ runs: number;
8158
+ /**
8159
+ *
8160
+ * @type {number}
8161
+ * @memberof ModuleInstallationKpisDTO
8162
+ */
8163
+ failures: number;
8164
+ /**
8165
+ *
8166
+ * @type {number}
8167
+ * @memberof ModuleInstallationKpisDTO
8168
+ */
8169
+ successRate: number;
8170
+ }
8171
+ /**
8172
+ *
8173
+ * @export
8174
+ * @interface ModuleInstallationKpisDTOAPI
8175
+ */
8176
+ export interface ModuleInstallationKpisDTOAPI {
8177
+ /**
8178
+ *
8179
+ * @type {ModuleInstallationKpisDTO}
8180
+ * @memberof ModuleInstallationKpisDTOAPI
8181
+ */
8182
+ data: ModuleInstallationKpisDTO;
8183
+ /**
8184
+ *
8185
+ * @type {MetadataOutput}
8186
+ * @memberof ModuleInstallationKpisDTOAPI
8187
+ */
8188
+ meta: MetadataOutput;
8189
+ }
8190
+ /**
8191
+ *
8192
+ * @export
8193
+ * @interface ModuleInstallationKpisQueryDTO
8194
+ */
8195
+ export interface ModuleInstallationKpisQueryDTO {
8196
+ /**
8197
+ *
8198
+ * @type {string}
8199
+ * @memberof ModuleInstallationKpisQueryDTO
8200
+ */
8201
+ startDate?: string;
8202
+ /**
8203
+ *
8204
+ * @type {string}
8205
+ * @memberof ModuleInstallationKpisQueryDTO
8206
+ */
8207
+ endDate?: string;
8208
+ /**
8209
+ *
8210
+ * @type {string}
8211
+ * @memberof ModuleInstallationKpisQueryDTO
8212
+ */
8213
+ gameServerId: string;
8214
+ /**
8215
+ *
8216
+ * @type {string}
8217
+ * @memberof ModuleInstallationKpisQueryDTO
8218
+ */
8219
+ moduleId: string;
8220
+ /**
8221
+ *
8222
+ * @type {string}
8223
+ * @memberof ModuleInstallationKpisQueryDTO
8224
+ */
8225
+ period?: ModuleInstallationKpisQueryDTOPeriodEnum;
8226
+ }
8227
+
8228
+ export const ModuleInstallationKpisQueryDTOPeriodEnum = {
8229
+ _24h: '24h',
8230
+ _7d: '7d',
8231
+ _30d: '30d',
8232
+ _90d: '90d',
8233
+ } as const;
8234
+
8235
+ export type ModuleInstallationKpisQueryDTOPeriodEnum =
8236
+ (typeof ModuleInstallationKpisQueryDTOPeriodEnum)[keyof typeof ModuleInstallationKpisQueryDTOPeriodEnum];
8237
+
7552
8238
  /**
7553
8239
  *
7554
8240
  * @export
@@ -8160,6 +8846,12 @@ export interface ModuleTransferVersionDTO {
8160
8846
  * @memberof ModuleTransferVersionDTO
8161
8847
  */
8162
8848
  uiSchema: string;
8849
+ /**
8850
+ *
8851
+ * @type {string}
8852
+ * @memberof ModuleTransferVersionDTO
8853
+ */
8854
+ defaultSystemConfig?: string;
8163
8855
  /**
8164
8856
  *
8165
8857
  * @type {Array<ICommand>}
@@ -8314,6 +9006,24 @@ export interface ModuleVersionOutputDTO {
8314
9006
  * @memberof ModuleVersionOutputDTO
8315
9007
  */
8316
9008
  moduleId: string;
9009
+ /**
9010
+ *
9011
+ * @type {string}
9012
+ * @memberof ModuleVersionOutputDTO
9013
+ */
9014
+ registryId?: string;
9015
+ /**
9016
+ *
9017
+ * @type {string}
9018
+ * @memberof ModuleVersionOutputDTO
9019
+ */
9020
+ sourceModuleName?: string;
9021
+ /**
9022
+ *
9023
+ * @type {string}
9024
+ * @memberof ModuleVersionOutputDTO
9025
+ */
9026
+ sourceVersion?: string;
8317
9027
  /**
8318
9028
  *
8319
9029
  * @type {Array<CronJobOutputDTO>}
@@ -8853,6 +9563,19 @@ export const ParamKeyKeyEnum = {
8853
9563
 
8854
9564
  export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
8855
9565
 
9566
+ /**
9567
+ *
9568
+ * @export
9569
+ * @interface ParamRoleId
9570
+ */
9571
+ export interface ParamRoleId {
9572
+ /**
9573
+ *
9574
+ * @type {string}
9575
+ * @memberof ParamRoleId
9576
+ */
9577
+ roleId: string;
9578
+ }
8856
9579
  /**
8857
9580
  *
8858
9581
  * @export
@@ -9177,6 +9900,94 @@ export interface PlayerActivityMixEntryDTOAPI {
9177
9900
  */
9178
9901
  meta: MetadataOutput;
9179
9902
  }
9903
+ /**
9904
+ *
9905
+ * @export
9906
+ * @interface PlayerBulkAssignRoleErrorDTO
9907
+ */
9908
+ export interface PlayerBulkAssignRoleErrorDTO {
9909
+ /**
9910
+ *
9911
+ * @type {string}
9912
+ * @memberof PlayerBulkAssignRoleErrorDTO
9913
+ */
9914
+ playerId: string;
9915
+ /**
9916
+ *
9917
+ * @type {string}
9918
+ * @memberof PlayerBulkAssignRoleErrorDTO
9919
+ */
9920
+ reason: string;
9921
+ }
9922
+ /**
9923
+ *
9924
+ * @export
9925
+ * @interface PlayerBulkAssignRoleInputDTO
9926
+ */
9927
+ export interface PlayerBulkAssignRoleInputDTO {
9928
+ /**
9929
+ *
9930
+ * @type {Array<string>}
9931
+ * @memberof PlayerBulkAssignRoleInputDTO
9932
+ */
9933
+ playerIds: Array<string>;
9934
+ /**
9935
+ *
9936
+ * @type {string}
9937
+ * @memberof PlayerBulkAssignRoleInputDTO
9938
+ */
9939
+ gameServerId?: string;
9940
+ /**
9941
+ *
9942
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
9943
+ * @memberof PlayerBulkAssignRoleInputDTO
9944
+ */
9945
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
9946
+ }
9947
+ /**
9948
+ *
9949
+ * @export
9950
+ * @interface PlayerBulkAssignRoleOutputDTO
9951
+ */
9952
+ export interface PlayerBulkAssignRoleOutputDTO {
9953
+ /**
9954
+ *
9955
+ * @type {number}
9956
+ * @memberof PlayerBulkAssignRoleOutputDTO
9957
+ */
9958
+ success: number;
9959
+ /**
9960
+ *
9961
+ * @type {number}
9962
+ * @memberof PlayerBulkAssignRoleOutputDTO
9963
+ */
9964
+ failed: number;
9965
+ /**
9966
+ *
9967
+ * @type {Array<PlayerBulkAssignRoleErrorDTO>}
9968
+ * @memberof PlayerBulkAssignRoleOutputDTO
9969
+ */
9970
+ errors: Array<PlayerBulkAssignRoleErrorDTO>;
9971
+ }
9972
+ /**
9973
+ *
9974
+ * @export
9975
+ * @interface PlayerBulkAssignRoleOutputDTOAPI
9976
+ */
9977
+ export interface PlayerBulkAssignRoleOutputDTOAPI {
9978
+ /**
9979
+ *
9980
+ * @type {PlayerBulkAssignRoleOutputDTO}
9981
+ * @memberof PlayerBulkAssignRoleOutputDTOAPI
9982
+ */
9983
+ data: PlayerBulkAssignRoleOutputDTO;
9984
+ /**
9985
+ *
9986
+ * @type {MetadataOutput}
9987
+ * @memberof PlayerBulkAssignRoleOutputDTOAPI
9988
+ */
9989
+ meta: MetadataOutput;
9990
+ }
9180
9991
  /**
9181
9992
  *
9182
9993
  * @export
@@ -10934,6 +11745,88 @@ export interface PlayersByItemInputDTO {
10934
11745
  */
10935
11746
  endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10936
11747
  }
11748
+ /**
11749
+ *
11750
+ * @export
11751
+ * @interface PogBulkAddCurrencyErrorDTO
11752
+ */
11753
+ export interface PogBulkAddCurrencyErrorDTO {
11754
+ /**
11755
+ *
11756
+ * @type {string}
11757
+ * @memberof PogBulkAddCurrencyErrorDTO
11758
+ */
11759
+ playerId: string;
11760
+ /**
11761
+ *
11762
+ * @type {string}
11763
+ * @memberof PogBulkAddCurrencyErrorDTO
11764
+ */
11765
+ reason: string;
11766
+ }
11767
+ /**
11768
+ *
11769
+ * @export
11770
+ * @interface PogBulkAddCurrencyInputDTO
11771
+ */
11772
+ export interface PogBulkAddCurrencyInputDTO {
11773
+ /**
11774
+ *
11775
+ * @type {Array<string>}
11776
+ * @memberof PogBulkAddCurrencyInputDTO
11777
+ */
11778
+ playerIds: Array<string>;
11779
+ /**
11780
+ *
11781
+ * @type {number}
11782
+ * @memberof PogBulkAddCurrencyInputDTO
11783
+ */
11784
+ amount: number;
11785
+ }
11786
+ /**
11787
+ *
11788
+ * @export
11789
+ * @interface PogBulkAddCurrencyOutputDTO
11790
+ */
11791
+ export interface PogBulkAddCurrencyOutputDTO {
11792
+ /**
11793
+ *
11794
+ * @type {number}
11795
+ * @memberof PogBulkAddCurrencyOutputDTO
11796
+ */
11797
+ success: number;
11798
+ /**
11799
+ *
11800
+ * @type {number}
11801
+ * @memberof PogBulkAddCurrencyOutputDTO
11802
+ */
11803
+ failed: number;
11804
+ /**
11805
+ *
11806
+ * @type {Array<PogBulkAddCurrencyErrorDTO>}
11807
+ * @memberof PogBulkAddCurrencyOutputDTO
11808
+ */
11809
+ errors: Array<PogBulkAddCurrencyErrorDTO>;
11810
+ }
11811
+ /**
11812
+ *
11813
+ * @export
11814
+ * @interface PogBulkAddCurrencyOutputDTOAPI
11815
+ */
11816
+ export interface PogBulkAddCurrencyOutputDTOAPI {
11817
+ /**
11818
+ *
11819
+ * @type {PogBulkAddCurrencyOutputDTO}
11820
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
11821
+ */
11822
+ data: PogBulkAddCurrencyOutputDTO;
11823
+ /**
11824
+ *
11825
+ * @type {MetadataOutput}
11826
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
11827
+ */
11828
+ meta: MetadataOutput;
11829
+ }
10937
11830
  /**
10938
11831
  *
10939
11832
  * @export
@@ -11199,6 +12092,386 @@ export interface RedirectQs {
11199
12092
  */
11200
12093
  redirect: string;
11201
12094
  }
12095
+ /**
12096
+ *
12097
+ * @export
12098
+ * @interface RegistryCreateDTO
12099
+ */
12100
+ export interface RegistryCreateDTO {
12101
+ /**
12102
+ *
12103
+ * @type {string}
12104
+ * @memberof RegistryCreateDTO
12105
+ */
12106
+ url: string;
12107
+ /**
12108
+ *
12109
+ * @type {string}
12110
+ * @memberof RegistryCreateDTO
12111
+ */
12112
+ name?: string;
12113
+ /**
12114
+ *
12115
+ * @type {string}
12116
+ * @memberof RegistryCreateDTO
12117
+ */
12118
+ description?: string;
12119
+ }
12120
+ /**
12121
+ *
12122
+ * @export
12123
+ * @interface RegistryInstallBody
12124
+ */
12125
+ export interface RegistryInstallBody {
12126
+ /**
12127
+ *
12128
+ * @type {string}
12129
+ * @memberof RegistryInstallBody
12130
+ */
12131
+ moduleName: string;
12132
+ /**
12133
+ *
12134
+ * @type {string}
12135
+ * @memberof RegistryInstallBody
12136
+ */
12137
+ version: string;
12138
+ }
12139
+ /**
12140
+ *
12141
+ * @export
12142
+ * @interface RegistryInstallInputDTO
12143
+ */
12144
+ export interface RegistryInstallInputDTO {
12145
+ /**
12146
+ *
12147
+ * @type {string}
12148
+ * @memberof RegistryInstallInputDTO
12149
+ */
12150
+ moduleName: string;
12151
+ /**
12152
+ *
12153
+ * @type {string}
12154
+ * @memberof RegistryInstallInputDTO
12155
+ */
12156
+ version: string;
12157
+ }
12158
+ /**
12159
+ *
12160
+ * @export
12161
+ * @interface RegistryListOutputDTO
12162
+ */
12163
+ export interface RegistryListOutputDTO {
12164
+ /**
12165
+ *
12166
+ * @type {string}
12167
+ * @memberof RegistryListOutputDTO
12168
+ */
12169
+ url: string;
12170
+ /**
12171
+ *
12172
+ * @type {string}
12173
+ * @memberof RegistryListOutputDTO
12174
+ */
12175
+ name: string;
12176
+ /**
12177
+ *
12178
+ * @type {string}
12179
+ * @memberof RegistryListOutputDTO
12180
+ */
12181
+ description?: string;
12182
+ /**
12183
+ *
12184
+ * @type {Array<RegistryModuleVersionOutputDTO>}
12185
+ * @memberof RegistryListOutputDTO
12186
+ */
12187
+ modules?: Array<RegistryModuleVersionOutputDTO>;
12188
+ /**
12189
+ *
12190
+ * @type {string}
12191
+ * @memberof RegistryListOutputDTO
12192
+ */
12193
+ lastFetchError?: string;
12194
+ /**
12195
+ *
12196
+ * @type {string}
12197
+ * @memberof RegistryListOutputDTO
12198
+ */
12199
+ id: string;
12200
+ /**
12201
+ *
12202
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12203
+ * @memberof RegistryListOutputDTO
12204
+ */
12205
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12206
+ /**
12207
+ *
12208
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12209
+ * @memberof RegistryListOutputDTO
12210
+ */
12211
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12212
+ }
12213
+ /**
12214
+ *
12215
+ * @export
12216
+ * @interface RegistryListOutputDTOAPI
12217
+ */
12218
+ export interface RegistryListOutputDTOAPI {
12219
+ /**
12220
+ *
12221
+ * @type {Array<RegistryListOutputDTO>}
12222
+ * @memberof RegistryListOutputDTOAPI
12223
+ */
12224
+ data: Array<RegistryListOutputDTO>;
12225
+ /**
12226
+ *
12227
+ * @type {MetadataOutput}
12228
+ * @memberof RegistryListOutputDTOAPI
12229
+ */
12230
+ meta: MetadataOutput;
12231
+ }
12232
+ /**
12233
+ *
12234
+ * @export
12235
+ * @interface RegistryManifestDTO
12236
+ */
12237
+ export interface RegistryManifestDTO {
12238
+ /**
12239
+ *
12240
+ * @type {string}
12241
+ * @memberof RegistryManifestDTO
12242
+ */
12243
+ name: string;
12244
+ /**
12245
+ *
12246
+ * @type {string}
12247
+ * @memberof RegistryManifestDTO
12248
+ */
12249
+ description?: string;
12250
+ /**
12251
+ *
12252
+ * @type {Array<RegistryManifestModuleDTO>}
12253
+ * @memberof RegistryManifestDTO
12254
+ */
12255
+ modules: Array<RegistryManifestModuleDTO>;
12256
+ }
12257
+ /**
12258
+ *
12259
+ * @export
12260
+ * @interface RegistryManifestModuleDTO
12261
+ */
12262
+ export interface RegistryManifestModuleDTO {
12263
+ /**
12264
+ *
12265
+ * @type {string}
12266
+ * @memberof RegistryManifestModuleDTO
12267
+ */
12268
+ name: string;
12269
+ /**
12270
+ *
12271
+ * @type {string}
12272
+ * @memberof RegistryManifestModuleDTO
12273
+ */
12274
+ latestVersion: string;
12275
+ /**
12276
+ *
12277
+ * @type {Array<string>}
12278
+ * @memberof RegistryManifestModuleDTO
12279
+ */
12280
+ versions: Array<string>;
12281
+ /**
12282
+ *
12283
+ * @type {string}
12284
+ * @memberof RegistryManifestModuleDTO
12285
+ */
12286
+ description?: string;
12287
+ }
12288
+ /**
12289
+ *
12290
+ * @export
12291
+ * @interface RegistryModuleVersionOutputDTO
12292
+ */
12293
+ export interface RegistryModuleVersionOutputDTO {
12294
+ /**
12295
+ *
12296
+ * @type {string}
12297
+ * @memberof RegistryModuleVersionOutputDTO
12298
+ */
12299
+ name: string;
12300
+ /**
12301
+ *
12302
+ * @type {Array<string>}
12303
+ * @memberof RegistryModuleVersionOutputDTO
12304
+ */
12305
+ versions: Array<string>;
12306
+ /**
12307
+ *
12308
+ * @type {string}
12309
+ * @memberof RegistryModuleVersionOutputDTO
12310
+ */
12311
+ latestVersion: string;
12312
+ /**
12313
+ *
12314
+ * @type {string}
12315
+ * @memberof RegistryModuleVersionOutputDTO
12316
+ */
12317
+ description?: string;
12318
+ }
12319
+ /**
12320
+ *
12321
+ * @export
12322
+ * @interface RegistryOutputDTO
12323
+ */
12324
+ export interface RegistryOutputDTO {
12325
+ /**
12326
+ *
12327
+ * @type {string}
12328
+ * @memberof RegistryOutputDTO
12329
+ */
12330
+ url: string;
12331
+ /**
12332
+ *
12333
+ * @type {string}
12334
+ * @memberof RegistryOutputDTO
12335
+ */
12336
+ name: string;
12337
+ /**
12338
+ *
12339
+ * @type {string}
12340
+ * @memberof RegistryOutputDTO
12341
+ */
12342
+ description?: string;
12343
+ /**
12344
+ *
12345
+ * @type {string}
12346
+ * @memberof RegistryOutputDTO
12347
+ */
12348
+ id: string;
12349
+ /**
12350
+ *
12351
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12352
+ * @memberof RegistryOutputDTO
12353
+ */
12354
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12355
+ /**
12356
+ *
12357
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12358
+ * @memberof RegistryOutputDTO
12359
+ */
12360
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12361
+ }
12362
+ /**
12363
+ *
12364
+ * @export
12365
+ * @interface RegistrySubscribeBody
12366
+ */
12367
+ export interface RegistrySubscribeBody {
12368
+ /**
12369
+ *
12370
+ * @type {string}
12371
+ * @memberof RegistrySubscribeBody
12372
+ */
12373
+ url: string;
12374
+ }
12375
+ /**
12376
+ *
12377
+ * @export
12378
+ * @interface RegistrySubscribeInputDTO
12379
+ */
12380
+ export interface RegistrySubscribeInputDTO {
12381
+ /**
12382
+ *
12383
+ * @type {string}
12384
+ * @memberof RegistrySubscribeInputDTO
12385
+ */
12386
+ url: string;
12387
+ }
12388
+ /**
12389
+ *
12390
+ * @export
12391
+ * @interface RegistryUpdateDTO
12392
+ */
12393
+ export interface RegistryUpdateDTO {
12394
+ /**
12395
+ *
12396
+ * @type {string}
12397
+ * @memberof RegistryUpdateDTO
12398
+ */
12399
+ name?: string;
12400
+ /**
12401
+ *
12402
+ * @type {string}
12403
+ * @memberof RegistryUpdateDTO
12404
+ */
12405
+ description?: string;
12406
+ }
12407
+ /**
12408
+ *
12409
+ * @export
12410
+ * @interface RegistryWithManifestOutputDTO
12411
+ */
12412
+ export interface RegistryWithManifestOutputDTO {
12413
+ /**
12414
+ *
12415
+ * @type {string}
12416
+ * @memberof RegistryWithManifestOutputDTO
12417
+ */
12418
+ url: string;
12419
+ /**
12420
+ *
12421
+ * @type {string}
12422
+ * @memberof RegistryWithManifestOutputDTO
12423
+ */
12424
+ name: string;
12425
+ /**
12426
+ *
12427
+ * @type {string}
12428
+ * @memberof RegistryWithManifestOutputDTO
12429
+ */
12430
+ description?: string;
12431
+ /**
12432
+ *
12433
+ * @type {object}
12434
+ * @memberof RegistryWithManifestOutputDTO
12435
+ */
12436
+ manifest?: object;
12437
+ /**
12438
+ *
12439
+ * @type {string}
12440
+ * @memberof RegistryWithManifestOutputDTO
12441
+ */
12442
+ id: string;
12443
+ /**
12444
+ *
12445
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12446
+ * @memberof RegistryWithManifestOutputDTO
12447
+ */
12448
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12449
+ /**
12450
+ *
12451
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12452
+ * @memberof RegistryWithManifestOutputDTO
12453
+ */
12454
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12455
+ }
12456
+ /**
12457
+ *
12458
+ * @export
12459
+ * @interface RegistryWithManifestOutputDTOAPI
12460
+ */
12461
+ export interface RegistryWithManifestOutputDTOAPI {
12462
+ /**
12463
+ *
12464
+ * @type {RegistryWithManifestOutputDTO}
12465
+ * @memberof RegistryWithManifestOutputDTOAPI
12466
+ */
12467
+ data: RegistryWithManifestOutputDTO;
12468
+ /**
12469
+ *
12470
+ * @type {MetadataOutput}
12471
+ * @memberof RegistryWithManifestOutputDTOAPI
12472
+ */
12473
+ meta: MetadataOutput;
12474
+ }
11202
12475
  /**
11203
12476
  *
11204
12477
  * @export
@@ -13991,6 +15264,175 @@ export interface SmallModuleVersionOutputDTO {
13991
15264
  */
13992
15265
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
13993
15266
  }
15267
+ /**
15268
+ *
15269
+ * @export
15270
+ * @interface StorefrontConfigCreateDTO
15271
+ */
15272
+ export interface StorefrontConfigCreateDTO {
15273
+ /**
15274
+ *
15275
+ * @type {string}
15276
+ * @memberof StorefrontConfigCreateDTO
15277
+ */
15278
+ gameServerId: string;
15279
+ /**
15280
+ *
15281
+ * @type {string}
15282
+ * @memberof StorefrontConfigCreateDTO
15283
+ */
15284
+ templateId: string;
15285
+ /**
15286
+ *
15287
+ * @type {object}
15288
+ * @memberof StorefrontConfigCreateDTO
15289
+ */
15290
+ values?: object;
15291
+ }
15292
+ /**
15293
+ *
15294
+ * @export
15295
+ * @interface StorefrontConfigOutputDTO
15296
+ */
15297
+ export interface StorefrontConfigOutputDTO {
15298
+ /**
15299
+ *
15300
+ * @type {string}
15301
+ * @memberof StorefrontConfigOutputDTO
15302
+ */
15303
+ gameServerId: string;
15304
+ /**
15305
+ *
15306
+ * @type {string}
15307
+ * @memberof StorefrontConfigOutputDTO
15308
+ */
15309
+ templateId: string;
15310
+ /**
15311
+ *
15312
+ * @type {object}
15313
+ * @memberof StorefrontConfigOutputDTO
15314
+ */
15315
+ values: object;
15316
+ /**
15317
+ *
15318
+ * @type {string}
15319
+ * @memberof StorefrontConfigOutputDTO
15320
+ */
15321
+ id: string;
15322
+ /**
15323
+ *
15324
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15325
+ * @memberof StorefrontConfigOutputDTO
15326
+ */
15327
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15328
+ /**
15329
+ *
15330
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15331
+ * @memberof StorefrontConfigOutputDTO
15332
+ */
15333
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15334
+ }
15335
+ /**
15336
+ *
15337
+ * @export
15338
+ * @interface StorefrontConfigUpdateDTO
15339
+ */
15340
+ export interface StorefrontConfigUpdateDTO {
15341
+ /**
15342
+ *
15343
+ * @type {string}
15344
+ * @memberof StorefrontConfigUpdateDTO
15345
+ */
15346
+ templateId?: string;
15347
+ /**
15348
+ *
15349
+ * @type {object}
15350
+ * @memberof StorefrontConfigUpdateDTO
15351
+ */
15352
+ values?: object;
15353
+ }
15354
+ /**
15355
+ *
15356
+ * @export
15357
+ * @interface StorefrontConfigUpsertBody
15358
+ */
15359
+ export interface StorefrontConfigUpsertBody {
15360
+ /**
15361
+ *
15362
+ * @type {string}
15363
+ * @memberof StorefrontConfigUpsertBody
15364
+ */
15365
+ templateId: string;
15366
+ /**
15367
+ *
15368
+ * @type {object}
15369
+ * @memberof StorefrontConfigUpsertBody
15370
+ */
15371
+ values: object;
15372
+ }
15373
+ /**
15374
+ *
15375
+ * @export
15376
+ * @interface StorefrontConfigUpsertDTO
15377
+ */
15378
+ export interface StorefrontConfigUpsertDTO {
15379
+ /**
15380
+ *
15381
+ * @type {string}
15382
+ * @memberof StorefrontConfigUpsertDTO
15383
+ */
15384
+ templateId: string;
15385
+ /**
15386
+ *
15387
+ * @type {object}
15388
+ * @memberof StorefrontConfigUpsertDTO
15389
+ */
15390
+ values: object;
15391
+ }
15392
+ /**
15393
+ *
15394
+ * @export
15395
+ * @interface StorefrontTemplateDTO
15396
+ */
15397
+ export interface StorefrontTemplateDTO {
15398
+ /**
15399
+ *
15400
+ * @type {string}
15401
+ * @memberof StorefrontTemplateDTO
15402
+ */
15403
+ id: string;
15404
+ /**
15405
+ *
15406
+ * @type {string}
15407
+ * @memberof StorefrontTemplateDTO
15408
+ */
15409
+ name: string;
15410
+ /**
15411
+ *
15412
+ * @type {object}
15413
+ * @memberof StorefrontTemplateDTO
15414
+ */
15415
+ schema: object;
15416
+ }
15417
+ /**
15418
+ *
15419
+ * @export
15420
+ * @interface StorefrontTemplateOutputArrayDTOAPI
15421
+ */
15422
+ export interface StorefrontTemplateOutputArrayDTOAPI {
15423
+ /**
15424
+ *
15425
+ * @type {Array<StorefrontTemplateDTO>}
15426
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15427
+ */
15428
+ data: Array<StorefrontTemplateDTO>;
15429
+ /**
15430
+ *
15431
+ * @type {MetadataOutput}
15432
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15433
+ */
15434
+ meta: MetadataOutput;
15435
+ }
13994
15436
  /**
13995
15437
  *
13996
15438
  * @export
@@ -17126,23 +18568,29 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17126
18568
  };
17127
18569
  },
17128
18570
  /**
17129
- * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
17130
- * @summary Get module item failure aggregate
18571
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
18572
+ * @summary Get per-installation module KPIs
18573
+ * @param {string} gameServerId
18574
+ * @param {string} moduleId
17131
18575
  * @param {string} [startDate]
17132
18576
  * @param {string} [endDate]
17133
- * @param {string} [gameServerId]
17134
- * @param {AnalyticsControllerGetModuleItemFailureLeaderboardPeriodEnum} [period]
18577
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
17135
18578
  * @param {*} [options] Override http request option.
17136
18579
  * @throws {RequiredError}
17137
18580
  */
17138
- analyticsControllerGetModuleItemFailureLeaderboard: async (
18581
+ analyticsControllerGetModuleInstallationKpis: async (
18582
+ gameServerId: string,
18583
+ moduleId: string,
17139
18584
  startDate?: string,
17140
18585
  endDate?: string,
17141
- gameServerId?: string,
17142
- period?: AnalyticsControllerGetModuleItemFailureLeaderboardPeriodEnum,
18586
+ period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum,
17143
18587
  options: RawAxiosRequestConfig = {},
17144
18588
  ): Promise<RequestArgs> => {
17145
- const localVarPath = `/analytics/modules/items/failures`;
18589
+ // verify required parameter 'gameServerId' is not null or undefined
18590
+ assertParamExists('analyticsControllerGetModuleInstallationKpis', 'gameServerId', gameServerId);
18591
+ // verify required parameter 'moduleId' is not null or undefined
18592
+ assertParamExists('analyticsControllerGetModuleInstallationKpis', 'moduleId', moduleId);
18593
+ const localVarPath = `/analytics/modules/installation-kpis`;
17146
18594
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17147
18595
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17148
18596
  let baseOptions;
@@ -17168,60 +18616,8 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17168
18616
  localVarQueryParameter['gameServerId'] = gameServerId;
17169
18617
  }
17170
18618
 
17171
- if (period !== undefined) {
17172
- localVarQueryParameter['period'] = period;
17173
- }
17174
-
17175
- setSearchParams(localVarUrlObj, localVarQueryParameter);
17176
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
17177
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
17178
-
17179
- return {
17180
- url: toPathString(localVarUrlObj),
17181
- options: localVarRequestOptions,
17182
- };
17183
- },
17184
- /**
17185
- * Returns one row per module-item type (hook, cron, command, shopAction) with total runs and failures. Zero-filled when no events exist so the response shape is stable. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemTypeSummary`
17186
- * @summary Get module item run/failure totals per type
17187
- * @param {string} [startDate]
17188
- * @param {string} [endDate]
17189
- * @param {string} [gameServerId]
17190
- * @param {AnalyticsControllerGetModuleItemTypeSummaryPeriodEnum} [period]
17191
- * @param {*} [options] Override http request option.
17192
- * @throws {RequiredError}
17193
- */
17194
- analyticsControllerGetModuleItemTypeSummary: async (
17195
- startDate?: string,
17196
- endDate?: string,
17197
- gameServerId?: string,
17198
- period?: AnalyticsControllerGetModuleItemTypeSummaryPeriodEnum,
17199
- options: RawAxiosRequestConfig = {},
17200
- ): Promise<RequestArgs> => {
17201
- const localVarPath = `/analytics/modules/items/summary`;
17202
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
17203
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17204
- let baseOptions;
17205
- if (configuration) {
17206
- baseOptions = configuration.baseOptions;
17207
- }
17208
-
17209
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
17210
- const localVarHeaderParameter = {} as any;
17211
- const localVarQueryParameter = {} as any;
17212
-
17213
- // authentication domainAuth required
17214
-
17215
- if (startDate !== undefined) {
17216
- localVarQueryParameter['startDate'] = startDate;
17217
- }
17218
-
17219
- if (endDate !== undefined) {
17220
- localVarQueryParameter['endDate'] = endDate;
17221
- }
17222
-
17223
- if (gameServerId !== undefined) {
17224
- localVarQueryParameter['gameServerId'] = gameServerId;
18619
+ if (moduleId !== undefined) {
18620
+ localVarQueryParameter['moduleId'] = moduleId;
17225
18621
  }
17226
18622
 
17227
18623
  if (period !== undefined) {
@@ -17238,23 +18634,23 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17238
18634
  };
17239
18635
  },
17240
18636
  /**
17241
- * Counts by status sourced from Postgres `shopOrder.status` (authoritative current state). Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `AnalyticsControllerGetOrderStatusMix`
17242
- * @summary Get shop order status distribution
18637
+ * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
18638
+ * @summary Get module item failure aggregate
17243
18639
  * @param {string} [startDate]
17244
18640
  * @param {string} [endDate]
17245
18641
  * @param {string} [gameServerId]
17246
- * @param {AnalyticsControllerGetOrderStatusMixPeriodEnum} [period]
18642
+ * @param {AnalyticsControllerGetModuleItemFailureLeaderboardPeriodEnum} [period]
17247
18643
  * @param {*} [options] Override http request option.
17248
18644
  * @throws {RequiredError}
17249
18645
  */
17250
- analyticsControllerGetOrderStatusMix: async (
18646
+ analyticsControllerGetModuleItemFailureLeaderboard: async (
17251
18647
  startDate?: string,
17252
18648
  endDate?: string,
17253
18649
  gameServerId?: string,
17254
- period?: AnalyticsControllerGetOrderStatusMixPeriodEnum,
18650
+ period?: AnalyticsControllerGetModuleItemFailureLeaderboardPeriodEnum,
17255
18651
  options: RawAxiosRequestConfig = {},
17256
18652
  ): Promise<RequestArgs> => {
17257
- const localVarPath = `/analytics/shop/order-status-mix`;
18653
+ const localVarPath = `/analytics/modules/items/failures`;
17258
18654
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17259
18655
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17260
18656
  let baseOptions;
@@ -17294,23 +18690,23 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17294
18690
  };
17295
18691
  },
17296
18692
  /**
17297
- * p50 and p95 of meta.ping from player-sync-snapshot events, bucketed by time. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetPingHealth`
17298
- * @summary Get ping health timeseries
18693
+ * Returns one row per module-item type (hook, cron, command, shopAction) with total runs and failures. Zero-filled when no events exist so the response shape is stable. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemTypeSummary`
18694
+ * @summary Get module item run/failure totals per type
17299
18695
  * @param {string} [startDate]
17300
18696
  * @param {string} [endDate]
17301
18697
  * @param {string} [gameServerId]
17302
- * @param {AnalyticsControllerGetPingHealthPeriodEnum} [period]
18698
+ * @param {AnalyticsControllerGetModuleItemTypeSummaryPeriodEnum} [period]
17303
18699
  * @param {*} [options] Override http request option.
17304
18700
  * @throws {RequiredError}
17305
18701
  */
17306
- analyticsControllerGetPingHealth: async (
18702
+ analyticsControllerGetModuleItemTypeSummary: async (
17307
18703
  startDate?: string,
17308
18704
  endDate?: string,
17309
18705
  gameServerId?: string,
17310
- period?: AnalyticsControllerGetPingHealthPeriodEnum,
18706
+ period?: AnalyticsControllerGetModuleItemTypeSummaryPeriodEnum,
17311
18707
  options: RawAxiosRequestConfig = {},
17312
18708
  ): Promise<RequestArgs> => {
17313
- const localVarPath = `/analytics/players/ping-health`;
18709
+ const localVarPath = `/analytics/modules/items/summary`;
17314
18710
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17315
18711
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17316
18712
  let baseOptions;
@@ -17350,23 +18746,23 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17350
18746
  };
17351
18747
  },
17352
18748
  /**
17353
- * Counts per event_name across the player-activity whitelist (chat, kills, deaths, inventory, shop orders, roles, currency). Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetPlayerActivityMix`
17354
- * @summary Get player activity mix
18749
+ * Counts by status sourced from Postgres `shopOrder.status` (authoritative current state). Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `AnalyticsControllerGetOrderStatusMix`
18750
+ * @summary Get shop order status distribution
17355
18751
  * @param {string} [startDate]
17356
18752
  * @param {string} [endDate]
17357
18753
  * @param {string} [gameServerId]
17358
- * @param {AnalyticsControllerGetPlayerActivityMixPeriodEnum} [period]
18754
+ * @param {AnalyticsControllerGetOrderStatusMixPeriodEnum} [period]
17359
18755
  * @param {*} [options] Override http request option.
17360
18756
  * @throws {RequiredError}
17361
18757
  */
17362
- analyticsControllerGetPlayerActivityMix: async (
18758
+ analyticsControllerGetOrderStatusMix: async (
17363
18759
  startDate?: string,
17364
18760
  endDate?: string,
17365
18761
  gameServerId?: string,
17366
- period?: AnalyticsControllerGetPlayerActivityMixPeriodEnum,
18762
+ period?: AnalyticsControllerGetOrderStatusMixPeriodEnum,
17367
18763
  options: RawAxiosRequestConfig = {},
17368
18764
  ): Promise<RequestArgs> => {
17369
- const localVarPath = `/analytics/players/activity-mix`;
18765
+ const localVarPath = `/analytics/shop/order-status-mix`;
17370
18766
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17371
18767
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17372
18768
  let baseOptions;
@@ -17406,23 +18802,23 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17406
18802
  };
17407
18803
  },
17408
18804
  /**
17409
- * Top players by K/D ratio — kills from entity-killed, deaths from player-death. Minimum 5 combined events. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetPlayerKillLeaderboard`
17410
- * @summary Get kill/death leaderboard
18805
+ * p50 and p95 of meta.ping from player-sync-snapshot events, bucketed by time. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetPingHealth`
18806
+ * @summary Get ping health timeseries
17411
18807
  * @param {string} [startDate]
17412
18808
  * @param {string} [endDate]
17413
18809
  * @param {string} [gameServerId]
17414
- * @param {AnalyticsControllerGetPlayerKillLeaderboardPeriodEnum} [period]
18810
+ * @param {AnalyticsControllerGetPingHealthPeriodEnum} [period]
17415
18811
  * @param {*} [options] Override http request option.
17416
18812
  * @throws {RequiredError}
17417
18813
  */
17418
- analyticsControllerGetPlayerKillLeaderboard: async (
18814
+ analyticsControllerGetPingHealth: async (
17419
18815
  startDate?: string,
17420
18816
  endDate?: string,
17421
18817
  gameServerId?: string,
17422
- period?: AnalyticsControllerGetPlayerKillLeaderboardPeriodEnum,
18818
+ period?: AnalyticsControllerGetPingHealthPeriodEnum,
17423
18819
  options: RawAxiosRequestConfig = {},
17424
18820
  ): Promise<RequestArgs> => {
17425
- const localVarPath = `/analytics/players/kill-leaderboard`;
18821
+ const localVarPath = `/analytics/players/ping-health`;
17426
18822
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17427
18823
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17428
18824
  let baseOptions;
@@ -17462,23 +18858,23 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17462
18858
  };
17463
18859
  },
17464
18860
  /**
17465
- * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetPlayerKpis`
17466
- * @summary Get player KPI summary
18861
+ * Counts per event_name across the player-activity whitelist (chat, kills, deaths, inventory, shop orders, roles, currency). Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetPlayerActivityMix`
18862
+ * @summary Get player activity mix
17467
18863
  * @param {string} [startDate]
17468
18864
  * @param {string} [endDate]
17469
18865
  * @param {string} [gameServerId]
17470
- * @param {AnalyticsControllerGetPlayerKpisPeriodEnum} [period]
18866
+ * @param {AnalyticsControllerGetPlayerActivityMixPeriodEnum} [period]
17471
18867
  * @param {*} [options] Override http request option.
17472
18868
  * @throws {RequiredError}
17473
18869
  */
17474
- analyticsControllerGetPlayerKpis: async (
18870
+ analyticsControllerGetPlayerActivityMix: async (
17475
18871
  startDate?: string,
17476
18872
  endDate?: string,
17477
18873
  gameServerId?: string,
17478
- period?: AnalyticsControllerGetPlayerKpisPeriodEnum,
18874
+ period?: AnalyticsControllerGetPlayerActivityMixPeriodEnum,
17479
18875
  options: RawAxiosRequestConfig = {},
17480
18876
  ): Promise<RequestArgs> => {
17481
- const localVarPath = `/analytics/players/kpis`;
18877
+ const localVarPath = `/analytics/players/activity-mix`;
17482
18878
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17483
18879
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17484
18880
  let baseOptions;
@@ -17518,23 +18914,135 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17518
18914
  };
17519
18915
  },
17520
18916
  /**
17521
- * Ranks players by total connected time within the selected period. Sums meta.sessionMinutes from player-disconnected events. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetPlayerPlaytimeLeaderboard`
17522
- * @summary Get player playtime leaderboard
18917
+ * Top players by K/D ratio kills from entity-killed, deaths from player-death. Minimum 5 combined events. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetPlayerKillLeaderboard`
18918
+ * @summary Get kill/death leaderboard
17523
18919
  * @param {string} [startDate]
17524
18920
  * @param {string} [endDate]
17525
18921
  * @param {string} [gameServerId]
17526
- * @param {AnalyticsControllerGetPlayerPlaytimeLeaderboardPeriodEnum} [period]
18922
+ * @param {AnalyticsControllerGetPlayerKillLeaderboardPeriodEnum} [period]
17527
18923
  * @param {*} [options] Override http request option.
17528
18924
  * @throws {RequiredError}
17529
18925
  */
17530
- analyticsControllerGetPlayerPlaytimeLeaderboard: async (
18926
+ analyticsControllerGetPlayerKillLeaderboard: async (
17531
18927
  startDate?: string,
17532
18928
  endDate?: string,
17533
18929
  gameServerId?: string,
17534
- period?: AnalyticsControllerGetPlayerPlaytimeLeaderboardPeriodEnum,
18930
+ period?: AnalyticsControllerGetPlayerKillLeaderboardPeriodEnum,
17535
18931
  options: RawAxiosRequestConfig = {},
17536
18932
  ): Promise<RequestArgs> => {
17537
- const localVarPath = `/analytics/players/playtime-leaderboard`;
18933
+ const localVarPath = `/analytics/players/kill-leaderboard`;
18934
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
18935
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
18936
+ let baseOptions;
18937
+ if (configuration) {
18938
+ baseOptions = configuration.baseOptions;
18939
+ }
18940
+
18941
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
18942
+ const localVarHeaderParameter = {} as any;
18943
+ const localVarQueryParameter = {} as any;
18944
+
18945
+ // authentication domainAuth required
18946
+
18947
+ if (startDate !== undefined) {
18948
+ localVarQueryParameter['startDate'] = startDate;
18949
+ }
18950
+
18951
+ if (endDate !== undefined) {
18952
+ localVarQueryParameter['endDate'] = endDate;
18953
+ }
18954
+
18955
+ if (gameServerId !== undefined) {
18956
+ localVarQueryParameter['gameServerId'] = gameServerId;
18957
+ }
18958
+
18959
+ if (period !== undefined) {
18960
+ localVarQueryParameter['period'] = period;
18961
+ }
18962
+
18963
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
18964
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
18965
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
18966
+
18967
+ return {
18968
+ url: toPathString(localVarUrlObj),
18969
+ options: localVarRequestOptions,
18970
+ };
18971
+ },
18972
+ /**
18973
+ * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetPlayerKpis`
18974
+ * @summary Get player KPI summary
18975
+ * @param {string} [startDate]
18976
+ * @param {string} [endDate]
18977
+ * @param {string} [gameServerId]
18978
+ * @param {AnalyticsControllerGetPlayerKpisPeriodEnum} [period]
18979
+ * @param {*} [options] Override http request option.
18980
+ * @throws {RequiredError}
18981
+ */
18982
+ analyticsControllerGetPlayerKpis: async (
18983
+ startDate?: string,
18984
+ endDate?: string,
18985
+ gameServerId?: string,
18986
+ period?: AnalyticsControllerGetPlayerKpisPeriodEnum,
18987
+ options: RawAxiosRequestConfig = {},
18988
+ ): Promise<RequestArgs> => {
18989
+ const localVarPath = `/analytics/players/kpis`;
18990
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
18991
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
18992
+ let baseOptions;
18993
+ if (configuration) {
18994
+ baseOptions = configuration.baseOptions;
18995
+ }
18996
+
18997
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
18998
+ const localVarHeaderParameter = {} as any;
18999
+ const localVarQueryParameter = {} as any;
19000
+
19001
+ // authentication domainAuth required
19002
+
19003
+ if (startDate !== undefined) {
19004
+ localVarQueryParameter['startDate'] = startDate;
19005
+ }
19006
+
19007
+ if (endDate !== undefined) {
19008
+ localVarQueryParameter['endDate'] = endDate;
19009
+ }
19010
+
19011
+ if (gameServerId !== undefined) {
19012
+ localVarQueryParameter['gameServerId'] = gameServerId;
19013
+ }
19014
+
19015
+ if (period !== undefined) {
19016
+ localVarQueryParameter['period'] = period;
19017
+ }
19018
+
19019
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
19020
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
19021
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
19022
+
19023
+ return {
19024
+ url: toPathString(localVarUrlObj),
19025
+ options: localVarRequestOptions,
19026
+ };
19027
+ },
19028
+ /**
19029
+ * Ranks players by total connected time within the selected period. Sums meta.sessionMinutes from player-disconnected events. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetPlayerPlaytimeLeaderboard`
19030
+ * @summary Get player playtime leaderboard
19031
+ * @param {string} [startDate]
19032
+ * @param {string} [endDate]
19033
+ * @param {string} [gameServerId]
19034
+ * @param {AnalyticsControllerGetPlayerPlaytimeLeaderboardPeriodEnum} [period]
19035
+ * @param {*} [options] Override http request option.
19036
+ * @throws {RequiredError}
19037
+ */
19038
+ analyticsControllerGetPlayerPlaytimeLeaderboard: async (
19039
+ startDate?: string,
19040
+ endDate?: string,
19041
+ gameServerId?: string,
19042
+ period?: AnalyticsControllerGetPlayerPlaytimeLeaderboardPeriodEnum,
19043
+ options: RawAxiosRequestConfig = {},
19044
+ ): Promise<RequestArgs> => {
19045
+ const localVarPath = `/analytics/players/playtime-leaderboard`;
17538
19046
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17539
19047
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17540
19048
  let baseOptions;
@@ -18759,6 +20267,45 @@ export const AnalyticsApiFp = function (configuration?: Configuration) {
18759
20267
  configuration,
18760
20268
  )(axios, localVarOperationServerBasePath || basePath);
18761
20269
  },
20270
+ /**
20271
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
20272
+ * @summary Get per-installation module KPIs
20273
+ * @param {string} gameServerId
20274
+ * @param {string} moduleId
20275
+ * @param {string} [startDate]
20276
+ * @param {string} [endDate]
20277
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
20278
+ * @param {*} [options] Override http request option.
20279
+ * @throws {RequiredError}
20280
+ */
20281
+ async analyticsControllerGetModuleInstallationKpis(
20282
+ gameServerId: string,
20283
+ moduleId: string,
20284
+ startDate?: string,
20285
+ endDate?: string,
20286
+ period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum,
20287
+ options?: RawAxiosRequestConfig,
20288
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>> {
20289
+ const localVarAxiosArgs = await localVarAxiosParamCreator.analyticsControllerGetModuleInstallationKpis(
20290
+ gameServerId,
20291
+ moduleId,
20292
+ startDate,
20293
+ endDate,
20294
+ period,
20295
+ options,
20296
+ );
20297
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
20298
+ const localVarOperationServerBasePath =
20299
+ operationServerMap['AnalyticsApi.analyticsControllerGetModuleInstallationKpis']?.[localVarOperationServerIndex]
20300
+ ?.url;
20301
+ return (axios, basePath) =>
20302
+ createRequestFunction(
20303
+ localVarAxiosArgs,
20304
+ globalAxios,
20305
+ BASE_PATH,
20306
+ configuration,
20307
+ )(axios, localVarOperationServerBasePath || basePath);
20308
+ },
18762
20309
  /**
18763
20310
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
18764
20311
  * @summary Get module item failure aggregate
@@ -19780,6 +21327,29 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
19780
21327
  .analyticsControllerGetModuleHealth(startDate, endDate, gameServerId, period, options)
19781
21328
  .then((request) => request(axios, basePath));
19782
21329
  },
21330
+ /**
21331
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
21332
+ * @summary Get per-installation module KPIs
21333
+ * @param {string} gameServerId
21334
+ * @param {string} moduleId
21335
+ * @param {string} [startDate]
21336
+ * @param {string} [endDate]
21337
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
21338
+ * @param {*} [options] Override http request option.
21339
+ * @throws {RequiredError}
21340
+ */
21341
+ analyticsControllerGetModuleInstallationKpis(
21342
+ gameServerId: string,
21343
+ moduleId: string,
21344
+ startDate?: string,
21345
+ endDate?: string,
21346
+ period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum,
21347
+ options?: RawAxiosRequestConfig,
21348
+ ): AxiosPromise<ModuleInstallationKpisDTOAPI> {
21349
+ return localVarFp
21350
+ .analyticsControllerGetModuleInstallationKpis(gameServerId, moduleId, startDate, endDate, period, options)
21351
+ .then((request) => request(axios, basePath));
21352
+ },
19783
21353
  /**
19784
21354
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
19785
21355
  * @summary Get module item failure aggregate
@@ -20522,6 +22092,31 @@ export class AnalyticsApi extends BaseAPI {
20522
22092
  .then((request) => request(this.axios, this.basePath));
20523
22093
  }
20524
22094
 
22095
+ /**
22096
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
22097
+ * @summary Get per-installation module KPIs
22098
+ * @param {string} gameServerId
22099
+ * @param {string} moduleId
22100
+ * @param {string} [startDate]
22101
+ * @param {string} [endDate]
22102
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
22103
+ * @param {*} [options] Override http request option.
22104
+ * @throws {RequiredError}
22105
+ * @memberof AnalyticsApi
22106
+ */
22107
+ public analyticsControllerGetModuleInstallationKpis(
22108
+ gameServerId: string,
22109
+ moduleId: string,
22110
+ startDate?: string,
22111
+ endDate?: string,
22112
+ period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum,
22113
+ options?: RawAxiosRequestConfig,
22114
+ ) {
22115
+ return AnalyticsApiFp(this.configuration)
22116
+ .analyticsControllerGetModuleInstallationKpis(gameServerId, moduleId, startDate, endDate, period, options)
22117
+ .then((request) => request(this.axios, this.basePath));
22118
+ }
22119
+
20525
22120
  /**
20526
22121
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
20527
22122
  * @summary Get module item failure aggregate
@@ -21141,6 +22736,17 @@ export type AnalyticsControllerGetModuleHealthPeriodEnum =
21141
22736
  /**
21142
22737
  * @export
21143
22738
  */
22739
+ export const AnalyticsControllerGetModuleInstallationKpisPeriodEnum = {
22740
+ _24h: '24h',
22741
+ _7d: '7d',
22742
+ _30d: '30d',
22743
+ _90d: '90d',
22744
+ } as const;
22745
+ export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum =
22746
+ (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
22747
+ /**
22748
+ * @export
22749
+ */
21144
22750
  export const AnalyticsControllerGetModuleItemFailureLeaderboardPeriodEnum = {
21145
22751
  _24h: '24h',
21146
22752
  _7d: '7d',
@@ -21370,6 +22976,345 @@ export const AnalyticsControllerGetTopServersPeriodEnum = {
21370
22976
  export type AnalyticsControllerGetTopServersPeriodEnum =
21371
22977
  (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
21372
22978
 
22979
+ /**
22980
+ * AuthApi - axios parameter creator
22981
+ * @export
22982
+ */
22983
+ export const AuthApiAxiosParamCreator = function (configuration?: Configuration) {
22984
+ return {
22985
+ /**
22986
+ * <br> OperationId: `AuthControllerAccount`
22987
+ * @summary Account
22988
+ * @param {*} [options] Override http request option.
22989
+ * @throws {RequiredError}
22990
+ */
22991
+ authControllerAccount: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
22992
+ const localVarPath = `/auth/account`;
22993
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
22994
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
22995
+ let baseOptions;
22996
+ if (configuration) {
22997
+ baseOptions = configuration.baseOptions;
22998
+ }
22999
+
23000
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
23001
+ const localVarHeaderParameter = {} as any;
23002
+ const localVarQueryParameter = {} as any;
23003
+
23004
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
23005
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
23006
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
23007
+
23008
+ return {
23009
+ url: toPathString(localVarUrlObj),
23010
+ options: localVarRequestOptions,
23011
+ };
23012
+ },
23013
+ /**
23014
+ * <br> OperationId: `AuthControllerCallback`
23015
+ * @summary Callback
23016
+ * @param {*} [options] Override http request option.
23017
+ * @throws {RequiredError}
23018
+ */
23019
+ authControllerCallback: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
23020
+ const localVarPath = `/auth/callback`;
23021
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
23022
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23023
+ let baseOptions;
23024
+ if (configuration) {
23025
+ baseOptions = configuration.baseOptions;
23026
+ }
23027
+
23028
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
23029
+ const localVarHeaderParameter = {} as any;
23030
+ const localVarQueryParameter = {} as any;
23031
+
23032
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
23033
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
23034
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
23035
+
23036
+ return {
23037
+ url: toPathString(localVarUrlObj),
23038
+ options: localVarRequestOptions,
23039
+ };
23040
+ },
23041
+ /**
23042
+ * <br> OperationId: `AuthControllerLogin`
23043
+ * @summary Login
23044
+ * @param {string} [redirect]
23045
+ * @param {*} [options] Override http request option.
23046
+ * @throws {RequiredError}
23047
+ */
23048
+ authControllerLogin: async (redirect?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
23049
+ const localVarPath = `/auth/login`;
23050
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
23051
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23052
+ let baseOptions;
23053
+ if (configuration) {
23054
+ baseOptions = configuration.baseOptions;
23055
+ }
23056
+
23057
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
23058
+ const localVarHeaderParameter = {} as any;
23059
+ const localVarQueryParameter = {} as any;
23060
+
23061
+ if (redirect !== undefined) {
23062
+ localVarQueryParameter['redirect'] = redirect;
23063
+ }
23064
+
23065
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
23066
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
23067
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
23068
+
23069
+ return {
23070
+ url: toPathString(localVarUrlObj),
23071
+ options: localVarRequestOptions,
23072
+ };
23073
+ },
23074
+ /**
23075
+ * <br> OperationId: `AuthControllerLogout`
23076
+ * @summary Logout
23077
+ * @param {string} [redirect]
23078
+ * @param {*} [options] Override http request option.
23079
+ * @throws {RequiredError}
23080
+ */
23081
+ authControllerLogout: async (redirect?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
23082
+ const localVarPath = `/auth/logout`;
23083
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
23084
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23085
+ let baseOptions;
23086
+ if (configuration) {
23087
+ baseOptions = configuration.baseOptions;
23088
+ }
23089
+
23090
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
23091
+ const localVarHeaderParameter = {} as any;
23092
+ const localVarQueryParameter = {} as any;
23093
+
23094
+ if (redirect !== undefined) {
23095
+ localVarQueryParameter['redirect'] = redirect;
23096
+ }
23097
+
23098
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
23099
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
23100
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
23101
+
23102
+ return {
23103
+ url: toPathString(localVarUrlObj),
23104
+ options: localVarRequestOptions,
23105
+ };
23106
+ },
23107
+ };
23108
+ };
23109
+
23110
+ /**
23111
+ * AuthApi - functional programming interface
23112
+ * @export
23113
+ */
23114
+ export const AuthApiFp = function (configuration?: Configuration) {
23115
+ const localVarAxiosParamCreator = AuthApiAxiosParamCreator(configuration);
23116
+ return {
23117
+ /**
23118
+ * <br> OperationId: `AuthControllerAccount`
23119
+ * @summary Account
23120
+ * @param {*} [options] Override http request option.
23121
+ * @throws {RequiredError}
23122
+ */
23123
+ async authControllerAccount(
23124
+ options?: RawAxiosRequestConfig,
23125
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
23126
+ const localVarAxiosArgs = await localVarAxiosParamCreator.authControllerAccount(options);
23127
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
23128
+ const localVarOperationServerBasePath =
23129
+ operationServerMap['AuthApi.authControllerAccount']?.[localVarOperationServerIndex]?.url;
23130
+ return (axios, basePath) =>
23131
+ createRequestFunction(
23132
+ localVarAxiosArgs,
23133
+ globalAxios,
23134
+ BASE_PATH,
23135
+ configuration,
23136
+ )(axios, localVarOperationServerBasePath || basePath);
23137
+ },
23138
+ /**
23139
+ * <br> OperationId: `AuthControllerCallback`
23140
+ * @summary Callback
23141
+ * @param {*} [options] Override http request option.
23142
+ * @throws {RequiredError}
23143
+ */
23144
+ async authControllerCallback(
23145
+ options?: RawAxiosRequestConfig,
23146
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
23147
+ const localVarAxiosArgs = await localVarAxiosParamCreator.authControllerCallback(options);
23148
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
23149
+ const localVarOperationServerBasePath =
23150
+ operationServerMap['AuthApi.authControllerCallback']?.[localVarOperationServerIndex]?.url;
23151
+ return (axios, basePath) =>
23152
+ createRequestFunction(
23153
+ localVarAxiosArgs,
23154
+ globalAxios,
23155
+ BASE_PATH,
23156
+ configuration,
23157
+ )(axios, localVarOperationServerBasePath || basePath);
23158
+ },
23159
+ /**
23160
+ * <br> OperationId: `AuthControllerLogin`
23161
+ * @summary Login
23162
+ * @param {string} [redirect]
23163
+ * @param {*} [options] Override http request option.
23164
+ * @throws {RequiredError}
23165
+ */
23166
+ async authControllerLogin(
23167
+ redirect?: string,
23168
+ options?: RawAxiosRequestConfig,
23169
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
23170
+ const localVarAxiosArgs = await localVarAxiosParamCreator.authControllerLogin(redirect, options);
23171
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
23172
+ const localVarOperationServerBasePath =
23173
+ operationServerMap['AuthApi.authControllerLogin']?.[localVarOperationServerIndex]?.url;
23174
+ return (axios, basePath) =>
23175
+ createRequestFunction(
23176
+ localVarAxiosArgs,
23177
+ globalAxios,
23178
+ BASE_PATH,
23179
+ configuration,
23180
+ )(axios, localVarOperationServerBasePath || basePath);
23181
+ },
23182
+ /**
23183
+ * <br> OperationId: `AuthControllerLogout`
23184
+ * @summary Logout
23185
+ * @param {string} [redirect]
23186
+ * @param {*} [options] Override http request option.
23187
+ * @throws {RequiredError}
23188
+ */
23189
+ async authControllerLogout(
23190
+ redirect?: string,
23191
+ options?: RawAxiosRequestConfig,
23192
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
23193
+ const localVarAxiosArgs = await localVarAxiosParamCreator.authControllerLogout(redirect, options);
23194
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
23195
+ const localVarOperationServerBasePath =
23196
+ operationServerMap['AuthApi.authControllerLogout']?.[localVarOperationServerIndex]?.url;
23197
+ return (axios, basePath) =>
23198
+ createRequestFunction(
23199
+ localVarAxiosArgs,
23200
+ globalAxios,
23201
+ BASE_PATH,
23202
+ configuration,
23203
+ )(axios, localVarOperationServerBasePath || basePath);
23204
+ },
23205
+ };
23206
+ };
23207
+
23208
+ /**
23209
+ * AuthApi - factory interface
23210
+ * @export
23211
+ */
23212
+ export const AuthApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
23213
+ const localVarFp = AuthApiFp(configuration);
23214
+ return {
23215
+ /**
23216
+ * <br> OperationId: `AuthControllerAccount`
23217
+ * @summary Account
23218
+ * @param {*} [options] Override http request option.
23219
+ * @throws {RequiredError}
23220
+ */
23221
+ authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void> {
23222
+ return localVarFp.authControllerAccount(options).then((request) => request(axios, basePath));
23223
+ },
23224
+ /**
23225
+ * <br> OperationId: `AuthControllerCallback`
23226
+ * @summary Callback
23227
+ * @param {*} [options] Override http request option.
23228
+ * @throws {RequiredError}
23229
+ */
23230
+ authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void> {
23231
+ return localVarFp.authControllerCallback(options).then((request) => request(axios, basePath));
23232
+ },
23233
+ /**
23234
+ * <br> OperationId: `AuthControllerLogin`
23235
+ * @summary Login
23236
+ * @param {string} [redirect]
23237
+ * @param {*} [options] Override http request option.
23238
+ * @throws {RequiredError}
23239
+ */
23240
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
23241
+ return localVarFp.authControllerLogin(redirect, options).then((request) => request(axios, basePath));
23242
+ },
23243
+ /**
23244
+ * <br> OperationId: `AuthControllerLogout`
23245
+ * @summary Logout
23246
+ * @param {string} [redirect]
23247
+ * @param {*} [options] Override http request option.
23248
+ * @throws {RequiredError}
23249
+ */
23250
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
23251
+ return localVarFp.authControllerLogout(redirect, options).then((request) => request(axios, basePath));
23252
+ },
23253
+ };
23254
+ };
23255
+
23256
+ /**
23257
+ * AuthApi - object-oriented interface
23258
+ * @export
23259
+ * @class AuthApi
23260
+ * @extends {BaseAPI}
23261
+ */
23262
+ export class AuthApi extends BaseAPI {
23263
+ /**
23264
+ * <br> OperationId: `AuthControllerAccount`
23265
+ * @summary Account
23266
+ * @param {*} [options] Override http request option.
23267
+ * @throws {RequiredError}
23268
+ * @memberof AuthApi
23269
+ */
23270
+ public authControllerAccount(options?: RawAxiosRequestConfig) {
23271
+ return AuthApiFp(this.configuration)
23272
+ .authControllerAccount(options)
23273
+ .then((request) => request(this.axios, this.basePath));
23274
+ }
23275
+
23276
+ /**
23277
+ * <br> OperationId: `AuthControllerCallback`
23278
+ * @summary Callback
23279
+ * @param {*} [options] Override http request option.
23280
+ * @throws {RequiredError}
23281
+ * @memberof AuthApi
23282
+ */
23283
+ public authControllerCallback(options?: RawAxiosRequestConfig) {
23284
+ return AuthApiFp(this.configuration)
23285
+ .authControllerCallback(options)
23286
+ .then((request) => request(this.axios, this.basePath));
23287
+ }
23288
+
23289
+ /**
23290
+ * <br> OperationId: `AuthControllerLogin`
23291
+ * @summary Login
23292
+ * @param {string} [redirect]
23293
+ * @param {*} [options] Override http request option.
23294
+ * @throws {RequiredError}
23295
+ * @memberof AuthApi
23296
+ */
23297
+ public authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig) {
23298
+ return AuthApiFp(this.configuration)
23299
+ .authControllerLogin(redirect, options)
23300
+ .then((request) => request(this.axios, this.basePath));
23301
+ }
23302
+
23303
+ /**
23304
+ * <br> OperationId: `AuthControllerLogout`
23305
+ * @summary Logout
23306
+ * @param {string} [redirect]
23307
+ * @param {*} [options] Override http request option.
23308
+ * @throws {RequiredError}
23309
+ * @memberof AuthApi
23310
+ */
23311
+ public authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig) {
23312
+ return AuthApiFp(this.configuration)
23313
+ .authControllerLogout(redirect, options)
23314
+ .then((request) => request(this.axios, this.basePath));
23315
+ }
23316
+ }
23317
+
21373
23318
  /**
21374
23319
  * CommandApi - axios parameter creator
21375
23320
  * @export
@@ -24752,6 +26697,80 @@ export const EventApiAxiosParamCreator = function (configuration?: Configuration
24752
26697
  options: localVarRequestOptions,
24753
26698
  };
24754
26699
  },
26700
+ /**
26701
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
26702
+ * @summary Explore events
26703
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
26704
+ * @param {*} [options] Override http request option.
26705
+ * @throws {RequiredError}
26706
+ */
26707
+ eventControllerExplore: async (
26708
+ eventExploreInputDTO?: EventExploreInputDTO,
26709
+ options: RawAxiosRequestConfig = {},
26710
+ ): Promise<RequestArgs> => {
26711
+ const localVarPath = `/event/explore`;
26712
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
26713
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
26714
+ let baseOptions;
26715
+ if (configuration) {
26716
+ baseOptions = configuration.baseOptions;
26717
+ }
26718
+
26719
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
26720
+ const localVarHeaderParameter = {} as any;
26721
+ const localVarQueryParameter = {} as any;
26722
+
26723
+ // authentication domainAuth required
26724
+
26725
+ localVarHeaderParameter['Content-Type'] = 'application/json';
26726
+
26727
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
26728
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
26729
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
26730
+ localVarRequestOptions.data = serializeDataIfNeeded(eventExploreInputDTO, localVarRequestOptions, configuration);
26731
+
26732
+ return {
26733
+ url: toPathString(localVarUrlObj),
26734
+ options: localVarRequestOptions,
26735
+ };
26736
+ },
26737
+ /**
26738
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
26739
+ * @summary Get event volume time-series with optional grouping
26740
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
26741
+ * @param {*} [options] Override http request option.
26742
+ * @throws {RequiredError}
26743
+ */
26744
+ eventControllerExploreVolume: async (
26745
+ eventVolumeInputDTO?: EventVolumeInputDTO,
26746
+ options: RawAxiosRequestConfig = {},
26747
+ ): Promise<RequestArgs> => {
26748
+ const localVarPath = `/event/explore/volume`;
26749
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
26750
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
26751
+ let baseOptions;
26752
+ if (configuration) {
26753
+ baseOptions = configuration.baseOptions;
26754
+ }
26755
+
26756
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
26757
+ const localVarHeaderParameter = {} as any;
26758
+ const localVarQueryParameter = {} as any;
26759
+
26760
+ // authentication domainAuth required
26761
+
26762
+ localVarHeaderParameter['Content-Type'] = 'application/json';
26763
+
26764
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
26765
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
26766
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
26767
+ localVarRequestOptions.data = serializeDataIfNeeded(eventVolumeInputDTO, localVarRequestOptions, configuration);
26768
+
26769
+ return {
26770
+ url: toPathString(localVarUrlObj),
26771
+ options: localVarRequestOptions,
26772
+ };
26773
+ },
24755
26774
  /**
24756
26775
  * Export events matching the search criteria to CSV format. Accepts the same parameters as the search endpoint. Maximum time range is 90 days. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExport`
24757
26776
  * @summary Export events to CSV
@@ -24929,6 +26948,55 @@ export const EventApiFp = function (configuration?: Configuration) {
24929
26948
  configuration,
24930
26949
  )(axios, localVarOperationServerBasePath || basePath);
24931
26950
  },
26951
+ /**
26952
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
26953
+ * @summary Explore events
26954
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
26955
+ * @param {*} [options] Override http request option.
26956
+ * @throws {RequiredError}
26957
+ */
26958
+ async eventControllerExplore(
26959
+ eventExploreInputDTO?: EventExploreInputDTO,
26960
+ options?: RawAxiosRequestConfig,
26961
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventExploreOutputDTOAPI>> {
26962
+ const localVarAxiosArgs = await localVarAxiosParamCreator.eventControllerExplore(eventExploreInputDTO, options);
26963
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
26964
+ const localVarOperationServerBasePath =
26965
+ operationServerMap['EventApi.eventControllerExplore']?.[localVarOperationServerIndex]?.url;
26966
+ return (axios, basePath) =>
26967
+ createRequestFunction(
26968
+ localVarAxiosArgs,
26969
+ globalAxios,
26970
+ BASE_PATH,
26971
+ configuration,
26972
+ )(axios, localVarOperationServerBasePath || basePath);
26973
+ },
26974
+ /**
26975
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
26976
+ * @summary Get event volume time-series with optional grouping
26977
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
26978
+ * @param {*} [options] Override http request option.
26979
+ * @throws {RequiredError}
26980
+ */
26981
+ async eventControllerExploreVolume(
26982
+ eventVolumeInputDTO?: EventVolumeInputDTO,
26983
+ options?: RawAxiosRequestConfig,
26984
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventVolumeOutputDTOAPI>> {
26985
+ const localVarAxiosArgs = await localVarAxiosParamCreator.eventControllerExploreVolume(
26986
+ eventVolumeInputDTO,
26987
+ options,
26988
+ );
26989
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
26990
+ const localVarOperationServerBasePath =
26991
+ operationServerMap['EventApi.eventControllerExploreVolume']?.[localVarOperationServerIndex]?.url;
26992
+ return (axios, basePath) =>
26993
+ createRequestFunction(
26994
+ localVarAxiosArgs,
26995
+ globalAxios,
26996
+ BASE_PATH,
26997
+ configuration,
26998
+ )(axios, localVarOperationServerBasePath || basePath);
26999
+ },
24932
27000
  /**
24933
27001
  * Export events matching the search criteria to CSV format. Accepts the same parameters as the search endpoint. Maximum time range is 90 days. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExport`
24934
27002
  * @summary Export events to CSV
@@ -25047,6 +27115,36 @@ export const EventApiFactory = function (configuration?: Configuration, basePath
25047
27115
  ): AxiosPromise<EventOutputDTO> {
25048
27116
  return localVarFp.eventControllerCreate(eventCreateDTO, options).then((request) => request(axios, basePath));
25049
27117
  },
27118
+ /**
27119
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
27120
+ * @summary Explore events
27121
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
27122
+ * @param {*} [options] Override http request option.
27123
+ * @throws {RequiredError}
27124
+ */
27125
+ eventControllerExplore(
27126
+ eventExploreInputDTO?: EventExploreInputDTO,
27127
+ options?: RawAxiosRequestConfig,
27128
+ ): AxiosPromise<EventExploreOutputDTOAPI> {
27129
+ return localVarFp
27130
+ .eventControllerExplore(eventExploreInputDTO, options)
27131
+ .then((request) => request(axios, basePath));
27132
+ },
27133
+ /**
27134
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
27135
+ * @summary Get event volume time-series with optional grouping
27136
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
27137
+ * @param {*} [options] Override http request option.
27138
+ * @throws {RequiredError}
27139
+ */
27140
+ eventControllerExploreVolume(
27141
+ eventVolumeInputDTO?: EventVolumeInputDTO,
27142
+ options?: RawAxiosRequestConfig,
27143
+ ): AxiosPromise<EventVolumeOutputDTOAPI> {
27144
+ return localVarFp
27145
+ .eventControllerExploreVolume(eventVolumeInputDTO, options)
27146
+ .then((request) => request(axios, basePath));
27147
+ },
25050
27148
  /**
25051
27149
  * Export events matching the search criteria to CSV format. Accepts the same parameters as the search endpoint. Maximum time range is 90 days. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExport`
25052
27150
  * @summary Export events to CSV
@@ -25122,6 +27220,34 @@ export class EventApi extends BaseAPI {
25122
27220
  .then((request) => request(this.axios, this.basePath));
25123
27221
  }
25124
27222
 
27223
+ /**
27224
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
27225
+ * @summary Explore events
27226
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
27227
+ * @param {*} [options] Override http request option.
27228
+ * @throws {RequiredError}
27229
+ * @memberof EventApi
27230
+ */
27231
+ public eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig) {
27232
+ return EventApiFp(this.configuration)
27233
+ .eventControllerExplore(eventExploreInputDTO, options)
27234
+ .then((request) => request(this.axios, this.basePath));
27235
+ }
27236
+
27237
+ /**
27238
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
27239
+ * @summary Get event volume time-series with optional grouping
27240
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
27241
+ * @param {*} [options] Override http request option.
27242
+ * @throws {RequiredError}
27243
+ * @memberof EventApi
27244
+ */
27245
+ public eventControllerExploreVolume(eventVolumeInputDTO?: EventVolumeInputDTO, options?: RawAxiosRequestConfig) {
27246
+ return EventApiFp(this.configuration)
27247
+ .eventControllerExploreVolume(eventVolumeInputDTO, options)
27248
+ .then((request) => request(this.axios, this.basePath));
27249
+ }
27250
+
25125
27251
  /**
25126
27252
  * Export events matching the search criteria to CSV format. Accepts the same parameters as the search endpoint. Maximum time range is 90 days. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExport`
25127
27253
  * @summary Export events to CSV
@@ -31326,6 +33452,51 @@ export const PlayerApiAxiosParamCreator = function (configuration?: Configuratio
31326
33452
  options: localVarRequestOptions,
31327
33453
  };
31328
33454
  },
33455
+ /**
33456
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
33457
+ * @summary Bulk assign role
33458
+ * @param {string} roleId
33459
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
33460
+ * @param {*} [options] Override http request option.
33461
+ * @throws {RequiredError}
33462
+ */
33463
+ playerControllerBulkAssignRole: async (
33464
+ roleId: string,
33465
+ playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO,
33466
+ options: RawAxiosRequestConfig = {},
33467
+ ): Promise<RequestArgs> => {
33468
+ // verify required parameter 'roleId' is not null or undefined
33469
+ assertParamExists('playerControllerBulkAssignRole', 'roleId', roleId);
33470
+ const localVarPath = `/player/role/{roleId}`.replace(`{${'roleId'}}`, encodeURIComponent(String(roleId)));
33471
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
33472
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
33473
+ let baseOptions;
33474
+ if (configuration) {
33475
+ baseOptions = configuration.baseOptions;
33476
+ }
33477
+
33478
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
33479
+ const localVarHeaderParameter = {} as any;
33480
+ const localVarQueryParameter = {} as any;
33481
+
33482
+ // authentication domainAuth required
33483
+
33484
+ localVarHeaderParameter['Content-Type'] = 'application/json';
33485
+
33486
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
33487
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
33488
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
33489
+ localVarRequestOptions.data = serializeDataIfNeeded(
33490
+ playerBulkAssignRoleInputDTO,
33491
+ localVarRequestOptions,
33492
+ configuration,
33493
+ );
33494
+
33495
+ return {
33496
+ url: toPathString(localVarUrlObj),
33497
+ options: localVarRequestOptions,
33498
+ };
33499
+ },
31329
33500
  /**
31330
33501
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
31331
33502
  * @summary Bulk delete
@@ -31710,6 +33881,35 @@ export const PlayerApiFp = function (configuration?: Configuration) {
31710
33881
  configuration,
31711
33882
  )(axios, localVarOperationServerBasePath || basePath);
31712
33883
  },
33884
+ /**
33885
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
33886
+ * @summary Bulk assign role
33887
+ * @param {string} roleId
33888
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
33889
+ * @param {*} [options] Override http request option.
33890
+ * @throws {RequiredError}
33891
+ */
33892
+ async playerControllerBulkAssignRole(
33893
+ roleId: string,
33894
+ playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO,
33895
+ options?: RawAxiosRequestConfig,
33896
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>> {
33897
+ const localVarAxiosArgs = await localVarAxiosParamCreator.playerControllerBulkAssignRole(
33898
+ roleId,
33899
+ playerBulkAssignRoleInputDTO,
33900
+ options,
33901
+ );
33902
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
33903
+ const localVarOperationServerBasePath =
33904
+ operationServerMap['PlayerApi.playerControllerBulkAssignRole']?.[localVarOperationServerIndex]?.url;
33905
+ return (axios, basePath) =>
33906
+ createRequestFunction(
33907
+ localVarAxiosArgs,
33908
+ globalAxios,
33909
+ BASE_PATH,
33910
+ configuration,
33911
+ )(axios, localVarOperationServerBasePath || basePath);
33912
+ },
31713
33913
  /**
31714
33914
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
31715
33915
  * @summary Bulk delete
@@ -31945,6 +34145,23 @@ export const PlayerApiFactory = function (configuration?: Configuration, basePat
31945
34145
  .playerControllerAssignRole(id, roleId, playerRoleAssignChangeDTO, options)
31946
34146
  .then((request) => request(axios, basePath));
31947
34147
  },
34148
+ /**
34149
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
34150
+ * @summary Bulk assign role
34151
+ * @param {string} roleId
34152
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
34153
+ * @param {*} [options] Override http request option.
34154
+ * @throws {RequiredError}
34155
+ */
34156
+ playerControllerBulkAssignRole(
34157
+ roleId: string,
34158
+ playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO,
34159
+ options?: RawAxiosRequestConfig,
34160
+ ): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI> {
34161
+ return localVarFp
34162
+ .playerControllerBulkAssignRole(roleId, playerBulkAssignRoleInputDTO, options)
34163
+ .then((request) => request(axios, basePath));
34164
+ },
31948
34165
  /**
31949
34166
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
31950
34167
  * @summary Bulk delete
@@ -32125,6 +34342,25 @@ export class PlayerApi extends BaseAPI {
32125
34342
  .then((request) => request(this.axios, this.basePath));
32126
34343
  }
32127
34344
 
34345
+ /**
34346
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
34347
+ * @summary Bulk assign role
34348
+ * @param {string} roleId
34349
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
34350
+ * @param {*} [options] Override http request option.
34351
+ * @throws {RequiredError}
34352
+ * @memberof PlayerApi
34353
+ */
34354
+ public playerControllerBulkAssignRole(
34355
+ roleId: string,
34356
+ playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO,
34357
+ options?: RawAxiosRequestConfig,
34358
+ ) {
34359
+ return PlayerApiFp(this.configuration)
34360
+ .playerControllerBulkAssignRole(roleId, playerBulkAssignRoleInputDTO, options)
34361
+ .then((request) => request(this.axios, this.basePath));
34362
+ }
34363
+
32128
34364
  /**
32129
34365
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
32130
34366
  * @summary Bulk delete
@@ -32276,6 +34512,54 @@ export const PlayerOnGameServerApiAxiosParamCreator = function (configuration?:
32276
34512
  options: localVarRequestOptions,
32277
34513
  };
32278
34514
  },
34515
+ /**
34516
+ * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
34517
+ * @summary Bulk add currency
34518
+ * @param {string} gameServerId
34519
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
34520
+ * @param {*} [options] Override http request option.
34521
+ * @throws {RequiredError}
34522
+ */
34523
+ playerOnGameServerControllerBulkAddCurrency: async (
34524
+ gameServerId: string,
34525
+ pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO,
34526
+ options: RawAxiosRequestConfig = {},
34527
+ ): Promise<RequestArgs> => {
34528
+ // verify required parameter 'gameServerId' is not null or undefined
34529
+ assertParamExists('playerOnGameServerControllerBulkAddCurrency', 'gameServerId', gameServerId);
34530
+ const localVarPath = `/gameserver/{gameServerId}/addCurrency`.replace(
34531
+ `{${'gameServerId'}}`,
34532
+ encodeURIComponent(String(gameServerId)),
34533
+ );
34534
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
34535
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
34536
+ let baseOptions;
34537
+ if (configuration) {
34538
+ baseOptions = configuration.baseOptions;
34539
+ }
34540
+
34541
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
34542
+ const localVarHeaderParameter = {} as any;
34543
+ const localVarQueryParameter = {} as any;
34544
+
34545
+ // authentication domainAuth required
34546
+
34547
+ localVarHeaderParameter['Content-Type'] = 'application/json';
34548
+
34549
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
34550
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
34551
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
34552
+ localVarRequestOptions.data = serializeDataIfNeeded(
34553
+ pogBulkAddCurrencyInputDTO,
34554
+ localVarRequestOptions,
34555
+ configuration,
34556
+ );
34557
+
34558
+ return {
34559
+ url: toPathString(localVarUrlObj),
34560
+ options: localVarRequestOptions,
34561
+ };
34562
+ },
32279
34563
  /**
32280
34564
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
32281
34565
  * @summary Bulk delete
@@ -32647,6 +34931,37 @@ export const PlayerOnGameServerApiFp = function (configuration?: Configuration)
32647
34931
  configuration,
32648
34932
  )(axios, localVarOperationServerBasePath || basePath);
32649
34933
  },
34934
+ /**
34935
+ * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
34936
+ * @summary Bulk add currency
34937
+ * @param {string} gameServerId
34938
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
34939
+ * @param {*} [options] Override http request option.
34940
+ * @throws {RequiredError}
34941
+ */
34942
+ async playerOnGameServerControllerBulkAddCurrency(
34943
+ gameServerId: string,
34944
+ pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO,
34945
+ options?: RawAxiosRequestConfig,
34946
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>> {
34947
+ const localVarAxiosArgs = await localVarAxiosParamCreator.playerOnGameServerControllerBulkAddCurrency(
34948
+ gameServerId,
34949
+ pogBulkAddCurrencyInputDTO,
34950
+ options,
34951
+ );
34952
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
34953
+ const localVarOperationServerBasePath =
34954
+ operationServerMap['PlayerOnGameServerApi.playerOnGameServerControllerBulkAddCurrency']?.[
34955
+ localVarOperationServerIndex
34956
+ ]?.url;
34957
+ return (axios, basePath) =>
34958
+ createRequestFunction(
34959
+ localVarAxiosArgs,
34960
+ globalAxios,
34961
+ BASE_PATH,
34962
+ configuration,
34963
+ )(axios, localVarOperationServerBasePath || basePath);
34964
+ },
32650
34965
  /**
32651
34966
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
32652
34967
  * @summary Bulk delete
@@ -32903,6 +35218,23 @@ export const PlayerOnGameServerApiFactory = function (
32903
35218
  .playerOnGameServerControllerAddCurrency(gameServerId, playerId, playerOnGameServerSetCurrencyInputDTO, options)
32904
35219
  .then((request) => request(axios, basePath));
32905
35220
  },
35221
+ /**
35222
+ * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
35223
+ * @summary Bulk add currency
35224
+ * @param {string} gameServerId
35225
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
35226
+ * @param {*} [options] Override http request option.
35227
+ * @throws {RequiredError}
35228
+ */
35229
+ playerOnGameServerControllerBulkAddCurrency(
35230
+ gameServerId: string,
35231
+ pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO,
35232
+ options?: RawAxiosRequestConfig,
35233
+ ): AxiosPromise<PogBulkAddCurrencyOutputDTOAPI> {
35234
+ return localVarFp
35235
+ .playerOnGameServerControllerBulkAddCurrency(gameServerId, pogBulkAddCurrencyInputDTO, options)
35236
+ .then((request) => request(axios, basePath));
35237
+ },
32906
35238
  /**
32907
35239
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
32908
35240
  * @summary Bulk delete
@@ -33070,6 +35402,25 @@ export class PlayerOnGameServerApi extends BaseAPI {
33070
35402
  .then((request) => request(this.axios, this.basePath));
33071
35403
  }
33072
35404
 
35405
+ /**
35406
+ * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
35407
+ * @summary Bulk add currency
35408
+ * @param {string} gameServerId
35409
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
35410
+ * @param {*} [options] Override http request option.
35411
+ * @throws {RequiredError}
35412
+ * @memberof PlayerOnGameServerApi
35413
+ */
35414
+ public playerOnGameServerControllerBulkAddCurrency(
35415
+ gameServerId: string,
35416
+ pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO,
35417
+ options?: RawAxiosRequestConfig,
35418
+ ) {
35419
+ return PlayerOnGameServerApiFp(this.configuration)
35420
+ .playerOnGameServerControllerBulkAddCurrency(gameServerId, pogBulkAddCurrencyInputDTO, options)
35421
+ .then((request) => request(this.axios, this.basePath));
35422
+ }
35423
+
33073
35424
  /**
33074
35425
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
33075
35426
  * @summary Bulk delete
@@ -33213,6 +35564,477 @@ export class PlayerOnGameServerApi extends BaseAPI {
33213
35564
  }
33214
35565
  }
33215
35566
 
35567
+ /**
35568
+ * RegistryApi - axios parameter creator
35569
+ * @export
35570
+ */
35571
+ export const RegistryApiAxiosParamCreator = function (configuration?: Configuration) {
35572
+ return {
35573
+ /**
35574
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
35575
+ * @summary Install a module from a registry
35576
+ * @param {string} id
35577
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
35578
+ * @param {*} [options] Override http request option.
35579
+ * @throws {RequiredError}
35580
+ */
35581
+ registryControllerInstall: async (
35582
+ id: string,
35583
+ registryInstallBody?: RegistryInstallBody,
35584
+ options: RawAxiosRequestConfig = {},
35585
+ ): Promise<RequestArgs> => {
35586
+ // verify required parameter 'id' is not null or undefined
35587
+ assertParamExists('registryControllerInstall', 'id', id);
35588
+ const localVarPath = `/registry/{id}/install`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
35589
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
35590
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
35591
+ let baseOptions;
35592
+ if (configuration) {
35593
+ baseOptions = configuration.baseOptions;
35594
+ }
35595
+
35596
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
35597
+ const localVarHeaderParameter = {} as any;
35598
+ const localVarQueryParameter = {} as any;
35599
+
35600
+ // authentication domainAuth required
35601
+
35602
+ localVarHeaderParameter['Content-Type'] = 'application/json';
35603
+
35604
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
35605
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
35606
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
35607
+ localVarRequestOptions.data = serializeDataIfNeeded(registryInstallBody, localVarRequestOptions, configuration);
35608
+
35609
+ return {
35610
+ url: toPathString(localVarUrlObj),
35611
+ options: localVarRequestOptions,
35612
+ };
35613
+ },
35614
+ /**
35615
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
35616
+ * @summary List subscribed registries
35617
+ * @param {*} [options] Override http request option.
35618
+ * @throws {RequiredError}
35619
+ */
35620
+ registryControllerList: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
35621
+ const localVarPath = `/registry`;
35622
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
35623
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
35624
+ let baseOptions;
35625
+ if (configuration) {
35626
+ baseOptions = configuration.baseOptions;
35627
+ }
35628
+
35629
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
35630
+ const localVarHeaderParameter = {} as any;
35631
+ const localVarQueryParameter = {} as any;
35632
+
35633
+ // authentication domainAuth required
35634
+
35635
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
35636
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
35637
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
35638
+
35639
+ return {
35640
+ url: toPathString(localVarUrlObj),
35641
+ options: localVarRequestOptions,
35642
+ };
35643
+ },
35644
+ /**
35645
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
35646
+ * @summary Refresh registry manifest
35647
+ * @param {string} id
35648
+ * @param {*} [options] Override http request option.
35649
+ * @throws {RequiredError}
35650
+ */
35651
+ registryControllerRefresh: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
35652
+ // verify required parameter 'id' is not null or undefined
35653
+ assertParamExists('registryControllerRefresh', 'id', id);
35654
+ const localVarPath = `/registry/{id}/refresh`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
35655
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
35656
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
35657
+ let baseOptions;
35658
+ if (configuration) {
35659
+ baseOptions = configuration.baseOptions;
35660
+ }
35661
+
35662
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
35663
+ const localVarHeaderParameter = {} as any;
35664
+ const localVarQueryParameter = {} as any;
35665
+
35666
+ // authentication domainAuth required
35667
+
35668
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
35669
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
35670
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
35671
+
35672
+ return {
35673
+ url: toPathString(localVarUrlObj),
35674
+ options: localVarRequestOptions,
35675
+ };
35676
+ },
35677
+ /**
35678
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
35679
+ * @summary Subscribe to a registry
35680
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
35681
+ * @param {*} [options] Override http request option.
35682
+ * @throws {RequiredError}
35683
+ */
35684
+ registryControllerSubscribe: async (
35685
+ registrySubscribeBody?: RegistrySubscribeBody,
35686
+ options: RawAxiosRequestConfig = {},
35687
+ ): Promise<RequestArgs> => {
35688
+ const localVarPath = `/registry`;
35689
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
35690
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
35691
+ let baseOptions;
35692
+ if (configuration) {
35693
+ baseOptions = configuration.baseOptions;
35694
+ }
35695
+
35696
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
35697
+ const localVarHeaderParameter = {} as any;
35698
+ const localVarQueryParameter = {} as any;
35699
+
35700
+ // authentication domainAuth required
35701
+
35702
+ localVarHeaderParameter['Content-Type'] = 'application/json';
35703
+
35704
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
35705
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
35706
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
35707
+ localVarRequestOptions.data = serializeDataIfNeeded(registrySubscribeBody, localVarRequestOptions, configuration);
35708
+
35709
+ return {
35710
+ url: toPathString(localVarUrlObj),
35711
+ options: localVarRequestOptions,
35712
+ };
35713
+ },
35714
+ /**
35715
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
35716
+ * @summary Unsubscribe from a registry
35717
+ * @param {string} id
35718
+ * @param {*} [options] Override http request option.
35719
+ * @throws {RequiredError}
35720
+ */
35721
+ registryControllerUnsubscribe: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
35722
+ // verify required parameter 'id' is not null or undefined
35723
+ assertParamExists('registryControllerUnsubscribe', 'id', id);
35724
+ const localVarPath = `/registry/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
35725
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
35726
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
35727
+ let baseOptions;
35728
+ if (configuration) {
35729
+ baseOptions = configuration.baseOptions;
35730
+ }
35731
+
35732
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
35733
+ const localVarHeaderParameter = {} as any;
35734
+ const localVarQueryParameter = {} as any;
35735
+
35736
+ // authentication domainAuth required
35737
+
35738
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
35739
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
35740
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
35741
+
35742
+ return {
35743
+ url: toPathString(localVarUrlObj),
35744
+ options: localVarRequestOptions,
35745
+ };
35746
+ },
35747
+ };
35748
+ };
35749
+
35750
+ /**
35751
+ * RegistryApi - functional programming interface
35752
+ * @export
35753
+ */
35754
+ export const RegistryApiFp = function (configuration?: Configuration) {
35755
+ const localVarAxiosParamCreator = RegistryApiAxiosParamCreator(configuration);
35756
+ return {
35757
+ /**
35758
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
35759
+ * @summary Install a module from a registry
35760
+ * @param {string} id
35761
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
35762
+ * @param {*} [options] Override http request option.
35763
+ * @throws {RequiredError}
35764
+ */
35765
+ async registryControllerInstall(
35766
+ id: string,
35767
+ registryInstallBody?: RegistryInstallBody,
35768
+ options?: RawAxiosRequestConfig,
35769
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>> {
35770
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registryControllerInstall(
35771
+ id,
35772
+ registryInstallBody,
35773
+ options,
35774
+ );
35775
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35776
+ const localVarOperationServerBasePath =
35777
+ operationServerMap['RegistryApi.registryControllerInstall']?.[localVarOperationServerIndex]?.url;
35778
+ return (axios, basePath) =>
35779
+ createRequestFunction(
35780
+ localVarAxiosArgs,
35781
+ globalAxios,
35782
+ BASE_PATH,
35783
+ configuration,
35784
+ )(axios, localVarOperationServerBasePath || basePath);
35785
+ },
35786
+ /**
35787
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
35788
+ * @summary List subscribed registries
35789
+ * @param {*} [options] Override http request option.
35790
+ * @throws {RequiredError}
35791
+ */
35792
+ async registryControllerList(
35793
+ options?: RawAxiosRequestConfig,
35794
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryListOutputDTOAPI>> {
35795
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registryControllerList(options);
35796
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35797
+ const localVarOperationServerBasePath =
35798
+ operationServerMap['RegistryApi.registryControllerList']?.[localVarOperationServerIndex]?.url;
35799
+ return (axios, basePath) =>
35800
+ createRequestFunction(
35801
+ localVarAxiosArgs,
35802
+ globalAxios,
35803
+ BASE_PATH,
35804
+ configuration,
35805
+ )(axios, localVarOperationServerBasePath || basePath);
35806
+ },
35807
+ /**
35808
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
35809
+ * @summary Refresh registry manifest
35810
+ * @param {string} id
35811
+ * @param {*} [options] Override http request option.
35812
+ * @throws {RequiredError}
35813
+ */
35814
+ async registryControllerRefresh(
35815
+ id: string,
35816
+ options?: RawAxiosRequestConfig,
35817
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>> {
35818
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registryControllerRefresh(id, options);
35819
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35820
+ const localVarOperationServerBasePath =
35821
+ operationServerMap['RegistryApi.registryControllerRefresh']?.[localVarOperationServerIndex]?.url;
35822
+ return (axios, basePath) =>
35823
+ createRequestFunction(
35824
+ localVarAxiosArgs,
35825
+ globalAxios,
35826
+ BASE_PATH,
35827
+ configuration,
35828
+ )(axios, localVarOperationServerBasePath || basePath);
35829
+ },
35830
+ /**
35831
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
35832
+ * @summary Subscribe to a registry
35833
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
35834
+ * @param {*} [options] Override http request option.
35835
+ * @throws {RequiredError}
35836
+ */
35837
+ async registryControllerSubscribe(
35838
+ registrySubscribeBody?: RegistrySubscribeBody,
35839
+ options?: RawAxiosRequestConfig,
35840
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>> {
35841
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registryControllerSubscribe(
35842
+ registrySubscribeBody,
35843
+ options,
35844
+ );
35845
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35846
+ const localVarOperationServerBasePath =
35847
+ operationServerMap['RegistryApi.registryControllerSubscribe']?.[localVarOperationServerIndex]?.url;
35848
+ return (axios, basePath) =>
35849
+ createRequestFunction(
35850
+ localVarAxiosArgs,
35851
+ globalAxios,
35852
+ BASE_PATH,
35853
+ configuration,
35854
+ )(axios, localVarOperationServerBasePath || basePath);
35855
+ },
35856
+ /**
35857
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
35858
+ * @summary Unsubscribe from a registry
35859
+ * @param {string} id
35860
+ * @param {*} [options] Override http request option.
35861
+ * @throws {RequiredError}
35862
+ */
35863
+ async registryControllerUnsubscribe(
35864
+ id: string,
35865
+ options?: RawAxiosRequestConfig,
35866
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>> {
35867
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registryControllerUnsubscribe(id, options);
35868
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35869
+ const localVarOperationServerBasePath =
35870
+ operationServerMap['RegistryApi.registryControllerUnsubscribe']?.[localVarOperationServerIndex]?.url;
35871
+ return (axios, basePath) =>
35872
+ createRequestFunction(
35873
+ localVarAxiosArgs,
35874
+ globalAxios,
35875
+ BASE_PATH,
35876
+ configuration,
35877
+ )(axios, localVarOperationServerBasePath || basePath);
35878
+ },
35879
+ };
35880
+ };
35881
+
35882
+ /**
35883
+ * RegistryApi - factory interface
35884
+ * @export
35885
+ */
35886
+ export const RegistryApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
35887
+ const localVarFp = RegistryApiFp(configuration);
35888
+ return {
35889
+ /**
35890
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
35891
+ * @summary Install a module from a registry
35892
+ * @param {string} id
35893
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
35894
+ * @param {*} [options] Override http request option.
35895
+ * @throws {RequiredError}
35896
+ */
35897
+ registryControllerInstall(
35898
+ id: string,
35899
+ registryInstallBody?: RegistryInstallBody,
35900
+ options?: RawAxiosRequestConfig,
35901
+ ): AxiosPromise<APIOutput> {
35902
+ return localVarFp
35903
+ .registryControllerInstall(id, registryInstallBody, options)
35904
+ .then((request) => request(axios, basePath));
35905
+ },
35906
+ /**
35907
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
35908
+ * @summary List subscribed registries
35909
+ * @param {*} [options] Override http request option.
35910
+ * @throws {RequiredError}
35911
+ */
35912
+ registryControllerList(options?: RawAxiosRequestConfig): AxiosPromise<RegistryListOutputDTOAPI> {
35913
+ return localVarFp.registryControllerList(options).then((request) => request(axios, basePath));
35914
+ },
35915
+ /**
35916
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
35917
+ * @summary Refresh registry manifest
35918
+ * @param {string} id
35919
+ * @param {*} [options] Override http request option.
35920
+ * @throws {RequiredError}
35921
+ */
35922
+ registryControllerRefresh(
35923
+ id: string,
35924
+ options?: RawAxiosRequestConfig,
35925
+ ): AxiosPromise<RegistryWithManifestOutputDTOAPI> {
35926
+ return localVarFp.registryControllerRefresh(id, options).then((request) => request(axios, basePath));
35927
+ },
35928
+ /**
35929
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
35930
+ * @summary Subscribe to a registry
35931
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
35932
+ * @param {*} [options] Override http request option.
35933
+ * @throws {RequiredError}
35934
+ */
35935
+ registryControllerSubscribe(
35936
+ registrySubscribeBody?: RegistrySubscribeBody,
35937
+ options?: RawAxiosRequestConfig,
35938
+ ): AxiosPromise<RegistryWithManifestOutputDTOAPI> {
35939
+ return localVarFp
35940
+ .registryControllerSubscribe(registrySubscribeBody, options)
35941
+ .then((request) => request(axios, basePath));
35942
+ },
35943
+ /**
35944
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
35945
+ * @summary Unsubscribe from a registry
35946
+ * @param {string} id
35947
+ * @param {*} [options] Override http request option.
35948
+ * @throws {RequiredError}
35949
+ */
35950
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput> {
35951
+ return localVarFp.registryControllerUnsubscribe(id, options).then((request) => request(axios, basePath));
35952
+ },
35953
+ };
35954
+ };
35955
+
35956
+ /**
35957
+ * RegistryApi - object-oriented interface
35958
+ * @export
35959
+ * @class RegistryApi
35960
+ * @extends {BaseAPI}
35961
+ */
35962
+ export class RegistryApi extends BaseAPI {
35963
+ /**
35964
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
35965
+ * @summary Install a module from a registry
35966
+ * @param {string} id
35967
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
35968
+ * @param {*} [options] Override http request option.
35969
+ * @throws {RequiredError}
35970
+ * @memberof RegistryApi
35971
+ */
35972
+ public registryControllerInstall(
35973
+ id: string,
35974
+ registryInstallBody?: RegistryInstallBody,
35975
+ options?: RawAxiosRequestConfig,
35976
+ ) {
35977
+ return RegistryApiFp(this.configuration)
35978
+ .registryControllerInstall(id, registryInstallBody, options)
35979
+ .then((request) => request(this.axios, this.basePath));
35980
+ }
35981
+
35982
+ /**
35983
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
35984
+ * @summary List subscribed registries
35985
+ * @param {*} [options] Override http request option.
35986
+ * @throws {RequiredError}
35987
+ * @memberof RegistryApi
35988
+ */
35989
+ public registryControllerList(options?: RawAxiosRequestConfig) {
35990
+ return RegistryApiFp(this.configuration)
35991
+ .registryControllerList(options)
35992
+ .then((request) => request(this.axios, this.basePath));
35993
+ }
35994
+
35995
+ /**
35996
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
35997
+ * @summary Refresh registry manifest
35998
+ * @param {string} id
35999
+ * @param {*} [options] Override http request option.
36000
+ * @throws {RequiredError}
36001
+ * @memberof RegistryApi
36002
+ */
36003
+ public registryControllerRefresh(id: string, options?: RawAxiosRequestConfig) {
36004
+ return RegistryApiFp(this.configuration)
36005
+ .registryControllerRefresh(id, options)
36006
+ .then((request) => request(this.axios, this.basePath));
36007
+ }
36008
+
36009
+ /**
36010
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
36011
+ * @summary Subscribe to a registry
36012
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
36013
+ * @param {*} [options] Override http request option.
36014
+ * @throws {RequiredError}
36015
+ * @memberof RegistryApi
36016
+ */
36017
+ public registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig) {
36018
+ return RegistryApiFp(this.configuration)
36019
+ .registryControllerSubscribe(registrySubscribeBody, options)
36020
+ .then((request) => request(this.axios, this.basePath));
36021
+ }
36022
+
36023
+ /**
36024
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
36025
+ * @summary Unsubscribe from a registry
36026
+ * @param {string} id
36027
+ * @param {*} [options] Override http request option.
36028
+ * @throws {RequiredError}
36029
+ * @memberof RegistryApi
36030
+ */
36031
+ public registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig) {
36032
+ return RegistryApiFp(this.configuration)
36033
+ .registryControllerUnsubscribe(id, options)
36034
+ .then((request) => request(this.axios, this.basePath));
36035
+ }
36036
+ }
36037
+
33216
36038
  /**
33217
36039
  * RoleApi - axios parameter creator
33218
36040
  * @export
@@ -36757,6 +39579,334 @@ export class ShopOrderApi extends BaseAPI {
36757
39579
  }
36758
39580
  }
36759
39581
 
39582
+ /**
39583
+ * StorefrontConfigApi - axios parameter creator
39584
+ * @export
39585
+ */
39586
+ export const StorefrontConfigApiAxiosParamCreator = function (configuration?: Configuration) {
39587
+ return {
39588
+ /**
39589
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
39590
+ * @summary Get effective config
39591
+ * @param {string} gameServerId
39592
+ * @param {*} [options] Override http request option.
39593
+ * @throws {RequiredError}
39594
+ */
39595
+ storefrontConfigControllerGetEffectiveConfig: async (
39596
+ gameServerId: string,
39597
+ options: RawAxiosRequestConfig = {},
39598
+ ): Promise<RequestArgs> => {
39599
+ // verify required parameter 'gameServerId' is not null or undefined
39600
+ assertParamExists('storefrontConfigControllerGetEffectiveConfig', 'gameServerId', gameServerId);
39601
+ const localVarPath = `/gameserver/{gameServerId}/storefront-config`.replace(
39602
+ `{${'gameServerId'}}`,
39603
+ encodeURIComponent(String(gameServerId)),
39604
+ );
39605
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
39606
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
39607
+ let baseOptions;
39608
+ if (configuration) {
39609
+ baseOptions = configuration.baseOptions;
39610
+ }
39611
+
39612
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
39613
+ const localVarHeaderParameter = {} as any;
39614
+ const localVarQueryParameter = {} as any;
39615
+
39616
+ // authentication domainAuth required
39617
+
39618
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
39619
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
39620
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
39621
+
39622
+ return {
39623
+ url: toPathString(localVarUrlObj),
39624
+ options: localVarRequestOptions,
39625
+ };
39626
+ },
39627
+ /**
39628
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
39629
+ * @summary List templates
39630
+ * @param {*} [options] Override http request option.
39631
+ * @throws {RequiredError}
39632
+ */
39633
+ storefrontConfigControllerListTemplates: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
39634
+ const localVarPath = `/storefront/templates`;
39635
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
39636
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
39637
+ let baseOptions;
39638
+ if (configuration) {
39639
+ baseOptions = configuration.baseOptions;
39640
+ }
39641
+
39642
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
39643
+ const localVarHeaderParameter = {} as any;
39644
+ const localVarQueryParameter = {} as any;
39645
+
39646
+ // authentication domainAuth required
39647
+
39648
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
39649
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
39650
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
39651
+
39652
+ return {
39653
+ url: toPathString(localVarUrlObj),
39654
+ options: localVarRequestOptions,
39655
+ };
39656
+ },
39657
+ /**
39658
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
39659
+ * @summary Set config
39660
+ * @param {string} gameServerId
39661
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
39662
+ * @param {*} [options] Override http request option.
39663
+ * @throws {RequiredError}
39664
+ */
39665
+ storefrontConfigControllerSetConfig: async (
39666
+ gameServerId: string,
39667
+ storefrontConfigUpsertBody?: StorefrontConfigUpsertBody,
39668
+ options: RawAxiosRequestConfig = {},
39669
+ ): Promise<RequestArgs> => {
39670
+ // verify required parameter 'gameServerId' is not null or undefined
39671
+ assertParamExists('storefrontConfigControllerSetConfig', 'gameServerId', gameServerId);
39672
+ const localVarPath = `/gameserver/{gameServerId}/storefront-config`.replace(
39673
+ `{${'gameServerId'}}`,
39674
+ encodeURIComponent(String(gameServerId)),
39675
+ );
39676
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
39677
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
39678
+ let baseOptions;
39679
+ if (configuration) {
39680
+ baseOptions = configuration.baseOptions;
39681
+ }
39682
+
39683
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options };
39684
+ const localVarHeaderParameter = {} as any;
39685
+ const localVarQueryParameter = {} as any;
39686
+
39687
+ // authentication domainAuth required
39688
+
39689
+ localVarHeaderParameter['Content-Type'] = 'application/json';
39690
+
39691
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
39692
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
39693
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
39694
+ localVarRequestOptions.data = serializeDataIfNeeded(
39695
+ storefrontConfigUpsertBody,
39696
+ localVarRequestOptions,
39697
+ configuration,
39698
+ );
39699
+
39700
+ return {
39701
+ url: toPathString(localVarUrlObj),
39702
+ options: localVarRequestOptions,
39703
+ };
39704
+ },
39705
+ };
39706
+ };
39707
+
39708
+ /**
39709
+ * StorefrontConfigApi - functional programming interface
39710
+ * @export
39711
+ */
39712
+ export const StorefrontConfigApiFp = function (configuration?: Configuration) {
39713
+ const localVarAxiosParamCreator = StorefrontConfigApiAxiosParamCreator(configuration);
39714
+ return {
39715
+ /**
39716
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
39717
+ * @summary Get effective config
39718
+ * @param {string} gameServerId
39719
+ * @param {*} [options] Override http request option.
39720
+ * @throws {RequiredError}
39721
+ */
39722
+ async storefrontConfigControllerGetEffectiveConfig(
39723
+ gameServerId: string,
39724
+ options?: RawAxiosRequestConfig,
39725
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>> {
39726
+ const localVarAxiosArgs = await localVarAxiosParamCreator.storefrontConfigControllerGetEffectiveConfig(
39727
+ gameServerId,
39728
+ options,
39729
+ );
39730
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
39731
+ const localVarOperationServerBasePath =
39732
+ operationServerMap['StorefrontConfigApi.storefrontConfigControllerGetEffectiveConfig']?.[
39733
+ localVarOperationServerIndex
39734
+ ]?.url;
39735
+ return (axios, basePath) =>
39736
+ createRequestFunction(
39737
+ localVarAxiosArgs,
39738
+ globalAxios,
39739
+ BASE_PATH,
39740
+ configuration,
39741
+ )(axios, localVarOperationServerBasePath || basePath);
39742
+ },
39743
+ /**
39744
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
39745
+ * @summary List templates
39746
+ * @param {*} [options] Override http request option.
39747
+ * @throws {RequiredError}
39748
+ */
39749
+ async storefrontConfigControllerListTemplates(
39750
+ options?: RawAxiosRequestConfig,
39751
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>> {
39752
+ const localVarAxiosArgs = await localVarAxiosParamCreator.storefrontConfigControllerListTemplates(options);
39753
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
39754
+ const localVarOperationServerBasePath =
39755
+ operationServerMap['StorefrontConfigApi.storefrontConfigControllerListTemplates']?.[
39756
+ localVarOperationServerIndex
39757
+ ]?.url;
39758
+ return (axios, basePath) =>
39759
+ createRequestFunction(
39760
+ localVarAxiosArgs,
39761
+ globalAxios,
39762
+ BASE_PATH,
39763
+ configuration,
39764
+ )(axios, localVarOperationServerBasePath || basePath);
39765
+ },
39766
+ /**
39767
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
39768
+ * @summary Set config
39769
+ * @param {string} gameServerId
39770
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
39771
+ * @param {*} [options] Override http request option.
39772
+ * @throws {RequiredError}
39773
+ */
39774
+ async storefrontConfigControllerSetConfig(
39775
+ gameServerId: string,
39776
+ storefrontConfigUpsertBody?: StorefrontConfigUpsertBody,
39777
+ options?: RawAxiosRequestConfig,
39778
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>> {
39779
+ const localVarAxiosArgs = await localVarAxiosParamCreator.storefrontConfigControllerSetConfig(
39780
+ gameServerId,
39781
+ storefrontConfigUpsertBody,
39782
+ options,
39783
+ );
39784
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
39785
+ const localVarOperationServerBasePath =
39786
+ operationServerMap['StorefrontConfigApi.storefrontConfigControllerSetConfig']?.[localVarOperationServerIndex]
39787
+ ?.url;
39788
+ return (axios, basePath) =>
39789
+ createRequestFunction(
39790
+ localVarAxiosArgs,
39791
+ globalAxios,
39792
+ BASE_PATH,
39793
+ configuration,
39794
+ )(axios, localVarOperationServerBasePath || basePath);
39795
+ },
39796
+ };
39797
+ };
39798
+
39799
+ /**
39800
+ * StorefrontConfigApi - factory interface
39801
+ * @export
39802
+ */
39803
+ export const StorefrontConfigApiFactory = function (
39804
+ configuration?: Configuration,
39805
+ basePath?: string,
39806
+ axios?: AxiosInstance,
39807
+ ) {
39808
+ const localVarFp = StorefrontConfigApiFp(configuration);
39809
+ return {
39810
+ /**
39811
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
39812
+ * @summary Get effective config
39813
+ * @param {string} gameServerId
39814
+ * @param {*} [options] Override http request option.
39815
+ * @throws {RequiredError}
39816
+ */
39817
+ storefrontConfigControllerGetEffectiveConfig(
39818
+ gameServerId: string,
39819
+ options?: RawAxiosRequestConfig,
39820
+ ): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI> {
39821
+ return localVarFp
39822
+ .storefrontConfigControllerGetEffectiveConfig(gameServerId, options)
39823
+ .then((request) => request(axios, basePath));
39824
+ },
39825
+ /**
39826
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
39827
+ * @summary List templates
39828
+ * @param {*} [options] Override http request option.
39829
+ * @throws {RequiredError}
39830
+ */
39831
+ storefrontConfigControllerListTemplates(
39832
+ options?: RawAxiosRequestConfig,
39833
+ ): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI> {
39834
+ return localVarFp.storefrontConfigControllerListTemplates(options).then((request) => request(axios, basePath));
39835
+ },
39836
+ /**
39837
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
39838
+ * @summary Set config
39839
+ * @param {string} gameServerId
39840
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
39841
+ * @param {*} [options] Override http request option.
39842
+ * @throws {RequiredError}
39843
+ */
39844
+ storefrontConfigControllerSetConfig(
39845
+ gameServerId: string,
39846
+ storefrontConfigUpsertBody?: StorefrontConfigUpsertBody,
39847
+ options?: RawAxiosRequestConfig,
39848
+ ): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI> {
39849
+ return localVarFp
39850
+ .storefrontConfigControllerSetConfig(gameServerId, storefrontConfigUpsertBody, options)
39851
+ .then((request) => request(axios, basePath));
39852
+ },
39853
+ };
39854
+ };
39855
+
39856
+ /**
39857
+ * StorefrontConfigApi - object-oriented interface
39858
+ * @export
39859
+ * @class StorefrontConfigApi
39860
+ * @extends {BaseAPI}
39861
+ */
39862
+ export class StorefrontConfigApi extends BaseAPI {
39863
+ /**
39864
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
39865
+ * @summary Get effective config
39866
+ * @param {string} gameServerId
39867
+ * @param {*} [options] Override http request option.
39868
+ * @throws {RequiredError}
39869
+ * @memberof StorefrontConfigApi
39870
+ */
39871
+ public storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig) {
39872
+ return StorefrontConfigApiFp(this.configuration)
39873
+ .storefrontConfigControllerGetEffectiveConfig(gameServerId, options)
39874
+ .then((request) => request(this.axios, this.basePath));
39875
+ }
39876
+
39877
+ /**
39878
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
39879
+ * @summary List templates
39880
+ * @param {*} [options] Override http request option.
39881
+ * @throws {RequiredError}
39882
+ * @memberof StorefrontConfigApi
39883
+ */
39884
+ public storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig) {
39885
+ return StorefrontConfigApiFp(this.configuration)
39886
+ .storefrontConfigControllerListTemplates(options)
39887
+ .then((request) => request(this.axios, this.basePath));
39888
+ }
39889
+
39890
+ /**
39891
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
39892
+ * @summary Set config
39893
+ * @param {string} gameServerId
39894
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
39895
+ * @param {*} [options] Override http request option.
39896
+ * @throws {RequiredError}
39897
+ * @memberof StorefrontConfigApi
39898
+ */
39899
+ public storefrontConfigControllerSetConfig(
39900
+ gameServerId: string,
39901
+ storefrontConfigUpsertBody?: StorefrontConfigUpsertBody,
39902
+ options?: RawAxiosRequestConfig,
39903
+ ) {
39904
+ return StorefrontConfigApiFp(this.configuration)
39905
+ .storefrontConfigControllerSetConfig(gameServerId, storefrontConfigUpsertBody, options)
39906
+ .then((request) => request(this.axios, this.basePath));
39907
+ }
39908
+ }
39909
+
36760
39910
  /**
36761
39911
  * TrackingApi - axios parameter creator
36762
39912
  * @export