@chevre/domain 21.2.0-alpha.10 → 21.2.0-alpha.12
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.
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import * as factory from '../factory';
|
|
5
5
|
import { MongoRepository as AssetTransactionRepo } from '../repo/assetTransaction';
|
|
6
|
-
import { MongoRepository as ProjectRepo } from '../repo/project';
|
|
7
6
|
import { MongoRepository as TaskRepo } from '../repo/task';
|
|
8
7
|
import * as CancelReservationTransactionService from './assetTransaction/cancelReservation';
|
|
9
8
|
import * as MoneyTransferTransactionService from './assetTransaction/moneyTransfer';
|
|
@@ -30,7 +29,6 @@ export declare function exportTasks<T extends factory.assetTransactionType>(para
|
|
|
30
29
|
$in: T[];
|
|
31
30
|
};
|
|
32
31
|
}): (repos: {
|
|
33
|
-
project: ProjectRepo;
|
|
34
32
|
task: TaskRepo;
|
|
35
33
|
assetTransaction: AssetTransactionRepo;
|
|
36
34
|
}) => Promise<{
|
|
@@ -32,7 +32,6 @@ exports.reserve = ReserveTransactionService;
|
|
|
32
32
|
function exportTasks(params) {
|
|
33
33
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
34
34
|
const transaction = yield repos.assetTransaction.startExportTasks({
|
|
35
|
-
// project: params.project,
|
|
36
35
|
typeOf: params.typeOf,
|
|
37
36
|
status: params.status
|
|
38
37
|
});
|
package/package.json
CHANGED