@shipstatic/types 0.1.8 → 0.1.9
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/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ export interface Deployment {
|
|
|
14
14
|
size: number;
|
|
15
15
|
/** Current deployment status */
|
|
16
16
|
status: 'pending' | 'success' | 'failed';
|
|
17
|
+
/** Whether deployment has configuration */
|
|
18
|
+
config?: boolean;
|
|
17
19
|
/** The deployment URL */
|
|
18
20
|
url: string;
|
|
19
21
|
/** Unix timestamp (seconds) when deployment was created */
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -19,6 +19,8 @@ export interface Deployment {
|
|
|
19
19
|
size: number;
|
|
20
20
|
/** Current deployment status */
|
|
21
21
|
status: 'pending' | 'success' | 'failed';
|
|
22
|
+
/** Whether deployment has configuration */
|
|
23
|
+
config?: boolean;
|
|
22
24
|
/** The deployment URL */
|
|
23
25
|
url: string;
|
|
24
26
|
/** Unix timestamp (seconds) when deployment was created */
|