@chevre/domain 15.65.0-alpha.9 → 20.0.0-alpha.1

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 (900) hide show
  1. package/README.md +26 -19
  2. package/example/src/chevre/accountBlanceTest.ts +24 -0
  3. package/example/src/chevre/aggregateAllEvents.ts +55 -0
  4. package/example/src/chevre/aggregateAllEvents2.ts +52 -0
  5. package/example/src/chevre/aggregateReservationOnProject.ts +32 -0
  6. package/example/src/chevre/assetTransaction/searchGMOTrade.ts +27 -0
  7. package/example/src/chevre/checkOffersAppliesToMovieTicket.ts +56 -0
  8. package/example/src/chevre/checkOrderMembershipTasks.ts +127 -0
  9. package/example/src/chevre/cleanAccountingReports.ts +57 -0
  10. package/example/src/chevre/copyRedisKeys.ts +102 -0
  11. package/example/src/chevre/createSeats.ts +59 -0
  12. package/example/src/chevre/csv2json.ts +57 -0
  13. package/example/src/chevre/deleteEvents.ts +42 -0
  14. package/example/src/chevre/eventCatalog2eventService.ts +123 -0
  15. package/example/src/chevre/importEventsFromCOA.ts +37 -0
  16. package/example/src/chevre/importOffersFromCOA.ts +36 -0
  17. package/example/src/chevre/manageOwnedByOfOwnershipInfo.ts +35 -0
  18. package/example/src/chevre/migrateCognitoUser.ts +137 -0
  19. package/example/src/chevre/migrateEventOffersItemOfferedName.ts +82 -0
  20. package/example/src/chevre/migrateMovieTicketChargePriceSpecs.ts +92 -0
  21. package/example/src/chevre/migrateOwnershipInfos2newUserPool.ts +149 -0
  22. package/example/src/chevre/migrateSection.ts +105 -0
  23. package/example/src/chevre/migrateSellerMakesOffers.ts +84 -0
  24. package/example/src/chevre/migrateTTTSOldEventId.ts +68 -0
  25. package/example/src/chevre/ownershipInfosCsv2peopleJson.ts +182 -0
  26. package/example/src/chevre/person/getUserAttributes.ts +24 -0
  27. package/example/src/chevre/person/search.ts +46 -0
  28. package/example/src/chevre/person/updateProfile.ts +47 -0
  29. package/example/src/chevre/processPay.ts +81 -0
  30. package/example/src/chevre/processRegisterMembership.ts +129 -0
  31. package/example/src/chevre/processRegisterPaymentCard.ts +117 -0
  32. package/example/src/chevre/processReserve.ts +107 -0
  33. package/example/src/chevre/publishConfirmationNumber.ts +30 -0
  34. package/example/src/chevre/publishServiceOutputIdentifier.ts +28 -0
  35. package/example/src/chevre/publishTransactionNumber.ts +28 -0
  36. package/example/src/chevre/renameTransaction.ts +22 -0
  37. package/example/src/chevre/retryTasks.ts +69 -0
  38. package/example/src/chevre/searchAcceptedOfferIds.ts +23 -0
  39. package/example/src/chevre/searchEvents.ts +41 -0
  40. package/example/src/chevre/searchOffers.ts +34 -0
  41. package/example/src/chevre/searchOrders.ts +35 -0
  42. package/example/src/chevre/searchOrdersWithUnwoundOffers.ts +35 -0
  43. package/example/src/chevre/searchReservationNumbersByOrderNumbers.ts +22 -0
  44. package/example/src/chevre/transaction/callOrderMembershipServiceTask.ts +66 -0
  45. package/example/src/chevre/transaction/findCreditCard.ts +31 -0
  46. package/example/src/chevre/transaction/findPaymentCardPermit.ts +29 -0
  47. package/example/src/chevre/transaction/orderMembershipService.ts +106 -0
  48. package/example/src/customSearch.ts +48 -0
  49. package/example/src/handlePhoneNumber.ts +13 -0
  50. package/lib/chevre/credentials.d.ts +44 -0
  51. package/lib/chevre/credentials.js +50 -0
  52. package/lib/chevre/emailMessageBuilder.d.ts +29 -0
  53. package/lib/chevre/emailMessageBuilder.js +252 -0
  54. package/lib/chevre/errorHandler.d.ts +24 -0
  55. package/lib/chevre/errorHandler.js +160 -0
  56. package/lib/chevre/factory/accountTransactionIdentifier.d.ts +54 -0
  57. package/lib/chevre/factory/accountTransactionIdentifier.js +28 -0
  58. package/lib/chevre/factory/availableProductTypes.d.ts +1 -0
  59. package/lib/chevre/factory/availableProductTypes.js +8 -0
  60. package/lib/chevre/factory/order.d.ts +6 -0
  61. package/lib/chevre/factory/order.js +16 -0
  62. package/lib/{factory.d.ts → chevre/factory.d.ts} +0 -0
  63. package/lib/chevre/factory.js +20 -0
  64. package/lib/chevre/index.d.ts +15 -0
  65. package/lib/chevre/index.js +28 -0
  66. package/lib/chevre/pecorinoapi.d.ts +6 -0
  67. package/lib/chevre/pecorinoapi.js +9 -0
  68. package/lib/chevre/repo/account.d.ts +137 -0
  69. package/lib/chevre/repo/account.js +423 -0
  70. package/lib/chevre/repo/accountAction.d.ts +60 -0
  71. package/lib/chevre/repo/accountAction.js +427 -0
  72. package/lib/chevre/repo/accountTitle.d.ts +13 -0
  73. package/lib/chevre/repo/accountTitle.js +31 -0
  74. package/lib/chevre/repo/accountTransaction.d.ts +81 -0
  75. package/lib/chevre/repo/accountTransaction.js +328 -0
  76. package/lib/chevre/repo/accountingReport.d.ts +33 -0
  77. package/lib/chevre/repo/accountingReport.js +55 -0
  78. package/lib/chevre/repo/action/registerServiceInProgress.d.ts +29 -0
  79. package/lib/chevre/repo/action/registerServiceInProgress.js +95 -0
  80. package/lib/chevre/repo/action.d.ts +110 -0
  81. package/lib/chevre/repo/action.js +670 -0
  82. package/lib/chevre/repo/assetTransaction.d.ts +126 -0
  83. package/lib/chevre/repo/assetTransaction.js +540 -0
  84. package/lib/chevre/repo/categoryCode.d.ts +36 -0
  85. package/lib/chevre/repo/categoryCode.js +232 -0
  86. package/lib/chevre/repo/code.d.ts +58 -0
  87. package/lib/chevre/repo/code.js +255 -0
  88. package/lib/chevre/repo/confirmationNumber.d.ts +16 -0
  89. package/lib/chevre/repo/confirmationNumber.js +97 -0
  90. package/lib/chevre/repo/creativeWork.d.ts +36 -0
  91. package/lib/chevre/repo/creativeWork.js +252 -0
  92. package/lib/chevre/repo/customer.d.ts +24 -0
  93. package/lib/chevre/repo/customer.js +134 -0
  94. package/lib/chevre/repo/emailMessage.d.ts +37 -0
  95. package/lib/chevre/repo/emailMessage.js +122 -0
  96. package/lib/chevre/repo/event.d.ts +104 -0
  97. package/lib/chevre/repo/event.js +632 -0
  98. package/lib/chevre/repo/itemAvailability/screeningEvent.d.ts +75 -0
  99. package/lib/{repo → chevre/repo}/itemAvailability/screeningEvent.js +0 -0
  100. package/lib/chevre/repo/member.d.ts +63 -0
  101. package/lib/chevre/repo/member.js +234 -0
  102. package/lib/chevre/repo/merchantReturnPolicy.d.ts +25 -0
  103. package/lib/chevre/repo/merchantReturnPolicy.js +167 -0
  104. package/lib/chevre/repo/mongoose/model/account.d.ts +7 -0
  105. package/lib/chevre/repo/mongoose/model/account.js +70 -0
  106. package/lib/chevre/repo/mongoose/model/accountAction.d.ts +7 -0
  107. package/lib/chevre/repo/mongoose/model/accountAction.js +177 -0
  108. package/lib/chevre/repo/mongoose/model/accountTitle.d.ts +7 -0
  109. package/lib/chevre/repo/mongoose/model/accountTitle.js +110 -0
  110. package/lib/chevre/repo/mongoose/model/accountTransaction.d.ts +7 -0
  111. package/lib/chevre/repo/mongoose/model/accountTransaction.js +126 -0
  112. package/lib/chevre/repo/mongoose/model/accountingReport.d.ts +7 -0
  113. package/lib/{repo → chevre/repo}/mongoose/model/accountingReport.js +0 -0
  114. package/lib/chevre/repo/mongoose/model/action.d.ts +7 -0
  115. package/lib/chevre/repo/mongoose/model/action.js +244 -0
  116. package/lib/chevre/repo/mongoose/model/assetTransaction.d.ts +7 -0
  117. package/lib/chevre/repo/mongoose/model/assetTransaction.js +182 -0
  118. package/lib/chevre/repo/mongoose/model/authorization.d.ts +7 -0
  119. package/lib/chevre/repo/mongoose/model/authorization.js +105 -0
  120. package/lib/chevre/repo/mongoose/model/categoryCode.d.ts +7 -0
  121. package/lib/chevre/repo/mongoose/model/categoryCode.js +83 -0
  122. package/lib/chevre/repo/mongoose/model/creativeWork.d.ts +7 -0
  123. package/lib/chevre/repo/mongoose/model/creativeWork.js +123 -0
  124. package/lib/chevre/repo/mongoose/model/customer.d.ts +7 -0
  125. package/lib/{repo → chevre/repo}/mongoose/model/customer.js +0 -0
  126. package/lib/chevre/repo/mongoose/model/emailMessages.d.ts +7 -0
  127. package/lib/{repo → chevre/repo}/mongoose/model/emailMessages.js +0 -0
  128. package/lib/chevre/repo/mongoose/model/event.d.ts +7 -0
  129. package/lib/chevre/repo/mongoose/model/event.js +233 -0
  130. package/lib/chevre/repo/mongoose/model/member.d.ts +7 -0
  131. package/lib/{repo → chevre/repo}/mongoose/model/member.js +0 -0
  132. package/lib/chevre/repo/mongoose/model/merchantReturnPolicy.d.ts +7 -0
  133. package/lib/chevre/repo/mongoose/model/merchantReturnPolicy.js +58 -0
  134. package/lib/chevre/repo/mongoose/model/offer.d.ts +7 -0
  135. package/lib/chevre/repo/mongoose/model/offer.js +201 -0
  136. package/lib/chevre/repo/mongoose/model/offerCatalog.d.ts +7 -0
  137. package/lib/chevre/repo/mongoose/model/offerCatalog.js +74 -0
  138. package/lib/chevre/repo/mongoose/model/order.d.ts +7 -0
  139. package/lib/chevre/repo/mongoose/model/order.js +309 -0
  140. package/lib/chevre/repo/mongoose/model/ownershipInfo.d.ts +7 -0
  141. package/lib/chevre/repo/mongoose/model/ownershipInfo.js +172 -0
  142. package/lib/chevre/repo/mongoose/model/place.d.ts +7 -0
  143. package/lib/chevre/repo/mongoose/model/place.js +101 -0
  144. package/lib/chevre/repo/mongoose/model/priceSpecification.d.ts +7 -0
  145. package/lib/chevre/repo/mongoose/model/priceSpecification.js +133 -0
  146. package/lib/chevre/repo/mongoose/model/product.d.ts +7 -0
  147. package/lib/chevre/repo/mongoose/model/product.js +98 -0
  148. package/lib/chevre/repo/mongoose/model/project.d.ts +7 -0
  149. package/lib/{repo → chevre/repo}/mongoose/model/project.js +0 -0
  150. package/lib/chevre/repo/mongoose/model/reservation.d.ts +7 -0
  151. package/lib/chevre/repo/mongoose/model/reservation.js +303 -0
  152. package/lib/chevre/repo/mongoose/model/role.d.ts +7 -0
  153. package/lib/{repo → chevre/repo}/mongoose/model/role.js +0 -0
  154. package/lib/chevre/repo/mongoose/model/seller.d.ts +7 -0
  155. package/lib/chevre/repo/mongoose/model/seller.js +86 -0
  156. package/lib/chevre/repo/mongoose/model/serviceOutput.d.ts +7 -0
  157. package/lib/chevre/repo/mongoose/model/serviceOutput.js +106 -0
  158. package/lib/chevre/repo/mongoose/model/task.d.ts +7 -0
  159. package/lib/chevre/repo/mongoose/model/task.js +154 -0
  160. package/lib/chevre/repo/mongoose/model/telemetry.d.ts +7 -0
  161. package/lib/chevre/repo/mongoose/model/telemetry.js +93 -0
  162. package/lib/chevre/repo/mongoose/model/transaction.d.ts +7 -0
  163. package/lib/chevre/repo/mongoose/model/transaction.js +230 -0
  164. package/lib/chevre/repo/offer.d.ts +39 -0
  165. package/lib/chevre/repo/offer.js +450 -0
  166. package/lib/chevre/repo/offerCatalog.d.ts +25 -0
  167. package/lib/chevre/repo/offerCatalog.js +209 -0
  168. package/lib/chevre/repo/order.d.ts +79 -0
  169. package/lib/chevre/repo/order.js +924 -0
  170. package/lib/chevre/repo/orderNumber.d.ts +21 -0
  171. package/lib/chevre/repo/orderNumber.js +90 -0
  172. package/lib/chevre/repo/ownershipInfo.d.ts +102 -0
  173. package/lib/chevre/repo/ownershipInfo.js +443 -0
  174. package/lib/chevre/repo/paymentMethod/creditCard.d.ts +65 -0
  175. package/lib/{repo → chevre/repo}/paymentMethod/creditCard.js +0 -0
  176. package/lib/chevre/repo/permit.d.ts +42 -0
  177. package/lib/chevre/repo/permit.js +72 -0
  178. package/lib/chevre/repo/person.d.ts +76 -0
  179. package/lib/chevre/repo/person.js +441 -0
  180. package/lib/chevre/repo/place.d.ts +118 -0
  181. package/lib/chevre/repo/place.js +1040 -0
  182. package/lib/chevre/repo/priceSpecification.d.ts +34 -0
  183. package/lib/chevre/repo/priceSpecification.js +286 -0
  184. package/lib/chevre/repo/product.d.ts +51 -0
  185. package/lib/chevre/repo/product.js +277 -0
  186. package/lib/chevre/repo/project.d.ts +35 -0
  187. package/lib/chevre/repo/project.js +135 -0
  188. package/lib/chevre/repo/rateLimit/offer.d.ts +31 -0
  189. package/lib/{repo → chevre/repo}/rateLimit/offer.js +0 -0
  190. package/lib/chevre/repo/reservation.d.ts +104 -0
  191. package/lib/chevre/repo/reservation.js +1063 -0
  192. package/lib/chevre/repo/role.d.ts +23 -0
  193. package/lib/chevre/repo/role.js +113 -0
  194. package/lib/chevre/repo/seller.d.ts +44 -0
  195. package/lib/chevre/repo/seller.js +215 -0
  196. package/lib/chevre/repo/serviceOutput.d.ts +32 -0
  197. package/lib/chevre/repo/serviceOutput.js +173 -0
  198. package/lib/chevre/repo/serviceOutputIdentifier.d.ts +15 -0
  199. package/lib/{repo → chevre/repo}/serviceOutputIdentifier.js +0 -0
  200. package/lib/chevre/repo/task.d.ts +42 -0
  201. package/lib/chevre/repo/task.js +316 -0
  202. package/lib/{repo → chevre/repo}/telemetry.d.ts +0 -0
  203. package/lib/{repo → chevre/repo}/telemetry.js +0 -0
  204. package/lib/chevre/repo/transaction.d.ts +132 -0
  205. package/lib/chevre/repo/transaction.js +589 -0
  206. package/lib/chevre/repo/transactionNumber.d.ts +19 -0
  207. package/lib/chevre/repo/transactionNumber.js +89 -0
  208. package/lib/chevre/repository.d.ts +191 -0
  209. package/lib/chevre/repository.js +240 -0
  210. package/lib/chevre/service/account.d.ts +71 -0
  211. package/lib/chevre/service/account.js +147 -0
  212. package/lib/{service → chevre/service}/accountTransaction/deposit.d.ts +0 -0
  213. package/lib/chevre/service/accountTransaction/deposit.js +74 -0
  214. package/lib/{service → chevre/service}/accountTransaction/factory.d.ts +0 -0
  215. package/lib/chevre/service/accountTransaction/factory.js +106 -0
  216. package/lib/chevre/service/accountTransaction/transfer.d.ts +16 -0
  217. package/lib/chevre/service/accountTransaction/transfer.js +106 -0
  218. package/lib/chevre/service/accountTransaction/withdraw.d.ts +16 -0
  219. package/lib/chevre/service/accountTransaction/withdraw.js +85 -0
  220. package/lib/chevre/service/accountTransaction.d.ts +20 -0
  221. package/lib/chevre/service/accountTransaction.js +60 -0
  222. package/lib/chevre/service/aggregation/event/aggregateScreeningEvent.d.ts +30 -0
  223. package/lib/chevre/service/aggregation/event/aggregateScreeningEvent.js +447 -0
  224. package/lib/chevre/service/aggregation/event/aggregateUseActionsOnEvent.d.ts +15 -0
  225. package/lib/chevre/service/aggregation/event/aggregateUseActionsOnEvent.js +170 -0
  226. package/lib/chevre/service/aggregation/event/importFromCOA.d.ts +16 -0
  227. package/lib/chevre/service/aggregation/event/importFromCOA.js +104 -0
  228. package/lib/chevre/service/aggregation/event.d.ts +7 -0
  229. package/lib/chevre/service/aggregation/event.js +12 -0
  230. package/lib/{service → chevre/service}/aggregation/project.d.ts +0 -0
  231. package/lib/chevre/service/aggregation/project.js +122 -0
  232. package/lib/{service → chevre/service}/aggregation.d.ts +0 -0
  233. package/lib/{service → chevre/service}/aggregation.js +0 -0
  234. package/lib/chevre/service/assetTransaction/cancelReservation/factory.d.ts +14 -0
  235. package/lib/chevre/service/assetTransaction/cancelReservation/factory.js +74 -0
  236. package/lib/chevre/service/assetTransaction/cancelReservation.d.ts +35 -0
  237. package/lib/chevre/service/assetTransaction/cancelReservation.js +243 -0
  238. package/lib/{service/transaction → chevre/service/assetTransaction}/moneyTransfer/potentialActions.d.ts +0 -0
  239. package/lib/chevre/service/assetTransaction/moneyTransfer/potentialActions.js +117 -0
  240. package/lib/chevre/service/assetTransaction/moneyTransfer.d.ts +49 -0
  241. package/lib/chevre/service/assetTransaction/moneyTransfer.js +433 -0
  242. package/lib/chevre/service/assetTransaction/pay/account/validation.d.ts +8 -0
  243. package/lib/chevre/service/assetTransaction/pay/account/validation.js +50 -0
  244. package/lib/chevre/service/assetTransaction/pay/factory.d.ts +10 -0
  245. package/lib/chevre/service/assetTransaction/pay/factory.js +98 -0
  246. package/lib/chevre/service/assetTransaction/pay/movieTicket/validation.d.ts +14 -0
  247. package/lib/chevre/service/assetTransaction/pay/movieTicket/validation.js +79 -0
  248. package/lib/chevre/service/assetTransaction/pay/potentialActions.d.ts +10 -0
  249. package/lib/chevre/service/assetTransaction/pay/potentialActions.js +261 -0
  250. package/lib/chevre/service/assetTransaction/pay.d.ts +112 -0
  251. package/lib/chevre/service/assetTransaction/pay.js +480 -0
  252. package/lib/chevre/service/assetTransaction/refund/factory.d.ts +10 -0
  253. package/lib/chevre/service/assetTransaction/refund/factory.js +53 -0
  254. package/lib/{service/transaction → chevre/service/assetTransaction}/refund/potentialActions.d.ts +0 -0
  255. package/lib/chevre/service/assetTransaction/refund/potentialActions.js +78 -0
  256. package/lib/chevre/service/assetTransaction/refund.d.ts +46 -0
  257. package/lib/chevre/service/assetTransaction/refund.js +229 -0
  258. package/lib/chevre/service/assetTransaction/registerService/factory.d.ts +19 -0
  259. package/lib/chevre/service/assetTransaction/registerService/factory.js +128 -0
  260. package/lib/{service/transaction → chevre/service/assetTransaction}/registerService/potentialActions.d.ts +0 -0
  261. package/lib/chevre/service/assetTransaction/registerService/potentialActions.js +140 -0
  262. package/lib/chevre/service/assetTransaction/registerService.d.ts +49 -0
  263. package/lib/chevre/service/assetTransaction/registerService.js +306 -0
  264. package/lib/chevre/service/assetTransaction/reserve/factory/price.d.ts +14 -0
  265. package/lib/chevre/service/assetTransaction/reserve/factory/price.js +198 -0
  266. package/lib/chevre/service/assetTransaction/reserve/factory.d.ts +74 -0
  267. package/lib/chevre/service/assetTransaction/reserve/factory.js +554 -0
  268. package/lib/chevre/service/assetTransaction/reserve.d.ts +83 -0
  269. package/lib/chevre/service/assetTransaction/reserve.js +801 -0
  270. package/lib/chevre/service/assetTransaction.d.ts +36 -0
  271. package/lib/chevre/service/assetTransaction.js +87 -0
  272. package/lib/chevre/service/code.d.ts +36 -0
  273. package/lib/chevre/service/code.js +146 -0
  274. package/lib/chevre/service/delivery/factory.d.ts +8 -0
  275. package/lib/chevre/service/delivery/factory.js +111 -0
  276. package/lib/chevre/service/delivery/product/factory.d.ts +13 -0
  277. package/lib/chevre/service/delivery/product/factory.js +67 -0
  278. package/lib/chevre/service/delivery/reservation/factory.d.ts +13 -0
  279. package/lib/chevre/service/delivery/reservation/factory.js +54 -0
  280. package/lib/chevre/service/delivery.d.ts +28 -0
  281. package/lib/chevre/service/delivery.js +273 -0
  282. package/lib/chevre/service/event.d.ts +72 -0
  283. package/lib/chevre/service/event.js +744 -0
  284. package/lib/{service → chevre/service}/iam.d.ts +0 -0
  285. package/lib/{service → chevre/service}/iam.js +0 -0
  286. package/lib/chevre/service/moneyTransfer.d.ts +76 -0
  287. package/lib/chevre/service/moneyTransfer.js +602 -0
  288. package/lib/chevre/service/notification/factory.d.ts +12 -0
  289. package/lib/chevre/service/notification/factory.js +57 -0
  290. package/lib/{service → chevre/service}/notification.d.ts +0 -0
  291. package/lib/chevre/service/notification.js +211 -0
  292. package/lib/chevre/service/offer/event/authorize.d.ts +60 -0
  293. package/lib/chevre/service/offer/event/authorize.js +387 -0
  294. package/lib/chevre/service/offer/event/cancel.d.ts +44 -0
  295. package/lib/chevre/service/offer/event/cancel.js +46 -0
  296. package/lib/chevre/service/offer/event/factory.d.ts +42 -0
  297. package/lib/chevre/service/offer/event/factory.js +320 -0
  298. package/lib/chevre/service/offer/event/importFromCOA.d.ts +13 -0
  299. package/lib/chevre/service/offer/event/importFromCOA.js +64 -0
  300. package/lib/chevre/service/offer/event/searchEventTicketOffers.d.ts +76 -0
  301. package/lib/chevre/service/offer/event/searchEventTicketOffers.js +317 -0
  302. package/lib/chevre/service/offer/event/voidTransaction.d.ts +22 -0
  303. package/lib/chevre/service/offer/event/voidTransaction.js +123 -0
  304. package/lib/chevre/service/offer/event.d.ts +6 -0
  305. package/lib/chevre/service/offer/event.js +13 -0
  306. package/lib/chevre/service/offer/eventServiceByCOA/factory.d.ts +25 -0
  307. package/lib/chevre/service/offer/eventServiceByCOA/factory.js +223 -0
  308. package/lib/chevre/service/offer/eventServiceByCOA.d.ts +83 -0
  309. package/lib/chevre/service/offer/eventServiceByCOA.js +258 -0
  310. package/lib/chevre/service/offer/factory.d.ts +12 -0
  311. package/lib/chevre/service/offer/factory.js +58 -0
  312. package/lib/chevre/service/offer/moneyTransfer/authorize.d.ts +28 -0
  313. package/lib/chevre/service/offer/moneyTransfer/authorize.js +181 -0
  314. package/lib/chevre/service/offer/moneyTransfer/returnMoneyTransfer.d.ts +16 -0
  315. package/lib/chevre/service/offer/moneyTransfer/returnMoneyTransfer.js +83 -0
  316. package/lib/chevre/service/offer/moneyTransfer/settleTransaction.d.ts +7 -0
  317. package/lib/chevre/service/offer/moneyTransfer/settleTransaction.js +35 -0
  318. package/lib/chevre/service/offer/moneyTransfer/voidTransaction.d.ts +9 -0
  319. package/lib/chevre/service/offer/moneyTransfer/voidTransaction.js +66 -0
  320. package/lib/chevre/service/offer/moneyTransfer.d.ts +5 -0
  321. package/lib/chevre/service/offer/moneyTransfer.js +11 -0
  322. package/lib/chevre/service/offer/product/factory.d.ts +24 -0
  323. package/lib/chevre/service/offer/product/factory.js +125 -0
  324. package/lib/chevre/service/offer/product/searchProductOffers.d.ts +14 -0
  325. package/lib/chevre/service/offer/product/searchProductOffers.js +46 -0
  326. package/lib/chevre/service/offer/product.d.ts +97 -0
  327. package/lib/chevre/service/offer/product.js +419 -0
  328. package/lib/chevre/service/offer.d.ts +80 -0
  329. package/lib/chevre/service/offer.js +253 -0
  330. package/lib/chevre/service/order/createAccountingReportIfNotExist.d.ts +5 -0
  331. package/lib/chevre/service/order/createAccountingReportIfNotExist.js +78 -0
  332. package/lib/chevre/service/order/deleteOrder.d.ts +16 -0
  333. package/lib/chevre/service/order/deleteOrder.js +75 -0
  334. package/lib/chevre/service/order/findPlaceOrderTransaction.d.ts +11 -0
  335. package/lib/chevre/service/order/findPlaceOrderTransaction.js +37 -0
  336. package/lib/chevre/service/order/onOrderStatusChanged/factory.d.ts +20 -0
  337. package/lib/chevre/service/order/onOrderStatusChanged/factory.js +284 -0
  338. package/lib/chevre/service/order/onOrderStatusChanged.d.ts +14 -0
  339. package/lib/chevre/service/order/onOrderStatusChanged.js +363 -0
  340. package/lib/chevre/service/order/placeOrder.d.ts +47 -0
  341. package/lib/chevre/service/order/placeOrder.js +248 -0
  342. package/lib/chevre/service/order/returnOrder.d.ts +26 -0
  343. package/lib/chevre/service/order/returnOrder.js +208 -0
  344. package/lib/chevre/service/order/sendOrder.d.ts +30 -0
  345. package/lib/chevre/service/order/sendOrder.js +179 -0
  346. package/lib/chevre/service/order.d.ts +9 -0
  347. package/lib/chevre/service/order.js +17 -0
  348. package/lib/chevre/service/payment/any/factory.d.ts +27 -0
  349. package/lib/chevre/service/payment/any/factory.js +147 -0
  350. package/lib/chevre/service/payment/any/onPaid.d.ts +16 -0
  351. package/lib/chevre/service/payment/any/onPaid.js +52 -0
  352. package/lib/chevre/service/payment/any/onPaymentStatusChanged/onPaid.d.ts +6 -0
  353. package/lib/chevre/service/payment/any/onPaymentStatusChanged/onPaid.js +73 -0
  354. package/lib/chevre/service/payment/any/onPaymentStatusChanged/onRefunded.d.ts +6 -0
  355. package/lib/chevre/service/payment/any/onPaymentStatusChanged/onRefunded.js +49 -0
  356. package/lib/chevre/service/payment/any/onPaymentStatusChanged.d.ts +10 -0
  357. package/lib/chevre/service/payment/any/onPaymentStatusChanged.js +94 -0
  358. package/lib/chevre/service/payment/any/onRefund.d.ts +16 -0
  359. package/lib/chevre/service/payment/any/onRefund.js +98 -0
  360. package/lib/chevre/service/payment/any/person2username.d.ts +3 -0
  361. package/lib/chevre/service/payment/any/person2username.js +52 -0
  362. package/lib/chevre/service/payment/any.d.ts +105 -0
  363. package/lib/chevre/service/payment/any.js +293 -0
  364. package/lib/chevre/service/payment/creditCard.d.ts +79 -0
  365. package/lib/chevre/service/payment/creditCard.js +564 -0
  366. package/lib/chevre/service/payment/faceToFace.d.ts +32 -0
  367. package/lib/chevre/service/payment/faceToFace.js +68 -0
  368. package/lib/chevre/service/payment/movieTicket/factory.d.ts +14 -0
  369. package/lib/chevre/service/payment/movieTicket/factory.js +79 -0
  370. package/lib/chevre/service/payment/movieTicket.d.ts +89 -0
  371. package/lib/chevre/service/payment/movieTicket.js +589 -0
  372. package/lib/chevre/service/payment/paymentCard.d.ts +31 -0
  373. package/lib/chevre/service/payment/paymentCard.js +381 -0
  374. package/lib/chevre/service/payment.d.ts +46 -0
  375. package/lib/chevre/service/payment.js +91 -0
  376. package/lib/chevre/service/permit.d.ts +41 -0
  377. package/lib/chevre/service/permit.js +110 -0
  378. package/lib/{service → chevre/service}/product.d.ts +0 -0
  379. package/lib/chevre/service/product.js +84 -0
  380. package/lib/chevre/service/project.d.ts +57 -0
  381. package/lib/chevre/service/project.js +40 -0
  382. package/lib/chevre/service/report/ownershipInfo.d.ts +25 -0
  383. package/lib/chevre/service/report/ownershipInfo.js +34 -0
  384. package/lib/chevre/service/report/telemetry.d.ts +317 -0
  385. package/lib/chevre/service/report/telemetry.js +440 -0
  386. package/lib/chevre/service/report.d.ts +6 -0
  387. package/lib/chevre/service/report.js +10 -0
  388. package/lib/chevre/service/reserve/cancelReservation.d.ts +37 -0
  389. package/lib/chevre/service/reserve/cancelReservation.js +246 -0
  390. package/lib/chevre/service/reserve/checkInReservation.d.ts +29 -0
  391. package/lib/chevre/service/reserve/checkInReservation.js +40 -0
  392. package/lib/chevre/service/reserve/confirmReservation.d.ts +15 -0
  393. package/lib/chevre/service/reserve/confirmReservation.js +58 -0
  394. package/lib/chevre/service/reserve/factory.d.ts +51 -0
  395. package/lib/chevre/service/reserve/factory.js +15 -0
  396. package/lib/chevre/service/reserve/potentialActions/onReservationCanceled.d.ts +13 -0
  397. package/lib/chevre/service/reserve/potentialActions/onReservationCanceled.js +104 -0
  398. package/lib/chevre/service/reserve/potentialActions/onReservationCheckedIn.d.ts +25 -0
  399. package/lib/chevre/service/reserve/potentialActions/onReservationCheckedIn.js +125 -0
  400. package/lib/chevre/service/reserve/potentialActions/onReservationConfirmed.d.ts +16 -0
  401. package/lib/chevre/service/reserve/potentialActions/onReservationConfirmed.js +94 -0
  402. package/lib/chevre/service/reserve/potentialActions/onReservationUsed.d.ts +11 -0
  403. package/lib/chevre/service/reserve/potentialActions/onReservationUsed.js +141 -0
  404. package/lib/chevre/service/reserve/useReservation.d.ts +35 -0
  405. package/lib/chevre/service/reserve/useReservation.js +121 -0
  406. package/lib/chevre/service/reserve.d.ts +9 -0
  407. package/lib/chevre/service/reserve.js +17 -0
  408. package/lib/{service → chevre/service}/task/accountMoneyTransfer.d.ts +0 -0
  409. package/lib/chevre/service/task/accountMoneyTransfer.js +31 -0
  410. package/lib/{service → chevre/service}/task/aggregateScreeningEvent.d.ts +0 -0
  411. package/lib/chevre/service/task/aggregateScreeningEvent.js +45 -0
  412. package/lib/chevre/service/task/aggregateUseActionsOnEvent.d.ts +7 -0
  413. package/lib/chevre/service/task/aggregateUseActionsOnEvent.js +37 -0
  414. package/lib/{service → chevre/service}/task/cancelAccountMoneyTransfer.d.ts +0 -0
  415. package/lib/chevre/service/task/cancelAccountMoneyTransfer.js +33 -0
  416. package/lib/{service → chevre/service}/task/cancelMoneyTransfer.d.ts +0 -0
  417. package/lib/chevre/service/task/cancelMoneyTransfer.js +29 -0
  418. package/lib/{service → chevre/service}/task/cancelPendingReservation.d.ts +0 -0
  419. package/lib/chevre/service/task/cancelPendingReservation.js +45 -0
  420. package/lib/{service → chevre/service}/task/cancelReservation.d.ts +0 -0
  421. package/lib/chevre/service/task/cancelReservation.js +45 -0
  422. package/lib/chevre/service/task/confirmMoneyTransfer.d.ts +6 -0
  423. package/lib/chevre/service/task/confirmMoneyTransfer.js +29 -0
  424. package/lib/chevre/service/task/confirmPayTransaction.d.ts +6 -0
  425. package/lib/chevre/service/task/confirmPayTransaction.js +62 -0
  426. package/lib/chevre/service/task/confirmRegisterService.d.ts +6 -0
  427. package/lib/chevre/service/task/confirmRegisterService.js +29 -0
  428. package/lib/chevre/service/task/confirmRegisterServiceTransaction.d.ts +17 -0
  429. package/lib/chevre/service/task/confirmRegisterServiceTransaction.js +101 -0
  430. package/lib/chevre/service/task/confirmReserveTransaction.d.ts +17 -0
  431. package/lib/chevre/service/task/confirmReserveTransaction.js +96 -0
  432. package/lib/chevre/service/task/deleteAssetTransaction.d.ts +12 -0
  433. package/lib/chevre/service/task/deleteAssetTransaction.js +65 -0
  434. package/lib/chevre/service/task/deleteAuthorization.d.ts +6 -0
  435. package/lib/chevre/service/task/deleteAuthorization.js +29 -0
  436. package/lib/chevre/service/task/deleteOrder.d.ts +6 -0
  437. package/lib/chevre/service/task/deleteOrder.js +35 -0
  438. package/lib/chevre/service/task/deleteTransaction.d.ts +6 -0
  439. package/lib/chevre/service/task/deleteTransaction.js +35 -0
  440. package/lib/chevre/service/task/givePointAward.d.ts +6 -0
  441. package/lib/chevre/service/task/givePointAward.js +42 -0
  442. package/lib/{service → chevre/service}/task/importEventCapacitiesFromCOA.d.ts +0 -0
  443. package/lib/{service → chevre/service}/task/importEventCapacitiesFromCOA.js +0 -0
  444. package/lib/{service → chevre/service}/task/importEventsFromCOA.d.ts +0 -0
  445. package/lib/chevre/service/task/importEventsFromCOA.js +31 -0
  446. package/lib/{service → chevre/service}/task/importOffersFromCOA.d.ts +0 -0
  447. package/lib/chevre/service/task/importOffersFromCOA.js +40 -0
  448. package/lib/{service → chevre/service}/task/moneyTransfer.d.ts +0 -0
  449. package/lib/chevre/service/task/moneyTransfer.js +36 -0
  450. package/lib/chevre/service/task/orderProgramMembership.d.ts +6 -0
  451. package/lib/chevre/service/task/orderProgramMembership.js +98 -0
  452. package/lib/{service → chevre/service}/task/pay.d.ts +0 -0
  453. package/lib/chevre/service/task/pay.js +44 -0
  454. package/lib/chevre/service/task/placeOrder.d.ts +6 -0
  455. package/lib/chevre/service/task/placeOrder.js +45 -0
  456. package/lib/{service → chevre/service}/task/refund.d.ts +0 -0
  457. package/lib/chevre/service/task/refund.js +51 -0
  458. package/lib/{service → chevre/service}/task/registerService.d.ts +0 -0
  459. package/lib/{service → chevre/service}/task/registerService.js +0 -0
  460. package/lib/{service → chevre/service}/task/reserve.d.ts +0 -0
  461. package/lib/{service → chevre/service}/task/reserve.js +0 -0
  462. package/lib/chevre/service/task/returnMoneyTransfer.d.ts +6 -0
  463. package/lib/chevre/service/task/returnMoneyTransfer.js +42 -0
  464. package/lib/chevre/service/task/returnOrder.d.ts +6 -0
  465. package/lib/chevre/service/task/returnOrder.js +45 -0
  466. package/lib/chevre/service/task/returnPayTransaction.d.ts +6 -0
  467. package/lib/chevre/service/task/returnPayTransaction.js +220 -0
  468. package/lib/chevre/service/task/returnPointAward.d.ts +6 -0
  469. package/lib/chevre/service/task/returnPointAward.js +42 -0
  470. package/lib/chevre/service/task/returnReserveTransaction.d.ts +6 -0
  471. package/lib/chevre/service/task/returnReserveTransaction.js +123 -0
  472. package/lib/{service → chevre/service}/task/sendEmailMessage.d.ts +0 -0
  473. package/lib/{service → chevre/service}/task/sendEmailMessage.js +0 -0
  474. package/lib/chevre/service/task/sendOrder.d.ts +6 -0
  475. package/lib/chevre/service/task/sendOrder.js +45 -0
  476. package/lib/{service → chevre/service}/task/triggerWebhook.d.ts +0 -0
  477. package/lib/{service → chevre/service}/task/triggerWebhook.js +0 -0
  478. package/lib/chevre/service/task/voidMoneyTransferTransaction.d.ts +6 -0
  479. package/lib/chevre/service/task/voidMoneyTransferTransaction.js +32 -0
  480. package/lib/chevre/service/task/voidPayTransaction.d.ts +6 -0
  481. package/lib/chevre/service/task/voidPayTransaction.js +47 -0
  482. package/lib/{service → chevre/service}/task/voidPayment.d.ts +0 -0
  483. package/lib/chevre/service/task/voidPayment.js +41 -0
  484. package/lib/chevre/service/task/voidRegisterServiceTransaction.d.ts +6 -0
  485. package/lib/chevre/service/task/voidRegisterServiceTransaction.js +39 -0
  486. package/lib/chevre/service/task/voidReserveTransaction.d.ts +6 -0
  487. package/lib/chevre/service/task/voidReserveTransaction.js +45 -0
  488. package/lib/chevre/service/task.d.ts +47 -0
  489. package/lib/chevre/service/task.js +133 -0
  490. package/lib/chevre/service/transaction/moneyTransfer/exportTasks/factory.d.ts +8 -0
  491. package/lib/chevre/service/transaction/moneyTransfer/exportTasks/factory.js +87 -0
  492. package/lib/chevre/service/transaction/moneyTransfer/factory.d.ts +2 -0
  493. package/lib/chevre/service/transaction/moneyTransfer/factory.js +26 -0
  494. package/lib/chevre/service/transaction/moneyTransfer/potentialActions.d.ts +8 -0
  495. package/lib/chevre/service/transaction/moneyTransfer/potentialActions.js +72 -0
  496. package/lib/chevre/service/transaction/moneyTransfer.d.ts +63 -0
  497. package/lib/chevre/service/transaction/moneyTransfer.js +582 -0
  498. package/lib/chevre/service/transaction/orderProgramMembership/findCreditCard.d.ts +23 -0
  499. package/lib/chevre/service/transaction/orderProgramMembership/findCreditCard.js +132 -0
  500. package/lib/chevre/service/transaction/orderProgramMembership/findPaymentCardPermit.d.ts +26 -0
  501. package/lib/chevre/service/transaction/orderProgramMembership/findPaymentCardPermit.js +65 -0
  502. package/lib/chevre/service/transaction/orderProgramMembership.d.ts +50 -0
  503. package/lib/chevre/service/transaction/orderProgramMembership.js +340 -0
  504. package/lib/chevre/service/transaction/placeOrder/exportTasks/factory.d.ts +8 -0
  505. package/lib/chevre/service/transaction/placeOrder/exportTasks/factory.js +156 -0
  506. package/lib/chevre/service/transaction/placeOrder.d.ts +16 -0
  507. package/lib/chevre/service/transaction/placeOrder.js +44 -0
  508. package/lib/chevre/service/transaction/placeOrderInProgress/factory.d.ts +2 -0
  509. package/lib/chevre/service/transaction/placeOrderInProgress/factory.js +29 -0
  510. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/confirmPay.d.ts +6 -0
  511. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/confirmPay.js +65 -0
  512. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/confirmReservation.d.ts +11 -0
  513. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/confirmReservation.js +187 -0
  514. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/givePointAward.d.ts +5 -0
  515. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/givePointAward.js +64 -0
  516. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/moneyTransfer.d.ts +6 -0
  517. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/moneyTransfer.js +84 -0
  518. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/registerService.d.ts +5 -0
  519. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/registerService.js +160 -0
  520. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/sendEmailMessage.d.ts +7 -0
  521. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/sendEmailMessage.js +61 -0
  522. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions.d.ts +12 -0
  523. package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions.js +90 -0
  524. package/lib/chevre/service/transaction/placeOrderInProgress/result/acceptedOffers.d.ts +22 -0
  525. package/lib/chevre/service/transaction/placeOrderInProgress/result/acceptedOffers.js +152 -0
  526. package/lib/chevre/service/transaction/placeOrderInProgress/result.d.ts +12 -0
  527. package/lib/chevre/service/transaction/placeOrderInProgress/result.js +94 -0
  528. package/lib/chevre/service/transaction/placeOrderInProgress/validation/validateMovieTicket.d.ts +5 -0
  529. package/lib/chevre/service/transaction/placeOrderInProgress/validation/validateMovieTicket.js +178 -0
  530. package/lib/chevre/service/transaction/placeOrderInProgress/validation/validateSeller.d.ts +5 -0
  531. package/lib/chevre/service/transaction/placeOrderInProgress/validation/validateSeller.js +19 -0
  532. package/lib/chevre/service/transaction/placeOrderInProgress/validation.d.ts +49 -0
  533. package/lib/chevre/service/transaction/placeOrderInProgress/validation.js +247 -0
  534. package/lib/chevre/service/transaction/placeOrderInProgress.d.ts +143 -0
  535. package/lib/chevre/service/transaction/placeOrderInProgress.js +354 -0
  536. package/lib/chevre/service/transaction/returnOrder/exportTasks/factory.d.ts +8 -0
  537. package/lib/chevre/service/transaction/returnOrder/exportTasks/factory.js +71 -0
  538. package/lib/chevre/service/transaction/returnOrder/potentialActions/returnMoneyTransfer.d.ts +6 -0
  539. package/lib/chevre/service/transaction/returnOrder/potentialActions/returnMoneyTransfer.js +81 -0
  540. package/lib/chevre/service/transaction/returnOrder/potentialActions/returnPaymentMethod.d.ts +6 -0
  541. package/lib/chevre/service/transaction/returnOrder/potentialActions/returnPaymentMethod.js +192 -0
  542. package/lib/chevre/service/transaction/returnOrder/potentialActions/returnPointAward.d.ts +9 -0
  543. package/lib/chevre/service/transaction/returnOrder/potentialActions/returnPointAward.js +106 -0
  544. package/lib/chevre/service/transaction/returnOrder/potentialActions/sendEmailMessage.d.ts +6 -0
  545. package/lib/chevre/service/transaction/returnOrder/potentialActions/sendEmailMessage.js +60 -0
  546. package/lib/chevre/service/transaction/returnOrder/potentialActions.d.ts +13 -0
  547. package/lib/chevre/service/transaction/returnOrder/potentialActions.js +86 -0
  548. package/lib/chevre/service/transaction/returnOrder.d.ts +56 -0
  549. package/lib/chevre/service/transaction/returnOrder.js +385 -0
  550. package/lib/chevre/service/transaction/validation.d.ts +8 -0
  551. package/lib/chevre/service/transaction/validation.js +43 -0
  552. package/lib/chevre/service/transaction.d.ts +58 -0
  553. package/lib/chevre/service/transaction.js +265 -0
  554. package/lib/chevre/service/util.d.ts +19 -0
  555. package/lib/{service → chevre/service}/util.js +0 -0
  556. package/lib/chevre/service.d.ts +49 -0
  557. package/lib/chevre/service.js +55 -0
  558. package/lib/chevre/settings.d.ts +29 -0
  559. package/lib/chevre/settings.js +89 -0
  560. package/lib/index.d.ts +3 -54
  561. package/lib/index.js +5 -21
  562. package/package.json +44 -41
  563. package/CHANGELOG.md +0 -968
  564. package/example/.gitignore +0 -1
  565. package/example/aggregateAllEvents.js +0 -58
  566. package/example/aggregateOnProject.js +0 -34
  567. package/example/aggregateScreeningEvent.js +0 -39
  568. package/example/assetTransaction/invalidatePaymentUrl.js +0 -83
  569. package/example/assetTransaction/payCreditCard.js +0 -90
  570. package/example/assetTransaction/searchGMOTrade.js +0 -24
  571. package/example/cleanOwnershipInfos.js +0 -46
  572. package/example/cleanTasks.js +0 -34
  573. package/example/copyRedisKeys.js +0 -96
  574. package/example/createManyTasks.js +0 -42
  575. package/example/createSeats.js +0 -48
  576. package/example/createServiceOutputs.js +0 -123
  577. package/example/deleteProject.js +0 -34
  578. package/example/downloadReservationReport.js +0 -32
  579. package/example/downloadTransactions.js +0 -140
  580. package/example/expireTransactions.js +0 -51
  581. package/example/importEventCapacitiesFromCOA.js +0 -21
  582. package/example/importEventsFromCOA.js +0 -23
  583. package/example/importOffersFromCOA.js +0 -28
  584. package/example/initials/accountTitles.json +0 -2804
  585. package/example/initials/initializeAccountTitles.js +0 -22
  586. package/example/initials/screens.json +0 -12846
  587. package/example/initials/screensCsv2Json.js +0 -46
  588. package/example/lockIfNotLimitExceeded.js +0 -44
  589. package/example/lockOfferRateLimit.js +0 -42
  590. package/example/migrateAccount2permit.js +0 -63
  591. package/example/migrateAccount2serviceOutput.js +0 -95
  592. package/example/migrateAccountActions.js +0 -60
  593. package/example/migrateAccounts.js +0 -55
  594. package/example/migrateMovieDistributor.js +0 -51
  595. package/example/migrateOfferAvailableAtOrFrom.js +0 -64
  596. package/example/migrateOwnershipInfos.js +0 -69
  597. package/example/migratePaymentCardServiceOutput.js +0 -62
  598. package/example/migrateProductServiceType.js +0 -63
  599. package/example/migrateReservationIssuedThrough.js +0 -70
  600. package/example/migrateSalesReports.js +0 -76
  601. package/example/migrateSection.js +0 -101
  602. package/example/migrateServiceOutputOwnershipInfo2permit.js +0 -28
  603. package/example/momentTest.js +0 -9
  604. package/example/ownershipInfosCsv2peopleJson.js +0 -153
  605. package/example/processCancelReservation.js +0 -30
  606. package/example/processMoneyTransfer.js +0 -87
  607. package/example/processPayAccount.js +0 -154
  608. package/example/processPayCreditCard.js +0 -169
  609. package/example/processPayMGTicket.js +0 -82
  610. package/example/processPayMovieTicket.js +0 -192
  611. package/example/processRegisterMembership.js +0 -121
  612. package/example/processRegisterMoneyTransfer.js +0 -117
  613. package/example/processRegisterPaymentCard.js +0 -112
  614. package/example/projectPaymentServices2products.js +0 -59
  615. package/example/publishServiceOutputIdentifier.js +0 -22
  616. package/example/publishTransactionNumber.js +0 -22
  617. package/example/reIndex.js +0 -13
  618. package/example/readRedis.js +0 -49
  619. package/example/renameTransaction.js +0 -17
  620. package/example/rescheduleEvents.js +0 -58
  621. package/example/searcScreeningRooms.js +0 -63
  622. package/example/searchBugAccounts.js +0 -80
  623. package/example/searchEventItemAvailability.js +0 -42
  624. package/example/searchEventSeats.js +0 -28
  625. package/example/searchEvents.js +0 -30
  626. package/example/searchEventsOffers.js +0 -29
  627. package/example/searchOffers.js +0 -29
  628. package/example/searchPriceSpecifications.js +0 -25
  629. package/example/searchProducts.js +0 -36
  630. package/example/searchReservations.js +0 -52
  631. package/example/searchSellers.js +0 -22
  632. package/example/streamOwnershipInfos.js +0 -56
  633. package/example/unsetSellerLegalNames.js +0 -57
  634. package/example/updateEventOfferCatalogs.js +0 -55
  635. package/lib/credentials.d.ts +0 -39
  636. package/lib/credentials.js +0 -43
  637. package/lib/errorHandler.d.ts +0 -25
  638. package/lib/errorHandler.js +0 -155
  639. package/lib/factory.js +0 -16
  640. package/lib/repo/account.d.ts +0 -131
  641. package/lib/repo/account.js +0 -426
  642. package/lib/repo/accountAction.d.ts +0 -51
  643. package/lib/repo/accountAction.js +0 -412
  644. package/lib/repo/accountTitle.d.ts +0 -9
  645. package/lib/repo/accountTitle.js +0 -14
  646. package/lib/repo/accountTransaction.d.ts +0 -65
  647. package/lib/repo/accountTransaction.js +0 -268
  648. package/lib/repo/accountingReport.d.ts +0 -8
  649. package/lib/repo/accountingReport.js +0 -13
  650. package/lib/repo/action/registerServiceInProgress.d.ts +0 -29
  651. package/lib/repo/action/registerServiceInProgress.js +0 -95
  652. package/lib/repo/action.d.ts +0 -74
  653. package/lib/repo/action.js +0 -591
  654. package/lib/repo/assetTransaction.d.ts +0 -90
  655. package/lib/repo/assetTransaction.js +0 -415
  656. package/lib/repo/categoryCode.d.ts +0 -24
  657. package/lib/repo/categoryCode.js +0 -194
  658. package/lib/repo/code.d.ts +0 -40
  659. package/lib/repo/code.js +0 -240
  660. package/lib/repo/confirmationNumber.d.ts +0 -15
  661. package/lib/repo/confirmationNumber.js +0 -68
  662. package/lib/repo/creativeWork.d.ts +0 -35
  663. package/lib/repo/creativeWork.js +0 -214
  664. package/lib/repo/customer.d.ts +0 -24
  665. package/lib/repo/customer.js +0 -122
  666. package/lib/repo/emailMessage.d.ts +0 -37
  667. package/lib/repo/emailMessage.js +0 -110
  668. package/lib/repo/event.d.ts +0 -42
  669. package/lib/repo/event.js +0 -461
  670. package/lib/repo/invoice.d.ts +0 -26
  671. package/lib/repo/invoice.js +0 -262
  672. package/lib/repo/itemAvailability/screeningEvent.d.ts +0 -75
  673. package/lib/repo/member.d.ts +0 -15
  674. package/lib/repo/member.js +0 -149
  675. package/lib/repo/mongoose/model/account.d.ts +0 -7
  676. package/lib/repo/mongoose/model/account.js +0 -73
  677. package/lib/repo/mongoose/model/accountAction.d.ts +0 -7
  678. package/lib/repo/mongoose/model/accountAction.js +0 -180
  679. package/lib/repo/mongoose/model/accountTitle.d.ts +0 -3
  680. package/lib/repo/mongoose/model/accountTitle.js +0 -106
  681. package/lib/repo/mongoose/model/accountTransaction.d.ts +0 -7
  682. package/lib/repo/mongoose/model/accountTransaction.js +0 -144
  683. package/lib/repo/mongoose/model/accountingReport.d.ts +0 -7
  684. package/lib/repo/mongoose/model/action.d.ts +0 -7
  685. package/lib/repo/mongoose/model/action.js +0 -247
  686. package/lib/repo/mongoose/model/aggregateSale.d.ts +0 -3
  687. package/lib/repo/mongoose/model/aggregateSale.js +0 -100
  688. package/lib/repo/mongoose/model/assetTransaction.d.ts +0 -7
  689. package/lib/repo/mongoose/model/assetTransaction.js +0 -131
  690. package/lib/repo/mongoose/model/authorization.d.ts +0 -7
  691. package/lib/repo/mongoose/model/authorization.js +0 -103
  692. package/lib/repo/mongoose/model/categoryCode.d.ts +0 -7
  693. package/lib/repo/mongoose/model/categoryCode.js +0 -86
  694. package/lib/repo/mongoose/model/creativeWork.d.ts +0 -3
  695. package/lib/repo/mongoose/model/creativeWork.js +0 -109
  696. package/lib/repo/mongoose/model/customer.d.ts +0 -7
  697. package/lib/repo/mongoose/model/emailMessages.d.ts +0 -7
  698. package/lib/repo/mongoose/model/event.d.ts +0 -3
  699. package/lib/repo/mongoose/model/event.js +0 -193
  700. package/lib/repo/mongoose/model/invoice.d.ts +0 -7
  701. package/lib/repo/mongoose/model/invoice.js +0 -76
  702. package/lib/repo/mongoose/model/member.d.ts +0 -7
  703. package/lib/repo/mongoose/model/offer.d.ts +0 -3
  704. package/lib/repo/mongoose/model/offer.js +0 -187
  705. package/lib/repo/mongoose/model/offerCatalog.d.ts +0 -3
  706. package/lib/repo/mongoose/model/offerCatalog.js +0 -73
  707. package/lib/repo/mongoose/model/order.d.ts +0 -7
  708. package/lib/repo/mongoose/model/order.js +0 -292
  709. package/lib/repo/mongoose/model/ownershipInfo.d.ts +0 -7
  710. package/lib/repo/mongoose/model/ownershipInfo.js +0 -172
  711. package/lib/repo/mongoose/model/paymentMethod.d.ts +0 -7
  712. package/lib/repo/mongoose/model/paymentMethod.js +0 -58
  713. package/lib/repo/mongoose/model/place.d.ts +0 -3
  714. package/lib/repo/mongoose/model/place.js +0 -100
  715. package/lib/repo/mongoose/model/priceSpecification.d.ts +0 -3
  716. package/lib/repo/mongoose/model/priceSpecification.js +0 -139
  717. package/lib/repo/mongoose/model/product.d.ts +0 -7
  718. package/lib/repo/mongoose/model/product.js +0 -101
  719. package/lib/repo/mongoose/model/programMembership.d.ts +0 -7
  720. package/lib/repo/mongoose/model/programMembership.js +0 -53
  721. package/lib/repo/mongoose/model/project.d.ts +0 -7
  722. package/lib/repo/mongoose/model/reservation.d.ts +0 -3
  723. package/lib/repo/mongoose/model/reservation.js +0 -296
  724. package/lib/repo/mongoose/model/role.d.ts +0 -7
  725. package/lib/repo/mongoose/model/seller.d.ts +0 -7
  726. package/lib/repo/mongoose/model/seller.js +0 -89
  727. package/lib/repo/mongoose/model/serviceOutput.d.ts +0 -7
  728. package/lib/repo/mongoose/model/serviceOutput.js +0 -109
  729. package/lib/repo/mongoose/model/task.d.ts +0 -7
  730. package/lib/repo/mongoose/model/task.js +0 -136
  731. package/lib/repo/mongoose/model/telemetry.d.ts +0 -7
  732. package/lib/repo/mongoose/model/telemetry.js +0 -96
  733. package/lib/repo/mongoose/model/transaction.d.ts +0 -7
  734. package/lib/repo/mongoose/model/transaction.js +0 -233
  735. package/lib/repo/offer.d.ts +0 -36
  736. package/lib/repo/offer.js +0 -436
  737. package/lib/repo/offerCatalog.d.ts +0 -20
  738. package/lib/repo/offerCatalog.js +0 -183
  739. package/lib/repo/order.d.ts +0 -42
  740. package/lib/repo/order.js +0 -766
  741. package/lib/repo/orderNumber.d.ts +0 -21
  742. package/lib/repo/orderNumber.js +0 -86
  743. package/lib/repo/ownershipInfo.d.ts +0 -24
  744. package/lib/repo/ownershipInfo.js +0 -324
  745. package/lib/repo/paymentMethod/creditCard.d.ts +0 -65
  746. package/lib/repo/paymentMethod.d.ts +0 -12
  747. package/lib/repo/paymentMethod.js +0 -104
  748. package/lib/repo/person.d.ts +0 -76
  749. package/lib/repo/person.js +0 -426
  750. package/lib/repo/place.d.ts +0 -27
  751. package/lib/repo/place.js +0 -346
  752. package/lib/repo/priceSpecification.d.ts +0 -13
  753. package/lib/repo/priceSpecification.js +0 -219
  754. package/lib/repo/product.d.ts +0 -27
  755. package/lib/repo/product.js +0 -217
  756. package/lib/repo/programMembership.d.ts +0 -8
  757. package/lib/repo/programMembership.js +0 -13
  758. package/lib/repo/project.d.ts +0 -18
  759. package/lib/repo/project.js +0 -96
  760. package/lib/repo/rateLimit/offer.d.ts +0 -33
  761. package/lib/repo/report.d.ts +0 -14
  762. package/lib/repo/report.js +0 -37
  763. package/lib/repo/reservation.d.ts +0 -50
  764. package/lib/repo/reservation.js +0 -933
  765. package/lib/repo/role.d.ts +0 -23
  766. package/lib/repo/role.js +0 -114
  767. package/lib/repo/seller.d.ts +0 -35
  768. package/lib/repo/seller.js +0 -188
  769. package/lib/repo/serviceOutput.d.ts +0 -11
  770. package/lib/repo/serviceOutput.js +0 -135
  771. package/lib/repo/serviceOutputIdentifier.d.ts +0 -15
  772. package/lib/repo/task.d.ts +0 -43
  773. package/lib/repo/task.js +0 -253
  774. package/lib/repo/transaction.d.ts +0 -107
  775. package/lib/repo/transaction.js +0 -545
  776. package/lib/repo/transactionNumber.d.ts +0 -15
  777. package/lib/repo/transactionNumber.js +0 -89
  778. package/lib/repository.d.ts +0 -200
  779. package/lib/repository.js +0 -251
  780. package/lib/service/account.d.ts +0 -71
  781. package/lib/service/account.js +0 -147
  782. package/lib/service/accountTransaction/deposit.js +0 -73
  783. package/lib/service/accountTransaction/factory.js +0 -64
  784. package/lib/service/accountTransaction/transfer.d.ts +0 -13
  785. package/lib/service/accountTransaction/transfer.js +0 -104
  786. package/lib/service/accountTransaction/withdraw.d.ts +0 -13
  787. package/lib/service/accountTransaction/withdraw.js +0 -79
  788. package/lib/service/accountTransaction.d.ts +0 -44
  789. package/lib/service/accountTransaction.js +0 -125
  790. package/lib/service/aggregation/event.d.ts +0 -41
  791. package/lib/service/aggregation/event.js +0 -588
  792. package/lib/service/aggregation/project.js +0 -111
  793. package/lib/service/event.d.ts +0 -87
  794. package/lib/service/event.js +0 -683
  795. package/lib/service/moneyTransfer.d.ts +0 -62
  796. package/lib/service/moneyTransfer.js +0 -358
  797. package/lib/service/notification/factory.d.ts +0 -9
  798. package/lib/service/notification/factory.js +0 -32
  799. package/lib/service/notification.js +0 -203
  800. package/lib/service/offer/factory.d.ts +0 -18
  801. package/lib/service/offer/factory.js +0 -100
  802. package/lib/service/offer.d.ts +0 -98
  803. package/lib/service/offer.js +0 -444
  804. package/lib/service/payment/account.d.ts +0 -26
  805. package/lib/service/payment/account.js +0 -293
  806. package/lib/service/payment/any.d.ts +0 -26
  807. package/lib/service/payment/any.js +0 -119
  808. package/lib/service/payment/creditCard.d.ts +0 -81
  809. package/lib/service/payment/creditCard.js +0 -524
  810. package/lib/service/payment/faceToFace.d.ts +0 -28
  811. package/lib/service/payment/faceToFace.js +0 -67
  812. package/lib/service/payment/movieTicket/factory.d.ts +0 -14
  813. package/lib/service/payment/movieTicket/factory.js +0 -79
  814. package/lib/service/payment/movieTicket.d.ts +0 -76
  815. package/lib/service/payment/movieTicket.js +0 -533
  816. package/lib/service/payment.d.ts +0 -44
  817. package/lib/service/payment.js +0 -91
  818. package/lib/service/product.js +0 -104
  819. package/lib/service/project.d.ts +0 -41
  820. package/lib/service/project.js +0 -86
  821. package/lib/service/report/order.d.ts +0 -121
  822. package/lib/service/report/order.js +0 -458
  823. package/lib/service/report/ownershipInfo.d.ts +0 -36
  824. package/lib/service/report/ownershipInfo.js +0 -104
  825. package/lib/service/report/reservation.d.ts +0 -97
  826. package/lib/service/report/reservation.js +0 -366
  827. package/lib/service/report/salesReport.d.ts +0 -15
  828. package/lib/service/report/salesReport.js +0 -226
  829. package/lib/service/report/telemetry.d.ts +0 -319
  830. package/lib/service/report/telemetry.js +0 -477
  831. package/lib/service/report/transaction.d.ts +0 -71
  832. package/lib/service/report/transaction.js +0 -297
  833. package/lib/service/report.d.ts +0 -8
  834. package/lib/service/report.js +0 -14
  835. package/lib/service/reserve.d.ts +0 -41
  836. package/lib/service/reserve.js +0 -344
  837. package/lib/service/task/accountMoneyTransfer.js +0 -28
  838. package/lib/service/task/aggregateOnProject.d.ts +0 -7
  839. package/lib/service/task/aggregateOnProject.js +0 -32
  840. package/lib/service/task/aggregateScreeningEvent.js +0 -45
  841. package/lib/service/task/cancelAccountMoneyTransfer.js +0 -31
  842. package/lib/service/task/cancelMoneyTransfer.js +0 -26
  843. package/lib/service/task/cancelPendingReservation.js +0 -42
  844. package/lib/service/task/cancelReservation.js +0 -45
  845. package/lib/service/task/createOrderReport.d.ts +0 -6
  846. package/lib/service/task/createOrderReport.js +0 -32
  847. package/lib/service/task/createReservationReport.d.ts +0 -6
  848. package/lib/service/task/createReservationReport.js +0 -32
  849. package/lib/service/task/importEventsFromCOA.js +0 -32
  850. package/lib/service/task/importOffersFromCOA.js +0 -26
  851. package/lib/service/task/moneyTransfer.js +0 -39
  852. package/lib/service/task/pay.js +0 -41
  853. package/lib/service/task/refund.js +0 -51
  854. package/lib/service/task/voidPayment.js +0 -38
  855. package/lib/service/task.d.ts +0 -46
  856. package/lib/service/task.js +0 -114
  857. package/lib/service/transaction/cancelReservation/factory.d.ts +0 -14
  858. package/lib/service/transaction/cancelReservation/factory.js +0 -120
  859. package/lib/service/transaction/cancelReservation.d.ts +0 -37
  860. package/lib/service/transaction/cancelReservation.js +0 -207
  861. package/lib/service/transaction/moneyTransfer/potentialActions.js +0 -68
  862. package/lib/service/transaction/moneyTransfer.d.ts +0 -55
  863. package/lib/service/transaction/moneyTransfer.js +0 -420
  864. package/lib/service/transaction/pay/account/validation.d.ts +0 -12
  865. package/lib/service/transaction/pay/account/validation.js +0 -76
  866. package/lib/service/transaction/pay/factory.d.ts +0 -9
  867. package/lib/service/transaction/pay/factory.js +0 -83
  868. package/lib/service/transaction/pay/movieTicket/validation.d.ts +0 -14
  869. package/lib/service/transaction/pay/movieTicket/validation.js +0 -82
  870. package/lib/service/transaction/pay/potentialActions.d.ts +0 -8
  871. package/lib/service/transaction/pay/potentialActions.js +0 -135
  872. package/lib/service/transaction/pay.d.ts +0 -103
  873. package/lib/service/transaction/pay.js +0 -379
  874. package/lib/service/transaction/refund/factory.d.ts +0 -9
  875. package/lib/service/transaction/refund/factory.js +0 -45
  876. package/lib/service/transaction/refund/potentialActions.js +0 -62
  877. package/lib/service/transaction/refund.d.ts +0 -47
  878. package/lib/service/transaction/refund.js +0 -185
  879. package/lib/service/transaction/registerService/factory.d.ts +0 -19
  880. package/lib/service/transaction/registerService/factory.js +0 -142
  881. package/lib/service/transaction/registerService/potentialActions.js +0 -115
  882. package/lib/service/transaction/registerService.d.ts +0 -49
  883. package/lib/service/transaction/registerService.js +0 -292
  884. package/lib/service/transaction/reserve/factory.d.ts +0 -50
  885. package/lib/service/transaction/reserve/factory.js +0 -411
  886. package/lib/service/transaction/reserve.d.ts +0 -90
  887. package/lib/service/transaction/reserve.js +0 -665
  888. package/lib/service/transaction.d.ts +0 -36
  889. package/lib/service/transaction.js +0 -87
  890. package/lib/service/util.d.ts +0 -18
  891. package/lib/service/webhook/onPaid.d.ts +0 -9
  892. package/lib/service/webhook/onPaid.js +0 -119
  893. package/lib/service/webhook/onRefunded.d.ts +0 -9
  894. package/lib/service/webhook/onRefunded.js +0 -64
  895. package/lib/service/webhook.d.ts +0 -37
  896. package/lib/service/webhook.js +0 -192
  897. package/lib/service.d.ts +0 -29
  898. package/lib/service.js +0 -32
  899. package/lib/settings.d.ts +0 -5
  900. package/lib/settings.js +0 -38
