@chevre/factory 6.2.0-alpha.8 → 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/reservation/event.d.ts +12 -3
- 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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IPurpose } from '../action/authorize/offer/product';
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
3
|
import { IProject } from '../project';
|
|
4
|
-
import
|
|
4
|
+
import { ITaskAttributes } from '../task';
|
|
5
5
|
import { TaskName } from '../taskName';
|
|
6
6
|
export interface IData {
|
|
7
7
|
agent?: {
|
|
@@ -14,7 +14,7 @@ export interface IData {
|
|
|
14
14
|
project: Pick<IProject, 'id' | 'typeOf'>;
|
|
15
15
|
purpose: IPurpose;
|
|
16
16
|
}
|
|
17
|
-
export interface IAttributes extends
|
|
17
|
+
export interface IAttributes extends ITaskAttributes {
|
|
18
18
|
name: TaskName.VoidRegisterServiceTransaction;
|
|
19
19
|
data: IData;
|
|
20
20
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IPurpose as IAuthorizeEventServiceOfferPurpose } from '../action/authorize/offer/eventService';
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
3
|
import { OrderStatus } from '../orderStatus';
|
|
4
|
-
import
|
|
4
|
+
import { ITaskAttributes } from '../task';
|
|
5
5
|
import { TaskName } from '../taskName';
|
|
6
6
|
export type IPurpose = IAuthorizeEventServiceOfferPurpose & {
|
|
7
7
|
result?: {
|
|
@@ -17,7 +17,7 @@ export interface IData {
|
|
|
17
17
|
id?: string;
|
|
18
18
|
purpose: IPurpose;
|
|
19
19
|
}
|
|
20
|
-
export interface IAttributes extends
|
|
20
|
+
export interface IAttributes extends ITaskAttributes {
|
|
21
21
|
name: TaskName.VoidReserveTransaction;
|
|
22
22
|
data: IData;
|
|
23
23
|
}
|
package/lib/task.d.ts
CHANGED
|
@@ -19,8 +19,8 @@ export interface IExecutor {
|
|
|
19
19
|
/**
|
|
20
20
|
* タスク
|
|
21
21
|
*/
|
|
22
|
-
export type ITask = IExtendId<
|
|
23
|
-
export interface
|
|
22
|
+
export type ITask = IExtendId<ITaskAttributes>;
|
|
23
|
+
export interface ITaskAttributes {
|
|
24
24
|
/**
|
|
25
25
|
* uniqueタスク識別子
|
|
26
26
|
* 冗長なタスク作成を回避するために使用(2025-03-28~)
|
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",
|