@chevre/domain 21.2.0-alpha.15 → 21.2.0-alpha.151
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/example/src/chevre/aggregateEventReservation.ts +1 -1
- package/example/src/chevre/aggregation/aggregateSystem.ts +85 -27
- package/example/src/chevre/countDelayedTasks.ts +7 -2
- package/example/src/chevre/deleteTasksByName.ts +10 -2
- package/example/src/chevre/findScreeningRoomsByBranchCode.ts +4 -3
- package/example/src/chevre/importEventsFromCOA.ts +3 -4
- package/example/src/chevre/lockStockHolder.ts +5 -2
- package/example/src/chevre/migrateOrderAdditionalProperties.ts +85 -0
- package/example/src/chevre/migrateScreeningEventSeriesVersion.ts +79 -0
- package/example/src/chevre/processPay.ts +5 -1
- package/example/src/chevre/processRegisterMembership.ts +8 -4
- package/example/src/chevre/processRegisterPaymentCard.ts +8 -4
- package/example/src/chevre/processReserve.ts +5 -2
- package/example/src/chevre/saveTasks.ts +13 -10
- package/example/src/chevre/searchAbortedTasks.ts +34 -0
- package/example/src/chevre/searchActions.ts +33 -0
- package/example/src/chevre/searchEventSeats.ts +5 -2
- package/example/src/chevre/searchHoldReservations.ts +38 -0
- package/example/src/chevre/searchPaymentServiceProviders.ts +39 -0
- package/example/src/chevre/searchPermissions.ts +54 -0
- package/example/src/chevre/searchReservationNumbersByOrderNumbers.ts +37 -1
- package/example/src/chevre/searchScreeningRooms.ts +35 -0
- package/example/src/chevre/searchSendEmailActions.ts +44 -0
- package/example/src/chevre/syncScreeningRooms.ts +22 -0
- package/example/src/chevre/syncScreeningRoomsAll.ts +44 -0
- package/example/src/chevre/task/executeTasks.ts +26 -0
- package/example/src/chevre/transaction/findCreditCard.ts +1 -1
- package/example/src/chevre/transaction/orderMembershipService.ts +1 -1
- package/example/src/chevre/transaction/processReturnOrder.ts +40 -0
- package/example/src/chevre/transaction/startExportTasks.ts +2 -1
- package/example/src/chevre/updateTransaction.ts +1 -1
- package/example/src/playOnMoment.ts +24 -0
- package/lib/chevre/credentials.d.ts +1 -0
- package/lib/chevre/credentials.js +2 -1
- package/lib/chevre/eventEmitter/assetTransaction.d.ts +21 -0
- package/lib/chevre/eventEmitter/assetTransaction.js +25 -0
- package/lib/chevre/eventEmitter/task.d.ts +2 -1
- package/lib/chevre/eventEmitter/task.js +1 -4
- package/lib/chevre/eventEmitter/transaction.d.ts +1 -1
- package/lib/chevre/eventEmitter/transaction.js +1 -4
- package/lib/chevre/eventEmitter.d.ts +2 -1
- package/lib/chevre/eventEmitter.js +3 -1
- package/lib/chevre/index.d.ts +1 -1
- package/lib/chevre/index.js +2 -2
- package/lib/chevre/repo/account.js +3 -2
- package/lib/chevre/repo/accountTransaction.d.ts +3 -1
- package/lib/chevre/repo/accountTransaction.js +3 -2
- package/lib/chevre/repo/action.d.ts +42 -2
- package/lib/chevre/repo/action.js +130 -57
- package/lib/chevre/repo/additionalProperty.js +2 -1
- package/lib/chevre/repo/aggregation.d.ts +3 -0
- package/lib/chevre/repo/aggregation.js +3 -0
- package/lib/chevre/repo/assetTransaction.d.ts +23 -8
- package/lib/chevre/repo/assetTransaction.js +253 -80
- package/lib/chevre/repo/categoryCode.d.ts +1 -1
- package/lib/chevre/repo/categoryCode.js +37 -25
- package/lib/chevre/repo/code.js +3 -2
- package/lib/chevre/repo/comment.d.ts +4 -1
- package/lib/chevre/repo/comment.js +22 -6
- package/lib/chevre/repo/confirmationNumber.d.ts +0 -1
- package/lib/chevre/repo/confirmationNumber.js +3 -15
- package/lib/chevre/repo/creativeWork.d.ts +2 -4
- package/lib/chevre/repo/creativeWork.js +35 -12
- package/lib/chevre/repo/customer.js +2 -1
- package/lib/chevre/repo/emailMessage.d.ts +1 -27
- package/lib/chevre/repo/emailMessage.js +2 -1
- package/lib/chevre/repo/event.d.ts +27 -1
- package/lib/chevre/repo/event.js +67 -33
- package/lib/chevre/repo/member.d.ts +14 -0
- package/lib/chevre/repo/member.js +31 -3
- package/lib/chevre/repo/merchantReturnPolicy.d.ts +1 -3
- package/lib/chevre/repo/merchantReturnPolicy.js +2 -1
- package/lib/chevre/repo/mongoose/schemas/account.d.ts +4 -2
- package/lib/chevre/repo/mongoose/schemas/accountTitle.d.ts +29 -3
- package/lib/chevre/repo/mongoose/schemas/accountTransaction.d.ts +31 -3
- package/lib/chevre/repo/mongoose/schemas/accountTransaction.js +1 -1
- package/lib/chevre/repo/mongoose/schemas/accountingReport.d.ts +13 -3
- package/lib/chevre/repo/mongoose/schemas/action.d.ts +43 -3
- package/lib/chevre/repo/mongoose/schemas/action.js +19 -1
- package/lib/chevre/repo/mongoose/schemas/additionalProperty.d.ts +17 -3
- package/lib/chevre/repo/mongoose/schemas/aggregation.d.ts +4 -2
- package/lib/chevre/repo/mongoose/schemas/assetTransaction.d.ts +44 -3
- package/lib/chevre/repo/mongoose/schemas/assetTransaction.js +32 -19
- package/lib/chevre/repo/mongoose/schemas/authorization.d.ts +19 -3
- package/lib/chevre/repo/mongoose/schemas/authorization.js +1 -1
- package/lib/chevre/repo/mongoose/schemas/categoryCode.d.ts +25 -3
- package/lib/chevre/repo/mongoose/schemas/comments.d.ts +27 -3
- package/lib/chevre/repo/mongoose/schemas/comments.js +1 -1
- package/lib/chevre/repo/mongoose/schemas/creativeWork.d.ts +43 -3
- package/lib/chevre/repo/mongoose/schemas/customer.d.ts +25 -3
- package/lib/chevre/repo/mongoose/schemas/emailMessages.d.ts +21 -3
- package/lib/chevre/repo/mongoose/schemas/event.d.ts +71 -3
- package/lib/chevre/repo/mongoose/schemas/holdReservation.d.ts +75 -0
- package/lib/chevre/repo/mongoose/schemas/holdReservation.js +93 -0
- package/lib/chevre/repo/mongoose/schemas/member.d.ts +13 -3
- package/lib/chevre/repo/mongoose/schemas/merchantReturnPolicy.d.ts +21 -3
- package/lib/chevre/repo/mongoose/schemas/offer.d.ts +65 -3
- package/lib/chevre/repo/mongoose/schemas/offerCatalog.d.ts +27 -3
- package/lib/chevre/repo/mongoose/schemas/offerItemCondition.d.ts +74 -0
- package/lib/chevre/repo/mongoose/schemas/offerItemCondition.js +45 -0
- package/lib/chevre/repo/mongoose/schemas/order.d.ts +51 -3
- package/lib/chevre/repo/mongoose/schemas/order.js +1 -1
- package/lib/chevre/repo/mongoose/schemas/ownershipInfo.d.ts +25 -3
- package/lib/chevre/repo/mongoose/schemas/ownershipInfo.js +1 -1
- package/lib/chevre/repo/mongoose/schemas/place.d.ts +55 -3
- package/lib/chevre/repo/mongoose/schemas/place.js +16 -1
- package/lib/chevre/repo/mongoose/schemas/priceSpecification.d.ts +29 -3
- package/lib/chevre/repo/mongoose/schemas/product.d.ts +31 -3
- package/lib/chevre/repo/mongoose/schemas/product.js +6 -0
- package/lib/chevre/repo/mongoose/schemas/project.d.ts +23 -3
- package/lib/chevre/repo/mongoose/schemas/reservation.d.ts +63 -5
- package/lib/chevre/repo/mongoose/schemas/reservation.js +1 -1
- package/lib/chevre/repo/mongoose/schemas/role.d.ts +11 -3
- package/lib/chevre/repo/mongoose/schemas/seller.d.ts +31 -3
- package/lib/chevre/repo/mongoose/schemas/seller.js +6 -0
- package/lib/chevre/repo/mongoose/schemas/serviceOutput.d.ts +11 -3
- package/lib/chevre/repo/mongoose/schemas/serviceOutput.js +1 -1
- package/lib/chevre/repo/mongoose/schemas/task.d.ts +30 -3
- package/lib/chevre/repo/mongoose/schemas/task.js +2 -1
- package/lib/chevre/repo/mongoose/schemas/telemetry.d.ts +21 -3
- package/lib/chevre/repo/mongoose/schemas/transaction.d.ts +40 -3
- package/lib/chevre/repo/mongoose/schemas/transaction.js +2 -1
- package/lib/chevre/repo/mongoose/schemas/trip.d.ts +11 -3
- package/lib/chevre/repo/offer.js +3 -2
- package/lib/chevre/repo/offerCatalog.js +0 -27
- package/lib/chevre/repo/offerItemCondition.d.ts +22 -0
- package/lib/chevre/repo/offerItemCondition.js +121 -0
- package/lib/chevre/repo/order.d.ts +55 -3
- package/lib/chevre/repo/order.js +62 -10
- package/lib/chevre/repo/ownershipInfo.js +2 -7
- package/lib/chevre/repo/place.d.ts +189 -27
- package/lib/chevre/repo/place.js +1696 -702
- package/lib/chevre/repo/priceSpecification.js +3 -2
- package/lib/chevre/repo/product.d.ts +27 -3
- package/lib/chevre/repo/product.js +142 -5
- package/lib/chevre/repo/project.js +2 -1
- package/lib/chevre/repo/reservation.d.ts +20 -4
- package/lib/chevre/repo/reservation.js +40 -59
- package/lib/chevre/repo/role.d.ts +7 -0
- package/lib/chevre/repo/role.js +39 -2
- package/lib/chevre/repo/seller.d.ts +1 -1
- package/lib/chevre/repo/seller.js +44 -23
- package/lib/chevre/repo/serviceOutput.js +2 -1
- package/lib/chevre/repo/stockHolder.d.ts +143 -7
- package/lib/chevre/repo/stockHolder.js +622 -104
- package/lib/chevre/repo/task.d.ts +42 -2
- package/lib/chevre/repo/task.js +68 -20
- package/lib/chevre/repo/transaction.d.ts +21 -2
- package/lib/chevre/repo/transaction.js +160 -48
- package/lib/chevre/repo/trip.js +2 -1
- package/lib/chevre/repository.d.ts +5 -2
- package/lib/chevre/repository.js +8 -4
- package/lib/chevre/service/aggregation/event/aggregateScreeningEvent.js +18 -8
- package/lib/chevre/service/aggregation/event/aggregateUseActionsOnEvent.js +19 -8
- package/lib/chevre/service/aggregation/system.d.ts +110 -23
- package/lib/chevre/service/aggregation/system.js +213 -91
- package/lib/chevre/service/assetTransaction/cancelReservation.js +1 -28
- package/lib/chevre/service/assetTransaction/moneyTransfer.js +2 -24
- package/lib/chevre/service/assetTransaction/pay/account/validation.js +1 -1
- package/lib/chevre/service/assetTransaction/pay/potentialActions.js +17 -1
- package/lib/chevre/service/assetTransaction/pay.d.ts +5 -1
- package/lib/chevre/service/assetTransaction/pay.js +20 -34
- package/lib/chevre/service/assetTransaction/refund.js +2 -24
- package/lib/chevre/service/assetTransaction/registerService.js +1 -25
- package/lib/chevre/service/assetTransaction/reserve/factory.d.ts +15 -5
- package/lib/chevre/service/assetTransaction/reserve/factory.js +122 -58
- package/lib/chevre/service/assetTransaction/reserve.d.ts +10 -1
- package/lib/chevre/service/assetTransaction/reserve.js +93 -70
- package/lib/chevre/service/assetTransaction.d.ts +6 -0
- package/lib/chevre/service/assetTransaction.js +9 -4
- package/lib/chevre/service/event.d.ts +3 -0
- package/lib/chevre/service/event.js +55 -22
- package/lib/chevre/service/iam.d.ts +6 -2
- package/lib/chevre/service/iam.js +23 -9
- package/lib/chevre/service/notification/factory.js +2 -2
- package/lib/chevre/service/notification.d.ts +3 -1
- package/lib/chevre/service/notification.js +41 -7
- package/lib/chevre/service/offer/event/authorize.d.ts +3 -0
- package/lib/chevre/service/offer/event/authorize.js +8 -2
- package/lib/chevre/service/offer/event/factory.d.ts +3 -0
- package/lib/chevre/service/offer/event/factory.js +16 -5
- package/lib/chevre/service/offer/event/importFromCOA.js +2 -2
- package/lib/chevre/service/offer/event/voidTransaction.d.ts +2 -0
- package/lib/chevre/service/offer/event/voidTransaction.js +17 -1
- package/lib/chevre/service/offer/eventServiceByCOA.js +7 -9
- package/lib/chevre/service/offer/product.js +2 -2
- package/lib/chevre/service/offer.d.ts +16 -8
- package/lib/chevre/service/offer.js +72 -9
- package/lib/chevre/service/order/deleteOrder.d.ts +3 -1
- package/lib/chevre/service/order/deleteOrder.js +8 -8
- package/lib/chevre/service/order/onOrderStatusChanged/factory.d.ts +5 -2
- package/lib/chevre/service/order/onOrderStatusChanged/factory.js +41 -81
- package/lib/chevre/service/order/onOrderStatusChanged.js +1 -3
- package/lib/chevre/service/order/onOrderUpdated.d.ts +16 -0
- package/lib/chevre/service/order/onOrderUpdated.js +22 -0
- package/lib/chevre/service/order/placeOrder.d.ts +1 -0
- package/lib/chevre/service/order/placeOrder.js +41 -24
- package/lib/chevre/service/order/returnOrder.d.ts +1 -0
- package/lib/chevre/service/order/returnOrder.js +7 -12
- package/lib/chevre/service/order/sendOrder.d.ts +1 -0
- package/lib/chevre/service/order/sendOrder.js +7 -10
- package/lib/chevre/service/order.d.ts +2 -1
- package/lib/chevre/service/order.js +3 -1
- package/lib/chevre/service/payment/any/onPaid.js +1 -1
- package/lib/chevre/service/payment/any/onRefund.js +1 -1
- package/lib/chevre/service/payment/any.d.ts +9 -5
- package/lib/chevre/service/payment/any.js +80 -18
- package/lib/chevre/service/payment/creditCard.d.ts +1 -1
- package/lib/chevre/service/payment/creditCard.js +23 -17
- package/lib/chevre/service/payment/movieTicket/checkByIdentifier.d.ts +8 -7
- package/lib/chevre/service/payment/movieTicket/factory.d.ts +1 -1
- package/lib/chevre/service/payment/movieTicket/getCredentials.d.ts +1 -1
- package/lib/chevre/service/payment/movieTicket/getCredentials.js +1 -1
- package/lib/chevre/service/payment/movieTicket/validation.d.ts +6 -6
- package/lib/chevre/service/payment/movieTicket/validation.js +65 -37
- package/lib/chevre/service/payment/movieTicket.d.ts +2 -2
- package/lib/chevre/service/payment/movieTicket.js +7 -6
- package/lib/chevre/service/product.js +1 -5
- package/lib/chevre/service/report/telemetry.d.ts +0 -11
- package/lib/chevre/service/report/telemetry.js +21 -24
- package/lib/chevre/service/reserve/cancelReservation.d.ts +5 -3
- package/lib/chevre/service/reserve/cancelReservation.js +162 -142
- package/lib/chevre/service/reserve/checkInReservation.d.ts +9 -4
- package/lib/chevre/service/reserve/checkInReservation.js +77 -3
- package/lib/chevre/service/reserve/confirmReservation.d.ts +7 -4
- package/lib/chevre/service/reserve/confirmReservation.js +133 -58
- package/lib/chevre/service/reserve/factory.d.ts +1 -1
- package/lib/chevre/service/reserve/potentialActions/onReservationCanceled.d.ts +17 -5
- package/lib/chevre/service/reserve/potentialActions/onReservationCanceled.js +26 -24
- package/lib/chevre/service/reserve/potentialActions/onReservationCheckedIn.js +2 -3
- package/lib/chevre/service/reserve/potentialActions/onReservationConfirmed.js +2 -31
- package/lib/chevre/service/reserve/potentialActions/onReservationUsed.js +2 -3
- package/lib/chevre/service/reserve/useReservation.d.ts +7 -3
- package/lib/chevre/service/reserve/useReservation.js +61 -71
- package/lib/chevre/service/reserve/verifyToken4reservation.d.ts +15 -0
- package/lib/chevre/service/reserve/verifyToken4reservation.js +56 -0
- package/lib/chevre/service/reserve.d.ts +3 -2
- package/lib/chevre/service/reserve.js +4 -2
- package/lib/chevre/service/task/aggregateScreeningEvent.js +1 -1
- package/lib/chevre/service/task/cancelPendingReservation.js +6 -2
- package/lib/chevre/service/task/cancelReservation.js +1 -1
- package/lib/chevre/service/task/confirmRegisterServiceTransaction.js +1 -1
- package/lib/chevre/service/task/deleteTransaction.js +10 -8
- package/lib/chevre/service/task/importOffersFromCOA.js +4 -0
- package/lib/chevre/service/task/onAuthorizationCreated.d.ts +7 -0
- package/lib/chevre/service/task/onAuthorizationCreated.js +108 -0
- package/lib/chevre/service/task/onEventChanged.d.ts +7 -0
- package/lib/chevre/service/task/{deleteOrder.js → onEventChanged.js} +8 -14
- package/lib/chevre/service/task/onResourceUpdated.d.ts +10 -0
- package/lib/chevre/service/task/onResourceUpdated.js +418 -0
- package/lib/chevre/service/task/placeOrder.js +1 -1
- package/lib/chevre/service/task/reserve.js +10 -7
- package/lib/chevre/service/task/returnOrder.js +1 -1
- package/lib/chevre/service/task/returnPayTransaction.js +2 -12
- package/lib/chevre/service/task/sendOrder.js +1 -1
- package/lib/chevre/service/task/syncScreeningRooms.d.ts +7 -0
- package/lib/chevre/service/task/syncScreeningRooms.js +24 -0
- package/lib/chevre/service/task/useReservation.d.ts +7 -0
- package/lib/chevre/service/task/useReservation.js +36 -0
- package/lib/chevre/service/task/voidReserveTransaction.js +4 -2
- package/lib/chevre/service/task.d.ts +6 -0
- package/lib/chevre/service/task.js +22 -4
- package/lib/chevre/service/transaction/deleteTransaction.d.ts +21 -0
- package/lib/chevre/service/transaction/deleteTransaction.js +232 -0
- package/lib/chevre/service/transaction/moneyTransfer/exportTasks/factory.js +11 -1
- package/lib/chevre/service/transaction/moneyTransfer/factory.d.ts +1 -1
- package/lib/chevre/service/transaction/moneyTransfer/factory.js +3 -1
- package/lib/chevre/service/transaction/moneyTransfer/potentialActions.d.ts +1 -0
- package/lib/chevre/service/transaction/moneyTransfer/potentialActions.js +1 -1
- package/lib/chevre/service/transaction/moneyTransfer.js +10 -13
- package/lib/chevre/service/transaction/orderProgramMembership/findCreditCard.js +1 -1
- package/lib/chevre/service/transaction/orderProgramMembership/findPaymentCardPermit.js +1 -1
- package/lib/chevre/service/transaction/orderProgramMembership.js +7 -3
- package/lib/chevre/service/transaction/placeOrder/exportTasks/factory.js +42 -30
- package/lib/chevre/service/transaction/placeOrder.js +1 -5
- package/lib/chevre/service/transaction/placeOrderInProgress/factory.js +1 -1
- package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/moneyTransfer.d.ts +1 -0
- package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/moneyTransfer.js +1 -1
- package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/registerService.d.ts +1 -0
- package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/registerService.js +1 -1
- package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions.d.ts +1 -0
- package/lib/chevre/service/transaction/placeOrderInProgress/result/acceptedOffers.d.ts +3 -0
- package/lib/chevre/service/transaction/placeOrderInProgress/result/acceptedOffers.js +7 -3
- package/lib/chevre/service/transaction/placeOrderInProgress/result.d.ts +1 -0
- package/lib/chevre/service/transaction/placeOrderInProgress/result.js +2 -2
- package/lib/chevre/service/transaction/placeOrderInProgress/validation/validateMovieTicket.d.ts +1 -1
- package/lib/chevre/service/transaction/placeOrderInProgress/validation/validateMovieTicket.js +2 -2
- package/lib/chevre/service/transaction/placeOrderInProgress/validation.d.ts +2 -1
- package/lib/chevre/service/transaction/placeOrderInProgress/validation.js +23 -17
- package/lib/chevre/service/transaction/placeOrderInProgress.d.ts +0 -3
- package/lib/chevre/service/transaction/placeOrderInProgress.js +28 -15
- package/lib/chevre/service/transaction/returnOrder/exportTasks/factory.js +10 -1
- package/lib/chevre/service/transaction/returnOrder/potentialActions/returnPaymentMethod.js +25 -17
- package/lib/chevre/service/transaction/returnOrder.d.ts +4 -0
- package/lib/chevre/service/transaction/returnOrder.js +228 -36
- package/lib/chevre/service/transaction.d.ts +7 -13
- package/lib/chevre/service/transaction.js +12 -139
- package/lib/chevre/settings.d.ts +15 -2
- package/lib/chevre/settings.js +58 -7
- package/package.json +5 -5
- package/example/src/chevre/createManyEventsIfNotExist.ts +0 -205
- package/example/src/chevre/eventCatalog2eventService.ts +0 -123
- package/example/src/chevre/migrateMoneyTransferPendingTransactionIdentifier.ts +0 -96
- package/example/src/chevre/migrateMovieAdditionalProperties.ts +0 -98
- package/example/src/chevre/migrateStockHolderKeys.ts +0 -89
- package/lib/chevre/service/task/deleteAssetTransaction.d.ts +0 -12
- package/lib/chevre/service/task/deleteAssetTransaction.js +0 -65
- package/lib/chevre/service/task/deleteOrder.d.ts +0 -6
|
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.aggregateUseAction = exports.aggregateTask = exports.aggregateReserveTransaction = exports.aggregatePlaceOrder = exports.aggregatePayTransaction = exports.aggregatePayMovieTicketAction = exports.aggregateEvent = exports.aggregateCheckMovieTicketAction = exports.aggregateAuthorizePaymentAction = exports.aggregateAuthorizeOrderAction = exports.aggregateAuthorizeEventServiceOfferAction = void 0;
|
|
12
|
+
exports.aggregateUseAction = exports.aggregateTask = exports.aggregateReserveTransaction = exports.aggregateReserveAction = exports.aggregatePlaceOrder = exports.aggregatePayTransaction = exports.aggregatePayMovieTicketAction = exports.aggregateOrderAction = exports.aggregateEvent = exports.aggregateCheckMovieTicketAction = exports.aggregateCancelReservationAction = exports.aggregateAuthorizePaymentAction = exports.aggregateAuthorizeOrderAction = exports.aggregateAuthorizeEventServiceOfferAction = void 0;
|
|
13
13
|
const createDebug = require("debug");
|
|
14
14
|
const moment = require("moment-timezone");
|
|
15
15
|
const factory = require("../../factory");
|
|
@@ -19,22 +19,22 @@ function aggregateEvent(params) {
|
|
|
19
19
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
20
20
|
var _a;
|
|
21
21
|
const aggregateDate = new Date();
|
|
22
|
-
const aggregateDuration = moment.duration(1,
|
|
22
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
23
23
|
.toISOString();
|
|
24
24
|
let i = -1;
|
|
25
|
-
while (i < params.
|
|
25
|
+
while (i < params.aggregationCount) {
|
|
26
26
|
i += 1;
|
|
27
|
-
const startFrom = moment()
|
|
27
|
+
const startFrom = moment(aggregateDate)
|
|
28
28
|
.utc()
|
|
29
29
|
// .tz('Asia/Tokyo')
|
|
30
|
-
.add(-i,
|
|
31
|
-
.startOf(
|
|
30
|
+
.add(-i, params.aggregateDurationUnit)
|
|
31
|
+
.startOf(params.aggregateDurationUnit)
|
|
32
32
|
.toDate();
|
|
33
|
-
const startThrough = moment()
|
|
33
|
+
const startThrough = moment(aggregateDate)
|
|
34
34
|
.utc()
|
|
35
35
|
// .tz('Asia/Tokyo')
|
|
36
|
-
.add(-i,
|
|
37
|
-
.endOf(
|
|
36
|
+
.add(-i, params.aggregateDurationUnit)
|
|
37
|
+
.endOf(params.aggregateDurationUnit)
|
|
38
38
|
.toDate();
|
|
39
39
|
const aggregateResult = yield repos.event.aggregateEvent({
|
|
40
40
|
project: { id: { $ne: params.excludedProjectId } },
|
|
@@ -45,6 +45,7 @@ function aggregateEvent(params) {
|
|
|
45
45
|
debug('aggregateEvent:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation.percentilesRemainingCapacityRate, startFrom);
|
|
46
46
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateEvent, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
47
47
|
}
|
|
48
|
+
return { aggregationCount: i, aggregateDuration };
|
|
48
49
|
});
|
|
49
50
|
}
|
|
50
51
|
exports.aggregateEvent = aggregateEvent;
|
|
@@ -55,22 +56,22 @@ function aggregatePlaceOrder(params) {
|
|
|
55
56
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
56
57
|
var _a, _b;
|
|
57
58
|
const aggregateDate = new Date();
|
|
58
|
-
const aggregateDuration = moment.duration(1,
|
|
59
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
59
60
|
.toISOString();
|
|
60
61
|
let i = -1;
|
|
61
|
-
while (i < params.
|
|
62
|
+
while (i < params.aggregationCount) {
|
|
62
63
|
i += 1;
|
|
63
|
-
const startFrom = moment()
|
|
64
|
+
const startFrom = moment(aggregateDate)
|
|
64
65
|
.utc()
|
|
65
66
|
// .tz('Asia/Tokyo')
|
|
66
|
-
.add(-i,
|
|
67
|
-
.startOf(
|
|
67
|
+
.add(-i, params.aggregateDurationUnit)
|
|
68
|
+
.startOf(params.aggregateDurationUnit)
|
|
68
69
|
.toDate();
|
|
69
|
-
const startThrough = moment()
|
|
70
|
+
const startThrough = moment(aggregateDate)
|
|
70
71
|
.utc()
|
|
71
72
|
// .tz('Asia/Tokyo')
|
|
72
|
-
.add(-i,
|
|
73
|
-
.endOf(
|
|
73
|
+
.add(-i, params.aggregateDurationUnit)
|
|
74
|
+
.endOf(params.aggregateDurationUnit)
|
|
74
75
|
.toDate();
|
|
75
76
|
const aggregateResult = yield repos.transaction.aggregatePlaceOrder({
|
|
76
77
|
project: { id: { $ne: params.excludedProjectId } },
|
|
@@ -98,6 +99,7 @@ function aggregatePlaceOrder(params) {
|
|
|
98
99
|
}
|
|
99
100
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregatePlaceOrder, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate, aggregationByClient: aggregateResultsByClientId }, aggregateResult));
|
|
100
101
|
}
|
|
102
|
+
return { aggregationCount: i, aggregateDuration };
|
|
101
103
|
});
|
|
102
104
|
}
|
|
103
105
|
exports.aggregatePlaceOrder = aggregatePlaceOrder;
|
|
@@ -108,22 +110,22 @@ function aggregateAuthorizeEventServiceOfferAction(params) {
|
|
|
108
110
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
109
111
|
var _a;
|
|
110
112
|
const aggregateDate = new Date();
|
|
111
|
-
const aggregateDuration = moment.duration(1,
|
|
113
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
112
114
|
.toISOString();
|
|
113
115
|
let i = -1;
|
|
114
|
-
while (i < params.
|
|
116
|
+
while (i < params.aggregationCount) {
|
|
115
117
|
i += 1;
|
|
116
|
-
const startFrom = moment()
|
|
118
|
+
const startFrom = moment(aggregateDate)
|
|
117
119
|
.utc()
|
|
118
120
|
// .tz('Asia/Tokyo')
|
|
119
|
-
.add(-i,
|
|
120
|
-
.startOf(
|
|
121
|
+
.add(-i, params.aggregateDurationUnit)
|
|
122
|
+
.startOf(params.aggregateDurationUnit)
|
|
121
123
|
.toDate();
|
|
122
|
-
const startThrough = moment()
|
|
124
|
+
const startThrough = moment(aggregateDate)
|
|
123
125
|
.utc()
|
|
124
126
|
// .tz('Asia/Tokyo')
|
|
125
|
-
.add(-i,
|
|
126
|
-
.endOf(
|
|
127
|
+
.add(-i, params.aggregateDurationUnit)
|
|
128
|
+
.endOf(params.aggregateDurationUnit)
|
|
127
129
|
.toDate();
|
|
128
130
|
const aggregateResult = yield repos.action.aggregateAuthorizeEventServiceOfferAction({
|
|
129
131
|
project: { id: { $ne: params.excludedProjectId } },
|
|
@@ -134,6 +136,7 @@ function aggregateAuthorizeEventServiceOfferAction(params) {
|
|
|
134
136
|
debug('aggregateAuthorizeEventServiceOfferAction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation.percentilesDuration, startFrom);
|
|
135
137
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateAuthorizeEventServiceOfferAction, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
136
138
|
}
|
|
139
|
+
return { aggregationCount: i, aggregateDuration };
|
|
137
140
|
});
|
|
138
141
|
}
|
|
139
142
|
exports.aggregateAuthorizeEventServiceOfferAction = aggregateAuthorizeEventServiceOfferAction;
|
|
@@ -144,22 +147,22 @@ function aggregateAuthorizePaymentAction(params) {
|
|
|
144
147
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
145
148
|
var _a;
|
|
146
149
|
const aggregateDate = new Date();
|
|
147
|
-
const aggregateDuration = moment.duration(1,
|
|
150
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
148
151
|
.toISOString();
|
|
149
152
|
let i = -1;
|
|
150
|
-
while (i < params.
|
|
153
|
+
while (i < params.aggregationCount) {
|
|
151
154
|
i += 1;
|
|
152
|
-
const startFrom = moment()
|
|
155
|
+
const startFrom = moment(aggregateDate)
|
|
153
156
|
.utc()
|
|
154
157
|
// .tz('Asia/Tokyo')
|
|
155
|
-
.add(-i,
|
|
156
|
-
.startOf(
|
|
158
|
+
.add(-i, params.aggregateDurationUnit)
|
|
159
|
+
.startOf(params.aggregateDurationUnit)
|
|
157
160
|
.toDate();
|
|
158
|
-
const startThrough = moment()
|
|
161
|
+
const startThrough = moment(aggregateDate)
|
|
159
162
|
.utc()
|
|
160
163
|
// .tz('Asia/Tokyo')
|
|
161
|
-
.add(-i,
|
|
162
|
-
.endOf(
|
|
164
|
+
.add(-i, params.aggregateDurationUnit)
|
|
165
|
+
.endOf(params.aggregateDurationUnit)
|
|
163
166
|
.toDate();
|
|
164
167
|
const aggregateResult = yield repos.action.aggregateAuthorizePaymentAction({
|
|
165
168
|
project: { id: { $ne: params.excludedProjectId } },
|
|
@@ -170,6 +173,7 @@ function aggregateAuthorizePaymentAction(params) {
|
|
|
170
173
|
debug('aggregateAuthorizePaymentAction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation.percentilesDuration, startFrom);
|
|
171
174
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateAuthorizePaymentAction, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
172
175
|
}
|
|
176
|
+
return { aggregationCount: i, aggregateDuration };
|
|
173
177
|
});
|
|
174
178
|
}
|
|
175
179
|
exports.aggregateAuthorizePaymentAction = aggregateAuthorizePaymentAction;
|
|
@@ -177,22 +181,22 @@ function aggregateAuthorizeOrderAction(params) {
|
|
|
177
181
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
178
182
|
var _a;
|
|
179
183
|
const aggregateDate = new Date();
|
|
180
|
-
const aggregateDuration = moment.duration(1,
|
|
184
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
181
185
|
.toISOString();
|
|
182
186
|
let i = -1;
|
|
183
|
-
while (i < params.
|
|
187
|
+
while (i < params.aggregationCount) {
|
|
184
188
|
i += 1;
|
|
185
|
-
const startFrom = moment()
|
|
189
|
+
const startFrom = moment(aggregateDate)
|
|
186
190
|
.utc()
|
|
187
191
|
// .tz('Asia/Tokyo')
|
|
188
|
-
.add(-i,
|
|
189
|
-
.startOf(
|
|
192
|
+
.add(-i, params.aggregateDurationUnit)
|
|
193
|
+
.startOf(params.aggregateDurationUnit)
|
|
190
194
|
.toDate();
|
|
191
|
-
const startThrough = moment()
|
|
195
|
+
const startThrough = moment(aggregateDate)
|
|
192
196
|
.utc()
|
|
193
197
|
// .tz('Asia/Tokyo')
|
|
194
|
-
.add(-i,
|
|
195
|
-
.endOf(
|
|
198
|
+
.add(-i, params.aggregateDurationUnit)
|
|
199
|
+
.endOf(params.aggregateDurationUnit)
|
|
196
200
|
.toDate();
|
|
197
201
|
const aggregateResult = yield repos.action.aggregateAuthorizeOrderAction({
|
|
198
202
|
project: { id: { $ne: params.excludedProjectId } },
|
|
@@ -203,6 +207,7 @@ function aggregateAuthorizeOrderAction(params) {
|
|
|
203
207
|
debug('aggregateAuthorizeOrderAction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation.percentilesDuration, startFrom);
|
|
204
208
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateAuthorizeOrderAction, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
205
209
|
}
|
|
210
|
+
return { aggregationCount: i, aggregateDuration };
|
|
206
211
|
});
|
|
207
212
|
}
|
|
208
213
|
exports.aggregateAuthorizeOrderAction = aggregateAuthorizeOrderAction;
|
|
@@ -213,24 +218,24 @@ function aggregateUseAction(params) {
|
|
|
213
218
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
214
219
|
var _a;
|
|
215
220
|
const aggregateDate = new Date();
|
|
216
|
-
const aggregateDuration = moment.duration(1,
|
|
221
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
217
222
|
.toISOString();
|
|
218
223
|
let i = -1;
|
|
219
|
-
while (i < params.
|
|
224
|
+
while (i < params.aggregationCount) {
|
|
220
225
|
i += 1;
|
|
221
|
-
const startFrom = moment()
|
|
226
|
+
const startFrom = moment(aggregateDate)
|
|
222
227
|
.utc()
|
|
223
228
|
// .tz('Asia/Tokyo')
|
|
224
|
-
.add(-i,
|
|
225
|
-
.startOf(
|
|
229
|
+
.add(-i, params.aggregateDurationUnit)
|
|
230
|
+
.startOf(params.aggregateDurationUnit)
|
|
226
231
|
.toDate();
|
|
227
|
-
const startThrough = moment()
|
|
232
|
+
const startThrough = moment(aggregateDate)
|
|
228
233
|
.utc()
|
|
229
234
|
// .tz('Asia/Tokyo')
|
|
230
|
-
.add(-i,
|
|
231
|
-
.endOf(
|
|
235
|
+
.add(-i, params.aggregateDurationUnit)
|
|
236
|
+
.endOf(params.aggregateDurationUnit)
|
|
232
237
|
.toDate();
|
|
233
|
-
const aggregateResult = yield repos.action.
|
|
238
|
+
const aggregateResult = yield repos.action.aggregateByTypeOf({
|
|
234
239
|
project: { id: { $ne: params.excludedProjectId } },
|
|
235
240
|
startFrom,
|
|
236
241
|
startThrough,
|
|
@@ -239,29 +244,140 @@ function aggregateUseAction(params) {
|
|
|
239
244
|
debug('aggregateUseAction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation.percentilesDuration, startFrom);
|
|
240
245
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateUseAction, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
241
246
|
}
|
|
247
|
+
return { aggregationCount: i, aggregateDuration };
|
|
242
248
|
});
|
|
243
249
|
}
|
|
244
250
|
exports.aggregateUseAction = aggregateUseAction;
|
|
251
|
+
/**
|
|
252
|
+
* 予約アクション集計
|
|
253
|
+
*/
|
|
254
|
+
function aggregateReserveAction(params) {
|
|
255
|
+
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
256
|
+
var _a;
|
|
257
|
+
const aggregateDate = new Date();
|
|
258
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
259
|
+
.toISOString();
|
|
260
|
+
let i = -1;
|
|
261
|
+
while (i < params.aggregationCount) {
|
|
262
|
+
i += 1;
|
|
263
|
+
const startFrom = moment(aggregateDate)
|
|
264
|
+
.utc()
|
|
265
|
+
// .tz('Asia/Tokyo')
|
|
266
|
+
.add(-i, params.aggregateDurationUnit)
|
|
267
|
+
.startOf(params.aggregateDurationUnit)
|
|
268
|
+
.toDate();
|
|
269
|
+
const startThrough = moment(aggregateDate)
|
|
270
|
+
.utc()
|
|
271
|
+
// .tz('Asia/Tokyo')
|
|
272
|
+
.add(-i, params.aggregateDurationUnit)
|
|
273
|
+
.endOf(params.aggregateDurationUnit)
|
|
274
|
+
.toDate();
|
|
275
|
+
const aggregateResult = yield repos.action.aggregateByTypeOf({
|
|
276
|
+
project: { id: { $ne: params.excludedProjectId } },
|
|
277
|
+
startFrom,
|
|
278
|
+
startThrough,
|
|
279
|
+
typeOf: factory.actionType.ReserveAction
|
|
280
|
+
});
|
|
281
|
+
debug('aggregateReserveAction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation.percentilesDuration, startFrom);
|
|
282
|
+
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateReserveAction, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
283
|
+
}
|
|
284
|
+
return { aggregationCount: i, aggregateDuration };
|
|
285
|
+
});
|
|
286
|
+
}
|
|
287
|
+
exports.aggregateReserveAction = aggregateReserveAction;
|
|
288
|
+
/**
|
|
289
|
+
* 注文アクション集計
|
|
290
|
+
*/
|
|
291
|
+
function aggregateOrderAction(params) {
|
|
292
|
+
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
293
|
+
var _a;
|
|
294
|
+
const aggregateDate = new Date();
|
|
295
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
296
|
+
.toISOString();
|
|
297
|
+
let i = -1;
|
|
298
|
+
while (i < params.aggregationCount) {
|
|
299
|
+
i += 1;
|
|
300
|
+
const startFrom = moment(aggregateDate)
|
|
301
|
+
.utc()
|
|
302
|
+
// .tz('Asia/Tokyo')
|
|
303
|
+
.add(-i, params.aggregateDurationUnit)
|
|
304
|
+
.startOf(params.aggregateDurationUnit)
|
|
305
|
+
.toDate();
|
|
306
|
+
const startThrough = moment(aggregateDate)
|
|
307
|
+
.utc()
|
|
308
|
+
// .tz('Asia/Tokyo')
|
|
309
|
+
.add(-i, params.aggregateDurationUnit)
|
|
310
|
+
.endOf(params.aggregateDurationUnit)
|
|
311
|
+
.toDate();
|
|
312
|
+
const aggregateResult = yield repos.action.aggregateByTypeOf({
|
|
313
|
+
project: { id: { $ne: params.excludedProjectId } },
|
|
314
|
+
startFrom,
|
|
315
|
+
startThrough,
|
|
316
|
+
typeOf: factory.actionType.OrderAction
|
|
317
|
+
});
|
|
318
|
+
debug('aggregateOrderAction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation.percentilesDuration, startFrom);
|
|
319
|
+
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateOrderAction, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
320
|
+
}
|
|
321
|
+
return { aggregationCount: i, aggregateDuration };
|
|
322
|
+
});
|
|
323
|
+
}
|
|
324
|
+
exports.aggregateOrderAction = aggregateOrderAction;
|
|
325
|
+
/**
|
|
326
|
+
* 予約取消アクション集計
|
|
327
|
+
*/
|
|
328
|
+
function aggregateCancelReservationAction(params) {
|
|
329
|
+
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
330
|
+
var _a;
|
|
331
|
+
const aggregateDate = new Date();
|
|
332
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
333
|
+
.toISOString();
|
|
334
|
+
let i = -1;
|
|
335
|
+
while (i < params.aggregationCount) {
|
|
336
|
+
i += 1;
|
|
337
|
+
const startFrom = moment(aggregateDate)
|
|
338
|
+
.utc()
|
|
339
|
+
// .tz('Asia/Tokyo')
|
|
340
|
+
.add(-i, params.aggregateDurationUnit)
|
|
341
|
+
.startOf(params.aggregateDurationUnit)
|
|
342
|
+
.toDate();
|
|
343
|
+
const startThrough = moment(aggregateDate)
|
|
344
|
+
.utc()
|
|
345
|
+
// .tz('Asia/Tokyo')
|
|
346
|
+
.add(-i, params.aggregateDurationUnit)
|
|
347
|
+
.endOf(params.aggregateDurationUnit)
|
|
348
|
+
.toDate();
|
|
349
|
+
const aggregateResult = yield repos.action.aggregateCancelReservationAction({
|
|
350
|
+
project: { id: { $ne: params.excludedProjectId } },
|
|
351
|
+
startFrom,
|
|
352
|
+
startThrough
|
|
353
|
+
});
|
|
354
|
+
debug('aggregateCancelReservationAction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation.percentilesDuration, startFrom);
|
|
355
|
+
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateCancelReservationAction, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
356
|
+
}
|
|
357
|
+
return { aggregationCount: i, aggregateDuration };
|
|
358
|
+
});
|
|
359
|
+
}
|
|
360
|
+
exports.aggregateCancelReservationAction = aggregateCancelReservationAction;
|
|
245
361
|
function aggregateCheckMovieTicketAction(params) {
|
|
246
362
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
247
363
|
var _a;
|
|
248
364
|
const aggregateDate = new Date();
|
|
249
|
-
const aggregateDuration = moment.duration(1,
|
|
365
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
250
366
|
.toISOString();
|
|
251
367
|
let i = -1;
|
|
252
|
-
while (i < params.
|
|
368
|
+
while (i < params.aggregationCount) {
|
|
253
369
|
i += 1;
|
|
254
|
-
const startFrom = moment()
|
|
370
|
+
const startFrom = moment(aggregateDate)
|
|
255
371
|
.utc()
|
|
256
372
|
// .tz('Asia/Tokyo')
|
|
257
|
-
.add(-i,
|
|
258
|
-
.startOf(
|
|
373
|
+
.add(-i, params.aggregateDurationUnit)
|
|
374
|
+
.startOf(params.aggregateDurationUnit)
|
|
259
375
|
.toDate();
|
|
260
|
-
const startThrough = moment()
|
|
376
|
+
const startThrough = moment(aggregateDate)
|
|
261
377
|
.utc()
|
|
262
378
|
// .tz('Asia/Tokyo')
|
|
263
|
-
.add(-i,
|
|
264
|
-
.endOf(
|
|
379
|
+
.add(-i, params.aggregateDurationUnit)
|
|
380
|
+
.endOf(params.aggregateDurationUnit)
|
|
265
381
|
.toDate();
|
|
266
382
|
const aggregateResult = yield repos.action.aggregateCheckMovieTicketAction({
|
|
267
383
|
project: { id: { $ne: params.excludedProjectId } },
|
|
@@ -271,6 +387,7 @@ function aggregateCheckMovieTicketAction(params) {
|
|
|
271
387
|
debug('aggregateCheckMovieTicketAction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation.percentilesDuration, startFrom);
|
|
272
388
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateCheckMovieTicketAction, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
273
389
|
}
|
|
390
|
+
return { aggregationCount: i, aggregateDuration };
|
|
274
391
|
});
|
|
275
392
|
}
|
|
276
393
|
exports.aggregateCheckMovieTicketAction = aggregateCheckMovieTicketAction;
|
|
@@ -278,22 +395,22 @@ function aggregatePayMovieTicketAction(params) {
|
|
|
278
395
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
279
396
|
var _a;
|
|
280
397
|
const aggregateDate = new Date();
|
|
281
|
-
const aggregateDuration = moment.duration(1,
|
|
398
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
282
399
|
.toISOString();
|
|
283
400
|
let i = -1;
|
|
284
|
-
while (i < params.
|
|
401
|
+
while (i < params.aggregationCount) {
|
|
285
402
|
i += 1;
|
|
286
|
-
const startFrom = moment()
|
|
403
|
+
const startFrom = moment(aggregateDate)
|
|
287
404
|
.utc()
|
|
288
405
|
// .tz('Asia/Tokyo')
|
|
289
|
-
.add(-i,
|
|
290
|
-
.startOf(
|
|
406
|
+
.add(-i, params.aggregateDurationUnit)
|
|
407
|
+
.startOf(params.aggregateDurationUnit)
|
|
291
408
|
.toDate();
|
|
292
|
-
const startThrough = moment()
|
|
409
|
+
const startThrough = moment(aggregateDate)
|
|
293
410
|
.utc()
|
|
294
411
|
// .tz('Asia/Tokyo')
|
|
295
|
-
.add(-i,
|
|
296
|
-
.endOf(
|
|
412
|
+
.add(-i, params.aggregateDurationUnit)
|
|
413
|
+
.endOf(params.aggregateDurationUnit)
|
|
297
414
|
.toDate();
|
|
298
415
|
const aggregateResult = yield repos.action.aggregatePayMovieTicketAction({
|
|
299
416
|
project: { id: { $ne: params.excludedProjectId } },
|
|
@@ -303,6 +420,7 @@ function aggregatePayMovieTicketAction(params) {
|
|
|
303
420
|
debug('aggregatePayMovieTicketAction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation.percentilesDuration, startFrom);
|
|
304
421
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregatePayMovieTicketAction, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
305
422
|
}
|
|
423
|
+
return { aggregationCount: i, aggregateDuration };
|
|
306
424
|
});
|
|
307
425
|
}
|
|
308
426
|
exports.aggregatePayMovieTicketAction = aggregatePayMovieTicketAction;
|
|
@@ -310,22 +428,22 @@ function aggregatePayTransaction(params) {
|
|
|
310
428
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
311
429
|
var _a;
|
|
312
430
|
const aggregateDate = new Date();
|
|
313
|
-
const aggregateDuration = moment.duration(1,
|
|
431
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
314
432
|
.toISOString();
|
|
315
433
|
let i = -1;
|
|
316
|
-
while (i < params.
|
|
434
|
+
while (i < params.aggregationCount) {
|
|
317
435
|
i += 1;
|
|
318
|
-
const startFrom = moment()
|
|
436
|
+
const startFrom = moment(aggregateDate)
|
|
319
437
|
.utc()
|
|
320
438
|
// .tz('Asia/Tokyo')
|
|
321
|
-
.add(-i,
|
|
322
|
-
.startOf(
|
|
439
|
+
.add(-i, params.aggregateDurationUnit)
|
|
440
|
+
.startOf(params.aggregateDurationUnit)
|
|
323
441
|
.toDate();
|
|
324
|
-
const startThrough = moment()
|
|
442
|
+
const startThrough = moment(aggregateDate)
|
|
325
443
|
.utc()
|
|
326
444
|
// .tz('Asia/Tokyo')
|
|
327
|
-
.add(-i,
|
|
328
|
-
.endOf(
|
|
445
|
+
.add(-i, params.aggregateDurationUnit)
|
|
446
|
+
.endOf(params.aggregateDurationUnit)
|
|
329
447
|
.toDate();
|
|
330
448
|
const aggregateResult = yield repos.assetTransaction.aggregateAssetTransaction({
|
|
331
449
|
project: { id: { $ne: params.excludedProjectId } },
|
|
@@ -336,6 +454,7 @@ function aggregatePayTransaction(params) {
|
|
|
336
454
|
debug('aggregatePayTransaction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation, startFrom);
|
|
337
455
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregatePay, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
338
456
|
}
|
|
457
|
+
return { aggregationCount: i, aggregateDuration };
|
|
339
458
|
});
|
|
340
459
|
}
|
|
341
460
|
exports.aggregatePayTransaction = aggregatePayTransaction;
|
|
@@ -346,22 +465,22 @@ function aggregateReserveTransaction(params) {
|
|
|
346
465
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
347
466
|
var _a;
|
|
348
467
|
const aggregateDate = new Date();
|
|
349
|
-
const aggregateDuration = moment.duration(1,
|
|
468
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
350
469
|
.toISOString();
|
|
351
470
|
let i = -1;
|
|
352
|
-
while (i < params.
|
|
471
|
+
while (i < params.aggregationCount) {
|
|
353
472
|
i += 1;
|
|
354
|
-
const startFrom = moment()
|
|
473
|
+
const startFrom = moment(aggregateDate)
|
|
355
474
|
.utc()
|
|
356
475
|
// .tz('Asia/Tokyo')
|
|
357
|
-
.add(-i,
|
|
358
|
-
.startOf(
|
|
476
|
+
.add(-i, params.aggregateDurationUnit)
|
|
477
|
+
.startOf(params.aggregateDurationUnit)
|
|
359
478
|
.toDate();
|
|
360
|
-
const startThrough = moment()
|
|
479
|
+
const startThrough = moment(aggregateDate)
|
|
361
480
|
.utc()
|
|
362
481
|
// .tz('Asia/Tokyo')
|
|
363
|
-
.add(-i,
|
|
364
|
-
.endOf(
|
|
482
|
+
.add(-i, params.aggregateDurationUnit)
|
|
483
|
+
.endOf(params.aggregateDurationUnit)
|
|
365
484
|
.toDate();
|
|
366
485
|
const aggregateResult = yield repos.assetTransaction.aggregateAssetTransaction({
|
|
367
486
|
project: { id: { $ne: params.excludedProjectId } },
|
|
@@ -372,6 +491,7 @@ function aggregateReserveTransaction(params) {
|
|
|
372
491
|
debug('aggregateReserveTransaction:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation, startFrom);
|
|
373
492
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateReserve, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: startFrom, aggregateDate }, aggregateResult));
|
|
374
493
|
}
|
|
494
|
+
return { aggregationCount: i, aggregateDuration };
|
|
375
495
|
});
|
|
376
496
|
}
|
|
377
497
|
exports.aggregateReserveTransaction = aggregateReserveTransaction;
|
|
@@ -379,31 +499,33 @@ function aggregateTask(params) {
|
|
|
379
499
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
380
500
|
var _a;
|
|
381
501
|
const aggregateDate = new Date();
|
|
382
|
-
const aggregateDuration = moment.duration(1,
|
|
502
|
+
const aggregateDuration = moment.duration(1, params.aggregateDurationUnit)
|
|
383
503
|
.toISOString();
|
|
384
504
|
let i = -1;
|
|
385
|
-
while (i < params.
|
|
505
|
+
while (i < params.aggregationCount) {
|
|
386
506
|
i += 1;
|
|
387
|
-
const runsFrom = moment()
|
|
507
|
+
const runsFrom = moment(aggregateDate)
|
|
388
508
|
.utc()
|
|
389
509
|
// .tz('Asia/Tokyo')
|
|
390
|
-
.add(-i,
|
|
391
|
-
.startOf(
|
|
510
|
+
.add(-i, params.aggregateDurationUnit)
|
|
511
|
+
.startOf(params.aggregateDurationUnit)
|
|
392
512
|
.toDate();
|
|
393
|
-
const runsThrough = moment()
|
|
513
|
+
const runsThrough = moment(aggregateDate)
|
|
394
514
|
.utc()
|
|
395
515
|
// .tz('Asia/Tokyo')
|
|
396
|
-
.add(-i,
|
|
397
|
-
.endOf(
|
|
516
|
+
.add(-i, params.aggregateDurationUnit)
|
|
517
|
+
.endOf(params.aggregateDurationUnit)
|
|
398
518
|
.toDate();
|
|
399
519
|
const aggregateResult = yield repos.task.aggregateTask({
|
|
400
520
|
project: { id: { $ne: params.excludedProjectId } },
|
|
401
521
|
runsFrom,
|
|
402
522
|
runsThrough
|
|
403
523
|
});
|
|
404
|
-
debug('aggregateTask:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation, runsFrom);
|
|
524
|
+
debug('aggregateTask:result', aggregateResult, (_a = aggregateResult.statuses[0]) === null || _a === void 0 ? void 0 : _a.aggregation, runsFrom, runsThrough);
|
|
405
525
|
yield repos.agregation.saveAggregation(Object.assign({ typeOf: aggregation_1.AggregationType.AggregateTask, project: { id: '*', typeOf: factory.organizationType.Project }, aggregateDuration, aggregateStart: runsFrom, aggregateDate }, aggregateResult));
|
|
406
526
|
}
|
|
527
|
+
debug(i, 'aggregations saved');
|
|
528
|
+
return { aggregationCount: i, aggregateDuration };
|
|
407
529
|
});
|
|
408
530
|
}
|
|
409
531
|
exports.aggregateTask = aggregateTask;
|
|
@@ -13,13 +13,9 @@ exports.exportTasksById = exports.startAndConfirm = exports.confirm = exports.st
|
|
|
13
13
|
/**
|
|
14
14
|
* 予約取消取引サービス
|
|
15
15
|
*/
|
|
16
|
-
const createDebug = require("debug");
|
|
17
|
-
const moment = require("moment");
|
|
18
16
|
const mongoose = require("mongoose");
|
|
19
17
|
const factory = require("../../factory");
|
|
20
|
-
const settings_1 = require("../../settings");
|
|
21
18
|
const factory_1 = require("./cancelReservation/factory");
|
|
22
|
-
const debug = createDebug('chevre-domain:service');
|
|
23
19
|
function validateStartParams(params) {
|
|
24
20
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
25
21
|
var _a, _b;
|
|
@@ -169,27 +165,6 @@ function exportTasksById(params) {
|
|
|
169
165
|
});
|
|
170
166
|
const potentialActions = transaction.potentialActions;
|
|
171
167
|
const taskAttributes = [];
|
|
172
|
-
// 資産取引削除タスクを作成
|
|
173
|
-
const deleteTransactionTask = {
|
|
174
|
-
project: transaction.project,
|
|
175
|
-
name: factory.taskName.DeleteAssetTransaction,
|
|
176
|
-
status: factory.taskStatus.Ready,
|
|
177
|
-
runsAt: moment(transaction.endDate)
|
|
178
|
-
.add(settings_1.ASSET_TRANSACTION_STORAGE_PERIOD_IN_DAYS, 'days')
|
|
179
|
-
.toDate(),
|
|
180
|
-
remainingNumberOfTries: 3,
|
|
181
|
-
numberOfTried: 0,
|
|
182
|
-
executionResults: [],
|
|
183
|
-
data: {
|
|
184
|
-
object: {
|
|
185
|
-
project: transaction.project,
|
|
186
|
-
id: transaction.id,
|
|
187
|
-
transactionNumber: transaction.transactionNumber,
|
|
188
|
-
typeOf: transaction.typeOf
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
};
|
|
192
|
-
taskAttributes.push(deleteTransactionTask);
|
|
193
168
|
switch (transaction.status) {
|
|
194
169
|
case factory.transactionStatusType.Confirmed:
|
|
195
170
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
@@ -235,9 +210,7 @@ function exportTasksById(params) {
|
|
|
235
210
|
default:
|
|
236
211
|
throw new factory.errors.NotImplemented(`Transaction status "${transaction.status}" not implemented.`);
|
|
237
212
|
}
|
|
238
|
-
|
|
239
|
-
return repos.task.saveMany(taskAttributes);
|
|
240
|
-
// return Promise.all(taskAttributes.map(async (a) => repos.task.save(a)));
|
|
213
|
+
return repos.task.saveMany(taskAttributes, { emitImmediately: true });
|
|
241
214
|
});
|
|
242
215
|
}
|
|
243
216
|
exports.exportTasksById = exportTasksById;
|
|
@@ -15,7 +15,6 @@ exports.exportTasksById = exports.cancel = exports.confirm = exports.start = voi
|
|
|
15
15
|
*/
|
|
16
16
|
const moment = require("moment");
|
|
17
17
|
const factory = require("../../factory");
|
|
18
|
-
const settings_1 = require("../../settings");
|
|
19
18
|
const pecorinoapi = require("../../pecorinoapi");
|
|
20
19
|
// import { RedisRepository as TransactionNumberRepo } from '../../repo/transactionNumber';
|
|
21
20
|
const MoneyTransferService = require("../moneyTransfer");
|
|
@@ -35,7 +34,7 @@ function start(params) {
|
|
|
35
34
|
project: { id: { $eq: params.project.id } },
|
|
36
35
|
typeOf: { $eq: factory.product.ProductType.PaymentCard },
|
|
37
36
|
id: { $eq: issuedThroughId }
|
|
38
|
-
});
|
|
37
|
+
}, [], []);
|
|
39
38
|
const product = products.shift();
|
|
40
39
|
if (product === undefined) {
|
|
41
40
|
throw new factory.errors.NotFound('Product');
|
|
@@ -360,27 +359,6 @@ function exportTasksById(params) {
|
|
|
360
359
|
});
|
|
361
360
|
const potentialActions = transaction.potentialActions;
|
|
362
361
|
const taskAttributes = [];
|
|
363
|
-
// 資産取引削除タスクを作成
|
|
364
|
-
const deleteTransactionTask = {
|
|
365
|
-
project: transaction.project,
|
|
366
|
-
name: factory.taskName.DeleteAssetTransaction,
|
|
367
|
-
status: factory.taskStatus.Ready,
|
|
368
|
-
runsAt: moment(transaction.endDate)
|
|
369
|
-
.add(settings_1.ASSET_TRANSACTION_STORAGE_PERIOD_IN_DAYS, 'days')
|
|
370
|
-
.toDate(),
|
|
371
|
-
remainingNumberOfTries: 3,
|
|
372
|
-
numberOfTried: 0,
|
|
373
|
-
executionResults: [],
|
|
374
|
-
data: {
|
|
375
|
-
object: {
|
|
376
|
-
project: transaction.project,
|
|
377
|
-
id: transaction.id,
|
|
378
|
-
transactionNumber: transaction.transactionNumber,
|
|
379
|
-
typeOf: transaction.typeOf
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
};
|
|
383
|
-
taskAttributes.push(deleteTransactionTask);
|
|
384
362
|
// タスク実行日時バッファの指定があれば調整
|
|
385
363
|
let taskRunsAt = new Date();
|
|
386
364
|
if (typeof params.runsTasksAfterInSeconds === 'number') {
|
|
@@ -430,7 +408,7 @@ function exportTasksById(params) {
|
|
|
430
408
|
default:
|
|
431
409
|
throw new factory.errors.NotImplemented(`Transaction status "${transaction.status}" not implemented.`);
|
|
432
410
|
}
|
|
433
|
-
return repos.task.saveMany(taskAttributes);
|
|
411
|
+
return repos.task.saveMany(taskAttributes, { emitImmediately: true });
|
|
434
412
|
});
|
|
435
413
|
}
|
|
436
414
|
exports.exportTasksById = exportTasksById;
|