@chevre/factory 4.330.0-alpha.1 → 4.330.0-alpha.3

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.
@@ -5,7 +5,7 @@ export declare type ISubOffer = IUnitPriceOffer;
5
5
  /**
6
6
  * 集計オファー
7
7
  */
8
- export interface IAggregateOffer extends Pick<IOffer, 'typeOf' | 'project'> {
8
+ export interface IAggregateOffer extends Pick<IOffer, 'id' | 'typeOf' | 'project'> {
9
9
  typeOf: OfferType.AggregateOffer;
10
10
  highPrice?: number;
11
11
  lowPrice?: number;
@@ -13,7 +13,7 @@ import { TaskName } from '../taskName';
13
13
  export declare type AccountTitleType = IAccountTitle['typeOf'];
14
14
  export declare type CategoryCodeType = ICategoryCode['typeOf'];
15
15
  export declare type OfferCatalogType = IOfferCatalog['typeOf'];
16
- export declare type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType | EventType.ScreeningEventSeries | OrganizationType.Corporation | PlaceType.MovieTheater | ProductType | OfferCatalogType | OfferType.Offer;
16
+ export declare type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType | EventType.ScreeningEventSeries | OrganizationType.Corporation | PlaceType.MovieTheater | ProductType | OfferCatalogType | OfferType.AggregateOffer;
17
17
  export interface IData4common {
18
18
  id: string[];
19
19
  project: {
@@ -259,4 +259,14 @@ export interface ISearchConditions {
259
259
  $in?: string[];
260
260
  };
261
261
  };
262
+ includedInOfferCatalogItem?: {
263
+ includedInDataCatalog?: {
264
+ /**
265
+ * 記載カタログID
266
+ */
267
+ id?: {
268
+ $in?: string[];
269
+ };
270
+ };
271
+ };
262
272
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.330.0-alpha.1",
3
+ "version": "4.330.0-alpha.3",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",