@takaro/apiclient 0.3.2 → 0.4.0

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.
@@ -618,6 +618,37 @@ export interface BoundingBoxSearchInputDTO {
618
618
  */
619
619
  gameserverId: string;
620
620
  }
621
+ /**
622
+ *
623
+ * @export
624
+ * @interface CategoryPerformanceDTO
625
+ */
626
+ export interface CategoryPerformanceDTO {
627
+ /**
628
+ *
629
+ * @type {string}
630
+ * @memberof CategoryPerformanceDTO
631
+ */
632
+ name: string;
633
+ /**
634
+ *
635
+ * @type {number}
636
+ * @memberof CategoryPerformanceDTO
637
+ */
638
+ revenue: number;
639
+ /**
640
+ *
641
+ * @type {number}
642
+ * @memberof CategoryPerformanceDTO
643
+ */
644
+ orders: number;
645
+ /**
646
+ *
647
+ * @type {number}
648
+ * @memberof CategoryPerformanceDTO
649
+ */
650
+ percentage: number;
651
+ }
621
652
  /**
622
653
  *
623
654
  * @export
@@ -1499,6 +1530,99 @@ export interface CronJobUpdateDTO {
1499
1530
  */
1500
1531
  function?: string;
1501
1532
  }
1533
+ /**
1534
+ *
1535
+ * @export
1536
+ * @interface CustomerMetricsDTO
1537
+ */
1538
+ export interface CustomerMetricsDTO {
1539
+ /**
1540
+ *
1541
+ * @type {Array<CustomerSegmentDTO>}
1542
+ * @memberof CustomerMetricsDTO
1543
+ */
1544
+ segments: Array<CustomerSegmentDTO>;
1545
+ /**
1546
+ *
1547
+ * @type {Array<TopBuyerDTO>}
1548
+ * @memberof CustomerMetricsDTO
1549
+ */
1550
+ topBuyers: Array<TopBuyerDTO>;
1551
+ /**
1552
+ *
1553
+ * @type {number}
1554
+ * @memberof CustomerMetricsDTO
1555
+ */
1556
+ repeatRate: number;
1557
+ /**
1558
+ *
1559
+ * @type {number}
1560
+ * @memberof CustomerMetricsDTO
1561
+ */
1562
+ newCustomers: number;
1563
+ /**
1564
+ *
1565
+ * @type {number}
1566
+ * @memberof CustomerMetricsDTO
1567
+ */
1568
+ totalCustomers: number;
1569
+ }
1570
+ /**
1571
+ *
1572
+ * @export
1573
+ * @interface CustomerSegmentDTO
1574
+ */
1575
+ export interface CustomerSegmentDTO {
1576
+ /**
1577
+ *
1578
+ * @type {string}
1579
+ * @memberof CustomerSegmentDTO
1580
+ */
1581
+ name: string;
1582
+ /**
1583
+ *
1584
+ * @type {number}
1585
+ * @memberof CustomerSegmentDTO
1586
+ */
1587
+ count: number;
1588
+ /**
1589
+ *
1590
+ * @type {number}
1591
+ * @memberof CustomerSegmentDTO
1592
+ */
1593
+ percentage: number;
1594
+ /**
1595
+ *
1596
+ * @type {string}
1597
+ * @memberof CustomerSegmentDTO
1598
+ */
1599
+ color: string;
1600
+ }
1601
+ /**
1602
+ *
1603
+ * @export
1604
+ * @interface DeadStockItemDTO
1605
+ */
1606
+ export interface DeadStockItemDTO {
1607
+ /**
1608
+ *
1609
+ * @type {string}
1610
+ * @memberof DeadStockItemDTO
1611
+ */
1612
+ id: string;
1613
+ /**
1614
+ *
1615
+ * @type {string}
1616
+ * @memberof DeadStockItemDTO
1617
+ */
1618
+ name: string;
1619
+ /**
1620
+ *
1621
+ * @type {number}
1622
+ * @memberof DeadStockItemDTO
1623
+ */
1624
+ daysSinceCreated: number;
1625
+ }
1502
1626
  /**
1503
1627
  *
1504
1628
  * @export
@@ -1717,6 +1841,25 @@ export interface DiscordInviteOutputDTO {
1717
1841
  */
1718
1842
  meta: MetadataOutput;
1719
1843
  }
1844
+ /**
1845
+ *
1846
+ * @export
1847
+ * @interface DiscordMessageParams
1848
+ */
1849
+ export interface DiscordMessageParams {
1850
+ /**
1851
+ *
1852
+ * @type {string}
1853
+ * @memberof DiscordMessageParams
1854
+ */
1855
+ channelId: string;
1856
+ /**
1857
+ *
1858
+ * @type {string}
1859
+ * @memberof DiscordMessageParams
1860
+ */
1861
+ messageId: string;
1862
+ }
1720
1863
  /**
1721
1864
  *
1722
1865
  * @export
@@ -2682,8 +2825,10 @@ export declare const EventCreateDTOEventNameEnum: {
2682
2825
  readonly CronjobExecuted: "cronjob-executed";
2683
2826
  readonly CurrencyAdded: "currency-added";
2684
2827
  readonly CurrencyDeducted: "currency-deducted";
2828
+ readonly CurrencyResetAll: "currency-reset-all";
2685
2829
  readonly SettingsSet: "settings-set";
2686
2830
  readonly PlayerNewIpDetected: "player-new-ip-detected";
2831
+ readonly PlayerNewNameDetected: "player-new-name-detected";
2687
2832
  readonly ServerStatusChanged: "server-status-changed";
2688
2833
  readonly ModuleCreated: "module-created";
2689
2834
  readonly ModuleUpdated: "module-updated";
@@ -2703,6 +2848,7 @@ export declare const EventCreateDTOEventNameEnum: {
2703
2848
  readonly GameserverDeleted: "gameserver-deleted";
2704
2849
  readonly PlayerBanned: "player-banned";
2705
2850
  readonly PlayerUnbanned: "player-unbanned";
2851
+ readonly PlayerDeleted: "player-deleted";
2706
2852
  readonly PlayerConnected: "player-connected";
2707
2853
  readonly PlayerDisconnected: "player-disconnected";
2708
2854
  readonly ChatMessage: "chat-message";
@@ -2950,8 +3096,10 @@ export declare const EventOutputDTOEventNameEnum: {
2950
3096
  readonly CronjobExecuted: "cronjob-executed";
2951
3097
  readonly CurrencyAdded: "currency-added";
2952
3098
  readonly CurrencyDeducted: "currency-deducted";
3099
+ readonly CurrencyResetAll: "currency-reset-all";
2953
3100
  readonly SettingsSet: "settings-set";
2954
3101
  readonly PlayerNewIpDetected: "player-new-ip-detected";
3102
+ readonly PlayerNewNameDetected: "player-new-name-detected";
2955
3103
  readonly ServerStatusChanged: "server-status-changed";
2956
3104
  readonly ModuleCreated: "module-created";
2957
3105
  readonly ModuleUpdated: "module-updated";
@@ -2971,6 +3119,7 @@ export declare const EventOutputDTOEventNameEnum: {
2971
3119
  readonly GameserverDeleted: "gameserver-deleted";
2972
3120
  readonly PlayerBanned: "player-banned";
2973
3121
  readonly PlayerUnbanned: "player-unbanned";
3122
+ readonly PlayerDeleted: "player-deleted";
2974
3123
  readonly PlayerConnected: "player-connected";
2975
3124
  readonly PlayerDisconnected: "player-disconnected";
2976
3125
  readonly ChatMessage: "chat-message";
@@ -2982,7 +3131,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
2982
3131
  * @type EventOutputDTOMeta
2983
3132
  * @export
2984
3133
  */
2985
- export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerUnbanned | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
3134
+ export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerUnbanned | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
2986
3135
  /**
2987
3136
  *
2988
3137
  * @export
@@ -3131,8 +3280,10 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
3131
3280
  readonly CronjobExecuted: "cronjob-executed";
3132
3281
  readonly CurrencyAdded: "currency-added";
3133
3282
  readonly CurrencyDeducted: "currency-deducted";
3283
+ readonly CurrencyResetAll: "currency-reset-all";
3134
3284
  readonly SettingsSet: "settings-set";
3135
3285
  readonly PlayerNewIpDetected: "player-new-ip-detected";
3286
+ readonly PlayerNewNameDetected: "player-new-name-detected";
3136
3287
  readonly ServerStatusChanged: "server-status-changed";
3137
3288
  readonly ModuleCreated: "module-created";
3138
3289
  readonly ModuleUpdated: "module-updated";
@@ -3152,6 +3303,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
3152
3303
  readonly GameserverDeleted: "gameserver-deleted";
3153
3304
  readonly PlayerBanned: "player-banned";
3154
3305
  readonly PlayerUnbanned: "player-unbanned";
3306
+ readonly PlayerDeleted: "player-deleted";
3155
3307
  readonly PlayerConnected: "player-connected";
3156
3308
  readonly PlayerDisconnected: "player-disconnected";
3157
3309
  readonly ChatMessage: "chat-message";
@@ -3305,8 +3457,10 @@ export declare const EventsCountInputDTOEventNameEnum: {
3305
3457
  readonly CronjobExecuted: "cronjob-executed";
3306
3458
  readonly CurrencyAdded: "currency-added";
3307
3459
  readonly CurrencyDeducted: "currency-deducted";
3460
+ readonly CurrencyResetAll: "currency-reset-all";
3308
3461
  readonly SettingsSet: "settings-set";
3309
3462
  readonly PlayerNewIpDetected: "player-new-ip-detected";
3463
+ readonly PlayerNewNameDetected: "player-new-name-detected";
3310
3464
  readonly ServerStatusChanged: "server-status-changed";
3311
3465
  readonly ModuleCreated: "module-created";
3312
3466
  readonly ModuleUpdated: "module-updated";
@@ -3326,6 +3480,7 @@ export declare const EventsCountInputDTOEventNameEnum: {
3326
3480
  readonly GameserverDeleted: "gameserver-deleted";
3327
3481
  readonly PlayerBanned: "player-banned";
3328
3482
  readonly PlayerUnbanned: "player-unbanned";
3483
+ readonly PlayerDeleted: "player-deleted";
3329
3484
  readonly PlayerConnected: "player-connected";
3330
3485
  readonly PlayerDisconnected: "player-disconnected";
3331
3486
  readonly ChatMessage: "chat-message";
@@ -3647,6 +3802,19 @@ export declare const GameServerCreateDTOTypeEnum: {
3647
3802
  readonly Mock: "MOCK";
3648
3803
  };
3649
3804
  export type GameServerCreateDTOTypeEnum = (typeof GameServerCreateDTOTypeEnum)[keyof typeof GameServerCreateDTOTypeEnum];
3805
+ /**
3806
+ *
3807
+ * @export
3808
+ * @interface GameServerIdQueryParam
3809
+ */
3810
+ export interface GameServerIdQueryParam {
3811
+ /**
3812
+ *
3813
+ * @type {string}
3814
+ * @memberof GameServerIdQueryParam
3815
+ */
3816
+ gameServerId?: string;
3817
+ }
3650
3818
  /**
3651
3819
  *
3652
3820
  * @export
@@ -4064,6 +4232,7 @@ export declare const GetJobInputDTOTypeEnum: {
4064
4232
  readonly SyncEntities: "syncEntities";
4065
4233
  readonly SyncBans: "syncBans";
4066
4234
  readonly SyncSteam: "syncSteam";
4235
+ readonly SyncDiscordRoles: "syncDiscordRoles";
4067
4236
  };
4068
4237
  export type GetJobInputDTOTypeEnum = (typeof GetJobInputDTOTypeEnum)[keyof typeof GetJobInputDTOTypeEnum];
4069
4238
  /**
@@ -4093,6 +4262,8 @@ export declare const GetSettingsInputKeysEnum: {
4093
4262
  readonly DeveloperMode: "developerMode";
4094
4263
  readonly MessagePrefix: "messagePrefix";
4095
4264
  readonly DomainName: "domainName";
4265
+ readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
4266
+ readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
4096
4267
  };
4097
4268
  export type GetSettingsInputKeysEnum = (typeof GetSettingsInputKeysEnum)[keyof typeof GetSettingsInputKeysEnum];
4098
4269
  /**
@@ -4401,6 +4572,31 @@ export interface HealthOutputDTO {
4401
4572
  */
