@takaro/apiclient 0.0.0-dev.8168003 → 0.0.0-dev.86f61e7

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.
@@ -8422,6 +8422,12 @@ export interface ModuleTransferVersionDTO {
8422
8422
  * @memberof ModuleTransferVersionDTO
8423
8423
  */
8424
8424
  uiSchema: string;
8425
+ /**
8426
+ *
8427
+ * @type {string}
8428
+ * @memberof ModuleTransferVersionDTO
8429
+ */
8430
+ defaultSystemConfig?: string;
8425
8431
  /**
8426
8432
  *
8427
8433
  * @type {Array<ICommand>}
@@ -8576,6 +8582,24 @@ export interface ModuleVersionOutputDTO {
8576
8582
  * @memberof ModuleVersionOutputDTO
8577
8583
  */
8578
8584
  moduleId: string;
8585
+ /**
8586
+ *
8587
+ * @type {string}
8588
+ * @memberof ModuleVersionOutputDTO
8589
+ */
8590
+ registryId?: string;
8591
+ /**
8592
+ *
8593
+ * @type {string}
8594
+ * @memberof ModuleVersionOutputDTO
8595
+ */
8596
+ sourceModuleName?: string;
8597
+ /**
8598
+ *
8599
+ * @type {string}
8600
+ * @memberof ModuleVersionOutputDTO
8601
+ */
8602
+ sourceVersion?: string;
8579
8603
  /**
8580
8604
  *
8581
8605
  * @type {Array<CronJobOutputDTO>}
@@ -11614,6 +11638,386 @@ export interface RedirectQs {
11614
11638
  */
11615
11639
  redirect: string;
11616
11640
  }
