@esb-market-contracts/backend 1.0.11 → 1.0.12
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/api.d.ts +4 -0
- package/package.json +1 -1
- package/types.d.ts +3 -0
package/api.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ declare const brandsRouter: import("hono/hono-base").HonoBase<{
|
|
|
24
24
|
id: number;
|
|
25
25
|
slug: string;
|
|
26
26
|
name: Partial<Record<"ka" | "en" | "ru", string>>;
|
|
27
|
+
websiteUrl: string | null;
|
|
27
28
|
notes: string | null;
|
|
28
29
|
logotypeUrl: string;
|
|
29
30
|
countryId: number;
|
|
@@ -44,6 +45,7 @@ declare const brandsRouter: import("hono/hono-base").HonoBase<{
|
|
|
44
45
|
name: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
|
|
45
46
|
countryId: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
|
|
46
47
|
logotype: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
|
|
48
|
+
websiteUrl?: string | null | undefined;
|
|
47
49
|
notes?: string | null | undefined;
|
|
48
50
|
};
|
|
49
51
|
};
|
|
@@ -72,6 +74,7 @@ declare const brandsRouter: import("hono/hono-base").HonoBase<{
|
|
|
72
74
|
id: number;
|
|
73
75
|
slug: string;
|
|
74
76
|
name: Partial<Record<"ka" | "en" | "ru", string>>;
|
|
77
|
+
websiteUrl: string | null;
|
|
75
78
|
notes: string | null;
|
|
76
79
|
logotypeUrl: string;
|
|
77
80
|
countryId: number;
|
|
@@ -91,6 +94,7 @@ declare const brandsRouter: import("hono/hono-base").HonoBase<{
|
|
|
91
94
|
form: {
|
|
92
95
|
brandId: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
|
|
93
96
|
slug?: string | undefined;
|
|
97
|
+
websiteUrl?: string | null | undefined;
|
|
94
98
|
notes?: string | null | undefined;
|
|
95
99
|
name?: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[] | undefined;
|
|
96
100
|
countryId?: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[] | undefined;
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ declare const brandSchema: z.ZodObject<{
|
|
|
10
10
|
en: "en";
|
|
11
11
|
ru: "ru";
|
|
12
12
|
}> & z.core.$partial, z.ZodString>;
|
|
13
|
+
websiteUrl: z.ZodNullable<z.ZodURL>;
|
|
13
14
|
notes: z.ZodNullable<z.ZodString>;
|
|
14
15
|
logotypeUrl: z.ZodString;
|
|
15
16
|
countryId: z.ZodInt;
|
|
@@ -46,6 +47,7 @@ declare const brandSelectOneQuerySchema: z.ZodPipe<z.ZodObject<{
|
|
|
46
47
|
}>>;
|
|
47
48
|
declare const brandCreatePayloadSchema: z.ZodObject<{
|
|
48
49
|
slug: z.ZodString;
|
|
50
|
+
websiteUrl: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
49
51
|
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
50
52
|
name: z.ZodPreprocess<z.ZodRecord<z.ZodEnum<{
|
|
51
53
|
ka: "ka";
|
|
@@ -57,6 +59,7 @@ declare const brandCreatePayloadSchema: z.ZodObject<{
|
|
|
57
59
|
}, z.core.$strip>;
|
|
58
60
|
declare const brandUpdatePayloadSchema: z.ZodObject<{
|
|
59
61
|
slug: z.ZodOptional<z.ZodString>;
|
|
62
|
+
websiteUrl: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
60
63
|
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
61
64
|
name: z.ZodOptional<z.ZodPreprocess<z.ZodRecord<z.ZodEnum<{
|
|
62
65
|
ka: "ka";
|