@shipstatic/types 0.3.16 → 0.3.17

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
@@ -56,8 +56,7 @@ export interface DeploymentListResponse {
56
56
  export declare const DomainStatus: {
57
57
  readonly PENDING: "pending";
58
58
  readonly PARTIAL: "partial";
59
- readonly CONFIRMED: "confirmed";
60
- readonly FAILED: "failed";
59
+ readonly SUCCESS: "success";
61
60
  };
62
61
  export type DomainStatusType = typeof DomainStatus[keyof typeof DomainStatus];
63
62
  /**
package/dist/index.js CHANGED
@@ -23,8 +23,7 @@ export const DeploymentStatus = {
23
23
  export const DomainStatus = {
24
24
  PENDING: 'pending',
25
25
  PARTIAL: 'partial',
26
- CONFIRMED: 'confirmed',
27
- FAILED: 'failed'
26
+ SUCCESS: 'success'
28
27
  };
29
28
  // =============================================================================
30
29
  // ACCOUNT TYPES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.3.16",
3
+ "version": "0.3.17",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -70,8 +70,7 @@ export interface DeploymentListResponse {
70
70
  export const DomainStatus = {
71
71
  PENDING: 'pending',
72
72
  PARTIAL: 'partial',
73
- CONFIRMED: 'confirmed',
74
- FAILED: 'failed'
73
+ SUCCESS: 'success'
75
74
  } as const;
76
75
 
77
76
  export type DomainStatusType = typeof DomainStatus[keyof typeof DomainStatus];