11641
+ /**
11642
+ *
11643
+ * @export
11644
+ * @interface RegistryCreateDTO
11645
+ */
11646
+ export interface RegistryCreateDTO {
11647
+ /**
11648
+ *
11649
+ * @type {string}
11650
+ * @memberof RegistryCreateDTO
11651
+ */
11652
+ url: string;
11653
+ /**
11654
+ *
11655
+ * @type {string}
11656
+ * @memberof RegistryCreateDTO
11657
+ */
11658
+ name?: string;
11659
+ /**
11660
+ *
11661
+ * @type {string}
11662
+ * @memberof RegistryCreateDTO
11663
+ */
11664
+ description?: string;
11665
+ }
11666
+ /**
11667
+ *
11668
+ * @export
11669
+ * @interface RegistryInstallBody
11670
+ */
11671
+ export interface RegistryInstallBody {
11672
+ /**
11673
+ *
11674
+ * @type {string}
11675
+ * @memberof RegistryInstallBody
11676
+ */
11677
+ moduleName: string;
11678
+ /**
11679
+ *
11680
+ * @type {string}
11681
+ * @memberof RegistryInstallBody
11682
+ */
11683
+ version: string;
11684
+ }
11685
+ /**
11686
+ *
11687
+ * @export
11688
+ * @interface RegistryInstallInputDTO
11689
+ */
11690
+ export interface RegistryInstallInputDTO {
11691
+ /**
11692
+ *
11693
+ * @type {string}
11694
+ * @memberof RegistryInstallInputDTO
11695
+ */
11696
+ moduleName: string;
11697
+ /**
11698
+ *
11699
+ * @type {string}
11700
+ * @memberof RegistryInstallInputDTO
11701
+ */
11702
+ version: string;
11703
+ }
11704
+ /**
11705
+ *
11706
+ * @export
11707
+ * @interface RegistryListOutputDTO
11708
+ */
11709
+ export interface RegistryListOutputDTO {
11710
+ /**
11711
+ *
11712
+ * @type {string}
11713
+ * @memberof RegistryListOutputDTO
11714
+ */
11715
+ url: string;
11716
+ /**
11717
+ *
11718
+ * @type {string}
11719
+ * @memberof RegistryListOutputDTO
11720
+ */
11721
+ name: string;
11722
+ /**
11723
+ *
11724
+ * @type {string}
11725
+ * @memberof RegistryListOutputDTO
11726
+ */
11727
+ description?: string;
11728
+ /**
11729
+ *
11730
+ * @type {Array<RegistryModuleVersionOutputDTO>}
11731
+ * @memberof RegistryListOutputDTO
11732
+ */
11733
+ modules?: Array<RegistryModuleVersionOutputDTO>;
11734
+ /**
11735
+ *
11736
+ * @type {string}
11737
+ * @memberof RegistryListOutputDTO
11738
+ */
11739
+ lastFetchError?: string;
11740
+ /**
11741
+ *
11742
+ * @type {string}
11743
+ * @memberof RegistryListOutputDTO
11744
+ */
11745
+ id: string;
11746
+ /**
11747
+ *
11748
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11749
+ * @memberof RegistryListOutputDTO
11750
+ */
11751
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11752
+ /**
11753
+ *
11754
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11755
+ * @memberof RegistryListOutputDTO
11756
+ */
11757
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11758
+ }
11759
+ /**
11760
+ *
11761
+ * @export
11762
+ * @interface RegistryListOutputDTOAPI
11763
+ */
11764
+ export interface RegistryListOutputDTOAPI {
11765
+ /**
11766
+ *
11767
+ * @type {Array<RegistryListOutputDTO>}
11768
+ * @memberof RegistryListOutputDTOAPI
11769
+ */
11770
+ data: Array<RegistryListOutputDTO>;
11771
+ /**
11772
+ *
11773
+ * @type {MetadataOutput}
11774
+ * @memberof RegistryListOutputDTOAPI
11775
+ */
11776
+ meta: MetadataOutput;
11777
+ }
11778
+ /**
11779
+ *
11780
+ * @export
11781
+ * @interface RegistryManifestDTO
11782
+ */
11783
+ export interface RegistryManifestDTO {
11784
+ /**
11785
+ *
11786
+ * @type {string}
11787
+ * @memberof RegistryManifestDTO
11788
+ */
11789
+ name: string;
11790
+ /**
11791
+ *
11792
+ * @type {string}
11793
+ * @memberof RegistryManifestDTO
11794
+ */
11795
+ description?: string;
11796
+ /**
11797
+ *
11798
+ * @type {Array<RegistryManifestModuleDTO>}
11799
+ * @memberof RegistryManifestDTO
11800
+ */
11801
+ modules: Array<RegistryManifestModuleDTO>;
11802
+ }
11803
+ /**
11804
+ *
11805
+ * @export
11806
+ * @interface RegistryManifestModuleDTO
11807
+ */
11808
+ export interface RegistryManifestModuleDTO {
11809
+ /**
11810
+ *
11811
+ * @type {string}
11812
+ * @memberof RegistryManifestModuleDTO
11813
+ */
11814
+ name: string;
11815
+ /**
11816
+ *
11817
+ * @type {string}
11818
+ * @memberof RegistryManifestModuleDTO
11819
+ */
11820
+ latestVersion: string;
11821
+ /**
11822
+ *
11823
+ * @type {Array<string>}
11824
+ * @memberof RegistryManifestModuleDTO
11825
+ */
11826
+ versions: Array<string>;
11827
+ /**
11828
+ *
11829
+ * @type {string}
11830
+ * @memberof RegistryManifestModuleDTO
11831
+ */
11832
+ description?: string;
11833
+ }
11834
+ /**
11835
+ *
11836
+ * @export
11837
+ * @interface RegistryModuleVersionOutputDTO
11838
+ */
11839
+ export interface RegistryModuleVersionOutputDTO {
11840
+ /**
11841
+ *
11842
+ * @type {string}
11843
+ * @memberof RegistryModuleVersionOutputDTO
11844
+ */
11845
+ name: string;
11846
+ /**
11847
+ *
11848
+ * @type {Array<string>}
11849
+ * @memberof RegistryModuleVersionOutputDTO
11850
+ */
11851
+ versions: Array<string>;
11852
+ /**
11853
+ *
11854
+ * @type {string}
11855
+ * @memberof RegistryModuleVersionOutputDTO
11856
+ */
11857
+ latestVersion: string;
11858
+ /**
11859
+ *
11860
+ * @type {string}
11861
+ * @memberof RegistryModuleVersionOutputDTO
11862
+ */
11863
+ description?: string;
11864
+ }
11865
+ /**
11866
+ *
11867
+ * @export
11868
+ * @interface RegistryOutputDTO
11869
+ */
11870
+ export interface RegistryOutputDTO {
11871
+ /**
11872
+ *
11873
+ * @type {string}
11874
+ * @memberof RegistryOutputDTO
11875
+ */
11876
+ url: string;
11877
+ /**
11878
+ *
11879
+ * @type {string}
11880
+ * @memberof RegistryOutputDTO
11881
+ */
11882
+ name: string;
11883
+ /**
11884
+ *
11885
+ * @type {string}
11886
+ * @memberof RegistryOutputDTO
11887
+ */
11888
+ description?: string;
11889
+ /**
11890
+ *
11891
+ * @type {string}
11892
+ * @memberof RegistryOutputDTO
11893
+ */
11894
+ id: string;
11895
+ /**
11896
+ *
11897
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11898
+ * @memberof RegistryOutputDTO
11899
+ */
11900
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11901
+ /**
11902
+ *
11903
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11904
+ * @memberof RegistryOutputDTO
11905
+ */
11906
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11907
+ }
11908
+ /**
11909
+ *
11910
+ * @export
11911
+ * @interface RegistrySubscribeBody
11912
+ */
11913
+ export interface RegistrySubscribeBody {
11914
+ /**
11915
+ *
11916
+ * @type {string}
11917
+ * @memberof RegistrySubscribeBody
11918
+ */
11919
+ url: string;
11920
+ }
11921
+ /**
11922
+ *
11923
+ * @export
11924
+ * @interface RegistrySubscribeInputDTO
11925
+ */
11926
+ export interface RegistrySubscribeInputDTO {
11927
+ /**
11928
+ *
11929
+ * @type {string}
11930
+ * @memberof RegistrySubscribeInputDTO
11931
+ */
11932
+ url: string;
11933
+ }
11934
+ /**
11935
+ *
11936
+ * @export
11937
+ * @interface RegistryUpdateDTO
11938
+ */
11939
+ export interface RegistryUpdateDTO {
11940
+ /**
11941
+ *
11942
+ * @type {string}
11943
+ * @memberof RegistryUpdateDTO
11944
+ */
11945
+ name?: string;
11946
+ /**
11947
+ *
11948
+ * @type {string}
11949
+ * @memberof RegistryUpdateDTO
11950
+ */
11951
+ description?: string;
11952
+ }
11953
+ /**
11954
+ *
11955
+ * @export
11956
+ * @interface RegistryWithManifestOutputDTO
11957
+ */
11958
+ export interface RegistryWithManifestOutputDTO {
11959
+ /**
11960
+ *
11961
+ * @type {string}
11962
+ * @memberof RegistryWithManifestOutputDTO
11963
+ */
11964
+ url: string;
11965
+ /**
11966
+ *
11967
+ * @type {string}
11968
+ * @memberof RegistryWithManifestOutputDTO
11969
+ */
11970
+ name: string;
11971
+ /**
11972
+ *
11973
+ * @type {string}
11974
+ * @memberof RegistryWithManifestOutputDTO
11975
+ */
11976
+ description?: string;
11977
+ /**
11978
+ *
11979
+ * @type {object}
11980
+ * @memberof RegistryWithManifestOutputDTO
11981
+ */
11982
+ manifest?: object;
11983
+ /**
11984
+ *
11985
+ * @type {string}
11986
+ * @memberof RegistryWithManifestOutputDTO
11987
+ */
11988
+ id: string;
11989
+ /**
11990
+ *
11991
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11992
+ * @memberof RegistryWithManifestOutputDTO
11993
+ */
11994
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11995
+ /**
11996
+ *
11997
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11998
+ * @memberof RegistryWithManifestOutputDTO
11999
+ */
12000
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12001
+ }
12002
+ /**
12003
+ *
12004
+ * @export
12005
+ * @interface RegistryWithManifestOutputDTOAPI
12006
+ */
12007
+ export interface RegistryWithManifestOutputDTOAPI {
12008
+ /**
12009
+ *
12010
+ * @type {RegistryWithManifestOutputDTO}
12011
+ * @memberof RegistryWithManifestOutputDTOAPI
12012
+ */
12013
+ data: RegistryWithManifestOutputDTO;
12014
+ /**
12015
+ *
12016
+ * @type {MetadataOutput}
12017
+ * @memberof RegistryWithManifestOutputDTOAPI
12018
+ */
12019
+ meta: MetadataOutput;
12020
+ }
11617
12021
  /**
11618
12022
  *
11619
12023
  * @export
@@ -23361,6 +23765,197 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
23361
23765
  */
