@takaro/apiclient 0.3.3 → 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.
- package/dist/generated/api.d.ts +1244 -9
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +536 -0
- package/dist/generated/api.js.map +1 -1
- package/dist/lib/client.d.ts +2 -1
- package/dist/lib/client.d.ts.map +1 -1
- package/dist/lib/client.js +6 -1
- package/dist/lib/client.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/api.ts +1645 -7
- package/src/lib/client.ts +11 -0
- package/src/generated/.openapi-generator/FILES +0 -423
- package/src/generated/.openapi-generator/VERSION +0 -1
package/dist/generated/api.d.ts
CHANGED
|
@@ -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";
|
|
@@ -4077,6 +4232,7 @@ export declare const GetJobInputDTOTypeEnum: {
|
|
|
4077
4232
|
readonly SyncEntities: "syncEntities";
|
|
4078
4233
|
readonly SyncBans: "syncBans";
|
|
4079
4234
|
readonly SyncSteam: "syncSteam";
|
|
4235
|
+
readonly SyncDiscordRoles: "syncDiscordRoles";
|
|
4080
4236
|
};
|
|
4081
4237
|
export type GetJobInputDTOTypeEnum = (typeof GetJobInputDTOTypeEnum)[keyof typeof GetJobInputDTOTypeEnum];
|
|
4082
4238
|
/**
|
|
@@ -4106,6 +4262,8 @@ export declare const GetSettingsInputKeysEnum: {
|
|
|
4106
4262
|
readonly DeveloperMode: "developerMode";
|
|
4107
4263
|
readonly MessagePrefix: "messagePrefix";
|
|
4108
4264
|
readonly DomainName: "domainName";
|
|
4265
|
+
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
4266
|
+
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
4109
4267
|
};
|
|
4110
4268
|
export type GetSettingsInputKeysEnum = (typeof GetSettingsInputKeysEnum)[keyof typeof GetSettingsInputKeysEnum];
|
|
4111
4269
|
/**
|
|
@@ -4414,6 +4572,31 @@ export interface HealthOutputDTO {
|
|
|
4414
4572
|
*/
|
|
4415
4573
|
healthy: boolean;
|
|
4416
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
|
+
}
|
|
4417
4600
|
/**
|
|
4418
4601
|
*
|
|
4419
4602
|
* @export
|
|
@@ -4476,8 +4659,10 @@ export declare const HookCreateDTOEventTypeEnum: {
|
|
|
4476
4659
|
readonly CronjobExecuted: "cronjob-executed";
|
|
4477
4660
|
readonly CurrencyAdded: "currency-added";
|
|
4478
4661
|
readonly CurrencyDeducted: "currency-deducted";
|
|
4662
|
+
readonly CurrencyResetAll: "currency-reset-all";
|
|
4479
4663
|
readonly SettingsSet: "settings-set";
|
|
4480
4664
|
readonly PlayerNewIpDetected: "player-new-ip-detected";
|
|
4665
|
+
readonly PlayerNewNameDetected: "player-new-name-detected";
|
|
4481
4666
|
readonly ServerStatusChanged: "server-status-changed";
|
|
4482
4667
|
readonly ModuleCreated: "module-created";
|
|
4483
4668
|
readonly ModuleUpdated: "module-updated";
|
|
@@ -4497,6 +4682,7 @@ export declare const HookCreateDTOEventTypeEnum: {
|
|
|
4497
4682
|
readonly GameserverDeleted: "gameserver-deleted";
|
|
4498
4683
|
readonly PlayerBanned: "player-banned";
|
|
4499
4684
|
readonly PlayerUnbanned: "player-unbanned";
|
|
4685
|
+
readonly PlayerDeleted: "player-deleted";
|
|
4500
4686
|
};
|
|
4501
4687
|
export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
|
|
4502
4688
|
/**
|
|
@@ -4629,8 +4815,10 @@ export declare const HookOutputDTOEventTypeEnum: {
|
|
|
4629
4815
|
readonly CronjobExecuted: "cronjob-executed";
|
|
4630
4816
|
readonly CurrencyAdded: "currency-added";
|
|
4631
4817
|
readonly CurrencyDeducted: "currency-deducted";
|
|
4818
|
+
readonly CurrencyResetAll: "currency-reset-all";
|
|
4632
4819
|
readonly SettingsSet: "settings-set";
|
|
4633
4820
|
readonly PlayerNewIpDetected: "player-new-ip-detected";
|
|
4821
|
+
readonly PlayerNewNameDetected: "player-new-name-detected";
|
|
4634
4822
|
readonly ServerStatusChanged: "server-status-changed";
|
|
4635
4823
|
readonly ModuleCreated: "module-created";
|
|
4636
4824
|
readonly ModuleUpdated: "module-updated";
|
|
@@ -4650,6 +4838,7 @@ export declare const HookOutputDTOEventTypeEnum: {
|
|
|
4650
4838
|
readonly GameserverDeleted: "gameserver-deleted";
|
|
4651
4839
|
readonly PlayerBanned: "player-banned";
|
|
4652
4840
|
readonly PlayerUnbanned: "player-unbanned";
|
|
4841
|
+
readonly PlayerDeleted: "player-deleted";
|
|
4653
4842
|
};
|
|
4654
4843
|
export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
|
|
4655
4844
|
/**
|
|
@@ -4727,8 +4916,10 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
|
|
|
4727
4916
|
readonly CronjobExecuted: "cronjob-executed";
|
|
4728
4917
|
readonly CurrencyAdded: "currency-added";
|
|
4729
4918
|
readonly CurrencyDeducted: "currency-deducted";
|
|
4919
|
+
readonly CurrencyResetAll: "currency-reset-all";
|
|
4730
4920
|
readonly SettingsSet: "settings-set";
|
|
4731
4921
|
readonly PlayerNewIpDetected: "player-new-ip-detected";
|
|
4922
|
+
readonly PlayerNewNameDetected: "player-new-name-detected";
|
|
4732
4923
|
readonly ServerStatusChanged: "server-status-changed";
|
|
4733
4924
|
readonly ModuleCreated: "module-created";
|
|
4734
4925
|
readonly ModuleUpdated: "module-updated";
|
|
@@ -4748,6 +4939,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
|
|
|
4748
4939
|
readonly GameserverDeleted: "gameserver-deleted";
|
|
4749
4940
|
readonly PlayerBanned: "player-banned";
|
|
4750
4941
|
readonly PlayerUnbanned: "player-unbanned";
|
|
4942
|
+
readonly PlayerDeleted: "player-deleted";
|
|
4751
4943
|
};
|
|
4752
4944
|
export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
|
|
4753
4945
|
/**
|
|
@@ -4890,8 +5082,10 @@ export declare const HookTriggerDTOEventTypeEnum: {
|
|
|
4890
5082
|
readonly CronjobExecuted: "cronjob-executed";
|
|
4891
5083
|
readonly CurrencyAdded: "currency-added";
|
|
4892
5084
|
readonly CurrencyDeducted: "currency-deducted";
|
|
5085
|
+
readonly CurrencyResetAll: "currency-reset-all";
|
|
4893
5086
|
readonly SettingsSet: "settings-set";
|
|
4894
5087
|
readonly PlayerNewIpDetected: "player-new-ip-detected";
|
|
5088
|
+
readonly PlayerNewNameDetected: "player-new-name-detected";
|
|
4895
5089
|
readonly ServerStatusChanged: "server-status-changed";
|
|
4896
5090
|
readonly ModuleCreated: "module-created";
|
|
4897
5091
|
readonly ModuleUpdated: "module-updated";
|
|
@@ -4911,6 +5105,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
|
|
|
4911
5105
|
readonly GameserverDeleted: "gameserver-deleted";
|
|
4912
5106
|
readonly PlayerBanned: "player-banned";
|
|
4913
5107
|
readonly PlayerUnbanned: "player-unbanned";
|
|
5108
|
+
readonly PlayerDeleted: "player-deleted";
|
|
4914
5109
|
};
|
|
4915
5110
|
export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
|
|
4916
5111
|
/**
|
|
@@ -4969,8 +5164,10 @@ export declare const HookUpdateDTOEventTypeEnum: {
|
|
|
4969
5164
|
readonly CronjobExecuted: "cronjob-executed";
|
|
4970
5165
|
readonly CurrencyAdded: "currency-added";
|
|
4971
5166
|
readonly CurrencyDeducted: "currency-deducted";
|
|
5167
|
+
readonly CurrencyResetAll: "currency-reset-all";
|
|
4972
5168
|
readonly SettingsSet: "settings-set";
|
|
4973
5169
|
readonly PlayerNewIpDetected: "player-new-ip-detected";
|
|
5170
|
+
readonly PlayerNewNameDetected: "player-new-name-detected";
|
|
4974
5171
|
readonly ServerStatusChanged: "server-status-changed";
|
|
4975
5172
|
readonly ModuleCreated: "module-created";
|
|
4976
5173
|
readonly ModuleUpdated: "module-updated";
|
|
@@ -4990,6 +5187,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
|
|
|
4990
5187
|
readonly GameserverDeleted: "gameserver-deleted";
|
|
4991
5188
|
readonly PlayerBanned: "player-banned";
|
|
4992
5189
|
readonly PlayerUnbanned: "player-unbanned";
|
|
5190
|
+
readonly PlayerDeleted: "player-deleted";
|
|
4993
5191
|
};
|
|
4994
5192
|
export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
|
|
4995
5193
|
/**
|
|
@@ -5288,8 +5486,10 @@ export declare const IHookEventTypeEnum: {
|
|
|
5288
5486
|
readonly CronjobExecuted: "cronjob-executed";
|
|
5289
5487
|
readonly CurrencyAdded: "currency-added";
|
|
5290
5488
|
readonly CurrencyDeducted: "currency-deducted";
|
|
5489
|
+
readonly CurrencyResetAll: "currency-reset-all";
|
|
5291
5490
|
readonly SettingsSet: "settings-set";
|
|
5292
5491
|
readonly PlayerNewIpDetected: "player-new-ip-detected";
|
|
5492
|
+
readonly PlayerNewNameDetected: "player-new-name-detected";
|
|
5293
5493
|
readonly ServerStatusChanged: "server-status-changed";
|
|
5294
5494
|
readonly ModuleCreated: "module-created";
|
|
5295
5495
|
readonly ModuleUpdated: "module-updated";
|
|
@@ -5309,6 +5509,7 @@ export declare const IHookEventTypeEnum: {
|
|
|
5309
5509
|
readonly GameserverDeleted: "gameserver-deleted";
|
|
5310
5510
|
readonly PlayerBanned: "player-banned";
|
|
5311
5511
|
readonly PlayerUnbanned: "player-unbanned";
|
|
5512
|
+
readonly PlayerDeleted: "player-deleted";
|
|
5312
5513
|
};
|
|
5313
5514
|
export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
|
|
5314
5515
|
/**
|
|
@@ -5626,6 +5827,43 @@ export interface ImportOutputDTOAPI {
|
|
|
5626
5827
|
*/
|
|
5627
5828
|
meta: MetadataOutput;
|
|
5628
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
|
+
}
|
|
5629
5867
|
/**
|
|
5630
5868
|
*
|
|
5631
5869
|
* @export
|
|
@@ -6068,6 +6306,67 @@ export interface JobStatusOutputDTOAPI {
|
|
|
6068
6306
|
*/
|
|
6069
6307
|
meta: MetadataOutput;
|
|
6070
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
|
+
}
|
|
6071
6370
|
/**
|
|
6072
6371
|
*
|
|
6073
6372
|
* @export
|
|
@@ -6325,6 +6624,62 @@ export interface MeOutputDTO {
|
|
|
6325
6624
|
*/
|
|
6326
6625
|
pogs: Array<PlayerOnGameserverOutputDTO>;
|
|
6327
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
|
+
}
|
|
6328
6683
|
/**
|
|
6329
6684
|
*
|
|
6330
6685
|
* @export
|
|
@@ -7433,6 +7788,37 @@ export interface NOTDOMAINSCOPEDTakaroModelDTO {
|
|
|
7433
7788
|
* @export
|
|
7434
7789
|
*/
|
|
7435
7790
|
export type NOTDOMAINSCOPEDTakaroModelDTOCreatedAt = string;
|
|
7791
|
+
/**
|
|
7792
|
+
*
|
|
7793
|
+
* @export
|
|
7794
|
+
* @interface NameHistoryOutputDTO
|
|
7795
|
+
*/
|
|
7796
|
+
export interface NameHistoryOutputDTO {
|
|
7797
|
+
/**
|
|
7798
|
+
*
|
|
7799
|
+
* @type {string}
|
|
7800
|
+
* @memberof NameHistoryOutputDTO
|
|
7801
|
+
*/
|
|
7802
|
+
name: string;
|
|
7803
|
+
/**
|
|
7804
|
+
*
|
|
7805
|
+
* @type {string}
|
|
7806
|
+
* @memberof NameHistoryOutputDTO
|
|
7807
|
+
*/
|
|
7808
|
+
id: string;
|
|
7809
|
+
/**
|
|
7810
|
+
*
|
|
7811
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7812
|
+
* @memberof NameHistoryOutputDTO
|
|
7813
|
+
*/
|
|
7814
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7815
|
+
/**
|
|
7816
|
+
*
|
|
7817
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7818
|
+
* @memberof NameHistoryOutputDTO
|
|
7819
|
+
*/
|
|
7820
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7821
|
+
}
|
|
7436
7822
|
/**
|
|
7437
7823
|
*
|
|
7438
7824
|
* @export
|
|
@@ -7467,12 +7853,74 @@ export interface OptionalPogStatsInputDTO {
|
|
|
7467
7853
|
/**
|
|
7468
7854
|
*
|
|
7469
7855
|
* @export
|
|
7470
|
-
* @
|
|
7856
|
+
* @interface OrderMetricsDTO
|
|
7471
7857
|
*/
|
|
7472
|
-
export
|
|
7473
|
-
|
|
7474
|
-
|
|
7475
|
-
|
|
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}
|
|
7919
|
+
*/
|
|
7920
|
+
export declare const PERMISSIONS: {
|
|
7921
|
+
readonly Root: "ROOT";
|
|
7922
|
+
readonly ManageUsers: "MANAGE_USERS";
|
|
7923
|
+
readonly ReadUsers: "READ_USERS";
|
|
7476
7924
|
readonly ManageRoles: "MANAGE_ROLES";
|
|
7477
7925
|
readonly ReadRoles: "READ_ROLES";
|
|
7478
7926
|
readonly ManageGameservers: "MANAGE_GAMESERVERS";
|
|
@@ -7593,6 +8041,8 @@ export declare const ParamKeyKeyEnum: {
|
|
|
7593
8041
|
readonly DeveloperMode: "developerMode";
|
|
7594
8042
|
readonly MessagePrefix: "messagePrefix";
|
|
7595
8043
|
readonly DomainName: "domainName";
|
|
8044
|
+
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
8045
|
+
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
7596
8046
|
};
|
|
7597
8047
|
export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
|
|
7598
8048
|
/**
|
|
@@ -7930,6 +8380,12 @@ export interface PlayerInventoryOutputDTO {
|
|
|
7930
8380
|
* @memberof PlayerInventoryOutputDTO
|
|
7931
8381
|
*/
|
|
7932
8382
|
playerId: string;
|
|
8383
|
+
/**
|
|
8384
|
+
*
|
|
8385
|
+
* @type {string}
|
|
8386
|
+
* @memberof PlayerInventoryOutputDTO
|
|
8387
|
+
*/
|
|
8388
|
+
pogId: string;
|
|
7933
8389
|
/**
|
|
7934
8390
|
*
|
|
7935
8391
|
* @type {string}
|
|
@@ -7954,6 +8410,12 @@ export interface PlayerInventoryOutputDTO {
|
|
|
7954
8410
|
* @memberof PlayerInventoryOutputDTO
|
|
7955
8411
|
*/
|
|
7956
8412
|
quantity: number;
|
|
8413
|
+
/**
|
|
8414
|
+
*
|
|
8415
|
+
* @type {string}
|
|
8416
|
+
* @memberof PlayerInventoryOutputDTO
|
|
8417
|
+
*/
|
|
8418
|
+
quality?: string;
|
|
7957
8419
|
/**
|
|
7958
8420
|
*
|
|
7959
8421
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
@@ -8004,6 +8466,12 @@ export interface PlayerItemHistoryOutputDTO {
|
|
|
8004
8466
|
* @memberof PlayerItemHistoryOutputDTO
|
|
8005
8467
|
*/
|
|
8006
8468
|
playerId: string;
|
|
8469
|
+
/**
|
|
8470
|
+
*
|
|
8471
|
+
* @type {string}
|
|
8472
|
+
* @memberof PlayerItemHistoryOutputDTO
|
|
8473
|
+
*/
|
|
8474
|
+
pogId: string;
|
|
8007
8475
|
/**
|
|
8008
8476
|
*
|
|
8009
8477
|
* @type {number}
|
|
@@ -8066,6 +8534,12 @@ export interface PlayerLocationOutputDTO {
|
|
|
8066
8534
|
* @memberof PlayerLocationOutputDTO
|
|
8067
8535
|
*/
|
|
8068
8536
|
playerId: string;
|
|
8537
|
+
/**
|
|
8538
|
+
*
|
|
8539
|
+
* @type {string}
|
|
8540
|
+
* @memberof PlayerLocationOutputDTO
|
|
8541
|
+
*/
|
|
8542
|
+
pogId: string;
|
|
8069
8543
|
/**
|
|
8070
8544
|
*
|
|
8071
8545
|
* @type {number}
|
|
@@ -8768,6 +9242,12 @@ export interface PlayerOutputDTO {
|
|
|
8768
9242
|
* @memberof PlayerOutputDTO
|
|
8769
9243
|
*/
|
|
8770
9244
|
ipHistory: Array<IpHistoryOutputDTO>;
|
|
9245
|
+
/**
|
|
9246
|
+
*
|
|
9247
|
+
* @type {Array<NameHistoryOutputDTO>}
|
|
9248
|
+
* @memberof PlayerOutputDTO
|
|
9249
|
+
*/
|
|
9250
|
+
nameHistory: Array<NameHistoryOutputDTO>;
|
|
8771
9251
|
/**
|
|
8772
9252
|
*
|
|
8773
9253
|
* @type {string}
|
|
@@ -8932,6 +9412,12 @@ export interface PlayerOutputWithRolesDTO {
|
|
|
8932
9412
|
* @memberof PlayerOutputWithRolesDTO
|
|
8933
9413
|
*/
|
|
8934
9414
|
ipHistory: Array<IpHistoryOutputDTO>;
|
|
9415
|
+
/**
|
|
9416
|
+
*
|
|
9417
|
+
* @type {Array<NameHistoryOutputDTO>}
|
|
9418
|
+
* @memberof PlayerOutputWithRolesDTO
|
|
9419
|
+
*/
|
|
9420
|
+
nameHistory: Array<NameHistoryOutputDTO>;
|
|
8935
9421
|
}
|
|
8936
9422
|
/**
|
|
8937
9423
|
*
|
|
@@ -9377,6 +9863,43 @@ export interface PogStatsInputDTO {
|
|
|
9377
9863
|
*/
|
|
9378
9864
|
endDate?: string;
|
|
9379
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
|
+
}
|
|
9380
9903
|
/**
|
|
9381
9904
|
*
|
|
9382
9905
|
* @export
|
|
@@ -9445,6 +9968,55 @@ export interface RangeFilterCreatedAndUpdatedAt {
|
|
|
9445
9968
|
*/
|
|
9446
9969
|
updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
9447
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];
|
|
9448
10020
|
/**
|
|
9449
10021
|
*
|
|
9450
10022
|
* @export
|
|
@@ -9471,6 +10043,43 @@ export interface ResolveRegistrationTokenInputDTO {
|
|
|
9471
10043
|
*/
|
|
9472
10044
|
registrationToken: string;
|
|
9473
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
|
+
}
|
|
9474
10083
|
/**
|
|
9475
10084
|
*
|
|
9476
10085
|
* @export
|
|
@@ -9489,6 +10098,12 @@ export interface RoleCreateInputDTO {
|
|
|
9489
10098
|
* @memberof RoleCreateInputDTO
|
|
9490
10099
|
*/
|
|
9491
10100
|
permissions: Array<PermissionInputDTO>;
|
|
10101
|
+
/**
|
|
10102
|
+
*
|
|
10103
|
+
* @type {string}
|
|
10104
|
+
* @memberof RoleCreateInputDTO
|
|
10105
|
+
*/
|
|
10106
|
+
linkedDiscordRoleId?: string;
|
|
9492
10107
|
}
|
|
9493
10108
|
/**
|
|
9494
10109
|
*
|
|
@@ -9609,6 +10224,12 @@ export interface RoleOutputDTO {
|
|
|
9609
10224
|
* @memberof RoleOutputDTO
|
|
9610
10225
|
*/
|
|
9611
10226
|
system: boolean;
|
|
10227
|
+
/**
|
|
10228
|
+
*
|
|
10229
|
+
* @type {string}
|
|
10230
|
+
* @memberof RoleOutputDTO
|
|
10231
|
+
*/
|
|
10232
|
+
linkedDiscordRoleId?: string;
|
|
9612
10233
|
/**
|
|
9613
10234
|
*
|
|
9614
10235
|
* @type {string}
|
|
@@ -9767,6 +10388,12 @@ export interface RoleUpdateInputDTO {
|
|
|
9767
10388
|
* @memberof RoleUpdateInputDTO
|
|
9768
10389
|
*/
|
|
9769
10390
|
permissions?: Array<PermissionInputDTO>;
|
|
10391
|
+
/**
|
|
10392
|
+
*
|
|
10393
|
+
* @type {string}
|
|
10394
|
+
* @memberof RoleUpdateInputDTO
|
|
10395
|
+
*/
|
|
10396
|
+
linkedDiscordRoleId?: string;
|
|
9770
10397
|
}
|
|
9771
10398
|
/**
|
|
9772
10399
|
*
|
|
@@ -9898,6 +10525,12 @@ export interface ServiceRoleCreateInputDTO {
|
|
|
9898
10525
|
* @memberof ServiceRoleCreateInputDTO
|
|
9899
10526
|
*/
|
|
9900
10527
|
system?: boolean;
|
|
10528
|
+
/**
|
|
10529
|
+
*
|
|
10530
|
+
* @type {string}
|
|
10531
|
+
* @memberof ServiceRoleCreateInputDTO
|
|
10532
|
+
*/
|
|
10533
|
+
linkedDiscordRoleId?: string;
|
|
9901
10534
|
}
|
|
9902
10535
|
/**
|
|
9903
10536
|
*
|
|
@@ -9947,6 +10580,18 @@ export interface Settings {
|
|
|
9947
10580
|
* @memberof Settings
|
|
9948
10581
|
*/
|
|
9949
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;
|
|
9950
10595
|
/**
|
|
9951
10596
|
*
|
|
9952
10597
|
* @type {string}
|
|
@@ -10030,6 +10675,8 @@ export declare const SettingsOutputDTOKeyEnum: {
|
|
|
10030
10675
|
readonly DeveloperMode: "developerMode";
|
|
10031
10676
|
readonly MessagePrefix: "messagePrefix";
|
|
10032
10677
|
readonly DomainName: "domainName";
|
|
10678
|
+
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
10679
|
+
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
10033
10680
|
};
|
|
10034
10681
|
export type SettingsOutputDTOKeyEnum = (typeof SettingsOutputDTOKeyEnum)[keyof typeof SettingsOutputDTOKeyEnum];
|
|
10035
10682
|
export declare const SettingsOutputDTOTypeEnum: {
|
|
@@ -10077,6 +10724,137 @@ export interface SettingsSetDTO {
|
|
|
10077
10724
|
*/
|
|
10078
10725
|
value: any;
|
|
10079
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];
|
|
10080
10858
|
/**
|
|
10081
10859
|
*
|
|
10082
10860
|
* @export
|
|
@@ -11395,6 +12173,25 @@ export interface TakaroEventCurrencyDeducted {
|
|
|
11395
12173
|
*/
|
|
11396
12174
|
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
11397
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
|
+
}
|
|
11398
12195
|
/**
|
|
11399
12196
|
*
|
|
11400
12197
|
* @export
|
|
@@ -11598,6 +12395,42 @@ export interface TakaroEventModuleUninstalled {
|
|
|
11598
12395
|
* @interface TakaroEventModuleUpdated
|
|
11599
12396
|
*/
|
|
11600
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;
|
|
11601
12434
|
/**
|
|
11602
12435
|
*
|
|
11603
12436
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
@@ -11655,6 +12488,25 @@ export interface TakaroEventPlayerCreated {
|
|
|
11655
12488
|
*/
|
|
11656
12489
|
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
11657
12490
|
}
|
|
12491
|
+
/**
|
|
12492
|
+
*
|
|
12493
|
+
* @export
|
|
12494
|
+
* @interface TakaroEventPlayerDeleted
|
|
12495
|
+
*/
|
|
12496
|
+
export interface TakaroEventPlayerDeleted {
|
|
12497
|
+
/**
|
|
12498
|
+
*
|
|
12499
|
+
* @type {string}
|
|
12500
|
+
* @memberof TakaroEventPlayerDeleted
|
|
12501
|
+
*/
|
|
12502
|
+
playerName?: string;
|
|
12503
|
+
/**
|
|
12504
|
+
*
|
|
12505
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
12506
|
+
* @memberof TakaroEventPlayerDeleted
|
|
12507
|
+
*/
|
|
12508
|
+
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
12509
|
+
}
|
|
11658
12510
|
/**
|
|
11659
12511
|
*
|
|
11660
12512
|
* @export
|
|
@@ -11711,6 +12563,31 @@ export interface TakaroEventPlayerNewIpDetected {
|
|
|
11711
12563
|
*/
|
|
11712
12564
|
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
11713
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
|
+
}
|
|
11714
12591
|
/**
|
|
11715
12592
|
*
|
|
11716
12593
|
* @export
|
|
@@ -12174,6 +13051,31 @@ export interface TestReachabilityOutputDTO {
|
|
|
12174
13051
|
*/
|
|
12175
13052
|
latency?: number;
|
|
12176
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
|
+
}
|
|
12177
13079
|
/**
|
|
12178
13080
|
*
|
|
12179
13081
|
* @export
|
|
@@ -12219,6 +13121,80 @@ export interface TokenOutputDTOAPI {
|
|
|
12219
13121
|
*/
|
|
12220
13122
|
meta: MetadataOutput;
|
|
12221
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
|
+
}
|
|
12222
13198
|
/**
|
|
12223
13199
|
*
|
|
12224
13200
|
* @export
|
|
@@ -13040,6 +14016,79 @@ export interface VariableUpdateDTO {
|
|
|
13040
14016
|
*/
|
|
13041
14017
|
moduleId?: string;
|
|
13042
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];
|
|
13043
14092
|
/**
|
|
13044
14093
|
* CommandApi - axios parameter creator
|
|
13045
14094
|
* @export
|
|
@@ -13690,6 +14739,15 @@ export declare class CronJobApi extends BaseAPI {
|
|
|
13690
14739
|
* @export
|
|
13691
14740
|
*/
|
|
13692
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>;
|
|
13693
14751
|
/**
|
|
13694
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`
|
|
13695
14753
|
* @summary Get guild channels
|
|
@@ -13739,12 +14797,31 @@ export declare const DiscordApiAxiosParamCreator: (configuration?: Configuration
|
|
|
13739
14797
|
* @throws {RequiredError}
|
|
13740
14798
|
*/
|
|
13741
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>;
|
|
13742
14810
|
};
|
|
13743
14811
|
/**
|
|
13744
14812
|
* DiscordApi - functional programming interface
|
|
13745
14813
|
* @export
|
|
13746
14814
|
*/
|
|
13747
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>>;
|
|
13748
14825
|
/**
|
|
13749
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`
|
|
13750
14827
|
* @summary Get guild channels
|
|
@@ -13784,7 +14861,7 @@ export declare const DiscordApiFp: (configuration?: Configuration) => {
|
|
|
13784
14861
|
* @param {*} [options] Override http request option.
|
|
13785
14862
|
* @throws {RequiredError}
|
|
13786
14863
|
*/
|
|
13787
|
-
discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
14864
|
+
discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessageOutputDTOAPI>>;
|
|
13788
14865
|
/**
|
|
13789
14866
|
* Update Takaro-specific settings for a Discord guild, such as enabling or disabling Takaro features. Required permissions: `MANAGE_SETTINGS`<br> OperationId: `DiscordControllerUpdateGuild`
|
|
13790
14867
|
* @summary Update guild settings
|
|
@@ -13794,12 +14871,31 @@ export declare const DiscordApiFp: (configuration?: Configuration) => {
|
|
|
13794
14871
|
* @throws {RequiredError}
|
|
13795
14872
|
*/
|
|
13796
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>>;
|
|
13797
14884
|
};
|
|
13798
14885
|
/**
|
|
13799
14886
|
* DiscordApi - factory interface
|
|
13800
14887
|
* @export
|
|
13801
14888
|
*/
|
|
13802
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>;
|
|
13803
14899
|
/**
|
|
13804
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`
|
|
13805
14901
|
* @summary Get guild channels
|
|
@@ -13839,7 +14935,7 @@ export declare const DiscordApiFactory: (configuration?: Configuration, basePath
|
|
|
13839
14935
|
* @param {*} [options] Override http request option.
|
|
13840
14936
|
* @throws {RequiredError}
|
|
13841
14937
|
*/
|
|
13842
|
-
discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
14938
|
+
discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<MessageOutputDTOAPI>;
|
|
13843
14939
|
/**
|
|
13844
14940
|
* Update Takaro-specific settings for a Discord guild, such as enabling or disabling Takaro features. Required permissions: `MANAGE_SETTINGS`<br> OperationId: `DiscordControllerUpdateGuild`
|
|
13845
14941
|
* @summary Update guild settings
|
|
@@ -13849,6 +14945,16 @@ export declare const DiscordApiFactory: (configuration?: Configuration, basePath
|
|
|
13849
14945
|
* @throws {RequiredError}
|
|
13850
14946
|
*/
|
|
13851
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>;
|
|
13852
14958
|
};
|
|
13853
14959
|
/**
|
|
13854
14960
|
* DiscordApi - object-oriented interface
|
|
@@ -13857,6 +14963,16 @@ export declare const DiscordApiFactory: (configuration?: Configuration, basePath
|
|
|
13857
14963
|
* @extends {BaseAPI}
|
|
13858
14964
|
*/
|
|
13859
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>>;
|
|
13860
14976
|
/**
|
|
13861
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`
|
|
13862
14978
|
* @summary Get guild channels
|
|
@@ -13901,7 +15017,7 @@ export declare class DiscordApi extends BaseAPI {
|
|
|
13901
15017
|
* @throws {RequiredError}
|
|
13902
15018
|
* @memberof DiscordApi
|
|
13903
15019
|
*/
|
|
13904
|
-
discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15020
|
+
discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageOutputDTOAPI, any>>;
|
|
13905
15021
|
/**
|
|
13906
15022
|
* Update Takaro-specific settings for a Discord guild, such as enabling or disabling Takaro features. Required permissions: `MANAGE_SETTINGS`<br> OperationId: `DiscordControllerUpdateGuild`
|
|
13907
15023
|
* @summary Update guild settings
|
|
@@ -13912,6 +15028,17 @@ export declare class DiscordApi extends BaseAPI {
|
|
|
13912
15028
|
* @memberof DiscordApi
|
|
13913
15029
|
*/
|
|
13914
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>>;
|
|
13915
15042
|
}
|
|
13916
15043
|
/**
|
|
13917
15044
|
* DomainApi - axios parameter creator
|
|
@@ -14885,6 +16012,14 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
14885
16012
|
* @throws {RequiredError}
|
|
14886
16013
|
*/
|
|
14887
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>;
|
|
14888
16023
|
/**
|
|
14889
16024
|
* Fetch gameservers<br> OperationId: `GameServerControllerSearch`
|
|
14890
16025
|
* @summary Search
|
|
@@ -15110,6 +16245,14 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
|
|
|
15110
16245
|
* @throws {RequiredError}
|
|
15111
16246
|
*/
|
|
15112
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>>;
|
|
15113
16256
|
/**
|
|
15114
16257
|
* Fetch gameservers<br> OperationId: `GameServerControllerSearch`
|
|
15115
16258
|
* @summary Search
|
|
@@ -15335,6 +16478,14 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
|
|
|
15335
16478
|
* @throws {RequiredError}
|
|
15336
16479
|
*/
|
|
15337
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>;
|
|
15338
16489
|
/**
|
|
15339
16490
|
* Fetch gameservers<br> OperationId: `GameServerControllerSearch`
|
|
15340
16491
|
* @summary Search
|
|
@@ -15578,6 +16729,15 @@ export declare class GameServerApi extends BaseAPI {
|
|
|
15578
16729
|
* @memberof GameServerApi
|
|
15579
16730
|
*/
|
|
15580
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>>;
|
|
15581
16741
|
/**
|
|
15582
16742
|
* Fetch gameservers<br> OperationId: `GameServerControllerSearch`
|
|
15583
16743
|
* @summary Search
|
|
@@ -16788,6 +17948,14 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
16788
17948
|
* @throws {RequiredError}
|
|
16789
17949
|
*/
|
|
16790
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>;
|
|
16791
17959
|
/**
|
|
16792
17960
|
* Get the player that is currently authenticated. This is a low-privilege route, returning limited data.<br> OperationId: `PlayerControllerGetMe`
|
|
16793
17961
|
* @summary Get current player
|
|
@@ -16878,6 +18046,14 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
|
|
|
16878
18046
|
* @throws {RequiredError}
|
|
16879
18047
|
*/
|
|
16880
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>>;
|
|
16881
18057
|
/**
|
|
16882
18058
|
* Get the player that is currently authenticated. This is a low-privilege route, returning limited data.<br> OperationId: `PlayerControllerGetMe`
|
|
16883
18059
|
* @summary Get current player
|
|
@@ -16968,6 +18144,14 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
|
|
|
16968
18144
|
* @throws {RequiredError}
|
|
16969
18145
|
*/
|
|
16970
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>;
|
|
16971
18155
|
/**
|
|
16972
18156
|
* Get the player that is currently authenticated. This is a low-privilege route, returning limited data.<br> OperationId: `PlayerControllerGetMe`
|
|
16973
18157
|
* @summary Get current player
|
|
@@ -17066,6 +18250,15 @@ export declare class PlayerApi extends BaseAPI {
|
|
|
17066
18250
|
* @memberof PlayerApi
|
|
17067
18251
|
*/
|
|
17068
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>>;
|
|
17069
18262
|
/**
|
|
17070
18263
|
* Get the player that is currently authenticated. This is a low-privilege route, returning limited data.<br> OperationId: `PlayerControllerGetMe`
|
|
17071
18264
|
* @summary Get current player
|
|
@@ -17129,6 +18322,15 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
|
|
|
17129
18322
|
* @throws {RequiredError}
|
|
17130
18323
|
*/
|
|
17131
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>;
|
|
17132
18334
|
/**
|
|
17133
18335
|
* Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
|
|
17134
18336
|
* @summary Get one
|
|
@@ -17193,6 +18395,15 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
|
|
|
17193
18395
|
* @throws {RequiredError}
|
|
17194
18396
|
*/
|
|
17195
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>>;
|
|
17196
18407
|
/**
|
|
17197
18408
|
* Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
|
|
17198
18409
|
* @summary Get one
|
|
@@ -17257,6 +18468,15 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
|
|
|
17257
18468
|
* @throws {RequiredError}
|
|
17258
18469
|
*/
|
|
17259
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>;
|
|
17260
18480
|
/**
|
|
17261
18481
|
* Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
|
|
17262
18482
|
* @summary Get one
|
|
@@ -17325,6 +18545,16 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
|
|
|
17325
18545
|
* @memberof PlayerOnGameServerApi
|
|
17326
18546
|
*/
|
|
17327
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>>;
|
|
17328
18558
|
/**
|
|
17329
18559
|
* Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
|
|
17330
18560
|
* @summary Get one
|
|
@@ -17777,6 +19007,8 @@ export declare const SettingsControllerGetKeysEnum: {
|
|
|
17777
19007
|
readonly DeveloperMode: "developerMode";
|
|
17778
19008
|
readonly MessagePrefix: "messagePrefix";
|
|
17779
19009
|
readonly DomainName: "domainName";
|
|
19010
|
+
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
19011
|
+
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
17780
19012
|
};
|
|
17781
19013
|
export type SettingsControllerGetKeysEnum = (typeof SettingsControllerGetKeysEnum)[keyof typeof SettingsControllerGetKeysEnum];
|
|
17782
19014
|
/**
|
|
@@ -18873,8 +20105,10 @@ export declare const StatsControllerGetEventsCountEventNameEnum: {
|
|
|
18873
20105
|
readonly CronjobExecuted: "cronjob-executed";
|
|
18874
20106
|
readonly CurrencyAdded: "currency-added";
|
|
18875
20107
|
readonly CurrencyDeducted: "currency-deducted";
|
|
20108
|
+
readonly CurrencyResetAll: "currency-reset-all";
|
|
18876
20109
|
readonly SettingsSet: "settings-set";
|
|
18877
20110
|
readonly PlayerNewIpDetected: "player-new-ip-detected";
|
|
20111
|
+
readonly PlayerNewNameDetected: "player-new-name-detected";
|
|
18878
20112
|
readonly ServerStatusChanged: "server-status-changed";
|
|
18879
20113
|
readonly ModuleCreated: "module-created";
|
|
18880
20114
|
readonly ModuleUpdated: "module-updated";
|
|
@@ -18894,6 +20128,7 @@ export declare const StatsControllerGetEventsCountEventNameEnum: {
|
|
|
18894
20128
|
readonly GameserverDeleted: "gameserver-deleted";
|
|
18895
20129
|
readonly PlayerBanned: "player-banned";
|
|
18896
20130
|
readonly PlayerUnbanned: "player-unbanned";
|
|
20131
|
+
readonly PlayerDeleted: "player-deleted";
|
|
18897
20132
|
readonly PlayerConnected: "player-connected";
|
|
18898
20133
|
readonly PlayerDisconnected: "player-disconnected";
|
|
18899
20134
|
readonly ChatMessage: "chat-message";
|