@chevre/factory 4.385.0 → 4.386.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.
package/lib/event/anyEvent.d.ts
CHANGED
|
@@ -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/lib/product.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export interface IHasOfferCatalog {
|
|
|
51
51
|
/**
|
|
52
52
|
* 従来のカタログID(~2024-09-27)
|
|
53
53
|
*/
|
|
54
|
-
id
|
|
54
|
+
id?: string;
|
|
55
55
|
/**
|
|
56
56
|
* カタログリスト
|
|
57
57
|
*/
|
|
@@ -155,6 +155,9 @@ export interface ISearchConditions {
|
|
|
155
155
|
};
|
|
156
156
|
};
|
|
157
157
|
hasOfferCatalog?: {
|
|
158
|
+
/**
|
|
159
|
+
* hasOfferCatalog.itemListElement.idで検索(2024-09-30~)
|
|
160
|
+
*/
|
|
158
161
|
id?: {
|
|
159
162
|
$eq?: string;
|
|
160
163
|
};
|