@takaro/apiclient 0.0.0-dev.bf507a2 → 0.0.0-dev.bfbcbc4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2218,6 +2218,30 @@ export interface DomainCreateInputDTO {
2218
2218
  * @memberof DomainCreateInputDTO
2219
2219
  */
2220
2220
  maxFunctionsInModule?: number;
2221
+ /**
2222
+ *
2223
+ * @type {number}
2224
+ * @memberof DomainCreateInputDTO
2225
+ */
2226
+ maxCustomRoles?: number;
2227
+ /**
2228
+ *
2229
+ * @type {number}
2230
+ * @memberof DomainCreateInputDTO
2231
+ */
2232
+ maxDiscordLinkedRoles?: number;
2233
+ /**
2234
+ *
2235
+ * @type {string}
2236
+ * @memberof DomainCreateInputDTO
2237
+ */
2238
+ serverRegistrationToken?: string;
2239
+ /**
2240
+ *
2241
+ * @type {boolean}
2242
+ * @memberof DomainCreateInputDTO
2243
+ */
2244
+ skipBuiltinSeeding?: boolean;
2221
2245
  }
2222
2246
  export declare const DomainCreateInputDTOStateEnum: {
2223
2247
  readonly Active: "ACTIVE";
@@ -2372,6 +2396,18 @@ export interface DomainOutputDTO {
2372
2396
  * @memberof DomainOutputDTO
2373
2397
  */
2374
2398
  maxFunctionsInModule: number;
2399
+ /**
2400
+ *
2401
+ * @type {number}
2402
+ * @memberof DomainOutputDTO
2403
+ */
2404
+ maxCustomRoles: number;
2405
+ /**
2406
+ *
2407
+ * @type {number}
2408
+ * @memberof DomainOutputDTO
2409
+ */
2410
+ maxDiscordLinkedRoles: number;
2375
2411
  /**
2376
2412
  *
2377
2413
  * @type {string}
@@ -2592,6 +2628,18 @@ export interface DomainUpdateInputDTO {
2592
2628
  * @memberof DomainUpdateInputDTO
2593
2629
  */
2594
2630
  maxFunctionsInModule?: number;
2631
+ /**
2632
+ *
2633
+ * @type {number}
2634
+ * @memberof DomainUpdateInputDTO
2635
+ */
2636
+ maxCustomRoles?: number;
2637
+ /**
2638
+ *
2639
+ * @type {number}
2640
+ * @memberof DomainUpdateInputDTO
2641
+ */
2642
+ maxDiscordLinkedRoles?: number;
2595
2643
  }
2596
2644
  export declare const DomainUpdateInputDTOStateEnum: {
2597
2645
  readonly Active: "ACTIVE";
@@ -2599,6 +2647,50 @@ export declare const DomainUpdateInputDTOStateEnum: {
2599
2647
  readonly Maintenance: "MAINTENANCE";
2600
2648
  };
2601
2649
  export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
2650
+ /**
2651
+ *
2652
+ * @export
2653
+ * @interface EffectiveStorefrontConfigDTO
2654
+ */
2655
+ export interface EffectiveStorefrontConfigDTO {
2656
+ /**
2657
+ *
2658
+ * @type {string}
2659
+ * @memberof EffectiveStorefrontConfigDTO
2660
+ */
2661
+ templateId: string;
2662
+ /**
2663
+ *
2664
+ * @type {object}
2665
+ * @memberof EffectiveStorefrontConfigDTO
2666
+ */
2667
+ values: object;
2668
+ /**
2669
+ *
2670
+ * @type {object}
2671
+ * @memberof EffectiveStorefrontConfigDTO
2672
+ */
2673
+ schema: object;
2674
+ }
2675
+ /**
2676
+ *
2677
+ * @export
2678
+ * @interface EffectiveStorefrontConfigOutputDTOAPI
2679
+ */
2680
+ export interface EffectiveStorefrontConfigOutputDTOAPI {
2681
+ /**
2682
+ *
2683
+ * @type {EffectiveStorefrontConfigDTO}
2684
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2685
+ */
2686
+ data: EffectiveStorefrontConfigDTO;
2687
+ /**
2688
+ *
2689
+ * @type {MetadataOutput}
2690
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2691
+ */
2692
+ meta: MetadataOutput;
2693
+ }
2602
2694
  /**
2603
2695
  *
2604
2696
  * @export
@@ -3132,6 +3224,7 @@ export declare const EventCreateDTOEventNameEnum: {
3132
3224
  readonly PlayerInventoryChanged: "player-inventory-changed";
3133
3225
  readonly EventRateLimited: "event-rate-limited";
3134
3226
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3227
+ readonly InviteLinkCreated: "invite-link-created";
3135
3228
  readonly PlayerConnected: "player-connected";
3136
3229
  readonly PlayerDisconnected: "player-disconnected";
3137
3230
  readonly ChatMessage: "chat-message";
@@ -3346,6 +3439,7 @@ export declare const EventExploreFiltersDTOEventNameEnum: {
3346
3439
  readonly PlayerInventoryChanged: "player-inventory-changed";
3347
3440
  readonly EventRateLimited: "event-rate-limited";
3348
3441
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3442
+ readonly InviteLinkCreated: "invite-link-created";
3349
3443
  readonly PlayerConnected: "player-connected";
3350
3444
  readonly PlayerDisconnected: "player-disconnected";
3351
3445
  readonly ChatMessage: "chat-message";
@@ -3712,6 +3806,7 @@ export declare const EventOutputDTOEventNameEnum: {
3712
3806
  readonly PlayerInventoryChanged: "player-inventory-changed";
3713
3807
  readonly EventRateLimited: "event-rate-limited";
3714
3808
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3809
+ readonly InviteLinkCreated: "invite-link-created";
3715
3810
  readonly PlayerConnected: "player-connected";
3716
3811
  readonly PlayerDisconnected: "player-disconnected";
3717
3812
  readonly ChatMessage: "chat-message";
@@ -3723,7 +3818,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
3723
3818
  * @type EventOutputDTOMeta
3724
3819
  * @export
3725
3820
  */
3726
- export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
3821
+ export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventInviteLinkCreated | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
3727
3822
  /**
3728
3823
  *
3729
3824
  * @export
@@ -3900,6 +3995,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
3900
3995
  readonly PlayerInventoryChanged: "player-inventory-changed";
3901
3996
  readonly EventRateLimited: "event-rate-limited";
3902
3997
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3998
+ readonly InviteLinkCreated: "invite-link-created";
3903
3999
  readonly PlayerConnected: "player-connected";
3904
4000
  readonly PlayerDisconnected: "player-disconnected";
3905
4001
  readonly ChatMessage: "chat-message";
@@ -5334,6 +5430,7 @@ export declare const HookCreateDTOEventTypeEnum: {
5334
5430
  readonly PlayerInventoryChanged: "player-inventory-changed";
5335
5431
  readonly EventRateLimited: "event-rate-limited";
5336
5432
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5433
+ readonly InviteLinkCreated: "invite-link-created";
5337
5434
  };
5338
5435
  export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
5339
5436
  /**
@@ -5494,6 +5591,7 @@ export declare const HookOutputDTOEventTypeEnum: {
5494
5591
  readonly PlayerInventoryChanged: "player-inventory-changed";
5495
5592
  readonly EventRateLimited: "event-rate-limited";
5496
5593
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5594
+ readonly InviteLinkCreated: "invite-link-created";
5497
5595
  };
5498
5596
  export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
5499
5597
  /**
@@ -5599,6 +5697,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
5599
5697
  readonly PlayerInventoryChanged: "player-inventory-changed";
5600
5698
  readonly EventRateLimited: "event-rate-limited";
5601
5699
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5700
+ readonly InviteLinkCreated: "invite-link-created";
5602
5701
  };
5603
5702
  export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
5604
5703
  /**
@@ -5769,6 +5868,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
5769
5868
  readonly PlayerInventoryChanged: "player-inventory-changed";
5770
5869
  readonly EventRateLimited: "event-rate-limited";
5771
5870
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5871
+ readonly InviteLinkCreated: "invite-link-created";
5772
5872
  };
5773
5873
  export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
5774
5874
  /**
@@ -5855,6 +5955,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
5855
5955
  readonly PlayerInventoryChanged: "player-inventory-changed";
5856
5956
  readonly EventRateLimited: "event-rate-limited";
5857
5957
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5958
+ readonly InviteLinkCreated: "invite-link-created";
5858
5959
  };
5859
5960
  export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
5860
5961
  /**
@@ -6181,6 +6282,7 @@ export declare const IHookEventTypeEnum: {
6181
6282
  readonly PlayerInventoryChanged: "player-inventory-changed";
6182
6283
  readonly EventRateLimited: "event-rate-limited";
6183
6284
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
6285
+ readonly InviteLinkCreated: "invite-link-created";
6184
6286
  };
6185
6287
  export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
6186
6288
  /**
@@ -6546,64 +6648,504 @@ export interface InsightDTO {
6546
6648
  * @type {string}
6547
6649
  * @memberof InsightDTO
6548
6650
  */
6549
- description: string;
6651
+ description: string;
6652
+ /**
6653
+ *
6654
+ * @type {string}
6655
+ * @memberof InsightDTO
6656
+ */
6657
+ value?: string;
6658
+ /**
6659
+ *
6660
+ * @type {string}
6661
+ * @memberof InsightDTO
6662
+ */
6663
+ icon: string;
6664
+ }
6665
+ /**
6666
+ *
6667
+ * @export
6668
+ * @interface InstallModuleDTO
6669
+ */
6670
+ export interface InstallModuleDTO {
6671
+ /**
6672
+ *
6673
+ * @type {string}
6674
+ * @memberof InstallModuleDTO
6675
+ */
6676
+ versionId: string;
6677
+ /**
6678
+ *
6679
+ * @type {string}
6680
+ * @memberof InstallModuleDTO
6681
+ */
6682
+ gameServerId: string;
6683
+ /**
6684
+ *
6685
+ * @type {string}
6686
+ * @memberof InstallModuleDTO
6687
+ */
6688
+ userConfig?: string;
6689
+ /**
6690
+ *
6691
+ * @type {string}
6692
+ * @memberof InstallModuleDTO
6693
+ */
6694
+ systemConfig?: string;
6695
+ }
6696
+ /**
6697
+ *
6698
+ * @export
6699
+ * @interface InviteCreateDTO
6700
+ */
6701
+ export interface InviteCreateDTO {
6702
+ /**
6703
+ *
6704
+ * @type {string}
6705
+ * @memberof InviteCreateDTO
6706
+ */
6707
+ email: string;
6708
+ }
6709
+ /**
6710
+ *
6711
+ * @export
6712
+ * @interface InviteLinkCreateInputDTO
6713
+ */
6714
+ export interface InviteLinkCreateInputDTO {
6715
+ /**
6716
+ *
6717
+ * @type {Array<string>}
6718
+ * @memberof InviteLinkCreateInputDTO
6719
+ */
6720
+ roleIds?: Array<string>;
6721
+ /**
6722
+ *
6723
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6724
+ * @memberof InviteLinkCreateInputDTO
6725
+ */
6726
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6727
+ /**
6728
+ *
6729
+ * @type {number}
6730
+ * @memberof InviteLinkCreateInputDTO
6731
+ */
6732
+ maxUses?: number;
6733
+ }
6734
+ /**
6735
+ *
6736
+ * @export
6737
+ * @interface InviteLinkCreateResultDTO
6738
+ */
6739
+ export interface InviteLinkCreateResultDTO {
6740
+ /**
6741
+ *
6742
+ * @type {string}
6743
+ * @memberof InviteLinkCreateResultDTO
6744
+ */
6745
+ inviteUrl: string;
6746
+ /**
6747
+ *
6748
+ * @type {string}
6749
+ * @memberof InviteLinkCreateResultDTO
6750
+ */
6751
+ token: string;
6752
+ /**
6753
+ *
6754
+ * @type {string}
6755
+ * @memberof InviteLinkCreateResultDTO
6756
+ */
6757
+ id: string;
6758
+ /**
6759
+ *
6760
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6761
+ * @memberof InviteLinkCreateResultDTO
6762
+ */
6763
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6764
+ /**
6765
+ *
6766
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6767
+ * @memberof InviteLinkCreateResultDTO
6768
+ */
6769
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6770
+ /**
6771
+ *
6772
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6773
+ * @memberof InviteLinkCreateResultDTO
6774
+ */
6775
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6776
+ /**
6777
+ *
6778
+ * @type {number}
6779
+ * @memberof InviteLinkCreateResultDTO
6780
+ */
6781
+ maxUses?: number;
6782
+ /**
6783
+ *
6784
+ * @type {number}
6785
+ * @memberof InviteLinkCreateResultDTO
6786
+ */
6787
+ uses: number;
6788
+ /**
6789
+ *
6790
+ * @type {number}
6791
+ * @memberof InviteLinkCreateResultDTO
6792
+ */
6793
+ remaining?: number;
6794
+ /**
6795
+ *
6796
+ * @type {string}
6797
+ * @memberof InviteLinkCreateResultDTO
6798
+ */
6799
+ status: InviteLinkCreateResultDTOStatusEnum;
6800
+ /**
6801
+ *
6802
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6803
+ * @memberof InviteLinkCreateResultDTO
6804
+ */
6805
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6806
+ /**
6807
+ *
6808
+ * @type {string}
6809
+ * @memberof InviteLinkCreateResultDTO
6810
+ */
6811
+ createdBy?: string;
6812
+ /**
6813
+ *
6814
+ * @type {Array<InviteLinkRoleDTO>}
6815
+ * @memberof InviteLinkCreateResultDTO
6816
+ */
6817
+ roles: Array<InviteLinkRoleDTO>;
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];
6826
+ /**
6827
+ *
6828
+ * @export
6829
+ * @interface InviteLinkCreateResultDTOAPI
6830
+ */
6831
+ export interface InviteLinkCreateResultDTOAPI {
6832
+ /**
6833
+ *
6834
+ * @type {InviteLinkCreateResultDTO}
6835
+ * @memberof InviteLinkCreateResultDTOAPI
6836
+ */
6837
+ data: InviteLinkCreateResultDTO;
6838
+ /**
6839
+ *
6840
+ * @type {MetadataOutput}
6841
+ * @memberof InviteLinkCreateResultDTOAPI
6842
+ */
6843
+ meta: MetadataOutput;
6844
+ }
6845
+ /**
6846
+ *
6847
+ * @export
6848
+ * @interface InviteLinkOutputArrayDTOAPI
6849
+ */
6850
+ export interface InviteLinkOutputArrayDTOAPI {
6851
+ /**
6852
+ *
6853
+ * @type {Array<InviteLinkOutputDTO>}
6854
+ * @memberof InviteLinkOutputArrayDTOAPI
6855
+ */
6856
+ data: Array<InviteLinkOutputDTO>;
6857
+ /**
6858
+ *
6859
+ * @type {MetadataOutput}
6860
+ * @memberof InviteLinkOutputArrayDTOAPI
6861
+ */
6862
+ meta: MetadataOutput;
6863
+ }
6864
+ /**
6865
+ *
6866
+ * @export
6867
+ * @interface InviteLinkOutputDTO
6868
+ */
6869
+ export interface InviteLinkOutputDTO {
6870
+ /**
6871
+ *
6872
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6873
+ * @memberof InviteLinkOutputDTO
6874
+ */
6875
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6876
+ /**
6877
+ *
6878
+ * @type {number}
6879
+ * @memberof InviteLinkOutputDTO
6880
+ */
6881
+ maxUses?: number;
6882
+ /**
6883
+ *
6884
+ * @type {number}
6885
+ * @memberof InviteLinkOutputDTO
6886
+ */
6887
+ uses: number;
6888
+ /**
6889
+ *
6890
+ * @type {number}
6891
+ * @memberof InviteLinkOutputDTO
6892
+ */
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;
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];
6944
+ /**
6945
+ *
6946
+ * @export
6947
+ * @interface InviteLinkOutputDTOAPI
6948
+ */
6949
+ export interface InviteLinkOutputDTOAPI {
6950
+ /**
6951
+ *
6952
+ * @type {InviteLinkOutputDTO}
6953
+ * @memberof InviteLinkOutputDTOAPI
6954
+ */
6955
+ data: InviteLinkOutputDTO;
6956
+ /**
6957
+ *
6958
+ * @type {MetadataOutput}
6959
+ * @memberof InviteLinkOutputDTOAPI
6960
+ */
6961
+ meta: MetadataOutput;
6962
+ }
6963
+ /**
6964
+ *
6965
+ * @export
6966
+ * @interface InviteLinkPreviewDTO
6967
+ */
6968
+ export interface InviteLinkPreviewDTO {
6969
+ /**
6970
+ *
6971
+ * @type {InviteLinkPreviewDomainDTO}
6972
+ * @memberof InviteLinkPreviewDTO
6973
+ */
6974
+ domain: InviteLinkPreviewDomainDTO;
6975
+ /**
6976
+ *
6977
+ * @type {Array<InviteLinkPreviewRoleDTO>}
6978
+ * @memberof InviteLinkPreviewDTO
6979
+ */
6980
+ roles: Array<InviteLinkPreviewRoleDTO>;
6981
+ /**
6982
+ *
6983
+ * @type {string}
6984
+ * @memberof InviteLinkPreviewDTO
6985
+ */
6986
+ status: InviteLinkPreviewDTOStatusEnum;
6987
+ /**
6988
+ *
6989
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6990
+ * @memberof InviteLinkPreviewDTO
6991
+ */
6992
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6993
+ /**
6994
+ *
6995
+ * @type {number}
6996
+ * @memberof InviteLinkPreviewDTO
6997
+ */
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 {
7013
+ /**
7014
+ *
7015
+ * @type {InviteLinkPreviewDTO}
7016
+ * @memberof InviteLinkPreviewDTOAPI
7017
+ */
7018
+ data: InviteLinkPreviewDTO;
7019
+ /**
7020
+ *
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;
6550
7101
  /**
6551
7102
  *
6552
- * @type {string}
6553
- * @memberof InsightDTO
7103
+ * @type {any}
7104
+ * @memberof InviteLinkSearchInputDTO
6554
7105
  */
6555
- value?: string;
7106
+ search?: any;
6556
7107
  /**
6557
7108
  *
6558
- * @type {string}
6559
- * @memberof InsightDTO
7109
+ * @type {any}
7110
+ * @memberof InviteLinkSearchInputDTO
6560
7111
  */
6561
- icon: string;
6562
- }
6563
- /**
6564
- *
6565
- * @export
6566
- * @interface InstallModuleDTO
6567
- */
6568
- export interface InstallModuleDTO {
7112
+ greaterThan?: any;
6569
7113
  /**
6570
7114
  *
6571
- * @type {string}
6572
- * @memberof InstallModuleDTO
7115
+ * @type {any}
7116
+ * @memberof InviteLinkSearchInputDTO
6573
7117
  */
6574
- versionId: string;
7118
+ lessThan?: any;
6575
7119
  /**
6576
7120
  *
6577
- * @type {string}
6578
- * @memberof InstallModuleDTO
7121
+ * @type {number}
7122
+ * @memberof InviteLinkSearchInputDTO
6579
7123
  */
6580
- gameServerId: string;
7124
+ page?: number;
6581
7125
  /**
6582
7126
  *
6583
- * @type {string}
6584
- * @memberof InstallModuleDTO
7127
+ * @type {number}
7128
+ * @memberof InviteLinkSearchInputDTO
6585
7129
  */
6586
- userConfig?: string;
7130
+ limit?: number;
6587
7131
  /**
6588
7132
  *
6589
7133
  * @type {string}
6590
- * @memberof InstallModuleDTO
7134
+ * @memberof InviteLinkSearchInputDTO
6591
7135
  */
6592
- systemConfig?: string;
6593
- }
6594
- /**
6595
- *
6596
- * @export
6597
- * @interface InviteCreateDTO
6598
- */
6599
- export interface InviteCreateDTO {
7136
+ sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
6600
7137
  /**
6601
7138
  *
6602
- * @type {string}
6603
- * @memberof InviteCreateDTO
7139
+ * @type {Array<string>}
7140
+ * @memberof InviteLinkSearchInputDTO
6604
7141
  */
6605
- email: string;
7142
+ extend?: Array<string>;
6606
7143
  }
7144
+ export declare const InviteLinkSearchInputDTOSortDirectionEnum: {
7145
+ readonly Asc: "asc";
7146
+ readonly Desc: "desc";
7147
+ };
7148
+ export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
6607
7149
  /**
6608
7150
  *
6609
7151
  * @export
@@ -7345,7 +7887,7 @@ export interface MeOutputDTO {
7345
7887
  * @type {UserOutputWithRolesDTO}
7346
7888
  * @memberof MeOutputDTO
7347
7889
  */
7348
- user: UserOutputWithRolesDTO;
7890
+ user?: UserOutputWithRolesDTO;
7349
7891
  /**
7350
7892
  *
7351
7893
  * @type {Array<DomainOutputDTO>}
@@ -7357,7 +7899,7 @@ export interface MeOutputDTO {
7357
7899
  * @type {string}
7358
7900
  * @memberof MeOutputDTO
7359
7901
  */
7360
- domain: string;
7902
+ domain?: string;
7361
7903
  /**
7362
7904
  *
7363
7905
  * @type {PlayerOutputWithRolesDTO}
@@ -11739,6 +12281,19 @@ export declare const RecentOrderDTOStatusEnum: {
11739
12281
  readonly Canceled: "CANCELED";
11740
12282
  };
11741
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
+ }
11742
12297
  /**
11743
12298
  *
11744
12299
  * @export
@@ -12545,7 +13100,7 @@ export interface RoleUpdateInputDTO {
12545
13100
  * @type {string}
12546
13101
  * @memberof RoleUpdateInputDTO
12547
13102
  */
12548
- linkedDiscordRoleId?: string;
13103
+ linkedDiscordRoleId?: string | null;
12549
13104
  }
12550
13105
  /**
12551
13106
  *
@@ -13739,6 +14294,25 @@ export interface ShopDeadStockItemDTO {
13739
14294
  */
13740
14295
  daysSinceLastSale?: number;
13741
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
+ }
13742
14316
  /**
13743
14317
  *
13744
14318
  * @export
@@ -13764,6 +14338,44 @@ export interface ShopImportOptions {
13764
14338
  */
