@remit/domain-enums 0.0.17 → 0.0.18
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 +24 -0
- package/enums.js +24 -0
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -452,6 +452,30 @@ export declare const LabelAction: {
|
|
|
452
452
|
readonly "Remove": "Remove"
|
|
453
453
|
};
|
|
454
454
|
|
|
455
|
+
export declare const CalendarSuggestionState: {
|
|
456
|
+
readonly "Pending": "Pending";
|
|
457
|
+
readonly "Accepted": "Accepted";
|
|
458
|
+
readonly "Declined": "Declined";
|
|
459
|
+
readonly "Tentative": "Tentative";
|
|
460
|
+
readonly "Dismissed": "Dismissed";
|
|
461
|
+
readonly "Superseded": "Superseded"
|
|
462
|
+
};
|
|
463
|
+
|
|
464
|
+
export declare const CalendarInviteMethod: {
|
|
465
|
+
readonly "Request": "Request";
|
|
466
|
+
readonly "Reply": "Reply";
|
|
467
|
+
readonly "Cancel": "Cancel";
|
|
468
|
+
readonly "Counter": "Counter";
|
|
469
|
+
readonly "Publish": "Publish";
|
|
470
|
+
readonly "None": "None"
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
export declare const CalendarSuggestionSource: {
|
|
474
|
+
readonly "IcalendarPart": "IcalendarPart";
|
|
475
|
+
readonly "IcalendarAttachment": "IcalendarAttachment";
|
|
476
|
+
readonly "TextHeuristic": "TextHeuristic"
|
|
477
|
+
};
|
|
478
|
+
|
|
455
479
|
export declare const MessageSystemFlag: {
|
|
456
480
|
readonly "Seen": "\\Seen";
|
|
457
481
|
readonly "Answered": "\\Answered";
|
package/enums.js
CHANGED
|
@@ -452,6 +452,30 @@ export const LabelAction = {
|
|
|
452
452
|
"Remove": "Remove"
|
|
453
453
|
};
|
|
454
454
|
|
|
455
|
+
export const CalendarSuggestionState = {
|
|
456
|
+
"Pending": "Pending",
|
|
457
|
+
"Accepted": "Accepted",
|
|
458
|
+
"Declined": "Declined",
|
|
459
|
+
"Tentative": "Tentative",
|
|
460
|
+
"Dismissed": "Dismissed",
|
|
461
|
+
"Superseded": "Superseded"
|
|
462
|
+
};
|
|
463
|
+
|
|
464
|
+
export const CalendarInviteMethod = {
|
|
465
|
+
"Request": "Request",
|
|
466
|
+
"Reply": "Reply",
|
|
467
|
+
"Cancel": "Cancel",
|
|
468
|
+
"Counter": "Counter",
|
|
469
|
+
"Publish": "Publish",
|
|
470
|
+
"None": "None"
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
export const CalendarSuggestionSource = {
|
|
474
|
+
"IcalendarPart": "IcalendarPart",
|
|
475
|
+
"IcalendarAttachment": "IcalendarAttachment",
|
|
476
|
+
"TextHeuristic": "TextHeuristic"
|
|
477
|
+
};
|
|
478
|
+
|
|
455
479
|
export const MessageSystemFlag = {
|
|
456
480
|
"Seen": "\\Seen",
|
|
457
481
|
"Answered": "\\Answered",
|