asv-hlps 1.3.65 → 1.3.67
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/cjs/estates/models/EstateElt.d.ts +2 -0
- package/lib/cjs/products/models/IProductParams.d.ts +18 -0
- package/lib/cjs/products/models/IProductParams.js +2 -0
- package/lib/cjs/query-builder/hlpQbuilder.d.ts +1 -1
- package/lib/cjs/shared/models/IParam.d.ts +12 -2
- package/lib/cjs/shared/models/index.d.ts +2 -1
- package/lib/esm/estates/models/EstateElt.d.ts +2 -0
- package/lib/esm/products/models/IProductParams.d.ts +18 -0
- package/lib/esm/products/models/IProductParams.js +1 -0
- package/lib/esm/query-builder/hlpQbuilder.d.ts +1 -1
- package/lib/esm/shared/models/IParam.d.ts +12 -2
- package/lib/esm/shared/models/index.d.ts +2 -1
- package/package.json +4 -4
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IParam } from "../../shared/models/IParam";
|
|
2
|
+
export interface IProductParams extends IParam {
|
|
3
|
+
pdtId?: number;
|
|
4
|
+
agcyId?: number;
|
|
5
|
+
pvdId?: number;
|
|
6
|
+
laboId?: number;
|
|
7
|
+
catCode?: string;
|
|
8
|
+
isActive?: boolean;
|
|
9
|
+
isAvailable?: boolean;
|
|
10
|
+
isPublished?: boolean;
|
|
11
|
+
withLabo?: boolean;
|
|
12
|
+
inEqeer?: boolean;
|
|
13
|
+
dciId?: number;
|
|
14
|
+
fgId?: number;
|
|
15
|
+
sofId?: number;
|
|
16
|
+
dosId?: number;
|
|
17
|
+
grpByPdt?: boolean;
|
|
18
|
+
}
|
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
import EDate from "./EDate";
|
|
2
|
-
export
|
|
2
|
+
export interface IInOrNot {
|
|
3
3
|
ins?: string[];
|
|
4
4
|
notIns?: string[];
|
|
5
|
+
orIns?: string[];
|
|
5
6
|
steId?: number;
|
|
6
7
|
steName?: string;
|
|
7
8
|
}
|
|
8
|
-
export
|
|
9
|
+
export interface InOrNotStaff {
|
|
10
|
+
orInSteNames?: string[];
|
|
11
|
+
orNotInSteNames?: string[];
|
|
12
|
+
inSteNames?: string[];
|
|
13
|
+
notInSteNames?: string[];
|
|
14
|
+
}
|
|
15
|
+
export interface IParam {
|
|
9
16
|
steId?: number;
|
|
10
17
|
userId?: number;
|
|
11
18
|
clientId?: number;
|
|
@@ -13,9 +20,12 @@ export default interface IParam {
|
|
|
13
20
|
role?: string;
|
|
14
21
|
steName?: string;
|
|
15
22
|
steNames?: string[];
|
|
23
|
+
staffSteNames?: string[];
|
|
24
|
+
isActive?: boolean;
|
|
16
25
|
steGrpCodes?: IInOrNot;
|
|
17
26
|
grpCodes?: IInOrNot;
|
|
18
27
|
roleCodes?: IInOrNot;
|
|
28
|
+
staff?: InOrNotStaff;
|
|
19
29
|
roleCode?: string;
|
|
20
30
|
opDate?: EDate;
|
|
21
31
|
store?: string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { IParam } from "./IParam";
|
|
1
2
|
export { default as EInOutMotive } from "./EInOutMotive";
|
|
2
|
-
export { default as IParam } from "./IParam";
|
|
3
3
|
export { default as IPath } from "./IPath";
|
|
4
4
|
export { default as NaAc } from "./NaAc";
|
|
5
5
|
export { default as NaCoAc } from "./NaCoAc";
|
|
6
6
|
export { default as NaCoShortAc } from "./NaCoShortAc";
|
|
7
7
|
export { default as OpDate } from "./OpDate";
|
|
8
|
+
export { IParam };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IParam } from "../../shared/models/IParam";
|
|
2
|
+
export interface IProductParams extends IParam {
|
|
3
|
+
pdtId?: number;
|
|
4
|
+
agcyId?: number;
|
|
5
|
+
pvdId?: number;
|
|
6
|
+
laboId?: number;
|
|
7
|
+
catCode?: string;
|
|
8
|
+
isActive?: boolean;
|
|
9
|
+
isAvailable?: boolean;
|
|
10
|
+
isPublished?: boolean;
|
|
11
|
+
withLabo?: boolean;
|
|
12
|
+
inEqeer?: boolean;
|
|
13
|
+
dciId?: number;
|
|
14
|
+
fgId?: number;
|
|
15
|
+
sofId?: number;
|
|
16
|
+
dosId?: number;
|
|
17
|
+
grpByPdt?: boolean;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
import EDate from "./EDate";
|
|
2
|
-
export
|
|
2
|
+
export interface IInOrNot {
|
|
3
3
|
ins?: string[];
|
|
4
4
|
notIns?: string[];
|
|
5
|
+
orIns?: string[];
|
|
5
6
|
steId?: number;
|
|
6
7
|
steName?: string;
|
|
7
8
|
}
|
|
8
|
-
export
|
|
9
|
+
export interface InOrNotStaff {
|
|
10
|
+
orInSteNames?: string[];
|
|
11
|
+
orNotInSteNames?: string[];
|
|
12
|
+
inSteNames?: string[];
|
|
13
|
+
notInSteNames?: string[];
|
|
14
|
+
}
|
|
15
|
+
export interface IParam {
|
|
9
16
|
steId?: number;
|
|
10
17
|
userId?: number;
|
|
11
18
|
clientId?: number;
|
|
@@ -13,9 +20,12 @@ export default interface IParam {
|
|
|
13
20
|
role?: string;
|
|
14
21
|
steName?: string;
|
|
15
22
|
steNames?: string[];
|
|
23
|
+
staffSteNames?: string[];
|
|
24
|
+
isActive?: boolean;
|
|
16
25
|
steGrpCodes?: IInOrNot;
|
|
17
26
|
grpCodes?: IInOrNot;
|
|
18
27
|
roleCodes?: IInOrNot;
|
|
28
|
+
staff?: InOrNotStaff;
|
|
19
29
|
roleCode?: string;
|
|
20
30
|
opDate?: EDate;
|
|
21
31
|
store?: string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { IParam } from "./IParam";
|
|
1
2
|
export { default as EInOutMotive } from "./EInOutMotive";
|
|
2
|
-
export { default as IParam } from "./IParam";
|
|
3
3
|
export { default as IPath } from "./IPath";
|
|
4
4
|
export { default as NaAc } from "./NaAc";
|
|
5
5
|
export { default as NaCoAc } from "./NaCoAc";
|
|
6
6
|
export { default as NaCoShortAc } from "./NaCoShortAc";
|
|
7
7
|
export { default as OpDate } from "./OpDate";
|
|
8
|
+
export { IParam };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "asv-hlps",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.67",
|
|
4
4
|
"description": "helpers",
|
|
5
5
|
"main": "./lib/cjs/index.js",
|
|
6
6
|
"module": "./lib/esm/index.js",
|
|
@@ -21,20 +21,20 @@
|
|
|
21
21
|
"@types/lodash": "^4.17.0",
|
|
22
22
|
"@types/pdfmake": "^0.2.9",
|
|
23
23
|
"@types/randomatic": "^3.1.5",
|
|
24
|
-
"@types/react": "^18.2.
|
|
24
|
+
"@types/react": "^18.2.73"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"axios": "^1.6.8",
|
|
28
28
|
"bcryptjs": "^2.4.3",
|
|
29
29
|
"classnames": "^2.5.1",
|
|
30
30
|
"dayjs": "^1.11.10",
|
|
31
|
-
"express": "^4.
|
|
31
|
+
"express": "^4.19.2",
|
|
32
32
|
"jwt-decode": "^4.0.0",
|
|
33
33
|
"lodash": "^4.17.21",
|
|
34
34
|
"pdfmake": "^0.2.10",
|
|
35
35
|
"randomatic": "^3.1.1",
|
|
36
36
|
"typeorm": "^0.3.20",
|
|
37
|
-
"typescript": "^5.4.
|
|
37
|
+
"typescript": "^5.4.3",
|
|
38
38
|
"yup": "^1.4.0"
|
|
39
39
|
}
|
|
40
40
|
}
|