13765
14339
  gameServerId: string;
13766
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
+ }
13767
14379
  /**
13768
14380
  *
13769
14381
  * @export
@@ -14886,6 +15498,175 @@ export interface SmallModuleVersionOutputDTO {
14886
15498
  */
14887
15499
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14888
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;
15619
+ /**
15620
+ *
15621
+ * @type {object}
15622
+ * @memberof StorefrontConfigUpsertDTO
15623
+ */
15624
+ values: object;
15625
+ }
15626
+ /**
15627
+ *
15628
+ * @export
15629
+ * @interface StorefrontTemplateDTO
15630
+ */
15631
+ export interface StorefrontTemplateDTO {
15632
+ /**
15633
+ *
15634
+ * @type {string}
15635
+ * @memberof StorefrontTemplateDTO
15636
+ */
15637
+ id: string;
15638
+ /**
15639
+ *
15640
+ * @type {string}
15641
+ * @memberof StorefrontTemplateDTO
15642
+ */
15643
+ name: string;
15644
+ /**
15645
+ *
15646
+ * @type {object}
15647
+ * @memberof StorefrontTemplateDTO
15648
+ */
15649
+ schema: object;
15650
+ }
15651
+ /**
15652
+ *
15653
+ * @export
15654
+ * @interface StorefrontTemplateOutputArrayDTOAPI
15655
+ */
15656
+ export interface StorefrontTemplateOutputArrayDTOAPI {
15657
+ /**
15658
+ *
15659
+ * @type {Array<StorefrontTemplateDTO>}
15660
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15661
+ */
15662
+ data: Array<StorefrontTemplateDTO>;
15663
+ /**
15664
+ *
15665
+ * @type {MetadataOutput}
15666
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15667
+ */
15668
+ meta: MetadataOutput;
15669
+ }
14889
15670
  /**
14890
15671
  *
14891
15672
  * @export
@@ -15207,6 +15988,19 @@ export interface TakaroEventHookExecuted {
15207
15988
  */
