@chevre/factory 5.1.0-alpha.1 → 5.1.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.
|
@@ -8,9 +8,17 @@ import { IProject } from '../project';
|
|
|
8
8
|
import { SortType } from '../sortType';
|
|
9
9
|
export type IAboutAsOrder = Pick<IOrder, 'orderNumber' | 'typeOf'> & {
|
|
10
10
|
id: string;
|
|
11
|
+
/**
|
|
12
|
+
* 注文番号
|
|
13
|
+
*/
|
|
14
|
+
identifier: string;
|
|
11
15
|
};
|
|
12
16
|
export type IAboutAsProduct = Pick<IProduct, 'typeOf'> & {
|
|
13
17
|
id: string;
|
|
18
|
+
/**
|
|
19
|
+
* プロダクトコード
|
|
20
|
+
*/
|
|
21
|
+
identifier: string;
|
|
14
22
|
};
|
|
15
23
|
export type IAbout = IAboutAsOrder | IAboutAsProduct;
|
|
16
24
|
export type ICreator = Pick<IPerson, 'id' | 'typeOf'>;
|
|
@@ -115,6 +123,9 @@ export interface ISearchConditions {
|
|
|
115
123
|
$eq?: string;
|
|
116
124
|
$in?: string[];
|
|
117
125
|
};
|
|
126
|
+
identifier?: {
|
|
127
|
+
$in?: string[];
|
|
128
|
+
};
|
|
118
129
|
orderNumber?: {
|
|
119
130
|
$eq?: string;
|
|
120
131
|
$in?: string[];
|