@takaro/apiclient 0.0.0-dev.db86b98 → 0.0.0-dev.db9320f

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;
@@ -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}
@@ -7513,7 +8055,7 @@ export interface MetadataOutput {
7513
8055
  * @type {ErrorOutput}
7514
8056
  * @memberof MetadataOutput
7515
8057
  */
7516
- error: ErrorOutput;
8058
+ error?: ErrorOutput;
7517
8059
  /**
7518
8060
  *
7519
8061
  * @type {number}
@@ -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
@@ -11750,7 +12305,7 @@ export interface RedirectQs {
11750
12305
  * @type {string}
11751
12306
  * @memberof RedirectQs
11752
12307
  */
11753
- redirect: string;
12308
+ redirect?: string;
11754
12309
  }
11755
12310
  /**
11756
12311
  *
@@ -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
  *
@@ -13729,40 +14284,97 @@ export interface ShopDeadStockItemDTO {
13729
14284
  /**
13730
14285
  *
13731
14286
  * @type {number}
13732
- * @memberof ShopDeadStockItemDTO
14287
+ * @memberof ShopDeadStockItemDTO
14288
+ */
14289
+ daysSinceCreated: number;
14290
+ /**
14291
+ *
14292
+ * @type {number}
14293
+ * @memberof ShopDeadStockItemDTO
14294
+ */
14295
+ daysSinceLastSale?: number;
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
+ }
14316
+ /**
14317
+ *
14318
+ * @export
14319
+ * @interface ShopImportOptions
14320
+ */
14321
+ export interface ShopImportOptions {
14322
+ /**
14323
+ *
14324
+ * @type {boolean}
14325
+ * @memberof ShopImportOptions
14326
+ */
14327
+ replace?: boolean;
14328
+ /**
14329
+ *
14330
+ * @type {boolean}
14331
+ * @memberof ShopImportOptions
14332
+ */
14333
+ draft?: boolean;
14334
+ /**
14335
+ *
14336
+ * @type {string}
14337
+ * @memberof ShopImportOptions
14338
+ */
14339
+ gameServerId: string;
14340
+ }
14341
+ /**
14342
+ *
14343
+ * @export
14344
+ * @interface ShopImportResultDTO
14345
+ */
14346
+ export interface ShopImportResultDTO {
14347
+ /**
14348
+ *
14349
+ * @type {number}
14350
+ * @memberof ShopImportResultDTO
13733
14351
  */
13734
- daysSinceCreated: number;
14352
+ imported: number;
13735
14353
  /**
13736
14354
  *
13737
- * @type {number}
13738
- * @memberof ShopDeadStockItemDTO
14355
+ * @type {Array<ShopImportFailureDTO>}
14356
+ * @memberof ShopImportResultDTO
13739
14357
  */
13740
- daysSinceLastSale?: number;
14358
+ failed: Array<ShopImportFailureDTO>;
13741
14359
  }
13742
14360
  /**
13743
14361
  *
13744
14362
  * @export
13745
- * @interface ShopImportOptions
14363
+ * @interface ShopImportResultDTOAPI
13746
14364
  */
13747
- export interface ShopImportOptions {
14365
+ export interface ShopImportResultDTOAPI {
13748
14366
  /**
13749
14367
  *
13750
- * @type {boolean}
13751
- * @memberof ShopImportOptions
13752
- */
13753
- replace?: boolean;
13754
- /**
13755
- *
13756
- * @type {boolean}
13757
- * @memberof ShopImportOptions
14368
+ * @type {ShopImportResultDTO}
14369
+ * @memberof ShopImportResultDTOAPI
13758
14370
  */
13759
- draft?: boolean;
14371
+ data: ShopImportResultDTO;
13760
14372
  /**
13761
14373
  *
13762
- * @type {string}
13763
- * @memberof ShopImportOptions
14374
+ * @type {MetadataOutput}
14375
+ * @memberof ShopImportResultDTOAPI
13764
14376
  */
13765
- gameServerId: string;
14377
+ meta: MetadataOutput;
13766
14378
  }
13767
14379
  /**
13768
14380
  *
@@ -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,49 @@ 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 {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
+ }
15210
16034
  /**
15211
16035
  *
15212
16036
  * @export
@@ -16485,6 +17309,38 @@ export interface UserAssignmentOutputDTO {
16485
17309
  */
16486
17310
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16487
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
+ }
16488
17344
  /**
16489
17345
  *
16490
17346
  * @export
@@ -16522,6 +17378,37 @@ export interface UserCreateInputDTO {
16522
17378
  */
