@shipstatic/types 0.4.1 → 0.4.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 +0 -2
- package/package.json +1 -1
- package/src/index.ts +0 -2
package/dist/index.d.ts
CHANGED
|
@@ -79,8 +79,6 @@ export interface Domain {
|
|
|
79
79
|
readonly created: number;
|
|
80
80
|
/** Whether this was a create (201) or update (200) operation */
|
|
81
81
|
readonly isCreate?: boolean;
|
|
82
|
-
/** Unix timestamp (seconds) when domain was verified */
|
|
83
|
-
verified?: number;
|
|
84
82
|
/** Unix timestamp (seconds) when deployment binding last changed */
|
|
85
83
|
bound?: number;
|
|
86
84
|
}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -95,8 +95,6 @@ export interface Domain {
|
|
|
95
95
|
readonly created: number;
|
|
96
96
|
/** Whether this was a create (201) or update (200) operation */
|
|
97
97
|
readonly isCreate?: boolean;
|
|
98
|
-
/** Unix timestamp (seconds) when domain was verified */
|
|
99
|
-
verified?: number; // Mutable - can be updated
|
|
100
98
|
/** Unix timestamp (seconds) when deployment binding last changed */
|
|
101
99
|
bound?: number;
|
|
102
100
|
}
|