@remnawave/backend-contract 0.0.50 → 0.0.52
Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,7 @@ var GetAllUsersV2Command;
|
|
10
10
|
GetAllUsersV2Command.TSQ_url = GetAllUsersV2Command.url;
|
11
11
|
const FilterSchema = zod_1.z.object({
|
12
12
|
id: zod_1.z.string(),
|
13
|
-
value: zod_1.z.
|
13
|
+
value: zod_1.z.unknown(),
|
14
14
|
});
|
15
15
|
const SortingSchema = zod_1.z.object({
|
16
16
|
id: zod_1.z.string(),
|
@@ -8,7 +8,7 @@ export namespace GetAllUsersV2Command {
|
|
8
8
|
|
9
9
|
const FilterSchema = z.object({
|
10
10
|
id: z.string(),
|
11
|
-
value: z.
|
11
|
+
value: z.unknown(),
|
12
12
|
});
|
13
13
|
|
14
14
|
const SortingSchema = z.object({
|
@@ -33,6 +33,7 @@ export namespace GetAllUsersV2Command {
|
|
33
33
|
z.record(z.string(), z.string()),
|
34
34
|
)
|
35
35
|
.optional(),
|
36
|
+
|
36
37
|
globalFilterMode: z.string().optional(),
|
37
38
|
|
38
39
|
sorting: z
|