@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 +1 -2
- package/dist/index.js +1 -2
- package/package.json +1 -1
- package/src/index.ts +1 -2
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
|
|
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
|
-
|
|
27
|
-
FAILED: 'failed'
|
|
26
|
+
SUCCESS: 'success'
|
|
28
27
|
};
|
|
29
28
|
// =============================================================================
|
|
30
29
|
// ACCOUNT TYPES
|
package/package.json
CHANGED
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
|
-
|
|
74
|
-
FAILED: 'failed'
|
|
73
|
+
SUCCESS: 'success'
|
|
75
74
|
} as const;
|
|
76
75
|
|
|
77
76
|
export type DomainStatusType = typeof DomainStatus[keyof typeof DomainStatus];
|