@shipstatic/types 0.3.19 → 0.3.20
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 +4 -2
- package/package.json +1 -1
- package/src/index.ts +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -36,8 +36,8 @@ export interface Deployment {
|
|
|
36
36
|
readonly created: number;
|
|
37
37
|
/** Unix timestamp (seconds) when deployment expires */
|
|
38
38
|
expires?: number;
|
|
39
|
-
/** Unix timestamp (seconds) when deployment was
|
|
40
|
-
|
|
39
|
+
/** Unix timestamp (seconds) when deployment was reviewed (content moderation) */
|
|
40
|
+
reviewed?: number;
|
|
41
41
|
/** Short-lived JWT token for claiming this deployment (only present for public deployments) */
|
|
42
42
|
claimToken?: string;
|
|
43
43
|
}
|
|
@@ -81,6 +81,8 @@ export interface Domain {
|
|
|
81
81
|
readonly isCreate?: boolean;
|
|
82
82
|
/** Unix timestamp (seconds) when domain was verified */
|
|
83
83
|
verified?: number;
|
|
84
|
+
/** Unix timestamp (seconds) when deployment binding last changed */
|
|
85
|
+
bound?: number;
|
|
84
86
|
}
|
|
85
87
|
/**
|
|
86
88
|
* Response for listing domains
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -43,8 +43,8 @@ export interface Deployment {
|
|
|
43
43
|
readonly created: number;
|
|
44
44
|
/** Unix timestamp (seconds) when deployment expires */
|
|
45
45
|
expires?: number; // Mutable - can be updated
|
|
46
|
-
/** Unix timestamp (seconds) when deployment was
|
|
47
|
-
|
|
46
|
+
/** Unix timestamp (seconds) when deployment was reviewed (content moderation) */
|
|
47
|
+
reviewed?: number; // Mutable - can be updated
|
|
48
48
|
/** Short-lived JWT token for claiming this deployment (only present for public deployments) */
|
|
49
49
|
claimToken?: string; // Mutable - can be updated
|
|
50
50
|
}
|
|
@@ -97,6 +97,8 @@ export interface Domain {
|
|
|
97
97
|
readonly isCreate?: boolean;
|
|
98
98
|
/** Unix timestamp (seconds) when domain was verified */
|
|
99
99
|
verified?: number; // Mutable - can be updated
|
|
100
|
+
/** Unix timestamp (seconds) when deployment binding last changed */
|
|
101
|
+
bound?: number;
|
|
100
102
|
}
|
|
101
103
|
|
|
102
104
|
/**
|