@chevre/factory 4.276.0-alpha.1 → 4.276.0-alpha.2
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/order.d.ts +1 -1
- package/package.json +1 -1
package/lib/order.d.ts
CHANGED
|
@@ -193,7 +193,6 @@ export declare type IBroker = IPerson;
|
|
|
193
193
|
export declare type IReturner = IParticipant;
|
|
194
194
|
export declare type IIdentifier = IPropertyValue<string>[];
|
|
195
195
|
export interface ISimpleOrder extends Pick<IThing, 'name'> {
|
|
196
|
-
project: IProject;
|
|
197
196
|
/**
|
|
198
197
|
* object type
|
|
199
198
|
*/
|
|
@@ -264,6 +263,7 @@ export interface IOrderedItem {
|
|
|
264
263
|
* {@link https://schema.org/Order}
|
|
265
264
|
*/
|
|
266
265
|
export interface IOrder extends ISimpleOrder {
|
|
266
|
+
project: IProject;
|
|
267
267
|
/**
|
|
268
268
|
* Offer
|
|
269
269
|
* The offers included in the order.Also accepts an array of objects.
|