@chevre/factory 4.187.0 → 4.189.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.
package/lib/factory/order.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { IOffer } from './offer';
|
|
|
10
10
|
import OrderStatus from './orderStatus';
|
|
11
11
|
import { OrganizationType } from './organizationType';
|
|
12
12
|
import * as PermitFactory from './permit';
|
|
13
|
-
import {
|
|
13
|
+
import { IPerson, IProfile } from './person';
|
|
14
14
|
import PersonType from './personType';
|
|
15
15
|
import PriceCurrency from './priceCurrency';
|
|
16
16
|
import { ProductType } from './product';
|
|
@@ -300,14 +300,14 @@ export interface ISellerSearchConditions {
|
|
|
300
300
|
export interface ICustomerSearchConditions {
|
|
301
301
|
typeOf?: PersonType;
|
|
302
302
|
ids?: string[];
|
|
303
|
-
identifiers?:
|
|
303
|
+
identifiers?: IIdentifier;
|
|
304
304
|
identifier?: {
|
|
305
|
-
$all?:
|
|
306
|
-
$in?:
|
|
305
|
+
$all?: IIdentifier;
|
|
306
|
+
$in?: IIdentifier;
|
|
307
307
|
};
|
|
308
308
|
additionalProperty?: {
|
|
309
|
-
$all?:
|
|
310
|
-
$in?:
|
|
309
|
+
$all?: IIdentifier;
|
|
310
|
+
$in?: IIdentifier;
|
|
311
311
|
};
|
|
312
312
|
memberOf?: {
|
|
313
313
|
membershipNumber?: {
|
|
@@ -338,6 +338,19 @@ export interface IPaymentMethodsSearchConditions {
|
|
|
338
338
|
* ムビチケ購入番号、ペイメントカード番号など
|
|
339
339
|
*/
|
|
340
340
|
accountIds?: string[];
|
|
341
|
+
/**
|
|
342
|
+
* 追加特性
|
|
343
|
+
*/
|
|
344
|
+
additionalProperty?: {
|
|
345
|
+
/**
|
|
346
|
+
* すべてに一致する
|
|
347
|
+
*/
|
|
348
|
+
$all?: IIdentifier;
|
|
349
|
+
/**
|
|
350
|
+
* どれかに一致する
|
|
351
|
+
*/
|
|
352
|
+
$in?: IIdentifier;
|
|
353
|
+
};
|
|
341
354
|
/**
|
|
342
355
|
* 決済方法区分コード
|
|
343
356
|
*/
|
|
@@ -14,7 +14,7 @@ export declare type IError = any;
|
|
|
14
14
|
*/
|
|
15
15
|
export declare enum Reason {
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* カスタマー都合での返品
|
|
18
18
|
*/
|
|
19
19
|
Customer = "Customer",
|
|
20
20
|
/**
|
|
@@ -22,12 +22,12 @@ export declare enum Reason {
|
|
|
22
22
|
*/
|
|
23
23
|
Seller = "Seller"
|
|
24
24
|
}
|
|
25
|
+
/**
|
|
26
|
+
* 返品可能な注文インターフェース
|
|
27
|
+
*/
|
|
25
28
|
export interface IReturnableOrder {
|
|
29
|
+
confirmationNumber: string;
|
|
26
30
|
orderNumber: string;
|
|
27
|
-
customer?: {
|
|
28
|
-
email?: string;
|
|
29
|
-
telephone?: string;
|
|
30
|
-
};
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* 注文返品開始パラメータインターフェース
|
|
@@ -59,10 +59,6 @@ export interface IStartParams extends TransactionFactory.IStartParams<Transactio
|
|
|
59
59
|
export declare type IInformOrderParams = IInformParams;
|
|
60
60
|
export import ICancelReservationObject = ReturnReservationActionFactory.IObject;
|
|
61
61
|
export import ICancelReservationPotentialActions = ReturnReservationActionFactory.IPotentialActions;
|
|
62
|
-
/**
|
|
63
|
-
* 予約取消パラメータ
|
|
64
|
-
* 廃止済
|
|
65
|
-
*/
|
|
66
62
|
declare type ISendEmailMessageParams = TransactionFactory.ISendEmailMessageParams;
|
|
67
63
|
/**
|
|
68
64
|
* クレジットカード返金パラメータ
|
|
@@ -96,10 +92,6 @@ export interface IReturnOrderActionParams {
|
|
|
96
92
|
* 注文返品後アクション
|
|
97
93
|
*/
|
|
98
94
|
potentialActions?: {
|
|
99
|
-
/**
|
|
100
|
-
* 予約取消アクション
|
|
101
|
-
* 廃止済
|
|
102
|
-
*/
|
|
103
95
|
/**
|
|
104
96
|
* クレジットカード返金アクションについてカスタマイズする場合に指定
|
|
105
97
|
*/
|