mobicloud-core 1.0.320 → 1.0.322
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/api/types/all.enum.d.ts +1 -0
- package/api/types/entity-transaction.d.ts +4 -0
- package/bundles/mobicloud-core-api.umd.js +1 -0
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/esm2015/api/types/all.enum.js +2 -1
- package/esm2015/api/types/entity-transaction.js +1 -1
- package/fesm2015/mobicloud-core-api.js +1 -0
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/package.json +1 -1
package/api/types/all.enum.d.ts
CHANGED
|
@@ -484,6 +484,7 @@ export declare enum EntityTransactionType {
|
|
|
484
484
|
EmailSent = "EmailSent",
|
|
485
485
|
EmailProcessed = "EmailProcessed",
|
|
486
486
|
EmailDelivered = "EmailDelivered",
|
|
487
|
+
EmailDeliverError = "EmailDeliverError",
|
|
487
488
|
EmailOpened = "EmailOpened",
|
|
488
489
|
Started = "Started",
|
|
489
490
|
Completed = "Completed",
|
|
@@ -44,4 +44,8 @@ export declare class EntityTransaction extends DomainObject {
|
|
|
44
44
|
CustomDate2?: Date | undefined;
|
|
45
45
|
ErrorWarning?: EntityErrorWarningType | undefined;
|
|
46
46
|
ErrorWarningText?: string | undefined;
|
|
47
|
+
Icon?: string | undefined;
|
|
48
|
+
Tag1?: any | undefined;
|
|
49
|
+
Tag2?: any | undefined;
|
|
50
|
+
Tag3?: any | undefined;
|
|
47
51
|
}
|
|
@@ -1510,6 +1510,7 @@
|
|
|
1510
1510
|
EntityTransactionType["EmailSent"] = "EmailSent";
|
|
1511
1511
|
EntityTransactionType["EmailProcessed"] = "EmailProcessed";
|
|
1512
1512
|
EntityTransactionType["EmailDelivered"] = "EmailDelivered";
|
|
1513
|
+
EntityTransactionType["EmailDeliverError"] = "EmailDeliverError";
|
|
1513
1514
|
EntityTransactionType["EmailOpened"] = "EmailOpened";
|
|
1514
1515
|
EntityTransactionType["Started"] = "Started";
|
|
1515
1516
|
EntityTransactionType["Completed"] = "Completed";
|