We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fe28553 + 7afdf4a commit 9ace710Copy full SHA for 9ace710
src/model/Environment.ts
@@ -44,6 +44,12 @@ export enum Status {
44
deleting = "deleting"
45
};
46
47
+interface DeploymentState {
48
+ crons: object;
49
+ last_deployment_at: string | null;
50
+ last_deployment_successful: boolean;
51
+}
52
+
53
export default class Environment extends Ressource {
54
id: string = ""
55
status: Status = Status.inactive;
@@ -62,6 +68,7 @@ export default class Environment extends Ressource {
62
68
enable_smtp: boolean = false;
63
69
has_code: boolean = false;
64
70
deployment_target: string = "";
71
+ deployment_state: DeploymentState | object = {};
65
72
http_access = {};
66
73
is_main: boolean = false;
67
74
type: string = "";
0 commit comments