@shipstatic/types 0.4.5 → 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 +6 -6
- package/package.json +1 -1
- package/src/index.ts +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -83,10 +83,10 @@ export interface Domain {
|
|
|
83
83
|
verified?: number;
|
|
84
84
|
/** Total DNS verification attempts */
|
|
85
85
|
verifications?: number;
|
|
86
|
-
/** When deployment was last
|
|
87
|
-
|
|
88
|
-
/** Total deployment
|
|
89
|
-
|
|
86
|
+
/** When deployment was last linked (Unix timestamp, null if never) */
|
|
87
|
+
linked?: number;
|
|
88
|
+
/** Total deployment links */
|
|
89
|
+
links?: number;
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
92
|
* Response for listing domains
|
|
@@ -160,7 +160,7 @@ export interface Token {
|
|
|
160
160
|
readonly token: string;
|
|
161
161
|
/** The account this token belongs to */
|
|
162
162
|
readonly account: string;
|
|
163
|
-
/** Optional IP address
|
|
163
|
+
/** Optional IP address locking for security */
|
|
164
164
|
readonly ip?: string;
|
|
165
165
|
/** Optional array of tags for categorization and filtering (lowercase, alphanumeric with separators) */
|
|
166
166
|
tags?: string[];
|
|
@@ -621,7 +621,7 @@ export interface ActivityMeta {
|
|
|
621
621
|
isUpdate?: boolean;
|
|
622
622
|
/** Whether domain was already verified */
|
|
623
623
|
wasVerified?: boolean;
|
|
624
|
-
/** Previous deployment ID before
|
|
624
|
+
/** Previous deployment ID before relinking */
|
|
625
625
|
previousDeployment?: string;
|
|
626
626
|
/** Tags that were set/updated */
|
|
627
627
|
tags?: string[];
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -99,10 +99,10 @@ export interface Domain {
|
|
|
99
99
|
verified?: number;
|
|
100
100
|
/** Total DNS verification attempts */
|
|
101
101
|
verifications?: number;
|
|
102
|
-
/** When deployment was last
|
|
103
|
-
|
|
104
|
-
/** Total deployment
|
|
105
|
-
|
|
102
|
+
/** When deployment was last linked (Unix timestamp, null if never) */
|
|
103
|
+
linked?: number;
|
|
104
|
+
/** Total deployment links */
|
|
105
|
+
links?: number;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
/**
|
|
@@ -186,7 +186,7 @@ export interface Token {
|
|
|
186
186
|
readonly token: string;
|
|
187
187
|
/** The account this token belongs to */
|
|
188
188
|
readonly account: string;
|
|
189
|
-
/** Optional IP address
|
|
189
|
+
/** Optional IP address locking for security */
|
|
190
190
|
readonly ip?: string;
|
|
191
191
|
/** Optional array of tags for categorization and filtering (lowercase, alphanumeric with separators) */
|
|
192
192
|
tags?: string[];
|
|
@@ -943,7 +943,7 @@ export interface ActivityMeta {
|
|
|
943
943
|
isUpdate?: boolean;
|
|
944
944
|
/** Whether domain was already verified */
|
|
945
945
|
wasVerified?: boolean;
|
|
946
|
-
/** Previous deployment ID before
|
|
946
|
+
/** Previous deployment ID before relinking */
|
|
947
947
|
previousDeployment?: string;
|
|
948
948
|
/** Tags that were set/updated */
|
|
949
949
|
tags?: string[];
|