@chevre/domain 26.0.0-alpha.8 → 26.0.0

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.
Files changed (317) hide show
  1. package/lib/chevre/eventEmitter/task.d.ts +8 -23
  2. package/lib/chevre/eventEmitter/task.js +2 -2
  3. package/lib/chevre/repo/acceptedOffer.d.ts +0 -7
  4. package/lib/chevre/repo/acceptedOffer.js +27 -27
  5. package/lib/chevre/repo/action/acceptCOAOffer.d.ts +3 -1
  6. package/lib/chevre/repo/action/acceptCOAOffer.js +8 -2
  7. package/lib/chevre/repo/action/acceptPay.d.ts +3 -1
  8. package/lib/chevre/repo/action/acceptPay.js +8 -4
  9. package/lib/chevre/repo/action/anyAction/actionProcess.d.ts +120 -0
  10. package/lib/chevre/repo/action/{actionProcess.js → anyAction/actionProcess.js} +28 -157
  11. package/lib/chevre/repo/action/anyAction/actionRecipe.d.ts +37 -0
  12. package/lib/chevre/repo/action/anyAction/actionRecipe.js +53 -0
  13. package/lib/chevre/repo/action/authorizeInvoice.d.ts +5 -8
  14. package/lib/chevre/repo/action/authorizeInvoice.js +7 -4
  15. package/lib/chevre/repo/action/authorizeOffer.d.ts +3 -1
  16. package/lib/chevre/repo/action/authorizeOffer.js +7 -2
  17. package/lib/chevre/repo/action/authorizePaymentMethod.d.ts +3 -1
  18. package/lib/chevre/repo/action/authorizePaymentMethod.js +7 -4
  19. package/lib/chevre/repo/action/authorizeTicketedObject.d.ts +3 -1
  20. package/lib/chevre/repo/action/authorizeTicketedObject.js +7 -2
  21. package/lib/chevre/repo/action/cancel.d.ts +25 -0
  22. package/lib/chevre/repo/action/cancel.js +47 -0
  23. package/lib/chevre/repo/action/checkMovieTicket.d.ts +3 -1
  24. package/lib/chevre/repo/action/checkMovieTicket.js +8 -1
  25. package/lib/chevre/repo/action/confirm.d.ts +11 -0
  26. package/lib/chevre/repo/action/confirm.js +16 -0
  27. package/lib/chevre/repo/action/create.d.ts +10 -0
  28. package/lib/chevre/repo/action/create.js +17 -0
  29. package/lib/chevre/repo/action/inform.d.ts +38 -0
  30. package/lib/chevre/repo/action/inform.js +146 -0
  31. package/lib/chevre/repo/action/order.d.ts +21 -0
  32. package/lib/chevre/repo/action/order.js +35 -0
  33. package/lib/chevre/repo/action/pay.d.ts +3 -1
  34. package/lib/chevre/repo/action/pay.js +7 -4
  35. package/lib/chevre/repo/action/refund.d.ts +3 -1
  36. package/lib/chevre/repo/action/refund.js +7 -4
  37. package/lib/chevre/repo/action/reserve.d.ts +21 -0
  38. package/lib/chevre/repo/action/reserve.js +37 -0
  39. package/lib/chevre/repo/action/returnAction.d.ts +11 -0
  40. package/lib/chevre/repo/action/returnAction.js +16 -0
  41. package/lib/chevre/repo/action/sendEmailMessage.d.ts +10 -0
  42. package/lib/chevre/repo/action/sendEmailMessage.js +17 -0
  43. package/lib/chevre/repo/action/sendOrder.d.ts +10 -0
  44. package/lib/chevre/repo/action/sendOrder.js +16 -0
  45. package/lib/chevre/repo/action/unknown2actionError.d.ts +6 -0
  46. package/lib/chevre/repo/action/unknown2actionError.js +15 -0
  47. package/lib/chevre/repo/action/update.d.ts +48 -0
  48. package/lib/chevre/repo/action/update.js +166 -0
  49. package/lib/chevre/repo/action/use.d.ts +39 -0
  50. package/lib/chevre/repo/action/use.js +153 -0
  51. package/lib/chevre/repo/{action.d.ts → adminAction.d.ts} +11 -37
  52. package/lib/chevre/repo/adminAction.js +176 -0
  53. package/lib/chevre/repo/adminAssetTransaction.d.ts +126 -0
  54. package/lib/chevre/repo/adminAssetTransaction.js +491 -0
  55. package/lib/chevre/repo/adminAsyncAction.d.ts +2 -2
  56. package/lib/chevre/repo/adminScheduledTask.d.ts +1 -1
  57. package/lib/chevre/repo/adminTask.d.ts +25 -8
  58. package/lib/chevre/repo/adminTask.js +31 -32
  59. package/lib/chevre/repo/adminTransaction.d.ts +131 -0
  60. package/lib/chevre/repo/adminTransaction.js +237 -0
  61. package/lib/chevre/repo/aggregateAction.d.ts +8 -11
  62. package/lib/chevre/repo/aggregateAction.js +0 -61
  63. package/lib/chevre/repo/aggregateAssetTransaction.d.ts +43 -0
  64. package/lib/chevre/repo/aggregateAssetTransaction.js +166 -0
  65. package/lib/chevre/repo/aggregateTransaction.d.ts +39 -0
  66. package/lib/chevre/repo/aggregateTransaction.js +166 -0
  67. package/lib/chevre/repo/aggregateUseAction.d.ts +35 -0
  68. package/lib/chevre/repo/aggregateUseAction.js +164 -0
  69. package/lib/chevre/repo/aggregation.d.ts +0 -8
  70. package/lib/chevre/repo/aggregation.js +0 -10
  71. package/lib/chevre/repo/assetTransaction.d.ts +10 -235
  72. package/lib/chevre/repo/assetTransaction.js +48 -636
  73. package/lib/chevre/repo/asyncAction.d.ts +2 -2
  74. package/lib/chevre/repo/authorization.d.ts +0 -6
  75. package/lib/chevre/repo/authorization.js +15 -27
  76. package/lib/chevre/repo/message.d.ts +0 -7
  77. package/lib/chevre/repo/message.js +0 -38
  78. package/lib/chevre/repo/migrateAction.d.ts +48 -0
  79. package/lib/chevre/repo/migrateAction.js +32 -0
  80. package/lib/chevre/repo/mongoose/schemas/action/inform.d.ts +11 -0
  81. package/lib/chevre/repo/mongoose/schemas/action/inform.js +82 -0
  82. package/lib/chevre/repo/mongoose/schemas/action/update.d.ts +12 -0
  83. package/lib/chevre/repo/mongoose/schemas/action/update.js +112 -0
  84. package/lib/chevre/repo/mongoose/schemas/{ownershipInfo.d.ts → action/use.d.ts} +4 -6
  85. package/lib/chevre/repo/mongoose/schemas/action/use.js +92 -0
  86. package/lib/chevre/repo/mongoose/schemas/action.d.ts +1 -3
  87. package/lib/chevre/repo/mongoose/schemas/action.js +22 -7
  88. package/lib/chevre/repo/mongoose/schemas/actionRecipe.d.ts +1 -0
  89. package/lib/chevre/repo/mongoose/schemas/actionRecipe.js +19 -1
  90. package/lib/chevre/repo/mongoose/schemas/aggregateReservation.js +8 -9
  91. package/lib/chevre/repo/mongoose/schemas/aggregation.js +8 -1
  92. package/lib/chevre/repo/mongoose/schemas/assetTransaction.js +95 -76
  93. package/lib/chevre/repo/mongoose/schemas/authorization.js +25 -18
  94. package/lib/chevre/repo/mongoose/schemas/event.js +7 -0
  95. package/lib/chevre/repo/mongoose/schemas/eventOffer.js +7 -0
  96. package/lib/chevre/repo/mongoose/schemas/message.js +8 -1
  97. package/lib/chevre/repo/mongoose/schemas/pendingReservation.js +11 -4
  98. package/lib/chevre/repo/mongoose/schemas/setting.d.ts +5 -16
  99. package/lib/chevre/repo/mongoose/schemas/task.d.ts +2 -5
  100. package/lib/chevre/repo/mongoose/schemas/task.js +134 -118
  101. package/lib/chevre/repo/mongoose/schemas/ticket.js +8 -1
  102. package/lib/chevre/repo/orderInTransaction.d.ts +0 -3
  103. package/lib/chevre/repo/orderInTransaction.js +30 -22
  104. package/lib/chevre/repo/scheduledTask.d.ts +4 -1
  105. package/lib/chevre/repo/scheduledTask.js +3 -25
  106. package/lib/chevre/repo/task.d.ts +44 -150
  107. package/lib/chevre/repo/task.js +13 -446
  108. package/lib/chevre/repo/taskDelayed.d.ts +74 -0
  109. package/lib/chevre/repo/taskDelayed.js +195 -0
  110. package/lib/chevre/repo/taskRunning.d.ts +35 -0
  111. package/lib/chevre/repo/taskRunning.js +89 -0
  112. package/lib/chevre/repo/ticket.d.ts +0 -6
  113. package/lib/chevre/repo/ticket.js +0 -11
  114. package/lib/chevre/repo/transaction.d.ts +1 -187
  115. package/lib/chevre/repo/transaction.js +2 -383
  116. package/lib/chevre/repository.d.ts +65 -25
  117. package/lib/chevre/repository.js +144 -56
  118. package/lib/chevre/service/aggregation/system.d.ts +9 -8
  119. package/lib/chevre/service/aggregation/system.js +5 -5
  120. package/lib/chevre/service/assetTransaction/cancelReservation/start.js +10 -17
  121. package/lib/chevre/service/assetTransaction/pay/confirm.d.ts +0 -10
  122. package/lib/chevre/service/assetTransaction/pay/start/processAuthorize.d.ts +0 -1
  123. package/lib/chevre/service/assetTransaction/pay/start/processAuthorizeMovieTicket.d.ts +0 -1
  124. package/lib/chevre/service/assetTransaction/pay/start.d.ts +0 -1
  125. package/lib/chevre/service/assetTransaction/refund.d.ts +0 -1
  126. package/lib/chevre/service/assetTransaction/refund.js +2 -2
  127. package/lib/chevre/service/assetTransaction/reserve/cancel.d.ts +4 -2
  128. package/lib/chevre/service/assetTransaction/reserve/confirm.d.ts +4 -2
  129. package/lib/chevre/service/assetTransaction/reserveCOA/cancel.d.ts +8 -4
  130. package/lib/chevre/service/assetTransaction/reserveCOA/cancel.js +1 -1
  131. package/lib/chevre/service/asyncAction.d.ts +2 -2
  132. package/lib/chevre/service/asyncAction.js +1 -4
  133. package/lib/chevre/service/asyncActionHandler/onOperationFailed.d.ts +2 -2
  134. package/lib/chevre/service/asyncActionHandler/onOperationFailed.js +0 -2
  135. package/lib/chevre/service/asyncActionHandler.d.ts +4 -4
  136. package/lib/chevre/service/asyncActionHandler.js +11 -13
  137. package/lib/chevre/service/event/processUpdateMovieTheater.d.ts +4 -2
  138. package/lib/chevre/service/event/processUpdateMovieTheater.js +3 -3
  139. package/lib/chevre/service/event.d.ts +4 -2
  140. package/lib/chevre/service/event.js +3 -3
  141. package/lib/chevre/service/notification/sendEmailMessage.d.ts +4 -2
  142. package/lib/chevre/service/notification/sendEmailMessage.js +3 -3
  143. package/lib/chevre/service/notification/triggerWebhook.d.ts +4 -2
  144. package/lib/chevre/service/notification/triggerWebhook.js +5 -16
  145. package/lib/chevre/service/offer/event/authorize.d.ts +0 -1
  146. package/lib/chevre/service/offer/event/issueEventOfferTicket.d.ts +0 -1
  147. package/lib/chevre/service/offer/event/voidTransaction/processVoidTransaction4chevre.d.ts +4 -2
  148. package/lib/chevre/service/offer/event/voidTransaction/processVoidTransaction4chevre.js +1 -3
  149. package/lib/chevre/service/offer/event/voidTransaction/processVoidTransaction4coa.d.ts +9 -5
  150. package/lib/chevre/service/offer/event/voidTransaction/processVoidTransaction4coa.js +1 -1
  151. package/lib/chevre/service/offer/event/voidTransaction.d.ts +6 -4
  152. package/lib/chevre/service/offer/event/voidTransaction.js +7 -9
  153. package/lib/chevre/service/offer/event/voidTransactionByActionId.d.ts +6 -4
  154. package/lib/chevre/service/offer/event/voidTransactionByActionId.js +3 -15
  155. package/lib/chevre/service/offer/eventServiceByCOA/acceptOffer.js +1 -1
  156. package/lib/chevre/service/offer/eventServiceByCOA/changeOffers.js +1 -1
  157. package/lib/chevre/service/offer/eventServiceByCOA/findAcceptAction.d.ts +0 -4
  158. package/lib/chevre/service/offer/eventServiceByCOA/findAcceptAction.js +19 -19
  159. package/lib/chevre/service/offer/onEventChanged.js +0 -2
  160. package/lib/chevre/service/order/confirmPayTransaction.d.ts +4 -10
  161. package/lib/chevre/service/order/confirmPayTransaction.js +7 -11
  162. package/lib/chevre/service/order/createAccountingReportIfNotExist.d.ts +1 -1
  163. package/lib/chevre/service/order/createAccountingReportIfNotExist.js +2 -56
  164. package/lib/chevre/service/order/deleteOrder.d.ts +2 -2
  165. package/lib/chevre/service/order/deleteOrder.js +1 -2
  166. package/lib/chevre/service/order/onAssetTransactionStatusChanged/isDeliverable.js +1 -49
  167. package/lib/chevre/service/order/onAssetTransactionStatusChanged/onPayTransactionConfirmed.js +2 -2
  168. package/lib/chevre/service/order/onOrderStatusChanged/onOrderDelivered/factory.js +2 -4
  169. package/lib/chevre/service/order/onOrderStatusChanged/onOrderDeliveredPartially/factory.js +2 -4
  170. package/lib/chevre/service/order/onOrderStatusChanged/onOrderInTransit.js +2 -2
  171. package/lib/chevre/service/order/onOrderStatusChanged/onOrderPaymentDue.js +1 -1
  172. package/lib/chevre/service/order/onOrderStatusChanged/onOrderProcessing/createSendEmailMessageTaskIfNotExist.js +1 -9
  173. package/lib/chevre/service/order/onOrderStatusChanged/onOrderProcessing/factory.d.ts +2 -2
  174. package/lib/chevre/service/order/onOrderStatusChanged/onOrderProcessing/factory.js +4 -8
  175. package/lib/chevre/service/order/onOrderStatusChanged/onOrderProcessing/processOrder.js +1 -1
  176. package/lib/chevre/service/order/onOrderStatusChanged/onOrderReturned/factory.js +5 -11
  177. package/lib/chevre/service/order/onOrderUpdated/factory.js +0 -3
  178. package/lib/chevre/service/order/placeOrder/createPlacingOrderFromExistingTransaction.d.ts +4 -2
  179. package/lib/chevre/service/order/placeOrder/createPlacingOrderFromExistingTransaction.js +2 -2
  180. package/lib/chevre/service/order/placeOrder.d.ts +6 -4
  181. package/lib/chevre/service/order/placeOrder.js +9 -17
  182. package/lib/chevre/service/order/returnOrder.d.ts +4 -4
  183. package/lib/chevre/service/order/returnOrder.js +11 -43
  184. package/lib/chevre/service/order/sendOrder.d.ts +4 -6
  185. package/lib/chevre/service/order/sendOrder.js +30 -72
  186. package/lib/chevre/service/payment/any/authorize/fixTransactionNumber.d.ts +0 -1
  187. package/lib/chevre/service/payment/any/authorize/handlePrePublishedPaymentMethodIdOnAuthorizing.d.ts +0 -1
  188. package/lib/chevre/service/payment/any/authorize.d.ts +0 -1
  189. package/lib/chevre/service/payment/any/findAcceptAction.d.ts +0 -4
  190. package/lib/chevre/service/payment/any/findAcceptAction.js +19 -19
  191. package/lib/chevre/service/payment/any/findAuthorizeAction.d.ts +0 -4
  192. package/lib/chevre/service/payment/any/findAuthorizeAction.js +19 -19
  193. package/lib/chevre/service/payment/any/findCheckAction.d.ts +0 -4
  194. package/lib/chevre/service/payment/any/findCheckAction.js +19 -19
  195. package/lib/chevre/service/payment/any/invalidatePaymentUrl.d.ts +0 -1
  196. package/lib/chevre/service/payment/any/onPayActionCompleted.d.ts +0 -1
  197. package/lib/chevre/service/payment/any/onPaymentStatusChanged.js +2 -2
  198. package/lib/chevre/service/payment/any/onRefundActionCompletedOrFailed.d.ts +0 -1
  199. package/lib/chevre/service/payment/any/processVoidPayTransaction.d.ts +0 -1
  200. package/lib/chevre/service/payment/any/processVoidPayTransaction.js +2 -2
  201. package/lib/chevre/service/payment/any/publishPaymentUrl.d.ts +0 -2
  202. package/lib/chevre/service/payment/any/publishPaymentUrl.js +2 -2
  203. package/lib/chevre/service/payment/any/voidPayTransaction.d.ts +0 -1
  204. package/lib/chevre/service/payment/creditCard/authorize/processAuthorizeCreditCard.d.ts +0 -1
  205. package/lib/chevre/service/payment/creditCard/authorize/processAuthorizeCreditCard3ds.d.ts +0 -1
  206. package/lib/chevre/service/payment/creditCard/authorize.d.ts +0 -1
  207. package/lib/chevre/service/payment/creditCard/payCreditCard.d.ts +0 -1
  208. package/lib/chevre/service/payment/creditCard/refundCreditCard.d.ts +0 -1
  209. package/lib/chevre/service/payment/faceToFace.d.ts +0 -2
  210. package/lib/chevre/service/payment/movieTicket/authorize.d.ts +0 -1
  211. package/lib/chevre/service/payment/movieTicket/payMovieTicket.d.ts +0 -1
  212. package/lib/chevre/service/payment/movieTicket/refundMovieTicket.d.ts +0 -1
  213. package/lib/chevre/service/project.d.ts +0 -6
  214. package/lib/chevre/service/project.js +0 -2
  215. package/lib/chevre/service/reserve/cancelReservation.d.ts +7 -3
  216. package/lib/chevre/service/reserve/cancelReservation.js +15 -25
  217. package/lib/chevre/service/reserve/checkInReservation.d.ts +4 -2
  218. package/lib/chevre/service/reserve/checkInReservation.js +2 -2
  219. package/lib/chevre/service/reserve/confirmReservation.d.ts +4 -2
  220. package/lib/chevre/service/reserve/confirmReservation.js +10 -36
  221. package/lib/chevre/service/reserve/potentialActions/onReservationConfirmed.js +1 -1
  222. package/lib/chevre/service/reserve/useReservation.d.ts +6 -2
  223. package/lib/chevre/service/reserve/useReservation.js +6 -24
  224. package/lib/chevre/service/reserveCOA/cancelReservation.d.ts +4 -2
  225. package/lib/chevre/service/reserveCOA/cancelReservation.js +3 -3
  226. package/lib/chevre/service/scheduledTask.d.ts +1 -4
  227. package/lib/chevre/service/scheduledTask.js +3 -10
  228. package/lib/chevre/service/scheduledTaskHandler/onOperationFailed.js +1 -2
  229. package/lib/chevre/service/scheduledTaskHandler.js +0 -13
  230. package/lib/chevre/service/task/acceptCOAOffer.js +1 -14
  231. package/lib/chevre/service/task/authorizePayment.js +1 -7
  232. package/lib/chevre/service/task/cancelPendingReservation.js +3 -4
  233. package/lib/chevre/service/task/cancelReservation.js +3 -5
  234. package/lib/chevre/service/task/checkMovieTicket.js +1 -7
  235. package/lib/chevre/service/task/checkResource.js +14 -57
  236. package/lib/chevre/service/task/confirmPayTransaction.js +11 -12
  237. package/lib/chevre/service/task/confirmReserveTransaction.d.ts +6 -2
  238. package/lib/chevre/service/task/confirmReserveTransaction.js +12 -7
  239. package/lib/chevre/service/task/createAccountingReport.js +8 -15
  240. package/lib/chevre/service/task/deleteTransaction.js +10 -41
  241. package/lib/chevre/service/task/importEventsFromCOA.js +4 -2
  242. package/lib/chevre/service/task/invalidatePaymentUrl.js +0 -1
  243. package/lib/chevre/service/task/onAuthorizationCreated.js +4 -13
  244. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByAggregateOffer.d.ts +4 -2
  245. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByAggregateOffer.js +4 -4
  246. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByEventSeries.d.ts +4 -2
  247. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByEventSeries.js +4 -4
  248. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByMovieTheater.d.ts +4 -2
  249. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByMovieTheater.js +4 -4
  250. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByOfferCatalog.d.ts +4 -2
  251. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByOfferCatalog.js +4 -4
  252. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByProduct.d.ts +4 -2
  253. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByProduct.js +4 -4
  254. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByRoom.d.ts +4 -2
  255. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesByRoom.js +4 -4
  256. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesBySeller.d.ts +4 -2
  257. package/lib/chevre/service/task/onResourceDeleted/deleteResourcesBySeller.js +4 -4
  258. package/lib/chevre/service/task/onResourceDeleted.js +4 -3
  259. package/lib/chevre/service/task/onResourceUpdated/onAggregateOfferUpdated.js +0 -1
  260. package/lib/chevre/service/task/onResourceUpdated/onHasPOSUpdated.js +0 -1
  261. package/lib/chevre/service/task/onResourceUpdated/onOfferCatalogUpdated.js +0 -1
  262. package/lib/chevre/service/task/onResourceUpdated.js +0 -10
  263. package/lib/chevre/service/task/pay.js +0 -1
  264. package/lib/chevre/service/task/payment/invalidatePaymentUrlByTask.d.ts +0 -1
  265. package/lib/chevre/service/task/payment/payByTask.d.ts +0 -1
  266. package/lib/chevre/service/task/payment/refundByTask.d.ts +0 -1
  267. package/lib/chevre/service/task/payment/voidPaymentByTask.d.ts +0 -2
  268. package/lib/chevre/service/task/placeOrder.js +8 -6
  269. package/lib/chevre/service/task/publishPaymentUrl.js +2 -13
  270. package/lib/chevre/service/task/refund.js +0 -1
  271. package/lib/chevre/service/task/reserve.js +3 -6
  272. package/lib/chevre/service/task/returnOrder.js +3 -7
  273. package/lib/chevre/service/task/returnPayTransaction.js +9 -19
  274. package/lib/chevre/service/task/returnReserveTransaction.js +5 -6
  275. package/lib/chevre/service/task/sendEmailMessage.js +2 -2
  276. package/lib/chevre/service/task/sendOrder.js +4 -8
  277. package/lib/chevre/service/task/syncResourcesFromCOA.js +31 -23
  278. package/lib/chevre/service/task/triggerWebhook.js +4 -2
  279. package/lib/chevre/service/task/useReservation.js +6 -2
  280. package/lib/chevre/service/task/voidPayment.js +0 -2
  281. package/lib/chevre/service/task/voidReserveTransaction.js +11 -13
  282. package/lib/chevre/service/task.d.ts +3 -22
  283. package/lib/chevre/service/task.js +8 -40
  284. package/lib/chevre/service/taskHandler/onOperationFailed/informTaskIfNeeded.js +0 -1
  285. package/lib/chevre/service/taskHandler/onOperationFailed.d.ts +3 -2
  286. package/lib/chevre/service/taskHandler/onOperationFailed.js +5 -16
  287. package/lib/chevre/service/taskHandler.d.ts +1 -2
  288. package/lib/chevre/service/taskHandler.js +7 -19
  289. package/lib/chevre/service/transaction/deleteTransaction/deletePayTransactionsByPlaceOrder.js +2 -2
  290. package/lib/chevre/service/transaction/deleteTransaction/deleteReservationsByPlaceOrder.js +2 -2
  291. package/lib/chevre/service/transaction/deleteTransaction.d.ts +8 -4
  292. package/lib/chevre/service/transaction/deleteTransaction.js +7 -7
  293. package/lib/chevre/service/transaction/placeOrder/confirm.js +1 -1
  294. package/lib/chevre/service/transaction/placeOrder/exportTasks/factory.d.ts +1 -1
  295. package/lib/chevre/service/transaction/placeOrder/exportTasksById.js +11 -17
  296. package/lib/chevre/service/transaction/returnOrder.js +11 -17
  297. package/lib/chevre/service/validation/validateOrder.d.ts +0 -4
  298. package/lib/chevre/service/validation/validateOrder.js +3 -3
  299. package/lib/chevre/taskSettings.d.ts +4 -4
  300. package/package.json +2 -2
  301. package/lib/chevre/repo/action/actionProcess.d.ts +0 -147
  302. package/lib/chevre/repo/action/checkThing.d.ts +0 -8
  303. package/lib/chevre/repo/action/checkThing.js +0 -13
  304. package/lib/chevre/repo/action.js +0 -468
  305. package/lib/chevre/repo/asyncActionLegacy.d.ts +0 -23
  306. package/lib/chevre/repo/asyncActionLegacy.js +0 -59
  307. package/lib/chevre/repo/mongoose/schemas/ownershipInfo.js +0 -227
  308. package/lib/chevre/repo/mongoose/schemas/pendingReservationAggregate.d.ts +0 -25
  309. package/lib/chevre/repo/mongoose/schemas/pendingReservationAggregate.js +0 -100
  310. package/lib/chevre/repo/ownershipInfo.d.ts +0 -122
  311. package/lib/chevre/repo/ownershipInfo.js +0 -466
  312. package/lib/chevre/repo/scheduledTaskLegacy.d.ts +0 -19
  313. package/lib/chevre/repo/scheduledTaskLegacy.js +0 -42
  314. package/lib/chevre/repo/scheduledTaskMigration.d.ts +0 -21
  315. package/lib/chevre/repo/scheduledTaskMigration.js +0 -70
  316. package/lib/chevre/service/validation/validateEvent.d.ts +0 -11
  317. package/lib/chevre/service/validation/validateEvent.js +0 -21
