@chevre/factory 4.347.0-alpha.1 → 4.347.0-alpha.2
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.
|
@@ -38,6 +38,14 @@ export interface ICreativeWork extends Pick<CreativeWorkFactory.ICreativeWork, '
|
|
|
38
38
|
distributor?: IDistributor;
|
|
39
39
|
typeOf: CreativeWorkType.Movie;
|
|
40
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* コンテンツ作成パラメータ
|
|
43
|
+
*/
|
|
44
|
+
export type ICreateParams = Pick<ICreativeWork, 'additionalProperty' | 'contentRating' | 'datePublished' | 'duration' | 'headline' | 'identifier' | 'thumbnailUrl' | 'typeOf'> & {
|
|
45
|
+
name?: Pick<IMultilingualString, 'en' | 'ja'>;
|
|
46
|
+
offers: Pick<IOffer, 'availabilityEnds'>;
|
|
47
|
+
distributor?: Pick<IDistributor, 'codeValue'>;
|
|
48
|
+
};
|
|
41
49
|
/**
|
|
42
50
|
* ソート条件
|
|
43
51
|
*/
|