@chevre/factory 4.386.0-alpha.0 → 4.386.0-alpha.2

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.
@@ -76,11 +76,6 @@ export interface IResult extends IResultAsAggregateOffer {
76
76
  */
77
77
  amount: OrderFactory.ITotalPaymentDue[];
78
78
  }
79
- /**
80
- * 受け入れられたチケットオファー
81
- * optimize(2024-07-03~)
82
- */
83
- export type IAcceptedOffer = Pick<IAcceptedTicketOfferWithoutDetail, 'id' | 'addOn' | 'additionalProperty' | 'priceSpecification' | 'itemOffered'>;
84
79
  export type IAcceptedOfferWithoutDetail = IAcceptedTicketOfferWithoutDetail;
85
80
  export { IObjectWithoutDetail };
86
81
  export type ICOAPendingTransaction = Pick<COA.factory.reserve.IDelTmpReserveArgs, 'theaterCode' | 'dateJouei' | 'titleCode' | 'titleBranchNum' | 'timeBegin' | 'tmpReserveNum'> & {
@@ -214,6 +214,17 @@ export interface IAcceptedTicketOfferWithoutDetail {
214
214
  priceSpecification?: {
215
215
  appliesToMovieTicket?: IAcceptedAppliesToMovieTicket;
216
216
  };
217
+ /**
218
+ * オファーの含まれるサブカタログID
219
+ * プロダクトのカタログがサブカタログで構成されていない場合は無視される
220
+ * 明示的に指定しない場合、プロダクトのひとつめのカタログに含まれるサブカタログで自動的にフィルターされる
221
+ */
222
+ includedInDataCatalog?: {
223
+ /**
224
+ * サブカタログID
225
+ */
226
+ id: string;
227
+ };
217
228
  }
218
229
  /**
219
230
  * 受け入れられたチケットオファー
@@ -388,11 +388,6 @@ export interface IOfferSearchConditions {
388
388
  * イベント検索条件
389
389
  */
390
390
  export interface ISearchConditions extends EventFactory.ISearchConditions<EventType.Event> {
391
- hasOfferCatalog?: {
392
- id?: {
393
- $eq?: string;
394
- };
395
- };
396
391
  location?: {
397
392
  /**
398
393
  * ルームコード
@@ -255,11 +255,6 @@ export interface IOfferSearchConditions {
255
255
  * イベント検索条件
256
256
  */
257
257
  export interface ISearchConditions extends EventFactory.ISearchConditions<EventType.ScreeningEvent> {
258
- hasOfferCatalog?: {
259
- id?: {
260
- $eq?: string;
261
- };
262
- };
263
258
  location?: {
264
259
  /**
265
260
  * ルームコード
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.386.0-alpha.0",
3
+ "version": "4.386.0-alpha.2",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",