Makelore 2.0 initial clean snapshot
This commit is contained in:
24
shared/works-cloud-deployment.ts
Normal file
24
shared/works-cloud-deployment.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
export const WORKS_CLOUD_DEPLOYMENT_FILE_NAME = 'works-cloud-deploy.json';
|
||||
export const WORKS_CLOUD_DEPLOYMENT_SCHEMA_VERSION = 1 as const;
|
||||
|
||||
export type WorksCloudDeploymentStatus =
|
||||
| 'armed'
|
||||
| 'waiting_for_package'
|
||||
| 'waiting_for_login'
|
||||
| 'uploading'
|
||||
| 'submitted'
|
||||
| 'failed';
|
||||
|
||||
export type WorksCloudDeploymentRecord = {
|
||||
schema_version: typeof WORKS_CLOUD_DEPLOYMENT_SCHEMA_VERSION;
|
||||
project_id: string;
|
||||
status: WorksCloudDeploymentStatus;
|
||||
requested_at: string;
|
||||
updated_at: string;
|
||||
app_id?: string;
|
||||
version_name?: string;
|
||||
zip_sha256?: string;
|
||||
version_id?: string;
|
||||
review_status?: string;
|
||||
error?: string;
|
||||
};
|
||||
Reference in New Issue
Block a user