@chevre/factory 4.313.0-alpha.10 → 4.313.0-alpha.11

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.
@@ -15,6 +15,10 @@ export interface IItemOffered {
15
15
  typeOf: ProductType.EventService;
16
16
  serviceOutput?: {
17
17
  typeOf: ReservationType.EventReservation;
18
+ /**
19
+ * 未使用のみ
20
+ */
21
+ onlyUnused?: boolean;
18
22
  reservationFor: {
19
23
  /**
20
24
  * n秒前設定
@@ -1,6 +1,7 @@
1
1
  import { IAttributes as IReturnOrderActionAttributes } from '../action/transfer/return/order';
2
2
  import { IExtendId } from '../autoGenerated';
3
3
  import { ICustomerRemorseReturnFeesMovieTicket, IMerchantReturnPolicy, ReturnFeesEnumeration } from '../merchantReturnPolicy';
4
+ import { IOfferItemCondition } from '../offerItemCondition';
4
5
  import { IProject } from '../project';
5
6
  import * as TransactionFactory from '../transaction';
6
7
  import { TransactionType } from '../transactionType';
@@ -135,6 +136,7 @@ export interface IReturnFeesMovieTicket {
135
136
  typeOf: string;
136
137
  };
137
138
  }
139
+ export declare type IReturnPolicyItemCondition = IOfferItemCondition;
138
140
  /**
139
141
  * 取引に適用される返品ポリシー
140
142
  */
@@ -144,6 +146,7 @@ export declare type IReturnPolicy = Pick<IMerchantReturnPolicy, 'typeOf' | 'merc
144
146
  * 決済カードコードごとの着券取消実行有無
145
147
  */
146
148
  returnFeesMovieTicket?: IReturnFeesMovieTicket[];
149
+ itemCondition?: IReturnPolicyItemCondition;
147
150
  };
148
151
  /**
149
152
  * 取引対象物
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.313.0-alpha.10",
3
+ "version": "4.313.0-alpha.11",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",