@webiny/app-aco 5.40.6 → 5.40.7-beta.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.
|
@@ -39,45 +39,45 @@ export declare const filterValidationSchema: zod.ZodObject<{
|
|
|
39
39
|
condition: string;
|
|
40
40
|
}>, "many">;
|
|
41
41
|
}, "strip", zod.ZodTypeAny, {
|
|
42
|
-
operation: Operation;
|
|
43
42
|
filters: {
|
|
44
43
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
45
44
|
field: string;
|
|
46
45
|
condition: string;
|
|
47
46
|
}[];
|
|
48
|
-
}, {
|
|
49
47
|
operation: Operation;
|
|
48
|
+
}, {
|
|
50
49
|
filters: {
|
|
51
50
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
52
51
|
field: string;
|
|
53
52
|
condition: string;
|
|
54
53
|
}[];
|
|
54
|
+
operation: Operation;
|
|
55
55
|
}>, "many">;
|
|
56
56
|
}, "strip", zod.ZodTypeAny, {
|
|
57
|
-
name: string;
|
|
58
|
-
description: string;
|
|
59
|
-
operation: Operation;
|
|
60
57
|
groups: {
|
|
61
|
-
operation: Operation;
|
|
62
58
|
filters: {
|
|
63
59
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
64
60
|
field: string;
|
|
65
61
|
condition: string;
|
|
66
62
|
}[];
|
|
63
|
+
operation: Operation;
|
|
67
64
|
}[];
|
|
68
|
-
id?: string | null | undefined;
|
|
69
|
-
}, {
|
|
70
|
-
name: string;
|
|
71
65
|
description: string;
|
|
66
|
+
name: string;
|
|
72
67
|
operation: Operation;
|
|
68
|
+
id?: string | null | undefined;
|
|
69
|
+
}, {
|
|
73
70
|
groups: {
|
|
74
|
-
operation: Operation;
|
|
75
71
|
filters: {
|
|
76
72
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
77
73
|
field: string;
|
|
78
74
|
condition: string;
|
|
79
75
|
}[];
|
|
76
|
+
operation: Operation;
|
|
80
77
|
}[];
|
|
78
|
+
description: string;
|
|
79
|
+
name: string;
|
|
80
|
+
operation: Operation;
|
|
81
81
|
id?: string | null | undefined;
|
|
82
82
|
}>;
|
|
83
83
|
export declare class Filter {
|
|
@@ -91,30 +91,30 @@ export declare class Filter {
|
|
|
91
91
|
static createEmpty(): Filter;
|
|
92
92
|
static create(data: FilterDTO): Filter;
|
|
93
93
|
static validate(data: FilterDTO): zod.SafeParseReturnType<{
|
|
94
|
-
name: string;
|
|
95
|
-
description: string;
|
|
96
|
-
operation: Operation;
|
|
97
94
|
groups: {
|
|
98
|
-
operation: Operation;
|
|
99
95
|
filters: {
|
|
100
96
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
101
97
|
field: string;
|
|
102
98
|
condition: string;
|
|
103
99
|
}[];
|
|
100
|
+
operation: Operation;
|
|
104
101
|
}[];
|
|
105
|
-
id?: string | null | undefined;
|
|
106
|
-
}, {
|
|
107
|
-
name: string;
|
|
108
102
|
description: string;
|
|
103
|
+
name: string;
|
|
109
104
|
operation: Operation;
|
|
105
|
+
id?: string | null | undefined;
|
|
106
|
+
}, {
|
|
110
107
|
groups: {
|
|
111
|
-
operation: Operation;
|
|
112
108
|
filters: {
|
|
113
109
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
114
110
|
field: string;
|
|
115
111
|
condition: string;
|
|
116
112
|
}[];
|
|
113
|
+
operation: Operation;
|
|
117
114
|
}[];
|
|
115
|
+
description: string;
|
|
116
|
+
name: string;
|
|
117
|
+
operation: Operation;
|
|
118
118
|
id?: string | null | undefined;
|
|
119
119
|
}>;
|
|
120
120
|
protected constructor(data: {
|
package/hooks/useFolders.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const useFolders: () => {
|
|
2
2
|
getFolder: (id: string) => Promise<import("../types").FolderItem>;
|
|
3
|
-
createFolder: (folder: Omit<import("../types").FolderItem, "
|
|
3
|
+
createFolder: (folder: Omit<import("../types").FolderItem, "type" | "id">) => Promise<import("../types").FolderItem>;
|
|
4
4
|
updateFolder: (folder: Omit<import("../types").FolderItem, "type">, options?: Partial<{
|
|
5
5
|
refetchFoldersList: boolean;
|
|
6
6
|
}> | undefined) => Promise<import("../types").FolderItem>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-aco",
|
|
3
|
-
"version": "5.40.
|
|
3
|
+
"version": "5.40.7-beta.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,18 +17,18 @@
|
|
|
17
17
|
"@material-design-icons/svg": "0.14.13",
|
|
18
18
|
"@material-symbols/svg-400": "0.4.3",
|
|
19
19
|
"@minoru/react-dnd-treeview": "3.2.1",
|
|
20
|
-
"@webiny/app": "5.40.
|
|
21
|
-
"@webiny/app-admin": "5.40.
|
|
22
|
-
"@webiny/app-headless-cms-common": "5.40.
|
|
23
|
-
"@webiny/app-security": "5.40.
|
|
24
|
-
"@webiny/app-wcp": "5.40.
|
|
25
|
-
"@webiny/form": "5.40.
|
|
26
|
-
"@webiny/plugins": "5.40.
|
|
27
|
-
"@webiny/react-properties": "5.40.
|
|
28
|
-
"@webiny/react-router": "5.40.
|
|
29
|
-
"@webiny/ui": "5.40.
|
|
30
|
-
"@webiny/utils": "5.40.
|
|
31
|
-
"@webiny/validation": "5.40.
|
|
20
|
+
"@webiny/app": "5.40.7-beta.0",
|
|
21
|
+
"@webiny/app-admin": "5.40.7-beta.0",
|
|
22
|
+
"@webiny/app-headless-cms-common": "5.40.7-beta.0",
|
|
23
|
+
"@webiny/app-security": "5.40.7-beta.0",
|
|
24
|
+
"@webiny/app-wcp": "5.40.7-beta.0",
|
|
25
|
+
"@webiny/form": "5.40.7-beta.0",
|
|
26
|
+
"@webiny/plugins": "5.40.7-beta.0",
|
|
27
|
+
"@webiny/react-properties": "5.40.7-beta.0",
|
|
28
|
+
"@webiny/react-router": "5.40.7-beta.0",
|
|
29
|
+
"@webiny/ui": "5.40.7-beta.0",
|
|
30
|
+
"@webiny/utils": "5.40.7-beta.0",
|
|
31
|
+
"@webiny/validation": "5.40.7-beta.0",
|
|
32
32
|
"dot-prop-immutable": "2.1.1",
|
|
33
33
|
"graphql": "15.8.0",
|
|
34
34
|
"graphql-tag": "2.12.6",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"@babel/preset-typescript": "7.24.1",
|
|
52
52
|
"@babel/runtime": "7.24.1",
|
|
53
53
|
"@types/react": "18.2.79",
|
|
54
|
-
"@webiny/cli": "5.40.
|
|
55
|
-
"@webiny/project-utils": "5.40.
|
|
54
|
+
"@webiny/cli": "5.40.7-beta.0",
|
|
55
|
+
"@webiny/project-utils": "5.40.7-beta.0",
|
|
56
56
|
"apollo-client": "2.6.10",
|
|
57
57
|
"apollo-link": "1.2.14",
|
|
58
58
|
"rimraf": "5.0.5",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"build": "yarn webiny run build",
|
|
68
68
|
"watch": "yarn webiny run watch"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "7236a5d93457a1dda87e880de76d6d859d49f283"
|
|
71
71
|
}
|