@takaro/apiclient 0.0.0-dev.9f02005 → 0.0.0-dev.a282bfc

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 {boolean}
2236
+ * @memberof DomainCreateInputDTO
2237
+ */
2238
+ skipBuiltinSeeding?: boolean;
2239
+ /**
2240
+ *
2241
+ * @type {string}
2242
+ * @memberof DomainCreateInputDTO
2243
+ */
2244
+ serverRegistrationToken?: string;
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
@@ -2979,19 +3071,19 @@ export interface ErrorOutput {
2979
3071
  * @type {string}
2980
3072
  * @memberof ErrorOutput
2981
3073
  */
2982
- code: string;
3074
+ code?: string;
2983
3075
  /**
2984
3076
  *
2985
3077
  * @type {string}
2986
3078
  * @memberof ErrorOutput
2987
3079
  */
2988
- message: string;
3080
+ message?: string;
2989
3081
  /**
2990
3082
  *
2991
3083
  * @type {string}
2992
3084
  * @memberof ErrorOutput
2993
3085
  */
2994
- details: string;
3086
+ details?: string;
2995
3087
  }
2996
3088
  /**
2997
3089
  *
@@ -3004,7 +3096,7 @@ export interface EventChatMessage {
3004
3096
  * @type {IGamePlayer}
3005
3097
  * @memberof EventChatMessage
3006
3098
  */