23362
23766
  playerOnGameServerControllerTransactBetweenPlayers(gameServerId: string, sender: string, receiver: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
23363
23767
  }
23768
+ /**
23769
+ * RegistryApi - axios parameter creator
23770
+ * @export
23771
+ */
23772
+ export declare const RegistryApiAxiosParamCreator: (configuration?: Configuration) => {
23773
+ /**
23774
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
23775
+ * @summary Install a module from a registry
23776
+ * @param {string} id
23777
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
23778
+ * @param {*} [options] Override http request option.
23779
+ * @throws {RequiredError}
23780
+ */
23781
+ registryControllerInstall: (id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23782
+ /**
23783
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
23784
+ * @summary List subscribed registries
23785
+ * @param {*} [options] Override http request option.
23786
+ * @throws {RequiredError}
23787
+ */
23788
+ registryControllerList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23789
+ /**
23790
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
23791
+ * @summary Refresh registry manifest
23792
+ * @param {string} id
23793
+ * @param {*} [options] Override http request option.
23794
+ * @throws {RequiredError}
23795
+ */
23796
+ registryControllerRefresh: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23797
+ /**
23798
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
23799
+ * @summary Subscribe to a registry
23800
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
23801
+ * @param {*} [options] Override http request option.
23802
+ * @throws {RequiredError}
23803
+ */
23804
+ registryControllerSubscribe: (registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23805
+ /**
23806
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
23807
+ * @summary Unsubscribe from a registry
23808
+ * @param {string} id
23809
+ * @param {*} [options] Override http request option.
23810
+ * @throws {RequiredError}
23811
+ */
23812
+ registryControllerUnsubscribe: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23813
+ };
23814
+ /**
23815
+ * RegistryApi - functional programming interface
23816
+ * @export
23817
+ */
23818
+ export declare const RegistryApiFp: (configuration?: Configuration) => {
23819
+ /**
23820
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
23821
+ * @summary Install a module from a registry
23822
+ * @param {string} id
23823
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
23824
+ * @param {*} [options] Override http request option.
23825
+ * @throws {RequiredError}
23826
+ */
23827
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23828
+ /**
23829
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
23830
+ * @summary List subscribed registries
23831
+ * @param {*} [options] Override http request option.
23832
+ * @throws {RequiredError}
23833
+ */
23834
+ registryControllerList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryListOutputDTOAPI>>;
23835
+ /**
23836
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
23837
+ * @summary Refresh registry manifest
23838
+ * @param {string} id
23839
+ * @param {*} [options] Override http request option.
23840
+ * @throws {RequiredError}
23841
+ */
23842
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>>;
23843
+ /**
23844
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
23845
+ * @summary Subscribe to a registry
23846
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
23847
+ * @param {*} [options] Override http request option.
23848
+ * @throws {RequiredError}
23849
+ */
23850
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>>;
23851
+ /**
23852
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
23853
+ * @summary Unsubscribe from a registry
23854
+ * @param {string} id
23855
+ * @param {*} [options] Override http request option.
23856
+ * @throws {RequiredError}
23857
+ */
23858
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23859
+ };
23860
+ /**
23861
+ * RegistryApi - factory interface
23862
+ * @export
23863
+ */
23864
+ export declare const RegistryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23865
+ /**
23866
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
23867
+ * @summary Install a module from a registry
23868
+ * @param {string} id
23869
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
23870
+ * @param {*} [options] Override http request option.
23871
+ * @throws {RequiredError}
23872
+ */
23873
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23874
+ /**
23875
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
23876
+ * @summary List subscribed registries
23877
+ * @param {*} [options] Override http request option.
23878
+ * @throws {RequiredError}
23879
+ */
23880
+ registryControllerList(options?: RawAxiosRequestConfig): AxiosPromise<RegistryListOutputDTOAPI>;
23881
+ /**
23882
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
23883
+ * @summary Refresh registry manifest
23884
+ * @param {string} id
23885
+ * @param {*} [options] Override http request option.
23886
+ * @throws {RequiredError}
23887
+ */
23888
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RegistryWithManifestOutputDTOAPI>;
23889
+ /**
23890
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
23891
+ * @summary Subscribe to a registry
23892
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
23893
+ * @param {*} [options] Override http request option.
23894
+ * @throws {RequiredError}
23895
+ */
23896
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): AxiosPromise<RegistryWithManifestOutputDTOAPI>;
23897
+ /**
23898
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
23899
+ * @summary Unsubscribe from a registry
23900
+ * @param {string} id
23901
+ * @param {*} [options] Override http request option.
23902
+ * @throws {RequiredError}
23903
+ */
23904
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23905
+ };
23906
+ /**
23907
+ * RegistryApi - object-oriented interface
23908
+ * @export
23909
+ * @class RegistryApi
23910
+ * @extends {BaseAPI}
23911
+ */
23912
+ export declare class RegistryApi extends BaseAPI {
23913
+ /**
23914
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
23915
+ * @summary Install a module from a registry
23916
+ * @param {string} id
23917
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
23918
+ * @param {*} [options] Override http request option.
23919
+ * @throws {RequiredError}
23920
+ * @memberof RegistryApi
23921
+ */
23922
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23923
+ /**
23924
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
23925
+ * @summary List subscribed registries
23926
+ * @param {*} [options] Override http request option.
23927
+ * @throws {RequiredError}
23928
+ * @memberof RegistryApi
23929
+ */
23930
+ registryControllerList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryListOutputDTOAPI, any>>;
23931
+ /**
23932
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
23933
+ * @summary Refresh registry manifest
23934
+ * @param {string} id
23935
+ * @param {*} [options] Override http request option.
23936
+ * @throws {RequiredError}
23937
+ * @memberof RegistryApi
23938
+ */
23939
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryWithManifestOutputDTOAPI, any>>;
23940
+ /**
23941
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
23942
+ * @summary Subscribe to a registry
23943
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
23944
+ * @param {*} [options] Override http request option.
23945
+ * @throws {RequiredError}
23946
+ * @memberof RegistryApi
23947
+ */
23948
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryWithManifestOutputDTOAPI, any>>;
23949
+ /**
23950
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
23951
+ * @summary Unsubscribe from a registry
23952
+ * @param {string} id
23953
+ * @param {*} [options] Override http request option.
23954
+ * @throws {RequiredError}
23955
+ * @memberof RegistryApi
23956
+ */
23957
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23958
+ }
23364
23959
  /**
23365
23960
  * RoleApi - axios parameter creator
23366
23961
  * @export