@remit/domain-enums 0.0.5 → 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 +3 -1
  2. package/enums.js +3 -1
  3. package/package.json +1 -1
package/enums.d.ts CHANGED
@@ -188,7 +188,9 @@ export declare const FilterMatchOperator: {
188
188
  export declare const FilterClauseField: {
189
189
  readonly "From": "From";
190
190
  readonly "Subject": "Subject";
191
- readonly "HasWords": "HasWords"
191
+ readonly "HasWords": "HasWords";
192
+ readonly "ListId": "ListId";
193
+ readonly "FromDomain": "FromDomain"
192
194
  };
193
195
 
194
196
  export declare const OrganizeJobState: {
package/enums.js CHANGED
@@ -188,7 +188,9 @@ export const FilterMatchOperator = {
188
188
  export const FilterClauseField = {
189
189
  "From": "From",
190
190
  "Subject": "Subject",
191
- "HasWords": "HasWords"
191
+ "HasWords": "HasWords",
192
+ "ListId": "ListId",
193
+ "FromDomain": "FromDomain"
192
194
  };
193
195
 
194
196
  export const OrganizeJobState = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/domain-enums",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",