@chevre/factory 3.0.1 → 3.343.0-alpha.2
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 -5
- package/example/customReturnPolicyRequest.json +125 -0
- package/example/customReturnPolicyResponse.json +8 -0
- package/example/informPayAction.json +126 -0
- package/example/informPersonAction.json +517 -0
- package/example/informRefundAction.json +16 -0
- package/example/testErrorInstance.js +9 -0
- package/lib/account/action/moneyTransfer.d.ts +86 -0
- package/lib/account/transaction/deposit.d.ts +27 -0
- package/lib/account/transaction/transfer.d.ts +32 -0
- package/lib/account/transaction/withdraw.d.ts +31 -0
- package/lib/account/transaction.d.ts +144 -0
- package/lib/account/transactionType.d.ts +17 -0
- package/lib/account/transactionType.js +21 -0
- package/lib/account.d.ts +127 -0
- package/lib/account.js +32 -0
- package/lib/{factory/accountTitle.d.ts → accountTitle.d.ts} +8 -7
- package/lib/accountType.d.ts +15 -0
- package/lib/accountType.js +19 -0
- package/lib/action/authorize/award/point.d.ts +51 -0
- package/lib/action/authorize/award/point.js +7 -0
- package/lib/action/authorize/offer/moneyTransfer.d.ts +39 -0
- package/lib/action/authorize/offer/product.d.ts +70 -0
- package/lib/action/authorize/offer/seatReservation/coa.d.ts +117 -0
- package/lib/action/authorize/offer/seatReservation.d.ts +162 -0
- package/lib/action/authorize/offer/seatReservation.js +7 -0
- package/lib/action/authorize/paymentMethod/any.d.ts +171 -0
- package/lib/action/authorize/paymentMethod/any.js +12 -0
- package/lib/{factory/action → action}/authorize.d.ts +5 -5
- package/lib/action/cancel/reservation.d.ts +85 -0
- package/lib/action/check/paymentMethod/movieTicket.d.ts +42 -0
- package/lib/action/check/token.d.ts +23 -0
- package/lib/action/check/token.js +7 -0
- package/lib/action/check.d.ts +10 -0
- package/lib/action/consume/use/reservation.d.ts +32 -0
- package/lib/action/consume/use.d.ts +12 -0
- package/lib/action/interact/confirm/moneyTransfer.d.ts +30 -0
- package/lib/action/interact/confirm/pay.d.ts +27 -0
- package/lib/action/interact/confirm/registerService.d.ts +27 -0
- package/lib/action/interact/confirm/reservation.d.ts +26 -0
- package/lib/action/interact/confirm.d.ts +21 -0
- package/lib/action/interact/inform.d.ts +19 -0
- package/lib/action/interact/register/service.d.ts +18 -0
- package/lib/action/interact/register.d.ts +15 -0
- package/lib/action/reserve.d.ts +49 -0
- package/lib/action/trade/order.d.ts +37 -0
- package/lib/action/trade/pay.d.ts +136 -0
- package/lib/action/trade/refund.d.ts +27 -0
- package/lib/action/transfer/give/pointAward.d.ts +49 -0
- package/lib/action/transfer/give/pointAward.js +5 -0
- package/lib/action/transfer/give.d.ts +16 -0
- package/lib/action/transfer/moneyTransfer.d.ts +102 -0
- package/lib/action/transfer/return/moneyTransfer.d.ts +21 -0
- package/lib/action/transfer/return/order.d.ts +47 -0
- package/lib/action/transfer/return/paymentMethod.d.ts +25 -0
- package/lib/action/transfer/return/pointAward.d.ts +39 -0
- package/lib/action/transfer/return/reserveTransaction.d.ts +29 -0
- package/lib/action/transfer/return.d.ts +10 -0
- package/lib/action/transfer/send/message/email.d.ts +25 -0
- package/lib/action/transfer/send/order.d.ts +37 -0
- package/lib/action/transfer/send.d.ts +18 -0
- package/lib/action/update/delete/member.d.ts +23 -0
- package/lib/action/update/delete.d.ts +15 -0
- package/lib/action.d.ts +242 -0
- package/lib/{factory/actionStatusType.d.ts → actionStatusType.d.ts} +1 -2
- package/lib/{factory/actionStatusType.js → actionStatusType.js} +2 -2
- package/lib/actionType.d.ts +25 -0
- package/lib/actionType.js +30 -0
- package/lib/additionalProperty.d.ts +66 -0
- package/lib/assetTransaction/cancelReservation.d.ts +69 -0
- package/lib/assetTransaction/moneyTransfer.d.ts +136 -0
- package/lib/assetTransaction/pay.d.ts +157 -0
- package/lib/assetTransaction/refund.d.ts +68 -0
- package/lib/assetTransaction/registerService.d.ts +103 -0
- package/lib/assetTransaction/reserve.d.ts +298 -0
- package/lib/assetTransaction.d.ts +176 -0
- package/lib/assetTransactionType.d.ts +31 -0
- package/lib/assetTransactionType.js +35 -0
- package/lib/authorization.d.ts +61 -0
- package/lib/{factory/autoGenerated.d.ts → autoGenerated.d.ts} +1 -1
- package/lib/businessEntityType.d.ts +2 -0
- package/lib/categoryCode.d.ts +131 -0
- package/lib/{factory/categoryCode.js → categoryCode.js} +18 -5
- package/lib/cognito.d.ts +5 -0
- package/lib/creativeWork/comment.d.ts +51 -0
- package/lib/creativeWork/message/email.d.ts +63 -0
- package/lib/creativeWork/message/email.js +10 -0
- package/lib/creativeWork/movie.d.ts +93 -0
- package/lib/creativeWork/softwareApplication/webApplication.d.ts +14 -0
- package/lib/{factory/creativeWork.d.ts → creativeWork.d.ts} +5 -8
- package/lib/creativeWorkType.d.ts +9 -0
- package/lib/creativeWorkType.js +13 -0
- package/lib/customer.d.ts +59 -0
- package/lib/encodingFormat.d.ts +28 -0
- package/lib/encodingFormat.js +41 -0
- package/lib/{factory/error → error}/alreadyInUse.d.ts +1 -1
- package/lib/{factory/error → error}/alreadyInUse.js +7 -4
- package/lib/{factory/error → error}/argument.d.ts +1 -1
- package/lib/{factory/error → error}/argument.js +7 -4
- package/lib/{factory/error → error}/argumentNull.d.ts +1 -1
- package/lib/{factory/error → error}/argumentNull.js +7 -4
- package/lib/{factory/error → error}/chevre.d.ts +1 -1
- package/lib/{factory/error → error}/chevre.js +7 -1
- package/lib/{factory/error → error}/forbidden.d.ts +1 -1
- package/lib/{factory/error → error}/forbidden.js +6 -3
- package/lib/error/gatewayTimeout.d.ts +7 -0
- package/lib/error/gatewayTimeout.js +41 -0
- package/lib/{factory/error → error}/notFound.d.ts +1 -1
- package/lib/{factory/error → error}/notFound.js +7 -4
- package/lib/{factory/error → error}/notImplemented.d.ts +1 -1
- package/lib/{factory/error → error}/notImplemented.js +6 -3
- package/lib/{factory/error → error}/rateLimitExceeded.d.ts +1 -1
- package/lib/{factory/error → error}/rateLimitExceeded.js +6 -3
- package/lib/{factory/error → error}/serviceUnavailable.d.ts +1 -1
- package/lib/{factory/error → error}/serviceUnavailable.js +6 -3
- package/lib/{factory/error → error}/unauthorized.d.ts +1 -1
- package/lib/{factory/error → error}/unauthorized.js +6 -3
- package/lib/{factory/errorCode.d.ts → errorCode.d.ts} +2 -2
- package/lib/{factory/errorCode.js → errorCode.js} +4 -3
- package/lib/errors.d.ts +15 -0
- package/lib/errors.js +28 -0
- package/lib/event/anyEvent.d.ts +401 -0
- package/lib/event/anyEvent.js +2 -0
- package/lib/event/screeningEvent.d.ts +325 -0
- package/lib/event/screeningEvent.js +2 -0
- package/lib/event/screeningEventSeries.d.ts +211 -0
- package/lib/event/screeningEventSeries.js +2 -0
- package/lib/{factory/event.d.ts → event.d.ts} +35 -35
- package/lib/{factory/eventStatusType.d.ts → eventStatusType.d.ts} +1 -2
- package/lib/{factory/eventStatusType.js → eventStatusType.js} +3 -3
- package/lib/{factory/eventType.d.ts → eventType.d.ts} +2 -2
- package/lib/{factory/eventType.js → eventType.js} +3 -2
- package/lib/iam.d.ts +99 -0
- package/lib/iam.js +7 -0
- package/lib/index.d.ts +375 -128
- package/lib/index.js +362 -107
- package/lib/invoice.d.ts +138 -0
- package/lib/invoice.js +2 -0
- package/lib/{factory/itemAvailability.d.ts → itemAvailability.d.ts} +1 -2
- package/lib/{factory/itemAvailability.js → itemAvailability.js} +3 -3
- package/lib/language.js +2 -0
- package/lib/merchantReturnPolicy.d.ts +99 -0
- package/lib/merchantReturnPolicy.js +49 -0
- package/lib/{factory/monetaryAmount.d.ts → monetaryAmount.d.ts} +4 -4
- package/lib/monetaryAmount.js +2 -0
- package/lib/{factory/multilingualString.d.ts → multilingualString.d.ts} +1 -2
- package/lib/multilingualString.js +2 -0
- package/lib/offer/aggregateOffer.d.ts +19 -0
- package/lib/offer/aggregateOffer.js +2 -0
- package/lib/{factory/offer.d.ts → offer.d.ts} +88 -89
- package/lib/offer.js +2 -0
- package/lib/offerCatalog.d.ts +132 -0
- package/lib/offerCatalog.js +2 -0
- package/lib/offerItemCondition.d.ts +65 -0
- package/lib/offerItemCondition.js +2 -0
- package/lib/{factory/offerType.d.ts → offerType.d.ts} +1 -2
- package/lib/{factory/offerType.js → offerType.js} +2 -2
- package/lib/order.d.ts +651 -0
- package/lib/order.js +7 -0
- package/lib/orderExternal.d.ts +12 -0
- package/lib/orderExternal.js +2 -0
- package/lib/orderStatus.d.ts +10 -0
- package/lib/orderStatus.js +17 -0
- package/lib/organization.d.ts +23 -0
- package/lib/organization.js +2 -0
- package/lib/organizationType.d.ts +17 -0
- package/lib/organizationType.js +23 -0
- package/lib/ownershipInfo.d.ts +213 -0
- package/lib/ownershipInfo.js +2 -0
- package/lib/paymentMethod/paymentCard/creditCard.d.ts +65 -0
- package/lib/paymentMethod/paymentCard/creditCard.js +2 -0
- package/lib/paymentMethod/paymentCard/movieTicket.d.ts +53 -0
- package/lib/paymentMethod/paymentCard/movieTicket.js +2 -0
- package/lib/paymentMethod/paymentCard.d.ts +18 -0
- package/lib/paymentMethod/paymentCard.js +2 -0
- package/lib/paymentMethod.d.ts +11 -0
- package/lib/paymentMethod.js +2 -0
- package/lib/paymentStatusType.d.ts +10 -0
- package/lib/paymentStatusType.js +14 -0
- package/lib/permit.d.ts +64 -0
- package/lib/permit.js +7 -0
- package/lib/person.d.ts +59 -0
- package/lib/person.js +2 -0
- package/lib/personType.d.ts +6 -0
- package/lib/personType.js +10 -0
- package/lib/place/busStop.d.ts +41 -0
- package/lib/place/busStop.js +2 -0
- package/lib/place/movieTheater.d.ts +160 -0
- package/lib/place/movieTheater.js +2 -0
- package/lib/place/screeningRoom.d.ts +88 -0
- package/lib/place/screeningRoom.js +2 -0
- package/lib/place/screeningRoomSection.d.ts +69 -0
- package/lib/place/screeningRoomSection.js +2 -0
- package/lib/place/seat.d.ts +107 -0
- package/lib/place/seat.js +2 -0
- package/lib/{factory/place.d.ts → place.d.ts} +8 -6
- package/lib/place.js +2 -0
- package/lib/{factory/placeType.d.ts → placeType.d.ts} +4 -2
- package/lib/{factory/placeType.js → placeType.js} +6 -3
- package/lib/{factory/priceCurrency.d.ts → priceCurrency.d.ts} +1 -2
- package/lib/{factory/priceCurrency.js → priceCurrency.js} +2 -2
- package/lib/priceSpecification/categoryCodeChargeSpecification.d.ts +15 -0
- package/lib/priceSpecification/categoryCodeChargeSpecification.js +2 -0
- package/lib/priceSpecification/compoundPriceSpecification.d.ts +12 -0
- package/lib/priceSpecification/compoundPriceSpecification.js +2 -0
- package/lib/priceSpecification/movieTicketTypeChargeSpecification.d.ts +34 -0
- package/lib/priceSpecification/movieTicketTypeChargeSpecification.js +2 -0
- package/lib/priceSpecification/unitPriceSpecification.d.ts +42 -0
- package/lib/priceSpecification/unitPriceSpecification.js +2 -0
- package/lib/{factory/priceSpecification.d.ts → priceSpecification.d.ts} +39 -24
- package/lib/priceSpecification.js +2 -0
- package/lib/{factory/priceSpecificationType.d.ts → priceSpecificationType.d.ts} +1 -2
- package/lib/{factory/priceSpecificationType.js → priceSpecificationType.js} +2 -2
- package/lib/product.d.ts +254 -0
- package/lib/product.js +29 -0
- package/lib/programMembership.d.ts +16 -0
- package/lib/{factory/programMembership.js → programMembership.js} +1 -0
- package/lib/project.d.ts +107 -0
- package/lib/project.js +2 -0
- package/lib/propertyValue/locationFeatureSpecification.d.ts +4 -0
- package/lib/propertyValue/locationFeatureSpecification.js +2 -0
- package/lib/{factory/propertyValue.d.ts → propertyValue.d.ts} +3 -0
- package/lib/propertyValue.js +7 -0
- package/lib/qualitativeValue.js +2 -0
- package/lib/quantitativeValue.d.ts +34 -0
- package/lib/quantitativeValue.js +7 -0
- package/lib/report/accountingReport.d.ts +68 -0
- package/lib/report/accountingReport.js +2 -0
- package/lib/reservation/busReservation.d.ts +52 -0
- package/lib/reservation/busReservation.js +2 -0
- package/lib/reservation/event.d.ts +96 -0
- package/lib/reservation/event.js +2 -0
- package/lib/reservation/pendingReservationPackage.d.ts +24 -0
- package/lib/reservation/pendingReservationPackage.js +14 -0
- package/lib/{factory/reservation → reservation}/reservationPackage.d.ts +4 -4
- package/lib/reservation/reservationPackage.js +2 -0
- package/lib/{factory/reservation.d.ts → reservation.d.ts} +172 -53
- package/lib/reservation.js +2 -0
- package/lib/{factory/reservationStatusType.d.ts → reservationStatusType.d.ts} +1 -3
- package/lib/{factory/reservationStatusType.js → reservationStatusType.js} +3 -3
- package/lib/{factory/reservationType.d.ts → reservationType.d.ts} +2 -2
- package/lib/{factory/reservationType.js → reservationType.js} +3 -2
- package/lib/seller.d.ts +108 -0
- package/lib/seller.js +2 -0
- package/lib/service/paymentService.d.ts +123 -0
- package/lib/service/paymentService.js +10 -0
- package/lib/service/webAPI.d.ts +11 -0
- package/lib/service/webAPI.js +8 -0
- package/lib/{factory/sortType.d.ts → sortType.d.ts} +1 -2
- package/lib/{factory/sortType.js → sortType.js} +2 -2
- package/lib/task/accountMoneyTransfer.d.ts +15 -0
- package/lib/task/accountMoneyTransfer.js +2 -0
- package/lib/task/aggregateScreeningEvent.d.ts +16 -0
- package/lib/task/aggregateScreeningEvent.js +2 -0
- package/lib/{factory/task/aggregateScreeningEvent.d.ts → task/aggregateUseActionsOnEvent.d.ts} +5 -5
- package/lib/task/aggregateUseActionsOnEvent.js +2 -0
- package/lib/task/cancelAccountMoneyTransfer.d.ts +19 -0
- package/lib/task/cancelAccountMoneyTransfer.js +2 -0
- package/lib/task/cancelMoneyTransfer.d.ts +18 -0
- package/lib/task/cancelMoneyTransfer.js +2 -0
- package/lib/{factory/task → task}/cancelPendingReservation.d.ts +2 -2
- package/lib/task/cancelPendingReservation.js +2 -0
- package/lib/{factory/task → task}/cancelReservation.d.ts +2 -2
- package/lib/task/cancelReservation.js +2 -0
- package/lib/task/confirmMoneyTransfer.d.ts +13 -0
- package/lib/task/confirmMoneyTransfer.js +2 -0
- package/lib/task/confirmPayTransaction.d.ts +23 -0
- package/lib/task/confirmPayTransaction.js +2 -0
- package/lib/task/confirmRegisterService.d.ts +13 -0
- package/lib/task/confirmRegisterService.js +2 -0
- package/lib/task/confirmRegisterServiceTransaction.d.ts +13 -0
- package/lib/task/confirmRegisterServiceTransaction.js +2 -0
- package/lib/task/confirmReserveTransaction.d.ts +14 -0
- package/lib/task/confirmReserveTransaction.js +2 -0
- package/lib/task/createEvent.d.ts +26 -0
- package/lib/task/createEvent.js +2 -0
- package/lib/task/deleteTransaction.d.ts +48 -0
- package/lib/task/deleteTransaction.js +11 -0
- package/lib/task/givePointAward.d.ts +13 -0
- package/lib/task/givePointAward.js +2 -0
- package/lib/{factory/task/importEventsFromCOA.d.ts → task/importEventCapacitiesFromCOA.d.ts} +6 -6
- package/lib/task/importEventCapacitiesFromCOA.js +2 -0
- package/lib/task/importEventsFromCOA.d.ts +36 -0
- package/lib/task/importEventsFromCOA.js +2 -0
- package/lib/{factory/task → task}/importOffersFromCOA.d.ts +4 -4
- package/lib/task/importOffersFromCOA.js +2 -0
- package/lib/task/moneyTransfer.d.ts +13 -0
- package/lib/task/moneyTransfer.js +2 -0
- package/lib/task/onAssetTransactionStatusChanged.d.ts +35 -0
- package/lib/task/onAssetTransactionStatusChanged.js +2 -0
- package/lib/task/onAuthorizationCreated.d.ts +24 -0
- package/lib/task/onAuthorizationCreated.js +2 -0
- package/lib/task/onEventChanged.d.ts +25 -0
- package/lib/task/onEventChanged.js +2 -0
- package/lib/task/onOrderPaymentCompleted.d.ts +21 -0
- package/lib/task/onOrderPaymentCompleted.js +2 -0
- package/lib/task/onResourceUpdated.d.ts +76 -0
- package/lib/task/onResourceUpdated.js +2 -0
- package/lib/task/pay.d.ts +13 -0
- package/lib/task/pay.js +2 -0
- package/lib/task/placeOrder.d.ts +19 -0
- package/lib/task/placeOrder.js +2 -0
- package/lib/task/refund.d.ts +13 -0
- package/lib/task/refund.js +2 -0
- package/lib/task/registerService.d.ts +13 -0
- package/lib/task/registerService.js +2 -0
- package/lib/{factory/task → task}/reserve.d.ts +2 -2
- package/lib/task/reserve.js +2 -0
- package/lib/task/returnMoneyTransfer.d.ts +13 -0
- package/lib/task/returnMoneyTransfer.js +2 -0
- package/lib/task/returnOrder.d.ts +13 -0
- package/lib/task/returnOrder.js +2 -0
- package/lib/task/returnPayTransaction.d.ts +13 -0
- package/lib/task/returnPayTransaction.js +2 -0
- package/lib/task/returnPointAward.d.ts +13 -0
- package/lib/task/returnPointAward.js +2 -0
- package/lib/task/returnReserveTransaction.d.ts +14 -0
- package/lib/task/returnReserveTransaction.js +2 -0
- package/lib/task/sendEmailMessage.d.ts +18 -0
- package/lib/task/sendEmailMessage.js +2 -0
- package/lib/task/sendOrder.d.ts +20 -0
- package/lib/task/sendOrder.js +2 -0
- package/lib/task/syncScreeningRooms.d.ts +22 -0
- package/lib/task/syncScreeningRooms.js +2 -0
- package/lib/{factory/task → task}/triggerWebhook.d.ts +3 -3
- package/lib/task/triggerWebhook.js +2 -0
- package/lib/task/useReservation.d.ts +20 -0
- package/lib/task/useReservation.js +2 -0
- package/lib/task/voidMoneyTransferTransaction.d.ts +24 -0
- package/lib/task/voidMoneyTransferTransaction.js +2 -0
- package/lib/task/voidPayTransaction.d.ts +29 -0
- package/lib/task/voidPayTransaction.js +2 -0
- package/lib/task/voidPayment.d.ts +16 -0
- package/lib/task/voidPayment.js +2 -0
- package/lib/task/voidRegisterServiceTransaction.d.ts +24 -0
- package/lib/task/voidRegisterServiceTransaction.js +2 -0
- package/lib/task/voidReserveTransaction.d.ts +29 -0
- package/lib/task/voidReserveTransaction.js +2 -0
- package/lib/task.d.ts +125 -0
- package/lib/task.js +2 -0
- package/lib/taskName.d.ts +118 -0
- package/lib/taskName.js +124 -0
- package/lib/{factory/taskStatus.d.ts → taskStatus.d.ts} +1 -2
- package/lib/{factory/taskStatus.js → taskStatus.js} +2 -2
- package/lib/{factory/thing.d.ts → thing.d.ts} +8 -3
- package/lib/thing.js +2 -0
- package/lib/transaction/moneyTransfer.d.ts +138 -0
- package/lib/transaction/moneyTransfer.js +2 -0
- package/lib/transaction/placeOrder.d.ts +208 -0
- package/lib/transaction/placeOrder.js +2 -0
- package/lib/transaction/returnOrder.d.ts +183 -0
- package/lib/transaction/returnOrder.js +17 -0
- package/lib/transaction.d.ts +184 -0
- package/lib/transaction.js +2 -0
- package/lib/{factory/transactionStatusType.d.ts → transactionStatusType.d.ts} +1 -2
- package/lib/{factory/transactionStatusType.js → transactionStatusType.js} +3 -3
- package/lib/{factory/transactionTasksExportationStatus.d.ts → transactionTasksExportationStatus.d.ts} +1 -2
- package/lib/{factory/transactionTasksExportationStatus.js → transactionTasksExportationStatus.js} +3 -3
- package/lib/transactionType.d.ts +17 -0
- package/lib/transactionType.js +21 -0
- package/lib/trip/busTrip.d.ts +51 -0
- package/lib/trip/busTrip.js +2 -0
- package/lib/trip.d.ts +13 -0
- package/lib/trip.js +2 -0
- package/lib/tripType.d.ts +7 -0
- package/lib/tripType.js +11 -0
- package/lib/{factory/unitCode.d.ts → unitCode.d.ts} +4 -0
- package/lib/{factory/unitCode.js → unitCode.js} +5 -0
- package/lib/unitPriceOffer/merchantReturnPolicy.d.ts +39 -0
- package/lib/unitPriceOffer/merchantReturnPolicy.js +2 -0
- package/lib/unitPriceOffer.d.ts +261 -0
- package/lib/unitPriceOffer.js +2 -0
- package/package.json +15 -14
- package/CHANGELOG.md +0 -120
- package/lib/factory/action/cancel/reservation.d.ts +0 -44
- package/lib/factory/action/consume/use.d.ts +0 -15
- package/lib/factory/action/interact/inform.d.ts +0 -19
- package/lib/factory/action/interact/register/programMembership.d.ts +0 -12
- package/lib/factory/action/interact/register.d.ts +0 -15
- package/lib/factory/action/interact/unRegister/programMembership.d.ts +0 -12
- package/lib/factory/action/interact/unRegister.d.ts +0 -15
- package/lib/factory/action/reserve.d.ts +0 -44
- package/lib/factory/action.d.ts +0 -83
- package/lib/factory/actionType.d.ts +0 -15
- package/lib/factory/actionType.js +0 -18
- package/lib/factory/categoryCode.d.ts +0 -86
- package/lib/factory/creativeWork/message/email.d.ts +0 -18
- package/lib/factory/creativeWork/movie.d.ts +0 -66
- package/lib/factory/creativeWorkType.d.ts +0 -8
- package/lib/factory/creativeWorkType.js +0 -11
- package/lib/factory/distributor.d.ts +0 -21
- package/lib/factory/errors.d.ts +0 -14
- package/lib/factory/errors.js +0 -25
- package/lib/factory/event/screeningEvent.d.ts +0 -339
- package/lib/factory/event/screeningEventSeries.d.ts +0 -162
- package/lib/factory/offer/product.d.ts +0 -66
- package/lib/factory/offerCatalog.d.ts +0 -61
- package/lib/factory/organizationType.d.ts +0 -8
- package/lib/factory/organizationType.js +0 -11
- package/lib/factory/paymentMethodType.d.ts +0 -29
- package/lib/factory/paymentMethodType.js +0 -32
- package/lib/factory/place/movieTheater.d.ts +0 -86
- package/lib/factory/place/screeningRoom.d.ts +0 -22
- package/lib/factory/place/screeningRoomSection.d.ts +0 -20
- package/lib/factory/place/seat.d.ts +0 -42
- package/lib/factory/priceSpecification/categoryCodeChargeSpecification.d.ts +0 -14
- package/lib/factory/priceSpecification/compoundPriceSpecification.d.ts +0 -22
- package/lib/factory/priceSpecification/movieTicketTypeChargeSpecification.d.ts +0 -37
- package/lib/factory/priceSpecification/unitPriceSpecification.d.ts +0 -24
- package/lib/factory/programMembership.d.ts +0 -61
- package/lib/factory/project.d.ts +0 -68
- package/lib/factory/quantitativeValue.d.ts +0 -23
- package/lib/factory/reservation/event.d.ts +0 -56
- package/lib/factory/serviceType.d.ts +0 -9
- package/lib/factory/subject.d.ts +0 -52
- package/lib/factory/task.d.ts +0 -70
- package/lib/factory/taskExecutionResult.d.ts +0 -9
- package/lib/factory/taskName.d.ts +0 -16
- package/lib/factory/taskName.js +0 -19
- package/lib/factory/ticketType.d.ts +0 -84
- package/lib/factory/transaction/cancelReservation.d.ts +0 -98
- package/lib/factory/transaction/registerProgramMembership.d.ts +0 -85
- package/lib/factory/transaction/reserve.d.ts +0 -147
- package/lib/factory/transaction.d.ts +0 -120
- package/lib/factory/transactionType.d.ts +0 -18
- package/lib/factory/transactionType.js +0 -21
- package/lib/factory/videoFormatType.d.ts +0 -12
- package/lib/factory/videoFormatType.js +0 -15
- /package/lib/{factory/accountTitle.js → account/action/moneyTransfer.js} +0 -0
- /package/lib/{factory/action.js → account/transaction/deposit.js} +0 -0
- /package/lib/{factory/action/authorize.js → account/transaction/transfer.js} +0 -0
- /package/lib/{factory/action/cancel/reservation.js → account/transaction/withdraw.js} +0 -0
- /package/lib/{factory → account}/transaction.js +0 -0
- /package/lib/{factory/action/consume/use.js → accountTitle.js} +0 -0
- /package/lib/{factory/action/interact/register/programMembership.js → action/authorize/offer/moneyTransfer.js} +0 -0
- /package/lib/{factory → action/authorize}/offer/product.js +0 -0
- /package/lib/{factory/action/interact/unRegister.js → action/authorize/offer/seatReservation/coa.js} +0 -0
- /package/lib/{factory/action/interact/register.js → action/authorize.js} +0 -0
- /package/lib/{factory → action/cancel}/reservation.js +0 -0
- /package/lib/{factory/action/reserve.js → action/check/paymentMethod/movieTicket.js} +0 -0
- /package/lib/{factory/action/interact/unRegister/programMembership.js → action/check.js} +0 -0
- /package/lib/{factory/creativeWork.js → action/consume/use/reservation.js} +0 -0
- /package/lib/{factory/autoGenerated.js → action/consume/use.js} +0 -0
- /package/lib/{factory/creativeWork/movie.js → action/interact/confirm/moneyTransfer.js} +0 -0
- /package/lib/{factory/distributor.js → action/interact/confirm/pay.js} +0 -0
- /package/lib/{factory/event.js → action/interact/confirm/registerService.js} +0 -0
- /package/lib/{factory/event/screeningEvent.js → action/interact/confirm/reservation.js} +0 -0
- /package/lib/{factory/creativeWork/message/email.js → action/interact/confirm.js} +0 -0
- /package/lib/{factory/event/screeningEventSeries.js → action/interact/inform.js} +0 -0
- /package/lib/{factory/monetaryAmount.js → action/interact/register/service.js} +0 -0
- /package/lib/{factory/language.js → action/interact/register.js} +0 -0
- /package/lib/{factory/task → action}/reserve.js +0 -0
- /package/lib/{factory/multilingualString.js → action/trade/order.js} +0 -0
- /package/lib/{factory/offer.js → action/trade/pay.js} +0 -0
- /package/lib/{factory/offerCatalog.js → action/trade/refund.js} +0 -0
- /package/lib/{factory/place.js → action/transfer/give.js} +0 -0
- /package/lib/{factory/place/movieTheater.js → action/transfer/moneyTransfer.js} +0 -0
- /package/lib/{factory/place/screeningRoomSection.js → action/transfer/return/moneyTransfer.js} +0 -0
- /package/lib/{factory/place/seat.js → action/transfer/return/order.js} +0 -0
- /package/lib/{factory/priceSpecification.js → action/transfer/return/paymentMethod.js} +0 -0
- /package/lib/{factory/priceSpecification/categoryCodeChargeSpecification.js → action/transfer/return/pointAward.js} +0 -0
- /package/lib/{factory/priceSpecification/compoundPriceSpecification.js → action/transfer/return/reserveTransaction.js} +0 -0
- /package/lib/{factory/place/screeningRoom.js → action/transfer/return.js} +0 -0
- /package/lib/{factory/priceSpecification/unitPriceSpecification.js → action/transfer/send/message/email.js} +0 -0
- /package/lib/{factory/project.js → action/transfer/send/order.js} +0 -0
- /package/lib/{factory/priceSpecification/movieTicketTypeChargeSpecification.js → action/transfer/send.js} +0 -0
- /package/lib/{factory/qualitativeValue.js → action/update/delete/member.js} +0 -0
- /package/lib/{factory/propertyValue.js → action/update/delete.js} +0 -0
- /package/lib/{factory/action/interact/inform.js → action.js} +0 -0
- /package/lib/{factory/quantitativeValue.js → additionalProperty.js} +0 -0
- /package/lib/{factory/task → assetTransaction}/cancelReservation.js +0 -0
- /package/lib/{factory/reservation/reservationPackage.js → assetTransaction/moneyTransfer.js} +0 -0
- /package/lib/{factory/serviceType.js → assetTransaction/pay.js} +0 -0
- /package/lib/{factory/subject.js → assetTransaction/refund.js} +0 -0
- /package/lib/{factory/task.js → assetTransaction/registerService.js} +0 -0
- /package/lib/{factory/transaction → assetTransaction}/reserve.js +0 -0
- /package/lib/{factory/reservation/event.js → assetTransaction.js} +0 -0
- /package/lib/{factory/task/aggregateScreeningEvent.js → authorization.js} +0 -0
- /package/lib/{factory/task/cancelPendingReservation.js → autoGenerated.js} +0 -0
- /package/lib/{factory/task/importEventsFromCOA.js → businessEntityType.js} +0 -0
- /package/lib/{factory/clientUser.d.ts → clientUser.d.ts} +0 -0
- /package/lib/{factory/clientUser.js → clientUser.js} +0 -0
- /package/lib/{factory/task/importOffersFromCOA.js → cognito.js} +0 -0
- /package/lib/{factory/taskExecutionResult.js → creativeWork/comment.js} +0 -0
- /package/lib/{factory/thing.js → creativeWork/movie.js} +0 -0
- /package/lib/{factory/ticketType.js → creativeWork/softwareApplication/webApplication.js} +0 -0
- /package/lib/{factory/task/triggerWebhook.js → creativeWork.js} +0 -0
- /package/lib/{factory/transaction/cancelReservation.js → customer.js} +0 -0
- /package/lib/{factory/transaction/registerProgramMembership.js → event.js} +0 -0
- /package/lib/{factory/language.d.ts → language.d.ts} +0 -0
- /package/lib/{factory/qualitativeValue.d.ts → qualitativeValue.d.ts} +0 -0
package/lib/index.d.ts
CHANGED
|
@@ -1,174 +1,357 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* factory
|
|
3
3
|
*/
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
12
|
-
import * as
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
19
|
-
import * as
|
|
20
|
-
import
|
|
21
|
-
import * as
|
|
22
|
-
import * as
|
|
23
|
-
import * as
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import * as
|
|
28
|
-
import * as
|
|
29
|
-
import
|
|
30
|
-
import * as
|
|
31
|
-
import * as
|
|
32
|
-
import
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import * as
|
|
36
|
-
import * as
|
|
37
|
-
import * as
|
|
38
|
-
import * as
|
|
39
|
-
import
|
|
40
|
-
import
|
|
41
|
-
import * as
|
|
42
|
-
import * as
|
|
43
|
-
import
|
|
44
|
-
import
|
|
45
|
-
import * as
|
|
46
|
-
import
|
|
47
|
-
import * as
|
|
48
|
-
import * as
|
|
49
|
-
import * as
|
|
50
|
-
import * as
|
|
51
|
-
import * as
|
|
52
|
-
import * as
|
|
53
|
-
import * as
|
|
54
|
-
import * as
|
|
55
|
-
import
|
|
56
|
-
import
|
|
57
|
-
import * as
|
|
58
|
-
import
|
|
59
|
-
import * as
|
|
60
|
-
import
|
|
61
|
-
import
|
|
62
|
-
import
|
|
63
|
-
import
|
|
64
|
-
import * as
|
|
65
|
-
import * as
|
|
66
|
-
import
|
|
67
|
-
import * as
|
|
68
|
-
import * as
|
|
69
|
-
import * as
|
|
70
|
-
import
|
|
71
|
-
import
|
|
72
|
-
import
|
|
73
|
-
import * as
|
|
74
|
-
import * as
|
|
75
|
-
import
|
|
76
|
-
import
|
|
77
|
-
import
|
|
78
|
-
import
|
|
79
|
-
import
|
|
80
|
-
import * as
|
|
4
|
+
import * as waiter from '@waiter/factory';
|
|
5
|
+
import * as cognito from './cognito';
|
|
6
|
+
export import cognito = cognito;
|
|
7
|
+
export import waiter = waiter;
|
|
8
|
+
import * as AccountFactory from './account';
|
|
9
|
+
import * as ActionFactory from './action';
|
|
10
|
+
import * as AuthorizeActionFactory from './action/authorize';
|
|
11
|
+
import * as PointAwardAuthorizeActionFactory from './action/authorize/award/point';
|
|
12
|
+
import * as AuthorizeMoneyTransferOfferActionFactory from './action/authorize/offer/moneyTransfer';
|
|
13
|
+
import * as AuthorizeProductOfferActionFactory from './action/authorize/offer/product';
|
|
14
|
+
import * as AuthorizeSeatReservationOfferActionFactory from './action/authorize/offer/seatReservation';
|
|
15
|
+
import * as AuthorizeAnyPaymentActionFactory from './action/authorize/paymentMethod/any';
|
|
16
|
+
import * as CancelReservationActionFactory from './action/cancel/reservation';
|
|
17
|
+
import * as CheckMovieTicketActionFactory from './action/check/paymentMethod/movieTicket';
|
|
18
|
+
import * as CheckTokenActionFactory from './action/check/token';
|
|
19
|
+
import * as UseReservationActionFactory from './action/consume/use/reservation';
|
|
20
|
+
import * as ConfirmMoneyTransferActionFactory from './action/interact/confirm/moneyTransfer';
|
|
21
|
+
import * as ConfirmPayActionFactory from './action/interact/confirm/pay';
|
|
22
|
+
import * as ConfirmRegisterServiceActionFactory from './action/interact/confirm/registerService';
|
|
23
|
+
import * as ConfirmReservationActionFactory from './action/interact/confirm/reservation';
|
|
24
|
+
import * as InformActionFactory from './action/interact/inform';
|
|
25
|
+
import * as RegisterActionFactory from './action/interact/register';
|
|
26
|
+
import * as RegisterServiceActionFactory from './action/interact/register/service';
|
|
27
|
+
import * as ReserveActionFactory from './action/reserve';
|
|
28
|
+
import * as OrderActionFactory from './action/trade/order';
|
|
29
|
+
import * as PayActionFactory from './action/trade/pay';
|
|
30
|
+
import * as RefundActionFactory from './action/trade/refund';
|
|
31
|
+
import * as GiveActionFactory from './action/transfer/give';
|
|
32
|
+
import * as GivePointAwardActionFactory from './action/transfer/give/pointAward';
|
|
33
|
+
import * as MoneyTransferActionFactory from './action/transfer/moneyTransfer';
|
|
34
|
+
import * as ReturnMoneyTransferActionFactory from './action/transfer/return/moneyTransfer';
|
|
35
|
+
import * as ReturnOrderActionFactory from './action/transfer/return/order';
|
|
36
|
+
import * as ReturnPaymentMethodActionFactory from './action/transfer/return/paymentMethod';
|
|
37
|
+
import * as ReturnPointAwardActionFactory from './action/transfer/return/pointAward';
|
|
38
|
+
import * as ReturnReserveTransactionActionFactory from './action/transfer/return/reserveTransaction';
|
|
39
|
+
import * as SendEmailMessageActionFactory from './action/transfer/send/message/email';
|
|
40
|
+
import * as SendOrderActionFactory from './action/transfer/send/order';
|
|
41
|
+
import * as DeleteActionFactory from './action/update/delete';
|
|
42
|
+
import * as DeleteMemberActionFactory from './action/update/delete/member';
|
|
43
|
+
import { ActionStatusType } from './actionStatusType';
|
|
44
|
+
import { ActionType } from './actionType';
|
|
45
|
+
import * as AccountTitleFactory from './accountTitle';
|
|
46
|
+
import { AccountType } from './accountType';
|
|
47
|
+
import * as AdditionalPropertyFactory from './additionalProperty';
|
|
48
|
+
import * as AuthorizationFactory from './authorization';
|
|
49
|
+
import * as CategoryCodeFactory from './categoryCode';
|
|
50
|
+
import * as ClientUserFactory from './clientUser';
|
|
51
|
+
import * as CreativeWorkFactory from './creativeWork';
|
|
52
|
+
import * as CommentFactory from './creativeWork/comment';
|
|
53
|
+
import * as EmailMessageFactory from './creativeWork/message/email';
|
|
54
|
+
import * as MovieCreativeWorkFactory from './creativeWork/movie';
|
|
55
|
+
import * as WebApplicationFactory from './creativeWork/softwareApplication/webApplication';
|
|
56
|
+
import { CreativeWorkType } from './creativeWorkType';
|
|
57
|
+
import * as CustomerFactory from './customer';
|
|
58
|
+
import * as EncodingFormat from './encodingFormat';
|
|
59
|
+
import * as AnyEventFactory from './event/anyEvent';
|
|
60
|
+
import * as ScreeningEventFactory from './event/screeningEvent';
|
|
61
|
+
import * as ScreeningEventSeriesFactory from './event/screeningEventSeries';
|
|
62
|
+
import { EventStatusType } from './eventStatusType';
|
|
63
|
+
import { EventType } from './eventType';
|
|
64
|
+
import * as IAMFactory from './iam';
|
|
65
|
+
import * as InvoiceFactory from './invoice';
|
|
66
|
+
import { ItemAvailability } from './itemAvailability';
|
|
67
|
+
import * as LanguageFactory from './language';
|
|
68
|
+
import * as MerchantReturnPolicyFactory from './merchantReturnPolicy';
|
|
69
|
+
import * as MonetaryAmountFactory from './monetaryAmount';
|
|
70
|
+
import { IMultilingualString } from './multilingualString';
|
|
71
|
+
import * as OfferFactory from './offer';
|
|
72
|
+
import * as AggregateOfferFactory from './offer/aggregateOffer';
|
|
73
|
+
import * as OfferCatalogFactory from './offerCatalog';
|
|
74
|
+
import * as OfferItemConditionFactory from './offerItemCondition';
|
|
75
|
+
import { OfferType } from './offerType';
|
|
76
|
+
import * as OrderFactory from './order';
|
|
77
|
+
import { OrderStatus } from './orderStatus';
|
|
78
|
+
import * as OrganizationFactory from './organization';
|
|
79
|
+
import { OrganizationType } from './organizationType';
|
|
80
|
+
import * as OwnershipInfoFactory from './ownershipInfo';
|
|
81
|
+
import * as PaymentCardFactory from './paymentMethod/paymentCard';
|
|
82
|
+
import * as CreditCardFactory from './paymentMethod/paymentCard/creditCard';
|
|
83
|
+
import * as MovieTicketFactory from './paymentMethod/paymentCard/movieTicket';
|
|
84
|
+
import { PaymentStatusType } from './paymentStatusType';
|
|
85
|
+
import * as PermitFactory from './permit';
|
|
86
|
+
import * as PersonFactory from './person';
|
|
87
|
+
import { PersonType } from './personType';
|
|
88
|
+
import * as BusStopFactory from './place/busStop';
|
|
89
|
+
import * as MovieTheaterPlaceFactory from './place/movieTheater';
|
|
90
|
+
import * as ScreeningRoomPlaceFactory from './place/screeningRoom';
|
|
91
|
+
import * as ScreeningRoomSectionPlaceFactory from './place/screeningRoomSection';
|
|
92
|
+
import * as SeatPlaceFactory from './place/seat';
|
|
93
|
+
import { PlaceType } from './placeType';
|
|
94
|
+
import { PriceCurrency } from './priceCurrency';
|
|
95
|
+
import * as PriceSpecificationFactory from './priceSpecification';
|
|
96
|
+
import * as CategoryCodeChargeSpecificationFactory from './priceSpecification/categoryCodeChargeSpecification';
|
|
97
|
+
import * as CompoundPriceSpecificationFactory from './priceSpecification/compoundPriceSpecification';
|
|
98
|
+
import * as MovieTicketTypeChargeSpecificationFactory from './priceSpecification/movieTicketTypeChargeSpecification';
|
|
99
|
+
import * as UnitPriceSpecificationFactory from './priceSpecification/unitPriceSpecification';
|
|
100
|
+
import { PriceSpecificationType } from './priceSpecificationType';
|
|
101
|
+
import * as ProductFactory from './product';
|
|
102
|
+
import * as ProgramMembershipFactory from './programMembership';
|
|
103
|
+
import * as project from './project';
|
|
104
|
+
import * as PropertyValueFactory from './propertyValue';
|
|
105
|
+
import * as LocationFeatureSpecificationFactory from './propertyValue/locationFeatureSpecification';
|
|
106
|
+
import * as QualitativeValueFactory from './qualitativeValue';
|
|
107
|
+
import * as QuantitativeValueFactory from './quantitativeValue';
|
|
108
|
+
import * as AccountingReportFactory from './report/accountingReport';
|
|
109
|
+
import * as ReservationFactory from './reservation';
|
|
110
|
+
import * as BusReservationFactory from './reservation/busReservation';
|
|
111
|
+
import * as EventReservationFactory from './reservation/event';
|
|
112
|
+
import * as ReservationPackageFactory from './reservation/reservationPackage';
|
|
113
|
+
import { ReservationStatusType } from './reservationStatusType';
|
|
114
|
+
import { ReservationType } from './reservationType';
|
|
115
|
+
import * as SellerFactory from './seller';
|
|
116
|
+
import * as PaymentServiceFactory from './service/paymentService';
|
|
117
|
+
import * as WebAPIServiceFactory from './service/webAPI';
|
|
118
|
+
import { SortType } from './sortType';
|
|
119
|
+
import * as ThingFactory from './thing';
|
|
120
|
+
import * as BusTripFactory from './trip/busTrip';
|
|
121
|
+
import { TripType } from './tripType';
|
|
122
|
+
import { UnitCode } from './unitCode';
|
|
123
|
+
import * as UnitPriceOfferFactory from './unitPriceOffer';
|
|
124
|
+
import * as TaskFactory from './task';
|
|
125
|
+
import * as AccountMoneyTransferTaskFactory from './task/accountMoneyTransfer';
|
|
126
|
+
import * as AggregateScreeningEventTaskFactory from './task/aggregateScreeningEvent';
|
|
127
|
+
import * as AggregateUseActionsOnEventTaskFactory from './task/aggregateUseActionsOnEvent';
|
|
128
|
+
import * as CancelAccountMoneyTransferTaskFactory from './task/cancelAccountMoneyTransfer';
|
|
129
|
+
import * as CancelMoneyTransferTaskFactory from './task/cancelMoneyTransfer';
|
|
130
|
+
import * as CancelPendingReservationTaskFactory from './task/cancelPendingReservation';
|
|
131
|
+
import * as CancelReservationTaskFactory from './task/cancelReservation';
|
|
132
|
+
import * as ConfirmMoneyTransferTaskFactory from './task/confirmMoneyTransfer';
|
|
133
|
+
import * as ConfirmPayTransactionTaskFactory from './task/confirmPayTransaction';
|
|
134
|
+
import * as ConfirmRegisterServiceTaskFactory from './task/confirmRegisterService';
|
|
135
|
+
import * as ConfirmRegisterServiceTransactionTaskFactory from './task/confirmRegisterServiceTransaction';
|
|
136
|
+
import * as ConfirmReserveTransactionTaskFactory from './task/confirmReserveTransaction';
|
|
137
|
+
import * as CreateEventTaskFactory from './task/createEvent';
|
|
138
|
+
import * as DeleteTransactionTaskFactory from './task/deleteTransaction';
|
|
139
|
+
import * as GivePointAwardTaskFactory from './task/givePointAward';
|
|
140
|
+
import * as ImportEventCapacitiesFromCOATaskFactory from './task/importEventCapacitiesFromCOA';
|
|
141
|
+
import * as ImportEventsFromCOATaskFactory from './task/importEventsFromCOA';
|
|
142
|
+
import * as ImportOffersFromCOATaskFactory from './task/importOffersFromCOA';
|
|
143
|
+
import * as MoneyTransferTaskFactory from './task/moneyTransfer';
|
|
144
|
+
import * as OnAssetTransactionStatusChangedTaskFactory from './task/onAssetTransactionStatusChanged';
|
|
145
|
+
import * as OnAuthorizationCreatedTaskFactory from './task/onAuthorizationCreated';
|
|
146
|
+
import * as OnEventChangedTaskFactory from './task/onEventChanged';
|
|
147
|
+
import * as OnOrderPaymentCompletedTaskFactory from './task/onOrderPaymentCompleted';
|
|
148
|
+
import * as OnResourceUpdatedTaskFactory from './task/onResourceUpdated';
|
|
149
|
+
import * as PayTaskFactory from './task/pay';
|
|
150
|
+
import * as PlaceOrderTaskFactory from './task/placeOrder';
|
|
151
|
+
import * as RefundTaskFactory from './task/refund';
|
|
152
|
+
import * as RegisterServiceTaskFactory from './task/registerService';
|
|
153
|
+
import * as ReserveTaskFactory from './task/reserve';
|
|
154
|
+
import * as ReturnMoneyTransferTaskFactory from './task/returnMoneyTransfer';
|
|
155
|
+
import * as ReturnOrderTaskFactory from './task/returnOrder';
|
|
156
|
+
import * as ReturnPayTransactionTaskFactory from './task/returnPayTransaction';
|
|
157
|
+
import * as ReturnPointAwardTaskFactory from './task/returnPointAward';
|
|
158
|
+
import * as ReturnReserveTransactionTaskFactory from './task/returnReserveTransaction';
|
|
159
|
+
import * as SendEmailMessageTaskFactory from './task/sendEmailMessage';
|
|
160
|
+
import * as SendOrderTaskFactory from './task/sendOrder';
|
|
161
|
+
import * as SyncScreeningRoomsTaskFactory from './task/syncScreeningRooms';
|
|
162
|
+
import * as TriggerWebhookTaskFactory from './task/triggerWebhook';
|
|
163
|
+
import * as UseReservationTaskFactory from './task/useReservation';
|
|
164
|
+
import * as VoidMoneyTransferTransactionTaskFactory from './task/voidMoneyTransferTransaction';
|
|
165
|
+
import * as VoidPaymentTaskFactory from './task/voidPayment';
|
|
166
|
+
import * as VoidPayTransactionTaskFactory from './task/voidPayTransaction';
|
|
167
|
+
import * as VoidRegisterServiceTransactionTaskFactory from './task/voidRegisterServiceTransaction';
|
|
168
|
+
import * as VoidReserveTransactionTaskFactory from './task/voidReserveTransaction';
|
|
169
|
+
import { TaskName } from './taskName';
|
|
170
|
+
import { TaskStatus } from './taskStatus';
|
|
171
|
+
import * as AssetTransactionFactory from './assetTransaction';
|
|
172
|
+
import * as CancelReservationAssetTransactionFactory from './assetTransaction/cancelReservation';
|
|
173
|
+
import * as MoneyTransferAssetTransactionFactory from './assetTransaction/moneyTransfer';
|
|
174
|
+
import * as PayAssetTransactionFactory from './assetTransaction/pay';
|
|
175
|
+
import * as RefundAssetTransactionFactory from './assetTransaction/refund';
|
|
176
|
+
import * as RegisterServiceAssetTransactionFactory from './assetTransaction/registerService';
|
|
177
|
+
import * as ReserveAssetTransactionFactory from './assetTransaction/reserve';
|
|
178
|
+
import { AssetTransactionType } from './assetTransactionType';
|
|
179
|
+
import { TransactionStatusType } from './transactionStatusType';
|
|
180
|
+
import { TransactionTasksExportationStatus } from './transactionTasksExportationStatus';
|
|
181
|
+
import * as TransactionFactory from './transaction';
|
|
182
|
+
import * as MoneyTransferTransactionFactory from './transaction/moneyTransfer';
|
|
183
|
+
import * as PlaceOrderTransactionFactory from './transaction/placeOrder';
|
|
184
|
+
import * as ReturnOrderTransactionFactory from './transaction/returnOrder';
|
|
185
|
+
import { TransactionType } from './transactionType';
|
|
186
|
+
import { ErrorCode } from './errorCode';
|
|
187
|
+
import * as errors from './errors';
|
|
81
188
|
export import errors = errors;
|
|
82
189
|
export import errorCode = ErrorCode;
|
|
190
|
+
export import account = AccountFactory;
|
|
83
191
|
export import actionStatusType = ActionStatusType;
|
|
84
192
|
export import actionType = ActionType;
|
|
85
193
|
export declare namespace action {
|
|
86
194
|
export import IAction = ActionFactory.IAction;
|
|
87
195
|
export import IAttributes = ActionFactory.IAttributes;
|
|
196
|
+
export import IDynamicAttributes = ActionFactory.IDynamicAttributes;
|
|
197
|
+
export import IParticipantAsWebApplication = ActionFactory.IParticipantAsWebApplication;
|
|
198
|
+
export import IParticipantAsPerson = ActionFactory.IParticipantAsPerson;
|
|
199
|
+
export import IParticipantAsSeller = ActionFactory.IParticipantAsSeller;
|
|
200
|
+
export import IParticipantAsProject = ActionFactory.IParticipantAsProject;
|
|
201
|
+
export import IParticipantAsCustomer = ActionFactory.IParticipantAsCustomer;
|
|
88
202
|
export import IParticipant = ActionFactory.IParticipant;
|
|
89
203
|
export import IPurpose = ActionFactory.IPurpose;
|
|
204
|
+
export import ISortOrder = ActionFactory.ISortOrder;
|
|
205
|
+
export import ISearchConditions = ActionFactory.ISearchConditions;
|
|
90
206
|
namespace authorize {
|
|
91
207
|
export import IAction = AuthorizeActionFactory.IAction;
|
|
92
208
|
export import IAttributes = AuthorizeActionFactory.IAttributes;
|
|
93
209
|
namespace award {
|
|
210
|
+
export import point = PointAwardAuthorizeActionFactory;
|
|
94
211
|
}
|
|
95
212
|
namespace paymentMethod {
|
|
213
|
+
export import any = AuthorizeAnyPaymentActionFactory;
|
|
96
214
|
}
|
|
97
215
|
namespace discount {
|
|
98
216
|
}
|
|
99
217
|
namespace offer {
|
|
218
|
+
export import moneyTransfer = AuthorizeMoneyTransferOfferActionFactory;
|
|
219
|
+
export import product = AuthorizeProductOfferActionFactory;
|
|
220
|
+
export import seatReservation = AuthorizeSeatReservationOfferActionFactory;
|
|
100
221
|
}
|
|
101
222
|
}
|
|
102
223
|
namespace cancel {
|
|
103
224
|
export import reservation = CancelReservationActionFactory;
|
|
104
225
|
}
|
|
226
|
+
namespace check {
|
|
227
|
+
namespace paymentMethod {
|
|
228
|
+
export import movieTicket = CheckMovieTicketActionFactory;
|
|
229
|
+
}
|
|
230
|
+
export import token = CheckTokenActionFactory;
|
|
231
|
+
}
|
|
105
232
|
namespace interact {
|
|
233
|
+
namespace confirm {
|
|
234
|
+
export import moneyTransfer = ConfirmMoneyTransferActionFactory;
|
|
235
|
+
export import registerService = ConfirmRegisterServiceActionFactory;
|
|
236
|
+
export import pay = ConfirmPayActionFactory;
|
|
237
|
+
export import reservation = ConfirmReservationActionFactory;
|
|
238
|
+
}
|
|
106
239
|
export import inform = InformActionFactory;
|
|
107
240
|
namespace register {
|
|
108
241
|
export import IAction = RegisterActionFactory.IAction;
|
|
109
242
|
export import IAttributes = RegisterActionFactory.IAttributes;
|
|
110
|
-
export import
|
|
111
|
-
}
|
|
112
|
-
namespace unRegister {
|
|
113
|
-
export import IAction = UnRegisterActionFactory.IAction;
|
|
114
|
-
export import IAttributes = UnRegisterActionFactory.IAttributes;
|
|
115
|
-
export import programMembership = UnRegisterProgramMembershipActionFactory;
|
|
243
|
+
export import service = RegisterServiceActionFactory;
|
|
116
244
|
}
|
|
117
245
|
}
|
|
118
246
|
namespace trade {
|
|
247
|
+
export import order = OrderActionFactory;
|
|
248
|
+
export import pay = PayActionFactory;
|
|
249
|
+
export import refund = RefundActionFactory;
|
|
119
250
|
}
|
|
120
251
|
namespace transfer {
|
|
252
|
+
export import moneyTransfer = MoneyTransferActionFactory;
|
|
121
253
|
namespace give {
|
|
122
|
-
|
|
123
|
-
|
|
254
|
+
export import IAction = GiveActionFactory.IAction;
|
|
255
|
+
export import IAttributes = GiveActionFactory.IAttributes;
|
|
256
|
+
export import pointAward = GivePointAwardActionFactory;
|
|
124
257
|
}
|
|
125
258
|
/**
|
|
126
259
|
* 返却アクション
|
|
127
260
|
* returnはネームスペース名に使えないのでreturnAction
|
|
128
261
|
*/
|
|
129
262
|
namespace returnAction {
|
|
263
|
+
export import moneyTransfer = ReturnMoneyTransferActionFactory;
|
|
264
|
+
export import order = ReturnOrderActionFactory;
|
|
265
|
+
export import paymentMethod = ReturnPaymentMethodActionFactory;
|
|
266
|
+
export import pointAward = ReturnPointAwardActionFactory;
|
|
267
|
+
export import reserveTransaction = ReturnReserveTransactionActionFactory;
|
|
130
268
|
}
|
|
131
269
|
namespace send {
|
|
132
270
|
namespace message {
|
|
271
|
+
export import email = SendEmailMessageActionFactory;
|
|
133
272
|
}
|
|
273
|
+
export import order = SendOrderActionFactory;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
namespace update {
|
|
277
|
+
namespace deleteAction {
|
|
278
|
+
export import IAction = DeleteActionFactory.IAction;
|
|
279
|
+
export import IAttributes = DeleteActionFactory.IAttributes;
|
|
280
|
+
export import member = DeleteMemberActionFactory;
|
|
134
281
|
}
|
|
135
282
|
}
|
|
136
283
|
namespace consume {
|
|
137
284
|
namespace use {
|
|
285
|
+
export import reservation = UseReservationActionFactory;
|
|
138
286
|
}
|
|
139
287
|
}
|
|
140
288
|
export import reserve = ReserveActionFactory;
|
|
141
289
|
}
|
|
142
290
|
export import accountTitle = AccountTitleFactory;
|
|
291
|
+
export import accountType = AccountType;
|
|
292
|
+
export import additionalProperty = AdditionalPropertyFactory;
|
|
293
|
+
export import aggregateOffer = AggregateOfferFactory;
|
|
294
|
+
export import authorization = AuthorizationFactory;
|
|
143
295
|
export import categoryCode = CategoryCodeFactory;
|
|
144
296
|
export import clientUser = ClientUserFactory;
|
|
145
297
|
export declare namespace creativeWork {
|
|
298
|
+
export import ICreativeWork = CreativeWorkFactory.ICreativeWork;
|
|
299
|
+
export import comment = CommentFactory;
|
|
146
300
|
namespace message {
|
|
147
301
|
export import email = EmailMessageFactory;
|
|
148
302
|
}
|
|
149
303
|
export import movie = MovieCreativeWorkFactory;
|
|
304
|
+
namespace softwareApplication {
|
|
305
|
+
export import webApplication = WebApplicationFactory;
|
|
306
|
+
}
|
|
150
307
|
}
|
|
151
308
|
export import creativeWorkType = CreativeWorkType;
|
|
309
|
+
export import customer = CustomerFactory;
|
|
152
310
|
export declare namespace event {
|
|
153
|
-
type ISearchConditions<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.ISearchConditions : T extends EventType.ScreeningEventSeries ? ScreeningEventSeriesFactory.ISearchConditions :
|
|
154
|
-
type IAttributes<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.IAttributes : T extends EventType.ScreeningEventSeries ? ScreeningEventSeriesFactory.IAttributes :
|
|
155
|
-
type IEvent<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.IEvent : T extends EventType.ScreeningEventSeries ? ScreeningEventSeriesFactory.IEvent :
|
|
311
|
+
type ISearchConditions<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.ISearchConditions : T extends EventType.ScreeningEventSeries ? ScreeningEventSeriesFactory.ISearchConditions : T extends EventType.Event ? AnyEventFactory.ISearchConditions : never;
|
|
312
|
+
type IAttributes<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.IAttributes : T extends EventType.ScreeningEventSeries ? ScreeningEventSeriesFactory.IAttributes : T extends EventType.Event ? AnyEventFactory.IAttributes : never;
|
|
313
|
+
type IEvent<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.IEvent : T extends EventType.ScreeningEventSeries ? ScreeningEventSeriesFactory.IEvent : T extends EventType.Event ? AnyEventFactory.IEvent : never;
|
|
314
|
+
type ICreateParams<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.ICreateParams : T extends EventType.ScreeningEventSeries ? ScreeningEventSeriesFactory.ICreateParams : T extends EventType.Event ? AnyEventFactory.ICreateParams : never;
|
|
315
|
+
type IUpdateParams<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.IUpdateParams : T extends EventType.ScreeningEventSeries ? ScreeningEventSeriesFactory.ICreateParams : T extends EventType.Event ? AnyEventFactory.IUpdateParams : never;
|
|
316
|
+
export import event = AnyEventFactory;
|
|
156
317
|
export import screeningEvent = ScreeningEventFactory;
|
|
157
318
|
export import screeningEventSeries = ScreeningEventSeriesFactory;
|
|
158
319
|
}
|
|
320
|
+
export import encodingFormat = EncodingFormat;
|
|
159
321
|
export import eventStatusType = EventStatusType;
|
|
160
322
|
export import eventType = EventType;
|
|
323
|
+
export import iam = IAMFactory;
|
|
324
|
+
export import invoice = InvoiceFactory;
|
|
161
325
|
export import itemAvailability = ItemAvailability;
|
|
162
326
|
export import language = LanguageFactory;
|
|
327
|
+
export import merchantReturnPolicy = MerchantReturnPolicyFactory;
|
|
163
328
|
export import monetaryAmount = MonetaryAmountFactory;
|
|
164
|
-
export
|
|
329
|
+
export type multilingualString = IMultilingualString;
|
|
165
330
|
export import offer = OfferFactory;
|
|
166
331
|
export import offerCatalog = OfferCatalogFactory;
|
|
332
|
+
export import offerItemCondition = OfferItemConditionFactory;
|
|
167
333
|
export import offerType = OfferType;
|
|
334
|
+
export import order = OrderFactory;
|
|
335
|
+
export import orderStatus = OrderStatus;
|
|
336
|
+
export import organization = OrganizationFactory;
|
|
168
337
|
export import organizationType = OrganizationType;
|
|
169
|
-
export import
|
|
338
|
+
export import ownershipInfo = OwnershipInfoFactory;
|
|
339
|
+
export declare namespace paymentMethod {
|
|
340
|
+
type ISearchConditions = any;
|
|
341
|
+
type IPaymentMethod = CreditCardFactory.ICheckedCard | MovieTicketFactory.IMovieTicket;
|
|
342
|
+
namespace paymentCard {
|
|
343
|
+
export import IPaymentCard = PaymentCardFactory.IPaymentCard;
|
|
344
|
+
export import creditCard = CreditCardFactory;
|
|
345
|
+
export import movieTicket = MovieTicketFactory;
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
export import paymentStatusType = PaymentStatusType;
|
|
349
|
+
export import permit = PermitFactory;
|
|
350
|
+
export import person = PersonFactory;
|
|
351
|
+
export import personType = PersonType;
|
|
170
352
|
export import priceCurrency = PriceCurrency;
|
|
171
353
|
export declare namespace place {
|
|
354
|
+
export import busStop = BusStopFactory;
|
|
172
355
|
export import movieTheater = MovieTheaterPlaceFactory;
|
|
173
356
|
export import screeningRoom = ScreeningRoomPlaceFactory;
|
|
174
357
|
export import screeningRoomSection = ScreeningRoomSectionPlaceFactory;
|
|
@@ -176,74 +359,138 @@ export declare namespace place {
|
|
|
176
359
|
}
|
|
177
360
|
export import placeType = PlaceType;
|
|
178
361
|
export declare namespace priceSpecification {
|
|
362
|
+
export import IAccounting = PriceSpecificationFactory.IAccounting;
|
|
363
|
+
export import IEligibleQuantity = PriceSpecificationFactory.IEligibleQuantity;
|
|
364
|
+
export import IEligibleTransactionVolume = PriceSpecificationFactory.IEligibleTransactionVolume;
|
|
179
365
|
type IPriceSpecification<T extends PriceSpecificationType> = T extends PriceSpecificationType.CategoryCodeChargeSpecification ? CategoryCodeChargeSpecificationFactory.IPriceSpecification : T extends PriceSpecificationType.MovieTicketTypeChargeSpecification ? MovieTicketTypeChargeSpecificationFactory.IPriceSpecification : T extends PriceSpecificationType.UnitPriceSpecification ? UnitPriceSpecificationFactory.IPriceSpecification : PriceSpecificationFactory.IPriceSpecification<PriceSpecificationType>;
|
|
180
366
|
type ISearchConditions<T extends PriceSpecificationType> = PriceSpecificationFactory.ISearchConditions<T>;
|
|
367
|
+
export import unitPrice = UnitPriceSpecificationFactory;
|
|
181
368
|
}
|
|
182
369
|
export declare namespace compoundPriceSpecification {
|
|
183
370
|
type IPriceSpecification<T extends PriceSpecificationType> = CompoundPriceSpecificationFactory.IPriceSpecification<priceSpecification.IPriceSpecification<T>>;
|
|
184
|
-
type ISearchConditions<T extends PriceSpecificationType> = CompoundPriceSpecificationFactory.ISearchConditions<T>;
|
|
185
371
|
}
|
|
186
372
|
export import priceSpecificationType = PriceSpecificationType;
|
|
187
373
|
export import programMembership = ProgramMembershipFactory;
|
|
374
|
+
export import product = ProductFactory;
|
|
188
375
|
export import project = project;
|
|
189
|
-
export
|
|
376
|
+
export declare namespace propertyValue {
|
|
377
|
+
export import PropertyValueType = PropertyValueFactory.PropertyValueType;
|
|
378
|
+
export import IPropertyValue = PropertyValueFactory.IPropertyValue;
|
|
379
|
+
export import locationFeatureSpecification = LocationFeatureSpecificationFactory;
|
|
380
|
+
}
|
|
190
381
|
export import qualitativeValue = QualitativeValueFactory;
|
|
191
382
|
export import quantitativeValue = QuantitativeValueFactory;
|
|
383
|
+
export declare namespace report {
|
|
384
|
+
export import accountingReport = AccountingReportFactory;
|
|
385
|
+
}
|
|
192
386
|
export declare namespace reservation {
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
type
|
|
196
|
-
type
|
|
197
|
-
type
|
|
198
|
-
type
|
|
199
|
-
|
|
200
|
-
type
|
|
201
|
-
type
|
|
387
|
+
export import busReservation = BusReservationFactory;
|
|
388
|
+
export import eventReservation = EventReservationFactory;
|
|
389
|
+
type IBroker<T extends ReservationType> = T extends ReservationType.BusReservation ? ReservationFactory.IBroker : T extends ReservationType.EventReservation ? ReservationFactory.IBroker : ReservationFactory.IBroker;
|
|
390
|
+
type IIssuedThrough<T extends ReservationType> = T extends ReservationType.BusReservation ? BusReservationFactory.IIssuedThrough : T extends ReservationType.EventReservation ? EventReservationFactory.IIssuedThrough : ReservationFactory.IIssuedThrough;
|
|
391
|
+
type IPriceSpecification<T extends ReservationType> = T extends ReservationType.BusReservation ? BusReservationFactory.IPriceSpecification : T extends ReservationType.EventReservation ? EventReservationFactory.IPriceSpecification : T extends ReservationType.ReservationPackage ? ReservationPackageFactory.IPriceSpecification : ReservationFactory.IPriceSpecification;
|
|
392
|
+
type IProgramMembershipUsed<T extends ReservationType> = T extends ReservationType.BusReservation ? ReservationFactory.IProgramMembershipUsed : T extends ReservationType.EventReservation ? ReservationFactory.IProgramMembershipUsed : ReservationFactory.IProgramMembershipUsed;
|
|
393
|
+
export import IProvider = ReservationFactory.IProvider;
|
|
394
|
+
type IReservationFor<T extends ReservationType> = T extends ReservationType.BusReservation ? BusReservationFactory.IReservationFor : T extends ReservationType.EventReservation ? EventReservationFactory.IReservationFor : T extends ReservationType.ReservationPackage ? ReservationFactory.IReservationFor : ReservationFactory.IReservationFor;
|
|
395
|
+
type IReservation<T extends ReservationType> = T extends ReservationType.BusReservation ? BusReservationFactory.IReservation : T extends ReservationType.EventReservation ? EventReservationFactory.IReservation : T extends ReservationType.ReservationPackage ? ReservationPackageFactory.IReservation : ReservationFactory.IReservation<ReservationFactory.IPriceSpecification>;
|
|
396
|
+
type ISearchConditions<T extends ReservationType> = T extends ReservationType.BusReservation ? BusReservationFactory.ISearchConditions : T extends ReservationType.EventReservation ? EventReservationFactory.ISearchConditions : T extends ReservationType.ReservationPackage ? ReservationPackageFactory.ISearchConditions : ReservationPackageFactory.ISearchConditions;
|
|
397
|
+
type ISortOrder<T extends ReservationType> = T extends ReservationType.BusReservation ? ReservationFactory.ISortOrder : T extends ReservationType.EventReservation ? ReservationFactory.ISortOrder : ReservationFactory.ISortOrder;
|
|
398
|
+
type ISeat<T extends ReservationType> = T extends ReservationType.BusReservation ? ReservationFactory.ISeat : T extends ReservationType.EventReservation ? ReservationFactory.ISeat : ReservationFactory.ISeat;
|
|
399
|
+
type ISubReservation<T extends ReservationType> = T extends ReservationType.BusReservation ? BusReservationFactory.ISubReservation : T extends ReservationType.EventReservation ? EventReservationFactory.ISubReservation : T extends ReservationType.ReservationPackage ? ReservationPackageFactory.ISubReservation : any;
|
|
400
|
+
export import ITicket = ReservationFactory.ITicket;
|
|
401
|
+
type IUnderName<T extends ReservationType> = T extends ReservationType.BusReservation ? ReservationFactory.IUnderName : T extends ReservationType.EventReservation ? ReservationFactory.IUnderName : ReservationFactory.IUnderName;
|
|
402
|
+
type ITicketIssuedBy<T extends ReservationType> = T extends ReservationType.BusReservation ? ReservationFactory.ITicketIssuedBy : T extends ReservationType.EventReservation ? ReservationFactory.ITicketIssuedBy : ReservationFactory.ITicketIssuedBy;
|
|
403
|
+
type TicketType<T extends ReservationType> = T extends ReservationType.BusReservation ? ReservationFactory.TicketType : T extends ReservationType.EventReservation ? ReservationFactory.TicketType : ReservationFactory.TicketType;
|
|
404
|
+
type ITicketType<T extends ReservationType> = T extends ReservationType.BusReservation ? ReservationFactory.ITicketType : T extends ReservationType.EventReservation ? ReservationFactory.ITicketType : ReservationFactory.ITicketType;
|
|
405
|
+
export import IServiceTypeOfIssuedThrough = ReservationFactory.IServiceTypeOfIssuedThrough;
|
|
406
|
+
export import IServiceLocationContainedInPlace = ReservationFactory.IServiceLocationContainedInPlace;
|
|
407
|
+
export import IServiceLocation = ReservationFactory.IServiceLocation;
|
|
408
|
+
export import IServiceChannel = ReservationFactory.IServiceChannel;
|
|
202
409
|
}
|
|
203
410
|
export import reservationStatusType = ReservationStatusType;
|
|
204
411
|
export import reservationType = ReservationType;
|
|
412
|
+
export import seller = SellerFactory;
|
|
205
413
|
export declare namespace task {
|
|
206
|
-
|
|
207
|
-
|
|
414
|
+
type IData<T extends TaskName | string> = T extends TaskName.ConfirmReserveTransaction ? ConfirmReserveTransactionTaskFactory.IData : T extends TaskName.CreateEvent ? CreateEventTaskFactory.IData : T extends TaskName.DeleteTransaction ? DeleteTransactionTaskFactory.IData : T extends TaskName.GivePointAward ? GivePointAwardTaskFactory.IData : T extends TaskName.ConfirmMoneyTransfer ? ConfirmMoneyTransferTaskFactory.IData : T extends TaskName.OnAssetTransactionStatusChanged ? OnAssetTransactionStatusChangedTaskFactory.IData : T extends TaskName.OnAuthorizationCreated ? OnAuthorizationCreatedTaskFactory.IData : T extends TaskName.OnEventChanged ? OnEventChangedTaskFactory.IData : T extends TaskName.OnOrderPaymentCompleted ? OnOrderPaymentCompletedTaskFactory.IData : T extends TaskName.OnResourceUpdated ? OnResourceUpdatedTaskFactory.IData : T extends TaskName.PlaceOrder ? PlaceOrderTaskFactory.IData : T extends TaskName.ConfirmRegisterService ? ConfirmRegisterServiceTaskFactory.IData : T extends TaskName.ConfirmRegisterServiceTransaction ? ConfirmRegisterServiceTransactionTaskFactory.IData : T extends TaskName.ReturnMoneyTransfer ? ReturnMoneyTransferTaskFactory.IData : T extends TaskName.ReturnOrder ? ReturnOrderTaskFactory.IData : T extends TaskName.ReturnPayTransaction ? ReturnPayTransactionTaskFactory.IData : T extends TaskName.ReturnPointAward ? ReturnPointAwardTaskFactory.IData : T extends TaskName.ReturnReserveTransaction ? ReturnReserveTransactionTaskFactory.IData : T extends TaskName.SendEmailMessage ? SendEmailMessageTaskFactory.IData : T extends TaskName.SendOrder ? SendOrderTaskFactory.IData : T extends TaskName.SyncScreeningRooms ? SyncScreeningRoomsTaskFactory.IData : T extends TaskName.ConfirmPayTransaction ? ConfirmPayTransactionTaskFactory.IData : T extends TaskName.TriggerWebhook ? TriggerWebhookTaskFactory.IData : T extends TaskName.UseReservation ? UseReservationTaskFactory.IData : T extends TaskName.VoidMoneyTransferTransaction ? VoidMoneyTransferTransactionTaskFactory.IData : T extends TaskName.VoidPayTransaction ? VoidPayTransactionTaskFactory.IData : T extends TaskName.VoidRegisterServiceTransaction ? VoidRegisterServiceTransactionTaskFactory.IData : T extends TaskName.VoidReserveTransaction ? VoidReserveTransactionTaskFactory.IData : TaskFactory.IData;
|
|
415
|
+
type IAttributes<T extends TaskName | string> = T extends TaskName.ConfirmReserveTransaction ? ConfirmReserveTransactionTaskFactory.IAttributes : T extends TaskName.CreateEvent ? CreateEventTaskFactory.IAttributes : T extends TaskName.DeleteTransaction ? DeleteTransactionTaskFactory.IAttributes : T extends TaskName.GivePointAward ? GivePointAwardTaskFactory.IAttributes : T extends TaskName.ConfirmMoneyTransfer ? ConfirmMoneyTransferTaskFactory.IAttributes : T extends TaskName.OnAssetTransactionStatusChanged ? OnAssetTransactionStatusChangedTaskFactory.IAttributes : T extends TaskName.OnAuthorizationCreated ? OnAuthorizationCreatedTaskFactory.IAttributes : T extends TaskName.OnEventChanged ? OnEventChangedTaskFactory.IAttributes : T extends TaskName.OnOrderPaymentCompleted ? OnOrderPaymentCompletedTaskFactory.IAttributes : T extends TaskName.OnResourceUpdated ? OnResourceUpdatedTaskFactory.IAttributes : T extends TaskName.PlaceOrder ? PlaceOrderTaskFactory.IAttributes : T extends TaskName.ConfirmRegisterService ? ConfirmRegisterServiceTaskFactory.IAttributes : T extends TaskName.ConfirmRegisterServiceTransaction ? ConfirmRegisterServiceTransactionTaskFactory.IAttributes : T extends TaskName.ReturnMoneyTransfer ? ReturnMoneyTransferTaskFactory.IAttributes : T extends TaskName.ReturnOrder ? ReturnOrderTaskFactory.IAttributes : T extends TaskName.ReturnPayTransaction ? ReturnPayTransactionTaskFactory.IAttributes : T extends TaskName.ReturnPointAward ? ReturnPointAwardTaskFactory.IAttributes : T extends TaskName.ReturnReserveTransaction ? ReturnReserveTransactionTaskFactory.IAttributes : T extends TaskName.SendEmailMessage ? SendEmailMessageTaskFactory.IAttributes : T extends TaskName.SendOrder ? SendOrderTaskFactory.IAttributes : T extends TaskName.SyncScreeningRooms ? SyncScreeningRoomsTaskFactory.IAttributes : T extends TaskName.ConfirmPayTransaction ? ConfirmPayTransactionTaskFactory.IAttributes : T extends TaskName.TriggerWebhook ? TriggerWebhookTaskFactory.IAttributes : T extends TaskName.UseReservation ? UseReservationTaskFactory.IAttributes : T extends TaskName.VoidMoneyTransferTransaction ? VoidMoneyTransferTransactionTaskFactory.IAttributes : T extends TaskName.VoidPayTransaction ? VoidPayTransactionTaskFactory.IAttributes : T extends TaskName.VoidRegisterServiceTransaction ? VoidRegisterServiceTransactionTaskFactory.IAttributes : T extends TaskName.VoidReserveTransaction ? VoidReserveTransactionTaskFactory.IAttributes : TaskFactory.IAttributes;
|
|
416
|
+
type ITask<T extends TaskName | string> = T extends TaskName.ConfirmReserveTransaction ? ConfirmReserveTransactionTaskFactory.ITask : T extends TaskName.CreateEvent ? CreateEventTaskFactory.ITask : T extends TaskName.DeleteTransaction ? DeleteTransactionTaskFactory.ITask : T extends TaskName.GivePointAward ? GivePointAwardTaskFactory.ITask : T extends TaskName.ConfirmMoneyTransfer ? ConfirmMoneyTransferTaskFactory.ITask : T extends TaskName.OnAssetTransactionStatusChanged ? OnAssetTransactionStatusChangedTaskFactory.ITask : T extends TaskName.OnAuthorizationCreated ? OnAuthorizationCreatedTaskFactory.ITask : T extends TaskName.OnEventChanged ? OnEventChangedTaskFactory.ITask : T extends TaskName.OnOrderPaymentCompleted ? OnOrderPaymentCompletedTaskFactory.ITask : T extends TaskName.OnResourceUpdated ? OnResourceUpdatedTaskFactory.ITask : T extends TaskName.PlaceOrder ? PlaceOrderTaskFactory.ITask : T extends TaskName.ConfirmRegisterService ? ConfirmRegisterServiceTaskFactory.ITask : T extends TaskName.ConfirmRegisterServiceTransaction ? ConfirmRegisterServiceTransactionTaskFactory.ITask : T extends TaskName.ReturnMoneyTransfer ? ReturnMoneyTransferTaskFactory.ITask : T extends TaskName.ReturnOrder ? ReturnOrderTaskFactory.ITask : T extends TaskName.ReturnPayTransaction ? ReturnPayTransactionTaskFactory.ITask : T extends TaskName.ReturnPointAward ? ReturnPointAwardTaskFactory.ITask : T extends TaskName.ReturnReserveTransaction ? ReturnReserveTransactionTaskFactory.ITask : T extends TaskName.SendEmailMessage ? SendEmailMessageTaskFactory.ITask : T extends TaskName.SendOrder ? SendOrderTaskFactory.ITask : T extends TaskName.SyncScreeningRooms ? SyncScreeningRoomsTaskFactory.ITask : T extends TaskName.ConfirmPayTransaction ? ConfirmPayTransactionTaskFactory.ITask : T extends TaskName.TriggerWebhook ? TriggerWebhookTaskFactory.ITask : T extends TaskName.UseReservation ? UseReservationTaskFactory.ITask : T extends TaskName.VoidMoneyTransferTransaction ? VoidMoneyTransferTransactionTaskFactory.ITask : T extends TaskName.VoidPayTransaction ? VoidPayTransactionTaskFactory.ITask : T extends TaskName.VoidRegisterServiceTransaction ? VoidRegisterServiceTransactionTaskFactory.ITask : T extends TaskName.VoidReserveTransaction ? VoidReserveTransactionTaskFactory.ITask : TaskFactory.ITask;
|
|
208
417
|
export import ISearchConditions = TaskFactory.ISearchConditions;
|
|
209
|
-
export import
|
|
418
|
+
export import IExecutionResult = TaskFactory.IExecutionResult;
|
|
210
419
|
export import aggregateScreeningEvent = AggregateScreeningEventTaskFactory;
|
|
420
|
+
export import aggregateUseActionsOnEvent = AggregateUseActionsOnEventTaskFactory;
|
|
421
|
+
export import cancelMoneyTransfer = CancelMoneyTransferTaskFactory;
|
|
211
422
|
export import cancelPendingReservation = CancelPendingReservationTaskFactory;
|
|
212
423
|
export import cancelReservation = CancelReservationTaskFactory;
|
|
424
|
+
export import createEvent = CreateEventTaskFactory;
|
|
425
|
+
export import deleteTransaction = DeleteTransactionTaskFactory;
|
|
426
|
+
export import importEventCapacitiesFromCOA = ImportEventCapacitiesFromCOATaskFactory;
|
|
213
427
|
export import importEventsFromCOA = ImportEventsFromCOATaskFactory;
|
|
214
428
|
export import importOffersFromCOA = ImportOffersFromCOATaskFactory;
|
|
429
|
+
export import moneyTransfer = MoneyTransferTaskFactory;
|
|
430
|
+
export import pay = PayTaskFactory;
|
|
431
|
+
export import refund = RefundTaskFactory;
|
|
432
|
+
export import registerService = RegisterServiceTaskFactory;
|
|
215
433
|
export import reserve = ReserveTaskFactory;
|
|
434
|
+
export import sendEmailMessage = SendEmailMessageTaskFactory;
|
|
435
|
+
export import syncScreeningRooms = SyncScreeningRoomsTaskFactory;
|
|
216
436
|
export import triggerWebhook = TriggerWebhookTaskFactory;
|
|
437
|
+
export import useReservation = UseReservationTaskFactory;
|
|
438
|
+
export import voidPayment = VoidPaymentTaskFactory;
|
|
439
|
+
export import onAuthorizationCreated = OnAuthorizationCreatedTaskFactory;
|
|
440
|
+
export import onEventChanged = OnEventChangedTaskFactory;
|
|
441
|
+
export import onResourceUpdated = OnResourceUpdatedTaskFactory;
|
|
442
|
+
export import accountMoneyTransfer = AccountMoneyTransferTaskFactory;
|
|
443
|
+
export import cancelAccountMoneyTransfer = CancelAccountMoneyTransferTaskFactory;
|
|
444
|
+
}
|
|
445
|
+
export declare namespace service {
|
|
446
|
+
export import paymentService = PaymentServiceFactory;
|
|
447
|
+
export import webAPI = WebAPIServiceFactory;
|
|
217
448
|
}
|
|
218
|
-
export import serviceType = ServiceTypeFactory;
|
|
219
449
|
export import sortType = SortType;
|
|
220
|
-
export import taskExecutionResult = TaskExecutionResultFactory;
|
|
221
450
|
export import taskName = TaskName;
|
|
222
451
|
export import taskStatus = TaskStatus;
|
|
452
|
+
export import thing = ThingFactory;
|
|
453
|
+
export declare namespace trip {
|
|
454
|
+
type ISearchConditions<T extends TripType> = T extends TripType.BusTrip ? BusTripFactory.ISearchConditions : never;
|
|
455
|
+
type ITrip<T extends TripType> = T extends TripType.BusTrip ? BusTripFactory.ITrip : never;
|
|
456
|
+
export import busTrip = BusTripFactory;
|
|
457
|
+
}
|
|
458
|
+
export import tripType = TripType;
|
|
459
|
+
export declare namespace assetTransaction {
|
|
460
|
+
type IProject = AssetTransactionFactory.IProject;
|
|
461
|
+
type IStartParams<T extends AssetTransactionType> = T extends AssetTransactionType.CancelReservation ? CancelReservationAssetTransactionFactory.IStartParams : T extends AssetTransactionType.MoneyTransfer ? MoneyTransferAssetTransactionFactory.IStartParams : T extends AssetTransactionType.Pay ? PayAssetTransactionFactory.IStartParams : T extends AssetTransactionType.Refund ? RefundAssetTransactionFactory.IStartParams : T extends AssetTransactionType.RegisterService ? RegisterServiceAssetTransactionFactory.IStartParams : T extends AssetTransactionType.Reserve ? ReserveAssetTransactionFactory.IStartParams : never;
|
|
462
|
+
type IAttributes<T extends AssetTransactionType> = T extends AssetTransactionType.CancelReservation ? CancelReservationAssetTransactionFactory.IAttributes : T extends AssetTransactionType.MoneyTransfer ? MoneyTransferAssetTransactionFactory.IAttributes : T extends AssetTransactionType.Pay ? PayAssetTransactionFactory.IAttributes : T extends AssetTransactionType.Refund ? RefundAssetTransactionFactory.IAttributes : T extends AssetTransactionType.RegisterService ? RegisterServiceAssetTransactionFactory.IAttributes : T extends AssetTransactionType.Reserve ? ReserveAssetTransactionFactory.IAttributes : never;
|
|
463
|
+
type ITransaction<T extends AssetTransactionType> = T extends AssetTransactionType.CancelReservation ? CancelReservationAssetTransactionFactory.ITransaction : T extends AssetTransactionType.MoneyTransfer ? MoneyTransferAssetTransactionFactory.ITransaction : T extends AssetTransactionType.Pay ? PayAssetTransactionFactory.ITransaction : T extends AssetTransactionType.Refund ? RefundAssetTransactionFactory.ITransaction : T extends AssetTransactionType.RegisterService ? RegisterServiceAssetTransactionFactory.ITransaction : T extends AssetTransactionType.Reserve ? ReserveAssetTransactionFactory.ITransaction : never;
|
|
464
|
+
type IResult<T extends AssetTransactionType> = T extends AssetTransactionType.CancelReservation ? CancelReservationAssetTransactionFactory.IResult : T extends AssetTransactionType.MoneyTransfer ? MoneyTransferAssetTransactionFactory.IResult : T extends AssetTransactionType.Pay ? PayAssetTransactionFactory.IResult : T extends AssetTransactionType.Refund ? RefundAssetTransactionFactory.IResult : T extends AssetTransactionType.RegisterService ? RegisterServiceAssetTransactionFactory.IResult : T extends AssetTransactionType.Reserve ? ReserveAssetTransactionFactory.IResult : never;
|
|
465
|
+
type IPotentialActions<T extends AssetTransactionType> = T extends AssetTransactionType.CancelReservation ? CancelReservationAssetTransactionFactory.IPotentialActions : T extends AssetTransactionType.MoneyTransfer ? MoneyTransferAssetTransactionFactory.IPotentialActions : T extends AssetTransactionType.Pay ? PayAssetTransactionFactory.IPotentialActions : T extends AssetTransactionType.Refund ? RefundAssetTransactionFactory.IPotentialActions : T extends AssetTransactionType.RegisterService ? RegisterServiceAssetTransactionFactory.IPotentialActions : T extends AssetTransactionType.Reserve ? ReserveAssetTransactionFactory.IPotentialActions : never;
|
|
466
|
+
type ISearchConditions<T extends AssetTransactionType> = T extends AssetTransactionType.CancelReservation ? CancelReservationAssetTransactionFactory.ISearchConditions : T extends AssetTransactionType.MoneyTransfer ? MoneyTransferAssetTransactionFactory.ISearchConditions : T extends AssetTransactionType.Pay ? PayAssetTransactionFactory.ISearchConditions : T extends AssetTransactionType.Refund ? RefundAssetTransactionFactory.ISearchConditions : T extends AssetTransactionType.RegisterService ? RegisterServiceAssetTransactionFactory.ISearchConditions : T extends AssetTransactionType.Reserve ? ReserveAssetTransactionFactory.ISearchConditions : never;
|
|
467
|
+
export import cancelReservation = CancelReservationAssetTransactionFactory;
|
|
468
|
+
export import moneyTransfer = MoneyTransferAssetTransactionFactory;
|
|
469
|
+
export import pay = PayAssetTransactionFactory;
|
|
470
|
+
export import refund = RefundAssetTransactionFactory;
|
|
471
|
+
export import registerService = RegisterServiceAssetTransactionFactory;
|
|
472
|
+
export import reserve = ReserveAssetTransactionFactory;
|
|
473
|
+
}
|
|
223
474
|
export declare namespace transaction {
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
475
|
+
export import IAgentAsPerson = TransactionFactory.IAgentAsPerson;
|
|
476
|
+
export import IAgentAsWebApplication = TransactionFactory.IAgentAsWebApplication;
|
|
477
|
+
export import IAgent = TransactionFactory.IAgent;
|
|
478
|
+
export import IPassportBeforeStart = TransactionFactory.IPassportBeforeStart;
|
|
479
|
+
export import ISendEmailMessageParams = TransactionFactory.ISendEmailMessageParams;
|
|
480
|
+
export import ISortOrder = TransactionFactory.ISortOrder;
|
|
481
|
+
type ISearchConditions<T extends TransactionType> = T extends TransactionType.MoneyTransfer ? MoneyTransferTransactionFactory.ISearchConditions : T extends TransactionType.PlaceOrder ? PlaceOrderTransactionFactory.ISearchConditions : T extends TransactionType.ReturnOrder ? ReturnOrderTransactionFactory.ISearchConditions : never;
|
|
482
|
+
type IStartParams<T extends TransactionType> = T extends TransactionType.MoneyTransfer ? MoneyTransferTransactionFactory.IStartParams : T extends TransactionType.PlaceOrder ? PlaceOrderTransactionFactory.IStartParams : T extends TransactionType.ReturnOrder ? ReturnOrderTransactionFactory.IStartParams : never;
|
|
483
|
+
type IResult<T extends TransactionType> = T extends TransactionType.MoneyTransfer ? MoneyTransferTransactionFactory.IResult : T extends TransactionType.PlaceOrder ? PlaceOrderTransactionFactory.IResult : T extends TransactionType.ReturnOrder ? ReturnOrderTransactionFactory.IResult : never;
|
|
484
|
+
type IPotentialActions<T extends TransactionType> = T extends TransactionType.MoneyTransfer ? MoneyTransferTransactionFactory.IPotentialActions : T extends TransactionType.PlaceOrder ? PlaceOrderTransactionFactory.IPotentialActions : T extends TransactionType.ReturnOrder ? ReturnOrderTransactionFactory.IPotentialActions : never;
|
|
485
|
+
type IAttributes<T extends TransactionType> = T extends TransactionType.MoneyTransfer ? MoneyTransferTransactionFactory.IAttributes : T extends TransactionType.PlaceOrder ? PlaceOrderTransactionFactory.IAttributes : T extends TransactionType.ReturnOrder ? ReturnOrderTransactionFactory.IAttributes : never;
|
|
486
|
+
type ITransaction<T extends TransactionType> = T extends TransactionType.MoneyTransfer ? MoneyTransferTransactionFactory.ITransaction : T extends TransactionType.PlaceOrder ? PlaceOrderTransactionFactory.ITransaction : T extends TransactionType.ReturnOrder ? ReturnOrderTransactionFactory.ITransaction : never;
|
|
487
|
+
export import moneyTransfer = MoneyTransferTransactionFactory;
|
|
488
|
+
export import placeOrder = PlaceOrderTransactionFactory;
|
|
489
|
+
export import returnOrder = ReturnOrderTransactionFactory;
|
|
233
490
|
}
|
|
234
|
-
export import
|
|
491
|
+
export import transactionType = TransactionType;
|
|
235
492
|
export import transactionStatusType = TransactionStatusType;
|
|
236
493
|
export import transactionTasksExportationStatus = TransactionTasksExportationStatus;
|
|
237
|
-
export import
|
|
494
|
+
export import assetTransactionType = AssetTransactionType;
|
|
238
495
|
export import unitCode = UnitCode;
|
|
239
|
-
export import
|
|
240
|
-
import * as DistributorFactory from './factory/distributor';
|
|
241
|
-
import * as SubjectFactory from './factory/subject';
|
|
242
|
-
/**
|
|
243
|
-
* @deprecated 東映ローカライズなのでそのうち廃止
|
|
244
|
-
*/
|
|
245
|
-
export import distributor = DistributorFactory;
|
|
246
|
-
/**
|
|
247
|
-
* @deprecated 東映ローカライズなのでそのうち廃止
|
|
248
|
-
*/
|
|
249
|
-
export import subject = SubjectFactory;
|
|
496
|
+
export import unitPriceOffer = UnitPriceOfferFactory;
|