@shipstatic/types 0.4.4 → 0.4.5
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 +7 -1
- package/package.json +1 -1
- package/src/index.ts +7 -1
package/dist/index.d.ts
CHANGED
|
@@ -79,8 +79,14 @@ 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
|
-
/**
|
|
82
|
+
/** When DNS was verified (Unix timestamp, null if pending) */
|
|
83
|
+
verified?: number;
|
|
84
|
+
/** Total DNS verification attempts */
|
|
85
|
+
verifications?: number;
|
|
86
|
+
/** When deployment was last bound (Unix timestamp, null if never) */
|
|
83
87
|
bound?: number;
|
|
88
|
+
/** Total deployment bindings */
|
|
89
|
+
bindings?: number;
|
|
84
90
|
}
|
|
85
91
|
/**
|
|
86
92
|
* Response for listing domains
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -95,8 +95,14 @@ 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
|
-
/**
|
|
98
|
+
/** When DNS was verified (Unix timestamp, null if pending) */
|
|
99
|
+
verified?: number;
|
|
100
|
+
/** Total DNS verification attempts */
|
|
101
|
+
verifications?: number;
|
|
102
|
+
/** When deployment was last bound (Unix timestamp, null if never) */
|
|
99
103
|
bound?: number;
|
|
104
|
+
/** Total deployment bindings */
|
|
105
|
+
bindings?: number;
|
|
100
106
|
}
|
|
101
107
|
|
|
102
108
|
/**
|