@chevre/factory 4.185.0 → 4.186.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.
@@ -13,6 +13,7 @@ import * as PermitFactory from './permit';
13
13
  import { IIdentifier as IPersonIdentifier, IPerson, IProfile } from './person';
14
14
  import PersonType from './personType';
15
15
  import PriceCurrency from './priceCurrency';
16
+ import { ProductType } from './product';
16
17
  import { IPropertyValue } from './propertyValue';
17
18
  import { IProgramMembershipUsedSearchConditions } from './reservation';
18
19
  import * as EventReservationFactory from './reservation/event';
@@ -332,25 +333,60 @@ export interface ICustomerSearchConditions {
332
333
  };
333
334
  }
334
335
  export interface IPaymentMethodsSearchConditions {
336
+ /**
337
+ * 決済アカウントID
338
+ * ムビチケ購入番号、ペイメントカード番号など
339
+ */
335
340
  accountIds?: string[];
341
+ /**
342
+ * 決済方法区分コード
343
+ */
336
344
  typeOfs?: AvailablePaymentMethodType[];
345
+ /**
346
+ * 決済方法ID
347
+ * 決済代行オーダーIDなど
348
+ */
337
349
  paymentMethodIds?: string[];
338
350
  }
339
351
  export interface IAcceptedOffersSearchConditions {
340
352
  itemOffered?: {
353
+ /**
354
+ * アイテムタイプ
355
+ * 現状、EventReservation or Permit
356
+ */
341
357
  typeOf?: {
342
358
  $in?: string[];
343
359
  };
360
+ /**
361
+ * アイテムコード
362
+ * メンバーシップコード、ペイメントカード番号など
363
+ */
344
364
  identifier?: {
345
365
  $in?: string[];
346
366
  };
347
367
  issuedThrough?: {
368
+ /**
369
+ * 発行サービスID
370
+ */
348
371
  id?: {
349
372
  $in?: string[];
350
373
  };
374
+ /**
375
+ * 発行サービスタイプ
376
+ */
377
+ typeOf?: {
378
+ $eq?: ProductType;
379
+ };
351
380
  };
381
+ /**
382
+ * アイテムID
383
+ * 予約IDなど
384
+ */
352
385
  ids?: string[];
353
386
  reservationFor?: IReservationForSearchConditions;
387
+ /**
388
+ * 予約番号
389
+ */
354
390
  reservationNumbers?: string[];
355
391
  /**
356
392
  * 使用メンバーシップ
@@ -7,7 +7,7 @@ export interface IData {
7
7
  theaterCode: string;
8
8
  }
9
9
  export interface IAttributes extends TaskFactory.IAttributes {
10
- name: TaskName.AggregateScreeningEvent;
10
+ name: TaskName.ImportOffersFromCOA;
11
11
  data: IData;
12
12
  }
13
13
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.185.0",
3
+ "version": "4.186.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",