@remit/domain-enums 0.0.4 → 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.
- package/enums.d.ts +25 -0
- package/enums.js +25 -0
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -115,6 +115,31 @@ export declare const SyncPhase: {
|
|
|
115
115
|
readonly "error": "error"
|
|
116
116
|
};
|
|
117
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
|
+
|
|
118
143
|
export declare const NamespaceType: {
|
|
119
144
|
readonly "Personal": "personal";
|
|
120
145
|
readonly "OtherUsers": "other_users";
|
package/enums.js
CHANGED
|
@@ -115,6 +115,31 @@ export const SyncPhase = {
|
|
|
115
115
|
"error": "error"
|
|
116
116
|
};
|
|
117
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
|
+
|
|
118
143
|
export const NamespaceType = {
|
|
119
144
|
"Personal": "personal",
|
|
120
145
|
"OtherUsers": "other_users",
|