@yangsaiyam/helper 1.11.5 → 1.12.0
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/dist/email-history/index.d.ts +17 -0
- package/dist/email-history/index.js +6 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/src/email-history/index.ts +6 -0
- package/src/index.ts +1 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const EMAIL_HISTORY_STATUS: readonly [{
|
|
2
|
+
readonly key: 0;
|
|
3
|
+
readonly value: "Scheduled";
|
|
4
|
+
readonly i18nKey: "emailHistory.status.0";
|
|
5
|
+
}, {
|
|
6
|
+
readonly key: 1;
|
|
7
|
+
readonly value: "Delivering";
|
|
8
|
+
readonly i18nKey: "emailHistory.status.1";
|
|
9
|
+
}, {
|
|
10
|
+
readonly key: 2;
|
|
11
|
+
readonly value: "Sent";
|
|
12
|
+
readonly i18nKey: "emailHistory.status.2";
|
|
13
|
+
}, {
|
|
14
|
+
readonly key: 3;
|
|
15
|
+
readonly value: "Failed";
|
|
16
|
+
readonly i18nKey: "emailHistory.status.3";
|
|
17
|
+
}];
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export const EMAIL_HISTORY_STATUS = [
|
|
2
|
+
{ key: 0, value: "Scheduled", i18nKey: "emailHistory.status.0" },
|
|
3
|
+
{ key: 1, value: "Delivering", i18nKey: "emailHistory.status.1" },
|
|
4
|
+
{ key: 2, value: "Sent", i18nKey: "emailHistory.status.2" },
|
|
5
|
+
{ key: 3, value: "Failed", i18nKey: "emailHistory.status.3" },
|
|
6
|
+
];
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export const EMAIL_HISTORY_STATUS = [
|
|
2
|
+
{ key: 0, value: "Scheduled", i18nKey: "emailHistory.status.0" },
|
|
3
|
+
{ key: 1, value: "Delivering", i18nKey: "emailHistory.status.1" },
|
|
4
|
+
{ key: 2, value: "Sent", i18nKey: "emailHistory.status.2" },
|
|
5
|
+
{ key: 3, value: "Failed", i18nKey: "emailHistory.status.3" },
|
|
6
|
+
] as const satisfies readonly { key: number; value: string; i18nKey: string }[];
|
package/src/index.ts
CHANGED