@chevre/factory 4.282.0 → 4.284.0-alpha.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/task.d.ts +5 -2
- package/lib/unitPriceOffer.d.ts +4 -0
- package/package.json +1 -1
package/lib/task.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ export interface IDataSearchConditions {
|
|
|
79
79
|
/**
|
|
80
80
|
* タスク検索条件
|
|
81
81
|
*/
|
|
82
|
-
export interface ISearchConditions
|
|
82
|
+
export interface ISearchConditions {
|
|
83
83
|
limit?: number;
|
|
84
84
|
page?: number;
|
|
85
85
|
sort?: ISortOrder;
|
|
@@ -88,7 +88,10 @@ export interface ISearchConditions<T extends TaskName | string> {
|
|
|
88
88
|
$eq?: string;
|
|
89
89
|
};
|
|
90
90
|
};
|
|
91
|
-
name?:
|
|
91
|
+
name?: string | {
|
|
92
|
+
$in?: string[];
|
|
93
|
+
$nin?: string[];
|
|
94
|
+
};
|
|
92
95
|
statuses?: TaskStatus[];
|
|
93
96
|
runsFrom?: Date;
|
|
94
97
|
runsThrough?: Date;
|
package/lib/unitPriceOffer.d.ts
CHANGED
|
@@ -56,6 +56,9 @@ export interface IAddOnItemOffered extends Pick<IProduct, 'typeOf' | 'id' | 'nam
|
|
|
56
56
|
export interface IAddOn4unitPriceOffer extends Pick<IAddOn, 'typeOf' | 'priceCurrency'> {
|
|
57
57
|
itemOffered: IAddOnItemOffered;
|
|
58
58
|
}
|
|
59
|
+
export interface ISettings {
|
|
60
|
+
ignoreCategoryCodeChargeSpec?: boolean;
|
|
61
|
+
}
|
|
59
62
|
/**
|
|
60
63
|
* 単価オファー
|
|
61
64
|
*/
|
|
@@ -72,6 +75,7 @@ export interface IUnitPriceOffer extends Pick<IOffer, 'project' | 'typeOf' | 'pr
|
|
|
72
75
|
addOn?: IAddOn4unitPriceOffer[];
|
|
73
76
|
typeOf: OfferType.Offer;
|
|
74
77
|
hasMerchantReturnPolicy?: IHasMerchantReturnPolicy;
|
|
78
|
+
settings?: ISettings;
|
|
75
79
|
}
|
|
76
80
|
/**
|
|
77
81
|
* ソート条件
|