@chevre/factory 4.182.0-alpha.1 → 4.182.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/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,6 @@ import ActionType from '../../actionType';
|
|
|
3
3
|
import * as OrderFactory from '../../order';
|
|
4
4
|
import TransactionType from '../../transactionType';
|
|
5
5
|
import { IAttributes as IPayActionAttributes } from '../interact/confirm/pay';
|
|
6
|
-
import { IAttributes as IInformActionAttributes } from '../interact/inform';
|
|
7
6
|
import { IAttributes as IGivePointAwardActionAttributes } from '../transfer/give/pointAward';
|
|
8
7
|
import { IAttributes as ISendOrderActionAttributes } from '../transfer/send/order';
|
|
9
8
|
export declare type IAgent = ActionFactory.IParticipant;
|
|
@@ -21,7 +20,6 @@ export interface IPotentialActions {
|
|
|
21
20
|
/**
|
|
22
21
|
* 注文通知アクション
|
|
23
22
|
*/
|
|
24
|
-
informOrder?: IInformActionAttributes<any, any>[];
|
|
25
23
|
/**
|
|
26
24
|
* 決済アクションリスト
|
|
27
25
|
*/
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as ActionFactory from '../../../action';
|
|
2
2
|
import * as OrderFactory from '../../../order';
|
|
3
|
-
import { IAttributes as IInformActionAttributes } from '../../interact/inform';
|
|
4
3
|
import { IAttributes as IRefundActionAttributes } from '../../transfer/return/paymentMethod';
|
|
5
4
|
import { IAttributes as ICancelActionAttributes } from '../../transfer/return/reservation';
|
|
6
5
|
import * as ReturnActionFactory from '../return';
|
|
@@ -22,7 +21,6 @@ export interface IPotentialActions {
|
|
|
22
21
|
/**
|
|
23
22
|
* 注文通知アクション
|
|
24
23
|
*/
|
|
25
|
-
informOrder?: IInformActionAttributes<any, any>[];
|
|
26
24
|
/**
|
|
27
25
|
* 返金アクション
|
|
28
26
|
*/
|
|
@@ -5,7 +5,6 @@ import * as WebAPIFactory from '../../../service/webAPI';
|
|
|
5
5
|
import { IAttributes as IMoneyTransferActionAttributes } from '../../interact/confirm/moneyTransfer';
|
|
6
6
|
import { IAttributes as IRegisterServiceAttributes } from '../../interact/confirm/registerService';
|
|
7
7
|
import { IAttributes as IConfirmReservationActionAttributes } from '../../interact/confirm/reservation';
|
|
8
|
-
import { IAttributes as IInformActionAttributes } from '../../interact/inform';
|
|
9
8
|
import * as SendActionFactory from '../send';
|
|
10
9
|
import { IAttributes as ISendEmailMessageActionAttributes } from './message/email';
|
|
11
10
|
export declare type IAgent = ActionFactory.IParticipant;
|
|
@@ -23,7 +22,6 @@ export interface IPotentialActions {
|
|
|
23
22
|
/**
|
|
24
23
|
* 注文通知アクション
|
|
25
24
|
*/
|
|
26
|
-
informOrder?: IInformActionAttributes<any, any>[];
|
|
27
25
|
/**
|
|
28
26
|
* 通貨転送アクション
|
|
29
27
|
*/
|