@chevre/factory 4.259.0-alpha.3 → 4.259.0-alpha.4
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.
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import * as ActionFactory from '../../../action';
|
|
2
2
|
import * as OrderFactory from '../../../order';
|
|
3
|
-
import
|
|
4
|
-
import { IAttributes as IRefundActionAttributes } from '../../transfer/return/paymentMethod';
|
|
5
|
-
import { IAttributes as IReturnReserveTransactionActionAttributes } from '../../transfer/return/reserveTransaction';
|
|
3
|
+
import { IAttributes as IReturnPaymentMethodActionAttributes } from '../../transfer/return/paymentMethod';
|
|
6
4
|
import * as ReturnActionFactory from '../return';
|
|
7
5
|
import { IAttributes as ISendEmailMessageActionAttributes } from '../send/message/email';
|
|
8
6
|
import * as ReturnMoneyTransferActionFactory from './moneyTransfer';
|
|
@@ -22,16 +20,23 @@ export declare type IResult = any;
|
|
|
22
20
|
export interface IPotentialActions {
|
|
23
21
|
/**
|
|
24
22
|
* 設定追加(2022-06-08~)
|
|
23
|
+
* 廃止(2022-08-10~)
|
|
25
24
|
*/
|
|
26
|
-
useConfirmRefund: boolean;
|
|
27
25
|
/**
|
|
28
26
|
* 予約取引返却アクション
|
|
27
|
+
* 廃止(2022-08-10~)
|
|
29
28
|
*/
|
|
30
|
-
cancelReservation?: IReturnReserveTransactionActionAttributes<WebAPIFactory.Identifier>[];
|
|
31
29
|
/**
|
|
32
30
|
* 返金アクション
|
|
31
|
+
* 廃止(2022-08-10~)
|
|
32
|
+
* @deprecated Use returnPaymentMethod
|
|
33
33
|
*/
|
|
34
|
-
refund:
|
|
34
|
+
refund: IReturnPaymentMethodActionAttributes[];
|
|
35
|
+
/**
|
|
36
|
+
* 決済返却アクション
|
|
37
|
+
* refundから移行(2022-08-10~)
|
|
38
|
+
*/
|
|
39
|
+
returnPaymentMethod: IReturnPaymentMethodActionAttributes[];
|
|
35
40
|
/**
|
|
36
41
|
* 入金返却アクション
|
|
37
42
|
*/
|
package/lib/factory/taskName.js
CHANGED