@takaro/apiclient 0.0.0-dev.318c3f4 → 0.0.0-dev.318d34c

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.
@@ -2599,6 +2599,50 @@ export declare const DomainUpdateInputDTOStateEnum: {
2599
2599
  readonly Maintenance: "MAINTENANCE";
2600
2600
  };
2601
2601
  export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
2602
+ /**
2603
+ *
2604
+ * @export
2605
+ * @interface EffectiveStorefrontConfigDTO
2606
+ */
2607
+ export interface EffectiveStorefrontConfigDTO {
2608
+ /**
2609
+ *
2610
+ * @type {string}
2611
+ * @memberof EffectiveStorefrontConfigDTO
2612
+ */
2613
+ templateId: string;
2614
+ /**
2615
+ *
2616
+ * @type {object}
2617
+ * @memberof EffectiveStorefrontConfigDTO
2618
+ */
2619
+ values: object;
2620
+ /**
2621
+ *
2622
+ * @type {object}
2623
+ * @memberof EffectiveStorefrontConfigDTO
2624
+ */
2625
+ schema: object;
2626
+ }
2627
+ /**
2628
+ *
2629
+ * @export
2630
+ * @interface EffectiveStorefrontConfigOutputDTOAPI
2631
+ */
2632
+ export interface EffectiveStorefrontConfigOutputDTOAPI {
2633
+ /**
2634
+ *
2635
+ * @type {EffectiveStorefrontConfigDTO}
2636
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2637
+ */
2638
+ data: EffectiveStorefrontConfigDTO;
2639
+ /**
2640
+ *
2641
+ * @type {MetadataOutput}
2642
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2643
+ */
2644
+ meta: MetadataOutput;
2645
+ }
2602
2646
  /**
2603
2647
  *
2604
2648
  * @export
@@ -7196,6 +7240,32 @@ export interface LoginOutputDTOAPI {
7196
7240
  */
7197
7241
  meta: MetadataOutput;
7198
7242
  }
7243
+ /**
7244
+ *
7245
+ * @export
7246
+ * @interface LoginQueryParams
7247
+ */
7248
+ export interface LoginQueryParams {
7249
+ /**
7250
+ *
7251
+ * @type {string}
7252
+ * @memberof LoginQueryParams
7253
+ */
7254
+ redirect?: string;
7255
+ }
7256
+ /**
7257
+ *
7258
+ * @export
7259
+ * @interface LogoutQueryParams
7260
+ */
7261
+ export interface LogoutQueryParams {
7262
+ /**
7263
+ *
7264
+ * @type {string}
7265
+ * @memberof LogoutQueryParams
7266
+ */
7267
+ redirect?: string;
7268
+ }
7199
7269
  /**
7200
7270
  *
7201
7271
  * @export
@@ -7319,7 +7389,7 @@ export interface MeOutputDTO {
7319
7389
  * @type {UserOutputWithRolesDTO}
7320
7390
  * @memberof MeOutputDTO
7321
7391
  */
7322
- user: UserOutputWithRolesDTO;
7392
+ user?: UserOutputWithRolesDTO;
7323
7393
  /**
7324
7394
  *
7325
7395
  * @type {Array<DomainOutputDTO>}
@@ -7331,7 +7401,7 @@ export interface MeOutputDTO {
7331
7401
  * @type {string}
7332
7402
  * @memberof MeOutputDTO
7333
7403
  */
7334
- domain: string;
7404
+ domain?: string;
7335
7405
  /**
7336
7406
  *
7337
7407
  * @type {PlayerOutputWithRolesDTO}
@@ -7819,6 +7889,94 @@ export interface ModuleInstallParamId {
7819
7889
  */
7820
7890
  gameServerId: string;
7821
7891
  }
7892
+ /**
7893
+ *
7894
+ * @export
7895
+ * @interface ModuleInstallationKpisDTO
7896
+ */
7897
+ export interface ModuleInstallationKpisDTO {
7898
+ /**
7899
+ *
7900
+ * @type {number}
7901
+ * @memberof ModuleInstallationKpisDTO
7902
+ */
7903
+ runs: number;
7904
+ /**
7905
+ *
7906
+ * @type {number}
7907
+ * @memberof ModuleInstallationKpisDTO
7908
+ */
7909
+ failures: number;
7910
+ /**
7911
+ *
7912
+ * @type {number}
7913
+ * @memberof ModuleInstallationKpisDTO
7914
+ */
7915
+ successRate: number;
7916
+ }
7917
+ /**
7918
+ *
7919
+ * @export
7920
+ * @interface ModuleInstallationKpisDTOAPI
7921
+ */
7922
+ export interface ModuleInstallationKpisDTOAPI {
7923
+ /**
7924
+ *
7925
+ * @type {ModuleInstallationKpisDTO}
7926
+ * @memberof ModuleInstallationKpisDTOAPI
7927
+ */
7928
+ data: ModuleInstallationKpisDTO;
7929
+ /**
7930
+ *
7931
+ * @type {MetadataOutput}
7932
+ * @memberof ModuleInstallationKpisDTOAPI
7933
+ */
7934
+ meta: MetadataOutput;
7935
+ }
7936
+ /**
7937
+ *
7938
+ * @export
7939
+ * @interface ModuleInstallationKpisQueryDTO
7940
+ */
7941
+ export interface ModuleInstallationKpisQueryDTO {
7942
+ /**
7943
+ *
7944
+ * @type {string}
7945
+ * @memberof ModuleInstallationKpisQueryDTO
7946
+ */
7947
+ startDate?: string;
7948
+ /**
7949
+ *
7950
+ * @type {string}
7951
+ * @memberof ModuleInstallationKpisQueryDTO
7952
+ */
7953
+ endDate?: string;
7954
+ /**
7955
+ *
7956
+ * @type {string}
7957
+ * @memberof ModuleInstallationKpisQueryDTO
7958
+ */
7959
+ gameServerId: string;
7960
+ /**
7961
+ *
7962
+ * @type {string}
7963
+ * @memberof ModuleInstallationKpisQueryDTO
7964
+ */
7965
+ moduleId: string;
7966
+ /**
7967
+ *
7968
+ * @type {string}
7969
+ * @memberof ModuleInstallationKpisQueryDTO
7970
+ */
7971
+ period?: ModuleInstallationKpisQueryDTOPeriodEnum;
7972
+ }
7973
+ export declare const ModuleInstallationKpisQueryDTOPeriodEnum: {
7974
+ readonly _24h: "24h";
7975
+ readonly _7d: "7d";
7976
+ readonly _30d: "30d";
7977
+ readonly _90d: "90d";
7978
+ };
7979
+ export type ModuleInstallationKpisQueryDTOPeriodEnum = (typeof ModuleInstallationKpisQueryDTOPeriodEnum)[keyof typeof ModuleInstallationKpisQueryDTOPeriodEnum];
7822
7980
  /**
7823
7981
  *
7824
7982
  * @export
@@ -8422,6 +8580,12 @@ export interface ModuleTransferVersionDTO {
8422
8580
  * @memberof ModuleTransferVersionDTO
8423
8581
  */
