@colijnit/transaction 12.1.56 → 12.1.57

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.
@@ -11112,7 +11112,7 @@
11112
11112
  },
11113
11113
  set: function (value) {
11114
11114
  this._transaction = value;
11115
- if (this._transaction && this._transaction.transactionInfo && this._transaction.transactionInfo.uuid) {
11115
+ if (this._transaction) {
11116
11116
  if (this._transaction.transactionInfo) {
11117
11117
  this.transactionInfo = this._transaction.transactionInfo;
11118
11118
  this.isService = this._transaction.transactionInfo.transactionKind === transactionKind_enum.TransactionKind.ServiceOrder;
@@ -11126,7 +11126,9 @@
11126
11126
  if (this._transaction.lineOperationStatuses) {
11127
11127
  this.lineOperationStatuses = this._transaction.lineOperationStatuses;
11128
11128
  }
11129
- this.transactionSet();
11129
+ if (this._transaction.transactionInfo && this._transaction.transactionInfo.uuid) {
11130
+ this.transactionSet();
11131
+ }
11130
11132
  }
11131
11133
  },
11132
11134
  enumerable: false,