@chevre/factory 4.366.0 → 4.367.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.
- package/lib/additionalProperty.d.ts +1 -2
- package/lib/order.d.ts +0 -14
- package/package.json +1 -1
|
@@ -4,7 +4,6 @@ import { EventType } from './eventType';
|
|
|
4
4
|
import { IMultilingualString } from './multilingualString';
|
|
5
5
|
import { IOfferCatalog } from './offerCatalog';
|
|
6
6
|
import { OfferType } from './offerType';
|
|
7
|
-
import { OrderType } from './order';
|
|
8
7
|
import { PlaceType } from './placeType';
|
|
9
8
|
import { IProject } from './project';
|
|
10
9
|
import { PropertyValueType } from './propertyValue';
|
|
@@ -14,7 +13,7 @@ import { IThing } from './thing';
|
|
|
14
13
|
export type CategoryCodeType = ICategoryCode['typeOf'];
|
|
15
14
|
export type OfferCatalogType = IOfferCatalog['typeOf'];
|
|
16
15
|
export type SellerType = ISeller['typeOf'];
|
|
17
|
-
export type CategorySetIdentifier = CategoryCodeType | CreativeWorkType.Movie | EventType.ScreeningEvent | EventType.ScreeningEventSeries | PropertyValueType.LocationFeatureSpecification | OfferCatalogType | OfferType.Offer |
|
|
16
|
+
export type CategorySetIdentifier = CategoryCodeType | CreativeWorkType.Movie | EventType.ScreeningEvent | EventType.ScreeningEventSeries | PropertyValueType.LocationFeatureSpecification | OfferCatalogType | OfferType.Offer | PlaceType.MovieTheater | PlaceType.Seat | SellerType;
|
|
18
17
|
/**
|
|
19
18
|
* {@link https://schema.org/CategoryCodeSet}
|
|
20
19
|
*/
|
package/lib/order.d.ts
CHANGED
|
@@ -289,7 +289,6 @@ export interface IOrderedItem {
|
|
|
289
289
|
export interface IOrder extends ISimpleOrder {
|
|
290
290
|
id?: string;
|
|
291
291
|
project: IProject;
|
|
292
|
-
additionalProperty?: IPropertyValue<string>[];
|
|
293
292
|
/**
|
|
294
293
|
* An entity that arranges for an exchange between a buyer and a seller.
|
|
295
294
|
* In most cases a broker never acquires or releases ownership of a product or service involved in an exchange.
|
|
@@ -546,19 +545,6 @@ export interface ISearchConditions {
|
|
|
546
545
|
$eq?: string;
|
|
547
546
|
};
|
|
548
547
|
};
|
|
549
|
-
additionalProperty?: {
|
|
550
|
-
$all?: IPropertyValue<string>[];
|
|
551
|
-
$in?: IPropertyValue<string>[];
|
|
552
|
-
$nin?: IPropertyValue<string>[];
|
|
553
|
-
$elemMatch?: {
|
|
554
|
-
name?: {
|
|
555
|
-
/**
|
|
556
|
-
* 一致する名称の追加特性がひとつでも存在する
|
|
557
|
-
*/
|
|
558
|
-
$eq?: string;
|
|
559
|
-
};
|
|
560
|
-
};
|
|
561
|
-
};
|
|
562
548
|
broker?: {
|
|
563
549
|
id?: {
|
|
564
550
|
$eq?: string;
|