@@ -1,30 +1,23 @@
1
- import { FilterQuery } from 'mongoose';
1
+ import type { Connection, FilterQuery } from 'mongoose';
2
2
  import { factory } from '../factory';
3
3
  import type { IDocType } from './mongoose/schemas/action';
4
- import { IAction, IKeyOfProjection, ActionProcessRepo, ICancelActionAction, IActionRecipe } from './action/actionProcess';
5
- export type IAction4transaction<T extends factory.actionType.AcceptAction | factory.actionType.AuthorizeAction> = T extends factory.actionType.AcceptAction ? factory.action.accept.coaOffer.IAction | factory.action.accept.pay.IAction : T extends factory.actionType.AuthorizeAction ? (factory.action.authorize.offer.eventService.IAction | factory.action.authorize.paymentMethod.any.IAction) : never;
6
- export { ICancelActionAction };
7
- /**
8
- * 汎用アクションリポジトリで開始可能なアクションタイプ
9
- */
10
- type StartableActionType = Exclude<factory.actionType, factory.actionType.AcceptAction | factory.actionType.CheckAction | factory.actionType.AuthorizeAction | factory.actionType.PayAction | factory.actionType.RefundAction>;
4
+ import { IKeyOfProjection, IAction, IActionRecipe, ActionProcessRepo } from './action/anyAction/actionProcess';
11
5
  type IAvailableActionRecipe = IActionRecipe<Exclude<factory.recipe.RecipeCategory, factory.recipe.RecipeCategory.publishPaymentUrl | factory.recipe.RecipeCategory.checkMovieTicket | factory.recipe.RecipeCategory.acceptCOAOffer | factory.recipe.RecipeCategory.authorizeInvoice | factory.recipe.RecipeCategory.authorizeInvoice3ds | factory.recipe.RecipeCategory.payCreditCard | factory.recipe.RecipeCategory.payMovieTicket | factory.recipe.RecipeCategory.refundCreditCard | factory.recipe.RecipeCategory.refundMovieTicket>>;
