@chevre/factory 4.261.0 → 4.262.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.
- package/lib/event/screeningEvent.d.ts +5 -4
- package/lib/event.d.ts +1 -1
- package/lib/offerCatalog.d.ts +2 -2
- package/lib/product.d.ts +1 -1
- package/package.json +1 -1
|
@@ -85,11 +85,12 @@ export declare type IServiceType = IProductServiceType & {
|
|
|
85
85
|
id?: string;
|
|
86
86
|
};
|
|
87
87
|
/**
|
|
88
|
-
*
|
|
88
|
+
* 興行
|
|
89
89
|
*/
|
|
90
|
-
export interface
|
|
90
|
+
export interface IItemOffered {
|
|
91
|
+
id?: string;
|
|
91
92
|
/**
|
|
92
|
-
*
|
|
93
|
+
* 興行区分
|
|
93
94
|
*/
|
|
94
95
|
serviceType?: IServiceType;
|
|
95
96
|
/**
|
|
@@ -119,7 +120,7 @@ export interface IOffer {
|
|
|
119
120
|
*/
|
|
120
121
|
availabilityStarts: Date;
|
|
121
122
|
eligibleQuantity: IQuantitativeValue<UnitCode.C62>;
|
|
122
|
-
itemOffered:
|
|
123
|
+
itemOffered: IItemOffered;
|
|
123
124
|
/**
|
|
124
125
|
* オファー供給サービス
|
|
125
126
|
*/
|
package/lib/event.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { IPropertyValue } from './propertyValue';
|
|
|
9
9
|
import { SortType } from './sortType';
|
|
10
10
|
export interface IHasOfferCatalog {
|
|
11
11
|
typeOf: 'OfferCatalog';
|
|
12
|
-
id
|
|
12
|
+
id: string;
|
|
13
13
|
identifier?: string;
|
|
14
14
|
}
|
|
15
15
|
export interface IAttributes<T extends EventType> {
|
package/lib/offerCatalog.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IMultilingualString } from './multilingualString';
|
|
2
2
|
import { OfferType } from './offerType';
|
|
3
|
-
import { IServiceType as IProductServiceType } from './product';
|
|
3
|
+
import { IServiceType as IProductServiceType, ProductType } from './product';
|
|
4
4
|
import { IProject } from './project';
|
|
5
5
|
import { IPropertyValue } from './propertyValue';
|
|
6
6
|
import { SortType } from './sortType';
|
|
@@ -9,7 +9,7 @@ export declare type IServiceType = IProductServiceType & {
|
|
|
9
9
|
id?: string;
|
|
10
10
|
};
|
|
11
11
|
export interface IItemOffered {
|
|
12
|
-
typeOf:
|
|
12
|
+
typeOf: ProductType;
|
|
13
13
|
serviceType?: IServiceType;
|
|
14
14
|
}
|
|
15
15
|
export interface IItemListElement {
|
package/lib/product.d.ts
CHANGED