@chevre/factory 4.285.0 → 4.286.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.
|
@@ -2,7 +2,6 @@ import * as ActionFactory from '../../action';
|
|
|
2
2
|
import { ActionType } from '../../actionType';
|
|
3
3
|
import * as OrderFactory from '../../order';
|
|
4
4
|
import { TransactionType } from '../../transactionType';
|
|
5
|
-
import { IAttributes as IPayActionAttributes } from '../interact/confirm/pay';
|
|
6
5
|
import { IAttributes as IGivePointAwardActionAttributes } from '../transfer/give/pointAward';
|
|
7
6
|
import { IAttributes as ISendOrderActionAttributes } from '../transfer/send/order';
|
|
8
7
|
export declare type IAgent = ActionFactory.IParticipant;
|
|
@@ -17,15 +16,15 @@ export interface IPotentialActions {
|
|
|
17
16
|
givePointAward?: IGivePointAwardActionAttributes[];
|
|
18
17
|
/**
|
|
19
18
|
* 決済アクションリスト
|
|
19
|
+
* 廃止(2023-02-03~)
|
|
20
20
|
*/
|
|
21
|
-
pay?: IPayActionAttributes[];
|
|
22
21
|
/**
|
|
23
22
|
* 注文配送アクション
|
|
24
23
|
*/
|
|
25
24
|
sendOrder?: ISendOrderActionAttributes;
|
|
26
25
|
}
|
|
27
26
|
export interface IPurpose {
|
|
28
|
-
typeOf: TransactionType;
|
|
27
|
+
typeOf: TransactionType.PlaceOrder;
|
|
29
28
|
id: string;
|
|
30
29
|
}
|
|
31
30
|
export interface IAttributes extends ActionFactory.IAttributes<ActionType.OrderAction, IObject, IResult> {
|
|
@@ -33,6 +32,6 @@ export interface IAttributes extends ActionFactory.IAttributes<ActionType.OrderA
|
|
|
33
32
|
purpose?: IPurpose;
|
|
34
33
|
}
|
|
35
34
|
/**
|
|
36
|
-
*
|
|
35
|
+
* 注文アクション
|
|
37
36
|
*/
|
|
38
37
|
export declare type IAction = ActionFactory.IAction<IAttributes>;
|