@chevre/domain 22.9.0-alpha.65 → 22.9.0-alpha.66

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.
@@ -60,4 +60,4 @@ export declare function exportOneTransactionTasksIfExists(params: {
60
60
  endDate?: factory.sortType;
61
61
  startDate?: factory.sortType;
62
62
  };
63
- }): IExportTasksOperation<void>;
63
+ }): IExportTasksOperation<Pick<factory.transaction.ITransaction<factory.transactionType>, 'id' | 'typeOf'> | void>;
@@ -138,5 +138,6 @@ function exportOneTransactionTasksIfExists(params) {
138
138
  default:
139
139
  }
140
140
  yield repos.transaction.setTasksExportedById({ id: transaction.id });
141
+ return transaction;
141
142
  });
142
143
  }
package/package.json CHANGED
@@ -112,5 +112,5 @@
112
112
  "postversion": "git push origin --tags",
113
113
  "prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
114
114
  },
115
- "version": "22.9.0-alpha.65"
115
+ "version": "22.9.0-alpha.66"
116
116
  }