@shipstatic/types 0.1.1 → 0.1.2
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
|
totalSize: number;
|
|
15
15
|
/** Current deployment status */
|
|
16
16
|
status: 'pending' | 'success' | 'failed';
|
|
17
|
+
/** The deployment URL */
|
|
18
|
+
url: string;
|
|
17
19
|
/** Unix timestamp (seconds) when deployment was created */
|
|
18
20
|
createdAt: number;
|
|
19
21
|
/** Unix timestamp (seconds) when deployment expires */
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -19,6 +19,8 @@ export interface Deployment {
|
|
|
19
19
|
totalSize: number;
|
|
20
20
|
/** Current deployment status */
|
|
21
21
|
status: 'pending' | 'success' | 'failed';
|
|
22
|
+
/** The deployment URL */
|
|
23
|
+
url: string;
|
|
22
24
|
/** Unix timestamp (seconds) when deployment was created */
|
|
23
25
|
createdAt: number;
|
|
24
26
|
/** Unix timestamp (seconds) when deployment expires */
|