3007
- player: IGamePlayer;
3099
+ player?: IGamePlayer;
3008
3100
  /**
3009
3101
  *
3010
3102
  * @type {string}
@@ -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,241 +6709,681 @@ 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 {
6800
- /**
6801
- *
6802
- * @type {ItemSearchInputAllowedFilters}
6803
- * @memberof ItemSearchInputDTO
6804
- */
6805
- filters?: ItemSearchInputAllowedFilters;
6968
+ export interface InviteLinkPreviewDTO {
6806
6969
  /**
6807
6970
  *
6808
- * @type {ItemSearchInputAllowedSearch}
6809
- * @memberof ItemSearchInputDTO
6971
+ * @type {InviteLinkPreviewDomainDTO}
6972
+ * @memberof InviteLinkPreviewDTO
6810
6973
  */
6811
- search?: ItemSearchInputAllowedSearch;
6974
+ domain: InviteLinkPreviewDomainDTO;
6812
6975
  /**
6813
6976
  *
6814
- * @type {Array<string>}
6815
- * @memberof ItemSearchInputDTO
6977
+ * @type {Array<InviteLinkPreviewRoleDTO>}
6978
+ * @memberof InviteLinkPreviewDTO
6816
6979
  */
6817
- extend?: Array<ItemSearchInputDTOExtendEnum>;
6980
+ roles: Array<InviteLinkPreviewRoleDTO>;
6818
6981
  /**
6819
6982
  *
6820
- * @type {any}
6821
- * @memberof ItemSearchInputDTO
6983
+ * @type {string}
6984
+ * @memberof InviteLinkPreviewDTO
6822
6985
  */
6823
- greaterThan?: any;
6986
+ status: InviteLinkPreviewDTOStatusEnum;
6824
6987
  /**
6825
6988
  *
6826
- * @type {any}
6827
- * @memberof ItemSearchInputDTO
6989
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6990
+ * @memberof InviteLinkPreviewDTO
6828
6991
  */
6829
- lessThan?: any;
6992
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6830
6993
  /**
6831
6994
  *
6832
6995
  * @type {number}
6833
- * @memberof ItemSearchInputDTO
6996
+ * @memberof InviteLinkPreviewDTO
6834
6997
  */
6835
- page?: number;
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 {
6836
7013
  /**
6837
7014
  *
6838
- * @type {number}
6839
- * @memberof ItemSearchInputDTO
7015
+ * @type {InviteLinkPreviewDTO}
7016
+ * @memberof InviteLinkPreviewDTOAPI
6840
7017
  */
6841
- limit?: number;
7018
+ data: InviteLinkPreviewDTO;
6842
7019
  /**
6843
7020
  *
6844
- * @type {string}
7021
+ * @type {MetadataOutput}
7022
+ * @memberof InviteLinkPreviewDTOAPI
7023
+ */
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;
7384
+ /**
7385
+ *
7386
+ * @type {string}
6845
7387
  * @memberof ItemSearchInputDTO
6846
7388
  */
6847
7389
  sortBy?: string;
@@ -7169,32 +7711,58 @@ export interface LoginDTO {
7169
7711
  * @export
7170
7712
  * @interface LoginOutputDTO
7171
7713
  */
7172
- export interface LoginOutputDTO {
7714
+ export interface LoginOutputDTO {
7715
+ /**
7716
+ *
7717
+ * @type {string}
7718
+ * @memberof LoginOutputDTO
7719
+ */
7720
+ token: string;
7721
+ }
7722
+ /**
7723
+ *
7724
+ * @export
7725
+ * @interface LoginOutputDTOAPI
7726
+ */
7727
+ export interface LoginOutputDTOAPI {
7728
+ /**
7729
+ *
7730
+ * @type {LoginOutputDTO}
7731
+ * @memberof LoginOutputDTOAPI
7732
+ */
7733
+ data: LoginOutputDTO;
7734
+ /**
7735
+ *
7736
+ * @type {MetadataOutput}
7737
+ * @memberof LoginOutputDTOAPI
7738
+ */
7739
+ meta: MetadataOutput;
7740
+ }
7741
+ /**
7742
+ *
7743
+ * @export
7744
+ * @interface LoginQueryParams
7745
+ */
7746
+ export interface LoginQueryParams {
7173
7747
  /**
7174
7748
  *
7175
7749
  * @type {string}
7176
- * @memberof LoginOutputDTO
7750
+ * @memberof LoginQueryParams
7177
7751
  */
7178
- token: string;
7752
+ redirect?: string;
7179
7753
  }
7180
7754
  /**
7181
7755
  *
7182
7756
  * @export
7183
- * @interface LoginOutputDTOAPI
7757
+ * @interface LogoutQueryParams
7184
7758
  */
7185
- export interface LoginOutputDTOAPI {
7186
- /**
7187
- *
7188
- * @type {LoginOutputDTO}
7189
- * @memberof LoginOutputDTOAPI
7190
- */
7191
- data: LoginOutputDTO;
7759
+ export interface LogoutQueryParams {
7192
7760
  /**
7193
7761
  *
7194
- * @type {MetadataOutput}
7195
- * @memberof LoginOutputDTOAPI
7762
+ * @type {string}
7763
+ * @memberof LogoutQueryParams
7196
7764
  */
7197
- meta: MetadataOutput;
7765
+ redirect?: string;
7198
7766
  }
7199
7767
  /**
7200
7768
  *
@@ -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}
@@ -7487,7 +8055,7 @@ export interface MetadataOutput {
7487
8055
  * @type {ErrorOutput}
7488
8056
  * @memberof MetadataOutput
7489
8057
  */
7490
- error: ErrorOutput;
8058
+ error?: ErrorOutput;
7491
8059
  /**
7492
8060
  *
7493
8061
  * @type {number}
@@ -7819,6 +8387,94 @@ export interface ModuleInstallParamId {
7819
8387
  */
7820
8388
  gameServerId: string;
7821
8389
  }
8390
+ /**
8391
+ *
8392
+ * @export
8393
+ * @interface ModuleInstallationKpisDTO
8394
+ */
8395
+ export interface ModuleInstallationKpisDTO {
8396
+ /**
8397
+ *
8398
+ * @type {number}
8399
+ * @memberof ModuleInstallationKpisDTO
8400
+ */
8401
+ runs: number;
8402
+ /**
8403
+ *
8404
+ * @type {number}
8405
+ * @memberof ModuleInstallationKpisDTO
8406
+ */
8407
+ failures: number;
8408
+ /**
8409
+ *
8410
+ * @type {number}
8411
+ * @memberof ModuleInstallationKpisDTO
8412
+ */
8413
+ successRate: number;
8414
+ }
8415
+ /**
8416
+ *
8417
+ * @export
8418
+ * @interface ModuleInstallationKpisDTOAPI
8419
+ */
8420
+ export interface ModuleInstallationKpisDTOAPI {
8421
+ /**
8422
+ *
8423
+ * @type {ModuleInstallationKpisDTO}
8424
+ * @memberof ModuleInstallationKpisDTOAPI
8425
+ */
8426
+ data: ModuleInstallationKpisDTO;
8427
+ /**
8428
+ *
8429
+ * @type {MetadataOutput}
8430
+ * @memberof ModuleInstallationKpisDTOAPI
8431
+ */
8432
+ meta: MetadataOutput;
8433
+ }
8434
+ /**
8435
+ *
8436
+ * @export
8437
+ * @interface ModuleInstallationKpisQueryDTO
8438
+ */
8439
+ export interface ModuleInstallationKpisQueryDTO {
8440
+ /**
8441
+ *
8442
+ * @type {string}
8443
+ * @memberof ModuleInstallationKpisQueryDTO
8444
+ */
8445
+ startDate?: string;
8446
+ /**
8447
+ *
8448
+ * @type {string}
8449
+ * @memberof ModuleInstallationKpisQueryDTO
8450
+ */
8451
+ endDate?: string;
8452
+ /**
8453
+ *
8454
+ * @type {string}
8455
+ * @memberof ModuleInstallationKpisQueryDTO
8456
+ */
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;
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
@@ -11636,7 +12305,7 @@ export interface RedirectQs {
11636
12305
  * @type {string}
11637
12306
  * @memberof RedirectQs
11638
12307
  */
11639
- redirect: string;
12308
+ redirect?: string;
11640
12309
  }
11641
12310
  /**
11642
12311
  *
@@ -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
@@ -14733,44 +15459,213 @@ export interface SmallModuleOutputArrayDTOAPI {
14733
15459
  * @type {Array<SmallModuleVersionOutputDTO>}
14734
15460
  * @memberof SmallModuleOutputArrayDTOAPI
14735
15461
  */
14736
- data: Array<SmallModuleVersionOutputDTO>;
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
15554
+ */
15555
+ id: string;
15556
+ /**
15557
+ *
15558
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15559
+ * @memberof StorefrontConfigOutputDTO
15560
+ */
15561
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15562
+ /**
15563
+ *
15564
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15565
+ * @memberof StorefrontConfigOutputDTO
15566
+ */
15567
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15568
+ }
15569
+ /**
15570
+ *
15571
+ * @export
15572
+ * @interface StorefrontConfigUpdateDTO
15573
+ */
15574
+ export interface StorefrontConfigUpdateDTO {
15575
+ /**
15576
+ *
15577
+ * @type {string}
15578
+ * @memberof StorefrontConfigUpdateDTO
15579
+ */
15580
+ templateId?: string;
15581
+ /**
15582
+ *
15583
+ * @type {object}
15584
+ * @memberof StorefrontConfigUpdateDTO
15585
+ */
15586
+ values?: object;
15587
+ }
15588
+ /**
15589
+ *
15590
+ * @export
15591
+ * @interface StorefrontConfigUpsertBody
15592
+ */
15593
+ export interface StorefrontConfigUpsertBody {
15594
+ /**
15595
+ *
15596
+ * @type {string}
15597
+ * @memberof StorefrontConfigUpsertBody
15598
+ */
15599
+ templateId: string;
15600
+ /**
15601
+ *
15602
+ * @type {object}
15603
+ * @memberof StorefrontConfigUpsertBody
15604
+ */
15605
+ values: object;
15606
+ }
15607
+ /**
15608
+ *
15609
+ * @export
15610
+ * @interface StorefrontConfigUpsertDTO
15611
+ */
15612
+ export interface StorefrontConfigUpsertDTO {
15613
+ /**
15614
+ *
15615
+ * @type {string}
15616
+ * @memberof StorefrontConfigUpsertDTO
15617
+ */
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,49 @@ 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 {string}
16000
+ * @memberof TakaroEventInviteLinkCreated
16001
+ */
16002
+ inviteLinkId: string;
16003
+ /**
16004
+ *
16005
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16006
+ * @memberof TakaroEventInviteLinkCreated
16007
+ */
16008
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16009
+ /**
16010
+ *
16011
+ * @type {number}
16012
+ * @memberof TakaroEventInviteLinkCreated
16013
+ */
16014
+ maxUses: number;
16015
+ /**
16016
+ *
16017
+ * @type {Array<string>}
16018
+ * @memberof TakaroEventInviteLinkCreated
16019
+ */
16020
+ roleIds: Array<string>;
16021
+ /**
16022
+ *
16023
+ * @type {boolean}
16024
+ * @memberof TakaroEventInviteLinkCreated
16025
+ */
16026
+ staffOrigin: boolean;
16027
+ /**
16028
+ *
16029
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16030
+ * @memberof TakaroEventInviteLinkCreated
16031
+ */
16032
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16033
+ }
15096
16034
  /**
15097
16035
  *
15098
16036
  * @export
@@ -16371,6 +17309,38 @@ export interface UserAssignmentOutputDTO {
16371
17309
  */
16372
17310
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16373
17311
  }
17312
+ /**
17313
+ *
17314
+ * @export
17315
+ * @interface UserCountOutputDTO
17316
+ */
17317
+ export interface UserCountOutputDTO {
17318
+ /**
17319
+ *
17320
+ * @type {number}
17321
+ * @memberof UserCountOutputDTO
17322
+ */
17323
+ count: number;
17324
+ }
17325
+ /**
17326
+ *
17327
+ * @export
17328
+ * @interface UserCountOutputDTOAPI
17329
+ */
17330
+ export interface UserCountOutputDTOAPI {
17331
+ /**
17332
+ *
17333
+ * @type {UserCountOutputDTO}
17334
+ * @memberof UserCountOutputDTOAPI
17335
+ */
17336
+ data: UserCountOutputDTO;
17337
+ /**
17338
+ *
17339
+ * @type {MetadataOutput}
17340
+ * @memberof UserCountOutputDTOAPI
17341
+ */
17342
+ meta: MetadataOutput;
17343
+ }
16374
17344
  /**
16375
17345
  *
16376
17346
  * @export
@@ -16408,6 +17378,37 @@ export interface UserCreateInputDTO {
16408
17378
  */
16409
17379
  isDashboardUser?: boolean;
16410
17380
  }
17381
+ /**
17382
+ *
17383
+ * @export
17384
+ * @interface UserCreateInviteDTO
17385
+ */
17386
+ export interface UserCreateInviteDTO {
17387
+ /**
17388
+ *
17389
+ * @type {string}
17390
+ * @memberof UserCreateInviteDTO
17391
+ */
17392
+ name: string;
17393
+ /**
17394
+ *
17395
+ * @type {string}
17396
+ * @memberof UserCreateInviteDTO
17397
+ */
17398
+ email: string;
17399
+ /**
17400
+ *
17401
+ * @type {string}
17402
+ * @memberof UserCreateInviteDTO
17403
+ */
17404
+ idpId?: string;
17405
+ /**
17406
+ *
17407
+ * @type {boolean}
17408
+ * @memberof UserCreateInviteDTO
17409
+ */
17410
+ isDashboardUser?: boolean;
17411
+ }
16411
17412
  /**
16412
17413
  *
16413
17414
  * @export
@@ -16511,13 +17512,25 @@ export interface UserOutputDTO {
16511
17512
  * @type {PlayerOutputWithRolesDTO}
16512
17513
  * @memberof UserOutputDTO
16513
17514
  */
16514
- player: PlayerOutputWithRolesDTO;
17515
+ player?: PlayerOutputWithRolesDTO;
16515
17516
  /**
16516
17517
  *
16517
17518
  * @type {boolean}
16518
17519
  * @memberof UserOutputDTO
16519
17520
  */
16520
17521
  isDashboardUser: boolean;
17522
+ /**
17523
+ *
17524
+ * @type {boolean}
17525
+ * @memberof UserOutputDTO
17526
+ */
17527
+ isSupportAccount: boolean;
17528
+ /**
17529
+ *
17530
+ * @type {string}
17531
+ * @memberof UserOutputDTO
17532
+ */
17533
+ inviteLinkId?: string;
16521
17534
  /**
16522
17535
  *
16523
17536
  * @type {string}
@@ -16627,13 +17640,44 @@ export interface UserOutputWithRolesDTO {
16627
17640
  * @type {PlayerOutputWithRolesDTO}
16628
17641
  * @memberof UserOutputWithRolesDTO
16629
17642
  */
16630
- player: PlayerOutputWithRolesDTO;
17643
+ player?: PlayerOutputWithRolesDTO;
16631
17644
  /**
16632
17645
  *
16633
17646
  * @type {boolean}
16634
17647
  * @memberof UserOutputWithRolesDTO
16635
17648
  */
16636
17649
  isDashboardUser: boolean;
17650
+ /**
17651
+ *
17652
+ * @type {boolean}
17653
+ * @memberof UserOutputWithRolesDTO
17654
+ */
17655
+ isSupportAccount: boolean;
17656
+ /**
17657
+ *
17658
+ * @type {string}
17659
+ * @memberof UserOutputWithRolesDTO
17660
+ */
17661
+ inviteLinkId?: string;
17662
+ }
17663
+ /**
17664
+ *
17665
+ * @export
17666
+ * @interface UserOutputWithRolesDTOAPI
17667
+ */
17668
+ export interface UserOutputWithRolesDTOAPI {
17669
+ /**
17670
+ *
17671
+ * @type {UserOutputWithRolesDTO}
17672
+ * @memberof UserOutputWithRolesDTOAPI
17673
+ */
17674
+ data: UserOutputWithRolesDTO;
17675
+ /**
17676
+ *
17677
+ * @type {MetadataOutput}
17678
+ * @memberof UserOutputWithRolesDTOAPI
17679
+ */
17680
+ meta: MetadataOutput;
16637
17681
  }
16638
17682
  /**
16639
17683
  *
@@ -17303,7 +18347,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17303
18347
  */
17304
18348
  analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17305
18349
  /**
17306
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18350
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17307
18351
  * @summary Get module health scores
17308
18352
  * @param {string} [startDate]
17309
18353
  * @param {string} [endDate]
@@ -17313,6 +18357,18 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17313
18357
  * @throws {RequiredError}
17314
18358
  */
17315
18359
  analyticsControllerGetModuleHealth: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
18360
+ /**
18361
+ * 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`
18362
+ * @summary Get per-installation module KPIs
18363
+ * @param {string} gameServerId
18364
+ * @param {string} moduleId
18365
+ * @param {string} [startDate]
18366
+ * @param {string} [endDate]
18367
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18368
+ * @param {*} [options] Override http request option.
18369
+ * @throws {RequiredError}
18370
+ */
18371
+ analyticsControllerGetModuleInstallationKpis: (gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17316
18372
  /**
17317
18373
  * 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
18374
  * @summary Get module item failure aggregate
@@ -17524,7 +18580,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17524
18580
  analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17525
18581
  /**
17526
18582
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17527
- * @summary Get top modules by event volume
18583
+ * @summary Get top modules by execution volume
17528
18584
  * @param {string} [startDate]
17529
18585
  * @param {string} [endDate]
17530
18586
  * @param {string} [gameServerId]
@@ -17680,7 +18736,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17680
18736
  */
17681
18737
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
17682
18738
  /**
17683
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18739
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17684
18740
  * @summary Get module health scores
17685
18741
  * @param {string} [startDate]
17686
18742
  * @param {string} [endDate]
@@ -17690,6 +18746,18 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17690
18746
  * @throws {RequiredError}
17691
18747
  */
17692
18748
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleHealthEntryDTOAPI>>;
18749
+ /**
18750
+ * 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`
18751
+ * @summary Get per-installation module KPIs
18752
+ * @param {string} gameServerId
18753
+ * @param {string} moduleId
18754
+ * @param {string} [startDate]
18755
+ * @param {string} [endDate]
18756
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18757
+ * @param {*} [options] Override http request option.
18758
+ * @throws {RequiredError}
18759
+ */
18760
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>>;
17693
18761
  /**
17694
18762
  * 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
18763
  * @summary Get module item failure aggregate
@@ -17901,7 +18969,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17901
18969
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
17902
18970
  /**
17903
18971
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17904
- * @summary Get top modules by event volume
18972
+ * @summary Get top modules by execution volume
17905
18973
  * @param {string} [startDate]
17906
18974
  * @param {string} [endDate]
17907
18975
  * @param {string} [gameServerId]
@@ -18057,7 +19125,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18057
19125
  */
18058
19126
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
18059
19127
  /**
18060
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19128
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18061
19129
  * @summary Get module health scores
18062
19130
  * @param {string} [startDate]
18063
19131
  * @param {string} [endDate]
@@ -18067,6 +19135,18 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18067
19135
  * @throws {RequiredError}
18068
19136
  */
18069
19137
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleHealthEntryDTOAPI>;
19138
+ /**
19139
+ * 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`
19140
+ * @summary Get per-installation module KPIs
19141
+ * @param {string} gameServerId
19142
+ * @param {string} moduleId
19143
+ * @param {string} [startDate]
19144
+ * @param {string} [endDate]
19145
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
19146
+ * @param {*} [options] Override http request option.
19147
+ * @throws {RequiredError}
19148
+ */
19149
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationKpisDTOAPI>;
18070
19150
  /**
18071
19151
  * 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
19152
  * @summary Get module item failure aggregate
@@ -18278,7 +19358,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18278
19358
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
18279
19359
  /**
18280
19360
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18281
- * @summary Get top modules by event volume
19361
+ * @summary Get top modules by execution volume
18282
19362
  * @param {string} [startDate]
18283
19363
  * @param {string} [endDate]
18284
19364
  * @param {string} [gameServerId]
@@ -18448,7 +19528,7 @@ export declare class AnalyticsApi extends BaseAPI {
18448
19528
  */
18449
19529
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
18450
19530
  /**
18451
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19531
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18452
19532
  * @summary Get module health scores
18453
19533
  * @param {string} [startDate]
18454
19534
  * @param {string} [endDate]
@@ -18459,6 +19539,19 @@ export declare class AnalyticsApi extends BaseAPI {
18459
19539
  * @memberof AnalyticsApi
18460
19540
  */
18461
19541
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleHealthEntryDTOAPI, any>>;
19542
+ /**
19543
+ * 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`
19544
+ * @summary Get per-installation module KPIs
19545
+ * @param {string} gameServerId
19546
+ * @param {string} moduleId
19547
+ * @param {string} [startDate]
19548
+ * @param {string} [endDate]
19549
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
19550
+ * @param {*} [options] Override http request option.
19551
+ * @throws {RequiredError}
19552
+ * @memberof AnalyticsApi
19553
+ */
19554
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationKpisDTOAPI, any>>;
18462
19555
  /**
18463
19556
  * 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
19557
  * @summary Get module item failure aggregate
@@ -18689,7 +19782,7 @@ export declare class AnalyticsApi extends BaseAPI {
18689
19782
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
18690
19783
  /**
18691
19784
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18692
- * @summary Get top modules by event volume
19785
+ * @summary Get top modules by execution volume
18693
19786
  * @param {string} [startDate]
18694
19787
  * @param {string} [endDate]
18695
19788
  * @param {string} [gameServerId]
@@ -18832,6 +19925,16 @@ export declare const AnalyticsControllerGetModuleHealthPeriodEnum: {
18832
19925
  readonly _90d: "90d";
18833
19926
  };
18834
19927
  export type AnalyticsControllerGetModuleHealthPeriodEnum = (typeof AnalyticsControllerGetModuleHealthPeriodEnum)[keyof typeof AnalyticsControllerGetModuleHealthPeriodEnum];
19928
+ /**
19929
+ * @export
19930
+ */
19931
+ export declare const AnalyticsControllerGetModuleInstallationKpisPeriodEnum: {
19932
+ readonly _24h: "24h";
19933
+ readonly _7d: "7d";
19934
+ readonly _30d: "30d";
19935
+ readonly _90d: "90d";
19936
+ };
19937
+ export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum = (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
18835
19938
  /**
18836
19939
  * @export
18837
19940
  */
@@ -19042,6 +20145,156 @@ export declare const AnalyticsControllerGetTopServersPeriodEnum: {
19042
20145
  readonly _90d: "90d";
19043
20146
  };
19044
20147
  export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
20148
+ /**
20149
+ * AuthApi - axios parameter creator
20150
+ * @export
20151
+ */
20152
+ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
20153
+ /**
20154
+ * <br> OperationId: `AuthControllerAccount`
20155
+ * @summary Account
20156
+ * @param {*} [options] Override http request option.
20157
+ * @throws {RequiredError}
20158
+ */
20159
+ authControllerAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20160
+ /**
20161
+ * <br> OperationId: `AuthControllerCallback`
20162
+ * @summary Callback
20163
+ * @param {*} [options] Override http request option.
20164
+ * @throws {RequiredError}
20165
+ */
20166
+ authControllerCallback: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20167
+ /**
20168
+ * <br> OperationId: `AuthControllerLogin`
20169
+ * @summary Login
20170
+ * @param {string} [redirect]
20171
+ * @param {*} [options] Override http request option.
20172
+ * @throws {RequiredError}
20173
+ */
20174
+ authControllerLogin: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20175
+ /**
20176
+ * <br> OperationId: `AuthControllerLogout`
20177
+ * @summary Logout
20178
+ * @param {string} [redirect]
20179
+ * @param {*} [options] Override http request option.
20180
+ * @throws {RequiredError}
20181
+ */
20182
+ authControllerLogout: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20183
+ };
20184
+ /**
20185
+ * AuthApi - functional programming interface
20186
+ * @export
20187
+ */
20188
+ export declare const AuthApiFp: (configuration?: Configuration) => {
20189
+ /**
20190
+ * <br> OperationId: `AuthControllerAccount`
20191
+ * @summary Account
20192
+ * @param {*} [options] Override http request option.
20193
+ * @throws {RequiredError}
20194
+ */
20195
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20196
+ /**
20197
+ * <br> OperationId: `AuthControllerCallback`
20198
+ * @summary Callback
20199
+ * @param {*} [options] Override http request option.
20200
+ * @throws {RequiredError}
20201
+ */
20202
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20203
+ /**
20204
+ * <br> OperationId: `AuthControllerLogin`
20205
+ * @summary Login
20206
+ * @param {string} [redirect]
20207
+ * @param {*} [options] Override http request option.
20208
+ * @throws {RequiredError}
20209
+ */
20210
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20211
+ /**
20212
+ * <br> OperationId: `AuthControllerLogout`
20213
+ * @summary Logout
20214
+ * @param {string} [redirect]
20215
+ * @param {*} [options] Override http request option.
20216
+ * @throws {RequiredError}
20217
+ */
20218
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20219
+ };
20220
+ /**
20221
+ * AuthApi - factory interface
20222
+ * @export
20223
+ */
20224
+ export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20225
+ /**
20226
+ * <br> OperationId: `AuthControllerAccount`
20227
+ * @summary Account
20228
+ * @param {*} [options] Override http request option.
20229
+ * @throws {RequiredError}
20230
+ */
20231
+ authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void>;
20232
+ /**
20233
+ * <br> OperationId: `AuthControllerCallback`
20234
+ * @summary Callback
20235
+ * @param {*} [options] Override http request option.
20236
+ * @throws {RequiredError}
20237
+ */
20238
+ authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
20239
+ /**
20240
+ * <br> OperationId: `AuthControllerLogin`
20241
+ * @summary Login
20242
+ * @param {string} [redirect]
20243
+ * @param {*} [options] Override http request option.
20244
+ * @throws {RequiredError}
20245
+ */
20246
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20247
+ /**
20248
+ * <br> OperationId: `AuthControllerLogout`
20249
+ * @summary Logout
20250
+ * @param {string} [redirect]
20251
+ * @param {*} [options] Override http request option.
20252
+ * @throws {RequiredError}
20253
+ */
20254
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20255
+ };
20256
+ /**
20257
+ * AuthApi - object-oriented interface
20258
+ * @export
20259
+ * @class AuthApi
20260
+ * @extends {BaseAPI}
20261
+ */
20262
+ export declare class AuthApi extends BaseAPI {
20263
+ /**
20264
+ * <br> OperationId: `AuthControllerAccount`
20265
+ * @summary Account
20266
+ * @param {*} [options] Override http request option.
20267
+ * @throws {RequiredError}
20268
+ * @memberof AuthApi
20269
+ */
20270
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20271
+ /**
20272
+ * <br> OperationId: `AuthControllerCallback`
20273
+ * @summary Callback
20274
+ * @param {*} [options] Override http request option.
20275
+ * @throws {RequiredError}
20276
+ * @memberof AuthApi
20277
+ */
20278
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20279
+ /**
20280
+ * <br> OperationId: `AuthControllerLogin`
20281
+ * @summary Login
20282
+ * @param {string} [redirect]
20283
+ * @param {*} [options] Override http request option.
20284
+ * @throws {RequiredError}
20285
+ * @memberof AuthApi
20286
+ */
20287
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20288
+ /**
20289
+ * <br> OperationId: `AuthControllerLogout`
20290
+ * @summary Logout
20291
+ * @param {string} [redirect]
20292
+ * @param {*} [options] Override http request option.
20293
+ * @throws {RequiredError}
20294
+ * @memberof AuthApi
20295
+ */
20296
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20297
+ }
19045
20298
  /**
19046
20299
  * CommandApi - axios parameter creator
19047
20300
  * @export
@@ -20006,6 +21259,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
20006
21259
  * @throws {RequiredError}
20007
21260
  */
20008
21261
  domainControllerCreate: (domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21262
+ /**
21263
+ * 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`
21264
+ * @summary Create staff-recovery invite link for a domain
21265
+ * @param {string} id
21266
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21267
+ * @param {*} [options] Override http request option.
21268
+ * @throws {RequiredError}
21269
+ */
21270
+ domainControllerCreateInviteLink: (id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20009
21271
  /**
20010
21272
  * <br> OperationId: `DomainControllerGetOne`
20011
21273
  * @summary Get one
@@ -20070,6 +21332,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
20070
21332
  * @throws {RequiredError}
20071
21333
  */
20072
21334
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainCreateOutputDTOAPI>>;
21335
+ /**
21336
+ * 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`
21337
+ * @summary Create staff-recovery invite link for a domain
21338
+ * @param {string} id
21339
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21340
+ * @param {*} [options] Override http request option.
21341
+ * @throws {RequiredError}
21342
+ */
21343
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
20073
21344
  /**
20074
21345
  * <br> OperationId: `DomainControllerGetOne`
20075
21346
  * @summary Get one
@@ -20134,6 +21405,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
20134
21405
  * @throws {RequiredError}
20135
21406
  */
20136
21407
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainCreateOutputDTOAPI>;
21408
+ /**
21409
+ * 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`
21410
+ * @summary Create staff-recovery invite link for a domain
21411
+ * @param {string} id
21412
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21413
+ * @param {*} [options] Override http request option.
21414
+ * @throws {RequiredError}
21415
+ */
21416
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
20137
21417
  /**
20138
21418
  * <br> OperationId: `DomainControllerGetOne`
20139
21419
  * @summary Get one
@@ -20201,6 +21481,16 @@ export declare class DomainApi extends BaseAPI {
20201
21481
  * @memberof DomainApi
20202
21482
  */
20203
21483
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainCreateOutputDTOAPI, any>>;
21484
+ /**
21485
+ * 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`
21486
+ * @summary Create staff-recovery invite link for a domain
21487
+ * @param {string} id
21488
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21489
+ * @param {*} [options] Override http request option.
21490
+ * @throws {RequiredError}
21491
+ * @memberof DomainApi
21492
+ */
21493
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
20204
21494
  /**
20205
21495
  * <br> OperationId: `DomainControllerGetOne`
20206
21496
  * @summary Get one
@@ -20615,11 +21905,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
20615
21905
  /**
20616
21906
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
20617
21907
  * @summary Auth discord
20618
- * @param {string} redirect
21908
+ * @param {string} [redirect]
20619
21909
  * @param {*} [options] Override http request option.
20620
21910
  * @throws {RequiredError}
20621
21911
  */
20622
- externalAuthControllerAuthDiscord: (redirect: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21912
+ externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20623
21913
  /**
20624
21914
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
20625
21915
  * @summary Auth discord return
@@ -20636,11 +21926,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
20636
21926
  /**
20637
21927
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
20638
21928
  * @summary Auth discord
20639
- * @param {string} redirect
21929
+ * @param {string} [redirect]
20640
21930
  * @param {*} [options] Override http request option.
20641
21931
  * @throws {RequiredError}
20642
21932
  */
20643
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21933
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20644
21934
  /**
20645
21935
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
20646
21936
  * @summary Auth discord return
@@ -20657,11 +21947,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
20657
21947
  /**
20658
21948
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
20659
21949
  * @summary Auth discord
20660
- * @param {string} redirect
21950
+ * @param {string} [redirect]
20661
21951
  * @param {*} [options] Override http request option.
20662
21952
  * @throws {RequiredError}
20663
21953
  */
20664
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21954
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20665
21955
  /**
20666
21956
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
20667
21957
  * @summary Auth discord return
@@ -20680,12 +21970,12 @@ export declare class ExternalAuthApi extends BaseAPI {
20680
21970
  /**
20681
21971
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
20682
21972
  * @summary Auth discord
20683
- * @param {string} redirect
21973
+ * @param {string} [redirect]
20684
21974
  * @param {*} [options] Override http request option.
20685
21975
  * @throws {RequiredError}
20686
21976
  * @memberof ExternalAuthApi
20687
21977
  */
20688
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
21978
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20689
21979
  /**
20690
21980
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
20691
21981
  * @summary Auth discord return
@@ -22119,6 +23409,197 @@ export declare class HookApi extends BaseAPI {
22119
23409
  */
22120
23410
  hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
22121
23411
  }
23412
+ /**
23413
+ * InviteLinkApi - axios parameter creator
23414
+ * @export
23415
+ */
23416
+ export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
23417
+ /**
23418
+ * 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`
23419
+ * @summary Create invite link
23420
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23421
+ * @param {*} [options] Override http request option.
23422
+ * @throws {RequiredError}
23423
+ */
23424
+ inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23425
+ /**
23426
+ * <br> OperationId: `InviteLinkControllerPreview`
23427
+ * @summary Preview
23428
+ * @param {string} token
23429
+ * @param {*} [options] Override http request option.
23430
+ * @throws {RequiredError}
23431
+ */
23432
+ inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23433
+ /**
23434
+ * <br> OperationId: `InviteLinkControllerRedeem`
23435
+ * @summary Redeem
23436
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23437
+ * @param {*} [options] Override http request option.
23438
+ * @throws {RequiredError}
23439
+ */
23440
+ inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23441
+ /**
23442
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23443
+ * @summary Revoke
23444
+ * @param {string} id
23445
+ * @param {*} [options] Override http request option.
23446
+ * @throws {RequiredError}
23447
+ */
23448
+ inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23449
+ /**
23450
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23451
+ * @summary Search
23452
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23453
+ * @param {*} [options] Override http request option.
23454
+ * @throws {RequiredError}
23455
+ */
23456
+ inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23457
+ };
23458
+ /**
23459
+ * InviteLinkApi - functional programming interface
23460
+ * @export
23461
+ */
23462
+ export declare const InviteLinkApiFp: (configuration?: Configuration) => {
23463
+ /**
23464
+ * 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`
23465
+ * @summary Create invite link
23466
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23467
+ * @param {*} [options] Override http request option.
23468
+ * @throws {RequiredError}
23469
+ */
23470
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
23471
+ /**
23472
+ * <br> OperationId: `InviteLinkControllerPreview`
23473
+ * @summary Preview
23474
+ * @param {string} token
23475
+ * @param {*} [options] Override http request option.
23476
+ * @throws {RequiredError}
23477
+ */
23478
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
23479
+ /**
23480
+ * <br> OperationId: `InviteLinkControllerRedeem`
23481
+ * @summary Redeem
23482
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23483
+ * @param {*} [options] Override http request option.
23484
+ * @throws {RequiredError}
23485
+ */
23486
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
23487
+ /**
23488
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23489
+ * @summary Revoke
23490
+ * @param {string} id
23491
+ * @param {*} [options] Override http request option.
23492
+ * @throws {RequiredError}
23493
+ */
23494
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23495
+ /**
23496
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23497
+ * @summary Search
23498
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23499
+ * @param {*} [options] Override http request option.
23500
+ * @throws {RequiredError}
23501
+ */
23502
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
23503
+ };
23504
+ /**
23505
+ * InviteLinkApi - factory interface
23506
+ * @export
23507
+ */
23508
+ export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23509
+ /**
23510
+ * 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`
23511
+ * @summary Create invite link
23512
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23513
+ * @param {*} [options] Override http request option.
23514
+ * @throws {RequiredError}
23515
+ */
23516
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
23517
+ /**
23518
+ * <br> OperationId: `InviteLinkControllerPreview`
23519
+ * @summary Preview
23520
+ * @param {string} token
23521
+ * @param {*} [options] Override http request option.
23522
+ * @throws {RequiredError}
23523
+ */
23524
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
23525
+ /**
23526
+ * <br> OperationId: `InviteLinkControllerRedeem`
23527
+ * @summary Redeem
23528
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23529
+ * @param {*} [options] Override http request option.
23530
+ * @throws {RequiredError}
23531
+ */
23532
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
23533
+ /**
23534
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23535
+ * @summary Revoke
23536
+ * @param {string} id
23537
+ * @param {*} [options] Override http request option.
23538
+ * @throws {RequiredError}
23539
+ */
23540
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23541
+ /**
23542
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23543
+ * @summary Search
23544
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23545
+ * @param {*} [options] Override http request option.
23546
+ * @throws {RequiredError}
23547
+ */
23548
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
23549
+ };
23550
+ /**
23551
+ * InviteLinkApi - object-oriented interface
23552
+ * @export
23553
+ * @class InviteLinkApi
23554
+ * @extends {BaseAPI}
23555
+ */
23556
+ export declare class InviteLinkApi extends BaseAPI {
23557
+ /**
23558
+ * 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`
23559
+ * @summary Create invite link
23560
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23561
+ * @param {*} [options] Override http request option.
23562
+ * @throws {RequiredError}
23563
+ * @memberof InviteLinkApi
23564
+ */
23565
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
23566
+ /**
23567
+ * <br> OperationId: `InviteLinkControllerPreview`
23568
+ * @summary Preview
23569
+ * @param {string} token
23570
+ * @param {*} [options] Override http request option.
23571
+ * @throws {RequiredError}
23572
+ * @memberof InviteLinkApi
23573
+ */
23574
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
23575
+ /**
23576
+ * <br> OperationId: `InviteLinkControllerRedeem`
23577
+ * @summary Redeem
23578
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23579
+ * @param {*} [options] Override http request option.
23580
+ * @throws {RequiredError}
23581
+ * @memberof InviteLinkApi
23582
+ */
23583
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
23584
+ /**
23585
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23586
+ * @summary Revoke
23587
+ * @param {string} id
23588
+ * @param {*} [options] Override http request option.
23589
+ * @throws {RequiredError}
23590
+ * @memberof InviteLinkApi
23591
+ */
23592
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23593
+ /**
23594
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23595
+ * @summary Search
23596
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23597
+ * @param {*} [options] Override http request option.
23598
+ * @throws {RequiredError}
23599
+ * @memberof InviteLinkApi
23600
+ */
23601
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
23602
+ }
22122
23603
  /**
22123
23604
  * ItemApi - axios parameter creator
22124
23605
  * @export
@@ -22223,6 +23704,13 @@ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) =
22223
23704
  * @throws {RequiredError}
22224
23705
  */
22225
23706
  metaGetHealth: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23707
+ /**
23708
+ * <br> OperationId: `MetaGetLiveness`
23709
+ * @summary Get liveness
23710
+ * @param {*} [options] Override http request option.
23711
+ * @throws {RequiredError}
23712
+ */
23713
+ metaGetLiveness: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22226
23714
  /**
22227
23715
  * <br> OperationId: `MetaGetMetrics`
22228
23716
  * @summary Get metrics
@@ -22271,6 +23759,13 @@ export declare const MetaApiFp: (configuration?: Configuration) => {
22271
23759
  * @throws {RequiredError}
22272
23760
  */
22273
23761
  metaGetHealth(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
23762
+ /**
23763
+ * <br> OperationId: `MetaGetLiveness`
23764
+ * @summary Get liveness
23765
+ * @param {*} [options] Override http request option.
23766
+ * @throws {RequiredError}
23767
+ */
23768
+ metaGetLiveness(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
22274
23769
  /**
22275
23770
  * <br> OperationId: `MetaGetMetrics`
22276
23771
  * @summary Get metrics
@@ -22319,6 +23814,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
22319
23814
  * @throws {RequiredError}
22320
23815
  */
22321
23816
  metaGetHealth(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
23817
+ /**
23818
+ * <br> OperationId: `MetaGetLiveness`
23819
+ * @summary Get liveness
23820
+ * @param {*} [options] Override http request option.
23821
+ * @throws {RequiredError}
23822
+ */
23823
+ metaGetLiveness(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
22322
23824
  /**
22323
23825
  * <br> OperationId: `MetaGetMetrics`
22324
23826
  * @summary Get metrics
@@ -22370,6 +23872,14 @@ export declare class MetaApi extends BaseAPI {
22370
23872
  * @memberof MetaApi
22371
23873
  */
22372
23874
  metaGetHealth(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthOutputDTO, any>>;
23875
+ /**
23876
+ * <br> OperationId: `MetaGetLiveness`
23877
+ * @summary Get liveness
23878
+ * @param {*} [options] Override http request option.
23879
+ * @throws {RequiredError}
23880
+ * @memberof MetaApi
23881
+ */
23882
+ metaGetLiveness(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthOutputDTO, any>>;
22373
23883
  /**
22374
23884
  * <br> OperationId: `MetaGetMetrics`
22375
23885
  * @summary Get metrics
@@ -25031,7 +26541,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25031
26541
  * @param {*} [options] Override http request option.
25032
26542
  * @throws {RequiredError}
25033
26543
  */
25034
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26544
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
25035
26545
  /**
25036
26546
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25037
26547
  * @summary Search
@@ -25085,7 +26595,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25085
26595
  * @param {*} [options] Override http request option.
25086
26596
  * @throws {RequiredError}
25087
26597
  */
25088
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
26598
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
25089
26599
  /**
25090
26600
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25091
26601
  * @summary Search
@@ -25145,7 +26655,7 @@ export declare class ShopListingApi extends BaseAPI {
25145
26655
  * @throws {RequiredError}
25146
26656
  * @memberof ShopListingApi
25147
26657
  */
25148
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
26658
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
25149
26659
  /**
25150
26660
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25151
26661
  * @summary Search
@@ -25357,6 +26867,131 @@ export declare class ShopOrderApi extends BaseAPI {
25357
26867
  */
25358
26868
  shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
25359
26869
  }
26870
+ /**
26871
+ * StorefrontConfigApi - axios parameter creator
26872
+ * @export
26873
+ */
26874
+ export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Configuration) => {
26875
+ /**
26876
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26877
+ * @summary Get effective config
26878
+ * @param {string} gameServerId
26879
+ * @param {*} [options] Override http request option.
26880
+ * @throws {RequiredError}
26881
+ */
26882
+ storefrontConfigControllerGetEffectiveConfig: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26883
+ /**
26884
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26885
+ * @summary List templates
26886
+ * @param {*} [options] Override http request option.
26887
+ * @throws {RequiredError}
26888
+ */
26889
+ storefrontConfigControllerListTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26890
+ /**
26891
+ * 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`
26892
+ * @summary Set config
26893
+ * @param {string} gameServerId
26894
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26895
+ * @param {*} [options] Override http request option.
26896
+ * @throws {RequiredError}
26897
+ */
26898
+ storefrontConfigControllerSetConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26899
+ };
26900
+ /**
26901
+ * StorefrontConfigApi - functional programming interface
26902
+ * @export
26903
+ */
26904
+ export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
26905
+ /**
26906
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26907
+ * @summary Get effective config
26908
+ * @param {string} gameServerId
26909
+ * @param {*} [options] Override http request option.
26910
+ * @throws {RequiredError}
26911
+ */
26912
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26913
+ /**
26914
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26915
+ * @summary List templates
26916
+ * @param {*} [options] Override http request option.
26917
+ * @throws {RequiredError}
26918
+ */
26919
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>>;
26920
+ /**
26921
+ * 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`
26922
+ * @summary Set config
26923
+ * @param {string} gameServerId
26924
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26925
+ * @param {*} [options] Override http request option.
26926
+ * @throws {RequiredError}
26927
+ */
26928
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26929
+ };
26930
+ /**
26931
+ * StorefrontConfigApi - factory interface
26932
+ * @export
26933
+ */
26934
+ export declare const StorefrontConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26935
+ /**
26936
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26937
+ * @summary Get effective config
26938
+ * @param {string} gameServerId
26939
+ * @param {*} [options] Override http request option.
26940
+ * @throws {RequiredError}
26941
+ */
26942
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26943
+ /**
26944
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26945
+ * @summary List templates
26946
+ * @param {*} [options] Override http request option.
26947
+ * @throws {RequiredError}
26948
+ */
26949
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>;
26950
+ /**
26951
+ * 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`
26952
+ * @summary Set config
26953
+ * @param {string} gameServerId
26954
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26955
+ * @param {*} [options] Override http request option.
26956
+ * @throws {RequiredError}
26957
+ */
26958
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26959
+ };
26960
+ /**
26961
+ * StorefrontConfigApi - object-oriented interface
26962
+ * @export
26963
+ * @class StorefrontConfigApi
26964
+ * @extends {BaseAPI}
26965
+ */
26966
+ export declare class StorefrontConfigApi extends BaseAPI {
26967
+ /**
26968
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26969
+ * @summary Get effective config
26970
+ * @param {string} gameServerId
26971
+ * @param {*} [options] Override http request option.
26972
+ * @throws {RequiredError}
26973
+ * @memberof StorefrontConfigApi
26974
+ */
26975
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26976
+ /**
26977
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26978
+ * @summary List templates
26979
+ * @param {*} [options] Override http request option.
26980
+ * @throws {RequiredError}
26981
+ * @memberof StorefrontConfigApi
26982
+ */
26983
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontTemplateOutputArrayDTOAPI, any>>;
26984
+ /**
26985
+ * 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`
26986
+ * @summary Set config
26987
+ * @param {string} gameServerId
26988
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26989
+ * @param {*} [options] Override http request option.
26990
+ * @throws {RequiredError}
26991
+ * @memberof StorefrontConfigApi
26992
+ */
26993
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26994
+ }
25360
26995
  /**
25361
26996
  * TrackingApi - axios parameter creator
25362
26997
  * @export
@@ -25563,6 +27198,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25563
27198
  * @throws {RequiredError}
25564
27199
  */
25565
27200
  userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27201
+ /**
27202
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27203
+ * @summary Count billable dashboard users
27204
+ * @param {*} [options] Override http request option.
27205
+ * @throws {RequiredError}
27206
+ */
27207
+ userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25566
27208
  /**
25567
27209
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25568
27210
  * @summary Create
@@ -25591,6 +27233,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25591
27233
  * @summary Invite
25592
27234
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25593
27235
  * @param {*} [options] Override http request option.
27236
+ * @deprecated
25594
27237
  * @throws {RequiredError}
25595
27238
  */
25596
27239
  userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -25682,6 +27325,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
25682
27325
  * @throws {RequiredError}
25683
27326
  */
25684
27327
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
27328
+ /**
27329
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27330
+ * @summary Count billable dashboard users
27331
+ * @param {*} [options] Override http request option.
27332
+ * @throws {RequiredError}
27333
+ */
27334
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
25685
27335
  /**
25686
27336
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25687
27337
  * @summary Create
@@ -25710,6 +27360,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
25710
27360
  * @summary Invite
25711
27361
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25712
27362
  * @param {*} [options] Override http request option.
27363
+ * @deprecated
25713
27364
  * @throws {RequiredError}
25714
27365
  */
25715
27366
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
@@ -25801,6 +27452,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
25801
27452
  * @throws {RequiredError}
25802
27453
  */
25803
27454
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27455
+ /**
27456
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27457
+ * @summary Count billable dashboard users
27458
+ * @param {*} [options] Override http request option.
27459
+ * @throws {RequiredError}
27460
+ */
27461
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
25804
27462
  /**
25805
27463
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25806
27464
  * @summary Create
@@ -25829,6 +27487,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
25829
27487
  * @summary Invite
25830
27488
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25831
27489
  * @param {*} [options] Override http request option.
27490
+ * @deprecated
25832
27491
  * @throws {RequiredError}
25833
27492
  */
25834
27493
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
@@ -25923,6 +27582,14 @@ export declare class UserApi extends BaseAPI {
25923
27582
  * @memberof UserApi
25924
27583
  */
25925
27584
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27585
+ /**
27586
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27587
+ * @summary Count billable dashboard users
27588
+ * @param {*} [options] Override http request option.
27589
+ * @throws {RequiredError}
27590
+ * @memberof UserApi
27591
+ */
27592
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
25926
27593
  /**
25927
27594
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25928
27595
  * @summary Create
@@ -25954,6 +27621,7 @@ export declare class UserApi extends BaseAPI {
25954
27621
  * @summary Invite
25955
27622
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25956
27623
  * @param {*} [options] Override http request option.
27624
+ * @deprecated
25957
27625
  * @throws {RequiredError}
25958
27626
  * @memberof UserApi
25959
27627
  */