@chevre/factory 4.246.0 → 4.247.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/factory/order.d.ts +14 -0
- package/package.json +1 -1
package/lib/factory/order.d.ts
CHANGED
|
@@ -264,6 +264,10 @@ export interface IOrder extends ISimpleOrder {
|
|
|
264
264
|
* Was the offer accepted as a gift for someone other than the buyer.
|
|
265
265
|
*/
|
|
266
266
|
isGift?: boolean;
|
|
267
|
+
/**
|
|
268
|
+
* 注文名称
|
|
269
|
+
*/
|
|
270
|
+
name?: string;
|
|
267
271
|
orderedItem?: IOrderedItem[];
|
|
268
272
|
/**
|
|
269
273
|
* OrderStatus (recommended for confirmation cards/ Search Answers)
|
|
@@ -475,6 +479,16 @@ export interface ISearchConditions {
|
|
|
475
479
|
$eq?: string;
|
|
476
480
|
};
|
|
477
481
|
};
|
|
482
|
+
name?: {
|
|
483
|
+
/**
|
|
484
|
+
* 名称完全一致
|
|
485
|
+
*/
|
|
486
|
+
$eq?: string;
|
|
487
|
+
/**
|
|
488
|
+
* 名称部分一致
|
|
489
|
+
*/
|
|
490
|
+
$regex?: string;
|
|
491
|
+
};
|
|
478
492
|
/**
|
|
479
493
|
* 販売者条件
|
|
480
494
|
*/
|