phala 1.1.0-beta.12 → 1.1.0-beta.13
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 +1 -8
- package/dist/api/index.js +12 -12
- package/dist/index.js +109 -109
- package/package.json +1 -1
package/dist/api/index.d.ts
CHANGED
|
@@ -797,13 +797,6 @@ interface CvmComposeConfigResponse {
|
|
|
797
797
|
[key: string]: unknown;
|
|
798
798
|
}
|
|
799
799
|
|
|
800
|
-
/**
|
|
801
|
-
* Check CVM exists for the current user and appId
|
|
802
|
-
* @param appId App ID (with or without app_ prefix)
|
|
803
|
-
* @returns CVM appId string (without app_ prefix)
|
|
804
|
-
* @throws Error if CVM list fetch fails or CVM not found
|
|
805
|
-
*/
|
|
806
|
-
declare function checkCvmExists(appId: string): Promise<string>;
|
|
807
800
|
/**
|
|
808
801
|
* Get CVM by App ID using SDK
|
|
809
802
|
* @param appId App ID (with or without app_ prefix)
|
|
@@ -918,4 +911,4 @@ declare function upgradeCvm(appId: string, vmConfig: VMConfig): Promise<UpgradeR
|
|
|
918
911
|
*/
|
|
919
912
|
declare function getTeepods(v03x_only?: boolean): Promise<TeepodResponse>;
|
|
920
913
|
|
|
921
|
-
export { type AvailableNodesResponse, type CertificateInfo, type CertificateNameInfo, type ComposeFile, type CvmAttestationResponse, type CvmComposeConfigResponse, type CvmListResponse, type DockerConfig, type EncryptedEnvItem, type GetCvmNetworkResponse, type Image, type KmsListItem, type PostCvmResponse, type PubkeyResponse, type ReplicateCvmResponse, type ResizeCvmPayload, type TCBEventLogEntry, type TCBInfo, type TEEPod, type TeepodResponse, type UpgradeResponse, type UserInfoResponse, type VMConfig,
|
|
914
|
+
export { type AvailableNodesResponse, type CertificateInfo, type CertificateNameInfo, type ComposeFile, type CvmAttestationResponse, type CvmComposeConfigResponse, type CvmListResponse, type DockerConfig, type EncryptedEnvItem, type GetCvmNetworkResponse, type Image, type KmsListItem, type PostCvmResponse, type PubkeyResponse, type ReplicateCvmResponse, type ResizeCvmPayload, type TCBEventLogEntry, type TCBInfo, type TEEPod, type TeepodResponse, type UpgradeResponse, type UserInfoResponse, type VMConfig, composeFileSchema, createCvm, cvmAttestationResponseSchema, deleteCvm, dockerConfigSchema, encryptedEnvItemSchema, getCvmAttestation, getCvmByAppId, getCvmComposeConfig, getCvmNetwork, getCvmNetworkResponseSchema, getPubkeyFromCvm, getTeepods, imageSchema, postCvmResponseSchema, replicateCvm, replicateCvmResponseSchema, resizeCvm, restartCvm, selectCvm, startCvm, stopCvm, teepodSchema, upgradeCvm };
|