@takaro/apiclient 0.0.0-dev.7e8bfec → 0.0.0-dev.814735d
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.
- package/dist/generated/api.d.ts +931 -13
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +759 -0
- package/dist/generated/api.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/api.ts +2117 -621
package/dist/generated/api.d.ts
CHANGED
|
@@ -7196,6 +7196,32 @@ export interface LoginOutputDTOAPI {
|
|
|
7196
7196
|
*/
|
|
7197
7197
|
meta: MetadataOutput;
|
|
7198
7198
|
}
|
|
7199
|
+
/**
|
|
7200
|
+
*
|
|
7201
|
+
* @export
|
|
7202
|
+
* @interface LoginQueryParams
|
|
7203
|
+
*/
|
|
7204
|
+
export interface LoginQueryParams {
|
|
7205
|
+
/**
|
|
7206
|
+
*
|
|
7207
|
+
* @type {string}
|
|
7208
|
+
* @memberof LoginQueryParams
|
|
7209
|
+
*/
|
|
7210
|
+
redirect?: string;
|
|
7211
|
+
}
|
|
7212
|
+
/**
|
|
7213
|
+
*
|
|
7214
|
+
* @export
|
|
7215
|
+
* @interface LogoutQueryParams
|
|
7216
|
+
*/
|
|
7217
|
+
export interface LogoutQueryParams {
|
|
7218
|
+
/**
|
|
7219
|
+
*
|
|
7220
|
+
* @type {string}
|
|
7221
|
+
* @memberof LogoutQueryParams
|
|
7222
|
+
*/
|
|
7223
|
+
redirect?: string;
|
|
7224
|
+
}
|
|
7199
7225
|
/**
|
|
7200
7226
|
*
|
|
7201
7227
|
* @export
|
|
@@ -7319,7 +7345,7 @@ export interface MeOutputDTO {
|
|
|
7319
7345
|
* @type {UserOutputWithRolesDTO}
|
|
7320
7346
|
* @memberof MeOutputDTO
|
|
7321
7347
|
*/
|
|
7322
|
-
user
|
|
7348
|
+
user?: UserOutputWithRolesDTO;
|
|
7323
7349
|
/**
|
|
7324
7350
|
*
|
|
7325
7351
|
* @type {Array<DomainOutputDTO>}
|
|
@@ -7331,7 +7357,7 @@ export interface MeOutputDTO {
|
|
|
7331
7357
|
* @type {string}
|
|
7332
7358
|
* @memberof MeOutputDTO
|
|
7333
7359
|
*/
|
|
7334
|
-
domain
|
|
7360
|
+
domain?: string;
|
|
7335
7361
|
/**
|
|
7336
7362
|
*
|
|
7337
7363
|
* @type {PlayerOutputWithRolesDTO}
|
|
@@ -7819,6 +7845,94 @@ export interface ModuleInstallParamId {
|
|
|
7819
7845
|
*/
|
|
7820
7846
|
gameServerId: string;
|
|
7821
7847
|
}
|
|
7848
|
+
/**
|
|
7849
|
+
*
|
|
7850
|
+
* @export
|
|
7851
|
+
* @interface ModuleInstallationKpisDTO
|
|
7852
|
+
*/
|
|
7853
|
+
export interface ModuleInstallationKpisDTO {
|
|
7854
|
+
/**
|
|
7855
|
+
*
|
|
7856
|
+
* @type {number}
|
|
7857
|
+
* @memberof ModuleInstallationKpisDTO
|
|
7858
|
+
*/
|
|
7859
|
+
runs: number;
|
|
7860
|
+
/**
|
|
7861
|
+
*
|
|
7862
|
+
* @type {number}
|
|
7863
|
+
* @memberof ModuleInstallationKpisDTO
|
|
7864
|
+
*/
|
|
7865
|
+
failures: number;
|
|
7866
|
+
/**
|
|
7867
|
+
*
|
|
7868
|
+
* @type {number}
|
|
7869
|
+
* @memberof ModuleInstallationKpisDTO
|
|
7870
|
+
*/
|
|
7871
|
+
successRate: number;
|
|
7872
|
+
}
|
|
7873
|
+
/**
|
|
7874
|
+
*
|
|
7875
|
+
* @export
|
|
7876
|
+
* @interface ModuleInstallationKpisDTOAPI
|
|
7877
|
+
*/
|
|
7878
|
+
export interface ModuleInstallationKpisDTOAPI {
|
|
7879
|
+
/**
|
|
7880
|
+
*
|
|
7881
|
+
* @type {ModuleInstallationKpisDTO}
|
|
7882
|
+
* @memberof ModuleInstallationKpisDTOAPI
|
|
7883
|
+
*/
|
|
7884
|
+
data: ModuleInstallationKpisDTO;
|
|
7885
|
+
/**
|
|
7886
|
+
*
|
|
7887
|
+
* @type {MetadataOutput}
|
|
7888
|
+
* @memberof ModuleInstallationKpisDTOAPI
|
|
7889
|
+
*/
|
|
7890
|
+
meta: MetadataOutput;
|
|
7891
|
+
}
|
|
7892
|
+
/**
|
|
7893
|
+
*
|
|
7894
|
+
* @export
|
|
7895
|
+
* @interface ModuleInstallationKpisQueryDTO
|
|
7896
|
+
*/
|
|
7897
|
+
export interface ModuleInstallationKpisQueryDTO {
|
|
7898
|
+
/**
|
|
7899
|
+
*
|
|
7900
|
+
* @type {string}
|
|
7901
|
+
* @memberof ModuleInstallationKpisQueryDTO
|
|
7902
|
+
*/
|
|
7903
|
+
startDate?: string;
|
|
7904
|
+
/**
|
|
7905
|
+
*
|
|
7906
|
+
* @type {string}
|
|
7907
|
+
* @memberof ModuleInstallationKpisQueryDTO
|
|
7908
|
+
*/
|
|
7909
|
+
endDate?: string;
|
|
7910
|
+
/**
|
|
7911
|
+
*
|
|
7912
|
+
* @type {string}
|
|
7913
|
+
* @memberof ModuleInstallationKpisQueryDTO
|
|
7914
|
+
*/
|
|
7915
|
+
gameServerId: string;
|
|
7916
|
+
/**
|
|
7917
|
+
*
|
|
7918
|
+
* @type {string}
|
|
7919
|
+
* @memberof ModuleInstallationKpisQueryDTO
|
|
7920
|
+
*/
|
|
7921
|
+
moduleId: string;
|
|
7922
|
+
/**
|
|
7923
|
+
*
|
|
7924
|
+
* @type {string}
|
|
7925
|
+
* @memberof ModuleInstallationKpisQueryDTO
|
|
7926
|
+
*/
|
|
7927
|
+
period?: ModuleInstallationKpisQueryDTOPeriodEnum;
|
|
7928
|
+
}
|
|
7929
|
+
export declare const ModuleInstallationKpisQueryDTOPeriodEnum: {
|
|
7930
|
+
readonly _24h: "24h";
|
|
7931
|
+
readonly _7d: "7d";
|
|
7932
|
+
readonly _30d: "30d";
|
|
7933
|
+
readonly _90d: "90d";
|
|
7934
|
+
};
|
|
7935
|
+
export type ModuleInstallationKpisQueryDTOPeriodEnum = (typeof ModuleInstallationKpisQueryDTOPeriodEnum)[keyof typeof ModuleInstallationKpisQueryDTOPeriodEnum];
|
|
7822
7936
|
/**
|
|
7823
7937
|
*
|
|
7824
7938
|
* @export
|
|
@@ -8422,6 +8536,12 @@ export interface ModuleTransferVersionDTO {
|
|
|
8422
8536
|
* @memberof ModuleTransferVersionDTO
|
|
8423
8537
|
*/
|
|
8424
8538
|
uiSchema: string;
|
|
8539
|
+
/**
|
|
8540
|
+
*
|
|
8541
|
+
* @type {string}
|
|
8542
|
+
* @memberof ModuleTransferVersionDTO
|
|
8543
|
+
*/
|
|
8544
|
+
defaultSystemConfig?: string;
|
|
8425
8545
|
/**
|
|
8426
8546
|
*
|
|
8427
8547
|
* @type {Array<ICommand>}
|
|
@@ -8576,6 +8696,24 @@ export interface ModuleVersionOutputDTO {
|
|
|
8576
8696
|
* @memberof ModuleVersionOutputDTO
|
|
8577
8697
|
*/
|
|
8578
8698
|
moduleId: string;
|
|
8699
|
+
/**
|
|
8700
|
+
*
|
|
8701
|
+
* @type {string}
|
|
8702
|
+
* @memberof ModuleVersionOutputDTO
|
|
8703
|
+
*/
|
|
8704
|
+
registryId?: string;
|
|
8705
|
+
/**
|
|
8706
|
+
*
|
|
8707
|
+
* @type {string}
|
|
8708
|
+
* @memberof ModuleVersionOutputDTO
|
|
8709
|
+
*/
|
|
8710
|
+
sourceModuleName?: string;
|
|
8711
|
+
/**
|
|
8712
|
+
*
|
|
8713
|
+
* @type {string}
|
|
8714
|
+
* @memberof ModuleVersionOutputDTO
|
|
8715
|
+
*/
|
|
8716
|
+
sourceVersion?: string;
|
|
8579
8717
|
/**
|
|
8580
8718
|
*
|
|
8581
8719
|
* @type {Array<CronJobOutputDTO>}
|
|
@@ -11595,24 +11733,404 @@ export interface RecentOrderDTO {
|
|
|
11595
11733
|
*/
|
|
11596
11734
|
status: RecentOrderDTOStatusEnum;
|
|
11597
11735
|
}
|
|
11598
|
-
export declare const RecentOrderDTOStatusEnum: {
|
|
11599
|
-
readonly Completed: "COMPLETED";
|
|
11600
|
-
readonly Paid: "PAID";
|
|
11601
|
-
readonly Canceled: "CANCELED";
|
|
11602
|
-
};
|
|
11603
|
-
export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
|
|
11736
|
+
export declare const RecentOrderDTOStatusEnum: {
|
|
11737
|
+
readonly Completed: "COMPLETED";
|
|
11738
|
+
readonly Paid: "PAID";
|
|
11739
|
+
readonly Canceled: "CANCELED";
|
|
11740
|
+
};
|
|
11741
|
+
export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
|
|
11742
|
+
/**
|
|
11743
|
+
*
|
|
11744
|
+
* @export
|
|
11745
|
+
* @interface RedirectQs
|
|
11746
|
+
*/
|
|
11747
|
+
export interface RedirectQs {
|
|
11748
|
+
/**
|
|
11749
|
+
*
|
|
11750
|
+
* @type {string}
|
|
11751
|
+
* @memberof RedirectQs
|
|
11752
|
+
*/
|
|
11753
|
+
redirect: string;
|
|
11754
|
+
}
|
|
11755
|
+
/**
|
|
11756
|
+
*
|
|
11757
|
+
* @export
|
|
11758
|
+
* @interface RegistryCreateDTO
|
|
11759
|
+
*/
|
|
11760
|
+
export interface RegistryCreateDTO {
|
|
11761
|
+
/**
|
|
11762
|
+
*
|
|
11763
|
+
* @type {string}
|
|
11764
|
+
* @memberof RegistryCreateDTO
|
|
11765
|
+
*/
|
|
11766
|
+
url: string;
|
|
11767
|
+
/**
|
|
11768
|
+
*
|
|
11769
|
+
* @type {string}
|
|
11770
|
+
* @memberof RegistryCreateDTO
|
|
11771
|
+
*/
|
|
11772
|
+
name?: string;
|
|
11773
|
+
/**
|
|
11774
|
+
*
|
|
11775
|
+
* @type {string}
|
|
11776
|
+
* @memberof RegistryCreateDTO
|
|
11777
|
+
*/
|
|
11778
|
+
description?: string;
|
|
11779
|
+
}
|
|
11780
|
+
/**
|
|
11781
|
+
*
|
|
11782
|
+
* @export
|
|
11783
|
+
* @interface RegistryInstallBody
|
|
11784
|
+
*/
|
|
11785
|
+
export interface RegistryInstallBody {
|
|
11786
|
+
/**
|
|
11787
|
+
*
|
|
11788
|
+
* @type {string}
|
|
11789
|
+
* @memberof RegistryInstallBody
|
|
11790
|
+
*/
|
|
11791
|
+
moduleName: string;
|
|
11792
|
+
/**
|
|
11793
|
+
*
|
|
11794
|
+
* @type {string}
|
|
11795
|
+
* @memberof RegistryInstallBody
|
|
11796
|
+
*/
|
|
11797
|
+
version: string;
|
|
11798
|
+
}
|
|
11799
|
+
/**
|
|
11800
|
+
*
|
|
11801
|
+
* @export
|
|
11802
|
+
* @interface RegistryInstallInputDTO
|
|
11803
|
+
*/
|
|
11804
|
+
export interface RegistryInstallInputDTO {
|
|
11805
|
+
/**
|
|
11806
|
+
*
|
|
11807
|
+
* @type {string}
|
|
11808
|
+
* @memberof RegistryInstallInputDTO
|
|
11809
|
+
*/
|
|
11810
|
+
moduleName: string;
|
|
11811
|
+
/**
|
|
11812
|
+
*
|
|
11813
|
+
* @type {string}
|
|
11814
|
+
* @memberof RegistryInstallInputDTO
|
|
11815
|
+
*/
|
|
11816
|
+
version: string;
|
|
11817
|
+
}
|
|
11818
|
+
/**
|
|
11819
|
+
*
|
|
11820
|
+
* @export
|
|
11821
|
+
* @interface RegistryListOutputDTO
|
|
11822
|
+
*/
|
|
11823
|
+
export interface RegistryListOutputDTO {
|
|
11824
|
+
/**
|
|
11825
|
+
*
|
|
11826
|
+
* @type {string}
|
|
11827
|
+
* @memberof RegistryListOutputDTO
|
|
11828
|
+
*/
|
|
11829
|
+
url: string;
|
|
11830
|
+
/**
|
|
11831
|
+
*
|
|
11832
|
+
* @type {string}
|
|
11833
|
+
* @memberof RegistryListOutputDTO
|
|
11834
|
+
*/
|
|
11835
|
+
name: string;
|
|
11836
|
+
/**
|
|
11837
|
+
*
|
|
11838
|
+
* @type {string}
|
|
11839
|
+
* @memberof RegistryListOutputDTO
|
|
11840
|
+
*/
|
|
11841
|
+
description?: string;
|
|
11842
|
+
/**
|
|
11843
|
+
*
|
|
11844
|
+
* @type {Array<RegistryModuleVersionOutputDTO>}
|
|
11845
|
+
* @memberof RegistryListOutputDTO
|
|
11846
|
+
*/
|
|
11847
|
+
modules?: Array<RegistryModuleVersionOutputDTO>;
|
|
11848
|
+
/**
|
|
11849
|
+
*
|
|
11850
|
+
* @type {string}
|
|
11851
|
+
* @memberof RegistryListOutputDTO
|
|
11852
|
+
*/
|
|
11853
|
+
lastFetchError?: string;
|
|
11854
|
+
/**
|
|
11855
|
+
*
|
|
11856
|
+
* @type {string}
|
|
11857
|
+
* @memberof RegistryListOutputDTO
|
|
11858
|
+
*/
|
|
11859
|
+
id: string;
|
|
11860
|
+
/**
|
|
11861
|
+
*
|
|
11862
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
11863
|
+
* @memberof RegistryListOutputDTO
|
|
11864
|
+
*/
|
|
11865
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
11866
|
+
/**
|
|
11867
|
+
*
|
|
11868
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
11869
|
+
* @memberof RegistryListOutputDTO
|
|
11870
|
+
*/
|
|
11871
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
11872
|
+
}
|
|
11873
|
+
/**
|
|
11874
|
+
*
|
|
11875
|
+
* @export
|
|
11876
|
+
* @interface RegistryListOutputDTOAPI
|
|
11877
|
+
*/
|
|
11878
|
+
export interface RegistryListOutputDTOAPI {
|
|
11879
|
+
/**
|
|
11880
|
+
*
|
|
11881
|
+
* @type {Array<RegistryListOutputDTO>}
|
|
11882
|
+
* @memberof RegistryListOutputDTOAPI
|
|
11883
|
+
*/
|
|
11884
|
+
data: Array<RegistryListOutputDTO>;
|
|
11885
|
+
/**
|
|
11886
|
+
*
|
|
11887
|
+
* @type {MetadataOutput}
|
|
11888
|
+
* @memberof RegistryListOutputDTOAPI
|
|
11889
|
+
*/
|
|
11890
|
+
meta: MetadataOutput;
|
|
11891
|
+
}
|
|
11892
|
+
/**
|
|
11893
|
+
*
|
|
11894
|
+
* @export
|
|
11895
|
+
* @interface RegistryManifestDTO
|
|
11896
|
+
*/
|
|
11897
|
+
export interface RegistryManifestDTO {
|
|
11898
|
+
/**
|
|
11899
|
+
*
|
|
11900
|
+
* @type {string}
|
|
11901
|
+
* @memberof RegistryManifestDTO
|
|
11902
|
+
*/
|
|
11903
|
+
name: string;
|
|
11904
|
+
/**
|
|
11905
|
+
*
|
|
11906
|
+
* @type {string}
|
|
11907
|
+
* @memberof RegistryManifestDTO
|
|
11908
|
+
*/
|
|
11909
|
+
description?: string;
|
|
11910
|
+
/**
|
|
11911
|
+
*
|
|
11912
|
+
* @type {Array<RegistryManifestModuleDTO>}
|
|
11913
|
+
* @memberof RegistryManifestDTO
|
|
11914
|
+
*/
|
|
11915
|
+
modules: Array<RegistryManifestModuleDTO>;
|
|
11916
|
+
}
|
|
11917
|
+
/**
|
|
11918
|
+
*
|
|
11919
|
+
* @export
|
|
11920
|
+
* @interface RegistryManifestModuleDTO
|
|
11921
|
+
*/
|
|
11922
|
+
export interface RegistryManifestModuleDTO {
|
|
11923
|
+
/**
|
|
11924
|
+
*
|
|
11925
|
+
* @type {string}
|
|
11926
|
+
* @memberof RegistryManifestModuleDTO
|
|
11927
|
+
*/
|
|
11928
|
+
name: string;
|
|
11929
|
+
/**
|
|
11930
|
+
*
|
|
11931
|
+
* @type {string}
|
|
11932
|
+
* @memberof RegistryManifestModuleDTO
|
|
11933
|
+
*/
|
|
11934
|
+
latestVersion: string;
|
|
11935
|
+
/**
|
|
11936
|
+
*
|
|
11937
|
+
* @type {Array<string>}
|
|
11938
|
+
* @memberof RegistryManifestModuleDTO
|
|
11939
|
+
*/
|
|
11940
|
+
versions: Array<string>;
|
|
11941
|
+
/**
|
|
11942
|
+
*
|
|
11943
|
+
* @type {string}
|
|
11944
|
+
* @memberof RegistryManifestModuleDTO
|
|
11945
|
+
*/
|
|
11946
|
+
description?: string;
|
|
11947
|
+
}
|
|
11948
|
+
/**
|
|
11949
|
+
*
|
|
11950
|
+
* @export
|
|
11951
|
+
* @interface RegistryModuleVersionOutputDTO
|
|
11952
|
+
*/
|
|
11953
|
+
export interface RegistryModuleVersionOutputDTO {
|
|
11954
|
+
/**
|
|
11955
|
+
*
|
|
11956
|
+
* @type {string}
|
|
11957
|
+
* @memberof RegistryModuleVersionOutputDTO
|
|
11958
|
+
*/
|
|
11959
|
+
name: string;
|
|
11960
|
+
/**
|
|
11961
|
+
*
|
|
11962
|
+
* @type {Array<string>}
|
|
11963
|
+
* @memberof RegistryModuleVersionOutputDTO
|
|
11964
|
+
*/
|
|
11965
|
+
versions: Array<string>;
|
|
11966
|
+
/**
|
|
11967
|
+
*
|
|
11968
|
+
* @type {string}
|
|
11969
|
+
* @memberof RegistryModuleVersionOutputDTO
|
|
11970
|
+
*/
|
|
11971
|
+
latestVersion: string;
|
|
11972
|
+
/**
|
|
11973
|
+
*
|
|
11974
|
+
* @type {string}
|
|
11975
|
+
* @memberof RegistryModuleVersionOutputDTO
|
|
11976
|
+
*/
|
|
11977
|
+
description?: string;
|
|
11978
|
+
}
|
|
11979
|
+
/**
|
|
11980
|
+
*
|
|
11981
|
+
* @export
|
|
11982
|
+
* @interface RegistryOutputDTO
|
|
11983
|
+
*/
|
|
11984
|
+
export interface RegistryOutputDTO {
|
|
11985
|
+
/**
|
|
11986
|
+
*
|
|
11987
|
+
* @type {string}
|
|
11988
|
+
* @memberof RegistryOutputDTO
|
|
11989
|
+
*/
|
|
11990
|
+
url: string;
|
|
11991
|
+
/**
|
|
11992
|
+
*
|
|
11993
|
+
* @type {string}
|
|
11994
|
+
* @memberof RegistryOutputDTO
|
|
11995
|
+
*/
|
|
11996
|
+
name: string;
|
|
11997
|
+
/**
|
|
11998
|
+
*
|
|
11999
|
+
* @type {string}
|
|
12000
|
+
* @memberof RegistryOutputDTO
|
|
12001
|
+
*/
|
|
12002
|
+
description?: string;
|
|
12003
|
+
/**
|
|
12004
|
+
*
|
|
12005
|
+
* @type {string}
|
|
12006
|
+
* @memberof RegistryOutputDTO
|
|
12007
|
+
*/
|
|
12008
|
+
id: string;
|
|
12009
|
+
/**
|
|
12010
|
+
*
|
|
12011
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
12012
|
+
* @memberof RegistryOutputDTO
|
|
12013
|
+
*/
|
|
12014
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
12015
|
+
/**
|
|
12016
|
+
*
|
|
12017
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
12018
|
+
* @memberof RegistryOutputDTO
|
|
12019
|
+
*/
|
|
12020
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
12021
|
+
}
|
|
12022
|
+
/**
|
|
12023
|
+
*
|
|
12024
|
+
* @export
|
|
12025
|
+
* @interface RegistrySubscribeBody
|
|
12026
|
+
*/
|
|
12027
|
+
export interface RegistrySubscribeBody {
|
|
12028
|
+
/**
|
|
12029
|
+
*
|
|
12030
|
+
* @type {string}
|
|
12031
|
+
* @memberof RegistrySubscribeBody
|
|
12032
|
+
*/
|
|
12033
|
+
url: string;
|
|
12034
|
+
}
|
|
12035
|
+
/**
|
|
12036
|
+
*
|
|
12037
|
+
* @export
|
|
12038
|
+
* @interface RegistrySubscribeInputDTO
|
|
12039
|
+
*/
|
|
12040
|
+
export interface RegistrySubscribeInputDTO {
|
|
12041
|
+
/**
|
|
12042
|
+
*
|
|
12043
|
+
* @type {string}
|
|
12044
|
+
* @memberof RegistrySubscribeInputDTO
|
|
12045
|
+
*/
|
|
12046
|
+
url: string;
|
|
12047
|
+
}
|
|
12048
|
+
/**
|
|
12049
|
+
*
|
|
12050
|
+
* @export
|
|
12051
|
+
* @interface RegistryUpdateDTO
|
|
12052
|
+
*/
|
|
12053
|
+
export interface RegistryUpdateDTO {
|
|
12054
|
+
/**
|
|
12055
|
+
*
|
|
12056
|
+
* @type {string}
|
|
12057
|
+
* @memberof RegistryUpdateDTO
|
|
12058
|
+
*/
|
|
12059
|
+
name?: string;
|
|
12060
|
+
/**
|
|
12061
|
+
*
|
|
12062
|
+
* @type {string}
|
|
12063
|
+
* @memberof RegistryUpdateDTO
|
|
12064
|
+
*/
|
|
12065
|
+
description?: string;
|
|
12066
|
+
}
|
|
12067
|
+
/**
|
|
12068
|
+
*
|
|
12069
|
+
* @export
|
|
12070
|
+
* @interface RegistryWithManifestOutputDTO
|
|
12071
|
+
*/
|
|
12072
|
+
export interface RegistryWithManifestOutputDTO {
|
|
12073
|
+
/**
|
|
12074
|
+
*
|
|
12075
|
+
* @type {string}
|
|
12076
|
+
* @memberof RegistryWithManifestOutputDTO
|
|
12077
|
+
*/
|
|
12078
|
+
url: string;
|
|
12079
|
+
/**
|
|
12080
|
+
*
|
|
12081
|
+
* @type {string}
|
|
12082
|
+
* @memberof RegistryWithManifestOutputDTO
|
|
12083
|
+
*/
|
|
12084
|
+
name: string;
|
|
12085
|
+
/**
|
|
12086
|
+
*
|
|
12087
|
+
* @type {string}
|
|
12088
|
+
* @memberof RegistryWithManifestOutputDTO
|
|
12089
|
+
*/
|
|
12090
|
+
description?: string;
|
|
12091
|
+
/**
|
|
12092
|
+
*
|
|
12093
|
+
* @type {object}
|
|
12094
|
+
* @memberof RegistryWithManifestOutputDTO
|
|
12095
|
+
*/
|
|
12096
|
+
manifest?: object;
|
|
12097
|
+
/**
|
|
12098
|
+
*
|
|
12099
|
+
* @type {string}
|
|
12100
|
+
* @memberof RegistryWithManifestOutputDTO
|
|
12101
|
+
*/
|
|
12102
|
+
id: string;
|
|
12103
|
+
/**
|
|
12104
|
+
*
|
|
12105
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
12106
|
+
* @memberof RegistryWithManifestOutputDTO
|
|
12107
|
+
*/
|
|
12108
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
12109
|
+
/**
|
|
12110
|
+
*
|
|
12111
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
12112
|
+
* @memberof RegistryWithManifestOutputDTO
|
|
12113
|
+
*/
|
|
12114
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
12115
|
+
}
|
|
11604
12116
|
/**
|
|
11605
12117
|
*
|
|
11606
12118
|
* @export
|
|
11607
|
-
* @interface
|
|
12119
|
+
* @interface RegistryWithManifestOutputDTOAPI
|
|
11608
12120
|
*/
|
|
11609
|
-
export interface
|
|
12121
|
+
export interface RegistryWithManifestOutputDTOAPI {
|
|
11610
12122
|
/**
|
|
11611
12123
|
*
|
|
11612
|
-
* @type {
|
|
11613
|
-
* @memberof
|
|
12124
|
+
* @type {RegistryWithManifestOutputDTO}
|
|
12125
|
+
* @memberof RegistryWithManifestOutputDTOAPI
|
|
11614
12126
|
*/
|
|
11615
|
-
|
|
12127
|
+
data: RegistryWithManifestOutputDTO;
|
|
12128
|
+
/**
|
|
12129
|
+
*
|
|
12130
|
+
* @type {MetadataOutput}
|
|
12131
|
+
* @memberof RegistryWithManifestOutputDTOAPI
|
|
12132
|
+
*/
|
|
12133
|
+
meta: MetadataOutput;
|
|
11616
12134
|
}
|
|
11617
12135
|
/**
|
|
11618
12136
|
*
|
|
@@ -16909,6 +17427,18 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
16909
17427
|
* @throws {RequiredError}
|
|
16910
17428
|
*/
|
|
16911
17429
|
analyticsControllerGetModuleHealth: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17430
|
+
/**
|
|
17431
|
+
* 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`
|
|
17432
|
+
* @summary Get per-installation module KPIs
|
|
17433
|
+
* @param {string} gameServerId
|
|
17434
|
+
* @param {string} moduleId
|
|
17435
|
+
* @param {string} [startDate]
|
|
17436
|
+
* @param {string} [endDate]
|
|
17437
|
+
* @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
|
|
17438
|
+
* @param {*} [options] Override http request option.
|
|
17439
|
+
* @throws {RequiredError}
|
|
17440
|
+
*/
|
|
17441
|
+
analyticsControllerGetModuleInstallationKpis: (gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16912
17442
|
/**
|
|
16913
17443
|
* 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
17444
|
* @summary Get module item failure aggregate
|
|
@@ -17286,6 +17816,18 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
17286
17816
|
* @throws {RequiredError}
|
|
17287
17817
|
*/
|
|
17288
17818
|
analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleHealthEntryDTOAPI>>;
|
|
17819
|
+
/**
|
|
17820
|
+
* 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`
|
|
17821
|
+
* @summary Get per-installation module KPIs
|
|
17822
|
+
* @param {string} gameServerId
|
|
17823
|
+
* @param {string} moduleId
|
|
17824
|
+
* @param {string} [startDate]
|
|
17825
|
+
* @param {string} [endDate]
|
|
17826
|
+
* @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
|
|
17827
|
+
* @param {*} [options] Override http request option.
|
|
17828
|
+
* @throws {RequiredError}
|
|
17829
|
+
*/
|
|
17830
|
+
analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>>;
|
|
17289
17831
|
/**
|
|
17290
17832
|
* 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
17833
|
* @summary Get module item failure aggregate
|
|
@@ -17663,6 +18205,18 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
17663
18205
|
* @throws {RequiredError}
|
|
17664
18206
|
*/
|
|
17665
18207
|
analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleHealthEntryDTOAPI>;
|
|
18208
|
+
/**
|
|
18209
|
+
* 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`
|
|
18210
|
+
* @summary Get per-installation module KPIs
|
|
18211
|
+
* @param {string} gameServerId
|
|
18212
|
+
* @param {string} moduleId
|
|
18213
|
+
* @param {string} [startDate]
|
|
18214
|
+
* @param {string} [endDate]
|
|
18215
|
+
* @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
|
|
18216
|
+
* @param {*} [options] Override http request option.
|
|
18217
|
+
* @throws {RequiredError}
|
|
18218
|
+
*/
|
|
18219
|
+
analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationKpisDTOAPI>;
|
|
17666
18220
|
/**
|
|
17667
18221
|
* 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
18222
|
* @summary Get module item failure aggregate
|
|
@@ -18055,6 +18609,19 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
18055
18609
|
* @memberof AnalyticsApi
|
|
18056
18610
|
*/
|
|
18057
18611
|
analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleHealthEntryDTOAPI, any>>;
|
|
18612
|
+
/**
|
|
18613
|
+
* 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`
|
|
18614
|
+
* @summary Get per-installation module KPIs
|
|
18615
|
+
* @param {string} gameServerId
|
|
18616
|
+
* @param {string} moduleId
|
|
18617
|
+
* @param {string} [startDate]
|
|
18618
|
+
* @param {string} [endDate]
|
|
18619
|
+
* @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
|
|
18620
|
+
* @param {*} [options] Override http request option.
|
|
18621
|
+
* @throws {RequiredError}
|
|
18622
|
+
* @memberof AnalyticsApi
|
|
18623
|
+
*/
|
|
18624
|
+
analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationKpisDTOAPI, any>>;
|
|
18058
18625
|
/**
|
|
18059
18626
|
* 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
18627
|
* @summary Get module item failure aggregate
|
|
@@ -18428,6 +18995,16 @@ export declare const AnalyticsControllerGetModuleHealthPeriodEnum: {
|
|
|
18428
18995
|
readonly _90d: "90d";
|
|
18429
18996
|
};
|
|
18430
18997
|
export type AnalyticsControllerGetModuleHealthPeriodEnum = (typeof AnalyticsControllerGetModuleHealthPeriodEnum)[keyof typeof AnalyticsControllerGetModuleHealthPeriodEnum];
|
|
18998
|
+
/**
|
|
18999
|
+
* @export
|
|
19000
|
+
*/
|
|
19001
|
+
export declare const AnalyticsControllerGetModuleInstallationKpisPeriodEnum: {
|
|
19002
|
+
readonly _24h: "24h";
|
|
19003
|
+
readonly _7d: "7d";
|
|
19004
|
+
readonly _30d: "30d";
|
|
19005
|
+
readonly _90d: "90d";
|
|
19006
|
+
};
|
|
19007
|
+
export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum = (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
|
|
18431
19008
|
/**
|
|
18432
19009
|
* @export
|
|
18433
19010
|
*/
|
|
@@ -18638,6 +19215,156 @@ export declare const AnalyticsControllerGetTopServersPeriodEnum: {
|
|
|
18638
19215
|
readonly _90d: "90d";
|
|
18639
19216
|
};
|
|
18640
19217
|
export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
|
|
19218
|
+
/**
|
|
19219
|
+
* AuthApi - axios parameter creator
|
|
19220
|
+
* @export
|
|
19221
|
+
*/
|
|
19222
|
+
export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
19223
|
+
/**
|
|
19224
|
+
* <br> OperationId: `AuthControllerAccount`
|
|
19225
|
+
* @summary Account
|
|
19226
|
+
* @param {*} [options] Override http request option.
|
|
19227
|
+
* @throws {RequiredError}
|
|
19228
|
+
*/
|
|
19229
|
+
authControllerAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19230
|
+
/**
|
|
19231
|
+
* <br> OperationId: `AuthControllerCallback`
|
|
19232
|
+
* @summary Callback
|
|
19233
|
+
* @param {*} [options] Override http request option.
|
|
19234
|
+
* @throws {RequiredError}
|
|
19235
|
+
*/
|
|
19236
|
+
authControllerCallback: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19237
|
+
/**
|
|
19238
|
+
* <br> OperationId: `AuthControllerLogin`
|
|
19239
|
+
* @summary Login
|
|
19240
|
+
* @param {string} [redirect]
|
|
19241
|
+
* @param {*} [options] Override http request option.
|
|
19242
|
+
* @throws {RequiredError}
|
|
19243
|
+
*/
|
|
19244
|
+
authControllerLogin: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19245
|
+
/**
|
|
19246
|
+
* <br> OperationId: `AuthControllerLogout`
|
|
19247
|
+
* @summary Logout
|
|
19248
|
+
* @param {string} [redirect]
|
|
19249
|
+
* @param {*} [options] Override http request option.
|
|
19250
|
+
* @throws {RequiredError}
|
|
19251
|
+
*/
|
|
19252
|
+
authControllerLogout: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19253
|
+
};
|
|
19254
|
+
/**
|
|
19255
|
+
* AuthApi - functional programming interface
|
|
19256
|
+
* @export
|
|
19257
|
+
*/
|
|
19258
|
+
export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
19259
|
+
/**
|
|
19260
|
+
* <br> OperationId: `AuthControllerAccount`
|
|
19261
|
+
* @summary Account
|
|
19262
|
+
* @param {*} [options] Override http request option.
|
|
19263
|
+
* @throws {RequiredError}
|
|
19264
|
+
*/
|
|
19265
|
+
authControllerAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
19266
|
+
/**
|
|
19267
|
+
* <br> OperationId: `AuthControllerCallback`
|
|
19268
|
+
* @summary Callback
|
|
19269
|
+
* @param {*} [options] Override http request option.
|
|
19270
|
+
* @throws {RequiredError}
|
|
19271
|
+
*/
|
|
19272
|
+
authControllerCallback(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
19273
|
+
/**
|
|
19274
|
+
* <br> OperationId: `AuthControllerLogin`
|
|
19275
|
+
* @summary Login
|
|
19276
|
+
* @param {string} [redirect]
|
|
19277
|
+
* @param {*} [options] Override http request option.
|
|
19278
|
+
* @throws {RequiredError}
|
|
19279
|
+
*/
|
|
19280
|
+
authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
19281
|
+
/**
|
|
19282
|
+
* <br> OperationId: `AuthControllerLogout`
|
|
19283
|
+
* @summary Logout
|
|
19284
|
+
* @param {string} [redirect]
|
|
19285
|
+
* @param {*} [options] Override http request option.
|
|
19286
|
+
* @throws {RequiredError}
|
|
19287
|
+
*/
|
|
19288
|
+
authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
19289
|
+
};
|
|
19290
|
+
/**
|
|
19291
|
+
* AuthApi - factory interface
|
|
19292
|
+
* @export
|
|
19293
|
+
*/
|
|
19294
|
+
export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19295
|
+
/**
|
|
19296
|
+
* <br> OperationId: `AuthControllerAccount`
|
|
19297
|
+
* @summary Account
|
|
19298
|
+
* @param {*} [options] Override http request option.
|
|
19299
|
+
* @throws {RequiredError}
|
|
19300
|
+
*/
|
|
19301
|
+
authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
19302
|
+
/**
|
|
19303
|
+
* <br> OperationId: `AuthControllerCallback`
|
|
19304
|
+
* @summary Callback
|
|
19305
|
+
* @param {*} [options] Override http request option.
|
|
19306
|
+
* @throws {RequiredError}
|
|
19307
|
+
*/
|
|
19308
|
+
authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
19309
|
+
/**
|
|
19310
|
+
* <br> OperationId: `AuthControllerLogin`
|
|
19311
|
+
* @summary Login
|
|
19312
|
+
* @param {string} [redirect]
|
|
19313
|
+
* @param {*} [options] Override http request option.
|
|
19314
|
+
* @throws {RequiredError}
|
|
19315
|
+
*/
|
|
19316
|
+
authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
19317
|
+
/**
|
|
19318
|
+
* <br> OperationId: `AuthControllerLogout`
|
|
19319
|
+
* @summary Logout
|
|
19320
|
+
* @param {string} [redirect]
|
|
19321
|
+
* @param {*} [options] Override http request option.
|
|
19322
|
+
* @throws {RequiredError}
|
|
19323
|
+
*/
|
|
19324
|
+
authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
19325
|
+
};
|
|
19326
|
+
/**
|
|
19327
|
+
* AuthApi - object-oriented interface
|
|
19328
|
+
* @export
|
|
19329
|
+
* @class AuthApi
|
|
19330
|
+
* @extends {BaseAPI}
|
|
19331
|
+
*/
|
|
19332
|
+
export declare class AuthApi extends BaseAPI {
|
|
19333
|
+
/**
|
|
19334
|
+
* <br> OperationId: `AuthControllerAccount`
|
|
19335
|
+
* @summary Account
|
|
19336
|
+
* @param {*} [options] Override http request option.
|
|
19337
|
+
* @throws {RequiredError}
|
|
19338
|
+
* @memberof AuthApi
|
|
19339
|
+
*/
|
|
19340
|
+
authControllerAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
19341
|
+
/**
|
|
19342
|
+
* <br> OperationId: `AuthControllerCallback`
|
|
19343
|
+
* @summary Callback
|
|
19344
|
+
* @param {*} [options] Override http request option.
|
|
19345
|
+
* @throws {RequiredError}
|
|
19346
|
+
* @memberof AuthApi
|
|
19347
|
+
*/
|
|
19348
|
+
authControllerCallback(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
19349
|
+
/**
|
|
19350
|
+
* <br> OperationId: `AuthControllerLogin`
|
|
19351
|
+
* @summary Login
|
|
19352
|
+
* @param {string} [redirect]
|
|
19353
|
+
* @param {*} [options] Override http request option.
|
|
19354
|
+
* @throws {RequiredError}
|
|
19355
|
+
* @memberof AuthApi
|
|
19356
|
+
*/
|
|
19357
|
+
authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
19358
|
+
/**
|
|
19359
|
+
* <br> OperationId: `AuthControllerLogout`
|
|
19360
|
+
* @summary Logout
|
|
19361
|
+
* @param {string} [redirect]
|
|
19362
|
+
* @param {*} [options] Override http request option.
|
|
19363
|
+
* @throws {RequiredError}
|
|
19364
|
+
* @memberof AuthApi
|
|
19365
|
+
*/
|
|
19366
|
+
authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
19367
|
+
}
|
|
18641
19368
|
/**
|
|
18642
19369
|
* CommandApi - axios parameter creator
|
|
18643
19370
|
* @export
|
|
@@ -23361,6 +24088,197 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
|
|
|
23361
24088
|
*/
|
|
23362
24089
|
playerOnGameServerControllerTransactBetweenPlayers(gameServerId: string, sender: string, receiver: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
|
|
23363
24090
|
}
|
|
24091
|
+
/**
|
|
24092
|
+
* RegistryApi - axios parameter creator
|
|
24093
|
+
* @export
|
|
24094
|
+
*/
|
|
24095
|
+
export declare const RegistryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24096
|
+
/**
|
|
24097
|
+
* Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
|
|
24098
|
+
* @summary Install a module from a registry
|
|
24099
|
+
* @param {string} id
|
|
24100
|
+
* @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
|
|
24101
|
+
* @param {*} [options] Override http request option.
|
|
24102
|
+
* @throws {RequiredError}
|
|
24103
|
+
*/
|
|
24104
|
+
registryControllerInstall: (id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24105
|
+
/**
|
|
24106
|
+
* List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
|
|
24107
|
+
* @summary List subscribed registries
|
|
24108
|
+
* @param {*} [options] Override http request option.
|
|
24109
|
+
* @throws {RequiredError}
|
|
24110
|
+
*/
|
|
24111
|
+
registryControllerList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24112
|
+
/**
|
|
24113
|
+
* Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
|
|
24114
|
+
* @summary Refresh registry manifest
|
|
24115
|
+
* @param {string} id
|
|
24116
|
+
* @param {*} [options] Override http request option.
|
|
24117
|
+
* @throws {RequiredError}
|
|
24118
|
+
*/
|
|
24119
|
+
registryControllerRefresh: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24120
|
+
/**
|
|
24121
|
+
* Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
|
|
24122
|
+
* @summary Subscribe to a registry
|
|
24123
|
+
* @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
|
|
24124
|
+
* @param {*} [options] Override http request option.
|
|
24125
|
+
* @throws {RequiredError}
|
|
24126
|
+
*/
|
|
24127
|
+
registryControllerSubscribe: (registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24128
|
+
/**
|
|
24129
|
+
* Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
|
|
24130
|
+
* @summary Unsubscribe from a registry
|
|
24131
|
+
* @param {string} id
|
|
24132
|
+
* @param {*} [options] Override http request option.
|
|
24133
|
+
* @throws {RequiredError}
|
|
24134
|
+
*/
|
|
24135
|
+
registryControllerUnsubscribe: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24136
|
+
};
|
|
24137
|
+
/**
|
|
24138
|
+
* RegistryApi - functional programming interface
|
|
24139
|
+
* @export
|
|
24140
|
+
*/
|
|
24141
|
+
export declare const RegistryApiFp: (configuration?: Configuration) => {
|
|
24142
|
+
/**
|
|
24143
|
+
* Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
|
|
24144
|
+
* @summary Install a module from a registry
|
|
24145
|
+
* @param {string} id
|
|
24146
|
+
* @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
|
|
24147
|
+
* @param {*} [options] Override http request option.
|
|
24148
|
+
* @throws {RequiredError}
|
|
24149
|
+
*/
|
|
24150
|
+
registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
24151
|
+
/**
|
|
24152
|
+
* List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
|
|
24153
|
+
* @summary List subscribed registries
|
|
24154
|
+
* @param {*} [options] Override http request option.
|
|
24155
|
+
* @throws {RequiredError}
|
|
24156
|
+
*/
|
|
24157
|
+
registryControllerList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryListOutputDTOAPI>>;
|
|
24158
|
+
/**
|
|
24159
|
+
* Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
|
|
24160
|
+
* @summary Refresh registry manifest
|
|
24161
|
+
* @param {string} id
|
|
24162
|
+
* @param {*} [options] Override http request option.
|
|
24163
|
+
* @throws {RequiredError}
|
|
24164
|
+
*/
|
|
24165
|
+
registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>>;
|
|
24166
|
+
/**
|
|
24167
|
+
* Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
|
|
24168
|
+
* @summary Subscribe to a registry
|
|
24169
|
+
* @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
|
|
24170
|
+
* @param {*} [options] Override http request option.
|
|
24171
|
+
* @throws {RequiredError}
|
|
24172
|
+
*/
|
|
24173
|
+
registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>>;
|
|
24174
|
+
/**
|
|
24175
|
+
* Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
|
|
24176
|
+
* @summary Unsubscribe from a registry
|
|
24177
|
+
* @param {string} id
|
|
24178
|
+
* @param {*} [options] Override http request option.
|
|
24179
|
+
* @throws {RequiredError}
|
|
24180
|
+
*/
|
|
24181
|
+
registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
24182
|
+
};
|
|
24183
|
+
/**
|
|
24184
|
+
* RegistryApi - factory interface
|
|
24185
|
+
* @export
|
|
24186
|
+
*/
|
|
24187
|
+
export declare const RegistryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
24188
|
+
/**
|
|
24189
|
+
* Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
|
|
24190
|
+
* @summary Install a module from a registry
|
|
24191
|
+
* @param {string} id
|
|
24192
|
+
* @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
|
|
24193
|
+
* @param {*} [options] Override http request option.
|
|
24194
|
+
* @throws {RequiredError}
|
|
24195
|
+
*/
|
|
24196
|
+
registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
24197
|
+
/**
|
|
24198
|
+
* List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
|
|
24199
|
+
* @summary List subscribed registries
|
|
24200
|
+
* @param {*} [options] Override http request option.
|
|
24201
|
+
* @throws {RequiredError}
|
|
24202
|
+
*/
|
|
24203
|
+
registryControllerList(options?: RawAxiosRequestConfig): AxiosPromise<RegistryListOutputDTOAPI>;
|
|
24204
|
+
/**
|
|
24205
|
+
* Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
|
|
24206
|
+
* @summary Refresh registry manifest
|
|
24207
|
+
* @param {string} id
|
|
24208
|
+
* @param {*} [options] Override http request option.
|
|
24209
|
+
* @throws {RequiredError}
|
|
24210
|
+
*/
|
|
24211
|
+
registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RegistryWithManifestOutputDTOAPI>;
|
|
24212
|
+
/**
|
|
24213
|
+
* Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
|
|
24214
|
+
* @summary Subscribe to a registry
|
|
24215
|
+
* @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
|
|
24216
|
+
* @param {*} [options] Override http request option.
|
|
24217
|
+
* @throws {RequiredError}
|
|
24218
|
+
*/
|
|
24219
|
+
registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): AxiosPromise<RegistryWithManifestOutputDTOAPI>;
|
|
24220
|
+
/**
|
|
24221
|
+
* Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
|
|
24222
|
+
* @summary Unsubscribe from a registry
|
|
24223
|
+
* @param {string} id
|
|
24224
|
+
* @param {*} [options] Override http request option.
|
|
24225
|
+
* @throws {RequiredError}
|
|
24226
|
+
*/
|
|
24227
|
+
registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
24228
|
+
};
|
|
24229
|
+
/**
|
|
24230
|
+
* RegistryApi - object-oriented interface
|
|
24231
|
+
* @export
|
|
24232
|
+
* @class RegistryApi
|
|
24233
|
+
* @extends {BaseAPI}
|
|
24234
|
+
*/
|
|
24235
|
+
export declare class RegistryApi extends BaseAPI {
|
|
24236
|
+
/**
|
|
24237
|
+
* Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
|
|
24238
|
+
* @summary Install a module from a registry
|
|
24239
|
+
* @param {string} id
|
|
24240
|
+
* @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
|
|
24241
|
+
* @param {*} [options] Override http request option.
|
|
24242
|
+
* @throws {RequiredError}
|
|
24243
|
+
* @memberof RegistryApi
|
|
24244
|
+
*/
|
|
24245
|
+
registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
24246
|
+
/**
|
|
24247
|
+
* List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
|
|
24248
|
+
* @summary List subscribed registries
|
|
24249
|
+
* @param {*} [options] Override http request option.
|
|
24250
|
+
* @throws {RequiredError}
|
|
24251
|
+
* @memberof RegistryApi
|
|
24252
|
+
*/
|
|
24253
|
+
registryControllerList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryListOutputDTOAPI, any>>;
|
|
24254
|
+
/**
|
|
24255
|
+
* Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
|
|
24256
|
+
* @summary Refresh registry manifest
|
|
24257
|
+
* @param {string} id
|
|
24258
|
+
* @param {*} [options] Override http request option.
|
|
24259
|
+
* @throws {RequiredError}
|
|
24260
|
+
* @memberof RegistryApi
|
|
24261
|
+
*/
|
|
24262
|
+
registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryWithManifestOutputDTOAPI, any>>;
|
|
24263
|
+
/**
|
|
24264
|
+
* Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
|
|
24265
|
+
* @summary Subscribe to a registry
|
|
24266
|
+
* @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
|
|
24267
|
+
* @param {*} [options] Override http request option.
|
|
24268
|
+
* @throws {RequiredError}
|
|
24269
|
+
* @memberof RegistryApi
|
|
24270
|
+
*/
|
|
24271
|
+
registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryWithManifestOutputDTOAPI, any>>;
|
|
24272
|
+
/**
|
|
24273
|
+
* Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
|
|
24274
|
+
* @summary Unsubscribe from a registry
|
|
24275
|
+
* @param {string} id
|
|
24276
|
+
* @param {*} [options] Override http request option.
|
|
24277
|
+
* @throws {RequiredError}
|
|
24278
|
+
* @memberof RegistryApi
|
|
24279
|
+
*/
|
|
24280
|
+
registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
24281
|
+
}
|
|
23364
24282
|
/**
|
|
23365
24283
|
* RoleApi - axios parameter creator
|
|
23366
24284
|
* @export
|