@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 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
- /** Unix timestamp (seconds) when deployment binding last changed */
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
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
- /** Unix timestamp (seconds) when deployment binding last changed */
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
  /**