8424
8582
  uiSchema: string;
8583
+ /**
8584
+ *
8585
+ * @type {string}
8586
+ * @memberof ModuleTransferVersionDTO
8587
+ */
8588
+ defaultSystemConfig?: string;
8425
8589
  /**
8426
8590
  *
8427
8591
  * @type {Array<ICommand>}
@@ -8576,6 +8740,24 @@ export interface ModuleVersionOutputDTO {
8576
8740
  * @memberof ModuleVersionOutputDTO
8577
8741
  */
8578
8742
  moduleId: string;
8743
+ /**
8744
+ *
8745
+ * @type {string}
8746
+ * @memberof ModuleVersionOutputDTO
8747
+ */
8748
+ registryId?: string;
8749
+ /**
8750
+ *
8751
+ * @type {string}
8752
+ * @memberof ModuleVersionOutputDTO
8753
+ */
8754
+ sourceModuleName?: string;
8755
+ /**
8756
+ *
8757
+ * @type {string}
8758
+ * @memberof ModuleVersionOutputDTO
8759
+ */
8760
+ sourceVersion?: string;
8579
8761
  /**
8580
8762
  *
8581
8763
  * @type {Array<CronJobOutputDTO>}
@@ -11617,157 +11799,537 @@ export interface RedirectQs {
11617
11799
  /**
11618
11800
  *
11619
11801
  * @export
11620
- * @interface ResolveRegistrationTokenInputDTO
11802
+ * @interface RegistryCreateDTO
11621
11803
  */
