@chevre/factory 4.346.0 → 4.347.0-alpha.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.
@@ -148,11 +148,17 @@ export interface IAttributes extends Pick<EventFactory.IAttributes<EventType.Scr
148
148
  * 施設コンテンツ
149
149
  */
150
150
  export type IEvent = EventFactory.IEvent<IAttributes>;
151
- export type ICreateParams = Omit<IAttributes, 'location' | 'workPerformed' | 'coaInfo' | 'organizer' | 'videoFormat' | 'alternativeHeadline'> & {
151
+ export type ICreateParams = Pick<IAttributes, 'typeOf' | 'name' | 'duration' | 'endDate' | 'headline' | 'offers' | 'startDate' | 'additionalProperty' | 'subtitleLanguage' | 'dubLanguage' | 'kanaName' | 'eventStatus'> & {
152
152
  location: {
153
+ /**
154
+ * 施設ID
155
+ */
153
156
  id: string;
154
157
  };
155
158
  workPerformed: {
159
+ /**
160
+ * コンテンツコード
161
+ */
156
162
  identifier: string;
157
163
  /**
158
164
  * 同コンテンツに対する複数施設コンテンツのバージョン
@@ -160,7 +166,12 @@ export type ICreateParams = Omit<IAttributes, 'location' | 'workPerformed' | 'co
160
166
  */
161
167
  version?: string;
162
168
  };
163
- videoFormat: IVideoFormat[];
169
+ videoFormat: {
170
+ /**
171
+ * 上映方式区分コード
172
+ */
173
+ typeOf: string;
174
+ }[];
164
175
  };
165
176
  /**
166
177
  * ソート条件
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.346.0",
3
+ "version": "4.347.0-alpha.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",