@chevre/factory 4.288.0-alpha.1 → 4.289.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.
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { EventType } from './eventType';
|
|
2
2
|
import { IMultilingualString } from './multilingualString';
|
|
3
|
+
import { OfferType } from './offerType';
|
|
3
4
|
import { IProject } from './project';
|
|
4
5
|
import { PropertyValueType } from './propertyValue';
|
|
5
6
|
import { SortType } from './sortType';
|
|
6
7
|
import { IThing } from './thing';
|
|
7
|
-
export declare type CategorySetIdentifier = EventType.ScreeningEvent | EventType.ScreeningEventSeries | PropertyValueType.LocationFeatureSpecification;
|
|
8
|
+
export declare type CategorySetIdentifier = EventType.ScreeningEvent | EventType.ScreeningEventSeries | PropertyValueType.LocationFeatureSpecification | 'OfferCatalog' | OfferType.Offer;
|
|
8
9
|
/**
|
|
9
10
|
* {@link https://schema.org/CategoryCodeSet}
|
|
10
11
|
*/
|
package/lib/iam.d.ts
CHANGED
package/lib/order.d.ts
CHANGED
package/lib/person.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export declare type IMemberOf = IProgramMembership;
|
|
|
11
11
|
/**
|
|
12
12
|
* プロフィール
|
|
13
13
|
*/
|
|
14
|
-
export interface IProfile extends ThingFactory.IThing {
|
|
14
|
+
export interface IProfile extends Pick<ThingFactory.IThing, 'image' | 'url'> {
|
|
15
15
|
additionalProperty?: IAdditionalProperty;
|
|
16
16
|
/**
|
|
17
17
|
* Physical address of the item.
|
|
@@ -34,6 +34,7 @@ export interface IProfile extends ThingFactory.IThing {
|
|
|
34
34
|
* Gender of the person.
|
|
35
35
|
*/
|
|
36
36
|
gender?: string;
|
|
37
|
+
identifier?: IIdentifier;
|
|
37
38
|
name?: string;
|
|
38
39
|
/**
|
|
39
40
|
* The telephone number.
|
|
@@ -6,9 +6,6 @@ import { IQuantitativeValue } from '../quantitativeValue';
|
|
|
6
6
|
import { UnitCode } from '../unitCode';
|
|
7
7
|
import { IAppliesToMovieTicket as IMovieTicketTypeChargeSpecAppliesToMovieTicket } from './movieTicketTypeChargeSpecification';
|
|
8
8
|
export declare type IAppliesToMovieTicket = Pick<IMovieTicketTypeChargeSpecAppliesToMovieTicket, 'typeOf' | 'serviceType' | 'serviceOutput'> & {
|
|
9
|
-
category?: {
|
|
10
|
-
codeValue?: string;
|
|
11
|
-
};
|
|
12
9
|
/**
|
|
13
10
|
* 単価オファー設定としては存在しないが、予約あるいは注文の価格仕様としては必須
|
|
14
11
|
*/
|