4402
4573
  healthy: boolean;
4403
4574
  }
4575
+ /**
4576
+ *
4577
+ * @export
4578
+ * @interface HeatmapDataPointDTO
4579
+ */
4580
+ export interface HeatmapDataPointDTO {
4581
+ /**
4582
+ *
4583
+ * @type {number}
4584
+ * @memberof HeatmapDataPointDTO
4585
+ */
4586
+ day: number;
4587
+ /**
4588
+ *
4589
+ * @type {number}
4590
+ * @memberof HeatmapDataPointDTO
4591
+ */
4592
+ hour: number;
4593
+ /**
4594
+ *
4595
+ * @type {number}
4596
+ * @memberof HeatmapDataPointDTO
4597
+ */
4598
+ value: number;
4599
+ }
4404
4600
  /**
4405
4601
  *
4406
4602
  * @export
@@ -4463,8 +4659,10 @@ export declare const HookCreateDTOEventTypeEnum: {
4463
4659
  readonly CronjobExecuted: "cronjob-executed";
4464
4660
  readonly CurrencyAdded: "currency-added";
4465
4661
  readonly CurrencyDeducted: "currency-deducted";
4662
+ readonly CurrencyResetAll: "currency-reset-all";
4466
4663
  readonly SettingsSet: "settings-set";
4467
4664
  readonly PlayerNewIpDetected: "player-new-ip-detected";
4665
+ readonly PlayerNewNameDetected: "player-new-name-detected";
4468
4666
  readonly ServerStatusChanged: "server-status-changed";
4469
4667
  readonly ModuleCreated: "module-created";
4470
4668
  readonly ModuleUpdated: "module-updated";
@@ -4484,6 +4682,7 @@ export declare const HookCreateDTOEventTypeEnum: {
4484
4682
  readonly GameserverDeleted: "gameserver-deleted";
4485
4683
  readonly PlayerBanned: "player-banned";
4486
4684
  readonly PlayerUnbanned: "player-unbanned";
4685
+ readonly PlayerDeleted: "player-deleted";
4487
4686
  };
4488
4687
  export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
4489
4688
  /**
@@ -4616,8 +4815,10 @@ export declare const HookOutputDTOEventTypeEnum: {
4616
4815
  readonly CronjobExecuted: "cronjob-executed";
4617
4816
  readonly CurrencyAdded: "currency-added";
4618
4817
  readonly CurrencyDeducted: "currency-deducted";
4818
+ readonly CurrencyResetAll: "currency-reset-all";
4619
4819
  readonly SettingsSet: "settings-set";
4620
4820
  readonly PlayerNewIpDetected: "player-new-ip-detected";
4821
+ readonly PlayerNewNameDetected: "player-new-name-detected";
4621
4822
  readonly ServerStatusChanged: "server-status-changed";
4622
4823
  readonly ModuleCreated: "module-created";
4623
4824
  readonly ModuleUpdated: "module-updated";
@@ -4637,6 +4838,7 @@ export declare const HookOutputDTOEventTypeEnum: {
4637
4838
  readonly GameserverDeleted: "gameserver-deleted";
4638
4839
  readonly PlayerBanned: "player-banned";
4639
4840
  readonly PlayerUnbanned: "player-unbanned";
4841
+ readonly PlayerDeleted: "player-deleted";
4640
4842
  };
4641
4843
  export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
4642
4844
  /**
@@ -4714,8 +4916,10 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
4714
4916
  readonly CronjobExecuted: "cronjob-executed";
4715
4917
  readonly CurrencyAdded: "currency-added";
4716
4918
  readonly CurrencyDeducted: "currency-deducted";
4919
+ readonly CurrencyResetAll: "currency-reset-all";
4717
4920
  readonly SettingsSet: "settings-set";
4718
4921
  readonly PlayerNewIpDetected: "player-new-ip-detected";
4922
+ readonly PlayerNewNameDetected: "player-new-name-detected";
4719
4923
  readonly ServerStatusChanged: "server-status-changed";
4720
4924
  readonly ModuleCreated: "module-created";
4721
4925
  readonly ModuleUpdated: "module-updated";
@@ -4735,6 +4939,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
4735
4939
  readonly GameserverDeleted: "gameserver-deleted";
4736
4940
  readonly PlayerBanned: "player-banned";
4737
4941
  readonly PlayerUnbanned: "player-unbanned";
4942
+ readonly PlayerDeleted: "player-deleted";
4738
4943
  };
4739
4944
  export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
4740
4945
  /**
@@ -4877,8 +5082,10 @@ export declare const HookTriggerDTOEventTypeEnum: {
4877
5082
  readonly CronjobExecuted: "cronjob-executed";
4878
5083
  readonly CurrencyAdded: "currency-added";
4879
5084
  readonly CurrencyDeducted: "currency-deducted";
5085
+ readonly CurrencyResetAll: "currency-reset-all";
4880
5086
  readonly SettingsSet: "settings-set";
4881
5087
  readonly PlayerNewIpDetected: "player-new-ip-detected";
5088
+ readonly PlayerNewNameDetected: "player-new-name-detected";
4882
5089
  readonly ServerStatusChanged: "server-status-changed";
4883
5090
  readonly ModuleCreated: "module-created";
4884
5091
  readonly ModuleUpdated: "module-updated";
@@ -4898,6 +5105,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
4898
5105
  readonly GameserverDeleted: "gameserver-deleted";
4899
5106
  readonly PlayerBanned: "player-banned";
4900
5107
  readonly PlayerUnbanned: "player-unbanned";
5108
+ readonly PlayerDeleted: "player-deleted";
4901
5109
  };
4902
5110
  export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
4903
5111
  /**
@@ -4956,8 +5164,10 @@ export declare const HookUpdateDTOEventTypeEnum: {
4956
5164
  readonly CronjobExecuted: "cronjob-executed";
4957
5165
  readonly CurrencyAdded: "currency-added";
4958
5166
  readonly CurrencyDeducted: "currency-deducted";
5167
+ readonly CurrencyResetAll: "currency-reset-all";
4959
5168
  readonly SettingsSet: "settings-set";
4960
5169
  readonly PlayerNewIpDetected: "player-new-ip-detected";
5170
+ readonly PlayerNewNameDetected: "player-new-name-detected";
4961
5171
  readonly ServerStatusChanged: "server-status-changed";
4962
5172
  readonly ModuleCreated: "module-created";
4963
5173
  readonly ModuleUpdated: "module-updated";
@@ -4977,6 +5187,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
4977
5187
  readonly GameserverDeleted: "gameserver-deleted";
4978
5188
  readonly PlayerBanned: "player-banned";
4979
5189
  readonly PlayerUnbanned: "player-unbanned";
5190
+ readonly PlayerDeleted: "player-deleted";
4980
5191
  };
4981
5192
  export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
4982
5193
  /**
@@ -5275,8 +5486,10 @@ export declare const IHookEventTypeEnum: {
5275
5486
  readonly CronjobExecuted: "cronjob-executed";
5276
5487
  readonly CurrencyAdded: "currency-added";
5277
5488
  readonly CurrencyDeducted: "currency-deducted";
5489
+ readonly CurrencyResetAll: "currency-reset-all";
5278
5490
  readonly SettingsSet: "settings-set";
5279
5491
  readonly PlayerNewIpDetected: "player-new-ip-detected";
5492
+ readonly PlayerNewNameDetected: "player-new-name-detected";
5280
5493
  readonly ServerStatusChanged: "server-status-changed";
5281
5494
  readonly ModuleCreated: "module-created";
5282
5495
  readonly ModuleUpdated: "module-updated";
@@ -5296,6 +5509,7 @@ export declare const IHookEventTypeEnum: {
5296
5509
  readonly GameserverDeleted: "gameserver-deleted";
5297
5510
  readonly PlayerBanned: "player-banned";
5298
5511
  readonly PlayerUnbanned: "player-unbanned";
5512
+ readonly PlayerDeleted: "player-deleted";
5299
5513
  };
5300
5514
  export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
5301
5515
  /**
@@ -5613,6 +5827,43 @@ export interface ImportOutputDTOAPI {
5613
5827
  */
5614
5828
  meta: MetadataOutput;
5615
5829
  }
