@chevre/factory 5.4.0-alpha.24 → 5.4.0-alpha.26
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.
|
@@ -179,12 +179,7 @@ export type IOffers4create = Pick<ISingleOffer, 'unacceptedPaymentMethod'> & {
|
|
|
179
179
|
export type ICreateParams = Pick<IAttributes, 'typeOf' | 'name' | 'duration' | 'endDate' | 'headline' | 'startDate' | 'additionalProperty' | 'kanaName' | 'eventStatus' | 'description'> & {
|
|
180
180
|
subtitleLanguage?: Pick<ILanguage, 'name'>;
|
|
181
181
|
dubLanguage?: Pick<ILanguage, 'name'>;
|
|
182
|
-
location
|
|
183
|
-
/**
|
|
184
|
-
* 施設ID
|
|
185
|
-
*/
|
|
186
|
-
id: string;
|
|
187
|
-
};
|
|
182
|
+
location?: never;
|
|
188
183
|
offers?: IOffers4create;
|
|
189
184
|
workPerformed: {
|
|
190
185
|
/**
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { IEvent as IEventSeries } from '../event/screeningEventSeries';
|
|
1
|
+
import { IEvent as IEventSeries, IVideoFormat } from '../event/screeningEventSeries';
|
|
2
2
|
/**
|
|
3
3
|
* 外部への施設コンテンツ通知
|
|
4
4
|
* redefine(2025-11-01~)
|
|
5
5
|
*/
|
|
6
|
-
export type IEventSeriesAsNotification = Pick<IEventSeries, 'project' | 'organizer' | 'typeOf' | 'name' | 'endDate' | 'location' | 'startDate' | 'id' | 'additionalProperty' | 'subtitleLanguage' | 'dubLanguage' | '
|
|
6
|
+
export type IEventSeriesAsNotification = Pick<IEventSeries, 'project' | 'organizer' | 'typeOf' | 'name' | 'endDate' | 'location' | 'startDate' | 'id' | 'additionalProperty' | 'subtitleLanguage' | 'dubLanguage' | 'soundFormat' | 'workPerformed' | 'kanaName' | 'alternativeHeadline' | 'description' | 'duration' | 'eventStatus' | 'headline'> & {
|
|
7
7
|
offers?: never;
|
|
8
|
+
videoFormat: IVideoFormat[];
|
|
8
9
|
};
|
package/lib/offerCatalog.d.ts
CHANGED
|
@@ -159,3 +159,11 @@ export interface ISearchConditions {
|
|
|
159
159
|
};
|
|
160
160
|
};
|
|
161
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
* カタログ編集パラメータ
|
|
164
|
+
*/
|
|
165
|
+
export type IUpdateOfferCatalogParams = Pick<IOfferCatalog, 'additionalProperty' | 'description' | 'identifier' | 'itemListElement' | 'itemOffered' | 'name'>;
|
|
166
|
+
/**
|
|
167
|
+
* サブカタログ編集パラメータ
|
|
168
|
+
*/
|
|
169
|
+
export type IUpdateOfferCatalogItemParams = Pick<IOfferCatalog, 'additionalProperty' | 'description' | 'identifier' | 'itemListElement' | 'itemOffered' | 'name' | 'relatedOffer'>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chevre/factory",
|
|
3
|
-
"version": "5.4.0-alpha.
|
|
3
|
+
"version": "5.4.0-alpha.26",
|
|
4
4
|
"description": "Chevre Factory Library for Javascript",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"license": "UNLICENSED",
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/mocha": "^5.2.7",
|
|
45
|
-
"@types/node": "
|
|
45
|
+
"@types/node": "22.19.7",
|
|
46
46
|
"coveralls": "3.1.1",
|
|
47
47
|
"mocha": "^5.2.0",
|
|
48
48
|
"nyc": "15.1.0",
|