@chevre/factory 4.181.0 → 4.182.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.
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import * as ActionFactory from '../../../action';
|
|
2
2
|
import ActionType from '../../../actionType';
|
|
3
3
|
import * as OrderFactory from '../../../order';
|
|
4
|
-
import { IAttributes as IInformActionAttributes } from '../../interact/inform';
|
|
5
4
|
import { IAttributes as ISendEmailMessageActionAttributes } from '../../transfer/send/message/email';
|
|
6
5
|
export declare type IRecipient = ActionFactory.IParticipant;
|
|
7
6
|
export declare type IObject = OrderFactory.IPaymentMethod;
|
|
@@ -10,7 +9,6 @@ export interface IPotentialActions {
|
|
|
10
9
|
/**
|
|
11
10
|
* 注文通知アクション
|
|
12
11
|
*/
|
|
13
|
-
informOrder?: IInformActionAttributes<any, any>[];
|
|
14
12
|
/**
|
|
15
13
|
* 返金処理完了を通知するEメール送信アクション
|
|
16
14
|
*/
|
|
@@ -7,7 +7,7 @@ import { IObject as IGivePointAwardObject } from '../action/transfer/give/pointA
|
|
|
7
7
|
import { IExtendId } from '../autoGenerated';
|
|
8
8
|
import { IClientUser } from '../clientUser';
|
|
9
9
|
import * as OrderFactory from '../order';
|
|
10
|
-
import { IInformParams,
|
|
10
|
+
import { IInformParams, IProject } from '../project';
|
|
11
11
|
import * as WebAPIFactory from '../service/webAPI';
|
|
12
12
|
import * as TransactionFactory from '../transaction';
|
|
13
13
|
import TransactionType from '../transactionType';
|
|
@@ -73,7 +73,6 @@ export interface IObject {
|
|
|
73
73
|
/**
|
|
74
74
|
* 注文ステータス変更時イベント
|
|
75
75
|
*/
|
|
76
|
-
onOrderStatusChanged?: IOnOrderStatusChanged;
|
|
77
76
|
potentialActions?: {
|
|
78
77
|
givePointAward?: IGivePointAwardParams[];
|
|
79
78
|
};
|
|
@@ -92,7 +91,6 @@ export interface IStartParamsWithoutDetail {
|
|
|
92
91
|
/**
|
|
93
92
|
* 注文ステータス変更時イベント
|
|
94
93
|
*/
|
|
95
|
-
onOrderStatusChanged?: IOnOrderStatusChanged;
|
|
96
94
|
/**
|
|
97
95
|
* 注文名称
|
|
98
96
|
*/
|
|
@@ -2,7 +2,7 @@ import { IAttributes as IReturnOrderActionAttributes } from '../action/transfer/
|
|
|
2
2
|
import * as ReturnReservationActionFactory from '../action/transfer/return/reservation';
|
|
3
3
|
import { IExtendId } from '../autoGenerated';
|
|
4
4
|
import { IMerchantReturnPolicy } from '../merchantReturnPolicy';
|
|
5
|
-
import { IInformParams,
|
|
5
|
+
import { IInformParams, IProject } from '../project';
|
|
6
6
|
import * as WebAPIFactory from '../service/webAPI';
|
|
7
7
|
import * as TransactionFactory from '../transaction';
|
|
8
8
|
import TransactionType from '../transactionType';
|
|
@@ -40,10 +40,6 @@ export interface IStartParamsWithoutDetail {
|
|
|
40
40
|
object: {
|
|
41
41
|
order: IReturnableOrder | IReturnableOrder[];
|
|
42
42
|
reason: Reason;
|
|
43
|
-
/**
|
|
44
|
-
* 注文ステータス変更時イベント
|
|
45
|
-
*/
|
|
46
|
-
onOrderStatusChanged?: IOnOrderStatusChanged;
|
|
47
43
|
};
|
|
48
44
|
seller: {
|
|
49
45
|
id: string;
|
|
@@ -151,10 +147,6 @@ export interface IObject {
|
|
|
151
147
|
order: IReturnableOrder[];
|
|
152
148
|
reason: Reason;
|
|
153
149
|
returnPolicy: IMerchantReturnPolicy;
|
|
154
|
-
/**
|
|
155
|
-
* 注文ステータス変更時イベント
|
|
156
|
-
*/
|
|
157
|
-
onOrderStatusChanged?: IOnOrderStatusChanged;
|
|
158
150
|
}
|
|
159
151
|
export interface IPotentialActions {
|
|
160
152
|
/**
|