phala 1.1.0-beta.4 → 1.1.0-beta.7
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/api/index.d.ts +3 -3
- package/dist/api/index.js +28 -17
- package/dist/index.js +139 -138
- package/package.json +81 -74
package/dist/api/index.d.ts
CHANGED
|
@@ -800,10 +800,10 @@ interface CvmComposeConfigResponse {
|
|
|
800
800
|
/**
|
|
801
801
|
* Check CVM exists for the current user and appId
|
|
802
802
|
* @param appId App ID (with or without app_ prefix)
|
|
803
|
-
* @
|
|
804
|
-
* @
|
|
803
|
+
* @returns CVM appId string (without app_ prefix)
|
|
804
|
+
* @throws Error if CVM list fetch fails or CVM not found
|
|
805
805
|
*/
|
|
806
|
-
declare function checkCvmExists(appId: string
|
|
806
|
+
declare function checkCvmExists(appId: string): Promise<string>;
|
|
807
807
|
/**
|
|
808
808
|
* Get CVM by App ID using SDK
|
|
809
809
|
* @param appId App ID (with or without app_ prefix)
|