15208
15989
  timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15209
15990
  }
15991
+ /**
15992
+ *
15993
+ * @export
15994
+ * @interface TakaroEventInviteLinkCreated
15995
+ */
15996
+ export interface TakaroEventInviteLinkCreated {
15997
+ /**
15998
+ *
15999
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16000
+ * @memberof TakaroEventInviteLinkCreated
16001
+ */
16002
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16003
+ }
15210
16004
  /**
15211
16005
  *
15212
16006
  * @export
@@ -16485,6 +17279,38 @@ export interface UserAssignmentOutputDTO {
16485
17279
  */
16486
17280
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16487
17281
  }
17282
+ /**
17283
+ *
17284
+ * @export
17285
+ * @interface UserCountOutputDTO
17286
+ */
17287
+ export interface UserCountOutputDTO {
17288
+ /**
17289
+ *
17290
+ * @type {number}
17291
+ * @memberof UserCountOutputDTO
17292
+ */
17293
+ count: number;
17294
+ }
17295
+ /**
17296
+ *
17297
+ * @export
17298
+ * @interface UserCountOutputDTOAPI
17299
+ */
17300
+ export interface UserCountOutputDTOAPI {
17301
+ /**
17302
+ *
17303
+ * @type {UserCountOutputDTO}
17304
+ * @memberof UserCountOutputDTOAPI
17305
+ */
17306
+ data: UserCountOutputDTO;
17307
+ /**
17308
+ *
17309
+ * @type {MetadataOutput}
17310
+ * @memberof UserCountOutputDTOAPI
17311
+ */
17312
+ meta: MetadataOutput;
17313
+ }
16488
17314
  /**
16489
17315
  *
16490
17316
  * @export
@@ -16632,6 +17458,18 @@ export interface UserOutputDTO {
16632
17458
  * @memberof UserOutputDTO
16633
17459
  */
