@shipstatic/types 0.4.15 → 0.4.16

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
@@ -52,11 +52,17 @@ export interface DeploymentListResponse {
52
52
  }
53
53
  /**
54
54
  * Domain status constants
55
+ *
56
+ * - PENDING: DNS not configured
57
+ * - PARTIAL: DNS partially configured
58
+ * - SUCCESS: DNS fully verified
59
+ * - PAUSED: Domain paused due to plan enforcement (billing)
55
60
  */
56
61
  export declare const DomainStatus: {
57
62
  readonly PENDING: "pending";
58
63
  readonly PARTIAL: "partial";
59
64
  readonly SUCCESS: "success";
65
+ readonly PAUSED: "paused";
60
66
  };
61
67
  export type DomainStatusType = typeof DomainStatus[keyof typeof DomainStatus];
62
68
  /**
package/dist/index.js CHANGED
@@ -19,11 +19,17 @@ export const DeploymentStatus = {
19
19
  // =============================================================================
20
20
  /**
21
21
  * Domain status constants
22
+ *
23
+ * - PENDING: DNS not configured
24
+ * - PARTIAL: DNS partially configured
25
+ * - SUCCESS: DNS fully verified
26
+ * - PAUSED: Domain paused due to plan enforcement (billing)
22
27
  */
23
28
  export const DomainStatus = {
24
29
  PENDING: 'pending',
25
30
  PARTIAL: 'partial',
26
- SUCCESS: 'success'
31
+ SUCCESS: 'success',
32
+ PAUSED: 'paused'
27
33
  };
28
34
  // =============================================================================
29
35
  // ACCOUNT TYPES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.4.15",
3
+ "version": "0.4.16",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -66,11 +66,17 @@ export interface DeploymentListResponse {
66
66
 
67
67
  /**
68
68
  * Domain status constants
69
+ *
70
+ * - PENDING: DNS not configured
71
+ * - PARTIAL: DNS partially configured
72
+ * - SUCCESS: DNS fully verified
73
+ * - PAUSED: Domain paused due to plan enforcement (billing)
69
74
  */
70
75
  export const DomainStatus = {
71
76
  PENDING: 'pending',
72
77
  PARTIAL: 'partial',
73
- SUCCESS: 'success'
78
+ SUCCESS: 'success',
79
+ PAUSED: 'paused'
74
80
  } as const;
75
81
 
76
82
  export type DomainStatusType = typeof DomainStatus[keyof typeof DomainStatus];