@remit/domain-enums 0.0.3 → 0.0.5

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.
Files changed (3) hide show
  1. package/enums.d.ts +26 -2
  2. package/enums.js +26 -2
  3. package/package.json +1 -1
package/enums.d.ts CHANGED
@@ -84,9 +84,8 @@ export declare const QuarantineFailureStage: {
84
84
  };
85
85
 
86
86
  export declare const QuarantineFailureCode: {
87
- readonly "UnterminatedMultipartBoundary": "UnterminatedMultipartBoundary";
88
87
  readonly "UnknownCharset": "UnknownCharset";
89
- readonly "TruncatedBody": "TruncatedBody"
88
+ readonly "UnreadableBody": "UnreadableBody"
90
89
  };
91
90
 
92
91
  export declare const AccountConfigState: {
@@ -116,6 +115,31 @@ export declare const SyncPhase: {
116
115
  readonly "error": "error"
117
116
  };
118
117
 
118
+ export declare const SystemUpdateCheckStatus: {
119
+ readonly "ok": "ok";
120
+ readonly "failed": "failed";
121
+ readonly "disabled": "disabled"
122
+ };
123
+
124
+ export declare const SystemUpdatePhase: {
125
+ readonly "checking": "checking";
126
+ readonly "pulling": "pulling";
127
+ readonly "snapshotting": "snapshotting";
128
+ readonly "stopping": "stopping";
129
+ readonly "starting": "starting";
130
+ readonly "verifying": "verifying";
131
+ readonly "committing": "committing";
132
+ readonly "rollingBack": "rollingBack";
133
+ readonly "recovering": "recovering"
134
+ };
135
+
136
+ export declare const SystemUpdateOutcome: {
137
+ readonly "succeeded": "succeeded";
138
+ readonly "rolledBack": "rolledBack";
139
+ readonly "rollbackFailed": "rollbackFailed";
140
+ readonly "abandoned": "abandoned"
141
+ };
142
+
119
143
  export declare const NamespaceType: {
120
144
  readonly "Personal": "personal";
121
145
  readonly "OtherUsers": "other_users";
package/enums.js CHANGED
@@ -84,9 +84,8 @@ export const QuarantineFailureStage = {
84
84
  };
85
85
 
86
86
  export const QuarantineFailureCode = {
87
- "UnterminatedMultipartBoundary": "UnterminatedMultipartBoundary",
88
87
  "UnknownCharset": "UnknownCharset",
89
- "TruncatedBody": "TruncatedBody"
88
+ "UnreadableBody": "UnreadableBody"
90
89
  };
91
90
 
92
91
  export const AccountConfigState = {
@@ -116,6 +115,31 @@ export const SyncPhase = {
116
115
  "error": "error"
117
116
  };
118
117
 
118
+ export const SystemUpdateCheckStatus = {
119
+ "ok": "ok",
120
+ "failed": "failed",
121
+ "disabled": "disabled"
122
+ };
123
+
124
+ export const SystemUpdatePhase = {
125
+ "checking": "checking",
126
+ "pulling": "pulling",
127
+ "snapshotting": "snapshotting",
128
+ "stopping": "stopping",
129
+ "starting": "starting",
130
+ "verifying": "verifying",
131
+ "committing": "committing",
132
+ "rollingBack": "rollingBack",
133
+ "recovering": "recovering"
134
+ };
135
+
136
+ export const SystemUpdateOutcome = {
137
+ "succeeded": "succeeded",
138
+ "rolledBack": "rolledBack",
139
+ "rollbackFailed": "rollbackFailed",
140
+ "abandoned": "abandoned"
141
+ };
142
+
119
143
  export const NamespaceType = {
120
144
  "Personal": "personal",
121
145
  "OtherUsers": "other_users",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/domain-enums",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",