@shipstatic/types 0.4.6 → 0.4.7
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 +0 -6
- package/package.json +1 -1
- package/src/index.ts +0 -6
package/dist/index.d.ts
CHANGED
|
@@ -36,8 +36,6 @@ 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 reviewed (content moderation) */
|
|
40
|
-
reviewed?: number;
|
|
41
39
|
/** Short-lived JWT token for claiming this deployment (only present for public deployments) */
|
|
42
40
|
claimToken?: string;
|
|
43
41
|
}
|
|
@@ -79,10 +77,6 @@ export interface Domain {
|
|
|
79
77
|
readonly created: number;
|
|
80
78
|
/** Whether this was a create (201) or update (200) operation */
|
|
81
79
|
readonly isCreate?: boolean;
|
|
82
|
-
/** When DNS was verified (Unix timestamp, null if pending) */
|
|
83
|
-
verified?: number;
|
|
84
|
-
/** Total DNS verification attempts */
|
|
85
|
-
verifications?: number;
|
|
86
80
|
/** When deployment was last linked (Unix timestamp, null if never) */
|
|
87
81
|
linked?: number;
|
|
88
82
|
/** Total deployment links */
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -43,8 +43,6 @@ 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 reviewed (content moderation) */
|
|
47
|
-
reviewed?: number; // Mutable - can be updated
|
|
48
46
|
/** Short-lived JWT token for claiming this deployment (only present for public deployments) */
|
|
49
47
|
claimToken?: string; // Mutable - can be updated
|
|
50
48
|
}
|
|
@@ -95,10 +93,6 @@ export interface Domain {
|
|
|
95
93
|
readonly created: number;
|
|
96
94
|
/** Whether this was a create (201) or update (200) operation */
|
|
97
95
|
readonly isCreate?: boolean;
|
|
98
|
-
/** When DNS was verified (Unix timestamp, null if pending) */
|
|
99
|
-
verified?: number;
|
|
100
|
-
/** Total DNS verification attempts */
|
|
101
|
-
verifications?: number;
|
|
102
96
|
/** When deployment was last linked (Unix timestamp, null if never) */
|
|
103
97
|
linked?: number;
|
|
104
98
|
/** Total deployment links */
|