16523
17379
  isDashboardUser?: boolean;
16524
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
+ }
16525
17412
  /**
16526
17413
  *
16527
17414
  * @export
@@ -16625,13 +17512,25 @@ export interface UserOutputDTO {
16625
17512
  * @type {PlayerOutputWithRolesDTO}
16626
17513
  * @memberof UserOutputDTO
16627
17514
  */
16628
- player: PlayerOutputWithRolesDTO;
17515
+ player?: PlayerOutputWithRolesDTO;
16629
17516
  /**
16630
17517
  *
16631
17518
  * @type {boolean}
16632
17519
  * @memberof UserOutputDTO
16633
17520
  */
16634
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;
16635
17534
  /**
16636
17535
  *
16637
17536
  * @type {string}
@@ -16738,16 +17637,47 @@ export interface UserOutputWithRolesDTO {
16738
17637
  playerId?: string;
16739
17638
  /**
16740
17639
  *
16741
- * @type {PlayerOutputWithRolesDTO}
16742
- * @memberof UserOutputWithRolesDTO
17640
+ * @type {PlayerOutputWithRolesDTO}
17641
+ * @memberof UserOutputWithRolesDTO
17642
+ */
17643
+ player?: PlayerOutputWithRolesDTO;
17644
+ /**
17645
+ *
17646
+ * @type {boolean}
17647
+ * @memberof UserOutputWithRolesDTO
17648
+ */
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
16743
17673
  */
16744
- player: PlayerOutputWithRolesDTO;
17674
+ data: UserOutputWithRolesDTO;
16745
17675
  /**
16746
17676
  *
16747
- * @type {boolean}
16748
- * @memberof UserOutputWithRolesDTO
17677
+ * @type {MetadataOutput}
17678
+ * @memberof UserOutputWithRolesDTOAPI
16749
17679
  */
16750
- isDashboardUser: boolean;
17680
+ meta: MetadataOutput;
16751
17681
  }
16752
17682
  /**
16753
17683
  *
@@ -17417,7 +18347,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17417
18347
  */
17418
18348
  analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17419
18349
  /**
17420
- * 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`
17421
18351
  * @summary Get module health scores
17422
18352
  * @param {string} [startDate]
17423
18353
  * @param {string} [endDate]
@@ -17650,7 +18580,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17650
18580
  analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17651
18581
  /**
17652
18582
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17653
- * @summary Get top modules by event volume
18583
+ * @summary Get top modules by execution volume
17654
18584
  * @param {string} [startDate]
17655
18585
  * @param {string} [endDate]
17656
18586
  * @param {string} [gameServerId]
@@ -17806,7 +18736,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17806
18736
  */
17807
18737
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
17808
18738
  /**
17809
- * 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`
17810
18740
  * @summary Get module health scores
17811
18741
  * @param {string} [startDate]
17812
18742
  * @param {string} [endDate]
@@ -18039,7 +18969,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
18039
18969
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
18040
18970
  /**
18041
18971
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18042
- * @summary Get top modules by event volume
18972
+ * @summary Get top modules by execution volume
18043
18973
  * @param {string} [startDate]
18044
18974
  * @param {string} [endDate]
18045
18975
  * @param {string} [gameServerId]
@@ -18195,7 +19125,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18195
19125
  */
18196
19126
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
18197
19127
  /**
18198
- * 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`
18199
19129
  * @summary Get module health scores
18200
19130
  * @param {string} [startDate]
18201
19131
  * @param {string} [endDate]
@@ -18428,7 +19358,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18428
19358
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
18429
19359
  /**
18430
19360
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18431
- * @summary Get top modules by event volume
19361
+ * @summary Get top modules by execution volume
18432
19362
  * @param {string} [startDate]
18433
19363
  * @param {string} [endDate]
18434
19364
  * @param {string} [gameServerId]
@@ -18598,7 +19528,7 @@ export declare class AnalyticsApi extends BaseAPI {
18598
19528
  */
