@takaro/apiclient 0.0.0-dev.223607e → 0.0.0-dev.2277b73

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.
@@ -2218,6 +2218,30 @@ export interface DomainCreateInputDTO {
2218
2218
  * @memberof DomainCreateInputDTO
2219
2219
  */
2220
2220
  maxFunctionsInModule?: number;
2221
+ /**
2222
+ *
2223
+ * @type {number}
2224
+ * @memberof DomainCreateInputDTO
2225
+ */
2226
+ maxCustomRoles?: number;
2227
+ /**
2228
+ *
2229
+ * @type {number}
2230
+ * @memberof DomainCreateInputDTO
2231
+ */
2232
+ maxDiscordLinkedRoles?: number;
2233
+ /**
2234
+ *
2235
+ * @type {string}
2236
+ * @memberof DomainCreateInputDTO
2237
+ */
2238
+ serverRegistrationToken?: string;
2239
+ /**
2240
+ *
2241
+ * @type {boolean}
2242
+ * @memberof DomainCreateInputDTO
2243
+ */
2244
+ skipBuiltinSeeding?: boolean;
2221
2245
  }
2222
2246
  export declare const DomainCreateInputDTOStateEnum: {
2223
2247
  readonly Active: "ACTIVE";
@@ -2372,6 +2396,18 @@ export interface DomainOutputDTO {
2372
2396
  * @memberof DomainOutputDTO
2373
2397
  */
2374
2398
  maxFunctionsInModule: number;
2399
+ /**
2400
+ *
2401
+ * @type {number}
2402
+ * @memberof DomainOutputDTO
2403
+ */
2404
+ maxCustomRoles: number;
2405
+ /**
2406
+ *
2407
+ * @type {number}
2408
+ * @memberof DomainOutputDTO
2409
+ */
2410
+ maxDiscordLinkedRoles: number;
2375
2411
  /**
2376
2412
  *
2377
2413
  * @type {string}
@@ -2592,6 +2628,18 @@ export interface DomainUpdateInputDTO {
2592
2628
  * @memberof DomainUpdateInputDTO
2593
2629
  */
2594
2630
  maxFunctionsInModule?: number;
2631
+ /**
2632
+ *
2633
+ * @type {number}
2634
+ * @memberof DomainUpdateInputDTO
2635
+ */
2636
+ maxCustomRoles?: number;
2637
+ /**
2638
+ *
2639
+ * @type {number}
2640
+ * @memberof DomainUpdateInputDTO
2641
+ */
2642
+ maxDiscordLinkedRoles?: number;
2595
2643
  }
2596
2644
  export declare const DomainUpdateInputDTOStateEnum: {
2597
2645
  readonly Active: "ACTIVE";
@@ -2599,6 +2647,50 @@ export declare const DomainUpdateInputDTOStateEnum: {
2599
2647
  readonly Maintenance: "MAINTENANCE";
2600
2648
  };
2601
2649
  export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
2650
+ /**
2651
+ *
2652
+ * @export
2653
+ * @interface EffectiveStorefrontConfigDTO
2654
+ */
2655
+ export interface EffectiveStorefrontConfigDTO {
2656
+ /**
2657
+ *
2658
+ * @type {string}
2659
+ * @memberof EffectiveStorefrontConfigDTO
2660
+ */
2661
+ templateId: string;
2662
+ /**
2663
+ *
2664
+ * @type {object}
2665
+ * @memberof EffectiveStorefrontConfigDTO
2666
+ */
2667
+ values: object;
2668
+ /**
2669
+ *
2670
+ * @type {object}
2671
+ * @memberof EffectiveStorefrontConfigDTO
2672
+ */
2673
+ schema: object;
2674
+ }
2675
+ /**
2676
+ *
2677
+ * @export
2678
+ * @interface EffectiveStorefrontConfigOutputDTOAPI
2679
+ */
2680
+ export interface EffectiveStorefrontConfigOutputDTOAPI {
2681
+ /**
2682
+ *
2683
+ * @type {EffectiveStorefrontConfigDTO}
2684
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2685
+ */
2686
+ data: EffectiveStorefrontConfigDTO;
2687
+ /**
2688
+ *
2689
+ * @type {MetadataOutput}
2690
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2691
+ */
2692
+ meta: MetadataOutput;
2693
+ }
2602
2694
  /**
2603
2695
  *
2604
2696
  * @export
@@ -3132,6 +3224,7 @@ export declare const EventCreateDTOEventNameEnum: {
3132
3224
  readonly PlayerInventoryChanged: "player-inventory-changed";
3133
3225
  readonly EventRateLimited: "event-rate-limited";
3134
3226
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3227
+ readonly InviteLinkCreated: "invite-link-created";
3135
3228
  readonly PlayerConnected: "player-connected";
3136
3229
  readonly PlayerDisconnected: "player-disconnected";
3137
3230
  readonly ChatMessage: "chat-message";
@@ -3346,6 +3439,7 @@ export declare const EventExploreFiltersDTOEventNameEnum: {
3346
3439
  readonly PlayerInventoryChanged: "player-inventory-changed";
3347
3440
  readonly EventRateLimited: "event-rate-limited";
3348
3441
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3442
+ readonly InviteLinkCreated: "invite-link-created";
3349
3443
  readonly PlayerConnected: "player-connected";
3350
3444
  readonly PlayerDisconnected: "player-disconnected";
3351
3445
  readonly ChatMessage: "chat-message";
@@ -3712,6 +3806,7 @@ export declare const EventOutputDTOEventNameEnum: {
3712
3806
  readonly PlayerInventoryChanged: "player-inventory-changed";
3713
3807
  readonly EventRateLimited: "event-rate-limited";
3714
3808
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3809
+ readonly InviteLinkCreated: "invite-link-created";
3715
3810
  readonly PlayerConnected: "player-connected";
3716
3811
  readonly PlayerDisconnected: "player-disconnected";
3717
3812
  readonly ChatMessage: "chat-message";
@@ -3723,7 +3818,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
3723
3818
  * @type EventOutputDTOMeta
3724
3819
  * @export
3725
3820
  */
3726
- 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 | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
3821
+ export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventInviteLinkCreated | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
3727
3822
  /**
3728
3823
  *
3729
3824
  * @export
@@ -3900,6 +3995,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
3900
3995
  readonly PlayerInventoryChanged: "player-inventory-changed";
3901
3996
  readonly EventRateLimited: "event-rate-limited";
3902
3997
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3998
+ readonly InviteLinkCreated: "invite-link-created";
3903
3999
  readonly PlayerConnected: "player-connected";
3904
4000
  readonly PlayerDisconnected: "player-disconnected";
3905
4001
  readonly ChatMessage: "chat-message";
@@ -5334,6 +5430,7 @@ export declare const HookCreateDTOEventTypeEnum: {
5334
5430
  readonly PlayerInventoryChanged: "player-inventory-changed";
5335
5431
  readonly EventRateLimited: "event-rate-limited";
5336
5432
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5433
+ readonly InviteLinkCreated: "invite-link-created";
5337
5434
  };
5338
5435
  export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
5339
5436
  /**
@@ -5494,6 +5591,7 @@ export declare const HookOutputDTOEventTypeEnum: {
5494
5591
  readonly PlayerInventoryChanged: "player-inventory-changed";
5495
5592
  readonly EventRateLimited: "event-rate-limited";
5496
5593
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5594
+ readonly InviteLinkCreated: "invite-link-created";
5497
5595
  };
5498
5596
  export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
5499
5597
  /**
@@ -5599,6 +5697,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
5599
5697
  readonly PlayerInventoryChanged: "player-inventory-changed";
5600
5698
  readonly EventRateLimited: "event-rate-limited";
5601
5699
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5700
+ readonly InviteLinkCreated: "invite-link-created";
5602
5701
  };
5603
5702
  export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
5604
5703
  /**
@@ -5769,6 +5868,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
5769
5868
  readonly PlayerInventoryChanged: "player-inventory-changed";
5770
5869
  readonly EventRateLimited: "event-rate-limited";
5771
5870
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5871
+ readonly InviteLinkCreated: "invite-link-created";
5772
5872
  };
5773
5873
  export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
5774
5874
  /**
@@ -5855,6 +5955,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
5855
5955
  readonly PlayerInventoryChanged: "player-inventory-changed";
5856
5956
  readonly EventRateLimited: "event-rate-limited";
5857
5957
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5958
+ readonly InviteLinkCreated: "invite-link-created";
5858
5959
  };
5859
5960
  export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
5860
5961
  /**
@@ -6181,6 +6282,7 @@ export declare const IHookEventTypeEnum: {
6181
6282
  readonly PlayerInventoryChanged: "player-inventory-changed";
6182
6283
  readonly EventRateLimited: "event-rate-limited";
6183
6284
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
6285
+ readonly InviteLinkCreated: "invite-link-created";
6184
6286
  };
6185
6287
  export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
6186
6288
  /**
@@ -6607,238 +6709,678 @@ export interface InviteCreateDTO {
6607
6709
  /**
6608
6710
  *
6609
6711
  * @export
6610
- * @interface InviteOutputDTO
6712
+ * @interface InviteLinkCreateInputDTO
6611
6713
  */
6612
- export interface InviteOutputDTO {
6714
+ export interface InviteLinkCreateInputDTO {
6613
6715
  /**
6614
6716
  *
6615
- * @type {string}
6616
- * @memberof InviteOutputDTO
6717
+ * @type {Array<string>}
6718
+ * @memberof InviteLinkCreateInputDTO
6617
6719
  */
6618
- botInvite: string;
6720
+ roleIds?: Array<string>;
6619
6721
  /**
6620
6722
  *
6621
- * @type {string}
6622
- * @memberof InviteOutputDTO
6723
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6724
+ * @memberof InviteLinkCreateInputDTO
6623
6725
  */
6624
- devServer: string;
6726
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6727
+ /**
6728
+ *
6729
+ * @type {number}
6730
+ * @memberof InviteLinkCreateInputDTO
6731
+ */
6732
+ maxUses?: number;
6625
6733
  }
6626
6734
  /**
6627
6735
  *
6628
6736
  * @export
6629
- * @interface IpHistoryOutputDTO
6737
+ * @interface InviteLinkCreateResultDTO
6630
6738
  */
6631
- export interface IpHistoryOutputDTO {
6739
+ export interface InviteLinkCreateResultDTO {
6632
6740
  /**
6633
6741
  *
6634
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6635
- * @memberof IpHistoryOutputDTO
6742
+ * @type {string}
6743
+ * @memberof InviteLinkCreateResultDTO
6636
6744
  */
6637
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6745
+ inviteUrl: string;
6638
6746
  /**
6639
6747
  *
6640
6748
  * @type {string}
6641
- * @memberof IpHistoryOutputDTO
6749
+ * @memberof InviteLinkCreateResultDTO
6642
6750
  */
6643
- ip: string;
6751
+ token: string;
6644
6752
  /**
6645
6753
  *
6646
6754
  * @type {string}
6647
- * @memberof IpHistoryOutputDTO
6755
+ * @memberof InviteLinkCreateResultDTO
6648
6756
  */
6649
- country?: string;
6757
+ id: string;
6650
6758
  /**
6651
6759
  *
6652
- * @type {string}
6653
- * @memberof IpHistoryOutputDTO
6760
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6761
+ * @memberof InviteLinkCreateResultDTO
6654
6762
  */
6655
- city?: string;
6763
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6656
6764
  /**
6657
6765
  *
6658
- * @type {string}
6659
- * @memberof IpHistoryOutputDTO
6766
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6767
+ * @memberof InviteLinkCreateResultDTO
6660
6768
  */
6661
- latitude?: string;
6769
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6662
6770
  /**
6663
6771
  *
6664
- * @type {string}
6665
- * @memberof IpHistoryOutputDTO
6772
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6773
+ * @memberof InviteLinkCreateResultDTO
6666
6774
  */
6667
- longitude?: string;
6668
- }
6669
- /**
6670
- *
6671
- * @export
6672
- * @interface ItemCreateDTO
6673
- */
6674
- export interface ItemCreateDTO {
6775
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6675
6776
  /**
6676
6777
  *
6677
- * @type {string}
6678
- * @memberof ItemCreateDTO
6778
+ * @type {number}
6779
+ * @memberof InviteLinkCreateResultDTO
6679
6780
  */
6680
- name: string;
6781
+ maxUses?: number;
6681
6782
  /**
6682
6783
  *
6683
- * @type {string}
6684
- * @memberof ItemCreateDTO
6784
+ * @type {number}
6785
+ * @memberof InviteLinkCreateResultDTO
6685
6786
  */
6686
- code: string;
6787
+ uses: number;
6687
6788
  /**
6688
6789
  *
6689
- * @type {string}
6690
- * @memberof ItemCreateDTO
6790
+ * @type {number}
6791
+ * @memberof InviteLinkCreateResultDTO
6691
6792
  */
6692
- description?: string;
6793
+ remaining?: number;
6693
6794
  /**
6694
6795
  *
6695
6796
  * @type {string}
6696
- * @memberof ItemCreateDTO
6797
+ * @memberof InviteLinkCreateResultDTO
6697
6798
  */
6698
- icon?: string;
6799
+ status: InviteLinkCreateResultDTOStatusEnum;
6800
+ /**
6801
+ *
6802
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6803
+ * @memberof InviteLinkCreateResultDTO
6804
+ */
6805
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6699
6806
  /**
6700
6807
  *
6701
6808
  * @type {string}
6702
- * @memberof ItemCreateDTO
6809
+ * @memberof InviteLinkCreateResultDTO
6703
6810
  */
6704
- gameserverId: string;
6811
+ createdBy?: string;
6812
+ /**
6813
+ *
6814
+ * @type {Array<InviteLinkRoleDTO>}
6815
+ * @memberof InviteLinkCreateResultDTO
6816
+ */
6817
+ roles: Array<InviteLinkRoleDTO>;
6705
6818
  }
6819
+ export declare const InviteLinkCreateResultDTOStatusEnum: {
6820
+ readonly Active: "ACTIVE";
6821
+ readonly Revoked: "REVOKED";
6822
+ readonly Expired: "EXPIRED";
6823
+ readonly Depleted: "DEPLETED";
6824
+ };
6825
+ export type InviteLinkCreateResultDTOStatusEnum = (typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
6706
6826
  /**
6707
6827
  *
6708
6828
  * @export
6709
- * @interface ItemOutputArrayDTOAPI
6829
+ * @interface InviteLinkCreateResultDTOAPI
6710
6830
  */
6711
- export interface ItemOutputArrayDTOAPI {
6831
+ export interface InviteLinkCreateResultDTOAPI {
6712
6832
  /**
6713
6833
  *
6714
- * @type {Array<ItemsOutputDTO>}
6715
- * @memberof ItemOutputArrayDTOAPI
6834
+ * @type {InviteLinkCreateResultDTO}
6835
+ * @memberof InviteLinkCreateResultDTOAPI
6716
6836
  */
6717
- data: Array<ItemsOutputDTO>;
6837
+ data: InviteLinkCreateResultDTO;
6718
6838
  /**
6719
6839
  *
6720
6840
  * @type {MetadataOutput}
6721
- * @memberof ItemOutputArrayDTOAPI
6841
+ * @memberof InviteLinkCreateResultDTOAPI
6722
6842
  */
6723
6843
  meta: MetadataOutput;
6724
6844
  }
6725
6845
  /**
6726
6846
  *
6727
6847
  * @export
6728
- * @interface ItemOutputDTOAPI
6848
+ * @interface InviteLinkOutputArrayDTOAPI
6729
6849
  */
6730
- export interface ItemOutputDTOAPI {
6850
+ export interface InviteLinkOutputArrayDTOAPI {
6731
6851
  /**
6732
6852
  *
6733
- * @type {ItemsOutputDTO}
6734
- * @memberof ItemOutputDTOAPI
6853
+ * @type {Array<InviteLinkOutputDTO>}
6854
+ * @memberof InviteLinkOutputArrayDTOAPI
6735
6855
  */
6736
- data: ItemsOutputDTO;
6856
+ data: Array<InviteLinkOutputDTO>;
6737
6857
  /**
6738
6858
  *
6739
6859
  * @type {MetadataOutput}
6740
- * @memberof ItemOutputDTOAPI
6860
+ * @memberof InviteLinkOutputArrayDTOAPI
6741
6861
  */
6742
6862
  meta: MetadataOutput;
6743
6863
  }
6744
6864
  /**
6745
6865
  *
6746
6866
  * @export
6747
- * @interface ItemSearchInputAllowedFilters
6867
+ * @interface InviteLinkOutputDTO
6748
6868
  */
6749
- export interface ItemSearchInputAllowedFilters {
6869
+ export interface InviteLinkOutputDTO {
6750
6870
  /**
6751
6871
  *
6752
- * @type {Array<string>}
6753
- * @memberof ItemSearchInputAllowedFilters
6872
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6873
+ * @memberof InviteLinkOutputDTO
6754
6874
  */
6755
- name?: Array<string>;
6875
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6756
6876
  /**
6757
6877
  *
6758
- * @type {Array<string>}
6759
- * @memberof ItemSearchInputAllowedFilters
6878
+ * @type {number}
6879
+ * @memberof InviteLinkOutputDTO
6760
6880
  */
6761
- code?: Array<string>;
6881
+ maxUses?: number;
6762
6882
  /**
6763
6883
  *
6764
- * @type {Array<string>}
6765
- * @memberof ItemSearchInputAllowedFilters
6884
+ * @type {number}
6885
+ * @memberof InviteLinkOutputDTO
6766
6886
  */
6767
- gameserverId?: Array<string>;
6887
+ uses: number;
6768
6888
  /**
6769
6889
  *
6770
- * @type {Array<string>}
6771
- * @memberof ItemSearchInputAllowedFilters
6890
+ * @type {number}
6891
+ * @memberof InviteLinkOutputDTO
6772
6892
  */
6773
- id?: Array<string>;
6893
+ remaining?: number;
6894
+ /**
6895
+ *
6896
+ * @type {string}
6897
+ * @memberof InviteLinkOutputDTO
6898
+ */
6899
+ status: InviteLinkOutputDTOStatusEnum;
6900
+ /**
6901
+ *
6902
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6903
+ * @memberof InviteLinkOutputDTO
6904
+ */
6905
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6906
+ /**
6907
+ *
6908
+ * @type {string}
6909
+ * @memberof InviteLinkOutputDTO
6910
+ */
6911
+ createdBy?: string;
6912
+ /**
6913
+ *
6914
+ * @type {Array<InviteLinkRoleDTO>}
6915
+ * @memberof InviteLinkOutputDTO
6916
+ */
6917
+ roles: Array<InviteLinkRoleDTO>;
6918
+ /**
6919
+ *
6920
+ * @type {string}
6921
+ * @memberof InviteLinkOutputDTO
6922
+ */
6923
+ id: string;
6924
+ /**
6925
+ *
6926
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6927
+ * @memberof InviteLinkOutputDTO
6928
+ */
6929
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6930
+ /**
6931
+ *
6932
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6933
+ * @memberof InviteLinkOutputDTO
6934
+ */
6935
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6774
6936
  }
6937
+ export declare const InviteLinkOutputDTOStatusEnum: {
6938
+ readonly Active: "ACTIVE";
6939
+ readonly Revoked: "REVOKED";
6940
+ readonly Expired: "EXPIRED";
6941
+ readonly Depleted: "DEPLETED";
6942
+ };
6943
+ export type InviteLinkOutputDTOStatusEnum = (typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
6775
6944
  /**
6776
6945
  *
6777
6946
  * @export
6778
- * @interface ItemSearchInputAllowedSearch
6947
+ * @interface InviteLinkOutputDTOAPI
6779
6948
  */
6780
- export interface ItemSearchInputAllowedSearch {
6949
+ export interface InviteLinkOutputDTOAPI {
6781
6950
  /**
6782
6951
  *
6783
- * @type {Array<string>}
6784
- * @memberof ItemSearchInputAllowedSearch
6952
+ * @type {InviteLinkOutputDTO}
6953
+ * @memberof InviteLinkOutputDTOAPI
6785
6954
  */
6786
- name?: Array<string>;
6955
+ data: InviteLinkOutputDTO;
6787
6956
  /**
6788
6957
  *
6789
- * @type {Array<string>}
6790
- * @memberof ItemSearchInputAllowedSearch
6958
+ * @type {MetadataOutput}
6959
+ * @memberof InviteLinkOutputDTOAPI
6791
6960
  */
6792
- code?: Array<string>;
6961
+ meta: MetadataOutput;
6793
6962
  }
6794
6963
  /**
6795
6964
  *
6796
6965
  * @export
6797
- * @interface ItemSearchInputDTO
6966
+ * @interface InviteLinkPreviewDTO
6798
6967
  */
6799
- export interface ItemSearchInputDTO {
6968
+ export interface InviteLinkPreviewDTO {
6800
6969
  /**
6801
6970
  *
6802
- * @type {ItemSearchInputAllowedFilters}
6803
- * @memberof ItemSearchInputDTO
6971
+ * @type {InviteLinkPreviewDomainDTO}
6972
+ * @memberof InviteLinkPreviewDTO
6804
6973
  */
6805
- filters?: ItemSearchInputAllowedFilters;
6974
+ domain: InviteLinkPreviewDomainDTO;
6806
6975
  /**
6807
6976
  *
6808
- * @type {ItemSearchInputAllowedSearch}
6809
- * @memberof ItemSearchInputDTO
6977
+ * @type {Array<InviteLinkPreviewRoleDTO>}
6978
+ * @memberof InviteLinkPreviewDTO
6810
6979
  */
6811
- search?: ItemSearchInputAllowedSearch;
6980
+ roles: Array<InviteLinkPreviewRoleDTO>;
6812
6981
  /**
6813
6982
  *
6814
- * @type {Array<string>}
6815
- * @memberof ItemSearchInputDTO
6983
+ * @type {string}
6984
+ * @memberof InviteLinkPreviewDTO
6816
6985
  */
6817
- extend?: Array<ItemSearchInputDTOExtendEnum>;
6986
+ status: InviteLinkPreviewDTOStatusEnum;
6818
6987
  /**
6819
6988
  *
6820
- * @type {any}
6821
- * @memberof ItemSearchInputDTO
6989
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6990
+ * @memberof InviteLinkPreviewDTO
6822
6991
  */
6823
- greaterThan?: any;
6992
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6824
6993
  /**
6825
6994
  *
6826
- * @type {any}
6827
- * @memberof ItemSearchInputDTO
6995
+ * @type {number}
6996
+ * @memberof InviteLinkPreviewDTO
6828
6997
  */
6829
- lessThan?: any;
6998
+ remaining?: number;
6999
+ }
7000
+ export declare const InviteLinkPreviewDTOStatusEnum: {
7001
+ readonly Active: "ACTIVE";
7002
+ readonly Revoked: "REVOKED";
7003
+ readonly Expired: "EXPIRED";
7004
+ readonly Depleted: "DEPLETED";
7005
+ };
7006
+ export type InviteLinkPreviewDTOStatusEnum = (typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
7007
+ /**
7008
+ *
7009
+ * @export
7010
+ * @interface InviteLinkPreviewDTOAPI
7011
+ */
7012
+ export interface InviteLinkPreviewDTOAPI {
6830
7013
  /**
6831
7014
  *
6832
- * @type {number}
6833
- * @memberof ItemSearchInputDTO
7015
+ * @type {InviteLinkPreviewDTO}
7016
+ * @memberof InviteLinkPreviewDTOAPI
6834
7017
  */
6835
- page?: number;
7018
+ data: InviteLinkPreviewDTO;
6836
7019
  /**
6837
7020
  *
6838
- * @type {number}
6839
- * @memberof ItemSearchInputDTO
7021
+ * @type {MetadataOutput}
7022
+ * @memberof InviteLinkPreviewDTOAPI
6840
7023
  */
6841
- limit?: number;
7024
+ meta: MetadataOutput;
7025
+ }
7026
+ /**
7027
+ *
7028
+ * @export
7029
+ * @interface InviteLinkPreviewDomainDTO
7030
+ */
7031
+ export interface InviteLinkPreviewDomainDTO {
7032
+ /**
7033
+ *
7034
+ * @type {string}
7035
+ * @memberof InviteLinkPreviewDomainDTO
7036
+ */
7037
+ id: string;
7038
+ /**
7039
+ *
7040
+ * @type {string}
7041
+ * @memberof InviteLinkPreviewDomainDTO
7042
+ */
7043
+ name: string;
7044
+ }
7045
+ /**
7046
+ *
7047
+ * @export
7048
+ * @interface InviteLinkPreviewRoleDTO
7049
+ */
7050
+ export interface InviteLinkPreviewRoleDTO {
7051
+ /**
7052
+ *
7053
+ * @type {string}
7054
+ * @memberof InviteLinkPreviewRoleDTO
7055
+ */
7056
+ id: string;
7057
+ /**
7058
+ *
7059
+ * @type {string}
7060
+ * @memberof InviteLinkPreviewRoleDTO
7061
+ */
7062
+ name: string;
7063
+ }
7064
+ /**
7065
+ *
7066
+ * @export
7067
+ * @interface InviteLinkRoleDTO
7068
+ */
7069
+ export interface InviteLinkRoleDTO {
7070
+ /**
7071
+ *
7072
+ * @type {string}
7073
+ * @memberof InviteLinkRoleDTO
7074
+ */
7075
+ roleId: string;
7076
+ /**
7077
+ *
7078
+ * @type {string}
7079
+ * @memberof InviteLinkRoleDTO
7080
+ */
7081
+ name: string;
7082
+ }
7083
+ /**
7084
+ *
7085
+ * @export
7086
+ * @interface InviteLinkSearchInputDTO
7087
+ */
7088
+ export interface InviteLinkSearchInputDTO {
7089
+ /**
7090
+ *
7091
+ * @type {string}
7092
+ * @memberof InviteLinkSearchInputDTO
7093
+ */
7094
+ sortBy?: string;
7095
+ /**
7096
+ *
7097
+ * @type {any}
7098
+ * @memberof InviteLinkSearchInputDTO
7099
+ */
7100
+ filters?: any;
7101
+ /**
7102
+ *
7103
+ * @type {any}
7104
+ * @memberof InviteLinkSearchInputDTO
7105
+ */
7106
+ search?: any;
7107
+ /**
7108
+ *
7109
+ * @type {any}
7110
+ * @memberof InviteLinkSearchInputDTO
7111
+ */
7112
+ greaterThan?: any;
7113
+ /**
7114
+ *
7115
+ * @type {any}
7116
+ * @memberof InviteLinkSearchInputDTO
7117
+ */
7118
+ lessThan?: any;
7119
+ /**
7120
+ *
7121
+ * @type {number}
7122
+ * @memberof InviteLinkSearchInputDTO
7123
+ */
7124
+ page?: number;
7125
+ /**
7126
+ *
7127
+ * @type {number}
7128
+ * @memberof InviteLinkSearchInputDTO
7129
+ */
7130
+ limit?: number;
7131
+ /**
7132
+ *
7133
+ * @type {string}
7134
+ * @memberof InviteLinkSearchInputDTO
7135
+ */
7136
+ sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
7137
+ /**
7138
+ *
7139
+ * @type {Array<string>}
7140
+ * @memberof InviteLinkSearchInputDTO
7141
+ */
7142
+ extend?: Array<string>;
7143
+ }
7144
+ export declare const InviteLinkSearchInputDTOSortDirectionEnum: {
7145
+ readonly Asc: "asc";
7146
+ readonly Desc: "desc";
7147
+ };
7148
+ export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
7149
+ /**
7150
+ *
7151
+ * @export
7152
+ * @interface InviteOutputDTO
7153
+ */
7154
+ export interface InviteOutputDTO {
7155
+ /**
7156
+ *
7157
+ * @type {string}
7158
+ * @memberof InviteOutputDTO
7159
+ */
7160
+ botInvite: string;
7161
+ /**
7162
+ *
7163
+ * @type {string}
7164
+ * @memberof InviteOutputDTO
7165
+ */
7166
+ devServer: string;
7167
+ }
7168
+ /**
7169
+ *
7170
+ * @export
7171
+ * @interface IpHistoryOutputDTO
7172
+ */
7173
+ export interface IpHistoryOutputDTO {
7174
+ /**
7175
+ *
7176
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7177
+ * @memberof IpHistoryOutputDTO
7178
+ */
7179
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7180
+ /**
7181
+ *
7182
+ * @type {string}
7183
+ * @memberof IpHistoryOutputDTO
7184
+ */
7185
+ ip: string;
7186
+ /**
7187
+ *
7188
+ * @type {string}
7189
+ * @memberof IpHistoryOutputDTO
7190
+ */
7191
+ country?: string;
7192
+ /**
7193
+ *
7194
+ * @type {string}
7195
+ * @memberof IpHistoryOutputDTO
7196
+ */
7197
+ city?: string;
7198
+ /**
7199
+ *
7200
+ * @type {string}
7201
+ * @memberof IpHistoryOutputDTO
7202
+ */
7203
+ latitude?: string;
7204
+ /**
7205
+ *
7206
+ * @type {string}
7207
+ * @memberof IpHistoryOutputDTO
7208
+ */
7209
+ longitude?: string;
7210
+ }
7211
+ /**
7212
+ *
7213
+ * @export
7214
+ * @interface ItemCreateDTO
7215
+ */
7216
+ export interface ItemCreateDTO {
7217
+ /**
7218
+ *
7219
+ * @type {string}
7220
+ * @memberof ItemCreateDTO
7221
+ */
7222
+ name: string;
7223
+ /**
7224
+ *
7225
+ * @type {string}
7226
+ * @memberof ItemCreateDTO
7227
+ */
7228
+ code: string;
7229
+ /**
7230
+ *
7231
+ * @type {string}
7232
+ * @memberof ItemCreateDTO
7233
+ */
7234
+ description?: string;
7235
+ /**
7236
+ *
7237
+ * @type {string}
7238
+ * @memberof ItemCreateDTO
7239
+ */
7240
+ icon?: string;
7241
+ /**
7242
+ *
7243
+ * @type {string}
7244
+ * @memberof ItemCreateDTO
7245
+ */
7246
+ gameserverId: string;
7247
+ }
7248
+ /**
7249
+ *
7250
+ * @export
7251
+ * @interface ItemOutputArrayDTOAPI
7252
+ */
7253
+ export interface ItemOutputArrayDTOAPI {
7254
+ /**
7255
+ *
7256
+ * @type {Array<ItemsOutputDTO>}
7257
+ * @memberof ItemOutputArrayDTOAPI
7258
+ */
7259
+ data: Array<ItemsOutputDTO>;
7260
+ /**
7261
+ *
7262
+ * @type {MetadataOutput}
7263
+ * @memberof ItemOutputArrayDTOAPI
7264
+ */
7265
+ meta: MetadataOutput;
7266
+ }
7267
+ /**
7268
+ *
7269
+ * @export
7270
+ * @interface ItemOutputDTOAPI
7271
+ */
7272
+ export interface ItemOutputDTOAPI {
7273
+ /**
7274
+ *
7275
+ * @type {ItemsOutputDTO}
7276
+ * @memberof ItemOutputDTOAPI
7277
+ */
7278
+ data: ItemsOutputDTO;
7279
+ /**
7280
+ *
7281
+ * @type {MetadataOutput}
7282
+ * @memberof ItemOutputDTOAPI
7283
+ */
7284
+ meta: MetadataOutput;
7285
+ }
7286
+ /**
7287
+ *
7288
+ * @export
7289
+ * @interface ItemSearchInputAllowedFilters
7290
+ */
7291
+ export interface ItemSearchInputAllowedFilters {
7292
+ /**
7293
+ *
7294
+ * @type {Array<string>}
7295
+ * @memberof ItemSearchInputAllowedFilters
7296
+ */
7297
+ name?: Array<string>;
7298
+ /**
7299
+ *
7300
+ * @type {Array<string>}
7301
+ * @memberof ItemSearchInputAllowedFilters
7302
+ */
7303
+ code?: Array<string>;
7304
+ /**
7305
+ *
7306
+ * @type {Array<string>}
7307
+ * @memberof ItemSearchInputAllowedFilters
7308
+ */
7309
+ gameserverId?: Array<string>;
7310
+ /**
7311
+ *
7312
+ * @type {Array<string>}
7313
+ * @memberof ItemSearchInputAllowedFilters
7314
+ */
7315
+ id?: Array<string>;
7316
+ }
7317
+ /**
7318
+ *
7319
+ * @export
7320
+ * @interface ItemSearchInputAllowedSearch
7321
+ */
7322
+ export interface ItemSearchInputAllowedSearch {
7323
+ /**
7324
+ *
7325
+ * @type {Array<string>}
7326
+ * @memberof ItemSearchInputAllowedSearch
7327
+ */
7328
+ name?: Array<string>;
7329
+ /**
7330
+ *
7331
+ * @type {Array<string>}
7332
+ * @memberof ItemSearchInputAllowedSearch
7333
+ */
7334
+ code?: Array<string>;
7335
+ }
7336
+ /**
7337
+ *
7338
+ * @export
7339
+ * @interface ItemSearchInputDTO
7340
+ */
7341
+ export interface ItemSearchInputDTO {
7342
+ /**
7343
+ *
7344
+ * @type {ItemSearchInputAllowedFilters}
7345
+ * @memberof ItemSearchInputDTO
7346
+ */
7347
+ filters?: ItemSearchInputAllowedFilters;
7348
+ /**
7349
+ *
7350
+ * @type {ItemSearchInputAllowedSearch}
7351
+ * @memberof ItemSearchInputDTO
7352
+ */
7353
+ search?: ItemSearchInputAllowedSearch;
7354
+ /**
7355
+ *
7356
+ * @type {Array<string>}
7357
+ * @memberof ItemSearchInputDTO
7358
+ */
7359
+ extend?: Array<ItemSearchInputDTOExtendEnum>;
7360
+ /**
7361
+ *
7362
+ * @type {any}
7363
+ * @memberof ItemSearchInputDTO
7364
+ */
7365
+ greaterThan?: any;
7366
+ /**
7367
+ *
7368
+ * @type {any}
7369
+ * @memberof ItemSearchInputDTO
7370
+ */
7371
+ lessThan?: any;
7372
+ /**
7373
+ *
7374
+ * @type {number}
7375
+ * @memberof ItemSearchInputDTO
7376
+ */
7377
+ page?: number;
7378
+ /**
7379
+ *
7380
+ * @type {number}
7381
+ * @memberof ItemSearchInputDTO
7382
+ */
7383
+ limit?: number;
6842
7384
  /**
6843
7385
  *
6844
7386
  * @type {string}
@@ -7196,6 +7738,32 @@ export interface LoginOutputDTOAPI {
7196
7738
  */
7197
7739
  meta: MetadataOutput;
7198
7740
  }
7741
+ /**
7742
+ *
7743
+ * @export
7744
+ * @interface LoginQueryParams
7745
+ */
7746
+ export interface LoginQueryParams {
7747
+ /**
7748
+ *
7749
+ * @type {string}
7750
+ * @memberof LoginQueryParams
7751
+ */
7752
+ redirect?: string;
7753
+ }
7754
+ /**
7755
+ *
7756
+ * @export
7757
+ * @interface LogoutQueryParams
7758
+ */
7759
+ export interface LogoutQueryParams {
7760
+ /**
7761
+ *
7762
+ * @type {string}
7763
+ * @memberof LogoutQueryParams
7764
+ */
7765
+ redirect?: string;
7766
+ }
7199
7767
  /**
7200
7768
  *
7201
7769
  * @export
@@ -7319,7 +7887,7 @@ export interface MeOutputDTO {
7319
7887
  * @type {UserOutputWithRolesDTO}
7320
7888
  * @memberof MeOutputDTO
7321
7889
  */
7322
- user: UserOutputWithRolesDTO;
7890
+ user?: UserOutputWithRolesDTO;
7323
7891
  /**
7324
7892
  *
7325
7893
  * @type {Array<DomainOutputDTO>}
@@ -7331,7 +7899,7 @@ export interface MeOutputDTO {
7331
7899
  * @type {string}
7332
7900
  * @memberof MeOutputDTO
7333
7901
  */
7334
- domain: string;
7902
+ domain?: string;
7335
7903
  /**
7336
7904
  *
7337
7905
  * @type {PlayerOutputWithRolesDTO}
@@ -7755,70 +8323,158 @@ export interface ModuleHealthEntryDTOAPI {
7755
8323
  * @type {MetadataOutput}
7756
8324
  * @memberof ModuleHealthEntryDTOAPI
7757
8325
  */
7758
- meta: MetadataOutput;
8326
+ meta: MetadataOutput;
8327
+ }
8328
+ /**
8329
+ *
8330
+ * @export
8331
+ * @interface ModuleHealthScoresDTO
8332
+ */
8333
+ export interface ModuleHealthScoresDTO {
8334
+ /**
8335
+ *
8336
+ * @type {number}
8337
+ * @memberof ModuleHealthScoresDTO
8338
+ */
8339
+ hookSuccess: number;
8340
+ /**
8341
+ *
8342
+ * @type {number}
8343
+ * @memberof ModuleHealthScoresDTO
8344
+ */
8345
+ cronSuccess: number;
8346
+ /**
8347
+ *
8348
+ * @type {number}
8349
+ * @memberof ModuleHealthScoresDTO
8350
+ */
8351
+ cmdSuccess: number;
8352
+ /**
8353
+ *
8354
+ * @type {number}
8355
+ * @memberof ModuleHealthScoresDTO
8356
+ */
8357
+ shopActionSuccess: number;
8358
+ /**
8359
+ *
8360
+ * @type {number}
8361
+ * @memberof ModuleHealthScoresDTO
8362
+ */
8363
+ volumeRank: number;
8364
+ /**
8365
+ *
8366
+ * @type {number}
8367
+ * @memberof ModuleHealthScoresDTO
8368
+ */
8369
+ playerReach: number;
8370
+ }
8371
+ /**
8372
+ *
8373
+ * @export
8374
+ * @interface ModuleInstallParamId
8375
+ */
8376
+ export interface ModuleInstallParamId {
8377
+ /**
8378
+ *
8379
+ * @type {string}
8380
+ * @memberof ModuleInstallParamId
8381
+ */
8382
+ moduleId: string;
8383
+ /**
8384
+ *
8385
+ * @type {string}
8386
+ * @memberof ModuleInstallParamId
8387
+ */
8388
+ gameServerId: string;
7759
8389
  }
7760
8390
  /**
7761
8391
  *
7762
8392
  * @export
7763
- * @interface ModuleHealthScoresDTO
8393
+ * @interface ModuleInstallationKpisDTO
7764
8394
  */
7765
- export interface ModuleHealthScoresDTO {
7766
- /**
7767
- *
7768
- * @type {number}
7769
- * @memberof ModuleHealthScoresDTO
7770
- */
7771
- hookSuccess: number;
8395
+ export interface ModuleInstallationKpisDTO {
7772
8396
  /**
7773
8397
  *
7774
8398
  * @type {number}
7775
- * @memberof ModuleHealthScoresDTO
8399
+ * @memberof ModuleInstallationKpisDTO
7776
8400
  */
7777
- cronSuccess: number;
8401
+ runs: number;
7778
8402
  /**
7779
8403
  *
7780
8404
  * @type {number}
7781
- * @memberof ModuleHealthScoresDTO
8405
+ * @memberof ModuleInstallationKpisDTO
7782
8406
  */
7783
- cmdSuccess: number;
8407
+ failures: number;
7784
8408
  /**
7785
8409
  *
7786
8410
  * @type {number}
7787
- * @memberof ModuleHealthScoresDTO
8411
+ * @memberof ModuleInstallationKpisDTO
7788
8412
  */
7789
- shopActionSuccess: number;
8413
+ successRate: number;
8414
+ }
8415
+ /**
8416
+ *
8417
+ * @export
8418
+ * @interface ModuleInstallationKpisDTOAPI
8419
+ */
8420
+ export interface ModuleInstallationKpisDTOAPI {
7790
8421
  /**
7791
8422
  *
7792
- * @type {number}
7793
- * @memberof ModuleHealthScoresDTO
8423
+ * @type {ModuleInstallationKpisDTO}
8424
+ * @memberof ModuleInstallationKpisDTOAPI
7794
8425
  */
7795
- volumeRank: number;
8426
+ data: ModuleInstallationKpisDTO;
7796
8427
  /**
7797
8428
  *
7798
- * @type {number}
7799
- * @memberof ModuleHealthScoresDTO
8429
+ * @type {MetadataOutput}
8430
+ * @memberof ModuleInstallationKpisDTOAPI
7800
8431
  */
7801
- playerReach: number;
8432
+ meta: MetadataOutput;
7802
8433
  }
7803
8434
  /**
7804
8435
  *
7805
8436
  * @export
7806
- * @interface ModuleInstallParamId
8437
+ * @interface ModuleInstallationKpisQueryDTO
7807
8438
  */
7808
- export interface ModuleInstallParamId {
8439
+ export interface ModuleInstallationKpisQueryDTO {
7809
8440
  /**
7810
8441
  *
7811
8442
  * @type {string}
7812
- * @memberof ModuleInstallParamId
8443
+ * @memberof ModuleInstallationKpisQueryDTO
7813
8444
  */
7814
- moduleId: string;
8445
+ startDate?: string;
7815
8446
  /**
7816
8447
  *
7817
8448
  * @type {string}
7818
- * @memberof ModuleInstallParamId
8449
+ * @memberof ModuleInstallationKpisQueryDTO
8450
+ */
8451
+ endDate?: string;
8452
+ /**
8453
+ *
8454
+ * @type {string}
8455
+ * @memberof ModuleInstallationKpisQueryDTO
7819
8456
  */
7820
8457
  gameServerId: string;
8458
+ /**
8459
+ *
8460
+ * @type {string}
8461
+ * @memberof ModuleInstallationKpisQueryDTO
8462
+ */
8463
+ moduleId: string;
8464
+ /**
8465
+ *
8466
+ * @type {string}
8467
+ * @memberof ModuleInstallationKpisQueryDTO
8468
+ */
8469
+ period?: ModuleInstallationKpisQueryDTOPeriodEnum;
7821
8470
  }
8471
+ export declare const ModuleInstallationKpisQueryDTOPeriodEnum: {
8472
+ readonly _24h: "24h";
8473
+ readonly _7d: "7d";
8474
+ readonly _30d: "30d";
8475
+ readonly _90d: "90d";
8476
+ };
8477
+ export type ModuleInstallationKpisQueryDTOPeriodEnum = (typeof ModuleInstallationKpisQueryDTOPeriodEnum)[keyof typeof ModuleInstallationKpisQueryDTOPeriodEnum];
7822
8478
  /**
7823
8479
  *
7824
8480
  * @export
@@ -11625,6 +12281,19 @@ export declare const RecentOrderDTOStatusEnum: {
11625
12281
  readonly Canceled: "CANCELED";
11626
12282
  };
11627
12283
  export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
12284
+ /**
12285
+ *
12286
+ * @export
12287
+ * @interface RedeemInputDTO
12288
+ */
12289
+ export interface RedeemInputDTO {
12290
+ /**
12291
+ *
12292
+ * @type {string}
12293
+ * @memberof RedeemInputDTO
12294
+ */
12295
+ token: string;
12296
+ }
11628
12297
  /**
11629
12298
  *
11630
12299
  * @export
@@ -12431,7 +13100,7 @@ export interface RoleUpdateInputDTO {
12431
13100
  * @type {string}
12432
13101
  * @memberof RoleUpdateInputDTO
12433
13102
  */
12434
- linkedDiscordRoleId?: string;
13103
+ linkedDiscordRoleId?: string | null;
12435
13104
  }
12436
13105
  /**
12437
13106
  *
@@ -13625,6 +14294,25 @@ export interface ShopDeadStockItemDTO {
13625
14294
  */
13626
14295
  daysSinceLastSale?: number;
13627
14296
  }
14297
+ /**
14298
+ *
14299
+ * @export
14300
+ * @interface ShopImportFailureDTO
14301
+ */
14302
+ export interface ShopImportFailureDTO {
14303
+ /**
14304
+ *
14305
+ * @type {string}
14306
+ * @memberof ShopImportFailureDTO
14307
+ */
14308
+ name: string;
14309
+ /**
14310
+ *
14311
+ * @type {string}
14312
+ * @memberof ShopImportFailureDTO
14313
+ */
14314
+ reason: string;
14315
+ }
13628
14316
  /**
13629
14317
  *
13630
14318
  * @export
@@ -13650,6 +14338,44 @@ export interface ShopImportOptions {
13650
14338
  */
13651
14339
  gameServerId: string;
13652
14340
  }
14341
+ /**
14342
+ *
14343
+ * @export
14344
+ * @interface ShopImportResultDTO
14345
+ */
14346
+ export interface ShopImportResultDTO {
14347
+ /**
14348
+ *
14349
+ * @type {number}
14350
+ * @memberof ShopImportResultDTO
14351
+ */
14352
+ imported: number;
14353
+ /**
14354
+ *
14355
+ * @type {Array<ShopImportFailureDTO>}
14356
+ * @memberof ShopImportResultDTO
14357
+ */
14358
+ failed: Array<ShopImportFailureDTO>;
14359
+ }
14360
+ /**
14361
+ *
14362
+ * @export
14363
+ * @interface ShopImportResultDTOAPI
14364
+ */
14365
+ export interface ShopImportResultDTOAPI {
14366
+ /**
14367
+ *
14368
+ * @type {ShopImportResultDTO}
14369
+ * @memberof ShopImportResultDTOAPI
14370
+ */
14371
+ data: ShopImportResultDTO;
14372
+ /**
14373
+ *
14374
+ * @type {MetadataOutput}
14375
+ * @memberof ShopImportResultDTOAPI
14376
+ */
14377
+ meta: MetadataOutput;
14378
+ }
13653
14379
  /**
13654
14380
  *
13655
14381
  * @export
@@ -14661,116 +15387,285 @@ export interface ShopTopBuyerDTO {
14661
15387
  export interface ShopTopBuyerDTOAPI {
14662
15388
  /**
14663
15389
  *
14664
- * @type {Array<ShopTopBuyerDTO>}
14665
- * @memberof ShopTopBuyerDTOAPI
15390
+ * @type {Array<ShopTopBuyerDTO>}
15391
+ * @memberof ShopTopBuyerDTOAPI
15392
+ */
15393
+ data: Array<ShopTopBuyerDTO>;
15394
+ /**
15395
+ *
15396
+ * @type {MetadataOutput}
15397
+ * @memberof ShopTopBuyerDTOAPI
15398
+ */
15399
+ meta: MetadataOutput;
15400
+ }
15401
+ /**
15402
+ *
15403
+ * @export
15404
+ * @interface ShopTopListingDTO
15405
+ */
15406
+ export interface ShopTopListingDTO {
15407
+ /**
15408
+ *
15409
+ * @type {string}
15410
+ * @memberof ShopTopListingDTO
15411
+ */
15412
+ name: string;
15413
+ /**
15414
+ *
15415
+ * @type {number}
15416
+ * @memberof ShopTopListingDTO
15417
+ */
15418
+ orderCount: number;
15419
+ /**
15420
+ *
15421
+ * @type {number}
15422
+ * @memberof ShopTopListingDTO
15423
+ */
15424
+ totalRevenue: number;
15425
+ /**
15426
+ *
15427
+ * @type {number}
15428
+ * @memberof ShopTopListingDTO
15429
+ */
15430
+ quantity: number;
15431
+ }
15432
+ /**
15433
+ *
15434
+ * @export
15435
+ * @interface ShopTopListingDTOAPI
15436
+ */
15437
+ export interface ShopTopListingDTOAPI {
15438
+ /**
15439
+ *
15440
+ * @type {Array<ShopTopListingDTO>}
15441
+ * @memberof ShopTopListingDTOAPI
15442
+ */
15443
+ data: Array<ShopTopListingDTO>;
15444
+ /**
15445
+ *
15446
+ * @type {MetadataOutput}
15447
+ * @memberof ShopTopListingDTOAPI
15448
+ */
15449
+ meta: MetadataOutput;
15450
+ }
15451
+ /**
15452
+ *
15453
+ * @export
15454
+ * @interface SmallModuleOutputArrayDTOAPI
15455
+ */
15456
+ export interface SmallModuleOutputArrayDTOAPI {
15457
+ /**
15458
+ *
15459
+ * @type {Array<SmallModuleVersionOutputDTO>}
15460
+ * @memberof SmallModuleOutputArrayDTOAPI
15461
+ */
15462
+ data: Array<SmallModuleVersionOutputDTO>;
15463
+ /**
15464
+ *
15465
+ * @type {MetadataOutput}
15466
+ * @memberof SmallModuleOutputArrayDTOAPI
15467
+ */
15468
+ meta: MetadataOutput;
15469
+ }
15470
+ /**
15471
+ *
15472
+ * @export
15473
+ * @interface SmallModuleVersionOutputDTO
15474
+ */
15475
+ export interface SmallModuleVersionOutputDTO {
15476
+ /**
15477
+ *
15478
+ * @type {string}
15479
+ * @memberof SmallModuleVersionOutputDTO
15480
+ */
15481
+ id: string;
15482
+ /**
15483
+ *
15484
+ * @type {string}
15485
+ * @memberof SmallModuleVersionOutputDTO
15486
+ */
15487
+ tag: string;
15488
+ /**
15489
+ *
15490
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15491
+ * @memberof SmallModuleVersionOutputDTO
15492
+ */
15493
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15494
+ /**
15495
+ *
15496
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15497
+ * @memberof SmallModuleVersionOutputDTO
15498
+ */
15499
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15500
+ }
15501
+ /**
15502
+ *
15503
+ * @export
15504
+ * @interface StorefrontConfigCreateDTO
15505
+ */
15506
+ export interface StorefrontConfigCreateDTO {
15507
+ /**
15508
+ *
15509
+ * @type {string}
15510
+ * @memberof StorefrontConfigCreateDTO
15511
+ */
15512
+ gameServerId: string;
15513
+ /**
15514
+ *
15515
+ * @type {string}
15516
+ * @memberof StorefrontConfigCreateDTO
15517
+ */
15518
+ templateId: string;
15519
+ /**
15520
+ *
15521
+ * @type {object}
15522
+ * @memberof StorefrontConfigCreateDTO
15523
+ */
15524
+ values?: object;
15525
+ }
15526
+ /**
15527
+ *
15528
+ * @export
15529
+ * @interface StorefrontConfigOutputDTO
15530
+ */
15531
+ export interface StorefrontConfigOutputDTO {
15532
+ /**
15533
+ *
15534
+ * @type {string}
15535
+ * @memberof StorefrontConfigOutputDTO
15536
+ */
15537
+ gameServerId: string;
15538
+ /**
15539
+ *
15540
+ * @type {string}
15541
+ * @memberof StorefrontConfigOutputDTO
15542
+ */
15543
+ templateId: string;
15544
+ /**
15545
+ *
15546
+ * @type {object}
15547
+ * @memberof StorefrontConfigOutputDTO
15548
+ */
15549
+ values: object;
15550
+ /**
15551
+ *
15552
+ * @type {string}
15553
+ * @memberof StorefrontConfigOutputDTO
14666
15554
  */
14667
- data: Array<ShopTopBuyerDTO>;
15555
+ id: string;
14668
15556
  /**
14669
15557
  *
14670
- * @type {MetadataOutput}
14671
- * @memberof ShopTopBuyerDTOAPI
15558
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15559
+ * @memberof StorefrontConfigOutputDTO
14672
15560
  */
14673
- meta: MetadataOutput;
15561
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15562
+ /**
15563
+ *
15564
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15565
+ * @memberof StorefrontConfigOutputDTO
15566
+ */
15567
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14674
15568
  }
14675
15569
  /**
14676
15570
  *
14677
15571
  * @export
14678
- * @interface ShopTopListingDTO
15572
+ * @interface StorefrontConfigUpdateDTO
14679
15573
  */
14680
- export interface ShopTopListingDTO {
15574
+ export interface StorefrontConfigUpdateDTO {
14681
15575
  /**
14682
15576
  *
14683
15577
  * @type {string}
14684
- * @memberof ShopTopListingDTO
14685
- */
14686
- name: string;
14687
- /**
14688
- *
14689
- * @type {number}
14690
- * @memberof ShopTopListingDTO
15578
+ * @memberof StorefrontConfigUpdateDTO
14691
15579
  */
14692
- orderCount: number;
14693
- /**
14694
- *
14695
- * @type {number}
14696
- * @memberof ShopTopListingDTO
14697
- */
14698
- totalRevenue: number;
15580
+ templateId?: string;
14699
15581
  /**
14700
15582
  *
14701
- * @type {number}
14702
- * @memberof ShopTopListingDTO
15583
+ * @type {object}
15584
+ * @memberof StorefrontConfigUpdateDTO
14703
15585
  */
14704
- quantity: number;
15586
+ values?: object;
14705
15587
  }
14706
15588
  /**
14707
15589
  *
14708
15590
  * @export
14709
- * @interface ShopTopListingDTOAPI
15591
+ * @interface StorefrontConfigUpsertBody
14710
15592
  */
14711
- export interface ShopTopListingDTOAPI {
15593
+ export interface StorefrontConfigUpsertBody {
14712
15594
  /**
14713
15595
  *
14714
- * @type {Array<ShopTopListingDTO>}
14715
- * @memberof ShopTopListingDTOAPI
15596
+ * @type {string}
15597
+ * @memberof StorefrontConfigUpsertBody
14716
15598
  */
14717
- data: Array<ShopTopListingDTO>;
15599
+ templateId: string;
14718
15600
  /**
14719
15601
  *
14720
- * @type {MetadataOutput}
14721
- * @memberof ShopTopListingDTOAPI
15602
+ * @type {object}
15603
+ * @memberof StorefrontConfigUpsertBody
14722
15604
  */
14723
- meta: MetadataOutput;
15605
+ values: object;
14724
15606
  }
14725
15607
  /**
14726
15608
  *
14727
15609
  * @export
14728
- * @interface SmallModuleOutputArrayDTOAPI
15610
+ * @interface StorefrontConfigUpsertDTO
14729
15611
  */
14730
- export interface SmallModuleOutputArrayDTOAPI {
15612
+ export interface StorefrontConfigUpsertDTO {
14731
15613
  /**
14732
15614
  *
14733
- * @type {Array<SmallModuleVersionOutputDTO>}
14734
- * @memberof SmallModuleOutputArrayDTOAPI
15615
+ * @type {string}
15616
+ * @memberof StorefrontConfigUpsertDTO
14735
15617
  */
14736
- data: Array<SmallModuleVersionOutputDTO>;
15618
+ templateId: string;
14737
15619
  /**
14738
15620
  *
14739
- * @type {MetadataOutput}
14740
- * @memberof SmallModuleOutputArrayDTOAPI
15621
+ * @type {object}
15622
+ * @memberof StorefrontConfigUpsertDTO
14741
15623
  */
14742
- meta: MetadataOutput;
15624
+ values: object;
14743
15625
  }
14744
15626
  /**
14745
15627
  *
14746
15628
  * @export
14747
- * @interface SmallModuleVersionOutputDTO
15629
+ * @interface StorefrontTemplateDTO
14748
15630
  */
14749
- export interface SmallModuleVersionOutputDTO {
15631
+ export interface StorefrontTemplateDTO {
14750
15632
  /**
14751
15633
  *
14752
15634
  * @type {string}
14753
- * @memberof SmallModuleVersionOutputDTO
15635
+ * @memberof StorefrontTemplateDTO
14754
15636
  */
14755
15637
  id: string;
14756
15638
  /**
14757
15639
  *
14758
15640
  * @type {string}
14759
- * @memberof SmallModuleVersionOutputDTO
15641
+ * @memberof StorefrontTemplateDTO
14760
15642
  */
14761
- tag: string;
15643
+ name: string;
14762
15644
  /**
14763
15645
  *
14764
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14765
- * @memberof SmallModuleVersionOutputDTO
15646
+ * @type {object}
15647
+ * @memberof StorefrontTemplateDTO
14766
15648
  */
14767
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15649
+ schema: object;
15650
+ }
15651
+ /**
15652
+ *
15653
+ * @export
15654
+ * @interface StorefrontTemplateOutputArrayDTOAPI
15655
+ */
15656
+ export interface StorefrontTemplateOutputArrayDTOAPI {
14768
15657
  /**
14769
15658
  *
14770
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14771
- * @memberof SmallModuleVersionOutputDTO
15659
+ * @type {Array<StorefrontTemplateDTO>}
15660
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
14772
15661
  */
14773
- updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15662
+ data: Array<StorefrontTemplateDTO>;
15663
+ /**
15664
+ *
15665
+ * @type {MetadataOutput}
15666
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15667
+ */
15668
+ meta: MetadataOutput;
14774
15669
  }
14775
15670
  /**
14776
15671
  *
@@ -15093,6 +15988,19 @@ export interface TakaroEventHookExecuted {
15093
15988
  */
15094
15989
  timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15095
15990
  }
15991
+ /**
15992
+ *
15993
+ * @export
15994
+ * @interface TakaroEventInviteLinkCreated
15995
+ */
15996
+ export interface TakaroEventInviteLinkCreated {
15997
+ /**
15998
+ *
15999
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16000
+ * @memberof TakaroEventInviteLinkCreated
16001
+ */
16002
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16003
+ }
15096
16004
  /**
15097
16005
  *
15098
16006
  * @export
@@ -16371,6 +17279,38 @@ export interface UserAssignmentOutputDTO {
16371
17279
  */
16372
17280
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16373
17281
  }
17282
+ /**
17283
+ *
17284
+ * @export
17285
+ * @interface UserCountOutputDTO
17286
+ */
17287
+ export interface UserCountOutputDTO {
17288
+ /**
17289
+ *
17290
+ * @type {number}
17291
+ * @memberof UserCountOutputDTO
17292
+ */
17293
+ count: number;
17294
+ }
17295
+ /**
17296
+ *
17297
+ * @export
17298
+ * @interface UserCountOutputDTOAPI
17299
+ */
17300
+ export interface UserCountOutputDTOAPI {
17301
+ /**
17302
+ *
17303
+ * @type {UserCountOutputDTO}
17304
+ * @memberof UserCountOutputDTOAPI
17305
+ */
17306
+ data: UserCountOutputDTO;
17307
+ /**
17308
+ *
17309
+ * @type {MetadataOutput}
17310
+ * @memberof UserCountOutputDTOAPI
17311
+ */
17312
+ meta: MetadataOutput;
17313
+ }
16374
17314
  /**
16375
17315
  *
16376
17316
  * @export
@@ -16518,6 +17458,18 @@ export interface UserOutputDTO {
16518
17458
  * @memberof UserOutputDTO
16519
17459
  */
16520
17460
  isDashboardUser: boolean;
17461
+ /**
17462
+ *
17463
+ * @type {boolean}
17464
+ * @memberof UserOutputDTO
17465
+ */
17466
+ isSupportAccount: boolean;
17467
+ /**
17468
+ *
17469
+ * @type {string}
17470
+ * @memberof UserOutputDTO
17471
+ */
17472
+ inviteLinkId?: string;
16521
17473
  /**
16522
17474
  *
16523
17475
  * @type {string}
@@ -16634,6 +17586,37 @@ export interface UserOutputWithRolesDTO {
16634
17586
  * @memberof UserOutputWithRolesDTO
16635
17587
  */
16636
17588
  isDashboardUser: boolean;
17589
+ /**
17590
+ *
17591
+ * @type {boolean}
17592
+ * @memberof UserOutputWithRolesDTO
17593
+ */
17594
+ isSupportAccount: boolean;
17595
+ /**
17596
+ *
17597
+ * @type {string}
17598
+ * @memberof UserOutputWithRolesDTO
17599
+ */
17600
+ inviteLinkId?: string;
17601
+ }
17602
+ /**
17603
+ *
17604
+ * @export
17605
+ * @interface UserOutputWithRolesDTOAPI
17606
+ */
17607
+ export interface UserOutputWithRolesDTOAPI {
17608
+ /**
17609
+ *
17610
+ * @type {UserOutputWithRolesDTO}
17611
+ * @memberof UserOutputWithRolesDTOAPI
17612
+ */
17613
+ data: UserOutputWithRolesDTO;
17614
+ /**
17615
+ *
17616
+ * @type {MetadataOutput}
17617
+ * @memberof UserOutputWithRolesDTOAPI
17618
+ */
17619
+ meta: MetadataOutput;
16637
17620
  }
16638
17621
  /**
16639
17622
  *
@@ -17303,7 +18286,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17303
18286
  */
17304
18287
  analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17305
18288
  /**
17306
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18289
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17307
18290
  * @summary Get module health scores
17308
18291
  * @param {string} [startDate]
17309
18292
  * @param {string} [endDate]
@@ -17313,6 +18296,18 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17313
18296
  * @throws {RequiredError}
17314
18297
  */
17315
18298
  analyticsControllerGetModuleHealth: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
18299
+ /**
18300
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
18301
+ * @summary Get per-installation module KPIs
18302
+ * @param {string} gameServerId
18303
+ * @param {string} moduleId
18304
+ * @param {string} [startDate]
18305
+ * @param {string} [endDate]
18306
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18307
+ * @param {*} [options] Override http request option.
18308
+ * @throws {RequiredError}
18309
+ */
18310
+ analyticsControllerGetModuleInstallationKpis: (gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17316
18311
  /**
17317
18312
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
17318
18313
  * @summary Get module item failure aggregate
@@ -17524,7 +18519,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17524
18519
  analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17525
18520
  /**
17526
18521
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17527
- * @summary Get top modules by event volume
18522
+ * @summary Get top modules by execution volume
17528
18523
  * @param {string} [startDate]
17529
18524
  * @param {string} [endDate]
17530
18525
  * @param {string} [gameServerId]
@@ -17680,7 +18675,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17680
18675
  */
17681
18676
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
17682
18677
  /**
17683
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18678
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17684
18679
  * @summary Get module health scores
17685
18680
  * @param {string} [startDate]
17686
18681
  * @param {string} [endDate]
@@ -17690,6 +18685,18 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17690
18685
  * @throws {RequiredError}
17691
18686
  */
17692
18687
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleHealthEntryDTOAPI>>;
18688
+ /**
18689
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
18690
+ * @summary Get per-installation module KPIs
18691
+ * @param {string} gameServerId
18692
+ * @param {string} moduleId
18693
+ * @param {string} [startDate]
18694
+ * @param {string} [endDate]
18695
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18696
+ * @param {*} [options] Override http request option.
18697
+ * @throws {RequiredError}
18698
+ */
18699
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>>;
17693
18700
  /**
17694
18701
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
17695
18702
  * @summary Get module item failure aggregate
@@ -17901,7 +18908,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17901
18908
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
17902
18909
  /**
17903
18910
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17904
- * @summary Get top modules by event volume
18911
+ * @summary Get top modules by execution volume
17905
18912
  * @param {string} [startDate]
17906
18913
  * @param {string} [endDate]
17907
18914
  * @param {string} [gameServerId]
@@ -18057,7 +19064,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18057
19064
  */
18058
19065
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
18059
19066
  /**
18060
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19067
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18061
19068
  * @summary Get module health scores
18062
19069
  * @param {string} [startDate]
18063
19070
  * @param {string} [endDate]
@@ -18067,6 +19074,18 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18067
19074
  * @throws {RequiredError}
18068
19075
  */
18069
19076
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleHealthEntryDTOAPI>;
19077
+ /**
19078
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
19079
+ * @summary Get per-installation module KPIs
19080
+ * @param {string} gameServerId
19081
+ * @param {string} moduleId
19082
+ * @param {string} [startDate]
19083
+ * @param {string} [endDate]
19084
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
19085
+ * @param {*} [options] Override http request option.
19086
+ * @throws {RequiredError}
19087
+ */
19088
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationKpisDTOAPI>;
18070
19089
  /**
18071
19090
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
18072
19091
  * @summary Get module item failure aggregate
@@ -18278,7 +19297,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18278
19297
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
18279
19298
  /**
18280
19299
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18281
- * @summary Get top modules by event volume
19300
+ * @summary Get top modules by execution volume
18282
19301
  * @param {string} [startDate]
18283
19302
  * @param {string} [endDate]
18284
19303
  * @param {string} [gameServerId]
@@ -18448,7 +19467,7 @@ export declare class AnalyticsApi extends BaseAPI {
18448
19467
  */
18449
19468
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
18450
19469
  /**
18451
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19470
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18452
19471
  * @summary Get module health scores
18453
19472
  * @param {string} [startDate]
18454
19473
  * @param {string} [endDate]
@@ -18459,6 +19478,19 @@ export declare class AnalyticsApi extends BaseAPI {
18459
19478
  * @memberof AnalyticsApi
18460
19479
  */
18461
19480
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleHealthEntryDTOAPI, any>>;
19481
+ /**
19482
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
19483
+ * @summary Get per-installation module KPIs
19484
+ * @param {string} gameServerId
19485
+ * @param {string} moduleId
19486
+ * @param {string} [startDate]
19487
+ * @param {string} [endDate]
19488
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
19489
+ * @param {*} [options] Override http request option.
19490
+ * @throws {RequiredError}
19491
+ * @memberof AnalyticsApi
19492
+ */
19493
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationKpisDTOAPI, any>>;
18462
19494
  /**
18463
19495
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
18464
19496
  * @summary Get module item failure aggregate
@@ -18689,7 +19721,7 @@ export declare class AnalyticsApi extends BaseAPI {
18689
19721
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
18690
19722
  /**
18691
19723
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18692
- * @summary Get top modules by event volume
19724
+ * @summary Get top modules by execution volume
18693
19725
  * @param {string} [startDate]
18694
19726
  * @param {string} [endDate]
18695
19727
  * @param {string} [gameServerId]
@@ -18832,6 +19864,16 @@ export declare const AnalyticsControllerGetModuleHealthPeriodEnum: {
18832
19864
  readonly _90d: "90d";
18833
19865
  };
18834
19866
  export type AnalyticsControllerGetModuleHealthPeriodEnum = (typeof AnalyticsControllerGetModuleHealthPeriodEnum)[keyof typeof AnalyticsControllerGetModuleHealthPeriodEnum];
19867
+ /**
19868
+ * @export
19869
+ */
19870
+ export declare const AnalyticsControllerGetModuleInstallationKpisPeriodEnum: {
19871
+ readonly _24h: "24h";
19872
+ readonly _7d: "7d";
19873
+ readonly _30d: "30d";
19874
+ readonly _90d: "90d";
19875
+ };
19876
+ export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum = (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
18835
19877
  /**
18836
19878
  * @export
18837
19879
  */
@@ -19031,17 +20073,167 @@ export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
19031
20073
  readonly _30d: "30d";
19032
20074
  readonly _90d: "90d";
19033
20075
  };
19034
- export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
20076
+ export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
20077
+ /**
20078
+ * @export
20079
+ */
20080
+ export declare const AnalyticsControllerGetTopServersPeriodEnum: {
20081
+ readonly _24h: "24h";
20082
+ readonly _7d: "7d";
20083
+ readonly _30d: "30d";
20084
+ readonly _90d: "90d";
20085
+ };
20086
+ export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
20087
+ /**
20088
+ * AuthApi - axios parameter creator
20089
+ * @export
20090
+ */
20091
+ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
20092
+ /**
20093
+ * <br> OperationId: `AuthControllerAccount`
20094
+ * @summary Account
20095
+ * @param {*} [options] Override http request option.
20096
+ * @throws {RequiredError}
20097
+ */
20098
+ authControllerAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20099
+ /**
20100
+ * <br> OperationId: `AuthControllerCallback`
20101
+ * @summary Callback
20102
+ * @param {*} [options] Override http request option.
20103
+ * @throws {RequiredError}
20104
+ */
20105
+ authControllerCallback: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20106
+ /**
20107
+ * <br> OperationId: `AuthControllerLogin`
20108
+ * @summary Login
20109
+ * @param {string} [redirect]
20110
+ * @param {*} [options] Override http request option.
20111
+ * @throws {RequiredError}
20112
+ */
20113
+ authControllerLogin: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20114
+ /**
20115
+ * <br> OperationId: `AuthControllerLogout`
20116
+ * @summary Logout
20117
+ * @param {string} [redirect]
20118
+ * @param {*} [options] Override http request option.
20119
+ * @throws {RequiredError}
20120
+ */
20121
+ authControllerLogout: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20122
+ };
20123
+ /**
20124
+ * AuthApi - functional programming interface
20125
+ * @export
20126
+ */
20127
+ export declare const AuthApiFp: (configuration?: Configuration) => {
20128
+ /**
20129
+ * <br> OperationId: `AuthControllerAccount`
20130
+ * @summary Account
20131
+ * @param {*} [options] Override http request option.
20132
+ * @throws {RequiredError}
20133
+ */
20134
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20135
+ /**
20136
+ * <br> OperationId: `AuthControllerCallback`
20137
+ * @summary Callback
20138
+ * @param {*} [options] Override http request option.
20139
+ * @throws {RequiredError}
20140
+ */
20141
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20142
+ /**
20143
+ * <br> OperationId: `AuthControllerLogin`
20144
+ * @summary Login
20145
+ * @param {string} [redirect]
20146
+ * @param {*} [options] Override http request option.
20147
+ * @throws {RequiredError}
20148
+ */
20149
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20150
+ /**
20151
+ * <br> OperationId: `AuthControllerLogout`
20152
+ * @summary Logout
20153
+ * @param {string} [redirect]
20154
+ * @param {*} [options] Override http request option.
20155
+ * @throws {RequiredError}
20156
+ */
20157
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20158
+ };
20159
+ /**
20160
+ * AuthApi - factory interface
20161
+ * @export
20162
+ */
20163
+ export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20164
+ /**
20165
+ * <br> OperationId: `AuthControllerAccount`
20166
+ * @summary Account
20167
+ * @param {*} [options] Override http request option.
20168
+ * @throws {RequiredError}
20169
+ */
20170
+ authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void>;
20171
+ /**
20172
+ * <br> OperationId: `AuthControllerCallback`
20173
+ * @summary Callback
20174
+ * @param {*} [options] Override http request option.
20175
+ * @throws {RequiredError}
20176
+ */
20177
+ authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
20178
+ /**
20179
+ * <br> OperationId: `AuthControllerLogin`
20180
+ * @summary Login
20181
+ * @param {string} [redirect]
20182
+ * @param {*} [options] Override http request option.
20183
+ * @throws {RequiredError}
20184
+ */
20185
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20186
+ /**
20187
+ * <br> OperationId: `AuthControllerLogout`
20188
+ * @summary Logout
20189
+ * @param {string} [redirect]
20190
+ * @param {*} [options] Override http request option.
20191
+ * @throws {RequiredError}
20192
+ */
20193
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20194
+ };
19035
20195
  /**
20196
+ * AuthApi - object-oriented interface
19036
20197
  * @export
20198
+ * @class AuthApi
20199
+ * @extends {BaseAPI}
19037
20200
  */
19038
- export declare const AnalyticsControllerGetTopServersPeriodEnum: {
19039
- readonly _24h: "24h";
19040
- readonly _7d: "7d";
19041
- readonly _30d: "30d";
19042
- readonly _90d: "90d";
19043
- };
19044
- export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
20201
+ export declare class AuthApi extends BaseAPI {
20202
+ /**
20203
+ * <br> OperationId: `AuthControllerAccount`
20204
+ * @summary Account
20205
+ * @param {*} [options] Override http request option.
20206
+ * @throws {RequiredError}
20207
+ * @memberof AuthApi
20208
+ */
20209
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20210
+ /**
20211
+ * <br> OperationId: `AuthControllerCallback`
20212
+ * @summary Callback
20213
+ * @param {*} [options] Override http request option.
20214
+ * @throws {RequiredError}
20215
+ * @memberof AuthApi
20216
+ */
20217
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20218
+ /**
20219
+ * <br> OperationId: `AuthControllerLogin`
20220
+ * @summary Login
20221
+ * @param {string} [redirect]
20222
+ * @param {*} [options] Override http request option.
20223
+ * @throws {RequiredError}
20224
+ * @memberof AuthApi
20225
+ */
20226
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20227
+ /**
20228
+ * <br> OperationId: `AuthControllerLogout`
20229
+ * @summary Logout
20230
+ * @param {string} [redirect]
20231
+ * @param {*} [options] Override http request option.
20232
+ * @throws {RequiredError}
20233
+ * @memberof AuthApi
20234
+ */
20235
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20236
+ }
19045
20237
  /**
19046
20238
  * CommandApi - axios parameter creator
19047
20239
  * @export
@@ -20006,6 +21198,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
20006
21198
  * @throws {RequiredError}
20007
21199
  */
20008
21200
  domainControllerCreate: (domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21201
+ /**
21202
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21203
+ * @summary Create admin invite link for a domain
21204
+ * @param {string} id
21205
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21206
+ * @param {*} [options] Override http request option.
21207
+ * @throws {RequiredError}
21208
+ */
21209
+ domainControllerCreateInviteLink: (id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20009
21210
  /**
20010
21211
  * <br> OperationId: `DomainControllerGetOne`
20011
21212
  * @summary Get one
@@ -20070,6 +21271,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
20070
21271
  * @throws {RequiredError}
20071
21272
  */
20072
21273
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainCreateOutputDTOAPI>>;
21274
+ /**
21275
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21276
+ * @summary Create admin invite link for a domain
21277
+ * @param {string} id
21278
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21279
+ * @param {*} [options] Override http request option.
21280
+ * @throws {RequiredError}
21281
+ */
21282
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
20073
21283
  /**
20074
21284
  * <br> OperationId: `DomainControllerGetOne`
20075
21285
  * @summary Get one
@@ -20134,6 +21344,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
20134
21344
  * @throws {RequiredError}
20135
21345
  */
20136
21346
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainCreateOutputDTOAPI>;
21347
+ /**
21348
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21349
+ * @summary Create admin invite link for a domain
21350
+ * @param {string} id
21351
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21352
+ * @param {*} [options] Override http request option.
21353
+ * @throws {RequiredError}
21354
+ */
21355
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
20137
21356
  /**
20138
21357
  * <br> OperationId: `DomainControllerGetOne`
20139
21358
  * @summary Get one
@@ -20201,6 +21420,16 @@ export declare class DomainApi extends BaseAPI {
20201
21420
  * @memberof DomainApi
20202
21421
  */
20203
21422
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainCreateOutputDTOAPI, any>>;
21423
+ /**
21424
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21425
+ * @summary Create admin invite link for a domain
21426
+ * @param {string} id
21427
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21428
+ * @param {*} [options] Override http request option.
21429
+ * @throws {RequiredError}
21430
+ * @memberof DomainApi
21431
+ */
21432
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
20204
21433
  /**
20205
21434
  * <br> OperationId: `DomainControllerGetOne`
20206
21435
  * @summary Get one
@@ -22119,6 +23348,197 @@ export declare class HookApi extends BaseAPI {
22119
23348
  */
22120
23349
  hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
22121
23350
  }
23351
+ /**
23352
+ * InviteLinkApi - axios parameter creator
23353
+ * @export
23354
+ */
23355
+ export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
23356
+ /**
23357
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23358
+ * @summary Create invite link
23359
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23360
+ * @param {*} [options] Override http request option.
23361
+ * @throws {RequiredError}
23362
+ */
23363
+ inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23364
+ /**
23365
+ * <br> OperationId: `InviteLinkControllerPreview`
23366
+ * @summary Preview
23367
+ * @param {string} token
23368
+ * @param {*} [options] Override http request option.
23369
+ * @throws {RequiredError}
23370
+ */
23371
+ inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23372
+ /**
23373
+ * <br> OperationId: `InviteLinkControllerRedeem`
23374
+ * @summary Redeem
23375
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23376
+ * @param {*} [options] Override http request option.
23377
+ * @throws {RequiredError}
23378
+ */
23379
+ inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23380
+ /**
23381
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23382
+ * @summary Revoke
23383
+ * @param {string} id
23384
+ * @param {*} [options] Override http request option.
23385
+ * @throws {RequiredError}
23386
+ */
23387
+ inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23388
+ /**
23389
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23390
+ * @summary Search
23391
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23392
+ * @param {*} [options] Override http request option.
23393
+ * @throws {RequiredError}
23394
+ */
23395
+ inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23396
+ };
23397
+ /**
23398
+ * InviteLinkApi - functional programming interface
23399
+ * @export
23400
+ */
23401
+ export declare const InviteLinkApiFp: (configuration?: Configuration) => {
23402
+ /**
23403
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23404
+ * @summary Create invite link
23405
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23406
+ * @param {*} [options] Override http request option.
23407
+ * @throws {RequiredError}
23408
+ */
23409
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
23410
+ /**
23411
+ * <br> OperationId: `InviteLinkControllerPreview`
23412
+ * @summary Preview
23413
+ * @param {string} token
23414
+ * @param {*} [options] Override http request option.
23415
+ * @throws {RequiredError}
23416
+ */
23417
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
23418
+ /**
23419
+ * <br> OperationId: `InviteLinkControllerRedeem`
23420
+ * @summary Redeem
23421
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23422
+ * @param {*} [options] Override http request option.
23423
+ * @throws {RequiredError}
23424
+ */
23425
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
23426
+ /**
23427
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23428
+ * @summary Revoke
23429
+ * @param {string} id
23430
+ * @param {*} [options] Override http request option.
23431
+ * @throws {RequiredError}
23432
+ */
23433
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23434
+ /**
23435
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23436
+ * @summary Search
23437
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23438
+ * @param {*} [options] Override http request option.
23439
+ * @throws {RequiredError}
23440
+ */
23441
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
23442
+ };
23443
+ /**
23444
+ * InviteLinkApi - factory interface
23445
+ * @export
23446
+ */
23447
+ export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23448
+ /**
23449
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23450
+ * @summary Create invite link
23451
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23452
+ * @param {*} [options] Override http request option.
23453
+ * @throws {RequiredError}
23454
+ */
23455
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
23456
+ /**
23457
+ * <br> OperationId: `InviteLinkControllerPreview`
23458
+ * @summary Preview
23459
+ * @param {string} token
23460
+ * @param {*} [options] Override http request option.
23461
+ * @throws {RequiredError}
23462
+ */
23463
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
23464
+ /**
23465
+ * <br> OperationId: `InviteLinkControllerRedeem`
23466
+ * @summary Redeem
23467
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23468
+ * @param {*} [options] Override http request option.
23469
+ * @throws {RequiredError}
23470
+ */
23471
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
23472
+ /**
23473
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23474
+ * @summary Revoke
23475
+ * @param {string} id
23476
+ * @param {*} [options] Override http request option.
23477
+ * @throws {RequiredError}
23478
+ */
23479
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23480
+ /**
23481
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23482
+ * @summary Search
23483
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23484
+ * @param {*} [options] Override http request option.
23485
+ * @throws {RequiredError}
23486
+ */
23487
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
23488
+ };
23489
+ /**
23490
+ * InviteLinkApi - object-oriented interface
23491
+ * @export
23492
+ * @class InviteLinkApi
23493
+ * @extends {BaseAPI}
23494
+ */
23495
+ export declare class InviteLinkApi extends BaseAPI {
23496
+ /**
23497
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23498
+ * @summary Create invite link
23499
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23500
+ * @param {*} [options] Override http request option.
23501
+ * @throws {RequiredError}
23502
+ * @memberof InviteLinkApi
23503
+ */
23504
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
23505
+ /**
23506
+ * <br> OperationId: `InviteLinkControllerPreview`
23507
+ * @summary Preview
23508
+ * @param {string} token
23509
+ * @param {*} [options] Override http request option.
23510
+ * @throws {RequiredError}
23511
+ * @memberof InviteLinkApi
23512
+ */
23513
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
23514
+ /**
23515
+ * <br> OperationId: `InviteLinkControllerRedeem`
23516
+ * @summary Redeem
23517
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23518
+ * @param {*} [options] Override http request option.
23519
+ * @throws {RequiredError}
23520
+ * @memberof InviteLinkApi
23521
+ */
23522
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
23523
+ /**
23524
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23525
+ * @summary Revoke
23526
+ * @param {string} id
23527
+ * @param {*} [options] Override http request option.
23528
+ * @throws {RequiredError}
23529
+ * @memberof InviteLinkApi
23530
+ */
23531
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23532
+ /**
23533
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23534
+ * @summary Search
23535
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23536
+ * @param {*} [options] Override http request option.
23537
+ * @throws {RequiredError}
23538
+ * @memberof InviteLinkApi
23539
+ */
23540
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
23541
+ }
22122
23542
  /**
22123
23543
  * ItemApi - axios parameter creator
22124
23544
  * @export
@@ -25031,7 +26451,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25031
26451
  * @param {*} [options] Override http request option.
25032
26452
  * @throws {RequiredError}
25033
26453
  */
25034
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26454
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
25035
26455
  /**
25036
26456
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25037
26457
  * @summary Search
@@ -25085,7 +26505,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25085
26505
  * @param {*} [options] Override http request option.
25086
26506
  * @throws {RequiredError}
25087
26507
  */
25088
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
26508
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
25089
26509
  /**
25090
26510
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25091
26511
  * @summary Search
@@ -25145,7 +26565,7 @@ export declare class ShopListingApi extends BaseAPI {
25145
26565
  * @throws {RequiredError}
25146
26566
  * @memberof ShopListingApi
25147
26567
  */
25148
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
26568
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
25149
26569
  /**
25150
26570
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25151
26571
  * @summary Search
@@ -25357,6 +26777,131 @@ export declare class ShopOrderApi extends BaseAPI {
25357
26777
  */
25358
26778
  shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
25359
26779
  }
26780
+ /**
26781
+ * StorefrontConfigApi - axios parameter creator
26782
+ * @export
26783
+ */
26784
+ export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Configuration) => {
26785
+ /**
26786
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26787
+ * @summary Get effective config
26788
+ * @param {string} gameServerId
26789
+ * @param {*} [options] Override http request option.
26790
+ * @throws {RequiredError}
26791
+ */
26792
+ storefrontConfigControllerGetEffectiveConfig: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26793
+ /**
26794
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26795
+ * @summary List templates
26796
+ * @param {*} [options] Override http request option.
26797
+ * @throws {RequiredError}
26798
+ */
26799
+ storefrontConfigControllerListTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26800
+ /**
26801
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26802
+ * @summary Set config
26803
+ * @param {string} gameServerId
26804
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26805
+ * @param {*} [options] Override http request option.
26806
+ * @throws {RequiredError}
26807
+ */
26808
+ storefrontConfigControllerSetConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26809
+ };
26810
+ /**
26811
+ * StorefrontConfigApi - functional programming interface
26812
+ * @export
26813
+ */
26814
+ export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
26815
+ /**
26816
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26817
+ * @summary Get effective config
26818
+ * @param {string} gameServerId
26819
+ * @param {*} [options] Override http request option.
26820
+ * @throws {RequiredError}
26821
+ */
26822
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26823
+ /**
26824
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26825
+ * @summary List templates
26826
+ * @param {*} [options] Override http request option.
26827
+ * @throws {RequiredError}
26828
+ */
26829
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>>;
26830
+ /**
26831
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26832
+ * @summary Set config
26833
+ * @param {string} gameServerId
26834
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26835
+ * @param {*} [options] Override http request option.
26836
+ * @throws {RequiredError}
26837
+ */
26838
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26839
+ };
26840
+ /**
26841
+ * StorefrontConfigApi - factory interface
26842
+ * @export
26843
+ */
26844
+ export declare const StorefrontConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26845
+ /**
26846
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26847
+ * @summary Get effective config
26848
+ * @param {string} gameServerId
26849
+ * @param {*} [options] Override http request option.
26850
+ * @throws {RequiredError}
26851
+ */
26852
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26853
+ /**
26854
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26855
+ * @summary List templates
26856
+ * @param {*} [options] Override http request option.
26857
+ * @throws {RequiredError}
26858
+ */
26859
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>;
26860
+ /**
26861
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26862
+ * @summary Set config
26863
+ * @param {string} gameServerId
26864
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26865
+ * @param {*} [options] Override http request option.
26866
+ * @throws {RequiredError}
26867
+ */
26868
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26869
+ };
26870
+ /**
26871
+ * StorefrontConfigApi - object-oriented interface
26872
+ * @export
26873
+ * @class StorefrontConfigApi
26874
+ * @extends {BaseAPI}
26875
+ */
26876
+ export declare class StorefrontConfigApi extends BaseAPI {
26877
+ /**
26878
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26879
+ * @summary Get effective config
26880
+ * @param {string} gameServerId
26881
+ * @param {*} [options] Override http request option.
26882
+ * @throws {RequiredError}
26883
+ * @memberof StorefrontConfigApi
26884
+ */
26885
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26886
+ /**
26887
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26888
+ * @summary List templates
26889
+ * @param {*} [options] Override http request option.
26890
+ * @throws {RequiredError}
26891
+ * @memberof StorefrontConfigApi
26892
+ */
26893
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontTemplateOutputArrayDTOAPI, any>>;
26894
+ /**
26895
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26896
+ * @summary Set config
26897
+ * @param {string} gameServerId
26898
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26899
+ * @param {*} [options] Override http request option.
26900
+ * @throws {RequiredError}
26901
+ * @memberof StorefrontConfigApi
26902
+ */
26903
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26904
+ }
25360
26905
  /**
25361
26906
  * TrackingApi - axios parameter creator
25362
26907
  * @export
@@ -25563,6 +27108,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25563
27108
  * @throws {RequiredError}
25564
27109
  */
25565
27110
  userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27111
+ /**
27112
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27113
+ * @summary Count billable dashboard users
27114
+ * @param {*} [options] Override http request option.
27115
+ * @throws {RequiredError}
27116
+ */
27117
+ userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25566
27118
  /**
25567
27119
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25568
27120
  * @summary Create
@@ -25591,6 +27143,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25591
27143
  * @summary Invite
25592
27144
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25593
27145
  * @param {*} [options] Override http request option.
27146
+ * @deprecated
25594
27147
  * @throws {RequiredError}
25595
27148
  */
25596
27149
  userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -25682,6 +27235,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
25682
27235
  * @throws {RequiredError}
25683
27236
  */
25684
27237
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
27238
+ /**
27239
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27240
+ * @summary Count billable dashboard users
27241
+ * @param {*} [options] Override http request option.
27242
+ * @throws {RequiredError}
27243
+ */
27244
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
25685
27245
  /**
25686
27246
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25687
27247
  * @summary Create
@@ -25710,6 +27270,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
25710
27270
  * @summary Invite
25711
27271
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25712
27272
  * @param {*} [options] Override http request option.
27273
+ * @deprecated
25713
27274
  * @throws {RequiredError}
25714
27275
  */
25715
27276
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
@@ -25801,6 +27362,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
25801
27362
  * @throws {RequiredError}
25802
27363
  */
25803
27364
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27365
+ /**
27366
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27367
+ * @summary Count billable dashboard users
27368
+ * @param {*} [options] Override http request option.
27369
+ * @throws {RequiredError}
27370
+ */
27371
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
25804
27372
  /**
25805
27373
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25806
27374
  * @summary Create
@@ -25829,6 +27397,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
25829
27397
  * @summary Invite
25830
27398
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25831
27399
  * @param {*} [options] Override http request option.
27400
+ * @deprecated
25832
27401
  * @throws {RequiredError}
25833
27402
  */
25834
27403
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
@@ -25923,6 +27492,14 @@ export declare class UserApi extends BaseAPI {
25923
27492
  * @memberof UserApi
25924
27493
  */
25925
27494
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27495
+ /**
27496
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27497
+ * @summary Count billable dashboard users
27498
+ * @param {*} [options] Override http request option.
27499
+ * @throws {RequiredError}
27500
+ * @memberof UserApi
27501
+ */
27502
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
25926
27503
  /**
25927
27504
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25928
27505
  * @summary Create
@@ -25954,6 +27531,7 @@ export declare class UserApi extends BaseAPI {
25954
27531
  * @summary Invite
25955
27532
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25956
27533
  * @param {*} [options] Override http request option.
27534
+ * @deprecated
25957
27535
  * @throws {RequiredError}
25958
27536
  * @memberof UserApi
25959
27537
  */