@chevre/factory 4.262.0 → 4.264.0

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.
@@ -89,6 +89,12 @@ export declare type IServiceType = IProductServiceType & {
89
89
  */
90
90
  export interface IItemOffered {
91
91
  id?: string;
92
+ /**
93
+ * 興行名称
94
+ */
95
+ name?: {
96
+ ja?: string;
97
+ };
92
98
  /**
93
99
  * 興行区分
94
100
  */
@@ -321,6 +327,9 @@ export interface IOfferSearchConditions {
321
327
  validFrom?: Date;
322
328
  validThrough?: Date;
323
329
  itemOffered?: {
330
+ id?: {
331
+ $in?: string[];
332
+ };
324
333
  serviceType?: {
325
334
  ids?: string[];
326
335
  };
package/lib/event.d.ts CHANGED
@@ -7,11 +7,6 @@ import * as PlaceFactory from './place';
7
7
  import { IProject } from './project';
8
8
  import { IPropertyValue } from './propertyValue';
9
9
  import { SortType } from './sortType';
10
- export interface IHasOfferCatalog {
11
- typeOf: 'OfferCatalog';
12
- id: string;
13
- identifier?: string;
14
- }
15
10
  export interface IAttributes<T extends EventType> {
16
11
  project: Pick<IProject, 'id' | 'typeOf'>;
17
12
  /**
@@ -52,10 +47,6 @@ export interface IAttributes<T extends EventType> {
52
47
  * イベントがキャンセル、あるいは、延期された場合に主に使用されます。
53
48
  */
54
49
  eventStatus: EventStatusType;
55
- /**
56
- * Indicates an OfferCatalog listing for this Organization, Person, or Service.
57
- */
58
- hasOfferCatalog?: IHasOfferCatalog;
59
50
  headline?: IMultilingualString;
60
51
  /**
61
52
  * イベントが実行される場所
@@ -10,7 +10,6 @@ export declare type IServiceType = IProductServiceType & {
10
10
  };
11
11
  export interface IItemOffered {
12
12
  typeOf: ProductType;
13
- serviceType?: IServiceType;
14
13
  }
15
14
  export interface IItemListElement {
16
15
  typeOf: OfferType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.262.0",
3
+ "version": "4.264.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",