@chevre/factory 4.287.0 → 4.288.0-alpha.1

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.
@@ -61,7 +61,7 @@ export declare type IAcceptedOfferPriceSpecification = ITicketPriceSpecification
61
61
  /**
62
62
  * 受け入れられたチケットオファー
63
63
  */
64
- export declare type IAcceptedOffer4chevre = Pick<ITicketOffer, 'id' | 'identifier' | 'typeOf' | 'priceCurrency' | 'itemOffered' | 'addOn' | 'additionalProperty'> & Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'id' | 'addOn' | 'additionalProperty' | 'paymentMethod'> & {
64
+ export declare type IAcceptedOffer4chevre = Pick<ITicketOffer, 'id' | 'identifier' | 'typeOf' | 'priceCurrency' | 'itemOffered' | 'addOn' | 'additionalProperty'> & Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'id' | 'addOn' | 'additionalProperty'> & {
65
65
  itemOffered?: ReserveTransactionFactory.IAcceptedTicketOfferItemOffered;
66
66
  priceSpecification: IAcceptedOfferPriceSpecification;
67
67
  };
@@ -3,7 +3,6 @@ import { ActionType } from '../actionType';
3
3
  import * as AssetTransactionFactory from '../assetTransaction';
4
4
  import { AssetTransactionType } from '../assetTransactionType';
5
5
  import { IExtendId } from '../autoGenerated';
6
- import { IMovieTicket } from '../paymentMethod/paymentCard/movieTicket';
7
6
  import { IPointAward } from '../product';
8
7
  import { IPropertyValue } from '../propertyValue';
9
8
  import * as ReservationFactory from '../reservation';
@@ -124,7 +123,6 @@ export interface IAcceptedAddOn {
124
123
  */
125
124
  id?: string;
126
125
  }
127
- export declare type IAcceptedPaymentMethod = IMovieTicket;
128
126
  export interface ISingleAcceptedAppliesToMovieTicket {
129
127
  /**
130
128
  * 適用決済カード識別子
@@ -168,7 +166,6 @@ export interface IAcceptedTicketOfferWithoutDetail {
168
166
  * 受け入れるアドオン
169
167
  */
170
168
  addOn?: IAcceptedAddOn[];
171
- paymentMethod?: IAcceptedPaymentMethod;
172
169
  additionalProperty?: IPropertyValue<string>[];
173
170
  priceSpecification?: {
174
171
  appliesToMovieTicket?: IAcceptedAppliesToMovieTicket;
@@ -184,10 +181,6 @@ export interface IAcceptedOffer4object {
184
181
  appliesToMovieTicket?: IAcceptedAppliesToMovieTicket;
185
182
  };
186
183
  }
187
- /**
188
- * 確定時予約
189
- * 指定することで、予約属性を確定時に上書きすることができる
190
- */
191
184
  export interface IPotentialActionsParams {
192
185
  reserve?: {
193
186
  purpose?: ReserveActionFactory.IOrderAsReservePurpose;
@@ -54,6 +54,10 @@ export interface ISearchConditions {
54
54
  name?: string;
55
55
  itemListElement?: {
56
56
  id?: {
57
+ /**
58
+ * 以下条件を全て満たす
59
+ */
60
+ $all?: string[];
57
61
  $in?: string[];
58
62
  $nin?: string[];
59
63
  };
@@ -43,4 +43,11 @@ export interface IMovieTicket extends IAttributes {
43
43
  * 決済方法区分コード
44
44
  */
45
45
  typeOf: string;
46
+ category: {
47
+ /**
48
+ * 前売券(カード)の種類
49
+ * 全国券,劇場券など
50
+ */
51
+ codeValue: string;
52
+ };
46
53
  }
@@ -6,6 +6,9 @@ import { IQuantitativeValue } from '../quantitativeValue';
6
6
  import { UnitCode } from '../unitCode';
7
7
  import { IAppliesToMovieTicket as IMovieTicketTypeChargeSpecAppliesToMovieTicket } from './movieTicketTypeChargeSpecification';
8
8
  export declare type IAppliesToMovieTicket = Pick<IMovieTicketTypeChargeSpecAppliesToMovieTicket, 'typeOf' | 'serviceType' | 'serviceOutput'> & {
9
+ category?: {
10
+ codeValue?: string;
11
+ };
9
12
  /**
10
13
  * 単価オファー設定としては存在しないが、予約あるいは注文の価格仕様としては必須
11
14
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.287.0",
3
+ "version": "4.288.0-alpha.1",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",