@chevre/factory 4.188.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 +19 -6
- package/package.json +1 -1
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
|
*/
|