@remit/domain-enums 0.0.4 → 0.0.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.
Files changed (3) hide show
  1. package/enums.d.ts +28 -1
  2. package/enums.js +28 -1
  3. 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";
@@ -163,7 +188,9 @@ export declare const FilterMatchOperator: {
163
188
  export declare const FilterClauseField: {
164
189
  readonly "From": "From";
165
190
  readonly "Subject": "Subject";
166
- readonly "HasWords": "HasWords"
191
+ readonly "HasWords": "HasWords";
192
+ readonly "ListId": "ListId";
193
+ readonly "FromDomain": "FromDomain"
167
194
  };
168
195
 
169
196
  export declare const OrganizeJobState: {
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",
@@ -163,7 +188,9 @@ export const FilterMatchOperator = {
163
188
  export const FilterClauseField = {
164
189
  "From": "From",
165
190
  "Subject": "Subject",
166
- "HasWords": "HasWords"
191
+ "HasWords": "HasWords",
192
+ "ListId": "ListId",
193
+ "FromDomain": "FromDomain"
167
194
  };
168
195
 
169
196
  export const OrganizeJobState = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/domain-enums",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",