@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.
@@ -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 { IIdentifier as IPersonIdentifier, IPerson, IProfile } from './person';
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?: IPersonIdentifier;
303
+ identifiers?: IIdentifier;
304
304
  identifier?: {
305
- $all?: IPersonIdentifier;
306
- $in?: IPersonIdentifier;
305
+ $all?: IIdentifier;
306
+ $in?: IIdentifier;
307
307
  };
308
308
  additionalProperty?: {
309
- $all?: IPersonIdentifier;
310
- $in?: IPersonIdentifier;
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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.188.0",
3
+ "version": "4.189.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",