@shipstatic/types 0.2.5 → 0.2.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 +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
- package/src/index.ts +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -53,7 +53,8 @@ export interface DeploymentListResponse {
|
|
|
53
53
|
*/
|
|
54
54
|
export declare const AliasStatus: {
|
|
55
55
|
readonly PENDING: "pending";
|
|
56
|
-
readonly
|
|
56
|
+
readonly PARTIAL: "partial";
|
|
57
|
+
readonly CONFIRMED: "confirmed";
|
|
57
58
|
readonly FAILED: "failed";
|
|
58
59
|
};
|
|
59
60
|
export type AliasStatusType = typeof AliasStatus[keyof typeof AliasStatus];
|
package/dist/index.js
CHANGED
|
@@ -22,7 +22,8 @@ export const DeploymentStatus = {
|
|
|
22
22
|
*/
|
|
23
23
|
export const AliasStatus = {
|
|
24
24
|
PENDING: 'pending',
|
|
25
|
-
|
|
25
|
+
PARTIAL: 'partial',
|
|
26
|
+
CONFIRMED: 'confirmed',
|
|
26
27
|
FAILED: 'failed'
|
|
27
28
|
};
|
|
28
29
|
// =============================================================================
|
package/package.json
CHANGED