5830
+ /**
5831
+ *
5832
+ * @export
5833
+ * @interface InsightDTO
5834
+ */
5835
+ export interface InsightDTO {
5836
+ /**
5837
+ *
5838
+ * @type {string}
5839
+ * @memberof InsightDTO
5840
+ */
5841
+ type: string;
5842
+ /**
5843
+ *
5844
+ * @type {string}
5845
+ * @memberof InsightDTO
5846
+ */
5847
+ title: string;
5848
+ /**
5849
+ *
5850
+ * @type {string}
5851
+ * @memberof InsightDTO
5852
+ */
5853
+ description: string;
5854
+ /**
5855
+ *
5856
+ * @type {string}
5857
+ * @memberof InsightDTO
5858
+ */
5859
+ value?: string;
5860
+ /**
5861
+ *
5862
+ * @type {string}
5863
+ * @memberof InsightDTO
5864
+ */
5865
+ icon: string;
5866
+ }
5616
5867
  /**
5617
5868
  *
5618
5869
  * @export
@@ -6055,6 +6306,67 @@ export interface JobStatusOutputDTOAPI {
6055
6306
  */
6056
6307
  meta: MetadataOutput;
6057
6308
  }
6309
+ /**
6310
+ *
6311
+ * @export
6312
+ * @interface KPIMetricsDTO
6313
+ */
6314
+ export interface KPIMetricsDTO {
6315
+ /**
6316
+ *
6317
+ * @type {number}
6318
+ * @memberof KPIMetricsDTO
6319
+ */
6320
+ totalRevenue: number;
6321
+ /**
6322
+ *
6323
+ * @type {number}
6324
+ * @memberof KPIMetricsDTO
6325
+ */
6326
+ revenueChange: number;
6327
+ /**
6328
+ *
6329
+ * @type {Array<number>}
6330
+ * @memberof KPIMetricsDTO
6331
+ */
6332
+ revenueSparkline?: Array<number>;
6333
+ /**
6334
+ *
6335
+ * @type {number}
6336
+ * @memberof KPIMetricsDTO
6337
+ */
6338
+ ordersToday: number;
6339
+ /**
6340
+ *
6341
+ * @type {number}
6342
+ * @memberof KPIMetricsDTO
6343
+ */
6344
+ ordersChange: number;
6345
+ /**
6346
+ *
6347
+ * @type {number}
6348
+ * @memberof KPIMetricsDTO
6349
+ */
6350
+ activeCustomers: number;
6351
+ /**
6352
+ *
6353
+ * @type {number}
6354
+ * @memberof KPIMetricsDTO
6355
+ */
6356
+ customersChange: number;
6357
+ /**
6358
+ *
6359
+ * @type {number}
6360
+ * @memberof KPIMetricsDTO
6361
+ */
6362
+ averageOrderValue: number;
6363
+ /**
6364
+ *
6365
+ * @type {number}
6366
+ * @memberof KPIMetricsDTO
6367
+ */
6368
+ aovChange: number;
6369
+ }
6058
6370
  /**
6059
6371
  *
6060
6372
  * @export
@@ -6312,6 +6624,62 @@ export interface MeOutputDTO {
6312
6624
  */
6313
6625
  pogs: Array<PlayerOnGameserverOutputDTO>;
6314
6626
  }
6627
+ /**
6628
+ *
6629
+ * @export
6630
+ * @interface MessageOutputDTO
6631
+ */
6632
+ export interface MessageOutputDTO {
6633
+ /**
6634
+ *
6635
+ * @type {string}
6636
+ * @memberof MessageOutputDTO
6637
+ */
6638
+ id: string;
6639
+ /**
6640
+ *
6641
+ * @type {string}
6642
+ * @memberof MessageOutputDTO
6643
+ */
6644
+ channelId: string;
6645
+ /**
6646
+ *
6647
+ * @type {string}
6648
+ * @memberof MessageOutputDTO
6649
+ */
6650
+ guildId: string;
6651
+ /**
6652
+ *
6653
+ * @type {string}
6654
+ * @memberof MessageOutputDTO
6655
+ */
6656
+ content?: string;
6657
+ /**
6658
+ *
6659
+ * @type {DiscordEmbedInputDTO}
6660
+ * @memberof MessageOutputDTO
6661
+ */
6662
+ embed?: DiscordEmbedInputDTO;
6663
+ }
6664
+ /**
6665
+ *
6666
+ * @export
6667
+ * @interface MessageOutputDTOAPI
6668
+ */
6669
+ export interface MessageOutputDTOAPI {
6670
+ /**
6671
+ *
6672
+ * @type {MessageOutputDTO}
6673
+ * @memberof MessageOutputDTOAPI
6674
+ */
6675
+ data: MessageOutputDTO;
6676
+ /**
6677
+ *
6678
+ * @type {MetadataOutput}
6679
+ * @memberof MessageOutputDTOAPI
6680
+ */
6681
+ meta: MetadataOutput;
6682
+ }
6315
6683
  /**
6316
6684
  *
6317
6685
  * @export
@@ -7423,38 +7791,131 @@ export type NOTDOMAINSCOPEDTakaroModelDTOCreatedAt = string;
7423
7791
  /**
7424
7792
  *
7425
7793
  * @export
7426
- * @interface OptionalPogStatsInputDTO
7794
+ * @interface NameHistoryOutputDTO
7427
7795
  */
7428
- export interface OptionalPogStatsInputDTO {
7796
+ export interface NameHistoryOutputDTO {
7429
7797
  /**
7430
7798
  *
7431
7799
  * @type {string}
7432
- * @memberof OptionalPogStatsInputDTO
7800
+ * @memberof NameHistoryOutputDTO
7433
7801
  */
7434
- gameServerId: string;
7802
+ name: string;
7435
7803
  /**
7436
7804
  *
7437
7805
  * @type {string}
7438
- * @memberof OptionalPogStatsInputDTO
7806
+ * @memberof NameHistoryOutputDTO
7439
7807
  */
7440
- playerId?: string;
7808
+ id: string;
7441
7809
  /**
7442
7810
  *
7443
- * @type {string}
7444
- * @memberof OptionalPogStatsInputDTO
7811
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7812
+ * @memberof NameHistoryOutputDTO
7445
7813
  */
7446
- startDate?: string;
7814
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7447
7815
  /**
7448
7816
  *
7449
- * @type {string}
7450
- * @memberof OptionalPogStatsInputDTO
7817
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7818
+ * @memberof NameHistoryOutputDTO
7451
7819
  */
7452
- endDate?: string;
7820
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7453
7821
  }
7454
7822
  /**
7455
7823
  *
7456
7824
  * @export
7457
- * @enum {string}
7825
+ * @interface OptionalPogStatsInputDTO
7826
+ */
7827
+ export interface OptionalPogStatsInputDTO {
7828
+ /**
7829
+ *
7830
+ * @type {string}
7831
+ * @memberof OptionalPogStatsInputDTO
7832
+ */
7833
+ gameServerId: string;
7834
+ /**
7835
+ *
7836
+ * @type {string}
7837
+ * @memberof OptionalPogStatsInputDTO
7838
+ */
7839
+ playerId?: string;
7840
+ /**
7841
+ *
7842
+ * @type {string}
7843
+ * @memberof OptionalPogStatsInputDTO
7844
+ */
7845
+ startDate?: string;
7846
+ /**
7847
+ *
7848
+ * @type {string}
7849
+ * @memberof OptionalPogStatsInputDTO
7850
+ */
7851
+ endDate?: string;
7852
+ }
7853
+ /**
7854
+ *
7855
+ * @export
7856
+ * @interface OrderMetricsDTO
7857
+ */
7858
+ export interface OrderMetricsDTO {
7859
+ /**
7860
+ *
7861
+ * @type {Array<OrderStatusCountDTO>}
7862
+ * @memberof OrderMetricsDTO
7863
+ */
7864
+ statusBreakdown: Array<OrderStatusCountDTO>;
7865
+ /**
7866
+ *
7867
+ * @type {Array<RecentOrderDTO>}
7868
+ * @memberof OrderMetricsDTO
7869
+ */
7870
+ recentOrders: Array<RecentOrderDTO>;
7871
+ /**
7872
+ *
7873
+ * @type {number}
7874
+ * @memberof OrderMetricsDTO
7875
+ */
7876
+ totalOrders: number;
7877
+ /**
7878
+ *
7879
+ * @type {number}
7880
+ * @memberof OrderMetricsDTO
7881
+ */
7882
+ completionRate: number;
7883
+ }
7884
+ /**
7885
+ *
7886
+ * @export
7887
+ * @interface OrderStatusCountDTO
7888
+ */
7889
+ export interface OrderStatusCountDTO {
7890
+ /**
7891
+ *
7892
+ * @type {string}
7893
+ * @memberof OrderStatusCountDTO
7894
+ */
7895
+ status: OrderStatusCountDTOStatusEnum;
7896
+ /**
7897
+ *
7898
+ * @type {number}
7899
+ * @memberof OrderStatusCountDTO
7900
+ */
7901
+ count: number;
7902
+ /**
7903
+ *
7904
+ * @type {number}
7905
+ * @memberof OrderStatusCountDTO
7906
+ */
7907
+ percentage: number;
7908
+ }
7909
+ export declare const OrderStatusCountDTOStatusEnum: {
7910
+ readonly Completed: "COMPLETED";
7911
+ readonly Paid: "PAID";
7912
+ readonly Canceled: "CANCELED";
7913
+ };
7914
+ export type OrderStatusCountDTOStatusEnum = (typeof OrderStatusCountDTOStatusEnum)[keyof typeof OrderStatusCountDTOStatusEnum];
7915
+ /**
7916
+ *
7917
+ * @export
7918
+ * @enum {string}
7458
7919
  */
7459
7920
  export declare const PERMISSIONS: {
7460
7921
  readonly Root: "ROOT";
@@ -7580,6 +8041,8 @@ export declare const ParamKeyKeyEnum: {
7580
8041
  readonly DeveloperMode: "developerMode";
7581
8042
  readonly MessagePrefix: "messagePrefix";
7582
8043
  readonly DomainName: "domainName";
8044
+ readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
8045
+ readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
7583
8046
  };
7584
8047
  export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
7585
8048
  /**
@@ -7917,6 +8380,12 @@ export interface PlayerInventoryOutputDTO {
7917
8380
  * @memberof PlayerInventoryOutputDTO
7918
8381
  */
7919
8382
  playerId: string;
8383
+ /**
8384
+ *
8385
+ * @type {string}
8386
+ * @memberof PlayerInventoryOutputDTO
8387
+ */
8388
+ pogId: string;
7920
8389
  /**
7921
8390
  *
7922
8391
  * @type {string}
@@ -7941,6 +8410,12 @@ export interface PlayerInventoryOutputDTO {
7941
8410
  * @memberof PlayerInventoryOutputDTO
7942
8411
  */
7943
8412
  quantity: number;
8413
+ /**
8414
+ *
8415
+ * @type {string}
8416
+ * @memberof PlayerInventoryOutputDTO
8417
+ */
8418
+ quality?: string;
7944
8419
  /**
7945
8420
  *
7946
8421
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -7991,6 +8466,12 @@ export interface PlayerItemHistoryOutputDTO {
7991
8466
  * @memberof PlayerItemHistoryOutputDTO
7992
8467
  */
7993
8468
  playerId: string;
8469
+ /**
8470
+ *
8471
+ * @type {string}
8472
+ * @memberof PlayerItemHistoryOutputDTO
8473
+ */
8474
+ pogId: string;
7994
8475
  /**
7995
8476
  *
7996
8477
  * @type {number}
@@ -8053,6 +8534,12 @@ export interface PlayerLocationOutputDTO {
8053
8534
  * @memberof PlayerLocationOutputDTO
8054
8535
  */
8055
8536
  playerId: string;
8537
+ /**
8538
+ *
8539
+ * @type {string}
8540
+ * @memberof PlayerLocationOutputDTO
8541
+ */
8542
+ pogId: string;
8056
8543
  /**
8057
8544
  *
8058
8545
  * @type {number}
@@ -8755,6 +9242,12 @@ export interface PlayerOutputDTO {
8755
9242
  * @memberof PlayerOutputDTO
8756
9243
  */
8757
9244
  ipHistory: Array<IpHistoryOutputDTO>;
9245
+ /**
9246
+ *
9247
+ * @type {Array<NameHistoryOutputDTO>}
9248
+ * @memberof PlayerOutputDTO
9249
+ */
9250
+ nameHistory: Array<NameHistoryOutputDTO>;
8758
9251
  /**
8759
9252
  *
8760
9253
  * @type {string}
@@ -8919,6 +9412,12 @@ export interface PlayerOutputWithRolesDTO {
8919
9412
  * @memberof PlayerOutputWithRolesDTO
8920
9413
  */
8921
9414
  ipHistory: Array<IpHistoryOutputDTO>;
9415
+ /**
9416
+ *
9417
+ * @type {Array<NameHistoryOutputDTO>}
9418
+ * @memberof PlayerOutputWithRolesDTO
9419
+ */
9420
+ nameHistory: Array<NameHistoryOutputDTO>;
8922
9421
  }
8923
9422
  /**
8924
9423
  *
@@ -9364,6 +9863,43 @@ export interface PogStatsInputDTO {
9364
9863
  */
9365
9864
  endDate?: string;
9366
9865
  }
