@shipstatic/types 0.4.4 → 0.4.6
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 +10 -4
- package/package.json +1 -1
- package/src/index.ts +10 -4
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
|
-
/**
|
|
83
|
-
|
|
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 linked (Unix timestamp, null if never) */
|
|
87
|
+
linked?: number;
|
|
88
|
+
/** Total deployment links */
|
|
89
|
+
links?: number;
|
|
84
90
|
}
|
|
85
91
|
/**
|
|
86
92
|
* Response for listing domains
|
|
@@ -154,7 +160,7 @@ export interface Token {
|
|
|
154
160
|
readonly token: string;
|
|
155
161
|
/** The account this token belongs to */
|
|
156
162
|
readonly account: string;
|
|
157
|
-
/** Optional IP address
|
|
163
|
+
/** Optional IP address locking for security */
|
|
158
164
|
readonly ip?: string;
|
|
159
165
|
/** Optional array of tags for categorization and filtering (lowercase, alphanumeric with separators) */
|
|
160
166
|
tags?: string[];
|
|
@@ -615,7 +621,7 @@ export interface ActivityMeta {
|
|
|
615
621
|
isUpdate?: boolean;
|
|
616
622
|
/** Whether domain was already verified */
|
|
617
623
|
wasVerified?: boolean;
|
|
618
|
-
/** Previous deployment ID before
|
|
624
|
+
/** Previous deployment ID before relinking */
|
|
619
625
|
previousDeployment?: string;
|
|
620
626
|
/** Tags that were set/updated */
|
|
621
627
|
tags?: string[];
|
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
|
-
/**
|
|
99
|
-
|
|
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 linked (Unix timestamp, null if never) */
|
|
103
|
+
linked?: number;
|
|
104
|
+
/** Total deployment links */
|
|
105
|
+
links?: number;
|
|
100
106
|
}
|
|
101
107
|
|
|
102
108
|
/**
|
|
@@ -180,7 +186,7 @@ export interface Token {
|
|
|
180
186
|
readonly token: string;
|
|
181
187
|
/** The account this token belongs to */
|
|
182
188
|
readonly account: string;
|
|
183
|
-
/** Optional IP address
|
|
189
|
+
/** Optional IP address locking for security */
|
|
184
190
|
readonly ip?: string;
|
|
185
191
|
/** Optional array of tags for categorization and filtering (lowercase, alphanumeric with separators) */
|
|
186
192
|
tags?: string[];
|
|
@@ -937,7 +943,7 @@ export interface ActivityMeta {
|
|
|
937
943
|
isUpdate?: boolean;
|
|
938
944
|
/** Whether domain was already verified */
|
|
939
945
|
wasVerified?: boolean;
|
|
940
|
-
/** Previous deployment ID before
|
|
946
|
+
/** Previous deployment ID before relinking */
|
|
941
947
|
previousDeployment?: string;
|
|
942
948
|
/** Tags that were set/updated */
|
|
943
949
|
tags?: string[];
|