6
+ type StartableActionType = factory.actionType;
7
+ export type IAction4transaction<T extends factory.actionType.AcceptAction | factory.actionType.AuthorizeAction> = T extends factory.actionType.AcceptAction ? factory.action.accept.coaOffer.IAction | factory.action.accept.pay.IAction : T extends factory.actionType.AuthorizeAction ? (factory.action.authorize.offer.eventService.IAction | factory.action.authorize.paymentMethod.any.IAction) : never;
12
8
  export interface IDeleteActionResult {
13
9
  identifier: string;
14
10
  deletedCount?: number;
15
11
  }
16
12
  /**
17
- * アクションリポジトリ
13
+ * アクション管理リポジトリ
18
14
  */
19
- export declare class ActionRepo extends ActionProcessRepo<IAction<StartableActionType>, IAvailableActionRecipe> {
15
+ export declare class AdminActionRepo extends ActionProcessRepo<IAction<StartableActionType>, IAvailableActionRecipe> {
16
+ constructor(connection: Connection);
20
17
  /**
21
18
  * 汎用アクション検索
22
19
  */
23
- findActionsByType<T extends StartableActionType>(params: factory.action.ISearchConditions & {
24
- typeOf?: T | {
25
- $eq?: T;
26
- };
27
- }, inclusion: IKeyOfProjection[]): Promise<IAction<T>[]>;
20
+ adminFindAnyActions(params: factory.action.ISearchConditions, inclusion: IKeyOfProjection[]): Promise<IAction<factory.actionType>[]>;
28
21
  /**
29
22
  * 取引に対するアクションを検索する
30
23
  */
@@ -68,22 +61,6 @@ export declare class ActionRepo extends ActionProcessRepo<IAction<StartableActio
68
61
  id: string;
69
62
  };
70
63
  }): Promise<void>;