18599
19529
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
18600
19530
  /**
18601
- * 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`
18602
19532
  * @summary Get module health scores
18603
19533
  * @param {string} [startDate]
18604
19534
  * @param {string} [endDate]
@@ -18852,7 +19782,7 @@ export declare class AnalyticsApi extends BaseAPI {
18852
19782
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
18853
19783
  /**
18854
19784
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18855
- * @summary Get top modules by event volume
19785
+ * @summary Get top modules by execution volume
18856
19786
  * @param {string} [startDate]
18857
19787
  * @param {string} [endDate]
18858
19788
  * @param {string} [gameServerId]
@@ -20329,6 +21259,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
20329
21259
  * @throws {RequiredError}
20330
21260
  */
20331
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>;
20332
21271
  /**
20333
21272
  * <br> OperationId: `DomainControllerGetOne`
20334
21273
  * @summary Get one
@@ -20393,6 +21332,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
20393
21332
  * @throws {RequiredError}
20394
21333
  */
20395
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>>;
20396
21344
  /**
20397
21345
  * <br> OperationId: `DomainControllerGetOne`
20398
21346
  * @summary Get one
@@ -20457,6 +21405,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
20457
21405
  * @throws {RequiredError}
20458
21406
  */
20459
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>;
20460
21417
  /**
20461
21418
  * <br> OperationId: `DomainControllerGetOne`
20462
21419
  * @summary Get one
@@ -20524,6 +21481,16 @@ export declare class DomainApi extends BaseAPI {
20524
21481
  * @memberof DomainApi
20525
21482
  */
20526
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>>;
20527
21494
  /**
20528
21495
  * <br> OperationId: `DomainControllerGetOne`
20529
21496
  * @summary Get one
@@ -20938,11 +21905,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
20938
21905
  /**
20939
21906
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
20940
21907
  * @summary Auth discord
20941
- * @param {string} redirect
21908
+ * @param {string} [redirect]
20942
21909
  * @param {*} [options] Override http request option.
20943
21910
  * @throws {RequiredError}
20944
21911
  */
20945
- externalAuthControllerAuthDiscord: (redirect: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21912
+ externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20946
21913
  /**
20947
21914
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
20948
21915
  * @summary Auth discord return
@@ -20959,11 +21926,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
20959
21926
  /**
20960
21927
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
20961
21928
  * @summary Auth discord
20962
- * @param {string} redirect
21929
+ * @param {string} [redirect]
20963
21930
  * @param {*} [options] Override http request option.
20964
21931
  * @throws {RequiredError}
20965
21932
  */
20966
- 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>>;
20967
21934
  /**
20968
21935
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
20969
21936
  * @summary Auth discord return
@@ -20980,11 +21947,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
20980
21947
  /**
20981
21948
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
20982
21949
  * @summary Auth discord
20983
- * @param {string} redirect
21950
+ * @param {string} [redirect]
20984
21951
  * @param {*} [options] Override http request option.
20985
21952
  * @throws {RequiredError}
20986
21953
  */
20987
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21954
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20988
21955
  /**
20989
21956
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
20990
21957
  * @summary Auth discord return
@@ -21003,12 +21970,12 @@ export declare class ExternalAuthApi extends BaseAPI {
21003
21970
  /**
21004
21971
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21005
21972
  * @summary Auth discord
21006
- * @param {string} redirect
21973
+ * @param {string} [redirect]
21007
21974
  * @param {*} [options] Override http request option.
21008
21975
  * @throws {RequiredError}
21009
21976
  * @memberof ExternalAuthApi
21010
21977
  */
21011
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
21978
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
21012
21979
  /**
21013
21980
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21014
21981
  * @summary Auth discord return
@@ -22442,6 +23409,197 @@ export declare class HookApi extends BaseAPI {
22442
23409
  */
22443
23410
  hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
22444
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
+ }
22445
23603
  /**
22446
23604
  * ItemApi - axios parameter creator
22447
23605
  * @export
@@ -22546,6 +23704,13 @@ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) =
22546
23704
  * @throws {RequiredError}
22547
23705
  */