11622
- export interface ResolveRegistrationTokenInputDTO {
11804
+ export interface RegistryCreateDTO {
11623
11805
  /**
11624
11806
  *
11625
11807
  * @type {string}
11626
- * @memberof ResolveRegistrationTokenInputDTO
11808
+ * @memberof RegistryCreateDTO
11627
11809
  */
11628
- registrationToken: string;
11810
+ url: string;
11811
+ /**
11812
+ *
11813
+ * @type {string}
11814
+ * @memberof RegistryCreateDTO
11815
+ */
11816
+ name?: string;
11817
+ /**
11818
+ *
11819
+ * @type {string}
11820
+ * @memberof RegistryCreateDTO
11821
+ */
11822
+ description?: string;
11629
11823
  }
11630
11824
  /**
11631
11825
  *
11632
11826
  * @export
11633
- * @interface RevenueMetricsDTO
11827
+ * @interface RegistryInstallBody
11634
11828
  */
11635
- export interface RevenueMetricsDTO {
11829
+ export interface RegistryInstallBody {
11636
11830
  /**
11637
11831
  *
11638
- * @type {Array<TimeSeriesDataPointDTO>}
11639
- * @memberof RevenueMetricsDTO
11640
- */
11641
- timeSeries: Array<TimeSeriesDataPointDTO>;
11642
- /**
11643
- *
11644
- * @type {Array<HeatmapDataPointDTO>}
11645
- * @memberof RevenueMetricsDTO
11832
+ * @type {string}
11833
+ * @memberof RegistryInstallBody
11646
11834
  */
11647
- heatmap: Array<HeatmapDataPointDTO>;
11835
+ moduleName: string;
11648
11836
  /**
11649
11837
  *
11650
- * @type {number}
11651
- * @memberof RevenueMetricsDTO
11838
+ * @type {string}
11839
+ * @memberof RegistryInstallBody
11652
11840
  */
11653
- growth: number;
11841
+ version: string;
11842
+ }
11843
+ /**
11844
+ *
11845
+ * @export
11846
+ * @interface RegistryInstallInputDTO
11847
+ */
11848
+ export interface RegistryInstallInputDTO {
11654
11849
  /**
11655
11850
  *
11656
11851
  * @type {string}
11657
- * @memberof RevenueMetricsDTO
11852
+ * @memberof RegistryInstallInputDTO
11658
11853
  */
11659
- peakHour: string;
11854
+ moduleName: string;
11660
11855
  /**
11661
11856
  *
11662
11857
  * @type {string}
11663
- * @memberof RevenueMetricsDTO
11858
+ * @memberof RegistryInstallInputDTO
11664
11859
  */
11665
- peakDay: string;
11860
+ version: string;
11666
11861
  }
11667
11862
  /**
11668
11863
  *
11669
11864
  * @export
11670
- * @interface RevenueTimeSeriesPointDTO
11865
+ * @interface RegistryListOutputDTO
11671
11866
  */
11672
- export interface RevenueTimeSeriesPointDTO {
11867
+ export interface RegistryListOutputDTO {
11673
11868
  /**
11674
11869
  *
11675
11870
  * @type {string}
11676
- * @memberof RevenueTimeSeriesPointDTO
11871
+ * @memberof RegistryListOutputDTO
11677
11872
  */
11678
- timestamp: string;
11873
+ url: string;
11679
11874
  /**
11680
11875
  *
11681
- * @type {number}
11682
- * @memberof RevenueTimeSeriesPointDTO
11876
+ * @type {string}
11877
+ * @memberof RegistryListOutputDTO
11683
11878
  */
11684
- orders: number;
11879
+ name: string;
11685
11880
  /**
11686
11881
  *
11687
- * @type {number}
11688
- * @memberof RevenueTimeSeriesPointDTO
11882
+ * @type {string}
11883
+ * @memberof RegistryListOutputDTO
11689
11884
  */
11690
- revenue: number;
11885
+ description?: string;
11691
11886
  /**
11692
11887
  *
11693
- * @type {number}
11694
- * @memberof RevenueTimeSeriesPointDTO
11888
+ * @type {Array<RegistryModuleVersionOutputDTO>}
11889
+ * @memberof RegistryListOutputDTO
11695
11890
  */
11696
- uniqueBuyers: number;
11891
+ modules?: Array<RegistryModuleVersionOutputDTO>;
11892
+ /**
11893
+ *
11894
+ * @type {string}
11895
+ * @memberof RegistryListOutputDTO
11896
+ */
11897
+ lastFetchError?: string;
11898
+ /**
11899
+ *
11900
+ * @type {string}
11901
+ * @memberof RegistryListOutputDTO
11902
+ */
11903
+ id: string;
11904
+ /**
11905
+ *
11906
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11907
+ * @memberof RegistryListOutputDTO
11908
+ */
11909
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11910
+ /**
11911
+ *
11912
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11913
+ * @memberof RegistryListOutputDTO
11914
+ */
11915
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11697
11916
  }
11698
11917
  /**
11699
11918
  *
11700
11919
  * @export
11701
- * @interface RevenueTimeSeriesPointDTOAPI
11920
+ * @interface RegistryListOutputDTOAPI
11702
11921
  */
11703
- export interface RevenueTimeSeriesPointDTOAPI {
11922
+ export interface RegistryListOutputDTOAPI {
11704
11923
  /**
11705
11924
  *
11706
- * @type {Array<RevenueTimeSeriesPointDTO>}
11707
- * @memberof RevenueTimeSeriesPointDTOAPI
11925
+ * @type {Array<RegistryListOutputDTO>}
11926
+ * @memberof RegistryListOutputDTOAPI
11708
11927
  */
11709
- data: Array<RevenueTimeSeriesPointDTO>;
11928
+ data: Array<RegistryListOutputDTO>;
11710
11929
  /**
11711
11930
  *
11712
11931
  * @type {MetadataOutput}
11713
- * @memberof RevenueTimeSeriesPointDTOAPI
11932
+ * @memberof RegistryListOutputDTOAPI
11714
11933
  */
11715
11934
  meta: MetadataOutput;
11716
11935
  }
11717
11936
  /**
11718
11937
  *
11719
11938
  * @export
11720
- * @interface RoleCreateInputDTO
11939
+ * @interface RegistryManifestDTO
11721
11940
  */
11722
- export interface RoleCreateInputDTO {
11941
+ export interface RegistryManifestDTO {
11723
11942
  /**
11724
11943
  *
11725
11944
  * @type {string}
11726
- * @memberof RoleCreateInputDTO
11945
+ * @memberof RegistryManifestDTO
11727
11946
  */
11728
11947
  name: string;
11729
11948
  /**
11730
11949
  *
11731
- * @type {Array<PermissionInputDTO>}
11732
- * @memberof RoleCreateInputDTO
11950
+ * @type {string}
11951
+ * @memberof RegistryManifestDTO
11733
11952
  */
11734
- permissions: Array<PermissionInputDTO>;
11953
+ description?: string;
11735
11954
  /**
11736
11955
  *
11737
- * @type {string}
11738
- * @memberof RoleCreateInputDTO
11956
+ * @type {Array<RegistryManifestModuleDTO>}
11957
+ * @memberof RegistryManifestDTO
11739
11958
  */
11740
- linkedDiscordRoleId?: string;
11959
+ modules: Array<RegistryManifestModuleDTO>;
11741
11960
  }
11742
11961
  /**
11743
11962
  *
11744
11963
  * @export
11745
- * @interface RoleMembersOutputDTO
11964
+ * @interface RegistryManifestModuleDTO
11746
11965
  */
11747
- export interface RoleMembersOutputDTO {
11966
+ export interface RegistryManifestModuleDTO {
11748
11967
  /**
11749
11968
  *
11750
- * @type {RoleMembersPlayersOutputDTO}
11751
- * @memberof RoleMembersOutputDTO
11969
+ * @type {string}
11970
+ * @memberof RegistryManifestModuleDTO
11752
11971
  */
11753
- players: RoleMembersPlayersOutputDTO;
11972
+ name: string;
11754
11973
  /**
11755
11974
  *
11756
- * @type {RoleMembersUsersOutputDTO}
11757
- * @memberof RoleMembersOutputDTO
11975
+ * @type {string}
11976
+ * @memberof RegistryManifestModuleDTO
11758
11977
  */
11759
- users: RoleMembersUsersOutputDTO;
11978
+ latestVersion: string;
11979
+ /**
11980
+ *
11981
+ * @type {Array<string>}
11982
+ * @memberof RegistryManifestModuleDTO
11983
+ */
11984
+ versions: Array<string>;
11985
+ /**
11986
+ *
11987
+ * @type {string}
11988
+ * @memberof RegistryManifestModuleDTO
11989
+ */
11990
+ description?: string;
11760
11991
  }
11761
11992
  /**
11762
11993
  *
11763
11994
  * @export
11764
- * @interface RoleMembersOutputDTOAPI
11995
+ * @interface RegistryModuleVersionOutputDTO
11765
11996
  */
11766
- export interface RoleMembersOutputDTOAPI {
11997
+ export interface RegistryModuleVersionOutputDTO {
11767
11998
  /**
11768
11999
  *
11769
- * @type {RoleMembersOutputDTO}
11770
- * @memberof RoleMembersOutputDTOAPI
12000
+ * @type {string}
12001
+ * @memberof RegistryModuleVersionOutputDTO
12002
+ */
12003
+ name: string;
12004
+ /**
12005
+ *
12006
+ * @type {Array<string>}
12007
+ * @memberof RegistryModuleVersionOutputDTO
12008
+ */
12009
+ versions: Array<string>;
12010
+ /**
12011
+ *
12012
+ * @type {string}
12013
+ * @memberof RegistryModuleVersionOutputDTO
12014
+ */
12015
+ latestVersion: string;
12016
+ /**
12017
+ *
12018
+ * @type {string}
12019
+ * @memberof RegistryModuleVersionOutputDTO
12020
+ */
12021
+ description?: string;
12022
+ }
12023
+ /**
12024
+ *
12025
+ * @export
12026
+ * @interface RegistryOutputDTO
12027
+ */
12028
+ export interface RegistryOutputDTO {
12029
+ /**
12030
+ *
12031
+ * @type {string}
12032
+ * @memberof RegistryOutputDTO
12033
+ */
12034
+ url: string;
12035
+ /**
12036
+ *
12037
+ * @type {string}
12038
+ * @memberof RegistryOutputDTO
12039
+ */
12040
+ name: string;
12041
+ /**
12042
+ *
12043
+ * @type {string}
12044
+ * @memberof RegistryOutputDTO
12045
+ */
12046
+ description?: string;
12047
+ /**
12048
+ *
12049
+ * @type {string}
12050
+ * @memberof RegistryOutputDTO
12051
+ */
12052
+ id: string;
12053
+ /**
12054
+ *
12055
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12056
+ * @memberof RegistryOutputDTO
12057
+ */
12058
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12059
+ /**
12060
+ *
12061
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12062
+ * @memberof RegistryOutputDTO
12063
+ */
12064
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12065
+ }
12066
+ /**
12067
+ *
12068
+ * @export
12069
+ * @interface RegistrySubscribeBody
12070
+ */
12071
+ export interface RegistrySubscribeBody {
12072
+ /**
12073
+ *
12074
+ * @type {string}
12075
+ * @memberof RegistrySubscribeBody
12076
+ */
12077
+ url: string;
12078
+ }
12079
+ /**
12080
+ *
12081
+ * @export
12082
+ * @interface RegistrySubscribeInputDTO
12083
+ */
12084
+ export interface RegistrySubscribeInputDTO {
12085
+ /**
12086
+ *
12087
+ * @type {string}
12088
+ * @memberof RegistrySubscribeInputDTO
12089
+ */
12090
+ url: string;
12091
+ }
12092
+ /**
12093
+ *
12094
+ * @export
12095
+ * @interface RegistryUpdateDTO
12096
+ */
12097
+ export interface RegistryUpdateDTO {
12098
+ /**
12099
+ *
12100
+ * @type {string}
12101
+ * @memberof RegistryUpdateDTO
12102
+ */
12103
+ name?: string;
12104
+ /**
12105
+ *
12106
+ * @type {string}
12107
+ * @memberof RegistryUpdateDTO
12108
+ */
12109
+ description?: string;
12110
+ }
12111
+ /**
12112
+ *
12113
+ * @export
12114
+ * @interface RegistryWithManifestOutputDTO
12115
+ */
12116
+ export interface RegistryWithManifestOutputDTO {
12117
+ /**
12118
+ *
12119
+ * @type {string}
12120
+ * @memberof RegistryWithManifestOutputDTO
12121
+ */
12122
+ url: string;
12123
+ /**
12124
+ *
12125
+ * @type {string}
12126
+ * @memberof RegistryWithManifestOutputDTO
12127
+ */
12128
+ name: string;
12129
+ /**
12130
+ *
12131
+ * @type {string}
12132
+ * @memberof RegistryWithManifestOutputDTO
12133
+ */
12134
+ description?: string;
12135
+ /**
12136
+ *
12137
+ * @type {object}
12138
+ * @memberof RegistryWithManifestOutputDTO
12139
+ */
12140
+ manifest?: object;
12141
+ /**
12142
+ *
12143
+ * @type {string}
12144
+ * @memberof RegistryWithManifestOutputDTO
12145
+ */
12146
+ id: string;
12147
+ /**
12148
+ *
12149
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12150
+ * @memberof RegistryWithManifestOutputDTO
12151
+ */
12152
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12153
+ /**
12154
+ *
12155
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12156
+ * @memberof RegistryWithManifestOutputDTO
12157
+ */
12158
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12159
+ }
12160
+ /**
12161
+ *
12162
+ * @export
12163
+ * @interface RegistryWithManifestOutputDTOAPI
12164
+ */
12165
+ export interface RegistryWithManifestOutputDTOAPI {
12166
+ /**
12167
+ *
12168
+ * @type {RegistryWithManifestOutputDTO}
12169
+ * @memberof RegistryWithManifestOutputDTOAPI
12170
+ */
12171
+ data: RegistryWithManifestOutputDTO;
12172
+ /**
12173
+ *
12174
+ * @type {MetadataOutput}
12175
+ * @memberof RegistryWithManifestOutputDTOAPI
12176
+ */
12177
+ meta: MetadataOutput;
12178
+ }
12179
+ /**
12180
+ *
12181
+ * @export
12182
+ * @interface ResolveRegistrationTokenInputDTO
12183
+ */
12184
+ export interface ResolveRegistrationTokenInputDTO {
12185
+ /**
12186
+ *
12187
+ * @type {string}
12188
+ * @memberof ResolveRegistrationTokenInputDTO
12189
+ */
12190
+ registrationToken: string;
12191
+ }
12192
+ /**
12193
+ *
12194
+ * @export
12195
+ * @interface RevenueMetricsDTO
12196
+ */
12197
+ export interface RevenueMetricsDTO {
12198
+ /**
12199
+ *
12200
+ * @type {Array<TimeSeriesDataPointDTO>}
12201
+ * @memberof RevenueMetricsDTO
12202
+ */
12203
+ timeSeries: Array<TimeSeriesDataPointDTO>;
12204
+ /**
12205
+ *
12206
+ * @type {Array<HeatmapDataPointDTO>}
12207
+ * @memberof RevenueMetricsDTO
12208
+ */
12209
+ heatmap: Array<HeatmapDataPointDTO>;
12210
+ /**
12211
+ *
12212
+ * @type {number}
12213
+ * @memberof RevenueMetricsDTO
12214
+ */
12215
+ growth: number;
12216
+ /**
12217
+ *
12218
+ * @type {string}
12219
+ * @memberof RevenueMetricsDTO
12220
+ */
12221
+ peakHour: string;
12222
+ /**
12223
+ *
12224
+ * @type {string}
12225
+ * @memberof RevenueMetricsDTO
12226
+ */
12227
+ peakDay: string;
12228
+ }
12229
+ /**
12230
+ *
12231
+ * @export
12232
+ * @interface RevenueTimeSeriesPointDTO
12233
+ */
12234
+ export interface RevenueTimeSeriesPointDTO {
12235
+ /**
12236
+ *
12237
+ * @type {string}
12238
+ * @memberof RevenueTimeSeriesPointDTO
12239
+ */
12240
+ timestamp: string;
12241
+ /**
12242
+ *
12243
+ * @type {number}
12244
+ * @memberof RevenueTimeSeriesPointDTO
12245
+ */
12246
+ orders: number;
12247
+ /**
12248
+ *
12249
+ * @type {number}
12250
+ * @memberof RevenueTimeSeriesPointDTO
12251
+ */
12252
+ revenue: number;
12253
+ /**
12254
+ *
12255
+ * @type {number}
12256
+ * @memberof RevenueTimeSeriesPointDTO
12257
+ */
12258
+ uniqueBuyers: number;
12259
+ }
12260
+ /**
12261
+ *
12262
+ * @export
12263
+ * @interface RevenueTimeSeriesPointDTOAPI
12264
+ */
12265
+ export interface RevenueTimeSeriesPointDTOAPI {
12266
+ /**
12267
+ *
12268
+ * @type {Array<RevenueTimeSeriesPointDTO>}
12269
+ * @memberof RevenueTimeSeriesPointDTOAPI
12270
+ */
12271
+ data: Array<RevenueTimeSeriesPointDTO>;
12272
+ /**
12273
+ *
12274
+ * @type {MetadataOutput}
12275
+ * @memberof RevenueTimeSeriesPointDTOAPI
12276
+ */
12277
+ meta: MetadataOutput;
12278
+ }
12279
+ /**
12280
+ *
12281
+ * @export
12282
+ * @interface RoleCreateInputDTO
12283
+ */
12284
+ export interface RoleCreateInputDTO {
12285
+ /**
12286
+ *
12287
+ * @type {string}
12288
+ * @memberof RoleCreateInputDTO
12289
+ */
12290
+ name: string;
12291
+ /**
12292
+ *
12293
+ * @type {Array<PermissionInputDTO>}
12294
+ * @memberof RoleCreateInputDTO
12295
+ */
12296
+ permissions: Array<PermissionInputDTO>;
12297
+ /**
12298
+ *
12299
+ * @type {string}
12300
+ * @memberof RoleCreateInputDTO
12301
+ */
12302
+ linkedDiscordRoleId?: string;
12303
+ }
12304
+ /**
12305
+ *
12306
+ * @export
12307
+ * @interface RoleMembersOutputDTO
12308
+ */
12309
+ export interface RoleMembersOutputDTO {
12310
+ /**
12311
+ *
12312
+ * @type {RoleMembersPlayersOutputDTO}
12313
+ * @memberof RoleMembersOutputDTO
12314
+ */
12315
+ players: RoleMembersPlayersOutputDTO;
12316
+ /**
12317
+ *
12318
+ * @type {RoleMembersUsersOutputDTO}
12319
+ * @memberof RoleMembersOutputDTO
12320
+ */
12321
+ users: RoleMembersUsersOutputDTO;
12322
+ }
12323
+ /**
12324
+ *
12325
+ * @export
12326
+ * @interface RoleMembersOutputDTOAPI
12327
+ */
12328
+ export interface RoleMembersOutputDTOAPI {
12329
+ /**
12330
+ *
12331
+ * @type {RoleMembersOutputDTO}
12332
+ * @memberof RoleMembersOutputDTOAPI
11771
12333
  */
11772
12334
  data: RoleMembersOutputDTO;
11773
12335
  /**
@@ -14368,6 +14930,175 @@ export interface SmallModuleVersionOutputDTO {
14368
14930
  */
14369
14931
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14370
14932
  }
14933
+ /**
14934
+ *
14935
+ * @export
14936
+ * @interface StorefrontConfigCreateDTO
14937
+ */
14938
+ export interface StorefrontConfigCreateDTO {
14939
+ /**
14940
+ *
14941
+ * @type {string}
14942
+ * @memberof StorefrontConfigCreateDTO
14943
+ */
14944
+ gameServerId: string;
14945
+ /**
14946
+ *
14947
+ * @type {string}
14948
+ * @memberof StorefrontConfigCreateDTO
14949
+ */
14950
+ templateId: string;
14951
+ /**
14952
+ *
14953
+ * @type {object}
14954
+ * @memberof StorefrontConfigCreateDTO
14955
+ */
14956
+ values?: object;
14957
+ }
14958
+ /**
14959
+ *
14960
+ * @export
14961
+ * @interface StorefrontConfigOutputDTO
14962
+ */
14963
+ export interface StorefrontConfigOutputDTO {
14964
+ /**
14965
+ *
14966
+ * @type {string}
14967
+ * @memberof StorefrontConfigOutputDTO
14968
+ */
14969
+ gameServerId: string;
14970
+ /**
14971
+ *
14972
+ * @type {string}
14973
+ * @memberof StorefrontConfigOutputDTO
14974
+ */
14975
+ templateId: string;
14976
+ /**
14977
+ *
14978
+ * @type {object}
14979
+ * @memberof StorefrontConfigOutputDTO
14980
+ */
14981
+ values: object;
14982
+ /**
14983
+ *
14984
+ * @type {string}
14985
+ * @memberof StorefrontConfigOutputDTO
14986
+ */
14987
+ id: string;
14988
+ /**
14989
+ *
14990
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14991
+ * @memberof StorefrontConfigOutputDTO
14992
+ */
14993
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14994
+ /**
14995
+ *
14996
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14997
+ * @memberof StorefrontConfigOutputDTO
14998
+ */
14999
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15000
+ }
15001
+ /**
15002
+ *
15003
+ * @export
15004
+ * @interface StorefrontConfigUpdateDTO
15005
+ */
15006
+ export interface StorefrontConfigUpdateDTO {
15007
+ /**
15008
+ *
15009
+ * @type {string}
15010
+ * @memberof StorefrontConfigUpdateDTO
15011
+ */
15012
+ templateId?: string;
15013
+ /**
15014
+ *
15015
+ * @type {object}
15016
+ * @memberof StorefrontConfigUpdateDTO
15017
+ */
15018
+ values?: object;
15019
+ }
15020
+ /**
15021
+ *
15022
+ * @export
15023
+ * @interface StorefrontConfigUpsertBody
15024
+ */
15025
+ export interface StorefrontConfigUpsertBody {
15026
+ /**
15027
+ *
15028
+ * @type {string}
15029
+ * @memberof StorefrontConfigUpsertBody
15030
+ */
15031
+ templateId: string;
15032
+ /**
15033
+ *
15034
+ * @type {object}
15035
+ * @memberof StorefrontConfigUpsertBody
15036
+ */
15037
+ values: object;
15038
+ }
15039
+ /**
15040
+ *
15041
+ * @export
15042
+ * @interface StorefrontConfigUpsertDTO
15043
+ */
15044
+ export interface StorefrontConfigUpsertDTO {
15045
+ /**
15046
+ *
15047
+ * @type {string}
15048
+ * @memberof StorefrontConfigUpsertDTO
15049
+ */
15050
+ templateId: string;
15051
+ /**
15052
+ *
15053
+ * @type {object}
15054
+ * @memberof StorefrontConfigUpsertDTO
15055
+ */
15056
+ values: object;
15057
+ }
15058
+ /**
15059
+ *
15060
+ * @export
15061
+ * @interface StorefrontTemplateDTO
15062
+ */
15063
+ export interface StorefrontTemplateDTO {
15064
+ /**
15065
+ *
15066
+ * @type {string}
15067
+ * @memberof StorefrontTemplateDTO
15068
+ */
15069
+ id: string;
15070
+ /**
15071
+ *
15072
+ * @type {string}
15073
+ * @memberof StorefrontTemplateDTO
15074
+ */
15075
+ name: string;
15076
+ /**
15077
+ *
15078
+ * @type {object}
15079
+ * @memberof StorefrontTemplateDTO
15080
+ */
15081
+ schema: object;
15082
+ }
15083
+ /**
15084
+ *
15085
+ * @export
15086
+ * @interface StorefrontTemplateOutputArrayDTOAPI
15087
+ */
15088
+ export interface StorefrontTemplateOutputArrayDTOAPI {
15089
+ /**
15090
+ *
15091
+ * @type {Array<StorefrontTemplateDTO>}
15092
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15093
+ */
15094
+ data: Array<StorefrontTemplateDTO>;
15095
+ /**
15096
+ *
15097
+ * @type {MetadataOutput}
15098
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15099
+ */
15100
+ meta: MetadataOutput;
15101
+ }
14371
15102
  /**
14372
15103
  *
14373
15104
  * @export
@@ -16909,6 +17640,18 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
16909
17640
  * @throws {RequiredError}
16910
17641
  */
16911
17642
  analyticsControllerGetModuleHealth: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17643
+ /**
17644
+ * 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`
17645
+ * @summary Get per-installation module KPIs
17646
+ * @param {string} gameServerId
17647
+ * @param {string} moduleId
17648
+ * @param {string} [startDate]
17649
+ * @param {string} [endDate]
17650
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
17651
+ * @param {*} [options] Override http request option.
17652
+ * @throws {RequiredError}
17653
+ */
17654
+ analyticsControllerGetModuleInstallationKpis: (gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16912
17655
  /**
16913
17656
  * 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`
16914
17657
  * @summary Get module item failure aggregate
@@ -17286,6 +18029,18 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17286
18029
  * @throws {RequiredError}
17287
18030
  */
17288
18031
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleHealthEntryDTOAPI>>;
18032
+ /**
18033
+ * 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`
18034
+ * @summary Get per-installation module KPIs
18035
+ * @param {string} gameServerId
18036
+ * @param {string} moduleId
18037
+ * @param {string} [startDate]
18038
+ * @param {string} [endDate]
18039
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18040
+ * @param {*} [options] Override http request option.
18041
+ * @throws {RequiredError}
18042
+ */
18043
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>>;
17289
18044
  /**
17290
18045
  * 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`
17291
18046
  * @summary Get module item failure aggregate
@@ -17663,6 +18418,18 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
17663
18418
  * @throws {RequiredError}
17664
18419
  */
17665
18420
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleHealthEntryDTOAPI>;
18421
+ /**
18422
+ * 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`
18423
+ * @summary Get per-installation module KPIs
18424
+ * @param {string} gameServerId
18425
+ * @param {string} moduleId
18426
+ * @param {string} [startDate]
18427
+ * @param {string} [endDate]
18428
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18429
+ * @param {*} [options] Override http request option.
18430
+ * @throws {RequiredError}
18431
+ */
18432
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationKpisDTOAPI>;
17666
18433
  /**
17667
18434
  * 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`
17668
18435
  * @summary Get module item failure aggregate
@@ -18055,6 +18822,19 @@ export declare class AnalyticsApi extends BaseAPI {
18055
18822
  * @memberof AnalyticsApi
18056
18823
  */
18057
18824
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleHealthEntryDTOAPI, any>>;
18825
+ /**
18826
+ * 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`
18827
+ * @summary Get per-installation module KPIs
18828
+ * @param {string} gameServerId
18829
+ * @param {string} moduleId
18830
+ * @param {string} [startDate]
18831
+ * @param {string} [endDate]
18832
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18833
+ * @param {*} [options] Override http request option.
18834
+ * @throws {RequiredError}
18835
+ * @memberof AnalyticsApi
18836
+ */
18837
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationKpisDTOAPI, any>>;
18058
18838
  /**
18059
18839
  * 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`
18060
18840
  * @summary Get module item failure aggregate
@@ -18428,6 +19208,16 @@ export declare const AnalyticsControllerGetModuleHealthPeriodEnum: {
18428
19208
  readonly _90d: "90d";
18429
19209
  };
18430
19210
  export type AnalyticsControllerGetModuleHealthPeriodEnum = (typeof AnalyticsControllerGetModuleHealthPeriodEnum)[keyof typeof AnalyticsControllerGetModuleHealthPeriodEnum];
19211
+ /**
19212
+ * @export
19213
+ */
19214
+ export declare const AnalyticsControllerGetModuleInstallationKpisPeriodEnum: {
19215
+ readonly _24h: "24h";
19216
+ readonly _7d: "7d";
19217
+ readonly _30d: "30d";
19218
+ readonly _90d: "90d";
19219
+ };
19220
+ export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum = (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
18431
19221
  /**
18432
19222
  * @export
18433
19223
  */
@@ -18617,27 +19407,177 @@ export declare const AnalyticsControllerGetTopListingsPeriodEnum: {
18617
19407
  readonly _30d: "30d";
18618
19408
  readonly _90d: "90d";
18619
19409
  };
18620
- export type AnalyticsControllerGetTopListingsPeriodEnum = (typeof AnalyticsControllerGetTopListingsPeriodEnum)[keyof typeof AnalyticsControllerGetTopListingsPeriodEnum];
19410
+ export type AnalyticsControllerGetTopListingsPeriodEnum = (typeof AnalyticsControllerGetTopListingsPeriodEnum)[keyof typeof AnalyticsControllerGetTopListingsPeriodEnum];
19411
+ /**
19412
+ * @export
19413
+ */
19414
+ export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
19415
+ readonly _24h: "24h";
19416
+ readonly _7d: "7d";
19417
+ readonly _30d: "30d";
19418
+ readonly _90d: "90d";
19419
+ };
19420
+ export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
19421
+ /**
19422
+ * @export
19423
+ */
19424
+ export declare const AnalyticsControllerGetTopServersPeriodEnum: {
19425
+ readonly _24h: "24h";
19426
+ readonly _7d: "7d";
19427
+ readonly _30d: "30d";
19428
+ readonly _90d: "90d";
19429
+ };
19430
+ export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
19431
+ /**
19432
+ * AuthApi - axios parameter creator
19433
+ * @export
19434
+ */
19435
+ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
19436
+ /**
19437
+ * <br> OperationId: `AuthControllerAccount`
19438
+ * @summary Account
19439
+ * @param {*} [options] Override http request option.
19440
+ * @throws {RequiredError}
19441
+ */
19442
+ authControllerAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19443
+ /**
19444
+ * <br> OperationId: `AuthControllerCallback`
19445
+ * @summary Callback
19446
+ * @param {*} [options] Override http request option.
19447
+ * @throws {RequiredError}
19448
+ */
19449
+ authControllerCallback: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19450
+ /**
19451
+ * <br> OperationId: `AuthControllerLogin`
19452
+ * @summary Login
19453
+ * @param {string} [redirect]
19454
+ * @param {*} [options] Override http request option.
19455
+ * @throws {RequiredError}
19456
+ */
19457
+ authControllerLogin: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19458
+ /**
19459
+ * <br> OperationId: `AuthControllerLogout`
19460
+ * @summary Logout
19461
+ * @param {string} [redirect]
19462
+ * @param {*} [options] Override http request option.
19463
+ * @throws {RequiredError}
19464
+ */
19465
+ authControllerLogout: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19466
+ };
18621
19467
  /**
19468
+ * AuthApi - functional programming interface
18622
19469
  * @export
18623
19470
  */
18624
- export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
18625
- readonly _24h: "24h";
18626
- readonly _7d: "7d";
18627
- readonly _30d: "30d";
18628
- readonly _90d: "90d";
19471
+ export declare const AuthApiFp: (configuration?: Configuration) => {
19472
+ /**
19473
+ * <br> OperationId: `AuthControllerAccount`
19474
+ * @summary Account
19475
+ * @param {*} [options] Override http request option.
19476
+ * @throws {RequiredError}
19477
+ */
19478
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
19479
+ /**
19480
+ * <br> OperationId: `AuthControllerCallback`
19481
+ * @summary Callback
19482
+ * @param {*} [options] Override http request option.
19483
+ * @throws {RequiredError}
19484
+ */
19485
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
19486
+ /**
19487
+ * <br> OperationId: `AuthControllerLogin`
19488
+ * @summary Login
19489
+ * @param {string} [redirect]
19490
+ * @param {*} [options] Override http request option.
19491
+ * @throws {RequiredError}
19492
+ */
19493
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
19494
+ /**
19495
+ * <br> OperationId: `AuthControllerLogout`
19496
+ * @summary Logout
19497
+ * @param {string} [redirect]
19498
+ * @param {*} [options] Override http request option.
19499
+ * @throws {RequiredError}
19500
+ */
19501
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
18629
19502
  };
18630
- export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
18631
19503
  /**
19504
+ * AuthApi - factory interface
18632
19505
  * @export
18633
19506
  */
18634
- export declare const AnalyticsControllerGetTopServersPeriodEnum: {
18635
- readonly _24h: "24h";
18636
- readonly _7d: "7d";
18637
- readonly _30d: "30d";
18638
- readonly _90d: "90d";
19507
+ export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
19508
+ /**
19509
+ * <br> OperationId: `AuthControllerAccount`
19510
+ * @summary Account
19511
+ * @param {*} [options] Override http request option.
19512
+ * @throws {RequiredError}
19513
+ */
19514
+ authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void>;
19515
+ /**
19516
+ * <br> OperationId: `AuthControllerCallback`
19517
+ * @summary Callback
19518
+ * @param {*} [options] Override http request option.
19519
+ * @throws {RequiredError}
19520
+ */
19521
+ authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
19522
+ /**
19523
+ * <br> OperationId: `AuthControllerLogin`
19524
+ * @summary Login
19525
+ * @param {string} [redirect]
19526
+ * @param {*} [options] Override http request option.
19527
+ * @throws {RequiredError}
19528
+ */
19529
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
19530
+ /**
19531
+ * <br> OperationId: `AuthControllerLogout`
19532
+ * @summary Logout
19533
+ * @param {string} [redirect]
19534
+ * @param {*} [options] Override http request option.
19535
+ * @throws {RequiredError}
19536
+ */
19537
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
18639
19538
  };
18640
- export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
19539
+ /**
19540
+ * AuthApi - object-oriented interface
19541
+ * @export
19542
+ * @class AuthApi
19543
+ * @extends {BaseAPI}
19544
+ */
19545
+ export declare class AuthApi extends BaseAPI {
19546
+ /**
19547
+ * <br> OperationId: `AuthControllerAccount`
19548
+ * @summary Account
19549
+ * @param {*} [options] Override http request option.
19550
+ * @throws {RequiredError}
19551
+ * @memberof AuthApi
19552
+ */
19553
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
19554
+ /**
19555
+ * <br> OperationId: `AuthControllerCallback`
19556
+ * @summary Callback
19557
+ * @param {*} [options] Override http request option.
19558
+ * @throws {RequiredError}
19559
+ * @memberof AuthApi
19560
+ */
19561
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
19562
+ /**
19563
+ * <br> OperationId: `AuthControllerLogin`
19564
+ * @summary Login
19565
+ * @param {string} [redirect]
19566
+ * @param {*} [options] Override http request option.
19567
+ * @throws {RequiredError}
19568
+ * @memberof AuthApi
19569
+ */
19570
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
19571
+ /**
19572
+ * <br> OperationId: `AuthControllerLogout`
19573
+ * @summary Logout
19574
+ * @param {string} [redirect]
19575
+ * @param {*} [options] Override http request option.
19576
+ * @throws {RequiredError}
19577
+ * @memberof AuthApi
19578
+ */
19579
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
19580
+ }
18641
19581
  /**
18642
19582
  * CommandApi - axios parameter creator
18643
19583
  * @export
@@ -23361,6 +24301,197 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
23361
24301
  */
23362
24302
  playerOnGameServerControllerTransactBetweenPlayers(gameServerId: string, sender: string, receiver: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
23363
24303
  }
24304
+ /**
24305
+ * RegistryApi - axios parameter creator
24306
+ * @export
24307
+ */
24308
+ export declare const RegistryApiAxiosParamCreator: (configuration?: Configuration) => {
24309
+ /**
24310
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
24311
+ * @summary Install a module from a registry
24312
+ * @param {string} id
24313
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
24314
+ * @param {*} [options] Override http request option.
24315
+ * @throws {RequiredError}
24316
+ */
24317
+ registryControllerInstall: (id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24318
+ /**
24319
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
24320
+ * @summary List subscribed registries
24321
+ * @param {*} [options] Override http request option.
24322
+ * @throws {RequiredError}
24323
+ */
24324
+ registryControllerList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24325
+ /**
24326
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
24327
+ * @summary Refresh registry manifest
24328
+ * @param {string} id
24329
+ * @param {*} [options] Override http request option.
24330
+ * @throws {RequiredError}
24331
+ */
24332
+ registryControllerRefresh: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24333
+ /**
24334
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
24335
+ * @summary Subscribe to a registry
24336
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
24337
+ * @param {*} [options] Override http request option.
24338
+ * @throws {RequiredError}
24339
+ */
24340
+ registryControllerSubscribe: (registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24341
+ /**
24342
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
24343
+ * @summary Unsubscribe from a registry
24344
+ * @param {string} id
24345
+ * @param {*} [options] Override http request option.
24346
+ * @throws {RequiredError}
24347
+ */
24348
+ registryControllerUnsubscribe: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24349
+ };
24350
+ /**
24351
+ * RegistryApi - functional programming interface
24352
+ * @export
24353
+ */
24354
+ export declare const RegistryApiFp: (configuration?: Configuration) => {
24355
+ /**
24356
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
24357
+ * @summary Install a module from a registry
24358
+ * @param {string} id
24359
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
24360
+ * @param {*} [options] Override http request option.
24361
+ * @throws {RequiredError}
24362
+ */
24363
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
24364
+ /**
24365
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
24366
+ * @summary List subscribed registries
24367
+ * @param {*} [options] Override http request option.
24368
+ * @throws {RequiredError}
24369
+ */
24370
+ registryControllerList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryListOutputDTOAPI>>;
24371
+ /**
24372
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
24373
+ * @summary Refresh registry manifest
24374
+ * @param {string} id
24375
+ * @param {*} [options] Override http request option.
24376
+ * @throws {RequiredError}
24377
+ */
24378
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>>;
24379
+ /**
24380
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
24381
+ * @summary Subscribe to a registry
24382
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
24383
+ * @param {*} [options] Override http request option.
24384
+ * @throws {RequiredError}
24385
+ */
24386
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>>;
24387
+ /**
24388
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
24389
+ * @summary Unsubscribe from a registry
24390
+ * @param {string} id
24391
+ * @param {*} [options] Override http request option.
24392
+ * @throws {RequiredError}
24393
+ */
24394
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
24395
+ };
24396
+ /**
24397
+ * RegistryApi - factory interface
24398
+ * @export
24399
+ */
24400
+ export declare const RegistryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
24401
+ /**
24402
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
24403
+ * @summary Install a module from a registry
24404
+ * @param {string} id
24405
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
24406
+ * @param {*} [options] Override http request option.
24407
+ * @throws {RequiredError}
24408
+ */
24409
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
24410
+ /**
24411
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
24412
+ * @summary List subscribed registries
24413
+ * @param {*} [options] Override http request option.
24414
+ * @throws {RequiredError}
24415
+ */
24416
+ registryControllerList(options?: RawAxiosRequestConfig): AxiosPromise<RegistryListOutputDTOAPI>;
24417
+ /**
24418
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
24419
+ * @summary Refresh registry manifest
24420
+ * @param {string} id
24421
+ * @param {*} [options] Override http request option.
24422
+ * @throws {RequiredError}
24423
+ */
24424
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RegistryWithManifestOutputDTOAPI>;
24425
+ /**
24426
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
24427
+ * @summary Subscribe to a registry
24428
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
24429
+ * @param {*} [options] Override http request option.
24430
+ * @throws {RequiredError}
24431
+ */
24432
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): AxiosPromise<RegistryWithManifestOutputDTOAPI>;
24433
+ /**
24434
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
24435
+ * @summary Unsubscribe from a registry
24436
+ * @param {string} id
24437
+ * @param {*} [options] Override http request option.
24438
+ * @throws {RequiredError}
24439
+ */
24440
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
24441
+ };
24442
+ /**
24443
+ * RegistryApi - object-oriented interface
24444
+ * @export
24445
+ * @class RegistryApi
24446
+ * @extends {BaseAPI}
24447
+ */
24448
+ export declare class RegistryApi extends BaseAPI {
24449
+ /**
24450
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
24451
+ * @summary Install a module from a registry
24452
+ * @param {string} id
24453
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
24454
+ * @param {*} [options] Override http request option.
24455
+ * @throws {RequiredError}
24456
+ * @memberof RegistryApi
24457
+ */
24458
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
24459
+ /**
24460
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
24461
+ * @summary List subscribed registries
24462
+ * @param {*} [options] Override http request option.
24463
+ * @throws {RequiredError}
24464
+ * @memberof RegistryApi
24465
+ */
24466
+ registryControllerList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryListOutputDTOAPI, any>>;
24467
+ /**
24468
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
24469
+ * @summary Refresh registry manifest
24470
+ * @param {string} id
24471
+ * @param {*} [options] Override http request option.
24472
+ * @throws {RequiredError}
24473
+ * @memberof RegistryApi
24474
+ */
24475
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryWithManifestOutputDTOAPI, any>>;
24476
+ /**
24477
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
24478
+ * @summary Subscribe to a registry
24479
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
24480
+ * @param {*} [options] Override http request option.
24481
+ * @throws {RequiredError}
24482
+ * @memberof RegistryApi
24483
+ */
24484
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryWithManifestOutputDTOAPI, any>>;
24485
+ /**
24486
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
24487
+ * @summary Unsubscribe from a registry
24488
+ * @param {string} id
24489
+ * @param {*} [options] Override http request option.
24490
+ * @throws {RequiredError}
24491
+ * @memberof RegistryApi
24492
+ */
24493
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
24494
+ }
23364
24495
  /**
23365
24496
  * RoleApi - axios parameter creator
23366
24497
  * @export
@@ -24762,6 +25893,131 @@ export declare class ShopOrderApi extends BaseAPI {
24762
25893
  */
24763
25894
  shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
24764
25895
  }
25896
+ /**
25897
+ * StorefrontConfigApi - axios parameter creator
25898
+ * @export
25899
+ */
25900
+ export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Configuration) => {
25901
+ /**
25902
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
25903
+ * @summary Get effective config
25904
+ * @param {string} gameServerId
25905
+ * @param {*} [options] Override http request option.
25906
+ * @throws {RequiredError}
25907
+ */
25908
+ storefrontConfigControllerGetEffectiveConfig: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25909
+ /**
25910
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
25911
+ * @summary List templates
25912
+ * @param {*} [options] Override http request option.
25913
+ * @throws {RequiredError}
25914
+ */
25915
+ storefrontConfigControllerListTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25916
+ /**
25917
+ * 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`
25918
+ * @summary Set config
25919
+ * @param {string} gameServerId
25920
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
25921
+ * @param {*} [options] Override http request option.
25922
+ * @throws {RequiredError}
25923
+ */
25924
+ storefrontConfigControllerSetConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25925
+ };
25926
+ /**
25927
+ * StorefrontConfigApi - functional programming interface
25928
+ * @export
25929
+ */
25930
+ export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
25931
+ /**
25932
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
25933
+ * @summary Get effective config
25934
+ * @param {string} gameServerId
25935
+ * @param {*} [options] Override http request option.
25936
+ * @throws {RequiredError}
25937
+ */
25938
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
25939
+ /**
25940
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
25941
+ * @summary List templates
25942
+ * @param {*} [options] Override http request option.
25943
+ * @throws {RequiredError}
25944
+ */
25945
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>>;
25946
+ /**
25947
+ * 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`
25948
+ * @summary Set config
25949
+ * @param {string} gameServerId
25950
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
25951
+ * @param {*} [options] Override http request option.
25952
+ * @throws {RequiredError}
25953
+ */
25954
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
25955
+ };
25956
+ /**
25957
+ * StorefrontConfigApi - factory interface
25958
+ * @export
25959
+ */
25960
+ export declare const StorefrontConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
25961
+ /**
25962
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
25963
+ * @summary Get effective config
25964
+ * @param {string} gameServerId
25965
+ * @param {*} [options] Override http request option.
25966
+ * @throws {RequiredError}
25967
+ */
25968
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
25969
+ /**
25970
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
25971
+ * @summary List templates
25972
+ * @param {*} [options] Override http request option.
25973
+ * @throws {RequiredError}
25974
+ */
25975
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>;
25976
+ /**
25977
+ * 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`
25978
+ * @summary Set config
25979
+ * @param {string} gameServerId
25980
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
25981
+ * @param {*} [options] Override http request option.
25982
+ * @throws {RequiredError}
25983
+ */
25984
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
25985
+ };
25986
+ /**
25987
+ * StorefrontConfigApi - object-oriented interface
25988
+ * @export
25989
+ * @class StorefrontConfigApi
25990
+ * @extends {BaseAPI}
25991
+ */
25992
+ export declare class StorefrontConfigApi extends BaseAPI {
25993
+ /**
25994
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
25995
+ * @summary Get effective config
25996
+ * @param {string} gameServerId
25997
+ * @param {*} [options] Override http request option.
25998
+ * @throws {RequiredError}
25999
+ * @memberof StorefrontConfigApi
26000
+ */
26001
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26002
+ /**
26003
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26004
+ * @summary List templates
26005
+ * @param {*} [options] Override http request option.
26006
+ * @throws {RequiredError}
26007
+ * @memberof StorefrontConfigApi
26008
+ */
26009
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontTemplateOutputArrayDTOAPI, any>>;
26010
+ /**
26011
+ * 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`
26012
+ * @summary Set config
26013
+ * @param {string} gameServerId
26014
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26015
+ * @param {*} [options] Override http request option.
26016
+ * @throws {RequiredError}
26017
+ * @memberof StorefrontConfigApi
26018
+ */
26019
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26020
+ }
24765
26021
  /**
24766
26022
  * TrackingApi - axios parameter creator
24767
26023
  * @export