@chevre/factory 6.2.0-alpha.9 → 7.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/lib/assetTransaction/pay.d.ts +3 -3
- package/lib/cognito.d.ts +345 -3
- package/lib/cognito.js +5 -0
- package/lib/index.d.ts +3 -4
- package/lib/index.js +3 -4
- package/lib/paymentMethod/paymentCard/creditCard.d.ts +7 -40
- package/lib/paymentMethod/paymentCard/creditCard.js +1 -0
- package/lib/recipe/acceptCOAOffer.d.ts +7 -7
- package/lib/recipe/authorizeInvoice.d.ts +10 -10
- package/lib/recipe/authorizeInvoice3ds.d.ts +7 -7
- package/lib/recipe/cancelPendingCOAReserve.d.ts +7 -7
- package/lib/recipe/checkMovieTicket.d.ts +7 -7
- package/lib/recipe/confirmCOAReserve.d.ts +10 -10
- package/lib/recipe/payCreditCard.d.ts +10 -10
- package/lib/recipe/payMovieTicket.d.ts +7 -7
- package/lib/recipe/publishPaymentUrl.d.ts +10 -10
- package/lib/recipe/refundCreditCard.d.ts +10 -10
- package/lib/recipe/refundMovieTicket.d.ts +10 -10
- package/lib/recipe/returnCOAReserve.d.ts +10 -10
- package/lib/recipe/sendEmailMessage.d.ts +7 -7
- package/lib/task/acceptCOAOffer.d.ts +2 -2
- package/lib/task/accountMoneyTransfer.d.ts +2 -2
- package/lib/task/aggregateOffers.d.ts +2 -2
- package/lib/task/aggregateOnSystem.d.ts +2 -2
- package/lib/task/aggregateScreeningEvent.d.ts +2 -2
- package/lib/task/authorizePayment.d.ts +2 -2
- package/lib/task/cancelAccountMoneyTransfer.d.ts +2 -2
- package/lib/task/cancelMoneyTransfer.d.ts +2 -2
- package/lib/task/cancelPendingReservation.d.ts +2 -2
- package/lib/task/cancelReservation.d.ts +2 -2
- package/lib/task/checkMovieTicket.d.ts +2 -2
- package/lib/task/checkResource.d.ts +2 -2
- package/lib/task/confirmPayTransaction.d.ts +2 -2
- package/lib/task/confirmRegisterService.d.ts +2 -2
- package/lib/task/confirmRegisterServiceTransaction.d.ts +2 -2
- package/lib/task/confirmReserveTransaction.d.ts +2 -2
- package/lib/task/createAccountingReport.d.ts +2 -2
- package/lib/task/deletePerson.d.ts +2 -2
- package/lib/task/deleteTransaction.d.ts +2 -2
- package/lib/task/givePointAward.d.ts +2 -2
- package/lib/task/handleNotification.d.ts +2 -2
- package/lib/task/importEventCapacitiesFromCOA.d.ts +2 -2
- package/lib/task/importEventsFromCOA.d.ts +2 -2
- package/lib/task/importOffersFromCOA.d.ts +2 -2
- package/lib/task/invalidatePaymentUrl.d.ts +2 -2
- package/lib/task/moneyTransfer.d.ts +2 -2
- package/lib/task/onAssetTransactionStatusChanged.d.ts +2 -2
- package/lib/task/onAuthorizationCreated.d.ts +2 -2
- package/lib/task/onEventChanged.d.ts +2 -2
- package/lib/task/onOrderPaymentCompleted.d.ts +2 -2
- package/lib/task/onResourceDeleted.d.ts +2 -2
- package/lib/task/onResourceUpdated.d.ts +2 -2
- package/lib/task/pay.d.ts +2 -2
- package/lib/task/placeOrder.d.ts +2 -2
- package/lib/task/publishPaymentUrl.d.ts +2 -2
- package/lib/task/refund.d.ts +2 -2
- package/lib/task/registerService.d.ts +2 -2
- package/lib/task/reserve.d.ts +2 -2
- package/lib/task/returnOrder.d.ts +2 -2
- package/lib/task/returnPayTransaction.d.ts +2 -2
- package/lib/task/returnPointAward.d.ts +2 -2
- package/lib/task/returnReserveTransaction.d.ts +2 -2
- package/lib/task/sendEmailMessage.d.ts +2 -2
- package/lib/task/sendOrder.d.ts +2 -2
- package/lib/task/syncResourcesFromCOA.d.ts +2 -2
- package/lib/task/triggerWebhook.d.ts +2 -2
- package/lib/task/useReservation.d.ts +2 -2
- package/lib/task/voidPayTransaction.d.ts +2 -2
- package/lib/task/voidPayment.d.ts +2 -2
- package/lib/task/voidRegisterServiceTransaction.d.ts +2 -2
- package/lib/task/voidReserveTransaction.d.ts +2 -2
- package/lib/task.d.ts +2 -2
- package/package.json +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chevre/factory",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0-alpha.0",
|
|
4
4
|
"description": "Chevre Factory Library for Javascript",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -42,7 +42,6 @@
|
|
|
42
42
|
"vitest": "4.1.0"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@aws-sdk/client-cognito-identity-provider": "3.438.0",
|
|
46
45
|
"@coasystems/factory": "1.0.0-alpha.0",
|
|
47
46
|
"@gmopg/factory": "1.0.0-alpha.0",
|
|
48
47
|
"@surfrock/factory": "1.0.0-alpha.1",
|