mobicloud-core 1.0.319 → 1.0.321

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.
@@ -495,3 +495,9 @@ export declare enum EntityErrorWarningType {
495
495
  Warning = "Warning",
496
496
  Error = "Error"
497
497
  }
498
+ export declare enum EntityTransactionStatus {
499
+ None = "None",
500
+ Info = "Info",
501
+ Warning = "Warning",
502
+ Error = "Error"
503
+ }
@@ -1,6 +1,6 @@
1
1
  import { DocumentReference } from "./document-reference";
2
2
  import { DimensionField } from "./dimension-field";
3
- import { UserType } from "./all.enum";
3
+ import { EntityTransactionStatus, UserType } from "./all.enum";
4
4
  import { EntityTransaction } from "./entity-transaction";
5
5
  export declare class DomainObject {
6
6
  Id?: string | undefined;
@@ -35,6 +35,8 @@ export declare class DomainObjectExtension {
35
35
  Documents?: DocumentReference[] | undefined;
36
36
  DimensionFields?: DimensionField[] | undefined;
37
37
  EntityTransactions?: EntityTransaction[] | undefined;
38
+ EntityTransactionStatusText?: string | undefined;
39
+ EntityTransactionStatus?: EntityTransactionStatus | undefined;
38
40
  Created?: Date | undefined;
39
41
  CreatedByUser?: string | undefined;
40
42
  CreatedByUserType?: UserType | undefined;
@@ -10,6 +10,7 @@ export declare class EntityTransaction extends DomainObject {
10
10
  TransactionType?: EntityTransactionType | undefined;
11
11
  TransactionDate?: Date | undefined;
12
12
  TransactionUID?: string | undefined;
13
+ TransactionCorrelationUID?: string | undefined;
13
14
  Text?: string | undefined;
14
15
  ResponsDate?: Date | undefined;
15
16
  ResponsText?: string | undefined;
@@ -43,4 +44,7 @@ export declare class EntityTransaction extends DomainObject {
43
44
  CustomDate2?: Date | undefined;
44
45
  ErrorWarning?: EntityErrorWarningType | undefined;
45
46
  ErrorWarningText?: string | undefined;
47
+ Tag1?: string | undefined;
48
+ Tag2?: string | undefined;
49
+ Tag3?: string | undefined;
46
50
  }
@@ -1521,7 +1521,14 @@
1521
1521
  EntityErrorWarningType["None"] = "None";
1522
1522
  EntityErrorWarningType["Warning"] = "Warning";
1523
1523
  EntityErrorWarningType["Error"] = "Error";
1524
- })(exports.EntityErrorWarningType || (exports.EntityErrorWarningType = {}));
1524
+ })(exports.EntityErrorWarningType || (exports.EntityErrorWarningType = {}));
1525
+ exports.EntityTransactionStatus = void 0;
1526
+ (function (EntityTransactionStatus) {
1527
+ EntityTransactionStatus["None"] = "None";
1528
+ EntityTransactionStatus["Info"] = "Info";
1529
+ EntityTransactionStatus["Warning"] = "Warning";
1530
+ EntityTransactionStatus["Error"] = "Error";
1531
+ })(exports.EntityTransactionStatus || (exports.EntityTransactionStatus = {}));
1525
1532
 
1526
1533
  var DomainObject = /** @class */ (function () {
1527
1534
  function DomainObject() {