@chevre/factory 4.347.0-alpha.0 → 4.347.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.
@@ -148,7 +148,9 @@ 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 = Pick<IAttributes, 'typeOf' | 'name' | 'duration' | 'endDate' | 'headline' | 'offers' | 'startDate' | 'additionalProperty' | 'subtitleLanguage' | 'dubLanguage' | 'kanaName' | 'eventStatus'> & {
151
+ export type ICreateParams = Pick<IAttributes, 'typeOf' | 'name' | 'duration' | 'endDate' | 'headline' | 'offers' | 'startDate' | 'additionalProperty' | 'kanaName' | 'eventStatus' | 'description'> & {
152
+ subtitleLanguage?: Pick<ILanguage, 'name'>;
153
+ dubLanguage?: Pick<ILanguage, 'name'>;
152
154
  location: {
153
155
  /**
154
156
  * 施設ID
package/lib/language.d.ts CHANGED
@@ -1,8 +1,9 @@
1
+ type ILanguageName = 'Japanese';
1
2
  /**
2
3
  * 言語インターフェース
3
4
  */
4
5
  export interface ILanguage {
5
6
  typeOf: 'Language';
6
- name: string;
7
- alternateName?: string;
7
+ name: ILanguageName;
8
8
  }
9
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.347.0-alpha.0",
3
+ "version": "4.347.0-alpha.1",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",