16634
17460
  isDashboardUser: boolean;
17461
+ /**
17462
+ *
17463
+ * @type {boolean}
17464
+ * @memberof UserOutputDTO
17465
+ */
17466
+ isSupportAccount: boolean;
17467
+ /**
17468
+ *
17469
+ * @type {string}
17470
+ * @memberof UserOutputDTO
17471
+ */
17472
+ inviteLinkId?: string;
16635
17473
  /**
16636
17474
  *
16637
17475
  * @type {string}
@@ -16748,6 +17586,37 @@ export interface UserOutputWithRolesDTO {
16748
17586
  * @memberof UserOutputWithRolesDTO
16749
17587
  */
16750
17588
  isDashboardUser: boolean;
17589
+ /**
17590
+ *
17591
+ * @type {boolean}
17592
+ * @memberof UserOutputWithRolesDTO
17593
+ */
17594
+ isSupportAccount: boolean;
17595
+ /**
17596
+ *
17597
+ * @type {string}
17598
+ * @memberof UserOutputWithRolesDTO
17599
+ */
17600
+ inviteLinkId?: string;
17601
+ }
17602
+ /**
17603
+ *
17604
+ * @export
17605
+ * @interface UserOutputWithRolesDTOAPI
17606
+ */
17607
+ export interface UserOutputWithRolesDTOAPI {
17608
+ /**
17609
+ *
17610
+ * @type {UserOutputWithRolesDTO}
17611
+ * @memberof UserOutputWithRolesDTOAPI
17612
+ */
17613
+ data: UserOutputWithRolesDTO;
17614
+ /**
17615
+ *
17616
+ * @type {MetadataOutput}
17617
+ * @memberof UserOutputWithRolesDTOAPI
17618
+ */
17619
+ meta: MetadataOutput;
16751
17620
  }