9866
+ /**
9867
+ *
9868
+ * @export
9869
+ * @interface ProductMetricsDTO
9870
+ */
9871
+ export interface ProductMetricsDTO {
9872
+ /**
9873
+ *
9874
+ * @type {Array<TopItemDTO>}
9875
+ * @memberof ProductMetricsDTO
9876
+ */
9877
+ topItems: Array<TopItemDTO>;
9878
+ /**
9879
+ *
9880
+ * @type {Array<CategoryPerformanceDTO>}
9881
+ * @memberof ProductMetricsDTO
9882
+ */
9883
+ categories: Array<CategoryPerformanceDTO>;
9884
+ /**
9885
+ *
9886
+ * @type {number}
9887
+ * @memberof ProductMetricsDTO
9888
+ */
9889
+ deadStock: number;
9890
+ /**
9891
+ *
9892
+ * @type {Array<DeadStockItemDTO>}
9893
+ * @memberof ProductMetricsDTO
9894
+ */
9895
+ deadStockItems?: Array<DeadStockItemDTO>;
9896
+ /**
9897
+ *
9898
+ * @type {number}
9899
+ * @memberof ProductMetricsDTO
9900
+ */
9901
+ totalProducts: number;
9902
+ }
9367
9903
  /**
9368
9904
  *
9369
9905
  * @export
@@ -9432,6 +9968,55 @@ export interface RangeFilterCreatedAndUpdatedAt {
9432
9968
  */
9433
9969
  updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
9434
9970
  }
9971
+ /**
9972
+ *
9973
+ * @export
9974
+ * @interface RecentOrderDTO
9975
+ */
9976
+ export interface RecentOrderDTO {
9977
+ /**
9978
+ *
9979
+ * @type {string}
9980
+ * @memberof RecentOrderDTO
9981
+ */
9982
+ id: string;
9983
+ /**
9984
+ *
9985
+ * @type {string}
9986
+ * @memberof RecentOrderDTO
9987
+ */
9988
+ playerName: string;
9989
+ /**
9990
+ *
9991
+ * @type {string}
9992
+ * @memberof RecentOrderDTO
9993
+ */
9994
+ itemName: string;
9995
+ /**
9996
+ *
9997
+ * @type {number}
9998
+ * @memberof RecentOrderDTO
9999
+ */
10000
+ value: number;
10001
+ /**
10002
+ *
10003
+ * @type {string}
10004
+ * @memberof RecentOrderDTO
10005
+ */
10006
+ time: string;
10007
+ /**
10008
+ *
10009
+ * @type {string}
10010
+ * @memberof RecentOrderDTO
10011
+ */
10012
+ status: RecentOrderDTOStatusEnum;
10013
+ }
10014
+ export declare const RecentOrderDTOStatusEnum: {
10015
+ readonly Completed: "COMPLETED";
10016
+ readonly Paid: "PAID";
10017
+ readonly Canceled: "CANCELED";
10018
+ };
10019
+ export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
9435
10020
  /**
9436
10021
  *
9437
10022
  * @export
@@ -9458,6 +10043,43 @@ export interface ResolveRegistrationTokenInputDTO {
9458
10043
  */
9459
10044
  registrationToken: string;
9460
10045
  }
10046
+ /**
10047
+ *
10048
+ * @export
10049
+ * @interface RevenueMetricsDTO
10050
+ */
10051
+ export interface RevenueMetricsDTO {
10052
+ /**
10053
+ *
10054
+ * @type {Array<TimeSeriesDataPointDTO>}
10055
+ * @memberof RevenueMetricsDTO
10056
+ */
10057
+ timeSeries: Array<TimeSeriesDataPointDTO>;
10058
+ /**
10059
+ *
10060
+ * @type {Array<HeatmapDataPointDTO>}
10061
+ * @memberof RevenueMetricsDTO
10062
+ */
10063
+ heatmap: Array<HeatmapDataPointDTO>;
10064
+ /**
10065
+ *
10066
+ * @type {number}
10067
+ * @memberof RevenueMetricsDTO
10068
+ */
10069
+ growth: number;
10070
+ /**
10071
+ *
10072
+ * @type {string}
10073
+ * @memberof RevenueMetricsDTO
10074
+ */
10075
+ peakHour: string;
10076
+ /**
10077
+ *
10078
+ * @type {string}
10079
+ * @memberof RevenueMetricsDTO
10080
+ */
10081
+ peakDay: string;
10082
+ }
9461
10083
  /**
9462
10084
  *
9463
10085
  * @export
@@ -9476,6 +10098,12 @@ export interface RoleCreateInputDTO {
9476
10098
  * @memberof RoleCreateInputDTO
9477
10099
  */
9478
10100
  permissions: Array<PermissionInputDTO>;
10101
+ /**
10102
+ *
10103
+ * @type {string}
10104
+ * @memberof RoleCreateInputDTO
10105
+ */
10106
+ linkedDiscordRoleId?: string;
9479
10107
  }
9480
10108
  /**
9481
10109
  *
@@ -9596,6 +10224,12 @@ export interface RoleOutputDTO {
9596
10224
  * @memberof RoleOutputDTO
9597
10225
  */
9598
10226
  system: boolean;
10227
+ /**
10228
+ *
10229
+ * @type {string}
10230
+ * @memberof RoleOutputDTO
10231
+ */
10232
+ linkedDiscordRoleId?: string;
9599
10233
  /**
9600
10234
  *
9601
10235
  * @type {string}
@@ -9754,6 +10388,12 @@ export interface RoleUpdateInputDTO {
9754
10388
  * @memberof RoleUpdateInputDTO
9755
10389
  */
9756
10390
  permissions?: Array<PermissionInputDTO>;
10391
+ /**
10392
+ *
10393
+ * @type {string}
10394
+ * @memberof RoleUpdateInputDTO
10395
+ */
10396
+ linkedDiscordRoleId?: string;
9757
10397
  }
9758
10398
  /**
9759
10399
  *
@@ -9885,6 +10525,12 @@ export interface ServiceRoleCreateInputDTO {
9885
10525
  * @memberof ServiceRoleCreateInputDTO
9886
10526
  */
9887
10527
  system?: boolean;
10528
+ /**
10529
+ *
10530
+ * @type {string}
10531
+ * @memberof ServiceRoleCreateInputDTO
10532
+ */
10533
+ linkedDiscordRoleId?: string;
9888
10534
  }
9889
10535
  /**
9890
10536
  *
@@ -9934,6 +10580,18 @@ export interface Settings {
9934
10580
  * @memberof Settings
9935
10581
  */
9936
10582
  domainName: string;
10583
+ /**
10584
+ *
10585
+ * @type {string}
10586
+ * @memberof Settings
10587
+ */
10588
+ discordRoleSyncEnabled: string;
10589
+ /**
10590
+ *
10591
+ * @type {string}
10592
+ * @memberof Settings
10593
+ */
10594
+ discordRoleSyncPreferDiscord: string;
9937
10595
  /**
9938
10596
  *
9939
10597
  * @type {string}
@@ -10017,6 +10675,8 @@ export declare const SettingsOutputDTOKeyEnum: {
10017
10675
  readonly DeveloperMode: "developerMode";
10018
10676
  readonly MessagePrefix: "messagePrefix";
10019
10677
  readonly DomainName: "domainName";
10678
+ readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
10679
+ readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
10020
10680
  };
10021
10681
  export type SettingsOutputDTOKeyEnum = (typeof SettingsOutputDTOKeyEnum)[keyof typeof SettingsOutputDTOKeyEnum];
10022
10682
  export declare const SettingsOutputDTOTypeEnum: {
@@ -10064,6 +10724,137 @@ export interface SettingsSetDTO {
10064
10724
  */
10065
10725
  value: any;
10066
10726
  }
