@chevre/factory 4.183.0-alpha.3 → 4.183.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.
@@ -217,8 +217,7 @@ export interface ILocation {
217
217
  */
218
218
  typeOf: PlaceType.ScreeningRoom;
219
219
  /**
220
- * 場所枝番号
221
- * スクリーンコードに相当
220
+ * ルームコード
222
221
  */
223
222
  branchCode: string;
224
223
  /**
@@ -95,7 +95,7 @@ export interface IAttributes extends EventFactory.IAttributes<EventType.Screenin
95
95
  */
96
96
  id: string;
97
97
  /**
98
- * 劇場コード
98
+ * 施設コード
99
99
  */
100
100
  branchCode: string;
101
101
  /**
@@ -80,7 +80,7 @@ export interface IAttributes<T extends EventType> {
80
80
  */
81
81
  startDate?: Date;
82
82
  /**
83
- * イベントで上演される作品
83
+ * イベントで上演されるコンテンツ
84
84
  */
85
85
  workPerformed?: CreativeWorkFactory.ICreativeWork;
86
86
  additionalProperty?: IPropertyValue<string>[];
@@ -171,11 +171,11 @@ export interface ISearchConditions<T extends EventType> {
171
171
  };
172
172
  };
173
173
  /**
174
- * 親イベント(劇場の上映イベント)が実施される場所の識別子リスト
174
+ * 親イベント(施設コンテンツ)が実施される場所の識別子リスト
175
175
  */
176
176
  locationBranchCodes?: string[];
177
177
  /**
178
- * イベントで上演される作品識別子リスト
178
+ * イベントで上演されるコンテンツコードリスト
179
179
  */
180
180
  workPerformedIdentifiers?: string[];
181
181
  };
@@ -7,7 +7,7 @@ import { IQuantitativeValue } from '../quantitativeValue';
7
7
  import { UnitCode } from '../unitCode';
8
8
  import { IPlace as IScreeningRoom } from './screeningRoom';
9
9
  /**
10
- * 劇場に対するオファーインターフェース
10
+ * 施設に対するオファーインターフェース
11
11
  */
12
12
  export interface IOffer extends OfferFactory.IOffer {
13
13
  /**
@@ -38,7 +38,7 @@ export interface IPlaceWithoutScreeningRoom extends PlaceFactory.IPlace {
38
38
  typeOf: PlaceType.MovieTheater;
39
39
  id: string;
40
40
  /**
41
- * スクリーン数
41
+ * ルーム数
42
42
  */
43
43
  screenCount: number;
44
44
  /**
@@ -75,7 +75,7 @@ export interface IPlaceWithoutScreeningRoom extends PlaceFactory.IPlace {
75
75
  parentOrganization?: IParentOrganization;
76
76
  }
77
77
  /**
78
- * 劇場インターフェース
78
+ * 施設インターフェース
79
79
  */
80
80
  export declare type IPlace = IPlaceWithoutScreeningRoom & {
81
81
  /**
@@ -5,7 +5,7 @@ import TaskName from '../taskName';
5
5
  export interface IData {
6
6
  project: IProject;
7
7
  /**
8
- * 劇場枝番号
8
+ * 施設コード
9
9
  */
10
10
  locationBranchCode: string;
11
11
  /**
@@ -5,7 +5,7 @@ import TaskName from '../taskName';
5
5
  export interface IData {
6
6
  project: IProject;
7
7
  /**
8
- * 劇場枝番号
8
+ * 施設コード
9
9
  */
10
10
  locationBranchCode: string;
11
11
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.183.0-alpha.3",
3
+ "version": "4.183.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",