@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
@@ -36,6 +36,7 @@ export declare type IMemberHasRole = Pick<IRole, 'typeOf' | 'memberOf' | 'roleNa
36
36
  export interface IMemberOfRole {
37
37
  typeOf: IMemberType;
38
38
  id: string;
39
+ image?: string;
39
40
  name?: string;
40
41
  username?: string;
41
42
  hasRole: IMemberHasRole;
package/lib/order.d.ts CHANGED
@@ -270,6 +270,7 @@ export interface IOrderedItem {
270
270
  * {@link https://schema.org/Order}
271
271
  */
272
272
  export interface IOrder extends ISimpleOrder {
273
+ id?: string;
273
274
  project: IProject;
274
275
  /**
275
276
  * Offer
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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.288.0-alpha.1",
3
+ "version": "4.289.0-alpha.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",