@takaro/apiclient 0.0.0-dev.223607e → 0.0.0-dev.229b2b2

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,18 @@ 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;
2221
2233
  }
2222
2234
  export declare const DomainCreateInputDTOStateEnum: {
2223
2235
  readonly Active: "ACTIVE";
@@ -2372,6 +2384,18 @@ export interface DomainOutputDTO {
2372
2384
  * @memberof DomainOutputDTO
2373
2385
  */
2374
2386
  maxFunctionsInModule: number;
2387
+ /**
2388
+ *
2389
+ * @type {number}
2390
+ * @memberof DomainOutputDTO
2391
+ */
2392
+ maxCustomRoles: number;
2393
+ /**
2394
+ *
2395
+ * @type {number}
2396
+ * @memberof DomainOutputDTO
2397
+ */
2398
+ maxDiscordLinkedRoles: number;
2375
2399
  /**
2376
2400
  *
2377
2401
  * @type {string}
@@ -2592,6 +2616,18 @@ export interface DomainUpdateInputDTO {
2592
2616
  * @memberof DomainUpdateInputDTO
2593
2617
  */
2594
2618
  maxFunctionsInModule?: number;
2619
+ /**
2620
+ *
2621
+ * @type {number}
2622
+ * @memberof DomainUpdateInputDTO
2623
+ */
2624
+ maxCustomRoles?: number;
2625
+ /**
2626
+ *
2627
+ * @type {number}
2628
+ * @memberof DomainUpdateInputDTO
2629
+ */
2630
+ maxDiscordLinkedRoles?: number;
2595
2631
  }
2596
2632
  export declare const DomainUpdateInputDTOStateEnum: {
2597
2633
  readonly Active: "ACTIVE";
@@ -2599,6 +2635,50 @@ export declare const DomainUpdateInputDTOStateEnum: {
2599
2635
  readonly Maintenance: "MAINTENANCE";
2600
2636
  };
2601
2637
  export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
2638
+ /**
2639
+ *
2640
+ * @export
2641
+ * @interface EffectiveStorefrontConfigDTO
2642
+ */
2643
+ export interface EffectiveStorefrontConfigDTO {
2644
+ /**
2645
+ *
2646
+ * @type {string}
2647
+ * @memberof EffectiveStorefrontConfigDTO
2648
+ */
2649
+ templateId: string;
2650
+ /**
2651
+ *
2652
+ * @type {object}
2653
+ * @memberof EffectiveStorefrontConfigDTO
2654
+ */
2655
+ values: object;
2656
+ /**
2657
+ *
2658
+ * @type {object}
2659
+ * @memberof EffectiveStorefrontConfigDTO
2660
+ */
2661
+ schema: object;
2662
+ }
2663
+ /**
2664
+ *
2665
+ * @export
2666
+ * @interface EffectiveStorefrontConfigOutputDTOAPI
2667
+ */
2668
+ export interface EffectiveStorefrontConfigOutputDTOAPI {
2669
+ /**
2670
+ *
2671
+ * @type {EffectiveStorefrontConfigDTO}
2672
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2673
+ */
2674
+ data: EffectiveStorefrontConfigDTO;
2675
+ /**
2676
+ *
2677
+ * @type {MetadataOutput}
2678
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2679
+ */
2680
+ meta: MetadataOutput;
2681
+ }
2602
2682
  /**
2603
2683
  *
2604
2684
  * @export
@@ -6626,288 +6706,741 @@ export interface InviteOutputDTO {
6626
6706
  /**
6627
6707
  *
6628
6708
  * @export
6629
- * @interface IpHistoryOutputDTO
6709
+ * @interface InviteLinkCreateInputDTO
6630
6710
  */
6631
- export interface IpHistoryOutputDTO {
6632
- /**
6633
- *
6634
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6635
- * @memberof IpHistoryOutputDTO
6636
- */
6637
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6638
- /**
6639
- *
6640
- * @type {string}
6641
- * @memberof IpHistoryOutputDTO
6642
- */
6643
- ip: string;
6644
- /**
6645
- *
6646
- * @type {string}
6647
- * @memberof IpHistoryOutputDTO
6648
- */
6649
- country?: string;
6711
+ export interface InviteLinkCreateInputDTO {
6650
6712
  /**
6651
6713
  *
6652
- * @type {string}
6653
- * @memberof IpHistoryOutputDTO
6714
+ * @type {Array<string>}
6715
+ * @memberof InviteLinkCreateInputDTO
6654
6716
  */
6655
- city?: string;
6717
+ roleIds?: Array<string>;
6656
6718
  /**
6657
6719
  *
6658
- * @type {string}
6659
- * @memberof IpHistoryOutputDTO
6720
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6721
+ * @memberof InviteLinkCreateInputDTO
6660
6722
  */
6661
- latitude?: string;
6723
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6662
6724
  /**
6663
6725
  *
6664
- * @type {string}
6665
- * @memberof IpHistoryOutputDTO
6726
+ * @type {number}
6727
+ * @memberof InviteLinkCreateInputDTO
6666
6728
  */
6667
- longitude?: string;
6729
+ maxUses?: number;
6668
6730
  }
6669
6731
  /**
6670
6732
  *
6671
6733
  * @export
6672
- * @interface ItemCreateDTO
6734
+ * @interface InviteLinkCreateResultDTO
6673
6735
  */
6674
- export interface ItemCreateDTO {
6736
+ export interface InviteLinkCreateResultDTO {
6675
6737
  /**
6676
6738
  *
6677
6739
  * @type {string}
6678
- * @memberof ItemCreateDTO
6740
+ * @memberof InviteLinkCreateResultDTO
6679
6741
  */
6680
- name: string;
6742
+ inviteUrl: string;
6681
6743
  /**
6682
6744
  *
6683
6745
  * @type {string}
6684
- * @memberof ItemCreateDTO
6746
+ * @memberof InviteLinkCreateResultDTO
6685
6747
  */
6686
- code: string;
6748
+ token: string;
6687
6749
  /**
6688
6750
  *
6689
6751
  * @type {string}
6690
- * @memberof ItemCreateDTO
6752
+ * @memberof InviteLinkCreateResultDTO
6691
6753
  */
6692
- description?: string;
6754
+ id: string;
6693
6755
  /**
6694
6756
  *
6695
- * @type {string}
6696
- * @memberof ItemCreateDTO
6757
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6758
+ * @memberof InviteLinkCreateResultDTO
6697
6759
  */
6698
- icon?: string;
6760
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6699
6761
  /**
6700
6762
  *
6701
- * @type {string}
6702
- * @memberof ItemCreateDTO
6763
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6764
+ * @memberof InviteLinkCreateResultDTO
6703
6765
  */
6704
- gameserverId: string;
6705
- }
6706
- /**
6707
- *
6708
- * @export
6709
- * @interface ItemOutputArrayDTOAPI
6710
- */
6711
- export interface ItemOutputArrayDTOAPI {
6766
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6712
6767
  /**
6713
6768
  *
6714
- * @type {Array<ItemsOutputDTO>}
6715
- * @memberof ItemOutputArrayDTOAPI
6769
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6770
+ * @memberof InviteLinkCreateResultDTO
6716
6771
  */
6717
- data: Array<ItemsOutputDTO>;
6772
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6718
6773
  /**
6719
6774
  *
6720
- * @type {MetadataOutput}
6721
- * @memberof ItemOutputArrayDTOAPI
6775
+ * @type {number}
6776
+ * @memberof InviteLinkCreateResultDTO
6722
6777
  */
6723
- meta: MetadataOutput;
6724
- }
6725
- /**
6726
- *
6727
- * @export
6728
- * @interface ItemOutputDTOAPI
6729
- */
6730
- export interface ItemOutputDTOAPI {
6778
+ maxUses?: number;
6731
6779
  /**
6732
6780
  *
6733
- * @type {ItemsOutputDTO}
6734
- * @memberof ItemOutputDTOAPI
6781
+ * @type {number}
6782
+ * @memberof InviteLinkCreateResultDTO
6735
6783
  */
6736
- data: ItemsOutputDTO;
6784
+ uses: number;
6737
6785
  /**
6738
6786
  *
6739
- * @type {MetadataOutput}
6740
- * @memberof ItemOutputDTOAPI
6787
+ * @type {number}
6788
+ * @memberof InviteLinkCreateResultDTO
6741
6789
  */
6742
- meta: MetadataOutput;
6743
- }
6744
- /**
6745
- *
6746
- * @export
6747
- * @interface ItemSearchInputAllowedFilters
6748
- */
6749
- export interface ItemSearchInputAllowedFilters {
6790
+ remaining?: number;
6750
6791
  /**
6751
6792
  *
6752
- * @type {Array<string>}
6753
- * @memberof ItemSearchInputAllowedFilters
6793
+ * @type {string}
6794
+ * @memberof InviteLinkCreateResultDTO
6754
6795
  */
6755
- name?: Array<string>;
6796
+ status: InviteLinkCreateResultDTOStatusEnum;
6756
6797
  /**
6757
6798
  *
6758
- * @type {Array<string>}
6759
- * @memberof ItemSearchInputAllowedFilters
6799
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6800
+ * @memberof InviteLinkCreateResultDTO
6760
6801
  */
6761
- code?: Array<string>;
6802
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6762
6803
  /**
6763
6804
  *
6764
- * @type {Array<string>}
6765
- * @memberof ItemSearchInputAllowedFilters
6805
+ * @type {string}
6806
+ * @memberof InviteLinkCreateResultDTO
6766
6807
  */
6767
- gameserverId?: Array<string>;
6808
+ createdBy?: string;
6768
6809
  /**
6769
6810
  *
6770
- * @type {Array<string>}
6771
- * @memberof ItemSearchInputAllowedFilters
6811
+ * @type {Array<InviteLinkRoleDTO>}
6812
+ * @memberof InviteLinkCreateResultDTO
6772
6813
  */
6773
- id?: Array<string>;
6814
+ roles: Array<InviteLinkRoleDTO>;
6774
6815
  }
6816
+ export declare const InviteLinkCreateResultDTOStatusEnum: {
6817
+ readonly Active: "ACTIVE";
6818
+ readonly Revoked: "REVOKED";
6819
+ readonly Expired: "EXPIRED";
6820
+ readonly Depleted: "DEPLETED";
6821
+ };
6822
+ export type InviteLinkCreateResultDTOStatusEnum = (typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
6775
6823
  /**
6776
6824
  *
6777
6825
  * @export
6778
- * @interface ItemSearchInputAllowedSearch
6826
+ * @interface InviteLinkCreateResultDTOAPI
6779
6827
  */
6780
- export interface ItemSearchInputAllowedSearch {
6828
+ export interface InviteLinkCreateResultDTOAPI {
6781
6829
  /**
6782
6830
  *
6783
- * @type {Array<string>}
6784
- * @memberof ItemSearchInputAllowedSearch
6831
+ * @type {InviteLinkCreateResultDTO}
6832
+ * @memberof InviteLinkCreateResultDTOAPI
6785
6833
  */
6786
- name?: Array<string>;
6834
+ data: InviteLinkCreateResultDTO;
6787
6835
  /**
6788
6836
  *
6789
- * @type {Array<string>}
6790
- * @memberof ItemSearchInputAllowedSearch
6837
+ * @type {MetadataOutput}
6838
+ * @memberof InviteLinkCreateResultDTOAPI
6791
6839
  */
6792
- code?: Array<string>;
6840
+ meta: MetadataOutput;
6793
6841
  }
6794
6842
  /**
6795
6843
  *
6796
6844
  * @export
6797
- * @interface ItemSearchInputDTO
6845
+ * @interface InviteLinkOutputDTO
6798
6846
  */
6799
- export interface ItemSearchInputDTO {
6847
+ export interface InviteLinkOutputDTO {
6800
6848
  /**
6801
6849
  *
6802
- * @type {ItemSearchInputAllowedFilters}
6803
- * @memberof ItemSearchInputDTO
6850
+ * @type {string}
6851
+ * @memberof InviteLinkOutputDTO
6804
6852
  */
6805
- filters?: ItemSearchInputAllowedFilters;
6853
+ id: string;
6806
6854
  /**
6807
6855
  *
6808
- * @type {ItemSearchInputAllowedSearch}
6809
- * @memberof ItemSearchInputDTO
6856
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6857
+ * @memberof InviteLinkOutputDTO
6810
6858
  */
6811
- search?: ItemSearchInputAllowedSearch;
6859
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6812
6860
  /**
6813
6861
  *
6814
- * @type {Array<string>}
6815
- * @memberof ItemSearchInputDTO
6862
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6863
+ * @memberof InviteLinkOutputDTO
6816
6864
  */
6817
- extend?: Array<ItemSearchInputDTOExtendEnum>;
6865
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6818
6866
  /**
6819
6867
  *
6820
- * @type {any}
6821
- * @memberof ItemSearchInputDTO
6868
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6869
+ * @memberof InviteLinkOutputDTO
6822
6870
  */
6823
- greaterThan?: any;
6871
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6824
6872
  /**
6825
6873
  *
6826
- * @type {any}
6827
- * @memberof ItemSearchInputDTO
6874
+ * @type {number}
6875
+ * @memberof InviteLinkOutputDTO
6828
6876
  */
6829
- lessThan?: any;
6877
+ maxUses?: number;
6830
6878
  /**
6831
6879
  *
6832
6880
  * @type {number}
6833
- * @memberof ItemSearchInputDTO
6881
+ * @memberof InviteLinkOutputDTO
6834
6882
  */
6835
- page?: number;
6883
+ uses: number;
6836
6884
  /**
6837
6885
  *
6838
6886
  * @type {number}
6839
- * @memberof ItemSearchInputDTO
6887
+ * @memberof InviteLinkOutputDTO
6840
6888
  */
6841
- limit?: number;
6889
+ remaining?: number;
6842
6890
  /**
6843
6891
  *
6844
6892
  * @type {string}
6845
- * @memberof ItemSearchInputDTO
6893
+ * @memberof InviteLinkOutputDTO
6846
6894
  */
6847
- sortBy?: string;
6895
+ status: InviteLinkOutputDTOStatusEnum;
6896
+ /**
6897
+ *
6898
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6899
+ * @memberof InviteLinkOutputDTO
6900
+ */
6901
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6848
6902
  /**
6849
6903
  *
6850
6904
  * @type {string}
6851
- * @memberof ItemSearchInputDTO
6905
+ * @memberof InviteLinkOutputDTO
6852
6906
  */
6853
- sortDirection?: ItemSearchInputDTOSortDirectionEnum;
6907
+ createdBy?: string;
6908
+ /**
6909
+ *
6910
+ * @type {Array<InviteLinkRoleDTO>}
6911
+ * @memberof InviteLinkOutputDTO
6912
+ */
6913
+ roles: Array<InviteLinkRoleDTO>;
6854
6914
  }
6855
- export declare const ItemSearchInputDTOExtendEnum: {
6856
- readonly Gameserver: "gameserver";
6857
- };
6858
- export type ItemSearchInputDTOExtendEnum = (typeof ItemSearchInputDTOExtendEnum)[keyof typeof ItemSearchInputDTOExtendEnum];
6859
- export declare const ItemSearchInputDTOSortDirectionEnum: {
6860
- readonly Asc: "asc";
6861
- readonly Desc: "desc";
6915
+ export declare const InviteLinkOutputDTOStatusEnum: {
6916
+ readonly Active: "ACTIVE";
6917
+ readonly Revoked: "REVOKED";
6918
+ readonly Expired: "EXPIRED";
6919
+ readonly Depleted: "DEPLETED";
6862
6920
  };
6863
- export type ItemSearchInputDTOSortDirectionEnum = (typeof ItemSearchInputDTOSortDirectionEnum)[keyof typeof ItemSearchInputDTOSortDirectionEnum];
6921
+ export type InviteLinkOutputDTOStatusEnum = (typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
6864
6922
  /**
6865
6923
  *
6866
6924
  * @export
6867
- * @interface ItemUpdateDTO
6925
+ * @interface InviteLinkOutputDTOAPI
6868
6926
  */
6869
- export interface ItemUpdateDTO {
6927
+ export interface InviteLinkOutputDTOAPI {
6870
6928
  /**
6871
6929
  *
6872
- * @type {string}
6873
- * @memberof ItemUpdateDTO
6930
+ * @type {InviteLinkOutputDTO}
6931
+ * @memberof InviteLinkOutputDTOAPI
6874
6932
  */
6875
- name?: string;
6933
+ data: InviteLinkOutputDTO;
6876
6934
  /**
6877
6935
  *
6878
- * @type {string}
6879
- * @memberof ItemUpdateDTO
6936
+ * @type {MetadataOutput}
6937
+ * @memberof InviteLinkOutputDTOAPI
6880
6938
  */
6881
- code?: string;
6939
+ meta: MetadataOutput;
6940
+ }
6941
+ /**
6942
+ *
6943
+ * @export
6944
+ * @interface InviteLinkOutputArrayDTOAPI
6945
+ */
6946
+ export interface InviteLinkOutputArrayDTOAPI {
6882
6947
  /**
6883
6948
  *
6884
- * @type {string}
6885
- * @memberof ItemUpdateDTO
6949
+ * @type {Array<InviteLinkOutputDTO>}
6950
+ * @memberof InviteLinkOutputArrayDTOAPI
6886
6951
  */
6887
- description?: string;
6952
+ data: Array<InviteLinkOutputDTO>;
6888
6953
  /**
6889
6954
  *
6890
- * @type {string}
6891
- * @memberof ItemUpdateDTO
6955
+ * @type {MetadataOutput}
6956
+ * @memberof InviteLinkOutputArrayDTOAPI
6892
6957
  */
6893
- icon?: string;
6958
+ meta: MetadataOutput;
6894
6959
  }
6895
6960
  /**
6896
6961
  *
6897
6962
  * @export
6898
- * @interface ItemsOutputDTO
6963
+ * @interface InviteLinkPreviewDTO
6899
6964
  */
6900
- export interface ItemsOutputDTO {
6965
+ export interface InviteLinkPreviewDTO {
6901
6966
  /**
6902
6967
  *
6903
- * @type {string}
6904
- * @memberof ItemsOutputDTO
6968
+ * @type {InviteLinkPreviewDomainDTO}
6969
+ * @memberof InviteLinkPreviewDTO
6905
6970
  */
6906
- name: string;
6971
+ domain: InviteLinkPreviewDomainDTO;
6907
6972
  /**
6908
6973
  *
6909
- * @type {string}
6910
- * @memberof ItemsOutputDTO
6974
+ * @type {Array<InviteLinkPreviewRoleDTO>}
6975
+ * @memberof InviteLinkPreviewDTO
6976
+ */
6977
+ roles: Array<InviteLinkPreviewRoleDTO>;
6978
+ /**
6979
+ *
6980
+ * @type {string}
6981
+ * @memberof InviteLinkPreviewDTO
6982
+ */
6983
+ status: InviteLinkPreviewDTOStatusEnum;
6984
+ /**
6985
+ *
6986
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6987
+ * @memberof InviteLinkPreviewDTO
6988
+ */
6989
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6990
+ /**
6991
+ *
6992
+ * @type {number}
6993
+ * @memberof InviteLinkPreviewDTO
6994
+ */
6995
+ remaining?: number;
6996
+ }
6997
+ export declare const InviteLinkPreviewDTOStatusEnum: {
6998
+ readonly Active: "ACTIVE";
6999
+ readonly Revoked: "REVOKED";
7000
+ readonly Expired: "EXPIRED";
7001
+ readonly Depleted: "DEPLETED";
7002
+ };
7003
+ export type InviteLinkPreviewDTOStatusEnum = (typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
7004
+ /**
7005
+ *
7006
+ * @export
7007
+ * @interface InviteLinkPreviewDTOAPI
7008
+ */
7009
+ export interface InviteLinkPreviewDTOAPI {
7010
+ /**
7011
+ *
7012
+ * @type {InviteLinkPreviewDTO}
7013
+ * @memberof InviteLinkPreviewDTOAPI
7014
+ */
7015
+ data: InviteLinkPreviewDTO;
7016
+ /**
7017
+ *
7018
+ * @type {MetadataOutput}
7019
+ * @memberof InviteLinkPreviewDTOAPI
7020
+ */
7021
+ meta: MetadataOutput;
7022
+ }
7023
+ /**
7024
+ *
7025
+ * @export
7026
+ * @interface InviteLinkPreviewDomainDTO
7027
+ */
7028
+ export interface InviteLinkPreviewDomainDTO {
7029
+ /**
7030
+ *
7031
+ * @type {string}
7032
+ * @memberof InviteLinkPreviewDomainDTO
7033
+ */
7034
+ id: string;
7035
+ /**
7036
+ *
7037
+ * @type {string}
7038
+ * @memberof InviteLinkPreviewDomainDTO
7039
+ */
7040
+ name: string;
7041
+ }
7042
+ /**
7043
+ *
7044
+ * @export
7045
+ * @interface InviteLinkPreviewRoleDTO
7046
+ */
7047
+ export interface InviteLinkPreviewRoleDTO {
7048
+ /**
7049
+ *
7050
+ * @type {string}
7051
+ * @memberof InviteLinkPreviewRoleDTO
7052
+ */
7053
+ id: string;
7054
+ /**
7055
+ *
7056
+ * @type {string}
7057
+ * @memberof InviteLinkPreviewRoleDTO
7058
+ */
7059
+ name: string;
7060
+ }
7061
+ /**
7062
+ *
7063
+ * @export
7064
+ * @interface InviteLinkRoleDTO
7065
+ */
7066
+ export interface InviteLinkRoleDTO {
7067
+ /**
7068
+ *
7069
+ * @type {string}
7070
+ * @memberof InviteLinkRoleDTO
7071
+ */
7072
+ roleId: string;
7073
+ /**
7074
+ *
7075
+ * @type {string}
7076
+ * @memberof InviteLinkRoleDTO
7077
+ */
7078
+ name: string;
7079
+ }
7080
+ /**
7081
+ *
7082
+ * @export
7083
+ * @interface InviteLinkSearchInputDTO
7084
+ */
7085
+ export interface InviteLinkSearchInputDTO {
7086
+ /**
7087
+ *
7088
+ * @type {string}
7089
+ * @memberof InviteLinkSearchInputDTO
7090
+ */
7091
+ sortBy?: string;
7092
+ /**
7093
+ *
7094
+ * @type {any}
7095
+ * @memberof InviteLinkSearchInputDTO
7096
+ */
7097
+ filters?: any;
7098
+ /**
7099
+ *
7100
+ * @type {any}
7101
+ * @memberof InviteLinkSearchInputDTO
7102
+ */
7103
+ search?: any;
7104
+ /**
7105
+ *
7106
+ * @type {any}
7107
+ * @memberof InviteLinkSearchInputDTO
7108
+ */
7109
+ greaterThan?: any;
7110
+ /**
7111
+ *
7112
+ * @type {any}
7113
+ * @memberof InviteLinkSearchInputDTO
7114
+ */
7115
+ lessThan?: any;
7116
+ /**
7117
+ *
7118
+ * @type {number}
7119
+ * @memberof InviteLinkSearchInputDTO
7120
+ */
7121
+ page?: number;
7122
+ /**
7123
+ *
7124
+ * @type {number}
7125
+ * @memberof InviteLinkSearchInputDTO
7126
+ */
7127
+ limit?: number;
7128
+ /**
7129
+ *
7130
+ * @type {string}
7131
+ * @memberof InviteLinkSearchInputDTO
7132
+ */
7133
+ sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
7134
+ /**
7135
+ *
7136
+ * @type {Array<string>}
7137
+ * @memberof InviteLinkSearchInputDTO
7138
+ */
7139
+ extend?: Array<string>;
7140
+ }
7141
+ export declare const InviteLinkSearchInputDTOSortDirectionEnum: {
7142
+ readonly Asc: "asc";
7143
+ readonly Desc: "desc";
7144
+ };
7145
+ export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
7146
+ /**
7147
+ *
7148
+ * @export
7149
+ * @interface RedeemInputDTO
7150
+ */
7151
+ export interface RedeemInputDTO {
7152
+ /**
7153
+ *
7154
+ * @type {string}
7155
+ * @memberof RedeemInputDTO
7156
+ */
7157
+ token: string;
7158
+ }
7159
+ /**
7160
+ *
7161
+ * @export
7162
+ * @interface IpHistoryOutputDTO
7163
+ */
7164
+ export interface IpHistoryOutputDTO {
7165
+ /**
7166
+ *
7167
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7168
+ * @memberof IpHistoryOutputDTO
7169
+ */
7170
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7171
+ /**
7172
+ *
7173
+ * @type {string}
7174
+ * @memberof IpHistoryOutputDTO
7175
+ */
7176
+ ip: string;
7177
+ /**
7178
+ *
7179
+ * @type {string}
7180
+ * @memberof IpHistoryOutputDTO
7181
+ */
7182
+ country?: string;
7183
+ /**
7184
+ *
7185
+ * @type {string}
7186
+ * @memberof IpHistoryOutputDTO
7187
+ */
7188
+ city?: string;
7189
+ /**
7190
+ *
7191
+ * @type {string}
7192
+ * @memberof IpHistoryOutputDTO
7193
+ */
7194
+ latitude?: string;
7195
+ /**
7196
+ *
7197
+ * @type {string}
7198
+ * @memberof IpHistoryOutputDTO
7199
+ */
7200
+ longitude?: string;
7201
+ }
7202
+ /**
7203
+ *
7204
+ * @export
7205
+ * @interface ItemCreateDTO
7206
+ */
7207
+ export interface ItemCreateDTO {
7208
+ /**
7209
+ *
7210
+ * @type {string}
7211
+ * @memberof ItemCreateDTO
7212
+ */
7213
+ name: string;
7214
+ /**
7215
+ *
7216
+ * @type {string}
7217
+ * @memberof ItemCreateDTO
7218
+ */
7219
+ code: string;
7220
+ /**
7221
+ *
7222
+ * @type {string}
7223
+ * @memberof ItemCreateDTO
7224
+ */
7225
+ description?: string;
7226
+ /**
7227
+ *
7228
+ * @type {string}
7229
+ * @memberof ItemCreateDTO
7230
+ */
7231
+ icon?: string;
7232
+ /**
7233
+ *
7234
+ * @type {string}
7235
+ * @memberof ItemCreateDTO
7236
+ */
7237
+ gameserverId: string;
7238
+ }
7239
+ /**
7240
+ *
7241
+ * @export
7242
+ * @interface ItemOutputArrayDTOAPI
7243
+ */
7244
+ export interface ItemOutputArrayDTOAPI {
7245
+ /**
7246
+ *
7247
+ * @type {Array<ItemsOutputDTO>}
7248
+ * @memberof ItemOutputArrayDTOAPI
7249
+ */
7250
+ data: Array<ItemsOutputDTO>;
7251
+ /**
7252
+ *
7253
+ * @type {MetadataOutput}
7254
+ * @memberof ItemOutputArrayDTOAPI
7255
+ */
7256
+ meta: MetadataOutput;
7257
+ }
7258
+ /**
7259
+ *
7260
+ * @export
7261
+ * @interface ItemOutputDTOAPI
7262
+ */
7263
+ export interface ItemOutputDTOAPI {
7264
+ /**
7265
+ *
7266
+ * @type {ItemsOutputDTO}
7267
+ * @memberof ItemOutputDTOAPI
7268
+ */
7269
+ data: ItemsOutputDTO;
7270
+ /**
7271
+ *
7272
+ * @type {MetadataOutput}
7273
+ * @memberof ItemOutputDTOAPI
7274
+ */
7275
+ meta: MetadataOutput;
7276
+ }
7277
+ /**
7278
+ *
7279
+ * @export
7280
+ * @interface ItemSearchInputAllowedFilters
7281
+ */
7282
+ export interface ItemSearchInputAllowedFilters {
7283
+ /**
7284
+ *
7285
+ * @type {Array<string>}
7286
+ * @memberof ItemSearchInputAllowedFilters
7287
+ */
7288
+ name?: Array<string>;
7289
+ /**
7290
+ *
7291
+ * @type {Array<string>}
7292
+ * @memberof ItemSearchInputAllowedFilters
7293
+ */
7294
+ code?: Array<string>;
7295
+ /**
7296
+ *
7297
+ * @type {Array<string>}
7298
+ * @memberof ItemSearchInputAllowedFilters
7299
+ */
7300
+ gameserverId?: Array<string>;
7301
+ /**
7302
+ *
7303
+ * @type {Array<string>}
7304
+ * @memberof ItemSearchInputAllowedFilters
7305
+ */
7306
+ id?: Array<string>;
7307
+ }
7308
+ /**
7309
+ *
7310
+ * @export
7311
+ * @interface ItemSearchInputAllowedSearch
7312
+ */
7313
+ export interface ItemSearchInputAllowedSearch {
7314
+ /**
7315
+ *
7316
+ * @type {Array<string>}
7317
+ * @memberof ItemSearchInputAllowedSearch
7318
+ */
7319
+ name?: Array<string>;
7320
+ /**
7321
+ *
7322
+ * @type {Array<string>}
7323
+ * @memberof ItemSearchInputAllowedSearch
7324
+ */
7325
+ code?: Array<string>;
7326
+ }
7327
+ /**
7328
+ *
7329
+ * @export
7330
+ * @interface ItemSearchInputDTO
7331
+ */
7332
+ export interface ItemSearchInputDTO {
7333
+ /**
7334
+ *
7335
+ * @type {ItemSearchInputAllowedFilters}
7336
+ * @memberof ItemSearchInputDTO
7337
+ */
7338
+ filters?: ItemSearchInputAllowedFilters;
7339
+ /**
7340
+ *
7341
+ * @type {ItemSearchInputAllowedSearch}
7342
+ * @memberof ItemSearchInputDTO
7343
+ */
7344
+ search?: ItemSearchInputAllowedSearch;
7345
+ /**
7346
+ *
7347
+ * @type {Array<string>}
7348
+ * @memberof ItemSearchInputDTO
7349
+ */
7350
+ extend?: Array<ItemSearchInputDTOExtendEnum>;
7351
+ /**
7352
+ *
7353
+ * @type {any}
7354
+ * @memberof ItemSearchInputDTO
7355
+ */
7356
+ greaterThan?: any;
7357
+ /**
7358
+ *
7359
+ * @type {any}
7360
+ * @memberof ItemSearchInputDTO
7361
+ */
7362
+ lessThan?: any;
7363
+ /**
7364
+ *
7365
+ * @type {number}
7366
+ * @memberof ItemSearchInputDTO
7367
+ */
7368
+ page?: number;
7369
+ /**
7370
+ *
7371
+ * @type {number}
7372
+ * @memberof ItemSearchInputDTO
7373
+ */
7374
+ limit?: number;
7375
+ /**
7376
+ *
7377
+ * @type {string}
7378
+ * @memberof ItemSearchInputDTO
7379
+ */
7380
+ sortBy?: string;
7381
+ /**
7382
+ *
7383
+ * @type {string}
7384
+ * @memberof ItemSearchInputDTO
7385
+ */
7386
+ sortDirection?: ItemSearchInputDTOSortDirectionEnum;
7387
+ }
7388
+ export declare const ItemSearchInputDTOExtendEnum: {
7389
+ readonly Gameserver: "gameserver";
7390
+ };
7391
+ export type ItemSearchInputDTOExtendEnum = (typeof ItemSearchInputDTOExtendEnum)[keyof typeof ItemSearchInputDTOExtendEnum];
7392
+ export declare const ItemSearchInputDTOSortDirectionEnum: {
7393
+ readonly Asc: "asc";
7394
+ readonly Desc: "desc";
7395
+ };
7396
+ export type ItemSearchInputDTOSortDirectionEnum = (typeof ItemSearchInputDTOSortDirectionEnum)[keyof typeof ItemSearchInputDTOSortDirectionEnum];
7397
+ /**
7398
+ *
7399
+ * @export
7400
+ * @interface ItemUpdateDTO
7401
+ */
7402
+ export interface ItemUpdateDTO {
7403
+ /**
7404
+ *
7405
+ * @type {string}
7406
+ * @memberof ItemUpdateDTO
7407
+ */
7408
+ name?: string;
7409
+ /**
7410
+ *
7411
+ * @type {string}
7412
+ * @memberof ItemUpdateDTO
7413
+ */
7414
+ code?: string;
7415
+ /**
7416
+ *
7417
+ * @type {string}
7418
+ * @memberof ItemUpdateDTO
7419
+ */
7420
+ description?: string;
7421
+ /**
7422
+ *
7423
+ * @type {string}
7424
+ * @memberof ItemUpdateDTO
7425
+ */
7426
+ icon?: string;
7427
+ }
7428
+ /**
7429
+ *
7430
+ * @export
7431
+ * @interface ItemsOutputDTO
7432
+ */
7433
+ export interface ItemsOutputDTO {
7434
+ /**
7435
+ *
7436
+ * @type {string}
7437
+ * @memberof ItemsOutputDTO
7438
+ */
7439
+ name: string;
7440
+ /**
7441
+ *
7442
+ * @type {string}
7443
+ * @memberof ItemsOutputDTO
6911
7444
  */
6912
7445
  code: string;
6913
7446
  /**
@@ -7196,6 +7729,32 @@ export interface LoginOutputDTOAPI {
7196
7729
  */
7197
7730
  meta: MetadataOutput;
7198
7731
  }
7732
+ /**
7733
+ *
7734
+ * @export
7735
+ * @interface LoginQueryParams
7736
+ */
7737
+ export interface LoginQueryParams {
7738
+ /**
7739
+ *
7740
+ * @type {string}
7741
+ * @memberof LoginQueryParams
7742
+ */
7743
+ redirect?: string;
7744
+ }
7745
+ /**
7746
+ *
7747
+ * @export
7748
+ * @interface LogoutQueryParams
7749
+ */
7750
+ export interface LogoutQueryParams {
7751
+ /**
7752
+ *
7753
+ * @type {string}
7754
+ * @memberof LogoutQueryParams
7755
+ */
7756
+ redirect?: string;
7757
+ }
7199
7758
  /**
7200
7759
  *
7201
7760
  * @export
@@ -7319,7 +7878,7 @@ export interface MeOutputDTO {
7319
7878
  * @type {UserOutputWithRolesDTO}
7320
7879
  * @memberof MeOutputDTO
7321
7880
  */
7322
- user: UserOutputWithRolesDTO;
7881
+ user?: UserOutputWithRolesDTO;
7323
7882
  /**
7324
7883
  *
7325
7884
  * @type {Array<DomainOutputDTO>}
@@ -7331,7 +7890,7 @@ export interface MeOutputDTO {
7331
7890
  * @type {string}
7332
7891
  * @memberof MeOutputDTO
7333
7892
  */
7334
- domain: string;
7893
+ domain?: string;
7335
7894
  /**
7336
7895
  *
7337
7896
  * @type {PlayerOutputWithRolesDTO}
@@ -7778,47 +8337,135 @@ export interface ModuleHealthScoresDTO {
7778
8337
  /**
7779
8338
  *
7780
8339
  * @type {number}
7781
- * @memberof ModuleHealthScoresDTO
8340
+ * @memberof ModuleHealthScoresDTO
8341
+ */
8342
+ cmdSuccess: number;
8343
+ /**
8344
+ *
8345
+ * @type {number}
8346
+ * @memberof ModuleHealthScoresDTO
8347
+ */
8348
+ shopActionSuccess: number;
8349
+ /**
8350
+ *
8351
+ * @type {number}
8352
+ * @memberof ModuleHealthScoresDTO
8353
+ */
8354
+ volumeRank: number;
8355
+ /**
8356
+ *
8357
+ * @type {number}
8358
+ * @memberof ModuleHealthScoresDTO
8359
+ */
8360
+ playerReach: number;
8361
+ }
8362
+ /**
8363
+ *
8364
+ * @export
8365
+ * @interface ModuleInstallParamId
8366
+ */
8367
+ export interface ModuleInstallParamId {
8368
+ /**
8369
+ *
8370
+ * @type {string}
8371
+ * @memberof ModuleInstallParamId
8372
+ */
8373
+ moduleId: string;
8374
+ /**
8375
+ *
8376
+ * @type {string}
8377
+ * @memberof ModuleInstallParamId
8378
+ */
8379
+ gameServerId: string;
8380
+ }
8381
+ /**
8382
+ *
8383
+ * @export
8384
+ * @interface ModuleInstallationKpisDTO
8385
+ */
8386
+ export interface ModuleInstallationKpisDTO {
8387
+ /**
8388
+ *
8389
+ * @type {number}
8390
+ * @memberof ModuleInstallationKpisDTO
8391
+ */
8392
+ runs: number;
8393
+ /**
8394
+ *
8395
+ * @type {number}
8396
+ * @memberof ModuleInstallationKpisDTO
7782
8397
  */
7783
- cmdSuccess: number;
8398
+ failures: number;
7784
8399
  /**
7785
8400
  *
7786
8401
  * @type {number}
7787
- * @memberof ModuleHealthScoresDTO
8402
+ * @memberof ModuleInstallationKpisDTO
7788
8403
  */
7789
- shopActionSuccess: number;
8404
+ successRate: number;
8405
+ }
8406
+ /**
8407
+ *
8408
+ * @export
8409
+ * @interface ModuleInstallationKpisDTOAPI
8410
+ */
8411
+ export interface ModuleInstallationKpisDTOAPI {
7790
8412
  /**
7791
8413
  *
7792
- * @type {number}
7793
- * @memberof ModuleHealthScoresDTO
8414
+ * @type {ModuleInstallationKpisDTO}
8415
+ * @memberof ModuleInstallationKpisDTOAPI
7794
8416
  */
7795
- volumeRank: number;
8417
+ data: ModuleInstallationKpisDTO;
7796
8418
  /**
7797
8419
  *
7798
- * @type {number}
7799
- * @memberof ModuleHealthScoresDTO
8420
+ * @type {MetadataOutput}
8421
+ * @memberof ModuleInstallationKpisDTOAPI
7800
8422
  */
7801
- playerReach: number;
8423
+ meta: MetadataOutput;
7802
8424
  }
7803
8425
  /**
7804
8426
  *
7805
8427
  * @export
7806
- * @interface ModuleInstallParamId
8428
+ * @interface ModuleInstallationKpisQueryDTO
7807
8429
  */
7808
- export interface ModuleInstallParamId {
8430
+ export interface ModuleInstallationKpisQueryDTO {
7809
8431
  /**
7810
8432
  *
7811
8433
  * @type {string}
7812
- * @memberof ModuleInstallParamId
8434
+ * @memberof ModuleInstallationKpisQueryDTO
7813
8435
  */
7814
- moduleId: string;
8436
+ startDate?: string;
7815
8437
  /**
7816
8438
  *
7817
8439
  * @type {string}
7818
- * @memberof ModuleInstallParamId
8440
+ * @memberof ModuleInstallationKpisQueryDTO
8441
+ */
8442
+ endDate?: string;
8443
+ /**
8444
+ *
8445
+ * @type {string}
8446
+ * @memberof ModuleInstallationKpisQueryDTO
7819
8447
  */
7820
8448
  gameServerId: string;
8449
+ /**
8450
+ *
8451
+ * @type {string}
8452
+ * @memberof ModuleInstallationKpisQueryDTO
8453
+ */
8454
+ moduleId: string;
8455
+ /**
8456
+ *
8457
+ * @type {string}
8458
+ * @memberof ModuleInstallationKpisQueryDTO
8459
+ */
8460
+ period?: ModuleInstallationKpisQueryDTOPeriodEnum;
7821
8461
  }
8462
+ export declare const ModuleInstallationKpisQueryDTOPeriodEnum: {
8463
+ readonly _24h: "24h";
8464
+ readonly _7d: "7d";
8465
+ readonly _30d: "30d";
8466
+ readonly _90d: "90d";
8467
+ };
8468
+ export type ModuleInstallationKpisQueryDTOPeriodEnum = (typeof ModuleInstallationKpisQueryDTOPeriodEnum)[keyof typeof ModuleInstallationKpisQueryDTOPeriodEnum];
7822
8469
  /**
7823
8470
  *
7824
8471
  * @export
@@ -12431,7 +13078,7 @@ export interface RoleUpdateInputDTO {
12431
13078
  * @type {string}
12432
13079
  * @memberof RoleUpdateInputDTO
12433
13080
  */
12434
- linkedDiscordRoleId?: string;
13081
+ linkedDiscordRoleId?: string | null;
12435
13082
  }
12436
13083
  /**
12437
13084
  *
@@ -13625,6 +14272,25 @@ export interface ShopDeadStockItemDTO {
13625
14272
  */
13626
14273
  daysSinceLastSale?: number;
13627
14274
  }
14275
+ /**
14276
+ *
14277
+ * @export
14278
+ * @interface ShopImportFailureDTO
14279
+ */
14280
+ export interface ShopImportFailureDTO {
14281
+ /**
14282
+ *
14283
+ * @type {string}
14284
+ * @memberof ShopImportFailureDTO
14285
+ */
14286
+ name: string;
14287
+ /**
14288
+ *
14289
+ * @type {string}
14290
+ * @memberof ShopImportFailureDTO
14291
+ */
14292
+ reason: string;
14293
+ }
13628
14294
  /**
13629
14295
  *
13630
14296
  * @export
@@ -13650,6 +14316,44 @@ export interface ShopImportOptions {
13650
14316
  */
13651
14317
  gameServerId: string;
13652
14318
  }
14319
+ /**
14320
+ *
14321
+ * @export
14322
+ * @interface ShopImportResultDTO
14323
+ */
14324
+ export interface ShopImportResultDTO {
14325
+ /**
14326
+ *
14327
+ * @type {number}
14328
+ * @memberof ShopImportResultDTO
14329
+ */
14330
+ imported: number;
14331
+ /**
14332
+ *
14333
+ * @type {Array<ShopImportFailureDTO>}
14334
+ * @memberof ShopImportResultDTO
14335
+ */
14336
+ failed: Array<ShopImportFailureDTO>;
14337
+ }
14338
+ /**
14339
+ *
14340
+ * @export
14341
+ * @interface ShopImportResultDTOAPI
14342
+ */
14343
+ export interface ShopImportResultDTOAPI {
14344
+ /**
14345
+ *
14346
+ * @type {ShopImportResultDTO}
14347
+ * @memberof ShopImportResultDTOAPI
14348
+ */
14349
+ data: ShopImportResultDTO;
14350
+ /**
14351
+ *
14352
+ * @type {MetadataOutput}
14353
+ * @memberof ShopImportResultDTOAPI
14354
+ */
14355
+ meta: MetadataOutput;
14356
+ }
13653
14357
  /**
13654
14358
  *
13655
14359
  * @export
@@ -14614,163 +15318,332 @@ export interface ShopSearchInputAllowedRangeFilter {
14614
15318
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14615
15319
  * @memberof ShopSearchInputAllowedRangeFilter
14616
15320
  */
14617
- createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15321
+ createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15322
+ /**
15323
+ *
15324
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15325
+ * @memberof ShopSearchInputAllowedRangeFilter
15326
+ */
15327
+ updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15328
+ }
15329
+ /**
15330
+ *
15331
+ * @export
15332
+ * @interface ShopTopBuyerDTO
15333
+ */
15334
+ export interface ShopTopBuyerDTO {
15335
+ /**
15336
+ *
15337
+ * @type {string}
15338
+ * @memberof ShopTopBuyerDTO
15339
+ */
15340
+ playerId: string;
15341
+ /**
15342
+ *
15343
+ * @type {string}
15344
+ * @memberof ShopTopBuyerDTO
15345
+ */
15346
+ playerName?: string;
15347
+ /**
15348
+ *
15349
+ * @type {number}
15350
+ * @memberof ShopTopBuyerDTO
15351
+ */
15352
+ orderCount: number;
15353
+ /**
15354
+ *
15355
+ * @type {number}
15356
+ * @memberof ShopTopBuyerDTO
15357
+ */
15358
+ totalSpend: number;
15359
+ }
15360
+ /**
15361
+ *
15362
+ * @export
15363
+ * @interface ShopTopBuyerDTOAPI
15364
+ */
15365
+ export interface ShopTopBuyerDTOAPI {
15366
+ /**
15367
+ *
15368
+ * @type {Array<ShopTopBuyerDTO>}
15369
+ * @memberof ShopTopBuyerDTOAPI
15370
+ */
15371
+ data: Array<ShopTopBuyerDTO>;
15372
+ /**
15373
+ *
15374
+ * @type {MetadataOutput}
15375
+ * @memberof ShopTopBuyerDTOAPI
15376
+ */
15377
+ meta: MetadataOutput;
15378
+ }
15379
+ /**
15380
+ *
15381
+ * @export
15382
+ * @interface ShopTopListingDTO
15383
+ */
15384
+ export interface ShopTopListingDTO {
15385
+ /**
15386
+ *
15387
+ * @type {string}
15388
+ * @memberof ShopTopListingDTO
15389
+ */
15390
+ name: string;
15391
+ /**
15392
+ *
15393
+ * @type {number}
15394
+ * @memberof ShopTopListingDTO
15395
+ */
15396
+ orderCount: number;
15397
+ /**
15398
+ *
15399
+ * @type {number}
15400
+ * @memberof ShopTopListingDTO
15401
+ */
15402
+ totalRevenue: number;
15403
+ /**
15404
+ *
15405
+ * @type {number}
15406
+ * @memberof ShopTopListingDTO
15407
+ */
15408
+ quantity: number;
15409
+ }
15410
+ /**
15411
+ *
15412
+ * @export
15413
+ * @interface ShopTopListingDTOAPI
15414
+ */
15415
+ export interface ShopTopListingDTOAPI {
15416
+ /**
15417
+ *
15418
+ * @type {Array<ShopTopListingDTO>}
15419
+ * @memberof ShopTopListingDTOAPI
15420
+ */
15421
+ data: Array<ShopTopListingDTO>;
15422
+ /**
15423
+ *
15424
+ * @type {MetadataOutput}
15425
+ * @memberof ShopTopListingDTOAPI
15426
+ */
15427
+ meta: MetadataOutput;
15428
+ }
15429
+ /**
15430
+ *
15431
+ * @export
15432
+ * @interface SmallModuleOutputArrayDTOAPI
15433
+ */
15434
+ export interface SmallModuleOutputArrayDTOAPI {
15435
+ /**
15436
+ *
15437
+ * @type {Array<SmallModuleVersionOutputDTO>}
15438
+ * @memberof SmallModuleOutputArrayDTOAPI
15439
+ */
15440
+ data: Array<SmallModuleVersionOutputDTO>;
15441
+ /**
15442
+ *
15443
+ * @type {MetadataOutput}
15444
+ * @memberof SmallModuleOutputArrayDTOAPI
15445
+ */
15446
+ meta: MetadataOutput;
15447
+ }
15448
+ /**
15449
+ *
15450
+ * @export
15451
+ * @interface SmallModuleVersionOutputDTO
15452
+ */
15453
+ export interface SmallModuleVersionOutputDTO {
15454
+ /**
15455
+ *
15456
+ * @type {string}
15457
+ * @memberof SmallModuleVersionOutputDTO
15458
+ */
15459
+ id: string;
15460
+ /**
15461
+ *
15462
+ * @type {string}
15463
+ * @memberof SmallModuleVersionOutputDTO
15464
+ */
15465
+ tag: string;
15466
+ /**
15467
+ *
15468
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15469
+ * @memberof SmallModuleVersionOutputDTO
15470
+ */
15471
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15472
+ /**
15473
+ *
15474
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15475
+ * @memberof SmallModuleVersionOutputDTO
15476
+ */
15477
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15478
+ }
15479
+ /**
15480
+ *
15481
+ * @export
15482
+ * @interface StorefrontConfigCreateDTO
15483
+ */
15484
+ export interface StorefrontConfigCreateDTO {
15485
+ /**
15486
+ *
15487
+ * @type {string}
15488
+ * @memberof StorefrontConfigCreateDTO
15489
+ */
15490
+ gameServerId: string;
15491
+ /**
15492
+ *
15493
+ * @type {string}
15494
+ * @memberof StorefrontConfigCreateDTO
15495
+ */
15496
+ templateId: string;
14618
15497
  /**
14619
15498
  *
14620
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14621
- * @memberof ShopSearchInputAllowedRangeFilter
15499
+ * @type {object}
15500
+ * @memberof StorefrontConfigCreateDTO
14622
15501
  */
14623
- updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15502
+ values?: object;
14624
15503
  }
14625
15504
  /**
14626
15505
  *
14627
15506
  * @export
14628
- * @interface ShopTopBuyerDTO
15507
+ * @interface StorefrontConfigOutputDTO
14629
15508
  */
14630
- export interface ShopTopBuyerDTO {
15509
+ export interface StorefrontConfigOutputDTO {
14631
15510
  /**
14632
15511
  *
14633
15512
  * @type {string}
14634
- * @memberof ShopTopBuyerDTO
15513
+ * @memberof StorefrontConfigOutputDTO
14635
15514
  */
14636
- playerId: string;
15515
+ gameServerId: string;
14637
15516
  /**
14638
15517
  *
14639
15518
  * @type {string}
14640
- * @memberof ShopTopBuyerDTO
15519
+ * @memberof StorefrontConfigOutputDTO
14641
15520
  */
14642
- playerName?: string;
15521
+ templateId: string;
14643
15522
  /**
14644
15523
  *
14645
- * @type {number}
14646
- * @memberof ShopTopBuyerDTO
15524
+ * @type {object}
15525
+ * @memberof StorefrontConfigOutputDTO
14647
15526
  */
14648
- orderCount: number;
15527
+ values: object;
14649
15528
  /**
14650
15529
  *
14651
- * @type {number}
14652
- * @memberof ShopTopBuyerDTO
15530
+ * @type {string}
15531
+ * @memberof StorefrontConfigOutputDTO
14653
15532
  */
14654
- totalSpend: number;
14655
- }
14656
- /**
14657
- *
14658
- * @export
14659
- * @interface ShopTopBuyerDTOAPI
14660
- */
14661
- export interface ShopTopBuyerDTOAPI {
15533
+ id: string;
14662
15534
  /**
14663
15535
  *
14664
- * @type {Array<ShopTopBuyerDTO>}
14665
- * @memberof ShopTopBuyerDTOAPI
15536
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15537
+ * @memberof StorefrontConfigOutputDTO
14666
15538
  */
14667
- data: Array<ShopTopBuyerDTO>;
15539
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14668
15540
  /**
14669
15541
  *
14670
- * @type {MetadataOutput}
14671
- * @memberof ShopTopBuyerDTOAPI
15542
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15543
+ * @memberof StorefrontConfigOutputDTO
14672
15544
  */
14673
- meta: MetadataOutput;
15545
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14674
15546
  }
14675
15547
  /**
14676
15548
  *
14677
15549
  * @export
14678
- * @interface ShopTopListingDTO
15550
+ * @interface StorefrontConfigUpdateDTO
14679
15551
  */
14680
- export interface ShopTopListingDTO {
15552
+ export interface StorefrontConfigUpdateDTO {
14681
15553
  /**
14682
15554
  *
14683
15555
  * @type {string}
14684
- * @memberof ShopTopListingDTO
14685
- */
14686
- name: string;
14687
- /**
14688
- *
14689
- * @type {number}
14690
- * @memberof ShopTopListingDTO
14691
- */
14692
- orderCount: number;
14693
- /**
14694
- *
14695
- * @type {number}
14696
- * @memberof ShopTopListingDTO
15556
+ * @memberof StorefrontConfigUpdateDTO
14697
15557
  */
14698
- totalRevenue: number;
15558
+ templateId?: string;
14699
15559
  /**
14700
15560
  *
14701
- * @type {number}
14702
- * @memberof ShopTopListingDTO
15561
+ * @type {object}
15562
+ * @memberof StorefrontConfigUpdateDTO
14703
15563
  */
14704
- quantity: number;
15564
+ values?: object;
14705
15565
  }
14706
15566
  /**
14707
15567
  *
14708
15568
  * @export
14709
- * @interface ShopTopListingDTOAPI
15569
+ * @interface StorefrontConfigUpsertBody
14710
15570
  */
14711
- export interface ShopTopListingDTOAPI {
15571
+ export interface StorefrontConfigUpsertBody {
14712
15572
  /**
14713
15573
  *
14714
- * @type {Array<ShopTopListingDTO>}
14715
- * @memberof ShopTopListingDTOAPI
15574
+ * @type {string}
15575
+ * @memberof StorefrontConfigUpsertBody
14716
15576
  */
14717
- data: Array<ShopTopListingDTO>;
15577
+ templateId: string;
14718
15578
  /**
14719
15579
  *
14720
- * @type {MetadataOutput}
14721
- * @memberof ShopTopListingDTOAPI
15580
+ * @type {object}
15581
+ * @memberof StorefrontConfigUpsertBody
14722
15582
  */
14723
- meta: MetadataOutput;
15583
+ values: object;
14724
15584
  }
14725
15585
  /**
14726
15586
  *
14727
15587
  * @export
14728
- * @interface SmallModuleOutputArrayDTOAPI
15588
+ * @interface StorefrontConfigUpsertDTO
14729
15589
  */
14730
- export interface SmallModuleOutputArrayDTOAPI {
15590
+ export interface StorefrontConfigUpsertDTO {
14731
15591
  /**
14732
15592
  *
14733
- * @type {Array<SmallModuleVersionOutputDTO>}
14734
- * @memberof SmallModuleOutputArrayDTOAPI
15593
+ * @type {string}
15594
+ * @memberof StorefrontConfigUpsertDTO
14735
15595
  */
14736
- data: Array<SmallModuleVersionOutputDTO>;
15596
+ templateId: string;
14737
15597
  /**
14738
15598
  *
14739
- * @type {MetadataOutput}
14740
- * @memberof SmallModuleOutputArrayDTOAPI
15599
+ * @type {object}
15600
+ * @memberof StorefrontConfigUpsertDTO
14741
15601
  */
14742
- meta: MetadataOutput;
15602
+ values: object;
14743
15603
  }
14744
15604
  /**
14745
15605
  *
14746
15606
  * @export
14747
- * @interface SmallModuleVersionOutputDTO
15607
+ * @interface StorefrontTemplateDTO
14748
15608
  */
14749
- export interface SmallModuleVersionOutputDTO {
15609
+ export interface StorefrontTemplateDTO {
14750
15610
  /**
14751
15611
  *
14752
15612
  * @type {string}
14753
- * @memberof SmallModuleVersionOutputDTO
15613
+ * @memberof StorefrontTemplateDTO
14754
15614
  */
14755
15615
  id: string;
14756
15616
  /**
14757
15617
  *
14758
15618
  * @type {string}
14759
- * @memberof SmallModuleVersionOutputDTO
15619
+ * @memberof StorefrontTemplateDTO
14760
15620
  */
14761
- tag: string;
15621
+ name: string;
14762
15622
  /**
14763
15623
  *
14764
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14765
- * @memberof SmallModuleVersionOutputDTO
15624
+ * @type {object}
15625
+ * @memberof StorefrontTemplateDTO
14766
15626
  */
14767
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15627
+ schema: object;
15628
+ }
15629
+ /**
15630
+ *
15631
+ * @export
15632
+ * @interface StorefrontTemplateOutputArrayDTOAPI
15633
+ */
15634
+ export interface StorefrontTemplateOutputArrayDTOAPI {
14768
15635
  /**
14769
15636
  *
14770
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14771
- * @memberof SmallModuleVersionOutputDTO
15637
+ * @type {Array<StorefrontTemplateDTO>}
15638
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
14772
15639
  */
14773
- updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15640
+ data: Array<StorefrontTemplateDTO>;
15641
+ /**
15642
+ *
15643
+ * @type {MetadataOutput}
15644
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15645
+ */
15646
+ meta: MetadataOutput;
14774
15647
  }
14775
15648
  /**
14776
15649
  *
@@ -16371,6 +17244,38 @@ export interface UserAssignmentOutputDTO {
16371
17244
  */
16372
17245
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16373
17246
  }
17247
+ /**
17248
+ *
17249
+ * @export
17250
+ * @interface UserCountOutputDTO
17251
+ */
17252
+ export interface UserCountOutputDTO {
17253
+ /**
17254
+ *
17255
+ * @type {number}
17256
+ * @memberof UserCountOutputDTO
17257
+ */
17258
+ count: number;
17259
+ }
17260
+ /**
17261
+ *
17262
+ * @export
17263
+ * @interface UserCountOutputDTOAPI
17264
+ */
17265
+ export interface UserCountOutputDTOAPI {
17266
+ /**
17267
+ *
17268
+ * @type {UserCountOutputDTO}
17269
+ * @memberof UserCountOutputDTOAPI
17270
+ */
17271
+ data: UserCountOutputDTO;
17272
+ /**
17273
+ *
17274
+ * @type {MetadataOutput}
17275
+ * @memberof UserCountOutputDTOAPI
17276
+ */
17277
+ meta: MetadataOutput;
17278
+ }
16374
17279
  /**
16375
17280
  *
16376
17281
  * @export
@@ -16518,6 +17423,12 @@ export interface UserOutputDTO {
16518
17423
  * @memberof UserOutputDTO
16519
17424
  */
16520
17425
  isDashboardUser: boolean;
17426
+ /**
17427
+ *
17428
+ * @type {boolean}
17429
+ * @memberof UserOutputDTO
17430
+ */
17431
+ isSupportAccount: boolean;
16521
17432
  /**
16522
17433
  *
16523
17434
  * @type {string}
@@ -16536,6 +17447,12 @@ export interface UserOutputDTO {
16536
17447
  * @memberof UserOutputDTO
16537
17448
  */
16538
17449
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17450
+ /**
17451
+ *
17452
+ * @type {string}
17453
+ * @memberof UserOutputDTO
17454
+ */
17455
+ inviteLinkId?: string;
16539
17456
  }
16540
17457
  /**
16541
17458
  *
@@ -16634,6 +17551,37 @@ export interface UserOutputWithRolesDTO {
16634
17551
  * @memberof UserOutputWithRolesDTO
16635
17552
  */
16636
17553
  isDashboardUser: boolean;
17554
+ /**
17555
+ *
17556
+ * @type {boolean}
17557
+ * @memberof UserOutputWithRolesDTO
17558
+ */
17559
+ isSupportAccount: boolean;
17560
+ /**
17561
+ *
17562
+ * @type {string}
17563
+ * @memberof UserOutputWithRolesDTO
17564
+ */
17565
+ inviteLinkId?: string;
17566
+ }
17567
+ /**
17568
+ *
17569
+ * @export
17570
+ * @interface UserOutputWithRolesDTOAPI
17571
+ */
17572
+ export interface UserOutputWithRolesDTOAPI {
17573
+ /**
17574
+ *
17575
+ * @type {UserOutputWithRolesDTO}
17576
+ * @memberof UserOutputWithRolesDTOAPI
17577
+ */
17578
+ data: UserOutputWithRolesDTO;
17579
+ /**
17580
+ *
17581
+ * @type {MetadataOutput}
17582
+ * @memberof UserOutputWithRolesDTOAPI
17583
+ */
17584
+ meta: MetadataOutput;
16637
17585
  }
16638
17586
  /**
16639
17587
  *
@@ -17303,7 +18251,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17303
18251
  */
17304
18252
  analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17305
18253
  /**
17306
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18254
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17307
18255
  * @summary Get module health scores
17308
18256
  * @param {string} [startDate]
17309
18257
  * @param {string} [endDate]
@@ -17313,6 +18261,18 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17313
18261
  * @throws {RequiredError}
17314
18262
  */
17315
18263
  analyticsControllerGetModuleHealth: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
18264
+ /**
18265
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
18266
+ * @summary Get per-installation module KPIs
18267
+ * @param {string} gameServerId
18268
+ * @param {string} moduleId
18269
+ * @param {string} [startDate]
18270
+ * @param {string} [endDate]
18271
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18272
+ * @param {*} [options] Override http request option.
18273
+ * @throws {RequiredError}
18274
+ */
18275
+ analyticsControllerGetModuleInstallationKpis: (gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17316
18276
  /**
17317
18277
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
17318
18278
  * @summary Get module item failure aggregate
@@ -17524,7 +18484,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17524
18484
  analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17525
18485
  /**
17526
18486
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17527
- * @summary Get top modules by event volume
18487
+ * @summary Get top modules by execution volume
17528
18488
  * @param {string} [startDate]
17529
18489
  * @param {string} [endDate]
17530
18490
  * @param {string} [gameServerId]
@@ -17680,7 +18640,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17680
18640
  */
17681
18641
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
17682
18642
  /**
17683
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18643
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17684
18644
  * @summary Get module health scores
17685
18645
  * @param {string} [startDate]
17686
18646
  * @param {string} [endDate]
@@ -17690,6 +18650,18 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17690
18650
  * @throws {RequiredError}
17691
18651
  */
17692
18652
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleHealthEntryDTOAPI>>;
18653
+ /**
18654
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
18655
+ * @summary Get per-installation module KPIs
18656
+ * @param {string} gameServerId
18657
+ * @param {string} moduleId
18658
+ * @param {string} [startDate]
18659
+ * @param {string} [endDate]
18660
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18661
+ * @param {*} [options] Override http request option.
18662
+ * @throws {RequiredError}
18663
+ */
18664
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>>;
17693
18665
  /**
17694
18666
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
17695
18667
  * @summary Get module item failure aggregate
@@ -17901,7 +18873,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17901
18873
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
17902
18874
  /**
17903
18875
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17904
- * @summary Get top modules by event volume
18876
+ * @summary Get top modules by execution volume
17905
18877
  * @param {string} [startDate]
17906
18878
  * @param {string} [endDate]
17907
18879
  * @param {string} [gameServerId]
@@ -18057,7 +19029,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18057
19029
  */
18058
19030
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
18059
19031
  /**
18060
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19032
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18061
19033
  * @summary Get module health scores
18062
19034
  * @param {string} [startDate]
18063
19035
  * @param {string} [endDate]
@@ -18067,6 +19039,18 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18067
19039
  * @throws {RequiredError}
18068
19040
  */
18069
19041
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleHealthEntryDTOAPI>;
19042
+ /**
19043
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
19044
+ * @summary Get per-installation module KPIs
19045
+ * @param {string} gameServerId
19046
+ * @param {string} moduleId
19047
+ * @param {string} [startDate]
19048
+ * @param {string} [endDate]
19049
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
19050
+ * @param {*} [options] Override http request option.
19051
+ * @throws {RequiredError}
19052
+ */
19053
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationKpisDTOAPI>;
18070
19054
  /**
18071
19055
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
18072
19056
  * @summary Get module item failure aggregate
@@ -18278,7 +19262,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18278
19262
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
18279
19263
  /**
18280
19264
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18281
- * @summary Get top modules by event volume
19265
+ * @summary Get top modules by execution volume
18282
19266
  * @param {string} [startDate]
18283
19267
  * @param {string} [endDate]
18284
19268
  * @param {string} [gameServerId]
@@ -18448,7 +19432,7 @@ export declare class AnalyticsApi extends BaseAPI {
18448
19432
  */
18449
19433
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
18450
19434
  /**
18451
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19435
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18452
19436
  * @summary Get module health scores
18453
19437
  * @param {string} [startDate]
18454
19438
  * @param {string} [endDate]
@@ -18459,6 +19443,19 @@ export declare class AnalyticsApi extends BaseAPI {
18459
19443
  * @memberof AnalyticsApi
18460
19444
  */
18461
19445
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleHealthEntryDTOAPI, any>>;
19446
+ /**
19447
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
19448
+ * @summary Get per-installation module KPIs
19449
+ * @param {string} gameServerId
19450
+ * @param {string} moduleId
19451
+ * @param {string} [startDate]
19452
+ * @param {string} [endDate]
19453
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
19454
+ * @param {*} [options] Override http request option.
19455
+ * @throws {RequiredError}
19456
+ * @memberof AnalyticsApi
19457
+ */
19458
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationKpisDTOAPI, any>>;
18462
19459
  /**
18463
19460
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
18464
19461
  * @summary Get module item failure aggregate
@@ -18689,7 +19686,7 @@ export declare class AnalyticsApi extends BaseAPI {
18689
19686
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
18690
19687
  /**
18691
19688
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18692
- * @summary Get top modules by event volume
19689
+ * @summary Get top modules by execution volume
18693
19690
  * @param {string} [startDate]
18694
19691
  * @param {string} [endDate]
18695
19692
  * @param {string} [gameServerId]
@@ -18832,6 +19829,16 @@ export declare const AnalyticsControllerGetModuleHealthPeriodEnum: {
18832
19829
  readonly _90d: "90d";
18833
19830
  };
18834
19831
  export type AnalyticsControllerGetModuleHealthPeriodEnum = (typeof AnalyticsControllerGetModuleHealthPeriodEnum)[keyof typeof AnalyticsControllerGetModuleHealthPeriodEnum];
19832
+ /**
19833
+ * @export
19834
+ */
19835
+ export declare const AnalyticsControllerGetModuleInstallationKpisPeriodEnum: {
19836
+ readonly _24h: "24h";
19837
+ readonly _7d: "7d";
19838
+ readonly _30d: "30d";
19839
+ readonly _90d: "90d";
19840
+ };
19841
+ export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum = (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
18835
19842
  /**
18836
19843
  * @export
18837
19844
  */
@@ -19021,27 +20028,177 @@ export declare const AnalyticsControllerGetTopListingsPeriodEnum: {
19021
20028
  readonly _30d: "30d";
19022
20029
  readonly _90d: "90d";
19023
20030
  };
19024
- export type AnalyticsControllerGetTopListingsPeriodEnum = (typeof AnalyticsControllerGetTopListingsPeriodEnum)[keyof typeof AnalyticsControllerGetTopListingsPeriodEnum];
20031
+ export type AnalyticsControllerGetTopListingsPeriodEnum = (typeof AnalyticsControllerGetTopListingsPeriodEnum)[keyof typeof AnalyticsControllerGetTopListingsPeriodEnum];
20032
+ /**
20033
+ * @export
20034
+ */
20035
+ export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
20036
+ readonly _24h: "24h";
20037
+ readonly _7d: "7d";
20038
+ readonly _30d: "30d";
20039
+ readonly _90d: "90d";
20040
+ };
20041
+ export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
20042
+ /**
20043
+ * @export
20044
+ */
20045
+ export declare const AnalyticsControllerGetTopServersPeriodEnum: {
20046
+ readonly _24h: "24h";
20047
+ readonly _7d: "7d";
20048
+ readonly _30d: "30d";
20049
+ readonly _90d: "90d";
20050
+ };
20051
+ export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
20052
+ /**
20053
+ * AuthApi - axios parameter creator
20054
+ * @export
20055
+ */
20056
+ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
20057
+ /**
20058
+ * <br> OperationId: `AuthControllerAccount`
20059
+ * @summary Account
20060
+ * @param {*} [options] Override http request option.
20061
+ * @throws {RequiredError}
20062
+ */
20063
+ authControllerAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20064
+ /**
20065
+ * <br> OperationId: `AuthControllerCallback`
20066
+ * @summary Callback
20067
+ * @param {*} [options] Override http request option.
20068
+ * @throws {RequiredError}
20069
+ */
20070
+ authControllerCallback: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20071
+ /**
20072
+ * <br> OperationId: `AuthControllerLogin`
20073
+ * @summary Login
20074
+ * @param {string} [redirect]
20075
+ * @param {*} [options] Override http request option.
20076
+ * @throws {RequiredError}
20077
+ */
20078
+ authControllerLogin: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20079
+ /**
20080
+ * <br> OperationId: `AuthControllerLogout`
20081
+ * @summary Logout
20082
+ * @param {string} [redirect]
20083
+ * @param {*} [options] Override http request option.
20084
+ * @throws {RequiredError}
20085
+ */
20086
+ authControllerLogout: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20087
+ };
20088
+ /**
20089
+ * AuthApi - functional programming interface
20090
+ * @export
20091
+ */
20092
+ export declare const AuthApiFp: (configuration?: Configuration) => {
20093
+ /**
20094
+ * <br> OperationId: `AuthControllerAccount`
20095
+ * @summary Account
20096
+ * @param {*} [options] Override http request option.
20097
+ * @throws {RequiredError}
20098
+ */
20099
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20100
+ /**
20101
+ * <br> OperationId: `AuthControllerCallback`
20102
+ * @summary Callback
20103
+ * @param {*} [options] Override http request option.
20104
+ * @throws {RequiredError}
20105
+ */
20106
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20107
+ /**
20108
+ * <br> OperationId: `AuthControllerLogin`
20109
+ * @summary Login
20110
+ * @param {string} [redirect]
20111
+ * @param {*} [options] Override http request option.
20112
+ * @throws {RequiredError}
20113
+ */
20114
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20115
+ /**
20116
+ * <br> OperationId: `AuthControllerLogout`
20117
+ * @summary Logout
20118
+ * @param {string} [redirect]
20119
+ * @param {*} [options] Override http request option.
20120
+ * @throws {RequiredError}
20121
+ */
20122
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20123
+ };
19025
20124
  /**
20125
+ * AuthApi - factory interface
19026
20126
  * @export
19027
20127
  */
19028
- export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
19029
- readonly _24h: "24h";
19030
- readonly _7d: "7d";
19031
- readonly _30d: "30d";
19032
- readonly _90d: "90d";
20128
+ export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20129
+ /**
20130
+ * <br> OperationId: `AuthControllerAccount`
20131
+ * @summary Account
20132
+ * @param {*} [options] Override http request option.
20133
+ * @throws {RequiredError}
20134
+ */
20135
+ authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void>;
20136
+ /**
20137
+ * <br> OperationId: `AuthControllerCallback`
20138
+ * @summary Callback
20139
+ * @param {*} [options] Override http request option.
20140
+ * @throws {RequiredError}
20141
+ */
20142
+ authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
20143
+ /**
20144
+ * <br> OperationId: `AuthControllerLogin`
20145
+ * @summary Login
20146
+ * @param {string} [redirect]
20147
+ * @param {*} [options] Override http request option.
20148
+ * @throws {RequiredError}
20149
+ */
20150
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20151
+ /**
20152
+ * <br> OperationId: `AuthControllerLogout`
20153
+ * @summary Logout
20154
+ * @param {string} [redirect]
20155
+ * @param {*} [options] Override http request option.
20156
+ * @throws {RequiredError}
20157
+ */
20158
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
19033
20159
  };
19034
- export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
19035
20160
  /**
20161
+ * AuthApi - object-oriented interface
19036
20162
  * @export
20163
+ * @class AuthApi
20164
+ * @extends {BaseAPI}
19037
20165
  */
19038
- export declare const AnalyticsControllerGetTopServersPeriodEnum: {
19039
- readonly _24h: "24h";
19040
- readonly _7d: "7d";
19041
- readonly _30d: "30d";
19042
- readonly _90d: "90d";
19043
- };
19044
- export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
20166
+ export declare class AuthApi extends BaseAPI {
20167
+ /**
20168
+ * <br> OperationId: `AuthControllerAccount`
20169
+ * @summary Account
20170
+ * @param {*} [options] Override http request option.
20171
+ * @throws {RequiredError}
20172
+ * @memberof AuthApi
20173
+ */
20174
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20175
+ /**
20176
+ * <br> OperationId: `AuthControllerCallback`
20177
+ * @summary Callback
20178
+ * @param {*} [options] Override http request option.
20179
+ * @throws {RequiredError}
20180
+ * @memberof AuthApi
20181
+ */
20182
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20183
+ /**
20184
+ * <br> OperationId: `AuthControllerLogin`
20185
+ * @summary Login
20186
+ * @param {string} [redirect]
20187
+ * @param {*} [options] Override http request option.
20188
+ * @throws {RequiredError}
20189
+ * @memberof AuthApi
20190
+ */
20191
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20192
+ /**
20193
+ * <br> OperationId: `AuthControllerLogout`
20194
+ * @summary Logout
20195
+ * @param {string} [redirect]
20196
+ * @param {*} [options] Override http request option.
20197
+ * @throws {RequiredError}
20198
+ * @memberof AuthApi
20199
+ */
20200
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20201
+ }
19045
20202
  /**
19046
20203
  * CommandApi - axios parameter creator
19047
20204
  * @export
@@ -25031,7 +26188,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25031
26188
  * @param {*} [options] Override http request option.
25032
26189
  * @throws {RequiredError}
25033
26190
  */
25034
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26191
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
25035
26192
  /**
25036
26193
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25037
26194
  * @summary Search
@@ -25085,7 +26242,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25085
26242
  * @param {*} [options] Override http request option.
25086
26243
  * @throws {RequiredError}
25087
26244
  */
25088
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
26245
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
25089
26246
  /**
25090
26247
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25091
26248
  * @summary Search
@@ -25145,7 +26302,7 @@ export declare class ShopListingApi extends BaseAPI {
25145
26302
  * @throws {RequiredError}
25146
26303
  * @memberof ShopListingApi
25147
26304
  */
25148
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
26305
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
25149
26306
  /**
25150
26307
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25151
26308
  * @summary Search
@@ -25357,6 +26514,131 @@ export declare class ShopOrderApi extends BaseAPI {
25357
26514
  */
25358
26515
  shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
25359
26516
  }
26517
+ /**
26518
+ * StorefrontConfigApi - axios parameter creator
26519
+ * @export
26520
+ */
26521
+ export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Configuration) => {
26522
+ /**
26523
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26524
+ * @summary Get effective config
26525
+ * @param {string} gameServerId
26526
+ * @param {*} [options] Override http request option.
26527
+ * @throws {RequiredError}
26528
+ */
26529
+ storefrontConfigControllerGetEffectiveConfig: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26530
+ /**
26531
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26532
+ * @summary List templates
26533
+ * @param {*} [options] Override http request option.
26534
+ * @throws {RequiredError}
26535
+ */
26536
+ storefrontConfigControllerListTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26537
+ /**
26538
+ * 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`
26539
+ * @summary Set config
26540
+ * @param {string} gameServerId
26541
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26542
+ * @param {*} [options] Override http request option.
26543
+ * @throws {RequiredError}
26544
+ */
26545
+ storefrontConfigControllerSetConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26546
+ };
26547
+ /**
26548
+ * StorefrontConfigApi - functional programming interface
26549
+ * @export
26550
+ */
26551
+ export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
26552
+ /**
26553
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26554
+ * @summary Get effective config
26555
+ * @param {string} gameServerId
26556
+ * @param {*} [options] Override http request option.
26557
+ * @throws {RequiredError}
26558
+ */
26559
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26560
+ /**
26561
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26562
+ * @summary List templates
26563
+ * @param {*} [options] Override http request option.
26564
+ * @throws {RequiredError}
26565
+ */
26566
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>>;
26567
+ /**
26568
+ * 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`
26569
+ * @summary Set config
26570
+ * @param {string} gameServerId
26571
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26572
+ * @param {*} [options] Override http request option.
26573
+ * @throws {RequiredError}
26574
+ */
26575
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26576
+ };
26577
+ /**
26578
+ * StorefrontConfigApi - factory interface
26579
+ * @export
26580
+ */
26581
+ export declare const StorefrontConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26582
+ /**
26583
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26584
+ * @summary Get effective config
26585
+ * @param {string} gameServerId
26586
+ * @param {*} [options] Override http request option.
26587
+ * @throws {RequiredError}
26588
+ */
26589
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26590
+ /**
26591
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26592
+ * @summary List templates
26593
+ * @param {*} [options] Override http request option.
26594
+ * @throws {RequiredError}
26595
+ */
26596
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>;
26597
+ /**
26598
+ * 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`
26599
+ * @summary Set config
26600
+ * @param {string} gameServerId
26601
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26602
+ * @param {*} [options] Override http request option.
26603
+ * @throws {RequiredError}
26604
+ */
26605
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26606
+ };
26607
+ /**
26608
+ * StorefrontConfigApi - object-oriented interface
26609
+ * @export
26610
+ * @class StorefrontConfigApi
26611
+ * @extends {BaseAPI}
26612
+ */
26613
+ export declare class StorefrontConfigApi extends BaseAPI {
26614
+ /**
26615
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26616
+ * @summary Get effective config
26617
+ * @param {string} gameServerId
26618
+ * @param {*} [options] Override http request option.
26619
+ * @throws {RequiredError}
26620
+ * @memberof StorefrontConfigApi
26621
+ */
26622
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26623
+ /**
26624
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26625
+ * @summary List templates
26626
+ * @param {*} [options] Override http request option.
26627
+ * @throws {RequiredError}
26628
+ * @memberof StorefrontConfigApi
26629
+ */
26630
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontTemplateOutputArrayDTOAPI, any>>;
26631
+ /**
26632
+ * 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`
26633
+ * @summary Set config
26634
+ * @param {string} gameServerId
26635
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26636
+ * @param {*} [options] Override http request option.
26637
+ * @throws {RequiredError}
26638
+ * @memberof StorefrontConfigApi
26639
+ */
26640
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26641
+ }
25360
26642
  /**
25361
26643
  * TrackingApi - axios parameter creator
25362
26644
  * @export
@@ -25563,6 +26845,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25563
26845
  * @throws {RequiredError}
25564
26846
  */
25565
26847
  userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26848
+ /**
26849
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
26850
+ * @summary Count billable dashboard users
26851
+ * @param {*} [options] Override http request option.
26852
+ * @throws {RequiredError}
26853
+ */
26854
+ userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25566
26855
  /**
25567
26856
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25568
26857
  * @summary Create
@@ -25682,6 +26971,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
25682
26971
  * @throws {RequiredError}
25683
26972
  */
25684
26973
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26974
+ /**
26975
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
26976
+ * @summary Count billable dashboard users
26977
+ * @param {*} [options] Override http request option.
26978
+ * @throws {RequiredError}
26979
+ */
26980
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
25685
26981
  /**
25686
26982
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25687
26983
  * @summary Create
@@ -25801,6 +27097,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
25801
27097
  * @throws {RequiredError}
25802
27098
  */
25803
27099
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27100
+ /**
27101
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27102
+ * @summary Count billable dashboard users
27103
+ * @param {*} [options] Override http request option.
27104
+ * @throws {RequiredError}
27105
+ */
27106
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
25804
27107
  /**
25805
27108
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25806
27109
  * @summary Create
@@ -25923,6 +27226,14 @@ export declare class UserApi extends BaseAPI {
25923
27226
  * @memberof UserApi
25924
27227
  */
25925
27228
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27229
+ /**
27230
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27231
+ * @summary Count billable dashboard users
27232
+ * @param {*} [options] Override http request option.
27233
+ * @throws {RequiredError}
27234
+ * @memberof UserApi
27235
+ */
27236
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
25926
27237
  /**
25927
27238
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25928
27239
  * @summary Create
@@ -26235,4 +27546,195 @@ export declare class VariableApi extends BaseAPI {
26235
27546
  */
26236
27547
  variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
26237
27548
  }
27549
+ /**
27550
+ * InviteLinkApi - axios parameter creator
27551
+ * @export
27552
+ */
27553
+ export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
27554
+ /**
27555
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27556
+ * @summary Create invite link
27557
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27558
+ * @param {*} [options] Override http request option.
27559
+ * @throws {RequiredError}
27560
+ */
27561
+ inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27562
+ /**
27563
+ * <br> OperationId: `InviteLinkControllerPreview`
27564
+ * @summary Preview
27565
+ * @param {string} token
27566
+ * @param {*} [options] Override http request option.
27567
+ * @throws {RequiredError}
27568
+ */
27569
+ inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27570
+ /**
27571
+ * <br> OperationId: `InviteLinkControllerRedeem`
27572
+ * @summary Redeem
27573
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27574
+ * @param {*} [options] Override http request option.
27575
+ * @throws {RequiredError}
27576
+ */
27577
+ inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27578
+ /**
27579
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27580
+ * @summary Revoke
27581
+ * @param {string} id
27582
+ * @param {*} [options] Override http request option.
27583
+ * @throws {RequiredError}
27584
+ */
27585
+ inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27586
+ /**
27587
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27588
+ * @summary Search
27589
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27590
+ * @param {*} [options] Override http request option.
27591
+ * @throws {RequiredError}
27592
+ */
27593
+ inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27594
+ };
27595
+ /**
27596
+ * InviteLinkApi - functional programming interface
27597
+ * @export
27598
+ */
27599
+ export declare const InviteLinkApiFp: (configuration?: Configuration) => {
27600
+ /**
27601
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27602
+ * @summary Create invite link
27603
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27604
+ * @param {*} [options] Override http request option.
27605
+ * @throws {RequiredError}
27606
+ */
27607
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
27608
+ /**
27609
+ * <br> OperationId: `InviteLinkControllerPreview`
27610
+ * @summary Preview
27611
+ * @param {string} token
27612
+ * @param {*} [options] Override http request option.
27613
+ * @throws {RequiredError}
27614
+ */
27615
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
27616
+ /**
27617
+ * <br> OperationId: `InviteLinkControllerRedeem`
27618
+ * @summary Redeem
27619
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27620
+ * @param {*} [options] Override http request option.
27621
+ * @throws {RequiredError}
27622
+ */
27623
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
27624
+ /**
27625
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27626
+ * @summary Revoke
27627
+ * @param {string} id
27628
+ * @param {*} [options] Override http request option.
27629
+ * @throws {RequiredError}
27630
+ */
27631
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
27632
+ /**
27633
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27634
+ * @summary Search
27635
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27636
+ * @param {*} [options] Override http request option.
27637
+ * @throws {RequiredError}
27638
+ */
27639
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
27640
+ };
27641
+ /**
27642
+ * InviteLinkApi - factory interface
27643
+ * @export
27644
+ */
27645
+ export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
27646
+ /**
27647
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27648
+ * @summary Create invite link
27649
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27650
+ * @param {*} [options] Override http request option.
27651
+ * @throws {RequiredError}
27652
+ */
27653
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
27654
+ /**
27655
+ * <br> OperationId: `InviteLinkControllerPreview`
27656
+ * @summary Preview
27657
+ * @param {string} token
27658
+ * @param {*} [options] Override http request option.
27659
+ * @throws {RequiredError}
27660
+ */
27661
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
27662
+ /**
27663
+ * <br> OperationId: `InviteLinkControllerRedeem`
27664
+ * @summary Redeem
27665
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27666
+ * @param {*} [options] Override http request option.
27667
+ * @throws {RequiredError}
27668
+ */
27669
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
27670
+ /**
27671
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27672
+ * @summary Revoke
27673
+ * @param {string} id
27674
+ * @param {*} [options] Override http request option.
27675
+ * @throws {RequiredError}
27676
+ */
27677
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27678
+ /**
27679
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27680
+ * @summary Search
27681
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27682
+ * @param {*} [options] Override http request option.
27683
+ * @throws {RequiredError}
27684
+ */
27685
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
27686
+ };
27687
+ /**
27688
+ * InviteLinkApi - object-oriented interface
27689
+ * @export
27690
+ * @class InviteLinkApi
27691
+ * @extends {BaseAPI}
27692
+ */
27693
+ export declare class InviteLinkApi extends BaseAPI {
27694
+ /**
27695
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27696
+ * @summary Create invite link
27697
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27698
+ * @param {*} [options] Override http request option.
27699
+ * @throws {RequiredError}
27700
+ * @memberof InviteLinkApi
27701
+ */
27702
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
27703
+ /**
27704
+ * <br> OperationId: `InviteLinkControllerPreview`
27705
+ * @summary Preview
27706
+ * @param {string} token
27707
+ * @param {*} [options] Override http request option.
27708
+ * @throws {RequiredError}
27709
+ * @memberof InviteLinkApi
27710
+ */
27711
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
27712
+ /**
27713
+ * <br> OperationId: `InviteLinkControllerRedeem`
27714
+ * @summary Redeem
27715
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27716
+ * @param {*} [options] Override http request option.
27717
+ * @throws {RequiredError}
27718
+ * @memberof InviteLinkApi
27719
+ */
27720
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
27721
+ /**
27722
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27723
+ * @summary Revoke
27724
+ * @param {string} id
27725
+ * @param {*} [options] Override http request option.
27726
+ * @throws {RequiredError}
27727
+ * @memberof InviteLinkApi
27728
+ */
27729
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27730
+ /**
27731
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27732
+ * @summary Search
27733
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27734
+ * @param {*} [options] Override http request option.
27735
+ * @throws {RequiredError}
27736
+ * @memberof InviteLinkApi
27737
+ */
27738
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
27739
+ }
26238
27740
  //# sourceMappingURL=api.d.ts.map