16752
17621
  /**
16753
17622
  *
@@ -17417,7 +18286,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17417
18286
  */
17418
18287
  analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17419
18288
  /**
17420
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18289
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17421
18290
  * @summary Get module health scores
17422
18291
  * @param {string} [startDate]
17423
18292
  * @param {string} [endDate]
@@ -17650,7 +18519,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17650
18519
  analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17651
18520
  /**
17652
18521
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17653
- * @summary Get top modules by event volume
18522
+ * @summary Get top modules by execution volume
17654
18523
  * @param {string} [startDate]
17655
18524
  * @param {string} [endDate]
17656
18525
  * @param {string} [gameServerId]
@@ -17806,7 +18675,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17806
18675
  */
17807
18676
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
17808
18677
  /**
17809
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18678
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17810
18679
  * @summary Get module health scores
17811
18680
  * @param {string} [startDate]
17812
18681
  * @param {string} [endDate]
@@ -18039,7 +18908,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
18039
18908
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
18040
18909
  /**
18041
18910
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18042
- * @summary Get top modules by event volume
18911
+ * @summary Get top modules by execution volume
18043
18912
  * @param {string} [startDate]
18044
18913
  * @param {string} [endDate]
18045
18914
  * @param {string} [gameServerId]
@@ -18195,7 +19064,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18195
19064
  */
