@shipstatic/types 0.9.10 → 0.9.11
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
|
@@ -38,6 +38,8 @@ export interface Deployment {
|
|
|
38
38
|
readonly created: number;
|
|
39
39
|
/** Unix timestamp (seconds) when deployment expires, null if never */
|
|
40
40
|
expires: number | null;
|
|
41
|
+
/** Screenshot URL for this deployment (e.g., 'https://screenshots.shipstatic.com/happy-cat-abc1234/a3f2c1b4d5e6f789') */
|
|
42
|
+
readonly screenshot: string;
|
|
41
43
|
}
|
|
42
44
|
/**
|
|
43
45
|
* Response from deployment creation. Extends Deployment with one-time fields
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -45,6 +45,8 @@ export interface Deployment {
|
|
|
45
45
|
readonly created: number;
|
|
46
46
|
/** Unix timestamp (seconds) when deployment expires, null if never */
|
|
47
47
|
expires: number | null; // Mutable - can be updated
|
|
48
|
+
/** Screenshot URL for this deployment (e.g., 'https://screenshots.shipstatic.com/happy-cat-abc1234/a3f2c1b4d5e6f789') */
|
|
49
|
+
readonly screenshot: string;
|
|
48
50
|
}
|
|
49
51
|
|
|
50
52
|
|