@esb-market-contracts/backend 1.0.12 → 1.0.13
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 -4
- package/package.json +1 -1
- package/types.d.ts +4 -4
package/api.d.ts
CHANGED
|
@@ -45,8 +45,8 @@ declare const brandsRouter: import("hono/hono-base").HonoBase<{
|
|
|
45
45
|
name: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
|
|
46
46
|
countryId: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
|
|
47
47
|
logotype: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
|
|
48
|
-
websiteUrl?:
|
|
49
|
-
notes?:
|
|
48
|
+
websiteUrl?: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[] | undefined;
|
|
49
|
+
notes?: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[] | undefined;
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
52
|
output: import("@kalutskii/foundation").APIError | import("@kalutskii/foundation").APISuccess<Record<string, never>>;
|
|
@@ -94,9 +94,9 @@ declare const brandsRouter: import("hono/hono-base").HonoBase<{
|
|
|
94
94
|
form: {
|
|
95
95
|
brandId: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
|
|
96
96
|
slug?: string | undefined;
|
|
97
|
-
websiteUrl?: string | null | undefined;
|
|
98
|
-
notes?: string | null | undefined;
|
|
99
97
|
name?: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[] | undefined;
|
|
98
|
+
websiteUrl?: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[] | undefined;
|
|
99
|
+
notes?: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[] | undefined;
|
|
100
100
|
countryId?: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[] | undefined;
|
|
101
101
|
logotype?: import("zod/v4/core").File | undefined;
|
|
102
102
|
};
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -47,25 +47,25 @@ declare const brandSelectOneQuerySchema: z.ZodPipe<z.ZodObject<{
|
|
|
47
47
|
}>>;
|
|
48
48
|
declare const brandCreatePayloadSchema: z.ZodObject<{
|
|
49
49
|
slug: z.ZodString;
|
|
50
|
-
websiteUrl: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
51
|
-
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
52
50
|
name: z.ZodPreprocess<z.ZodRecord<z.ZodEnum<{
|
|
53
51
|
ka: "ka";
|
|
54
52
|
en: "en";
|
|
55
53
|
ru: "ru";
|
|
56
54
|
}> & z.core.$partial, z.ZodString>>;
|
|
55
|
+
websiteUrl: z.ZodPreprocess<z.ZodOptional<z.ZodNullable<z.ZodURL>>>;
|
|
56
|
+
notes: z.ZodPreprocess<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
57
57
|
countryId: z.ZodPipe<z.ZodCoercedNumber<unknown>, z.ZodInt>;
|
|
58
58
|
logotype: z.ZodFile;
|
|
59
59
|
}, z.core.$strip>;
|
|
60
60
|
declare const brandUpdatePayloadSchema: z.ZodObject<{
|
|
61
61
|
slug: z.ZodOptional<z.ZodString>;
|
|
62
|
-
websiteUrl: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
63
|
-
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
64
62
|
name: z.ZodOptional<z.ZodPreprocess<z.ZodRecord<z.ZodEnum<{
|
|
65
63
|
ka: "ka";
|
|
66
64
|
en: "en";
|
|
67
65
|
ru: "ru";
|
|
68
66
|
}> & z.core.$partial, z.ZodString>>>;
|
|
67
|
+
websiteUrl: z.ZodPreprocess<z.ZodOptional<z.ZodNullable<z.ZodURL>>>;
|
|
68
|
+
notes: z.ZodPreprocess<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
69
69
|
countryId: z.ZodOptional<z.ZodPipe<z.ZodCoercedNumber<unknown>, z.ZodInt>>;
|
|
70
70
|
logotype: z.ZodOptional<z.ZodFile>;
|
|
71
71
|
brandId: z.ZodPipe<z.ZodCoercedNumber<unknown>, z.ZodInt>;
|