18196
19065
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
18197
19066
  /**
18198
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19067
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18199
19068
  * @summary Get module health scores
18200
19069
  * @param {string} [startDate]
18201
19070
  * @param {string} [endDate]
@@ -18428,7 +19297,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18428
19297
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
18429
19298
  /**
18430
19299
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18431
- * @summary Get top modules by event volume
19300
+ * @summary Get top modules by execution volume
18432
19301
  * @param {string} [startDate]
18433
19302
  * @param {string} [endDate]
18434
19303
  * @param {string} [gameServerId]
@@ -18598,7 +19467,7 @@ export declare class AnalyticsApi extends BaseAPI {
18598
19467
  */
18599
19468
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
18600
19469
  /**
18601
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19470
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18602
19471
  * @summary Get module health scores
18603
19472
  * @param {string} [startDate]
18604
19473
  * @param {string} [endDate]
@@ -18852,7 +19721,7 @@ export declare class AnalyticsApi extends BaseAPI {
18852
19721
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
18853
19722
  /**
18854
19723
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18855
- * @summary Get top modules by event volume
19724
+ * @summary Get top modules by execution volume
18856
19725
  * @param {string} [startDate]
18857
19726
  * @param {string} [endDate]
18858
19727
  * @param {string} [gameServerId]
@@ -20329,6 +21198,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
20329
21198
  * @throws {RequiredError}
20330
21199
  */
20331
21200
  domainControllerCreate: (domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21201
+ /**
21202
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21203
+ * @summary Create admin invite link for a domain
21204
+ * @param {string} id
21205
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21206
+ * @param {*} [options] Override http request option.
21207
+ * @throws {RequiredError}
21208
+ */
21209
+ domainControllerCreateInviteLink: (id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20332
21210
  /**
20333
21211
  * <br> OperationId: `DomainControllerGetOne`
20334
21212
  * @summary Get one
@@ -20393,6 +21271,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
20393
21271
  * @throws {RequiredError}
20394
21272
  */
20395
21273
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainCreateOutputDTOAPI>>;
21274
+ /**
21275
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21276
+ * @summary Create admin invite link for a domain
21277
+ * @param {string} id
21278
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21279
+ * @param {*} [options] Override http request option.
21280
+ * @throws {RequiredError}
21281
+ */
21282
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
20396
21283
  /**
20397
21284
  * <br> OperationId: `DomainControllerGetOne`
20398
21285
  * @summary Get one
@@ -20457,6 +21344,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
20457
21344
  * @throws {RequiredError}
20458
21345
  */
20459
21346
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainCreateOutputDTOAPI>;
21347
+ /**
21348
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21349
+ * @summary Create admin invite link for a domain
21350
+ * @param {string} id
21351
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21352
+ * @param {*} [options] Override http request option.
21353
+ * @throws {RequiredError}
21354
+ */
21355
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
20460
21356
  /**
20461
21357
  * <br> OperationId: `DomainControllerGetOne`
20462
21358
  * @summary Get one
@@ -20524,6 +21420,16 @@ export declare class DomainApi extends BaseAPI {
20524
21420
  * @memberof DomainApi
20525
21421
  */
20526
21422
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainCreateOutputDTOAPI, any>>;
21423
+ /**
21424
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21425
+ * @summary Create admin invite link for a domain
21426
+ * @param {string} id
21427
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21428
+ * @param {*} [options] Override http request option.
21429
+ * @throws {RequiredError}
21430
+ * @memberof DomainApi
21431
+ */
21432
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
20527
21433
  /**
20528
21434
  * <br> OperationId: `DomainControllerGetOne`
20529
21435
  * @summary Get one
@@ -22442,6 +23348,197 @@ export declare class HookApi extends BaseAPI {
22442
23348
  */
22443
23349
  hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
22444
23350
  }
23351
+ /**
23352
+ * InviteLinkApi - axios parameter creator
23353
+ * @export
23354
+ */
23355
+ export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
23356
+ /**
23357
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23358
+ * @summary Create invite link
23359
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23360
+ * @param {*} [options] Override http request option.
23361
+ * @throws {RequiredError}
23362
+ */
23363
+ inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23364
+ /**
23365
+ * <br> OperationId: `InviteLinkControllerPreview`
23366
+ * @summary Preview
23367
+ * @param {string} token
23368
+ * @param {*} [options] Override http request option.
23369
+ * @throws {RequiredError}
23370
+ */
23371
+ inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23372
+ /**
23373
+ * <br> OperationId: `InviteLinkControllerRedeem`
23374
+ * @summary Redeem
23375
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23376
+ * @param {*} [options] Override http request option.
23377
+ * @throws {RequiredError}
23378
+ */
23379
+ inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23380
+ /**
23381
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23382
+ * @summary Revoke
23383
+ * @param {string} id
23384
+ * @param {*} [options] Override http request option.
23385
+ * @throws {RequiredError}
23386
+ */
23387
+ inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23388
+ /**
23389
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23390
+ * @summary Search
23391
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23392
+ * @param {*} [options] Override http request option.
23393
+ * @throws {RequiredError}
23394
+ */
23395
+ inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23396
+ };
23397
+ /**
23398
+ * InviteLinkApi - functional programming interface
23399
+ * @export
23400
+ */
23401
+ export declare const InviteLinkApiFp: (configuration?: Configuration) => {
23402
+ /**
23403
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23404
+ * @summary Create invite link
23405
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23406
+ * @param {*} [options] Override http request option.
23407
+ * @throws {RequiredError}
23408
+ */
23409
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
23410
+ /**
23411
+ * <br> OperationId: `InviteLinkControllerPreview`
23412
+ * @summary Preview
23413
+ * @param {string} token
23414
+ * @param {*} [options] Override http request option.
23415
+ * @throws {RequiredError}
23416
+ */
23417
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
23418
+ /**
23419
+ * <br> OperationId: `InviteLinkControllerRedeem`
23420
+ * @summary Redeem
23421
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23422
+ * @param {*} [options] Override http request option.
23423
+ * @throws {RequiredError}
23424
+ */
23425
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
23426
+ /**
23427
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23428
+ * @summary Revoke
23429
+ * @param {string} id
23430
+ * @param {*} [options] Override http request option.
23431
+ * @throws {RequiredError}
23432
+ */
23433
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23434
+ /**
23435
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23436
+ * @summary Search
23437
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23438
+ * @param {*} [options] Override http request option.
23439
+ * @throws {RequiredError}
23440
+ */
23441
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
23442
+ };
23443
+ /**
23444
+ * InviteLinkApi - factory interface
23445
+ * @export
23446
+ */
23447
+ export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23448
+ /**
23449
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23450
+ * @summary Create invite link
23451
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23452
+ * @param {*} [options] Override http request option.
23453
+ * @throws {RequiredError}
23454
+ */
23455
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
23456
+ /**
23457
+ * <br> OperationId: `InviteLinkControllerPreview`
23458
+ * @summary Preview
23459
+ * @param {string} token
23460
+ * @param {*} [options] Override http request option.
23461
+ * @throws {RequiredError}
23462
+ */
23463
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
23464
+ /**
23465
+ * <br> OperationId: `InviteLinkControllerRedeem`
23466
+ * @summary Redeem
23467
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23468
+ * @param {*} [options] Override http request option.
23469
+ * @throws {RequiredError}
23470
+ */
23471
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
23472
+ /**
23473
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23474
+ * @summary Revoke
23475
+ * @param {string} id
23476
+ * @param {*} [options] Override http request option.
23477
+ * @throws {RequiredError}
23478
+ */
23479
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23480
+ /**
23481
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23482
+ * @summary Search
23483
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23484
+ * @param {*} [options] Override http request option.
23485
+ * @throws {RequiredError}
23486
+ */
23487
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
23488
+ };
23489
+ /**
23490
+ * InviteLinkApi - object-oriented interface
23491
+ * @export
23492
+ * @class InviteLinkApi
23493
+ * @extends {BaseAPI}
23494
+ */
23495
+ export declare class InviteLinkApi extends BaseAPI {
23496
+ /**
23497
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23498
+ * @summary Create invite link
23499
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23500
+ * @param {*} [options] Override http request option.
23501
+ * @throws {RequiredError}
23502
+ * @memberof InviteLinkApi
23503
+ */
23504
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
23505
+ /**
23506
+ * <br> OperationId: `InviteLinkControllerPreview`
23507
+ * @summary Preview
23508
+ * @param {string} token
23509
+ * @param {*} [options] Override http request option.
23510
+ * @throws {RequiredError}
23511
+ * @memberof InviteLinkApi
23512
+ */
23513
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
23514
+ /**
23515
+ * <br> OperationId: `InviteLinkControllerRedeem`
23516
+ * @summary Redeem
23517
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23518
+ * @param {*} [options] Override http request option.
23519
+ * @throws {RequiredError}
23520
+ * @memberof InviteLinkApi
23521
+ */
23522
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
23523
+ /**
23524
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23525
+ * @summary Revoke
23526
+ * @param {string} id
23527
+ * @param {*} [options] Override http request option.
23528
+ * @throws {RequiredError}
23529
+ * @memberof InviteLinkApi
23530
+ */
23531
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23532
+ /**
23533
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23534
+ * @summary Search
23535
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23536
+ * @param {*} [options] Override http request option.
23537
+ * @throws {RequiredError}
23538
+ * @memberof InviteLinkApi
23539
+ */
23540
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
23541
+ }
22445
23542
  /**
22446
23543
  * ItemApi - axios parameter creator
22447
23544
  * @export
@@ -25354,7 +26451,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25354
26451
  * @param {*} [options] Override http request option.
25355
26452
  * @throws {RequiredError}
25356
26453
  */
