diff --git a/src/offerCatalog.ts b/src/offerCatalog.ts index 67eeb3c1..70c489b2 100644 --- a/src/offerCatalog.ts +++ b/src/offerCatalog.ts @@ -108,4 +108,16 @@ export interface ISearchConditions { }; }; }; + relatedOffer?: { + priceSpecification?: { + appliesToMovieTicket?: { + serviceOutput?: { + /** + * 決済方法区分 + */ + typeOf?: { $in?: string[] }; + }; + }; + }; + }; } diff --git a/src/task/onResourceUpdated.ts b/src/task/onResourceUpdated.ts index 89aa0c77..42dcd16e 100644 --- a/src/task/onResourceUpdated.ts +++ b/src/task/onResourceUpdated.ts @@ -27,6 +27,10 @@ export interface IData4common { // 削除に対応(2023-07-28~) isDeleted?: boolean; useInform: boolean; + /** + * typeOf: OfferCatalogのリポジトリを判定するため + */ + isOfferCatalogItem?: boolean; } // ルーム削除に対応(2023-07-31~) export interface IData4screeningRoom {