22548
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>;
22549
23714
  /**
22550
23715
  * <br> OperationId: `MetaGetMetrics`
22551
23716
  * @summary Get metrics
@@ -22594,6 +23759,13 @@ export declare const MetaApiFp: (configuration?: Configuration) => {
22594
23759
  * @throws {RequiredError}
22595
23760
  */
22596
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>>;
22597
23769
  /**
22598
23770
  * <br> OperationId: `MetaGetMetrics`
22599
23771
  * @summary Get metrics
@@ -22642,6 +23814,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
22642
23814
  * @throws {RequiredError}
22643
23815
  */
22644
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>;
22645
23824
  /**
22646
23825
  * <br> OperationId: `MetaGetMetrics`
22647
23826
  * @summary Get metrics
@@ -22693,6 +23872,14 @@ export declare class MetaApi extends BaseAPI {
22693
23872
  * @memberof MetaApi
22694
23873
  */
22695
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>>;
22696
23883
  /**
22697
23884
  * <br> OperationId: `MetaGetMetrics`
22698
23885
  * @summary Get metrics
@@ -25354,7 +26541,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25354
26541
  * @param {*} [options] Override http request option.
25355
26542
  * @throws {RequiredError}
25356
26543
  */
25357
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26544
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
25358
26545
  /**
25359
26546
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25360
26547
  * @summary Search
@@ -25408,7 +26595,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25408
26595
  * @param {*} [options] Override http request option.
25409
26596
  * @throws {RequiredError}
25410
26597
  */
25411
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
26598
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
25412
26599
  /**
25413
26600
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25414
26601
  * @summary Search
@@ -25468,7 +26655,7 @@ export declare class ShopListingApi extends BaseAPI {
25468
26655
  * @throws {RequiredError}
25469
26656
  * @memberof ShopListingApi
25470
26657
  */
25471
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
26658
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
25472
26659
  /**
25473
26660
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25474
26661
  * @summary Search
@@ -25680,6 +26867,131 @@ export declare class ShopOrderApi extends BaseAPI {
25680
26867
  */
25681
26868
  shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
25682
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
+ }
25683
26995
  /**
25684
26996
  * TrackingApi - axios parameter creator
25685
26997
  * @export
@@ -25886,6 +27198,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25886
27198
  * @throws {RequiredError}
25887
27199
  */
25888
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>;
25889
27208
  /**
25890
27209
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25891
27210
  * @summary Create
@@ -25914,6 +27233,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25914
27233
  * @summary Invite
25915
27234
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25916
27235
  * @param {*} [options] Override http request option.
27236
+ * @deprecated
25917
27237
  * @throws {RequiredError}
25918
27238
  */
25919
27239
  userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -26005,6 +27325,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
26005
27325
  * @throws {RequiredError}
26006
27326
  */
26007
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>>;
26008
27335
  /**
26009
27336
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26010
27337
  * @summary Create
@@ -26033,6 +27360,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
26033
27360
  * @summary Invite
26034
27361
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26035
27362
  * @param {*} [options] Override http request option.
27363
+ * @deprecated
26036
27364
  * @throws {RequiredError}
26037
27365
  */
26038
27366
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
@@ -26124,6 +27452,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
26124
27452
  * @throws {RequiredError}
26125
27453
  */
26126
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>;
26127
27462
  /**
26128
27463
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26129
27464
  * @summary Create
@@ -26152,6 +27487,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
26152
27487
  * @summary Invite
26153
27488
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26154
27489
  * @param {*} [options] Override http request option.
27490
+ * @deprecated
26155
27491
  * @throws {RequiredError}
26156
27492
  */
26157
27493
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
@@ -26246,6 +27582,14 @@ export declare class UserApi extends BaseAPI {
26246
27582
  * @memberof UserApi
26247
27583
  */
26248
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>>;
26249
27593
  /**
26250
27594
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26251
27595
  * @summary Create
@@ -26277,6 +27621,7 @@ export declare class UserApi extends BaseAPI {
26277
27621
  * @summary Invite
26278
27622
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26279
27623
  * @param {*} [options] Override http request option.
27624
+ * @deprecated
26280
27625
  * @throws {RequiredError}
26281
27626
  * @memberof UserApi
26282
27627
  */