25357
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26454
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
25358
26455
  /**
25359
26456
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25360
26457
  * @summary Search
@@ -25408,7 +26505,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25408
26505
  * @param {*} [options] Override http request option.
25409
26506
  * @throws {RequiredError}
25410
26507
  */
25411
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
26508
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
25412
26509
  /**
25413
26510
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25414
26511
  * @summary Search
@@ -25468,7 +26565,7 @@ export declare class ShopListingApi extends BaseAPI {
25468
26565
  * @throws {RequiredError}
25469
26566
  * @memberof ShopListingApi
25470
26567
  */
25471
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
26568
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
25472
26569
  /**
25473
26570
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25474
26571
  * @summary Search
@@ -25680,6 +26777,131 @@ export declare class ShopOrderApi extends BaseAPI {
25680
26777
  */
25681
26778
  shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
25682
26779
  }
26780
+ /**
26781
+ * StorefrontConfigApi - axios parameter creator
26782
+ * @export
26783
+ */
26784
+ export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Configuration) => {
26785
+ /**
26786
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26787
+ * @summary Get effective config
26788
+ * @param {string} gameServerId
26789
+ * @param {*} [options] Override http request option.
26790
+ * @throws {RequiredError}
26791
+ */
26792
+ storefrontConfigControllerGetEffectiveConfig: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26793
+ /**
26794
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26795
+ * @summary List templates
26796
+ * @param {*} [options] Override http request option.
26797
+ * @throws {RequiredError}
26798
+ */
26799
+ storefrontConfigControllerListTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26800
+ /**
26801
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26802
+ * @summary Set config
26803
+ * @param {string} gameServerId
26804
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26805
+ * @param {*} [options] Override http request option.
26806
+ * @throws {RequiredError}
26807
+ */
26808
+ storefrontConfigControllerSetConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26809
+ };
26810
+ /**
26811
+ * StorefrontConfigApi - functional programming interface
26812
+ * @export
26813
+ */
26814
+ export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
26815
+ /**
26816
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26817
+ * @summary Get effective config
26818
+ * @param {string} gameServerId
26819
+ * @param {*} [options] Override http request option.
26820
+ * @throws {RequiredError}
26821
+ */
26822
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26823
+ /**
26824
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26825
+ * @summary List templates
26826
+ * @param {*} [options] Override http request option.
26827
+ * @throws {RequiredError}
26828
+ */
26829
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>>;
26830
+ /**
26831
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26832
+ * @summary Set config
26833
+ * @param {string} gameServerId
26834
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26835
+ * @param {*} [options] Override http request option.
26836
+ * @throws {RequiredError}
26837
+ */
26838
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26839
+ };
26840
+ /**
26841
+ * StorefrontConfigApi - factory interface
26842
+ * @export
26843
+ */
26844
+ export declare const StorefrontConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26845
+ /**
26846
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26847
+ * @summary Get effective config
26848
+ * @param {string} gameServerId
26849
+ * @param {*} [options] Override http request option.
26850
+ * @throws {RequiredError}
26851
+ */
26852
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26853
+ /**
26854
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26855
+ * @summary List templates
26856
+ * @param {*} [options] Override http request option.
26857
+ * @throws {RequiredError}
26858
+ */
26859
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>;
26860
+ /**
26861
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26862
+ * @summary Set config
26863
+ * @param {string} gameServerId
26864
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26865
+ * @param {*} [options] Override http request option.
26866
+ * @throws {RequiredError}
26867
+ */
26868
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26869
+ };
26870
+ /**
26871
+ * StorefrontConfigApi - object-oriented interface
26872
+ * @export
26873
+ * @class StorefrontConfigApi
26874
+ * @extends {BaseAPI}
26875
+ */
26876
+ export declare class StorefrontConfigApi extends BaseAPI {
26877
+ /**
26878
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26879
+ * @summary Get effective config
26880
+ * @param {string} gameServerId
26881
+ * @param {*} [options] Override http request option.
26882
+ * @throws {RequiredError}
26883
+ * @memberof StorefrontConfigApi
26884
+ */
26885
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26886
+ /**
26887
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26888
+ * @summary List templates
26889
+ * @param {*} [options] Override http request option.
26890
+ * @throws {RequiredError}
26891
+ * @memberof StorefrontConfigApi
26892
+ */
26893
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontTemplateOutputArrayDTOAPI, any>>;
26894
+ /**
26895
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26896
+ * @summary Set config
26897
+ * @param {string} gameServerId
26898
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26899
+ * @param {*} [options] Override http request option.
26900
+ * @throws {RequiredError}
26901
+ * @memberof StorefrontConfigApi
26902
+ */
26903
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26904
+ }
25683
26905
  /**
25684
26906
  * TrackingApi - axios parameter creator
25685
26907
  * @export
@@ -25886,6 +27108,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25886
27108
  * @throws {RequiredError}
25887
27109
  */
