@chevre/factory 4.184.0 → 4.185.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.
|
@@ -11,7 +11,12 @@ export declare type IRecipient = ActionFactory.IParticipant;
|
|
|
11
11
|
/**
|
|
12
12
|
* 返却対象は注文
|
|
13
13
|
*/
|
|
14
|
-
export declare type IObject = OrderFactory.ISimpleOrder
|
|
14
|
+
export declare type IObject = OrderFactory.ISimpleOrder & {
|
|
15
|
+
/**
|
|
16
|
+
* 返品日時
|
|
17
|
+
*/
|
|
18
|
+
dateReturned: Date;
|
|
19
|
+
};
|
|
15
20
|
export declare type IResult = any;
|
|
16
21
|
export interface IPotentialActions {
|
|
17
22
|
/**
|
|
@@ -3,7 +3,6 @@ import * as ReturnReservationActionFactory from '../action/transfer/return/reser
|
|
|
3
3
|
import { IExtendId } from '../autoGenerated';
|
|
4
4
|
import { IMerchantReturnPolicy } from '../merchantReturnPolicy';
|
|
5
5
|
import { IInformParams, IProject } from '../project';
|
|
6
|
-
import * as WebAPIFactory from '../service/webAPI';
|
|
7
6
|
import * as TransactionFactory from '../transaction';
|
|
8
7
|
import TransactionType from '../transactionType';
|
|
9
8
|
export declare type IAgent = TransactionFactory.IAgent;
|
|
@@ -62,14 +61,8 @@ export import ICancelReservationObject = ReturnReservationActionFactory.IObject;
|
|
|
62
61
|
export import ICancelReservationPotentialActions = ReturnReservationActionFactory.IPotentialActions;
|
|
63
62
|
/**
|
|
64
63
|
* 予約取消パラメータ
|
|
64
|
+
* 廃止済
|
|
65
65
|
*/
|
|
66
|
-
export interface ICancelReservationParams {
|
|
67
|
-
/**
|
|
68
|
-
* 確定対象
|
|
69
|
-
*/
|
|
70
|
-
object?: ICancelReservationObject<WebAPIFactory.Identifier>;
|
|
71
|
-
potentialActions?: ICancelReservationPotentialActions;
|
|
72
|
-
}
|
|
73
66
|
declare type ISendEmailMessageParams = TransactionFactory.ISendEmailMessageParams;
|
|
74
67
|
/**
|
|
75
68
|
* クレジットカード返金パラメータ
|
|
@@ -105,8 +98,8 @@ export interface IReturnOrderActionParams {
|
|
|
105
98
|
potentialActions?: {
|
|
106
99
|
/**
|
|
107
100
|
* 予約取消アクション
|
|
101
|
+
* 廃止済
|
|
108
102
|
*/
|
|
109
|
-
cancelReservation?: ICancelReservationParams[];
|
|
110
103
|
/**
|
|
111
104
|
* クレジットカード返金アクションについてカスタマイズする場合に指定
|
|
112
105
|
*/
|