@remit/domain-enums 0.0.6 → 0.0.7
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 +17 -12
- package/enums.js +17 -12
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -193,6 +193,18 @@ export declare const FilterClauseField: {
|
|
|
193
193
|
readonly "FromDomain": "FromDomain"
|
|
194
194
|
};
|
|
195
195
|
|
|
196
|
+
export declare const LabelColor: {
|
|
197
|
+
readonly "Default": "Default";
|
|
198
|
+
readonly "Red": "Red";
|
|
199
|
+
readonly "Orange": "Orange";
|
|
200
|
+
readonly "Yellow": "Yellow";
|
|
201
|
+
readonly "Green": "Green";
|
|
202
|
+
readonly "Teal": "Teal";
|
|
203
|
+
readonly "Blue": "Blue";
|
|
204
|
+
readonly "Purple": "Purple";
|
|
205
|
+
readonly "Gray": "Gray"
|
|
206
|
+
};
|
|
207
|
+
|
|
196
208
|
export declare const OrganizeJobState: {
|
|
197
209
|
readonly "Pending": "Pending";
|
|
198
210
|
readonly "Running": "Running";
|
|
@@ -338,6 +350,11 @@ export declare const ReferenceType: {
|
|
|
338
350
|
readonly "References": "references"
|
|
339
351
|
};
|
|
340
352
|
|
|
353
|
+
export declare const LabelAction: {
|
|
354
|
+
readonly "Apply": "Apply";
|
|
355
|
+
readonly "Remove": "Remove"
|
|
356
|
+
};
|
|
357
|
+
|
|
341
358
|
export declare const MessageSystemFlag: {
|
|
342
359
|
readonly "Seen": "\\Seen";
|
|
343
360
|
readonly "Answered": "\\Answered";
|
|
@@ -394,18 +411,6 @@ export declare const AccountSettingName: {
|
|
|
394
411
|
readonly "MailboxRole": "MailboxRole"
|
|
395
412
|
};
|
|
396
413
|
|
|
397
|
-
export declare const LabelColor: {
|
|
398
|
-
readonly "Default": "Default";
|
|
399
|
-
readonly "Red": "Red";
|
|
400
|
-
readonly "Orange": "Orange";
|
|
401
|
-
readonly "Yellow": "Yellow";
|
|
402
|
-
readonly "Green": "Green";
|
|
403
|
-
readonly "Teal": "Teal";
|
|
404
|
-
readonly "Blue": "Blue";
|
|
405
|
-
readonly "Purple": "Purple";
|
|
406
|
-
readonly "Gray": "Gray"
|
|
407
|
-
};
|
|
408
|
-
|
|
409
414
|
export declare const MessagePlacementMoveState: {
|
|
410
415
|
readonly "pending": "pending";
|
|
411
416
|
readonly "queued": "queued";
|
package/enums.js
CHANGED
|
@@ -193,6 +193,18 @@ export const FilterClauseField = {
|
|
|
193
193
|
"FromDomain": "FromDomain"
|
|
194
194
|
};
|
|
195
195
|
|
|
196
|
+
export const LabelColor = {
|
|
197
|
+
"Default": "Default",
|
|
198
|
+
"Red": "Red",
|
|
199
|
+
"Orange": "Orange",
|
|
200
|
+
"Yellow": "Yellow",
|
|
201
|
+
"Green": "Green",
|
|
202
|
+
"Teal": "Teal",
|
|
203
|
+
"Blue": "Blue",
|
|
204
|
+
"Purple": "Purple",
|
|
205
|
+
"Gray": "Gray"
|
|
206
|
+
};
|
|
207
|
+
|
|
196
208
|
export const OrganizeJobState = {
|
|
197
209
|
"Pending": "Pending",
|
|
198
210
|
"Running": "Running",
|
|
@@ -338,6 +350,11 @@ export const ReferenceType = {
|
|
|
338
350
|
"References": "references"
|
|
339
351
|
};
|
|
340
352
|
|
|
353
|
+
export const LabelAction = {
|
|
354
|
+
"Apply": "Apply",
|
|
355
|
+
"Remove": "Remove"
|
|
356
|
+
};
|
|
357
|
+
|
|
341
358
|
export const MessageSystemFlag = {
|
|
342
359
|
"Seen": "\\Seen",
|
|
343
360
|
"Answered": "\\Answered",
|
|
@@ -394,18 +411,6 @@ export const AccountSettingName = {
|
|
|
394
411
|
"MailboxRole": "MailboxRole"
|
|
395
412
|
};
|
|
396
413
|
|
|
397
|
-
export const LabelColor = {
|
|
398
|
-
"Default": "Default",
|
|
399
|
-
"Red": "Red",
|
|
400
|
-
"Orange": "Orange",
|
|
401
|
-
"Yellow": "Yellow",
|
|
402
|
-
"Green": "Green",
|
|
403
|
-
"Teal": "Teal",
|
|
404
|
-
"Blue": "Blue",
|
|
405
|
-
"Purple": "Purple",
|
|
406
|
-
"Gray": "Gray"
|
|
407
|
-
};
|
|
408
|
-
|
|
409
414
|
export const MessagePlacementMoveState = {
|
|
410
415
|
"pending": "pending",
|
|
411
416
|
"queued": "queued",
|