@@ -0,0 +1,1040 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __rest = (this && this.__rest) || function (s, e) {
12
+ var t = {};
13
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
14
+ t[p] = s[p];
15
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
16
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
17
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
18
+ t[p[i]] = s[p[i]];
19
+ }
20
+ return t;
21
+ };
22
+ Object.defineProperty(exports, "__esModule", { value: true });
23
+ exports.MongoRepository = void 0;
24
+ const mongoose_1 = require("mongoose");
25
+ const place_1 = require("./mongoose/model/place");
26
+ const factory = require("../factory");
27
+ /**
28
+ * 施設リポジトリ
29
+ */
30
+ class MongoRepository {
31
+ constructor(connection) {
32
+ this.placeModel = connection.model(place_1.modelName);
33
+ }
34
+ // tslint:disable-next-line:max-func-body-length
35
+ static CREATE_MOVIE_THEATER_MONGO_CONDITIONS(params) {
36
+ var _a, _b, _c, _d, _e, _f, _g, _h;
37
+ // MongoDB検索条件
38
+ const andConditions = [];
39
+ const projectIdEq = (_b = (_a = params.project) === null || _a === void 0 ? void 0 : _a.id) === null || _b === void 0 ? void 0 : _b.$eq;
40
+ if (typeof projectIdEq === 'string') {
41
+ andConditions.push({
42
+ 'project.id': { $eq: projectIdEq }
43
+ });
44
+ }
45
+ const branchCodeEq = (_c = params.branchCode) === null || _c === void 0 ? void 0 : _c.$eq;
46
+ if (typeof branchCodeEq === 'string') {
47
+ andConditions.push({
48
+ branchCode: {
49
+ $exists: true,
50
+ $eq: branchCodeEq
51
+ }
52
+ });
53
+ }
54
+ const branchCodeRegex = (_d = params.branchCode) === null || _d === void 0 ? void 0 : _d.$regex;
55
+ if (typeof branchCodeRegex === 'string' && branchCodeRegex.length > 0) {
56
+ andConditions.push({
57
+ branchCode: {
58
+ $exists: true,
59
+ $regex: new RegExp(branchCodeRegex)
60
+ }
61
+ });
62
+ }
63
+ // tslint:disable-next-line:no-single-line-block-comment
64
+ /* istanbul ignore else */
65
+ if (Array.isArray(params.branchCodes)) {
66
+ andConditions.push({
67
+ branchCode: {
68
+ $exists: true,
69
+ $in: params.branchCodes
70
+ }
71
+ });
72
+ }
73
+ // tslint:disable-next-line:no-single-line-block-comment
74
+ /* istanbul ignore else */
75
+ const idEq = (_e = params.id) === null || _e === void 0 ? void 0 : _e.$eq;
76
+ if (typeof idEq === 'string') {
77
+ andConditions.push({
78
+ _id: {
79
+ $eq: idEq
80
+ }
81
+ });
82
+ }
83
+ const idIn = (_f = params.id) === null || _f === void 0 ? void 0 : _f.$in;
84
+ if (Array.isArray(idIn)) {
85
+ andConditions.push({
86
+ _id: {
87
+ $in: idIn
88
+ }
89
+ });
90
+ }
91
+ // tslint:disable-next-line:no-single-line-block-comment
92
+ /* istanbul ignore else */
93
+ if (typeof params.name === 'string' && params.name.length > 0) {
94
+ andConditions.push({
95
+ $or: [
96
+ {
97
+ 'name.ja': {
98
+ $exists: true,
99
+ $regex: new RegExp(params.name)
100
+ }
101
+ },
102
+ {
103
+ 'name.en': {
104
+ $exists: true,
105
+ $regex: new RegExp(params.name)
106
+ }
107
+ },
108
+ {
109
+ kanaName: {
110
+ $exists: true,
111
+ $regex: new RegExp(params.name)
112
+ }
113
+ }
114
+ ]
115
+ });
116
+ }
117
+ const parentOrganizationIdEq = (_h = (_g = params.parentOrganization) === null || _g === void 0 ? void 0 : _g.id) === null || _h === void 0 ? void 0 : _h.$eq;
118
+ if (typeof parentOrganizationIdEq === 'string') {
119
+ andConditions.push({
120
+ 'parentOrganization.id': {
121
+ $exists: true,
122
+ $eq: parentOrganizationIdEq
123
+ }
124
+ });
125
+ }
126
+ return andConditions;
127
+ }
128
+ /**
129
+ * 施設を保管する
130
+ */
131
+ saveMovieTheater(params) {
132
+ return __awaiter(this, void 0, void 0, function* () {
133
+ let doc;
134
+ if (params.id === '') {
135
+ doc = yield this.placeModel.create(params);
136
+ }
137
+ else {
138
+ // 上書き禁止属性を除外(2022-08-24~)
139
+ const { id, branchCode, project, typeOf } = params, updateFields = __rest(params, ["id", "branchCode", "project", "typeOf"]);
140
+ doc = yield this.placeModel.findOneAndUpdate({ _id: params.id }, updateFields, { upsert: false, new: true })
141
+ .exec();
142
+ }
143
+ if (doc === null) {
144
+ throw new factory.errors.NotFound(this.placeModel.modelName);
145
+ }
146
+ return doc.toObject();
147
+ });
148
+ }
149
+ saveMovieTheaterByBranchCode4coa(params) {
150
+ return __awaiter(this, void 0, void 0, function* () {
151
+ return this.placeModel.findOneAndUpdate({
152
+ 'project.id': { $eq: params.project.id },
153
+ branchCode: { $eq: params.branchCode }
154
+ }, params, { new: true })
155
+ .exec()
156
+ .then((doc) => {
157
+ if (doc === null) {
158
+ throw new factory.errors.NotFound(`${factory.placeType.MovieTheater} ${params.branchCode}`);
159
+ }
160
+ return doc.toObject();
161
+ });
162
+ });
163
+ }
164
+ findMovieTheaterByBranchCode(params) {
165
+ return __awaiter(this, void 0, void 0, function* () {
166
+ return this.placeModel.findOne({
167
+ 'project.id': { $eq: params.project.id },
168
+ branchCode: { $eq: params.branchCode }
169
+ })
170
+ .exec()
171
+ .then((doc) => {
172
+ if (doc === null) {
173
+ throw new factory.errors.NotFound(`${factory.placeType.MovieTheater} ${params.branchCode}`);
174
+ }
175
+ return doc.toObject();
176
+ });
177
+ });
178
+ }
179
+ countMovieTheaters(params) {
180
+ return __awaiter(this, void 0, void 0, function* () {
181
+ const conditions = MongoRepository.CREATE_MOVIE_THEATER_MONGO_CONDITIONS(params);
182
+ return this.placeModel.countDocuments((conditions.length > 0) ? { $and: conditions } : {})
183
+ .setOptions({ maxTimeMS: 10000 })
184
+ .exec();
185
+ });
186
+ }
187
+ /**
188
+ * 施設検索
189
+ */
190
+ searchMovieTheaters(params) {
191
+ return __awaiter(this, void 0, void 0, function* () {
192
+ const conditions = MongoRepository.CREATE_MOVIE_THEATER_MONGO_CONDITIONS(params);
193
+ // containsPlaceを含めるとデータサイズが大きくなるので、検索結果には含めない
194
+ const query = this.placeModel.find((conditions.length > 0) ? { $and: conditions } : {}, {
195
+ __v: 0,
196
+ createdAt: 0,
197
+ updatedAt: 0,
198
+ containsPlace: 0
199
+ });
200
+ if (typeof params.limit === 'number') {
201
+ const page = (typeof params.page === 'number') ? params.page : 1;
202
+ query.limit(params.limit)
203
+ .skip(params.limit * (page - 1));
204
+ }
205
+ // tslint:disable-next-line:no-single-line-block-comment
206
+ /* istanbul ignore else */
207
+ if (params.sort !== undefined) {
208
+ query.sort(params.sort);
209
+ }
210
+ return query.setOptions({ maxTimeMS: 10000 })
211
+ .exec()
212
+ .then((docs) => docs.map((doc) => doc.toObject()));
213
+ });
214
+ }
215
+ /**
216
+ * 施設取得
217
+ */
218
+ findById(params, projection) {
219
+ return __awaiter(this, void 0, void 0, function* () {
220
+ const doc = yield this.placeModel.findOne({ _id: params.id }, Object.assign({ __v: 0, createdAt: 0, updatedAt: 0 }, projection))
221
+ .exec();
222
+ if (doc === null) {
223
+ throw new factory.errors.NotFound(this.placeModel.modelName);
224
+ }
225
+ return doc.toObject();
226
+ });
227
+ }
228
+ deleteMovieTheaterById(params) {
229
+ return __awaiter(this, void 0, void 0, function* () {
230
+ yield this.placeModel.findOneAndDelete({
231
+ _id: params.id
232
+ })
233
+ .exec()
234
+ .then((doc) => {
235
+ if (doc === null) {
236
+ throw new factory.errors.NotFound(this.placeModel.modelName);
237
+ }
238
+ });
239
+ });
240
+ }
241
+ createScreeningRoom(screeningRoom) {
242
+ return __awaiter(this, void 0, void 0, function* () {
243
+ // 施設存在確認
244
+ let doc = yield this.placeModel.findOne({
245
+ 'project.id': { $eq: screeningRoom.project.id },
246
+ branchCode: screeningRoom.containedInPlace.branchCode
247
+ }, {
248
+ _id: 1
249
+ })
250
+ .exec();
251
+ if (doc === null) {
252
+ throw new factory.errors.NotFound('containedInPlace');
253
+ }
254
+ // ルームコードが存在しなければ追加する
255
+ doc = yield this.placeModel.findOneAndUpdate({
256
+ 'project.id': { $eq: screeningRoom.project.id },
257
+ branchCode: screeningRoom.containedInPlace.branchCode,
258
+ 'containsPlace.branchCode': { $ne: screeningRoom.branchCode }
259
+ }, {
260
+ $push: {
261
+ containsPlace: {
262
+ typeOf: screeningRoom.typeOf,
263
+ branchCode: screeningRoom.branchCode,
264
+ name: screeningRoom.name,
265
+ address: screeningRoom.address,
266
+ additionalProperty: screeningRoom.additionalProperty
267
+ }
268
+ }
269
+ }, {
270
+ new: true,
271
+ projection: {
272
+ _id: 1,
273
+ 'project.id': 1,
274
+ branchCode: 1
275
+ }
276
+ })
277
+ .exec();
278
+ // 存在しなければコード重複
279
+ if (doc === null) {
280
+ throw new factory.errors.AlreadyInUse(factory.placeType.ScreeningRoom, ['branchCode']);
281
+ }
282
+ });
283
+ }
284
+ updateScreeningRoom(screeningRoom, $unset) {
285
+ return __awaiter(this, void 0, void 0, function* () {
286
+ const doc = yield this.placeModel.findOneAndUpdate({
287
+ 'project.id': { $eq: screeningRoom.project.id },
288
+ branchCode: screeningRoom.containedInPlace.branchCode,
289
+ 'containsPlace.branchCode': screeningRoom.branchCode
290
+ }, Object.assign(Object.assign(Object.assign(Object.assign({ 'containsPlace.$[screeningRoom].name': screeningRoom.name }, (screeningRoom.address !== undefined && screeningRoom.address !== null)
291
+ ? { 'containsPlace.$[screeningRoom].address': screeningRoom.address }
292
+ : undefined), (typeof screeningRoom.openSeatingAllowed === 'boolean')
293
+ ? { 'containsPlace.$[screeningRoom].openSeatingAllowed': screeningRoom.openSeatingAllowed }
294
+ : undefined), (Array.isArray(screeningRoom.additionalProperty))
295
+ ? { 'containsPlace.$[screeningRoom].additionalProperty': screeningRoom.additionalProperty }
296
+ : undefined), ($unset !== undefined && $unset !== null)
297
+ ? { $unset }
298
+ : undefined), {
299
+ new: true,
300
+ arrayFilters: [
301
+ { 'screeningRoom.branchCode': screeningRoom.branchCode }
302
+ ],
303
+ projection: {
304
+ _id: 1,
305
+ 'project.id': 1,
306
+ branchCode: 1
307
+ }
308
+ })
309
+ .exec();
310
+ if (doc === null) {
311
+ throw new factory.errors.NotFound(factory.placeType.ScreeningRoom);
312
+ }
313
+ });
314
+ }
315
+ deleteScreeningRoom(screeningRoom) {
316
+ return __awaiter(this, void 0, void 0, function* () {
317
+ const doc = yield this.placeModel.findOneAndUpdate({
318
+ 'project.id': { $eq: screeningRoom.project.id },
319
+ branchCode: screeningRoom.containedInPlace.branchCode,
320
+ 'containsPlace.branchCode': screeningRoom.branchCode
321
+ }, {
322
+ $pull: {
323
+ containsPlace: { branchCode: screeningRoom.branchCode }
324
+ }
325
+ })
326
+ .exec();
327
+ if (doc === null) {
328
+ throw new factory.errors.NotFound(factory.placeType.ScreeningRoom);
329
+ }
330
+ });
331
+ }
332
+ createScreeningRoomSection(screeningRoomSection) {
333
+ return __awaiter(this, void 0, void 0, function* () {
334
+ const screeningRoom = screeningRoomSection.containedInPlace;
335
+ if (typeof (screeningRoom === null || screeningRoom === void 0 ? void 0 : screeningRoom.branchCode) !== 'string') {
336
+ throw new factory.errors.ArgumentNull('containedInPlace.branchCode');
337
+ }
338
+ const movieTheater = screeningRoom.containedInPlace;
339
+ if (typeof (movieTheater === null || movieTheater === void 0 ? void 0 : movieTheater.branchCode) !== 'string') {
340
+ throw new factory.errors.ArgumentNull('containedInPlace.containedInPlace.branchCode');
341
+ }
342
+ // 施設存在確認
343
+ let doc = yield this.placeModel.findOne({
344
+ 'project.id': { $eq: screeningRoomSection.project.id },
345
+ branchCode: movieTheater.branchCode,
346
+ 'containsPlace.branchCode': screeningRoom.branchCode
347
+ }, { _id: 1 })
348
+ .exec();
349
+ if (doc === null) {
350
+ throw new factory.errors.NotFound(factory.placeType.MovieTheater);
351
+ }
352
+ doc = yield this.placeModel.findOneAndUpdate({
353
+ 'project.id': { $eq: screeningRoomSection.project.id },
354
+ branchCode: movieTheater.branchCode,
355
+ 'containsPlace.branchCode': screeningRoom.branchCode
356
+ // 'containsPlace.containsPlace.branchCode': { $ne: screeningRoomSection.branchCode }
357
+ }, {
358
+ $push: {
359
+ 'containsPlace.$[screeningRoom].containsPlace': Object.assign({ typeOf: screeningRoomSection.typeOf, branchCode: screeningRoomSection.branchCode, name: screeningRoomSection.name }, (Array.isArray(screeningRoomSection.additionalProperty))
360
+ ? { additionalProperty: screeningRoomSection.additionalProperty }
361
+ : undefined)
362
+ }
363
+ }, {
364
+ new: true,
365
+ arrayFilters: [
366
+ {
367
+ 'screeningRoom.branchCode': screeningRoom.branchCode,
368
+ 'screeningRoom.containsPlace.branchCode': { $ne: screeningRoomSection.branchCode }
369
+ }
370
+ ],
371
+ projection: {
372
+ _id: 1
373
+ }
374
+ })
375
+ .exec();
376
+ // 存在しなければコード重複
377
+ if (doc === null) {
378
+ throw new factory.errors.AlreadyInUse(factory.placeType.ScreeningRoomSection, ['branchCode']);
379
+ }
380
+ });
381
+ }
382
+ updateScreeningRoomSection(screeningRoomSection, $unset) {
383
+ return __awaiter(this, void 0, void 0, function* () {
384
+ const screeningRoom = screeningRoomSection.containedInPlace;
385
+ if (typeof (screeningRoom === null || screeningRoom === void 0 ? void 0 : screeningRoom.branchCode) !== 'string') {
386
+ throw new factory.errors.ArgumentNull('containedInPlace.branchCode');
387
+ }
388
+ const movieTheater = screeningRoom.containedInPlace;
389
+ if (typeof (movieTheater === null || movieTheater === void 0 ? void 0 : movieTheater.branchCode) !== 'string') {
390
+ throw new factory.errors.ArgumentNull('containedInPlace.containedInPlace.branchCode');
391
+ }
392
+ const doc = yield this.placeModel.findOneAndUpdate({
393
+ 'project.id': { $eq: screeningRoomSection.project.id },
394
+ branchCode: movieTheater.branchCode,
395
+ 'containsPlace.branchCode': screeningRoom.branchCode,
396
+ 'containsPlace.containsPlace.branchCode': screeningRoomSection.branchCode
397
+ }, Object.assign(Object.assign(Object.assign(Object.assign({ 'containsPlace.$[screeningRoom].containsPlace.$[screeningRoomSection].branchCode': screeningRoomSection.branchCode }, (screeningRoomSection.name !== undefined && screeningRoomSection !== null)
398
+ ? {
399
+ 'containsPlace.$[screeningRoom].containsPlace.$[screeningRoomSection].name': screeningRoomSection.name
400
+ }
401
+ : undefined), (Array.isArray(screeningRoomSection.additionalProperty))
402
+ ? {
403
+ 'containsPlace.$[screeningRoom].containsPlace.$[screeningRoomSection].additionalProperty': screeningRoomSection.additionalProperty
404
+ }
405
+ : undefined), (Array.isArray(screeningRoomSection.containsPlace) && screeningRoomSection.containsPlace.length > 0)
406
+ ? {
407
+ 'containsPlace.$[screeningRoom].containsPlace.$[screeningRoomSection].containsPlace': screeningRoomSection.containsPlace.map((p) => {
408
+ return Object.assign(Object.assign(Object.assign({ typeOf: p.typeOf, branchCode: p.branchCode }, (p.name !== undefined && p.name !== null) ? { name: p.name } : undefined), (Array.isArray(p.seatingType)) ? { seatingType: p.seatingType } : undefined), (Array.isArray(p.additionalProperty)) ? { additionalProperty: p.additionalProperty } : undefined);
409
+ })
410
+ }
411
+ : undefined), ($unset !== undefined && $unset !== null) ? { $unset } : undefined), {
412
+ new: true,
413
+ arrayFilters: [
414
+ { 'screeningRoom.branchCode': screeningRoom.branchCode },
415
+ { 'screeningRoomSection.branchCode': screeningRoomSection.branchCode }
416
+ ],
417
+ projection: {
418
+ _id: 1
419
+ }
420
+ })
421
+ .exec();
422
+ if (doc === null) {
423
+ throw new factory.errors.NotFound(factory.placeType.ScreeningRoomSection);
424
+ }
425
+ });
426
+ }
427
+ // tslint:disable-next-line:max-func-body-length
428
+ searchScreeningRoomSections(searchConditions) {
429
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
430
+ return __awaiter(this, void 0, void 0, function* () {
431
+ const matchStages = [];
432
+ if (searchConditions.project !== undefined) {
433
+ if (searchConditions.project.id !== undefined) {
434
+ if (typeof searchConditions.project.id.$eq === 'string') {
435
+ matchStages.push({
436
+ $match: {
437
+ 'project.id': { $eq: searchConditions.project.id.$eq }
438
+ }
439
+ });
440
+ }
441
+ }
442
+ }
443
+ // 施設コード
444
+ const movieTheaterBranchCodeEq = (_c = (_b = (_a = searchConditions.containedInPlace) === null || _a === void 0 ? void 0 : _a.containedInPlace) === null || _b === void 0 ? void 0 : _b.branchCode) === null || _c === void 0 ? void 0 : _c.$eq;
445
+ if (typeof movieTheaterBranchCodeEq === 'string') {
446
+ matchStages.push({
447
+ $match: {
448
+ branchCode: {
449
+ $exists: true,
450
+ $eq: movieTheaterBranchCodeEq
451
+ }
452
+ }
453
+ });
454
+ }
455
+ // スクリーンコード
456
+ const containedInPlaceBranchCodeEq = (_e = (_d = searchConditions.containedInPlace) === null || _d === void 0 ? void 0 : _d.branchCode) === null || _e === void 0 ? void 0 : _e.$eq;
457
+ if (typeof containedInPlaceBranchCodeEq === 'string') {
458
+ matchStages.push({
459
+ $match: {
460
+ 'containsPlace.branchCode': {
461
+ $exists: true,
462
+ $eq: containedInPlaceBranchCodeEq
463
+ }
464
+ }
465
+ });
466
+ }
467
+ // セクションコード
468
+ const sectionBranchCodeEq = (_f = searchConditions === null || searchConditions === void 0 ? void 0 : searchConditions.branchCode) === null || _f === void 0 ? void 0 : _f.$eq;
469
+ if (typeof sectionBranchCodeEq === 'string') {
470
+ matchStages.push({
471
+ $match: {
472
+ 'containsPlace.containsPlace.branchCode': {
473
+ $exists: true,
474
+ $eq: sectionBranchCodeEq
475
+ }
476
+ }
477
+ });
478
+ }
479
+ const nameCodeRegex = (_g = searchConditions.name) === null || _g === void 0 ? void 0 : _g.$regex;
480
+ if (typeof nameCodeRegex === 'string') {
481
+ matchStages.push({
482
+ $match: {
483
+ $or: [
484
+ {
485
+ 'containsPlace.containsPlace.name.ja': {
486
+ $exists: true,
487
+ $regex: new RegExp(nameCodeRegex)
488
+ }
489
+ },
490
+ {
491
+ 'containsPlace.containsPlace.name.en': {
492
+ $exists: true,
493
+ $regex: new RegExp(nameCodeRegex)
494
+ }
495
+ }
496
+ ]
497
+ }
498
+ });
499
+ }
500
+ const branchCodeRegex = (_h = searchConditions.branchCode) === null || _h === void 0 ? void 0 : _h.$regex;
501
+ if (typeof branchCodeRegex === 'string') {
502
+ matchStages.push({
503
+ $match: {
504
+ 'containsPlace.containsPlace.branchCode': {
505
+ $exists: true,
506
+ $regex: new RegExp(branchCodeRegex)
507
+ }
508
+ }
509
+ });
510
+ }
511
+ const aggregate = this.placeModel.aggregate([
512
+ { $unwind: '$containsPlace' },
513
+ { $unwind: '$containsPlace.containsPlace' },
514
+ ...matchStages,
515
+ {
516
+ $project: Object.assign({ _id: 0, typeOf: '$containsPlace.containsPlace.typeOf', branchCode: '$containsPlace.containsPlace.branchCode', name: '$containsPlace.containsPlace.name', containedInPlace: {
517
+ typeOf: '$containsPlace.typeOf',
518
+ branchCode: '$containsPlace.branchCode',
519
+ name: '$containsPlace.name',
520
+ containedInPlace: {
521
+ id: '$_id',
522
+ typeOf: '$typeOf',
523
+ branchCode: '$branchCode',
524
+ name: '$name'
525
+ }
526
+ }, additionalProperty: '$containsPlace.containsPlace.additionalProperty' }, (((_j = searchConditions.$projection) === null || _j === void 0 ? void 0 : _j.seatCount) === 1)
527
+ ? {
528
+ seatCount: {
529
+ $cond: {
530
+ if: { $isArray: '$containsPlace.containsPlace.containsPlace' },
531
+ then: { $size: '$containsPlace.containsPlace.containsPlace' },
532
+ else: 0
533
+ }
534
+ }
535
+ }
536
+ : undefined)
537
+ }
538
+ ]);
539
+ // tslint:disable-next-line:no-single-line-block-comment
540
+ /* istanbul ignore else */
541
+ if (typeof searchConditions.limit === 'number') {
542
+ const page = (typeof searchConditions.page === 'number') ? searchConditions.page : 1;
543
+ aggregate.limit(searchConditions.limit * page)
544
+ .skip(searchConditions.limit * (page - 1));
545
+ }
546
+ return aggregate.exec();
547
+ });
548
+ }
549
+ deleteScreeningRoomSection(screeningRoomSection) {
550
+ return __awaiter(this, void 0, void 0, function* () {
551
+ const doc = yield this.placeModel.findOneAndUpdate({
552
+ 'project.id': { $eq: screeningRoomSection.project.id },
553
+ branchCode: screeningRoomSection.containedInPlace.containedInPlace.branchCode,
554
+ 'containsPlace.branchCode': screeningRoomSection.containedInPlace.branchCode,
555
+ 'containsPlace.containsPlace.branchCode': screeningRoomSection.branchCode
556
+ }, {
557
+ $pull: {
558
+ 'containsPlace.$[screeningRoom].containsPlace': {
559
+ branchCode: screeningRoomSection.branchCode
560
+ }
561
+ }
562
+ }, {
563
+ new: true,
564
+ arrayFilters: [
565
+ { 'screeningRoom.branchCode': screeningRoomSection.containedInPlace.branchCode }
566
+ ]
567
+ })
568
+ .exec();
569
+ if (doc === null) {
570
+ throw new factory.errors.NotFound(factory.placeType.ScreeningRoomSection);
571
+ }
572
+ });
573
+ }
574
+ // tslint:disable-next-line:max-func-body-length
575
+ searchScreeningRooms(searchConditions) {
576
+ var _a, _b, _c, _d, _e, _f, _g, _h;
577
+ return __awaiter(this, void 0, void 0, function* () {
578
+ const matchStages = [];
579
+ const projectIdEq = (_b = (_a = searchConditions.project) === null || _a === void 0 ? void 0 : _a.id) === null || _b === void 0 ? void 0 : _b.$eq;
580
+ if (typeof projectIdEq === 'string') {
581
+ matchStages.push({
582
+ $match: { 'project.id': { $eq: projectIdEq } }
583
+ });
584
+ }
585
+ // 施設ID
586
+ const containedInPlaceIdEq = (_d = (_c = searchConditions.containedInPlace) === null || _c === void 0 ? void 0 : _c.id) === null || _d === void 0 ? void 0 : _d.$eq;
587
+ if (typeof containedInPlaceIdEq === 'string') {
588
+ matchStages.push({
589
+ $match: {
590
+ _id: { $eq: mongoose_1.Types.ObjectId(containedInPlaceIdEq) }
591
+ }
592
+ });
593
+ }
594
+ if (searchConditions.containedInPlace !== undefined) {
595
+ // 施設コード
596
+ if (searchConditions.containedInPlace.branchCode !== undefined) {
597
+ if (typeof searchConditions.containedInPlace.branchCode.$eq === 'string') {
598
+ matchStages.push({
599
+ $match: {
600
+ branchCode: {
601
+ $exists: true,
602
+ $eq: searchConditions.containedInPlace.branchCode.$eq
603
+ }
604
+ }
605
+ });
606
+ }
607
+ }
608
+ }
609
+ // スクリーンコード
610
+ if (searchConditions.branchCode !== undefined) {
611
+ if (typeof searchConditions.branchCode.$eq === 'string') {
612
+ matchStages.push({
613
+ $match: {
614
+ 'containsPlace.branchCode': {
615
+ $exists: true,
616
+ $eq: searchConditions.branchCode.$eq
617
+ }
618
+ }
619
+ });
620
+ }
621
+ }
622
+ const branchCodeRegex = (_e = searchConditions.branchCode) === null || _e === void 0 ? void 0 : _e.$regex;
623
+ if (typeof branchCodeRegex === 'string') {
624
+ matchStages.push({
625
+ $match: {
626
+ 'containsPlace.branchCode': {
627
+ $exists: true,
628
+ $regex: new RegExp(branchCodeRegex)
629
+ }
630
+ }
631
+ });
632
+ }
633
+ const nameCodeRegex = (_f = searchConditions.name) === null || _f === void 0 ? void 0 : _f.$regex;
634
+ if (typeof nameCodeRegex === 'string') {
635
+ matchStages.push({
636
+ $match: {
637
+ $or: [
638
+ {
639
+ 'containsPlace.name.ja': {
640
+ $exists: true,
641
+ $regex: new RegExp(nameCodeRegex)
642
+ }
643
+ },
644
+ {
645
+ 'containsPlace.name.en': {
646
+ $exists: true,
647
+ $regex: new RegExp(nameCodeRegex)
648
+ }
649
+ }
650
+ ]
651
+ }
652
+ });
653
+ }
654
+ const openSeatingAllowed = searchConditions.openSeatingAllowed;
655
+ if (typeof openSeatingAllowed === 'boolean') {
656
+ matchStages.push({
657
+ $match: {
658
+ 'containsPlace.openSeatingAllowed': {
659
+ $exists: true,
660
+ $eq: openSeatingAllowed
661
+ }
662
+ }
663
+ });
664
+ }
665
+ const aggregate = this.placeModel.aggregate([
666
+ { $unwind: '$containsPlace' },
667
+ ...matchStages,
668
+ {
669
+ $project: Object.assign(Object.assign({ _id: 0, typeOf: '$containsPlace.typeOf', branchCode: '$containsPlace.branchCode', name: '$containsPlace.name', address: '$containsPlace.address', containedInPlace: {
670
+ id: '$_id',
671
+ typeOf: '$typeOf',
672
+ branchCode: '$branchCode',
673
+ name: '$name'
674
+ }, openSeatingAllowed: '$containsPlace.openSeatingAllowed', additionalProperty: '$containsPlace.additionalProperty' }, (((_g = searchConditions.$projection) === null || _g === void 0 ? void 0 : _g.sectionCount) === 1)
675
+ ? {
676
+ sectionCount: {
677
+ $cond: {
678
+ if: { $isArray: '$containsPlace.containsPlace' },
679
+ then: { $size: '$containsPlace.containsPlace' },
680
+ else: 0
681
+ }
682
+ }
683
+ }
684
+ : undefined), (((_h = searchConditions.$projection) === null || _h === void 0 ? void 0 : _h.seatCount) === 1)
685
+ ? {
686
+ seatCount: {
687
+ $sum: {
688
+ $map: {
689
+ input: '$containsPlace.containsPlace',
690
+ in: {
691
+ $cond: {
692
+ if: { $isArray: '$$this.containsPlace' },
693
+ then: { $size: '$$this.containsPlace' },
694
+ else: 0
695
+ }
696
+ }
697
+ }
698
+ }
699
+ }
700
+ }
701
+ : undefined)
702
+ }
703
+ ]);
704
+ // tslint:disable-next-line:no-single-line-block-comment
705
+ /* istanbul ignore else */
706
+ if (typeof searchConditions.limit === 'number') {
707
+ const page = (typeof searchConditions.page === 'number') ? searchConditions.page : 1;
708
+ aggregate.limit(searchConditions.limit * page)
709
+ .skip(searchConditions.limit * (page - 1));
710
+ }
711
+ return aggregate.exec();
712
+ });
713
+ }
714
+ createSeat(seat) {
715
+ var _a, _b;
716
+ return __awaiter(this, void 0, void 0, function* () {
717
+ const screeningRoomSection = seat.containedInPlace;
718
+ if (typeof (screeningRoomSection === null || screeningRoomSection === void 0 ? void 0 : screeningRoomSection.branchCode) !== 'string') {
719
+ throw new factory.errors.ArgumentNull('containedInPlace.branchCode');
720
+ }
721
+ const screeningRoom = screeningRoomSection.containedInPlace;
722
+ if (typeof (screeningRoom === null || screeningRoom === void 0 ? void 0 : screeningRoom.branchCode) !== 'string') {
723
+ throw new factory.errors.ArgumentNull('containedInPlace.containedInPlace.branchCode');
724
+ }
725
+ const movieTheater = screeningRoom.containedInPlace;
726
+ if (typeof (movieTheater === null || movieTheater === void 0 ? void 0 : movieTheater.branchCode) !== 'string') {
727
+ throw new factory.errors.ArgumentNull('containedInPlace.containedInPlace.containedInPlace.branchCode');
728
+ }
729
+ // 施設存在確認
730
+ let doc = yield this.placeModel.findOne({
731
+ 'project.id': { $eq: seat.project.id },
732
+ branchCode: movieTheater.branchCode,
733
+ 'containsPlace.branchCode': screeningRoom.branchCode,
734
+ 'containsPlace.containsPlace.branchCode': screeningRoomSection.branchCode
735
+ }, {
736
+ _id: 1
737
+ })
738
+ .exec();
739
+ if (doc === null) {
740
+ throw new factory.errors.NotFound(factory.placeType.MovieTheater);
741
+ }
742
+ doc = yield this.placeModel.findOneAndUpdate({
743
+ 'project.id': { $eq: seat.project.id },
744
+ branchCode: movieTheater.branchCode,
745
+ 'containsPlace.branchCode': screeningRoom.branchCode,
746
+ 'containsPlace.containsPlace.branchCode': screeningRoomSection.branchCode
747
+ }, {
748
+ $push: {
749
+ 'containsPlace.$[screeningRoom].containsPlace.$[screeningRoomSection].containsPlace': Object.assign(Object.assign({ typeOf: seat.typeOf, branchCode: seat.branchCode, additionalProperty: seat.additionalProperty }, (typeof ((_a = seat.name) === null || _a === void 0 ? void 0 : _a.ja) === 'string' || typeof ((_b = seat.name) === null || _b === void 0 ? void 0 : _b.en) === 'string') ? { name: seat.name } : undefined), (Array.isArray(seat.seatingType)) ? { seatingType: seat.seatingType } : undefined)
750
+ }
751
+ }, {
752
+ new: true,
753
+ arrayFilters: [
754
+ { 'screeningRoom.branchCode': screeningRoom.branchCode },
755
+ {
756
+ 'screeningRoomSection.branchCode': screeningRoomSection.branchCode,
757
+ 'screeningRoomSection.containsPlace.branchCode': { $ne: seat.branchCode }
758
+ }
759
+ ],
760
+ projection: {
761
+ _id: 1,
762
+ 'project.id': 1,
763
+ branchCode: 1
764
+ }
765
+ })
766
+ .exec();
767
+ // 存在しなければコード重複
768
+ if (doc === null) {
769
+ throw new factory.errors.AlreadyInUse(factory.placeType.Seat, ['branchCode']);
770
+ }
771
+ });
772
+ }
773
+ updateSeat(seat, $unset) {
774
+ var _a, _b;
775
+ return __awaiter(this, void 0, void 0, function* () {
776
+ const screeningRoomSection = seat.containedInPlace;
777
+ if (typeof (screeningRoomSection === null || screeningRoomSection === void 0 ? void 0 : screeningRoomSection.branchCode) !== 'string') {
778
+ throw new factory.errors.ArgumentNull('containedInPlace.branchCode');
779
+ }
780
+ const screeningRoom = screeningRoomSection.containedInPlace;
781
+ if (typeof (screeningRoom === null || screeningRoom === void 0 ? void 0 : screeningRoom.branchCode) !== 'string') {
782
+ throw new factory.errors.ArgumentNull('containedInPlace.containedInPlace.branchCode');
783
+ }
784
+ const movieTheater = screeningRoom.containedInPlace;
785
+ if (typeof (movieTheater === null || movieTheater === void 0 ? void 0 : movieTheater.branchCode) !== 'string') {
786
+ throw new factory.errors.ArgumentNull('containedInPlace.containedInPlace.containedInPlace.branchCode');
787
+ }
788
+ const doc = yield this.placeModel.findOneAndUpdate({
789
+ 'project.id': { $eq: seat.project.id },
790
+ branchCode: movieTheater.branchCode,
791
+ 'containsPlace.branchCode': screeningRoom.branchCode,
792
+ 'containsPlace.containsPlace.branchCode': screeningRoomSection.branchCode,
793
+ 'containsPlace.containsPlace.containsPlace.branchCode': seat.branchCode
794
+ }, Object.assign(Object.assign(Object.assign(Object.assign({ 'containsPlace.$[screeningRoom].containsPlace.$[screeningRoomSection].containsPlace.$[seat].branchCode': seat.branchCode }, (typeof ((_a = seat.name) === null || _a === void 0 ? void 0 : _a.ja) === 'string' || typeof ((_b = seat.name) === null || _b === void 0 ? void 0 : _b.en) === 'string')
795
+ ? {
796
+ 'containsPlace.$[screeningRoom].containsPlace.$[screeningRoomSection].containsPlace.$[seat].name': seat.name
797
+ }
798
+ : undefined), (Array.isArray(seat.seatingType))
799
+ ? {
800
+ 'containsPlace.$[screeningRoom].containsPlace.$[screeningRoomSection].containsPlace.$[seat].seatingType': seat.seatingType
801
+ }
802
+ : undefined), (Array.isArray(seat.additionalProperty))
803
+ ? {
804
+ 'containsPlace.$[screeningRoom].containsPlace.$[screeningRoomSection].containsPlace.$[seat].additionalProperty': seat.additionalProperty
805
+ }
806
+ : undefined), ($unset !== undefined && $unset !== null) ? { $unset } : undefined), {
807
+ new: true,
808
+ arrayFilters: [
809
+ { 'screeningRoom.branchCode': screeningRoom.branchCode },
810
+ { 'screeningRoomSection.branchCode': screeningRoomSection.branchCode },
811
+ { 'seat.branchCode': seat.branchCode }
812
+ ],
813
+ projection: {
814
+ _id: 1,
815
+ 'project.id': 1,
816
+ branchCode: 1
817
+ }
818
+ })
819
+ .exec();
820
+ if (doc === null) {
821
+ throw new factory.errors.NotFound(factory.placeType.Seat);
822
+ }
823
+ });
824
+ }
825
+ // tslint:disable-next-line:cyclomatic-complexity max-func-body-length
826
+ searchSeats(params) {
827
+ var _a, _b, _c, _d, _e, _f, _g, _h;
828
+ return __awaiter(this, void 0, void 0, function* () {
829
+ const matchStages = [];
830
+ if (params.project !== undefined) {
831
+ if (params.project.id !== undefined) {
832
+ if (typeof params.project.id.$eq === 'string') {
833
+ matchStages.push({
834
+ $match: {
835
+ 'project.id': { $eq: params.project.id.$eq }
836
+ }
837
+ });
838
+ }
839
+ }
840
+ }
841
+ const containedInPlaceBranchCodeEq = (_b = (_a = params.containedInPlace) === null || _a === void 0 ? void 0 : _a.branchCode) === null || _b === void 0 ? void 0 : _b.$eq;
842
+ if (typeof containedInPlaceBranchCodeEq === 'string') {
843
+ matchStages.push({
844
+ $match: {
845
+ 'containsPlace.containsPlace.branchCode': {
846
+ $exists: true,
847
+ $eq: containedInPlaceBranchCodeEq
848
+ }
849
+ }
850
+ });
851
+ }
852
+ const containedInPlaceBranchCodeIn = (_d = (_c = params.containedInPlace) === null || _c === void 0 ? void 0 : _c.branchCode) === null || _d === void 0 ? void 0 : _d.$in;
853
+ if (Array.isArray(containedInPlaceBranchCodeIn)) {
854
+ matchStages.push({
855
+ $match: {
856
+ 'containsPlace.containsPlace.branchCode': {
857
+ $exists: true,
858
+ $in: containedInPlaceBranchCodeIn
859
+ }
860
+ }
861
+ });
862
+ }
863
+ if (params.containedInPlace !== undefined) {
864
+ if (params.containedInPlace.containedInPlace !== undefined) {
865
+ if (params.containedInPlace.containedInPlace.branchCode !== undefined) {
866
+ if (typeof params.containedInPlace.containedInPlace.branchCode.$eq === 'string') {
867
+ matchStages.push({
868
+ $match: {
869
+ 'containsPlace.branchCode': {
870
+ $exists: true,
871
+ $eq: params.containedInPlace.containedInPlace.branchCode.$eq
872
+ }
873
+ }
874
+ });
875
+ }
876
+ }
877
+ if (params.containedInPlace.containedInPlace.containedInPlace !== undefined) {
878
+ if (params.containedInPlace.containedInPlace.containedInPlace.branchCode !== undefined) {
879
+ if (typeof params.containedInPlace.containedInPlace.containedInPlace.branchCode.$eq === 'string') {
880
+ matchStages.push({
881
+ $match: {
882
+ branchCode: {
883
+ $exists: true,
884
+ $eq: params.containedInPlace.containedInPlace.containedInPlace.branchCode.$eq
885
+ }
886
+ }
887
+ });
888
+ }
889
+ }
890
+ }
891
+ }
892
+ }
893
+ // 座席コード
894
+ if (params.branchCode !== undefined) {
895
+ if (typeof params.branchCode.$eq === 'string') {
896
+ matchStages.push({
897
+ $match: {
898
+ 'containsPlace.containsPlace.containsPlace.branchCode': {
899
+ $exists: true,
900
+ $eq: params.branchCode.$eq
901
+ }
902
+ }
903
+ });
904
+ }
905
+ }
906
+ const branchCodeIn = (_e = params.branchCode) === null || _e === void 0 ? void 0 : _e.$in;
907
+ if (Array.isArray(branchCodeIn)) {
908
+ matchStages.push({
909
+ $match: {
910
+ 'containsPlace.containsPlace.containsPlace.branchCode': {
911
+ $exists: true,
912
+ $in: branchCodeIn
913
+ }
914
+ }
915
+ });
916
+ }
917
+ const branchCodeRegex = (_f = params.branchCode) === null || _f === void 0 ? void 0 : _f.$regex;
918
+ if (typeof branchCodeRegex === 'string' && branchCodeRegex.length > 0) {
919
+ matchStages.push({
920
+ $match: {
921
+ 'containsPlace.containsPlace.containsPlace.branchCode': {
922
+ $exists: true,
923
+ $regex: new RegExp(branchCodeRegex)
924
+ }
925
+ }
926
+ });
927
+ }
928
+ const nameRegex = (_g = params.name) === null || _g === void 0 ? void 0 : _g.$regex;
929
+ if (typeof nameRegex === 'string' && nameRegex.length > 0) {
930
+ matchStages.push({
931
+ $match: {
932
+ $or: [
933
+ {
934
+ 'containsPlace.containsPlace.containsPlace.name.ja': {
935
+ $exists: true,
936
+ $regex: new RegExp(nameRegex)
937
+ }
938
+ },
939
+ {
940
+ 'containsPlace.containsPlace.containsPlace.name.en': {
941
+ $exists: true,
942
+ $regex: new RegExp(nameRegex)
943
+ }
944
+ }
945
+ ]
946
+ }
947
+ });
948
+ }
949
+ const seatingTypeEq = (_h = params.seatingType) === null || _h === void 0 ? void 0 : _h.$eq;
950
+ if (typeof seatingTypeEq === 'string') {
951
+ matchStages.push({
952
+ $match: {
953
+ 'containsPlace.containsPlace.containsPlace.seatingType': {
954
+ $exists: true,
955
+ $eq: seatingTypeEq
956
+ }
957
+ }
958
+ });
959
+ }
960
+ let includeScreeningRooms = true;
961
+ if (params.$projection !== undefined && params.$projection !== null
962
+ && params.$projection['containedInPlace.containedInPlace'] === 0) {
963
+ includeScreeningRooms = false;
964
+ }
965
+ const aggregate = this.placeModel.aggregate([
966
+ { $unwind: '$containsPlace' },
967
+ { $unwind: '$containsPlace.containsPlace' },
968
+ { $unwind: '$containsPlace.containsPlace.containsPlace' },
969
+ ...matchStages,
970
+ {
971
+ $project: {
972
+ _id: 0,
973
+ typeOf: '$containsPlace.containsPlace.containsPlace.typeOf',
974
+ branchCode: '$containsPlace.containsPlace.containsPlace.branchCode',
975
+ name: '$containsPlace.containsPlace.containsPlace.name',
976
+ seatingType: '$containsPlace.containsPlace.containsPlace.seatingType',
977
+ containedInPlace: Object.assign({ typeOf: '$containsPlace.containsPlace.typeOf', branchCode: '$containsPlace.containsPlace.branchCode', name: '$containsPlace.containsPlace.name' }, (includeScreeningRooms)
978
+ ? {
979
+ containedInPlace: {
980
+ typeOf: '$containsPlace.typeOf',
981
+ branchCode: '$containsPlace.branchCode',
982
+ name: '$containsPlace.name',
983
+ containedInPlace: {
984
+ id: '$_id',
985
+ typeOf: '$typeOf',
986
+ branchCode: '$branchCode',
987
+ name: '$name'
988
+ }
989
+ }
990
+ }
991
+ : undefined),
992
+ additionalProperty: '$containsPlace.containsPlace.containsPlace.additionalProperty'
993
+ }
994
+ }
995
+ ]);
996
+ if (typeof params.limit === 'number') {
997
+ const page = (typeof params.page === 'number') ? params.page : 1;
998
+ aggregate.limit(params.limit * page)
999
+ .skip(params.limit * (page - 1));
1000
+ }
1001
+ return aggregate.exec();
1002
+ });
1003
+ }
1004
+ deleteSeat(seat) {
1005
+ return __awaiter(this, void 0, void 0, function* () {
1006
+ const doc = yield this.placeModel.findOneAndUpdate({
1007
+ 'project.id': { $eq: seat.project.id },
1008
+ branchCode: seat.containedInPlace.containedInPlace.containedInPlace.branchCode,
1009
+ 'containsPlace.branchCode': seat.containedInPlace.containedInPlace.branchCode,
1010
+ 'containsPlace.containsPlace.branchCode': seat.containedInPlace.branchCode,
1011
+ 'containsPlace.containsPlace.containsPlace.branchCode': seat.branchCode
1012
+ }, {
1013
+ $pull: {
1014
+ 'containsPlace.$[screeningRoom].containsPlace.$[screeningRoomSection].containsPlace': {
1015
+ branchCode: seat.branchCode
1016
+ }
1017
+ }
1018
+ }, {
1019
+ new: true,
1020
+ arrayFilters: [
1021
+ { 'screeningRoom.branchCode': seat.containedInPlace.containedInPlace.branchCode },
1022
+ { 'screeningRoomSection.branchCode': seat.containedInPlace.branchCode }
1023
+ ]
1024
+ })
1025
+ .exec();
1026
+ if (doc === null) {
1027
+ throw new factory.errors.NotFound(factory.placeType.Seat);
1028
+ }
1029
+ });
1030
+ }
1031
+ deleteByProject(params) {
1032
+ return __awaiter(this, void 0, void 0, function* () {
1033
+ yield this.placeModel.deleteMany({
1034
+ 'project.id': { $eq: params.project.id }
1035
+ })
1036
+ .exec();
1037
+ });
1038
+ }
1039
+ }
1040
+ exports.MongoRepository = MongoRepository;