@icewhale/casaos-appmanagement-openapi
Advanced tools
Comparing version 0.4.4-dev5 to 0.4.4-dev6
@@ -24,42 +24,18 @@ /** | ||
* | ||
* @type {{ [key: string]: string; }} | ||
* @type {Scheme} | ||
* @memberof AppStoreInfo | ||
*/ | ||
'title': { | ||
[key: string]: string; | ||
}; | ||
'scheme'?: Scheme; | ||
/** | ||
* | ||
* @type {{ [key: string]: string; }} | ||
* @memberof AppStoreInfo | ||
*/ | ||
'description': { | ||
[key: string]: string; | ||
}; | ||
/** | ||
* | ||
* @type {{ [key: string]: string; }} | ||
* @memberof AppStoreInfo | ||
*/ | ||
'tagline': { | ||
[key: string]: string; | ||
}; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof AppStoreInfo | ||
*/ | ||
'icon': string; | ||
'hostname'?: string; | ||
/** | ||
* | ||
* @type {Array<string>} | ||
* @memberof AppStoreInfo | ||
*/ | ||
'screenshot_link': Array<string>; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof AppStoreInfo | ||
*/ | ||
'thumbnail': string; | ||
'port_map': string; | ||
/** | ||
@@ -70,27 +46,27 @@ * | ||
*/ | ||
'author': string; | ||
'index': string; | ||
/** | ||
* | ||
* @type {string} | ||
* @type {Array<EnvStoreInfo>} | ||
* @memberof AppStoreInfo | ||
*/ | ||
'developer': string; | ||
'envs': Array<EnvStoreInfo>; | ||
/** | ||
* | ||
* @type {string} | ||
* @type {Array<PortStoreInfo>} | ||
* @memberof AppStoreInfo | ||
*/ | ||
'category': string; | ||
'ports': Array<PortStoreInfo>; | ||
/** | ||
* | ||
* @type {TipsStoreInfo} | ||
* @type {Array<VolumeStoreInfo>} | ||
* @memberof AppStoreInfo | ||
*/ | ||
'tips': TipsStoreInfo; | ||
'volumes': Array<VolumeStoreInfo>; | ||
/** | ||
* | ||
* @type {ContainerStoreInfo} | ||
* @type {Array<DeviceStoreInfo>} | ||
* @memberof AppStoreInfo | ||
*/ | ||
'container': ContainerStoreInfo; | ||
'devices': Array<DeviceStoreInfo>; | ||
} | ||
@@ -297,2 +273,68 @@ /** | ||
/** | ||
* | ||
* @type {{ [key: string]: string; }} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'title': { | ||
[key: string]: string; | ||
}; | ||
/** | ||
* | ||
* @type {{ [key: string]: string; }} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'description': { | ||
[key: string]: string; | ||
}; | ||
/** | ||
* | ||
* @type {{ [key: string]: string; }} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'tagline': { | ||
[key: string]: string; | ||
}; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'icon': string; | ||
/** | ||
* | ||
* @type {Array<string>} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'screenshot_link': Array<string>; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'thumbnail': string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'author': string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'developer': string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'category': string; | ||
/** | ||
* | ||
* @type {TipsStoreInfo} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'tips': TipsStoreInfo; | ||
/** | ||
* The key is the name of a container app, and the value is the StoreInfo of this container app. | ||
@@ -306,7 +348,7 @@ * @type {{ [key: string]: AppStoreInfo; }} | ||
/** | ||
* The main container app is one of the container `apps` that the user will interact with. | ||
* The main service is one of the services that the user will interact with. | ||
* @type {string} | ||
* @memberof ComposeAppStoreInfo | ||
*/ | ||
'main_app'?: string; | ||
'main'?: string; | ||
/** | ||
@@ -438,57 +480,2 @@ * The architectures supported by the compose app. If the architecture of the host is not in this list, the compose app will not be installed. | ||
* @export | ||
* @interface ContainerStoreInfo | ||
*/ | ||
export interface ContainerStoreInfo { | ||
/** | ||
* | ||
* @type {Scheme} | ||
* @memberof ContainerStoreInfo | ||
*/ | ||
'scheme'?: Scheme; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ContainerStoreInfo | ||
*/ | ||
'hostname'?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ContainerStoreInfo | ||
*/ | ||
'port_map': string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ContainerStoreInfo | ||
*/ | ||
'index': string; | ||
/** | ||
* | ||
* @type {Array<EnvStoreInfo>} | ||
* @memberof ContainerStoreInfo | ||
*/ | ||
'envs': Array<EnvStoreInfo>; | ||
/** | ||
* | ||
* @type {Array<PortStoreInfo>} | ||
* @memberof ContainerStoreInfo | ||
*/ | ||
'ports': Array<PortStoreInfo>; | ||
/** | ||
* | ||
* @type {Array<VolumeStoreInfo>} | ||
* @memberof ContainerStoreInfo | ||
*/ | ||
'volumes': Array<VolumeStoreInfo>; | ||
/** | ||
* | ||
* @type {Array<DeviceStoreInfo>} | ||
* @memberof ContainerStoreInfo | ||
*/ | ||
'devices': Array<DeviceStoreInfo>; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @interface DeviceStoreInfo | ||
@@ -808,3 +795,3 @@ */ | ||
/** | ||
* Get StoreInfo of specific compose app. > A compose app contains one or more container `apps`. One of the `apps` is the `main_app` of this compose app, whereas others are dependency `apps`. | ||
* Get StoreInfo of specific compose app. > A compose app contains one or more container `apps`. One of the `apps` is the `main` of this compose app, whereas others are dependency `apps`. | ||
* @summary Get app info from registered app stores | ||
@@ -864,3 +851,3 @@ * @param {string} id Store app ID of a compose app (unique across all app stores) | ||
/** | ||
* Get StoreInfo of specific compose app. > A compose app contains one or more container `apps`. One of the `apps` is the `main_app` of this compose app, whereas others are dependency `apps`. | ||
* Get StoreInfo of specific compose app. > A compose app contains one or more container `apps`. One of the `apps` is the `main` of this compose app, whereas others are dependency `apps`. | ||
* @summary Get app info from registered app stores | ||
@@ -920,3 +907,3 @@ * @param {string} id Store app ID of a compose app (unique across all app stores) | ||
/** | ||
* Get StoreInfo of specific compose app. > A compose app contains one or more container `apps`. One of the `apps` is the `main_app` of this compose app, whereas others are dependency `apps`. | ||
* Get StoreInfo of specific compose app. > A compose app contains one or more container `apps`. One of the `apps` is the `main` of this compose app, whereas others are dependency `apps`. | ||
* @summary Get app info from registered app stores | ||
@@ -980,3 +967,3 @@ * @param {string} id Store app ID of a compose app (unique across all app stores) | ||
/** | ||
* Get StoreInfo of specific compose app. > A compose app contains one or more container `apps`. One of the `apps` is the `main_app` of this compose app, whereas others are dependency `apps`. | ||
* Get StoreInfo of specific compose app. > A compose app contains one or more container `apps`. One of the `apps` is the `main` of this compose app, whereas others are dependency `apps`. | ||
* @summary Get app info from registered app stores | ||
@@ -983,0 +970,0 @@ * @param {string} id Store app ID of a compose app (unique across all app stores) |
{ | ||
"name": "@icewhale/casaos-appmanagement-openapi", | ||
"version": "v0.4.4-dev5", | ||
"version": "v0.4.4-dev6", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "clean": "rm -rf generate", |
Sorry, the diff of this file is too big to display
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
179766
3778