10727
+ /**
10728
+ *
10729
+ * @export
10730
+ * @interface ShopAnalyticsInputDTO
10731
+ */
10732
+ export interface ShopAnalyticsInputDTO {
10733
+ /**
10734
+ *
10735
+ * @type {Array<string>}
10736
+ * @memberof ShopAnalyticsInputDTO
10737
+ */
10738
+ gameServerIds?: Array<string>;
10739
+ /**
10740
+ *
10741
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
10742
+ * @memberof ShopAnalyticsInputDTO
10743
+ */
10744
+ startDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10745
+ /**
10746
+ *
10747
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
10748
+ * @memberof ShopAnalyticsInputDTO
10749
+ */
10750
+ endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10751
+ }
10752
+ /**
10753
+ *
10754
+ * @export
10755
+ * @interface ShopAnalyticsOutputDTO
10756
+ */
10757
+ export interface ShopAnalyticsOutputDTO {
10758
+ /**
10759
+ *
10760
+ * @type {KPIMetricsDTO}
10761
+ * @memberof ShopAnalyticsOutputDTO
10762
+ */
10763
+ kpis: KPIMetricsDTO;
10764
+ /**
10765
+ *
10766
+ * @type {RevenueMetricsDTO}
10767
+ * @memberof ShopAnalyticsOutputDTO
10768
+ */
10769
+ revenue: RevenueMetricsDTO;
10770
+ /**
10771
+ *
10772
+ * @type {ProductMetricsDTO}
10773
+ * @memberof ShopAnalyticsOutputDTO
10774
+ */
10775
+ products: ProductMetricsDTO;
10776
+ /**
10777
+ *
10778
+ * @type {OrderMetricsDTO}
10779
+ * @memberof ShopAnalyticsOutputDTO
10780
+ */
10781
+ orders: OrderMetricsDTO;
10782
+ /**
10783
+ *
10784
+ * @type {CustomerMetricsDTO}
10785
+ * @memberof ShopAnalyticsOutputDTO
10786
+ */
10787
+ customers: CustomerMetricsDTO;
10788
+ /**
10789
+ *
10790
+ * @type {Array<InsightDTO>}
10791
+ * @memberof ShopAnalyticsOutputDTO
10792
+ */
10793
+ insights: Array<InsightDTO>;
10794
+ /**
10795
+ *
10796
+ * @type {string}
10797
+ * @memberof ShopAnalyticsOutputDTO
10798
+ */
10799
+ lastUpdated: string;
10800
+ /**
10801
+ *
10802
+ * @type {string}
10803
+ * @memberof ShopAnalyticsOutputDTO
10804
+ */
10805
+ dateRange: string;
10806
+ /**
10807
+ *
10808
+ * @type {Array<string>}
10809
+ * @memberof ShopAnalyticsOutputDTO
10810
+ */
10811
+ gameServerIds?: Array<string>;
10812
+ }
10813
+ /**
10814
+ *
10815
+ * @export
10816
+ * @interface ShopAnalyticsOutputDTOAPI
10817
+ */
10818
+ export interface ShopAnalyticsOutputDTOAPI {
10819
+ /**
10820
+ *
10821
+ * @type {ShopAnalyticsOutputDTO}
10822
+ * @memberof ShopAnalyticsOutputDTOAPI
10823
+ */
10824
+ data: ShopAnalyticsOutputDTO;
10825
+ /**
10826
+ *
10827
+ * @type {MetadataOutput}
10828
+ * @memberof ShopAnalyticsOutputDTOAPI
10829
+ */
10830
+ meta: MetadataOutput;
10831
+ }
10832
+ /**
10833
+ *
10834
+ * @export
10835
+ * @interface ShopAnalyticsQueryDTO
10836
+ */
10837
+ export interface ShopAnalyticsQueryDTO {
10838
+ /**
10839
+ *
10840
+ * @type {Array<string>}
10841
+ * @memberof ShopAnalyticsQueryDTO
10842
+ */
10843
+ gameServerIds?: Array<string>;
10844
+ /**
10845
+ *
10846
+ * @type {string}
10847
+ * @memberof ShopAnalyticsQueryDTO
10848
+ */
10849
+ period?: ShopAnalyticsQueryDTOPeriodEnum;
10850
+ }
10851
+ export declare const ShopAnalyticsQueryDTOPeriodEnum: {
10852
+ readonly Last24Hours: "last24Hours";
10853
+ readonly Last7Days: "last7Days";
10854
+ readonly Last30Days: "last30Days";
10855
+ readonly Last90Days: "last90Days";
10856
+ };
10857
+ export type ShopAnalyticsQueryDTOPeriodEnum = (typeof ShopAnalyticsQueryDTOPeriodEnum)[keyof typeof ShopAnalyticsQueryDTOPeriodEnum];
10067
10858
  /**
10068
10859
  *
10069
10860
  * @export
@@ -10250,6 +11041,12 @@ export interface ShopCategorySearchInputAllowedFilters {
10250
11041
  * @memberof ShopCategorySearchInputAllowedFilters
10251
11042
  */
10252
11043
  parentId?: Array<string>;
11044
+ /**
11045
+ *
11046
+ * @type {Array<string>}
11047
+ * @memberof ShopCategorySearchInputAllowedFilters
11048
+ */
11049
+ gameServerId?: Array<string>;
10253
11050
  }
10254
11051
  /**
10255
11052
  *
@@ -11376,6 +12173,25 @@ export interface TakaroEventCurrencyDeducted {
11376
12173
  */
11377
12174
  timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11378
12175
  }
12176
+ /**
12177
+ *
12178
+ * @export
12179
+ * @interface TakaroEventCurrencyResetAll
12180
+ */
12181
+ export interface TakaroEventCurrencyResetAll {
12182
+ /**
12183
+ *
12184
+ * @type {number}
12185
+ * @memberof TakaroEventCurrencyResetAll
12186
+ */
12187
+ affectedPlayerCount: number;
12188
+ /**
12189
+ *
12190
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12191
+ * @memberof TakaroEventCurrencyResetAll
12192
+ */
12193
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12194
+ }
11379
12195
  /**
11380
12196
  *
11381
12197
  * @export
@@ -11579,6 +12395,42 @@ export interface TakaroEventModuleUninstalled {
11579
12395
  * @interface TakaroEventModuleUpdated
11580
12396
  */
11581
12397
  export interface TakaroEventModuleUpdated {
12398
+ /**
12399
+ *
12400
+ * @type {string}
12401
+ * @memberof TakaroEventModuleUpdated
12402
+ */
12403
+ changeType?: string;
12404
+ /**
12405
+ *
12406
+ * @type {string}
12407
+ * @memberof TakaroEventModuleUpdated
12408
+ */
12409
+ componentType?: string;
12410
+ /**
12411
+ *
12412
+ * @type {string}
12413
+ * @memberof TakaroEventModuleUpdated
12414
+ */
12415
+ componentName?: string;
12416
+ /**
12417
+ *
12418
+ * @type {string}
12419
+ * @memberof TakaroEventModuleUpdated
12420
+ */
12421
+ componentId?: string;
12422
+ /**
12423
+ *
12424
+ * @type {any}
12425
+ * @memberof TakaroEventModuleUpdated
12426
+ */
12427
+ previousValue?: any;
12428
+ /**
12429
+ *
12430
+ * @type {any}
12431
+ * @memberof TakaroEventModuleUpdated
12432
+ */
12433
+ newValue?: any;
11582
12434
  /**
11583
12435
  *
11584
12436
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -11626,13 +12478,32 @@ export interface TakaroEventPlayerBanned {
11626
12478
  /**
11627
12479
  *
11628
12480
  * @export
11629
- * @interface TakaroEventPlayerCreated
12481
+ * @interface TakaroEventPlayerCreated
12482
+ */
12483
+ export interface TakaroEventPlayerCreated {
12484
+ /**
12485
+ *
12486
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12487
+ * @memberof TakaroEventPlayerCreated
12488
+ */
12489
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12490
+ }
12491
+ /**
12492
+ *
12493
+ * @export
12494
+ * @interface TakaroEventPlayerDeleted
11630
12495
  */
11631
- export interface TakaroEventPlayerCreated {
12496
+ export interface TakaroEventPlayerDeleted {
12497
+ /**
12498
+ *
12499
+ * @type {string}
12500
+ * @memberof TakaroEventPlayerDeleted
12501
+ */
12502
+ playerName?: string;
11632
12503
  /**
11633
12504
  *
11634
12505
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11635
- * @memberof TakaroEventPlayerCreated
12506
+ * @memberof TakaroEventPlayerDeleted
11636
12507
  */
11637
12508
  timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11638
12509
  }
@@ -11692,6 +12563,31 @@ export interface TakaroEventPlayerNewIpDetected {
11692
12563
  */
11693
12564
  timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11694
12565
  }
12566
+ /**
12567
+ *
12568
+ * @export
12569
+ * @interface TakaroEventPlayerNewNameDetected
12570
+ */
12571
+ export interface TakaroEventPlayerNewNameDetected {
12572
+ /**
12573
+ *
12574
+ * @type {string}
12575
+ * @memberof TakaroEventPlayerNewNameDetected
12576
+ */
12577
+ oldName?: string;
12578
+ /**
12579
+ *
12580
+ * @type {string}
12581
+ * @memberof TakaroEventPlayerNewNameDetected
12582
+ */
12583
+ newName: string;
12584
+ /**
12585
+ *
12586
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12587
+ * @memberof TakaroEventPlayerNewNameDetected
12588
+ */
12589
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12590
+ }
11695
12591
  /**
11696
12592
  *
11697
12593
  * @export
@@ -12155,6 +13051,31 @@ export interface TestReachabilityOutputDTO {
12155
13051
  */
12156
13052
  latency?: number;
12157
13053
  }
13054
+ /**
13055
+ *
13056
+ * @export
13057
+ * @interface TimeSeriesDataPointDTO
13058
+ */
13059
+ export interface TimeSeriesDataPointDTO {
13060
+ /**
13061
+ *
13062
+ * @type {string}
13063
+ * @memberof TimeSeriesDataPointDTO
13064
+ */
13065
+ date: string;
13066
+ /**
13067
+ *
13068
+ * @type {number}
13069
+ * @memberof TimeSeriesDataPointDTO
13070
+ */
13071
+ value: number;
13072
+ /**
13073
+ *
13074
+ * @type {number}
13075
+ * @memberof TimeSeriesDataPointDTO
13076
+ */
13077
+ comparison?: number;
13078
+ }
12158
13079
  /**
12159
13080
  *
12160
13081
  * @export
@@ -12200,6 +13121,80 @@ export interface TokenOutputDTOAPI {
12200
13121
  */
12201
13122
  meta: MetadataOutput;
12202
13123
  }
