@chevre/domain 25.2.0-alpha.2 → 25.2.0-alpha.21

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 (53) hide show
  1. package/lib/chevre/repo/action/actionProcess.js +57 -57
  2. package/lib/chevre/repo/action.d.ts +16 -9
  3. package/lib/chevre/repo/action.js +99 -180
  4. package/lib/chevre/repo/mongoose/schemas/action.js +67 -66
  5. package/lib/chevre/repo/mongoose/schemas/order.d.ts +4 -0
  6. package/lib/chevre/repo/mongoose/schemas/order.js +1 -0
  7. package/lib/chevre/repo/mongoose/schemas/task.js +12 -12
  8. package/lib/chevre/repo/order.d.ts +2 -0
  9. package/lib/chevre/repo/orderInTransaction.d.ts +41 -0
  10. package/lib/chevre/repo/orderInTransaction.js +131 -0
  11. package/lib/chevre/repo/transaction/placeOrder.d.ts +1 -44
  12. package/lib/chevre/repo/transaction/placeOrder.js +42 -82
  13. package/lib/chevre/service/assetTransaction/pay/start/factory.js +3 -4
  14. package/lib/chevre/service/offer/event/authorize/factory.d.ts +5 -1
  15. package/lib/chevre/service/offer/event/authorize/factory.js +22 -12
  16. package/lib/chevre/service/offer/event/authorize.d.ts +4 -0
  17. package/lib/chevre/service/offer/event/authorize.js +1 -1
  18. package/lib/chevre/service/offer/eventServiceByCOA/authorize.js +2 -2
  19. package/lib/chevre/service/offer/eventServiceByCOA/changeOffers.js +1 -1
  20. package/lib/chevre/service/order/deleteOrder.d.ts +5 -1
  21. package/lib/chevre/service/order/deleteOrder.js +8 -1
  22. package/lib/chevre/service/payment/any/authorize/fixOrderAsNeeded.js +1 -2
  23. package/lib/chevre/service/payment/any/authorize/fixTransactionNumber.d.ts +3 -2
  24. package/lib/chevre/service/payment/any/authorize/handlePrePublishedPaymentMethodIdOnAuthorizing.d.ts +4 -3
  25. package/lib/chevre/service/payment/any/authorize/handlePrePublishedPaymentMethodIdOnAuthorizing.js +3 -31
  26. package/lib/chevre/service/payment/any/authorize.js +13 -37
  27. package/lib/chevre/service/payment/any/factory.d.ts +6 -6
  28. package/lib/chevre/service/payment/any/factory.js +19 -22
  29. package/lib/chevre/service/payment/any/invalidatePaymentUrl.d.ts +2 -0
  30. package/lib/chevre/service/payment/any/invalidatePaymentUrl.js +4 -66
  31. package/lib/chevre/service/payment/any/publishPaymentUrl.d.ts +2 -0
  32. package/lib/chevre/service/payment/any/publishPaymentUrl.js +2 -16
  33. package/lib/chevre/service/payment/any/voidPayTransaction.d.ts +2 -0
  34. package/lib/chevre/service/payment/any/voidPayTransaction.js +1 -23
  35. package/lib/chevre/service/payment/creditCard/authorize/processAuthorizeCreditCard.d.ts +1 -1
  36. package/lib/chevre/service/payment/creditCard/authorize/processAuthorizeCreditCard.js +5 -9
  37. package/lib/chevre/service/task/publishPaymentUrl.js +2 -2
  38. package/lib/chevre/service/task/voidPayTransaction.js +3 -7
  39. package/lib/chevre/service/transaction/deleteTransaction/deletePayTransactionsByPlaceOrder.d.ts +15 -0
  40. package/lib/chevre/service/transaction/deleteTransaction/deletePayTransactionsByPlaceOrder.js +51 -0
  41. package/lib/chevre/service/transaction/deleteTransaction/deleteReservationsByPlaceOrder.d.ts +23 -0
  42. package/lib/chevre/service/transaction/deleteTransaction/deleteReservationsByPlaceOrder.js +65 -0
  43. package/lib/chevre/service/transaction/deleteTransaction.js +15 -152
  44. package/lib/chevre/service/transaction/placeOrder/confirm/prepareUnitPriceOfferConditions.d.ts +22 -0
  45. package/lib/chevre/service/transaction/placeOrder/confirm/prepareUnitPriceOfferConditions.js +120 -0
  46. package/lib/chevre/service/transaction/placeOrder/confirm/validation/factory.d.ts +5 -1
  47. package/lib/chevre/service/transaction/placeOrder/confirm/validation.d.ts +14 -2
  48. package/lib/chevre/service/transaction/placeOrder/confirm/validation.js +108 -89
  49. package/lib/chevre/service/transaction/placeOrder/confirm.d.ts +7 -0
  50. package/lib/chevre/service/transaction/placeOrder/confirm.js +35 -60
  51. package/lib/chevre/service/transaction/placeOrder/publishConfirmationNumberIfNotExist.d.ts +4 -7
  52. package/lib/chevre/service/transaction/placeOrder/publishConfirmationNumberIfNotExist.js +33 -15
  53. package/package.json +2 -2
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "dependencies": {
12
12
  "@aws-sdk/client-cognito-identity-provider": "3.600.0",
13
13
  "@aws-sdk/credential-providers": "3.600.0",
14
- "@chevre/factory": "9.5.0-alpha.2",
14
+ "@chevre/factory": "9.5.0-alpha.6",
15
15
  "@motionpicture/coa-service": "10.0.0",
16
16
  "@motionpicture/gmo-service": "6.1.0-alpha.0",
17
17
  "@sendgrid/client": "8.1.4",
@@ -91,5 +91,5 @@
91
91
  "postversion": "git push origin --tags",
92
92
  "prepublishOnly": "npm run clean && npm run build"
93
93
  },
94
- "version": "25.2.0-alpha.2"
94
+ "version": "25.2.0-alpha.21"
95
95
  }