25888
27110
  userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27111
+ /**
27112
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27113
+ * @summary Count billable dashboard users
27114
+ * @param {*} [options] Override http request option.
27115
+ * @throws {RequiredError}
27116
+ */
27117
+ userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25889
27118
  /**
25890
27119
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25891
27120
  * @summary Create
@@ -25914,6 +27143,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25914
27143
  * @summary Invite
25915
27144
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25916
27145
  * @param {*} [options] Override http request option.
27146
+ * @deprecated
25917
27147
  * @throws {RequiredError}
25918
27148
  */
25919
27149
  userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -26005,6 +27235,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
26005
27235
  * @throws {RequiredError}
26006
27236
  */
26007
27237
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
27238
+ /**
27239
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27240
+ * @summary Count billable dashboard users
27241
+ * @param {*} [options] Override http request option.
27242
+ * @throws {RequiredError}
27243
+ */
27244
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
26008
27245
  /**
26009
27246
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26010
27247
  * @summary Create
@@ -26033,6 +27270,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
26033
27270
  * @summary Invite
26034
27271
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26035
27272
  * @param {*} [options] Override http request option.
27273
+ * @deprecated
26036
27274
  * @throws {RequiredError}
26037
27275
  */
26038
27276
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
@@ -26124,6 +27362,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
26124
27362
  * @throws {RequiredError}
26125
27363
  */
26126
27364
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27365
+ /**
27366
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27367
+ * @summary Count billable dashboard users
27368
+ * @param {*} [options] Override http request option.
27369
+ * @throws {RequiredError}
27370
+ */
27371
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
26127
27372
  /**
26128
27373
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26129
27374
  * @summary Create
@@ -26152,6 +27397,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
26152
27397
  * @summary Invite
26153
27398
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26154
27399
  * @param {*} [options] Override http request option.
27400
+ * @deprecated
26155
27401
  * @throws {RequiredError}
26156
27402
  */
26157
27403
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
@@ -26246,6 +27492,14 @@ export declare class UserApi extends BaseAPI {
26246
27492
  * @memberof UserApi
26247
27493
  */
26248
27494
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27495
+ /**
27496
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27497
+ * @summary Count billable dashboard users
27498
+ * @param {*} [options] Override http request option.
27499
+ * @throws {RequiredError}
27500
+ * @memberof UserApi
27501
+ */
27502
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
26249
27503
  /**
26250
27504
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26251
27505
  * @summary Create
@@ -26277,6 +27531,7 @@ export declare class UserApi extends BaseAPI {
26277
27531
  * @summary Invite
26278
27532
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26279
27533
  * @param {*} [options] Override http request option.
27534
+ * @deprecated
26280
27535
  * @throws {RequiredError}
26281
27536
  * @memberof UserApi
26282
27537
  */