13124
+ /**
13125
+ *
13126
+ * @export
13127
+ * @interface TopBuyerDTO
13128
+ */
13129
+ export interface TopBuyerDTO {
13130
+ /**
13131
+ *
13132
+ * @type {string}
13133
+ * @memberof TopBuyerDTO
13134
+ */
13135
+ id: string;
13136
+ /**
13137
+ *
13138
+ * @type {string}
13139
+ * @memberof TopBuyerDTO
13140
+ */
13141
+ name: string;
13142
+ /**
13143
+ *
13144
+ * @type {number}
13145
+ * @memberof TopBuyerDTO
13146
+ */
13147
+ totalSpent: number;
13148
+ /**
13149
+ *
13150
+ * @type {number}
13151
+ * @memberof TopBuyerDTO
13152
+ */
13153
+ orderCount: number;
13154
+ /**
13155
+ *
13156
+ * @type {string}
13157
+ * @memberof TopBuyerDTO
13158
+ */
13159
+ lastPurchase: string;
13160
+ }
13161
+ /**
13162
+ *
13163
+ * @export
13164
+ * @interface TopItemDTO
13165
+ */
13166
+ export interface TopItemDTO {
13167
+ /**
13168
+ *
13169
+ * @type {string}
13170
+ * @memberof TopItemDTO
13171
+ */
13172
+ id: string;
13173
+ /**
13174
+ *
13175
+ * @type {string}
13176
+ * @memberof TopItemDTO
13177
+ */
13178
+ name: string;
13179
+ /**
13180
+ *
13181
+ * @type {number}
13182
+ * @memberof TopItemDTO
13183
+ */
13184
+ quantity: number;
13185
+ /**
13186
+ *
13187
+ * @type {number}
13188
+ * @memberof TopItemDTO
13189
+ */
13190
+ revenue: number;
13191
+ /**
13192
+ *
13193
+ * @type {number}
13194
+ * @memberof TopItemDTO
13195
+ */
13196
+ percentage: number;
13197
+ }
12203
13198
  /**
12204
13199
  *
12205
13200
  * @export
@@ -13021,6 +14016,79 @@ export interface VariableUpdateDTO {
13021
14016
  */
13022
14017
  moduleId?: string;
13023
14018
  }