71
- /**
72
- * 開始日時を一定期間過ぎたアクションを削除する
73
- */
74
- deleteStartDatePassedCertainPeriod(params: {
75
- $lt: Date;
76
- }): Promise<import("mongodb").DeleteResult>;
77
- /**
78
- * 終了日時を一定期間過ぎたアクションを削除する
79
- * 作成日時を一定期間過ぎたアクションレシピも削除する
80
- */
81
- deleteEndDatePassedCertainPeriod(params: {
82
- $lt: Date;
83
- }): Promise<{
84
- deleteActionRecipesResult: import("mongodb").DeleteResult;
85
- deleteActionsResult: import("mongodb").DeleteResult;
86
- } | undefined>;
87
64
  /**
88
65
  * 取引からアクションを削除する
89
66
  */
@@ -99,15 +76,11 @@ export declare class ActionRepo extends ActionProcessRepo<IAction<StartableActio
99
76
  $in: factory.actionType[];
100
77
  };
101
78
  }): Promise<IDeleteActionResult[]>;
102
- getCursor(conditions: any, projection: any): import("mongoose").Cursor<import("mongoose").Document<unknown, Record<string, never>, IDocType, import("./mongoose/virtuals").IVirtuals, {}> & Omit<import("@chevre/factory/lib/chevre/action").IAction<import("@chevre/factory/lib/chevre/action").IAttributes<factory.actionType, any, any>>, "id"> & {
103
- identifier?: string;
104
- } & {
79
+ getCursor(conditions: any, projection: any): import("mongoose").Cursor<import("mongoose").Document<unknown, Record<string, never>, IDocType, import("./mongoose/virtuals").IVirtuals, {}> & IDocType & {
105
80
  _id: import("mongoose").Types.ObjectId;
106
81
  } & {
107
82
  __v: number;
108
- }, import("mongoose").QueryOptions<IDocType>, (import("mongoose").Document<unknown, Record<string, never>, IDocType, import("./mongoose/virtuals").IVirtuals, {}> & Omit<import("@chevre/factory/lib/chevre/action").IAction<import("@chevre/factory/lib/chevre/action").IAttributes<factory.actionType, any, any>>, "id"> & {
109
- identifier?: string;
110
- } & {
83
+ }, import("mongoose").QueryOptions<IDocType>, (import("mongoose").Document<unknown, Record<string, never>, IDocType, import("./mongoose/virtuals").IVirtuals, {}> & IDocType & {
111
84
  _id: import("mongoose").Types.ObjectId;
112
85
  } & {
113
86
  __v: number;
@@ -117,3 +90,4 @@ export declare class ActionRepo extends ActionProcessRepo<IAction<StartableActio
117
90
  $unset: any;
118
91
  }): Promise<import("mongoose").UpdateWriteOpResult>;
119
92
  }
93
+ export {};
@@ -0,0 +1,176 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AdminActionRepo = void 0;
4
+ const factory_1 = require("../factory");
5
+ const actionProcess_1 = require("./action/anyAction/actionProcess");
6
+ /**
7
+ * アクション管理リポジトリ
8
+ */
9
+ class AdminActionRepo extends actionProcess_1.ActionProcessRepo {
10
+ constructor(connection) {
11
+ super({ connection }, {
12
+ expireAfterSeconds: actionProcess_1.DEFAULT_EXPIRE_AFTER_SECONDS,
13
+ recipeExpireAfterSeconds: actionProcess_1.RECIPE_DEFAULT_EXPIRE_AFTER_SECONDS
14
+ });
15
+ }
16
+ /**
17
+ * 汎用アクション検索
18
+ */
19
+ async adminFindAnyActions(params, inclusion) {
20
+ return this.findAnyActions(params, inclusion);
21
+ }
22
+ /**
23
+ * 取引に対するアクションを検索する
24
+ */
25
+ async searchByPurpose(params) {
26
+ return (this.findAnyActionsByPurpose(params));
27
+ }
28
+ /**
29
+ * 注文番号から、注文に対するアクションを検索する
30
+ */
31
+ async searchByOrderNumber(params) {
32
+ const filter = {
33
+ $or: [
34
+ { 'object.orderNumber': { $exists: true, $eq: params.orderNumber } },
35
+ { 'purpose.orderNumber': { $exists: true, $eq: params.orderNumber } },
36
+ // consider inform returnAction(2025-01-22~)
37
+ { 'about.orderNumber': { $exists: true, $eq: params.orderNumber } },
38
+ // consider reserveAction,cancelReservationAction(2025-02-17~)
39
+ { 'instrument.orderNumber': { $exists: true, $eq: params.orderNumber } }
40
+ ]
41
+ };
42
+ const projection = {
43
+ _id: 0,
44
+ id: { $toString: '$_id' },
45
+ ...Object.fromEntries(actionProcess_1.AVAILABLE_PROJECT_FIELDS.map((key) => ([key, 1])))
46
+ };
47
+ const query = this.actionModel.find(filter, projection);
48
+ // .select({ __v: 0, createdAt: 0, updatedAt: 0 });
49
+ /* istanbul ignore else */
50
+ if (params.sort?.startDate !== undefined) {
51
+ query.sort({ startDate: params.sort.startDate });
52
+ }
53
+ return query
54
+ .lean() // 2024-08-26~
55
+ .exec();
56
+ }
57
+ /**
58
+ * 注文番号から、注文に対するアクションを削除する
59
+ */
60
+ async deleteActionsByOrderNumber(params) {
61
+ const { project, orderNumber } = params;
62
+ if (typeof project.id !== 'string' || project.id === '') {
63
+ throw new factory_1.factory.errors.ArgumentNull('project.id');
64
+ }
65
+ if (typeof orderNumber !== 'string' || orderNumber === '') {
66
+ throw new factory_1.factory.errors.ArgumentNull('orderNumber');
67
+ }
68
+ const filters = [
69
+ {
70
+ identifier: 'byObject',
71
+ filter: {
72
+ 'project.id': { $eq: project.id },
73
+ 'object.orderNumber': { $exists: true, $eq: orderNumber }
74
+ }
75
+ },
76
+ {
77
+ identifier: 'byPurpose',
78
+ filter: {
79
+ 'project.id': { $eq: project.id },
80
+ 'purpose.orderNumber': { $exists: true, $eq: orderNumber }
81
+ }
82
+ },
83
+ {
84
+ identifier: 'byAbout',
85
+ filter: {
86
+ 'project.id': { $eq: project.id },
87
+ 'about.orderNumber': { $exists: true, $eq: orderNumber }
88
+ }
89
+ },
90
+ {
91
+ identifier: 'byInstrument',
92
+ filter: {
93
+ 'project.id': { $eq: project.id },
94
+ 'instrument.orderNumber': { $exists: true, $eq: orderNumber }
95
+ }
96
+ },
97
+ ];
98
+ return Promise.all(filters.map(async ({ identifier, filter }) => {
99
+ return this.actionModel.deleteMany(filter)
100
+ .exec()
101
+ .then((result) => {
102
+ return {
103
+ identifier,
104
+ // n: result?.n,
105
+ // opTime: result.opTime,
106
+ // ok: result?.ok,
107
+ // operationTime,
108
+ deletedCount: result?.deletedCount
109
+ };
110
+ });
111
+ }));
112
+ }
113
+ async deleteByProject(params) {
114
+ await this.actionModel.deleteMany({
115
+ 'project.id': { $eq: params.project.id }
116
+ })
117
+ .exec();
118
+ }
119
+ /**
120
+ * 取引からアクションを削除する
121
+ */
122
+ async deleteActionsByTransactionId(params) {
123
+ const { project, transaction } = params;
124
+ if (typeof project.id !== 'string' || project.id === '') {
125
+ throw new factory_1.factory.errors.ArgumentNull('project.id');
126
+ }
127
+ if (typeof transaction.id !== 'string' || transaction.id === '') {
128
+ throw new factory_1.factory.errors.ArgumentNull('transaction.id ');
129
+ }
130
+ const filters = [
131
+ {
132
+ identifier: 'byPurpose',
133
+ filter: {
134
+ 'project.id': { $eq: project.id },
135
+ typeOf: { $in: params.typeOf.$in },
136
+ 'purpose.id': { $exists: true, $eq: transaction.id },
137
+ 'purpose.typeOf': { $exists: true, $eq: transaction.typeOf }
138
+ }
139
+ },
140
+ // instrumentによるアクション削除にも対応(2026-07-10~)
141
+ {
142
+ identifier: 'byInstrument',
143
+ filter: {
144
+ 'project.id': { $eq: project.id },
145
+ // typeOf: { $in: params.typeOf.$in }, // typOfでフィルターしない
146
+ 'instrument.id': { $exists: true, $eq: transaction.id },
147
+ 'instrument.typeOf': { $exists: true, $eq: transaction.typeOf }
148
+ }
149
+ }
150
+ ];
151
+ return Promise.all(filters.map(async ({ identifier, filter }) => {
152
+ return this.actionModel.deleteMany(filter)
153
+ .exec()
154
+ .then((result) => {
155
+ return {
156
+ identifier,
157
+ // n: result?.n,
158
+ // opTime: result.opTime,
159
+ // ok: result?.ok,
160
+ // operationTime,
161
+ deletedCount: result?.deletedCount
162
+ };
163
+ });
164
+ }));
165
+ }
166
+ getCursor(conditions, projection) {
167
+ return this.actionModel.find(conditions, projection)
168
+ .sort({ startDate: factory_1.factory.sortType.Descending })
169
+ .cursor();
170
+ }
171
+ async unsetUnnecessaryFields(params) {
172
+ return this.actionModel.updateMany(params.filter, { $unset: params.$unset }, { timestamps: false })
173
+ .exec();
174
+ }
175
+ }
176
+ exports.AdminActionRepo = AdminActionRepo;
@@ -0,0 +1,126 @@
1
+ import type { Connection, FilterQuery } from 'mongoose';
2
+ import { IDocType } from './mongoose/schemas/assetTransaction';
3
+ import { factory } from '../factory';
4
+ type AvailableAssetTransactionType = factory.assetTransactionType.CancelReservation | factory.assetTransactionType.Pay | factory.assetTransactionType.Refund | factory.assetTransactionType.Reserve;
5
+ /**
6
+ * 資産取引管理リポジトリ
7
+ */
8
+ export declare class AdminAssetTransactionRepo {
9
+ private readonly transactionModel;
10
+ constructor(connection: Connection);
11
+ static CREATE_MONGO_CONDITIONS(params: factory.assetTransaction.ISearchConditions<factory.assetTransactionType>): FilterQuery<import("@chevre/factory/lib/chevre/assetTransaction/cancelReservation").ITransaction | import("@chevre/factory/lib/chevre/assetTransaction/pay").ITransaction | import("@chevre/factory/lib/chevre/assetTransaction/refund").ITransaction | import("@chevre/factory/lib/chevre/assetTransaction/reserve").ITransaction>[];
12
+ countPotentiallyExportTasks(params: {
13
+ endDate: {
14
+ $lt: Date;
15
+ };
16
+ limit?: number;
17
+ }): Promise<{
18
+ count: number;
19
+ }>;
20
+ /**
21
+ * tasksExportAction.actionStatusがActiveActionStatusのまま一定時間経過した取引について
22
+ * PotentialActionStatusに変更する
23
+ * 2025-03-10~
24
+ */
25
+ reExportAction(params: {
26
+ startDate: {
27
+ $lt: Date;
28
+ };
29
+ }): Promise<import("mongoose").UpdateWriteOpResult>;
30
+ /**
31
+ * add(2025-03-17~)
32
+ */
33
+ countPotentiallyExpired(params: {
34
+ expires: {
35
+ $lt: Date;
36
+ };
37
+ limit?: number;
38
+ }): Promise<{
39
+ count: number;
40
+ }>;
41
+ /**
42
+ * add(2025-03-12~)
43
+ */
44
+ makeOneExpiredIfExists(params: {
45
+ expires: {
46
+ $lt: Date;
47
+ };
48
+ }): Promise<Pick<factory.assetTransaction.ITransaction<factory.assetTransactionType>, 'id' | 'typeOf'> | undefined>;
49
+ countAssetTransactions<T extends factory.assetTransactionType>(params: factory.assetTransaction.ISearchConditions<T>): Promise<{
50
+ count: number;
51
+ }>;
52
+ /**
53
+ * 取引を検索する
54
+ */
55
+ findAssetTransactions<T extends AvailableAssetTransactionType>(params: factory.assetTransaction.ISearchConditions<T>, inclusion?: string[], exclusion?: string[]): Promise<factory.assetTransaction.ITransaction<T>[]>;
56
+ getCursor(conditions: any, projection: any): import("mongoose").Cursor<import("mongoose").Document<unknown, Record<string, never>, IDocType, import("./mongoose/virtuals").IVirtuals, {}> & ((import("@chevre/factory/lib/chevre/assetTransaction/cancelReservation").IAttributes & {
57
+ id: string;
58
+ } & {
59
+ seller?: any;
60
+ } & {
61
+ _id: import("mongoose").Types.ObjectId;
62
+ } & {
63
+ __v: number;
64
+ }) | (import("@chevre/factory/lib/chevre/assetTransaction/pay").IAttributes & {
65
+ id: string;
66
+ } & {
67
+ seller?: any;
68
+ } & {
69
+ _id: import("mongoose").Types.ObjectId;
70
+ } & {
71
+ __v: number;
72
+ }) | (import("@chevre/factory/lib/chevre/assetTransaction/refund").IAttributes & {
73
+ id: string;
74
+ } & {
75
+ seller?: any;
76
+ } & {
77
+ _id: import("mongoose").Types.ObjectId;
78
+ } & {
79
+ __v: number;
80
+ }) | (import("@chevre/factory/lib/chevre/assetTransaction/reserve").IAttributes & {
81
+ id: string;
82
+ } & {
83
+ seller?: any;
84
+ } & {
85
+ _id: import("mongoose").Types.ObjectId;
86
+ } & {
87
+ __v: number;
88
+ })), import("mongoose").QueryOptions<IDocType>, (import("mongoose").Document<unknown, Record<string, never>, IDocType, import("./mongoose/virtuals").IVirtuals, {}> & ((import("@chevre/factory/lib/chevre/assetTransaction/cancelReservation").IAttributes & {
89
+ id: string;
90
+ } & {
91
+ seller?: any;
92
+ } & {
93
+ _id: import("mongoose").Types.ObjectId;
94
+ } & {
95
+ __v: number;
96
+ }) | (import("@chevre/factory/lib/chevre/assetTransaction/pay").IAttributes & {
97
+ id: string;
98
+ } & {
99
+ seller?: any;
100
+ } & {
101
+ _id: import("mongoose").Types.ObjectId;
102
+ } & {
103
+ __v: number;
104
+ }) | (import("@chevre/factory/lib/chevre/assetTransaction/refund").IAttributes & {
105
+ id: string;
106
+ } & {
107
+ seller?: any;
108
+ } & {
109
+ _id: import("mongoose").Types.ObjectId;
110
+ } & {
111
+ __v: number;
112
+ }) | (import("@chevre/factory/lib/chevre/assetTransaction/reserve").IAttributes & {
113
+ id: string;
114
+ } & {
115
+ seller?: any;
116
+ } & {
117
+ _id: import("mongoose").Types.ObjectId;
118
+ } & {
119
+ __v: number;
120
+ }))) | null>;
121
+ unsetUnnecessaryFields(params: {
122
+ filter: any;
123
+ $unset: any;
124
+ }): Promise<import("mongoose").UpdateWriteOpResult>;
125
+ }
126
+ export {};