@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 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 bound (Unix timestamp, null if never) */
87
- bound?: number;
88
- /** Total deployment bindings */
89
- bindings?: number;
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 binding for security */
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 rebinding */
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
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 bound (Unix timestamp, null if never) */
103
- bound?: number;
104
- /** Total deployment bindings */
105
- bindings?: number;
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 binding for security */
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 rebinding */
946
+ /** Previous deployment ID before relinking */
947
947
  previousDeployment?: string;
948
948
  /** Tags that were set/updated */
949
949
  tags?: string[];