14019
+ /**
14020
+ * AnalyticsApi - axios parameter creator
14021
+ * @export
14022
+ */
14023
+ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configuration) => {
14024
+ /**
14025
+ * Retrieve comprehensive analytics for shop performance across selected game servers Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `AnalyticsControllerGetShopAnalytics`
14026
+ * @summary Get shop analytics
14027
+ * @param {Array<string>} [gameServerIds]
14028
+ * @param {AnalyticsControllerGetShopAnalyticsPeriodEnum} [period]
14029
+ * @param {*} [options] Override http request option.
14030
+ * @throws {RequiredError}
14031
+ */
14032
+ analyticsControllerGetShopAnalytics: (gameServerIds?: Array<string>, period?: AnalyticsControllerGetShopAnalyticsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14033
+ };
14034
+ /**
14035
+ * AnalyticsApi - functional programming interface
14036
+ * @export
14037
+ */
14038
+ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
14039
+ /**
14040
+ * Retrieve comprehensive analytics for shop performance across selected game servers Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `AnalyticsControllerGetShopAnalytics`
14041
+ * @summary Get shop analytics
14042
+ * @param {Array<string>} [gameServerIds]
14043
+ * @param {AnalyticsControllerGetShopAnalyticsPeriodEnum} [period]
14044
+ * @param {*} [options] Override http request option.
14045
+ * @throws {RequiredError}
14046
+ */
14047
+ analyticsControllerGetShopAnalytics(gameServerIds?: Array<string>, period?: AnalyticsControllerGetShopAnalyticsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopAnalyticsOutputDTOAPI>>;
14048
+ };
14049
+ /**
14050
+ * AnalyticsApi - factory interface
14051
+ * @export
14052
+ */
14053
+ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
14054
+ /**
14055
+ * Retrieve comprehensive analytics for shop performance across selected game servers Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `AnalyticsControllerGetShopAnalytics`
14056
+ * @summary Get shop analytics
14057
+ * @param {Array<string>} [gameServerIds]
14058
+ * @param {AnalyticsControllerGetShopAnalyticsPeriodEnum} [period]
14059
+ * @param {*} [options] Override http request option.
14060
+ * @throws {RequiredError}
14061
+ */
14062
+ analyticsControllerGetShopAnalytics(gameServerIds?: Array<string>, period?: AnalyticsControllerGetShopAnalyticsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopAnalyticsOutputDTOAPI>;
14063
+ };
14064
+ /**
14065
+ * AnalyticsApi - object-oriented interface
14066
+ * @export
14067
+ * @class AnalyticsApi
14068
+ * @extends {BaseAPI}
14069
+ */
14070
+ export declare class AnalyticsApi extends BaseAPI {
14071
+ /**
14072
+ * Retrieve comprehensive analytics for shop performance across selected game servers Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `AnalyticsControllerGetShopAnalytics`
14073
+ * @summary Get shop analytics
14074
+ * @param {Array<string>} [gameServerIds]
14075
+ * @param {AnalyticsControllerGetShopAnalyticsPeriodEnum} [period]
14076
+ * @param {*} [options] Override http request option.
14077
+ * @throws {RequiredError}
14078
+ * @memberof AnalyticsApi
14079
+ */
14080
+ analyticsControllerGetShopAnalytics(gameServerIds?: Array<string>, period?: AnalyticsControllerGetShopAnalyticsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopAnalyticsOutputDTOAPI, any>>;
14081
+ }
14082
+ /**
14083
+ * @export
14084
+ */
14085
+ export declare const AnalyticsControllerGetShopAnalyticsPeriodEnum: {
14086
+ readonly Last24Hours: "last24Hours";
14087
+ readonly Last7Days: "last7Days";
14088
+ readonly Last30Days: "last30Days";
14089
+ readonly Last90Days: "last90Days";
14090
+ };
14091
+ export type AnalyticsControllerGetShopAnalyticsPeriodEnum = (typeof AnalyticsControllerGetShopAnalyticsPeriodEnum)[keyof typeof AnalyticsControllerGetShopAnalyticsPeriodEnum];
13024
14092
  /**
13025
14093
  * CommandApi - axios parameter creator
13026
14094
  * @export
@@ -13671,6 +14739,15 @@ export declare class CronJobApi extends BaseAPI {
13671
14739
  * @export
13672
14740
  */
13673
14741
  export declare const DiscordApiAxiosParamCreator: (configuration?: Configuration) => {
14742
+ /**
14743
+ * Delete a Discord message. The bot must have sent the original message or have appropriate permissions. Returns an empty response on success. Required permissions: `SEND_DISCORD_MESSAGE`<br> OperationId: `DiscordControllerDeleteMessage`
14744
+ * @summary Delete Discord message
14745
+ * @param {string} channelId
14746
+ * @param {string} messageId
14747
+ * @param {*} [options] Override http request option.
14748
+ * @throws {RequiredError}
14749
+ */
14750
+ discordControllerDeleteMessage: (channelId: string, messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13674
14751
  /**
13675
14752
  * Retrieve all channels (text, voice, etc.) in a specific Discord guild. Useful for selecting channels for notifications or commands. Required permissions: `VIEW_DISCORD_INFO`<br> OperationId: `DiscordControllerGetChannels`
13676
14753
  * @summary Get guild channels
@@ -13720,12 +14797,31 @@ export declare const DiscordApiAxiosParamCreator: (configuration?: Configuration
13720
14797
  * @throws {RequiredError}
13721
14798
  */
13722
14799
  discordControllerUpdateGuild: (id: string, guildApiUpdateDTO?: GuildApiUpdateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14800
+ /**
14801
+ * Update an existing Discord message with new content or embed. Requires the bot to have sent the original message. Required permissions: `SEND_DISCORD_MESSAGE`<br> OperationId: `DiscordControllerUpdateMessage`
14802
+ * @summary Update Discord message
14803
+ * @param {string} channelId
14804
+ * @param {string} messageId
14805
+ * @param {SendMessageInputDTO} [sendMessageInputDTO] SendMessageInputDTO
14806
+ * @param {*} [options] Override http request option.
14807
+ * @throws {RequiredError}
14808
+ */
14809
+ discordControllerUpdateMessage: (channelId: string, messageId: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13723
14810
  };
13724
14811
  /**
13725
14812
  * DiscordApi - functional programming interface
13726
14813
  * @export
13727
14814
  */
13728
14815
  export declare const DiscordApiFp: (configuration?: Configuration) => {
14816
+ /**
14817
+ * Delete a Discord message. The bot must have sent the original message or have appropriate permissions. Returns an empty response on success. Required permissions: `SEND_DISCORD_MESSAGE`<br> OperationId: `DiscordControllerDeleteMessage`
14818
+ * @summary Delete Discord message
14819
+ * @param {string} channelId
14820
+ * @param {string} messageId
14821
+ * @param {*} [options] Override http request option.
14822
+ * @throws {RequiredError}
14823
+ */
14824
+ discordControllerDeleteMessage(channelId: string, messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
13729
14825
  /**
13730
14826
  * Retrieve all channels (text, voice, etc.) in a specific Discord guild. Useful for selecting channels for notifications or commands. Required permissions: `VIEW_DISCORD_INFO`<br> OperationId: `DiscordControllerGetChannels`
13731
14827
  * @summary Get guild channels
@@ -13765,7 +14861,7 @@ export declare const DiscordApiFp: (configuration?: Configuration) => {
13765
14861
  * @param {*} [options] Override http request option.
13766
14862
  * @throws {RequiredError}
13767
14863
  */
13768
- discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
14864
+ discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessageOutputDTOAPI>>;
13769
14865
  /**
13770
14866
  * Update Takaro-specific settings for a Discord guild, such as enabling or disabling Takaro features. Required permissions: `MANAGE_SETTINGS`<br> OperationId: `DiscordControllerUpdateGuild`
13771
14867
  * @summary Update guild settings
@@ -13775,12 +14871,31 @@ export declare const DiscordApiFp: (configuration?: Configuration) => {
13775
14871
  * @throws {RequiredError}
13776
14872
  */
13777
14873
  discordControllerUpdateGuild(id: string, guildApiUpdateDTO?: GuildApiUpdateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GuildOutputDTOAPI>>;
14874
+ /**
14875
+ * Update an existing Discord message with new content or embed. Requires the bot to have sent the original message. Required permissions: `SEND_DISCORD_MESSAGE`<br> OperationId: `DiscordControllerUpdateMessage`
14876
+ * @summary Update Discord message
14877
+ * @param {string} channelId
14878
+ * @param {string} messageId
14879
+ * @param {SendMessageInputDTO} [sendMessageInputDTO] SendMessageInputDTO
14880
+ * @param {*} [options] Override http request option.
14881
+ * @throws {RequiredError}
14882
+ */
14883
+ discordControllerUpdateMessage(channelId: string, messageId: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessageOutputDTOAPI>>;
13778
14884
  };
13779
14885
  /**
13780
14886
  * DiscordApi - factory interface
13781
14887
  * @export
13782
14888
  */
13783
14889
  export declare const DiscordApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
14890
+ /**
14891
+ * Delete a Discord message. The bot must have sent the original message or have appropriate permissions. Returns an empty response on success. Required permissions: `SEND_DISCORD_MESSAGE`<br> OperationId: `DiscordControllerDeleteMessage`
14892
+ * @summary Delete Discord message
14893
+ * @param {string} channelId
14894
+ * @param {string} messageId
14895
+ * @param {*} [options] Override http request option.
14896
+ * @throws {RequiredError}
14897
+ */
14898
+ discordControllerDeleteMessage(channelId: string, messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
13784
14899
  /**
13785
14900
  * Retrieve all channels (text, voice, etc.) in a specific Discord guild. Useful for selecting channels for notifications or commands. Required permissions: `VIEW_DISCORD_INFO`<br> OperationId: `DiscordControllerGetChannels`
13786
14901
  * @summary Get guild channels
@@ -13820,7 +14935,7 @@ export declare const DiscordApiFactory: (configuration?: Configuration, basePath
13820
14935
  * @param {*} [options] Override http request option.
13821
14936
  * @throws {RequiredError}
13822
14937
  */
13823
- discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
14938
+ discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<MessageOutputDTOAPI>;
13824
14939
  /**
13825
14940
  * Update Takaro-specific settings for a Discord guild, such as enabling or disabling Takaro features. Required permissions: `MANAGE_SETTINGS`<br> OperationId: `DiscordControllerUpdateGuild`
13826
14941
  * @summary Update guild settings
@@ -13830,6 +14945,16 @@ export declare const DiscordApiFactory: (configuration?: Configuration, basePath
13830
14945
  * @throws {RequiredError}
13831
14946
  */
13832
14947
  discordControllerUpdateGuild(id: string, guildApiUpdateDTO?: GuildApiUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<GuildOutputDTOAPI>;
14948
+ /**
14949
+ * Update an existing Discord message with new content or embed. Requires the bot to have sent the original message. Required permissions: `SEND_DISCORD_MESSAGE`<br> OperationId: `DiscordControllerUpdateMessage`
14950
+ * @summary Update Discord message
14951
+ * @param {string} channelId
14952
+ * @param {string} messageId
14953
+ * @param {SendMessageInputDTO} [sendMessageInputDTO] SendMessageInputDTO
14954
+ * @param {*} [options] Override http request option.
14955
+ * @throws {RequiredError}
14956
+ */
14957
+ discordControllerUpdateMessage(channelId: string, messageId: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<MessageOutputDTOAPI>;
13833
14958
  };
13834
14959
  /**
13835
14960
  * DiscordApi - object-oriented interface
@@ -13838,6 +14963,16 @@ export declare const DiscordApiFactory: (configuration?: Configuration, basePath
13838
14963
  * @extends {BaseAPI}
13839
14964
  */
13840
14965
  export declare class DiscordApi extends BaseAPI {
14966
+ /**
14967
+ * Delete a Discord message. The bot must have sent the original message or have appropriate permissions. Returns an empty response on success. Required permissions: `SEND_DISCORD_MESSAGE`<br> OperationId: `DiscordControllerDeleteMessage`
14968
+ * @summary Delete Discord message
14969
+ * @param {string} channelId
14970
+ * @param {string} messageId
14971
+ * @param {*} [options] Override http request option.
14972
+ * @throws {RequiredError}
14973
+ * @memberof DiscordApi
14974
+ */
14975
+ discordControllerDeleteMessage(channelId: string, messageId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
13841
14976
  /**
13842
14977
  * Retrieve all channels (text, voice, etc.) in a specific Discord guild. Useful for selecting channels for notifications or commands. Required permissions: `VIEW_DISCORD_INFO`<br> OperationId: `DiscordControllerGetChannels`
13843
14978
  * @summary Get guild channels
@@ -13882,7 +15017,7 @@ export declare class DiscordApi extends BaseAPI {
13882
15017
  * @throws {RequiredError}
13883
15018
  * @memberof DiscordApi
13884
15019
  */
13885
- discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
15020
+ discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageOutputDTOAPI, any>>;
13886
15021
  /**
13887
15022
  * Update Takaro-specific settings for a Discord guild, such as enabling or disabling Takaro features. Required permissions: `MANAGE_SETTINGS`<br> OperationId: `DiscordControllerUpdateGuild`
13888
15023
  * @summary Update guild settings
@@ -13893,6 +15028,17 @@ export declare class DiscordApi extends BaseAPI {
13893
15028
  * @memberof DiscordApi
13894
15029
  */
13895
15030
  discordControllerUpdateGuild(id: string, guildApiUpdateDTO?: GuildApiUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GuildOutputDTOAPI, any>>;
15031
+ /**
15032
+ * Update an existing Discord message with new content or embed. Requires the bot to have sent the original message. Required permissions: `SEND_DISCORD_MESSAGE`<br> OperationId: `DiscordControllerUpdateMessage`
15033
+ * @summary Update Discord message
15034
+ * @param {string} channelId
15035
+ * @param {string} messageId
15036
+ * @param {SendMessageInputDTO} [sendMessageInputDTO] SendMessageInputDTO
15037
+ * @param {*} [options] Override http request option.
15038
+ * @throws {RequiredError}
15039
+ * @memberof DiscordApi
15040
+ */
15041
+ discordControllerUpdateMessage(channelId: string, messageId: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageOutputDTOAPI, any>>;
13896
15042
  }
13897
15043
  /**
13898
15044
  * DomainApi - axios parameter creator
@@ -14866,6 +16012,14 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
14866
16012
  * @throws {RequiredError}
14867
16013
  */
14868
16014
  gameServerControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16015
+ /**
16016
+ * Resets all players\' currency to 0 on the specified game server. This action is irreversible. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerResetCurrency`
16017
+ * @summary Reset currency
16018
+ * @param {string} id
16019
+ * @param {*} [options] Override http request option.
16020
+ * @throws {RequiredError}
16021
+ */
16022
+ gameServerControllerResetCurrency: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14869
16023
  /**
14870
16024
  * Fetch gameservers<br> OperationId: `GameServerControllerSearch`
14871
16025
  * @summary Search
@@ -15091,6 +16245,14 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
15091
16245
  * @throws {RequiredError}
15092
16246
  */
15093
16247
  gameServerControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
16248
+ /**
16249
+ * Resets all players\' currency to 0 on the specified game server. This action is irreversible. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerResetCurrency`
16250
+ * @summary Reset currency
16251
+ * @param {string} id
16252
+ * @param {*} [options] Override http request option.
16253
+ * @throws {RequiredError}
16254
+ */
16255
+ gameServerControllerResetCurrency(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
15094
16256
  /**
15095
16257
  * Fetch gameservers<br> OperationId: `GameServerControllerSearch`
15096
16258
  * @summary Search
@@ -15316,6 +16478,14 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
15316
16478
  * @throws {RequiredError}
15317
16479
  */
15318
16480
  gameServerControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
16481
+ /**
16482
+ * Resets all players\' currency to 0 on the specified game server. This action is irreversible. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerResetCurrency`
16483
+ * @summary Reset currency
16484
+ * @param {string} id
16485
+ * @param {*} [options] Override http request option.
16486
+ * @throws {RequiredError}
16487
+ */
16488
+ gameServerControllerResetCurrency(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
15319
16489
  /**
15320
16490
  * Fetch gameservers<br> OperationId: `GameServerControllerSearch`
15321
16491
  * @summary Search
@@ -15559,6 +16729,15 @@ export declare class GameServerApi extends BaseAPI {
15559
16729
  * @memberof GameServerApi
15560
16730
  */
15561
16731
  gameServerControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
16732
+ /**
16733
+ * Resets all players\' currency to 0 on the specified game server. This action is irreversible. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerResetCurrency`
16734
+ * @summary Reset currency
16735
+ * @param {string} id
16736
+ * @param {*} [options] Override http request option.
16737
+ * @throws {RequiredError}
16738
+ * @memberof GameServerApi
16739
+ */
16740
+ gameServerControllerResetCurrency(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
15562
16741
  /**
15563
16742
  * Fetch gameservers<br> OperationId: `GameServerControllerSearch`
15564
16743
  * @summary Search
@@ -16769,6 +17948,14 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
16769
17948
  * @throws {RequiredError}
16770
17949
  */
16771
17950
  playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17951
+ /**
17952
+ * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
17953
+ * @summary Delete
17954
+ * @param {string} id
17955
+ * @param {*} [options] Override http request option.
17956
+ * @throws {RequiredError}
17957
+ */
17958
+ playerControllerDelete: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16772
17959
  /**
16773
17960
  * Get the player that is currently authenticated. This is a low-privilege route, returning limited data.<br> OperationId: `PlayerControllerGetMe`
16774
17961
  * @summary Get current player
@@ -16859,6 +18046,14 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
16859
18046
  * @throws {RequiredError}
16860
18047
  */
16861
18048
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
18049
+ /**
18050
+ * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
18051
+ * @summary Delete
18052
+ * @param {string} id
18053
+ * @param {*} [options] Override http request option.
18054
+ * @throws {RequiredError}
18055
+ */
18056
+ playerControllerDelete(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
16862
18057
  /**
16863
18058
  * Get the player that is currently authenticated. This is a low-privilege route, returning limited data.<br> OperationId: `PlayerControllerGetMe`
16864
18059
  * @summary Get current player
@@ -16949,6 +18144,14 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
16949
18144
  * @throws {RequiredError}
16950
18145
  */
16951
18146
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
18147
+ /**
18148
+ * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
18149
+ * @summary Delete
18150
+ * @param {string} id
18151
+ * @param {*} [options] Override http request option.
18152
+ * @throws {RequiredError}
18153
+ */
18154
+ playerControllerDelete(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
16952
18155
  /**
16953
18156
  * Get the player that is currently authenticated. This is a low-privilege route, returning limited data.<br> OperationId: `PlayerControllerGetMe`
16954
18157
  * @summary Get current player
@@ -17047,6 +18250,15 @@ export declare class PlayerApi extends BaseAPI {
17047
18250
  * @memberof PlayerApi
17048
18251
  */
17049
18252
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
18253
+ /**
18254
+ * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
18255
+ * @summary Delete
18256
+ * @param {string} id
18257
+ * @param {*} [options] Override http request option.
18258
+ * @throws {RequiredError}
18259
+ * @memberof PlayerApi
18260
+ */
18261
+ playerControllerDelete(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
17050
18262
  /**
17051
18263
  * Get the player that is currently authenticated. This is a low-privilege route, returning limited data.<br> OperationId: `PlayerControllerGetMe`
17052
18264
  * @summary Get current player
@@ -17110,6 +18322,15 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
17110
18322
  * @throws {RequiredError}
17111
18323
  */
17112
18324
  playerOnGameServerControllerDeductCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
18325
+ /**
18326
+ * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
18327
+ * @summary Delete
18328
+ * @param {string} gameServerId
18329
+ * @param {string} playerId
18330
+ * @param {*} [options] Override http request option.
18331
+ * @throws {RequiredError}
18332
+ */
18333
+ playerOnGameServerControllerDelete: (gameServerId: string, playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17113
18334
  /**
17114
18335
  * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
17115
18336
  * @summary Get one
@@ -17174,6 +18395,15 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
17174
18395
  * @throws {RequiredError}
17175
18396
  */
17176
18397
  playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
18398
+ /**
18399
+ * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
18400
+ * @summary Delete
18401
+ * @param {string} gameServerId
18402
+ * @param {string} playerId
18403
+ * @param {*} [options] Override http request option.
18404
+ * @throws {RequiredError}
18405
+ */
18406
+ playerOnGameServerControllerDelete(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
17177
18407
  /**
17178
18408
  * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
17179
18409
  * @summary Get one
@@ -17238,6 +18468,15 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
17238
18468
  * @throws {RequiredError}
17239
18469
  */
17240
18470
  playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
18471
+ /**
18472
+ * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
18473
+ * @summary Delete
18474
+ * @param {string} gameServerId
18475
+ * @param {string} playerId
18476
+ * @param {*} [options] Override http request option.
18477
+ * @throws {RequiredError}
18478
+ */
18479
+ playerOnGameServerControllerDelete(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
17241
18480
  /**
17242
18481
  * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
17243
18482
  * @summary Get one
@@ -17306,6 +18545,16 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
17306
18545
  * @memberof PlayerOnGameServerApi
17307
18546
  */
17308
18547
  playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
18548
+ /**
18549
+ * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
18550
+ * @summary Delete
18551
+ * @param {string} gameServerId
18552
+ * @param {string} playerId
18553
+ * @param {*} [options] Override http request option.
18554
+ * @throws {RequiredError}
18555
+ * @memberof PlayerOnGameServerApi
18556
+ */
18557
+ playerOnGameServerControllerDelete(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
17309
18558
  /**
17310
18559
  * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
17311
18560
  * @summary Get one
@@ -17758,6 +19007,8 @@ export declare const SettingsControllerGetKeysEnum: {
17758
19007
  readonly DeveloperMode: "developerMode";
17759
19008
  readonly MessagePrefix: "messagePrefix";
17760
19009
  readonly DomainName: "domainName";
19010
+ readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
19011
+ readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
17761
19012
  };
17762
19013
  export type SettingsControllerGetKeysEnum = (typeof SettingsControllerGetKeysEnum)[keyof typeof SettingsControllerGetKeysEnum];
17763
19014
  /**
@@ -17784,18 +19035,20 @@ export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configur
17784
19035
  /**
17785
19036
  * Get all shop categories<br> OperationId: `ShopCategoryControllerGetAll`
17786
19037
  * @summary Get all
19038
+ * @param {string} [gameServerId]
17787
19039
  * @param {*} [options] Override http request option.
17788
19040
  * @throws {RequiredError}
17789
19041
  */
17790
- shopCategoryControllerGetAll: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19042
+ shopCategoryControllerGetAll: (gameServerId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17791
19043
  /**
17792
19044
  * Get a shop category by id<br> OperationId: `ShopCategoryControllerGetOne`
17793
19045
  * @summary Get one
17794
19046
  * @param {string} id
19047
+ * @param {string} [gameServerId]
17795
19048
  * @param {*} [options] Override http request option.
17796
19049
  * @throws {RequiredError}
17797
19050
  */
17798
- shopCategoryControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19051
+ shopCategoryControllerGetOne: (id: string, gameServerId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17799
19052
  /**
17800
19053
  * Move a shop category to a different parent Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerMove`
17801
19054
  * @summary Move
@@ -17855,18 +19108,20 @@ export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
17855
19108
  /**
17856
19109
  * Get all shop categories<br> OperationId: `ShopCategoryControllerGetAll`
17857
19110
  * @summary Get all
19111
+ * @param {string} [gameServerId]
17858
19112
  * @param {*} [options] Override http request option.
17859
19113
  * @throws {RequiredError}
17860
19114
  */
17861
- shopCategoryControllerGetAll(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopCategoryOutputArrayDTOAPI>>;
19115
+ shopCategoryControllerGetAll(gameServerId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopCategoryOutputArrayDTOAPI>>;
17862
19116
  /**
17863
19117
  * Get a shop category by id<br> OperationId: `ShopCategoryControllerGetOne`
17864
19118
  * @summary Get one
17865
19119
  * @param {string} id
19120
+ * @param {string} [gameServerId]
17866
19121
  * @param {*} [options] Override http request option.
17867
19122
  * @throws {RequiredError}
17868
19123
  */
17869
- shopCategoryControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopCategoryOutputDTOAPI>>;
19124
+ shopCategoryControllerGetOne(id: string, gameServerId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopCategoryOutputDTOAPI>>;
17870
19125
  /**
17871
19126
  * Move a shop category to a different parent Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerMove`
17872
19127
  * @summary Move
@@ -17926,18 +19181,20 @@ export declare const ShopCategoryApiFactory: (configuration?: Configuration, bas
17926
19181
  /**
17927
19182
  * Get all shop categories<br> OperationId: `ShopCategoryControllerGetAll`
17928
19183
  * @summary Get all
19184
+ * @param {string} [gameServerId]
17929
19185
  * @param {*} [options] Override http request option.
17930
19186
  * @throws {RequiredError}
17931
19187
  */
17932
- shopCategoryControllerGetAll(options?: RawAxiosRequestConfig): AxiosPromise<ShopCategoryOutputArrayDTOAPI>;
19188
+ shopCategoryControllerGetAll(gameServerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopCategoryOutputArrayDTOAPI>;
17933
19189
  /**
17934
19190
  * Get a shop category by id<br> OperationId: `ShopCategoryControllerGetOne`
17935
19191
  * @summary Get one
17936
19192
  * @param {string} id
19193
+ * @param {string} [gameServerId]
17937
19194
  * @param {*} [options] Override http request option.
17938
19195
  * @throws {RequiredError}
17939
19196
  */
17940
- shopCategoryControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopCategoryOutputDTOAPI>;
19197
+ shopCategoryControllerGetOne(id: string, gameServerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopCategoryOutputDTOAPI>;
17941
19198
  /**
17942
19199
  * Move a shop category to a different parent Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerMove`
17943
19200
  * @summary Move
@@ -18001,20 +19258,22 @@ export declare class ShopCategoryApi extends BaseAPI {
18001
19258
  /**
18002
19259
  * Get all shop categories<br> OperationId: `ShopCategoryControllerGetAll`
18003
19260
  * @summary Get all
19261
+ * @param {string} [gameServerId]
18004
19262
  * @param {*} [options] Override http request option.
18005
19263
  * @throws {RequiredError}
18006
19264
  * @memberof ShopCategoryApi
18007
19265
  */
18008
- shopCategoryControllerGetAll(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopCategoryOutputArrayDTOAPI, any>>;
19266
+ shopCategoryControllerGetAll(gameServerId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopCategoryOutputArrayDTOAPI, any>>;
18009
19267
  /**
18010
19268
  * Get a shop category by id<br> OperationId: `ShopCategoryControllerGetOne`
18011
19269
  * @summary Get one
18012
19270
  * @param {string} id
19271
+ * @param {string} [gameServerId]
18013
19272
  * @param {*} [options] Override http request option.
18014
19273
  * @throws {RequiredError}
18015
19274
  * @memberof ShopCategoryApi
18016
19275
  */
18017
- shopCategoryControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopCategoryOutputDTOAPI, any>>;
19276
+ shopCategoryControllerGetOne(id: string, gameServerId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopCategoryOutputDTOAPI, any>>;
18018
19277
  /**
18019
19278
  * Move a shop category to a different parent Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerMove`
18020
19279
  * @summary Move
@@ -18846,8 +20105,10 @@ export declare const StatsControllerGetEventsCountEventNameEnum: {
18846
20105
  readonly CronjobExecuted: "cronjob-executed";
18847
20106
  readonly CurrencyAdded: "currency-added";
18848
20107
  readonly CurrencyDeducted: "currency-deducted";
20108
+ readonly CurrencyResetAll: "currency-reset-all";
18849
20109
  readonly SettingsSet: "settings-set";
18850
20110
  readonly PlayerNewIpDetected: "player-new-ip-detected";
20111
+ readonly PlayerNewNameDetected: "player-new-name-detected";
18851
20112
  readonly ServerStatusChanged: "server-status-changed";
18852
20113
  readonly ModuleCreated: "module-created";
18853
20114
  readonly ModuleUpdated: "module-updated";
@@ -18867,6 +20128,7 @@ export declare const StatsControllerGetEventsCountEventNameEnum: {
18867
20128
  readonly GameserverDeleted: "gameserver-deleted";
18868
20129
  readonly PlayerBanned: "player-banned";
18869
20130
  readonly PlayerUnbanned: "player-unbanned";
20131
+ readonly PlayerDeleted: "player-deleted";
18870
20132
  readonly PlayerConnected: "player-connected";
18871
20133
  readonly PlayerDisconnected: "player-disconnected";
18872
20134
  readonly ChatMessage: "chat-message";