@chevre/factory 4.382.0 → 4.383.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.
@@ -1,5 +1,7 @@
1
+ import { IAccountTitle } from './accountTitle';
1
2
  import { ICategoryCode } from './categoryCode';
2
3
  import { CreativeWorkType } from './creativeWorkType';
4
+ import type { ICustomer } from './customer';
3
5
  import { EventType } from './eventType';
4
6
  import { IMultilingualString } from './multilingualString';
5
7
  import { IOfferCatalog } from './offerCatalog';
@@ -13,7 +15,11 @@ import { IThing } from './thing';
13
15
  export type CategoryCodeType = ICategoryCode['typeOf'];
14
16
  export type OfferCatalogType = IOfferCatalog['typeOf'];
15
17
  export type SellerType = ISeller['typeOf'];
16
- export type CategorySetIdentifier = CategoryCodeType | CreativeWorkType.Movie | EventType.ScreeningEvent | EventType.ScreeningEventSeries | PropertyValueType.LocationFeatureSpecification | OfferCatalogType | OfferType.Offer | PlaceType.MovieTheater | PlaceType.ScreeningRoom | PlaceType.ScreeningRoomSection | PlaceType.MovieTheater | PlaceType.Seat | SellerType;
18
+ export type CustomerType = ICustomer['typeOf'];
19
+ export type AccountTitleCategoryType = 'AccountTitleCategory';
20
+ export type AccountTitleSetType = 'AccountTitleSet';
21
+ export type AccountTitleType = IAccountTitle['typeOf'];
22
+ export type CategorySetIdentifier = CategoryCodeType | CreativeWorkType.Movie | EventType.ScreeningEvent | EventType.ScreeningEventSeries | PropertyValueType.LocationFeatureSpecification | OfferCatalogType | OfferType.Offer | PlaceType.MovieTheater | PlaceType.ScreeningRoom | PlaceType.ScreeningRoomSection | PlaceType.MovieTheater | PlaceType.Seat | SellerType | CustomerType | AccountTitleCategoryType | AccountTitleSetType | AccountTitleType;
17
23
  /**
18
24
  * {@link https://schema.org/CategoryCodeSet}
19
25
  */
package/lib/customer.d.ts CHANGED
@@ -59,4 +59,7 @@ export interface ISearchConditions {
59
59
  $eq?: string;
60
60
  };
61
61
  };
62
+ additionalProperty?: {
63
+ $elemMatch?: any;
64
+ };
62
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.382.0",
3
+ "version": "4.383.0-alpha.1",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",