@esb-market-contracts/backend 1.0.9 → 1.0.10

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.
Files changed (3) hide show
  1. package/api.d.ts +0 -4
  2. package/package.json +1 -1
  3. package/types.d.ts +0 -3
package/api.d.ts CHANGED
@@ -24,7 +24,6 @@ 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
- description: string | null;
28
27
  logotypeUrl: string;
29
28
  countryId: number;
30
29
  updatedAt: Date | null;
@@ -44,7 +43,6 @@ declare const brandsRouter: import("hono/hono-base").HonoBase<{
44
43
  name: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
45
44
  countryId: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
46
45
  logotype: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
47
- description?: string | null | undefined;
48
46
  };
49
47
  };
50
48
  output: import("@kalutskii/foundation").APIError | import("@kalutskii/foundation").APISuccess<Record<string, never>>;
@@ -72,7 +70,6 @@ declare const brandsRouter: import("hono/hono-base").HonoBase<{
72
70
  id: number;
73
71
  slug: string;
74
72
  name: Partial<Record<"ka" | "en" | "ru", string>>;
75
- description: string | null;
76
73
  logotypeUrl: string;
77
74
  countryId: number;
78
75
  updatedAt: Date | null;
@@ -93,7 +90,6 @@ declare const brandsRouter: import("hono/hono-base").HonoBase<{
93
90
  name: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
94
91
  countryId: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
95
92
  brandId: import("hono/types").ParsedFormValue | import("hono/types").ParsedFormValue[];
96
- description?: string | null | undefined;
97
93
  logotype?: import("zod/v4/core").File | undefined;
98
94
  };
99
95
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@esb-market-contracts/backend",
3
3
  "description": "Shared TypeScript contract definitions for backend.",
4
- "version": "1.0.9",
4
+ "version": "1.0.10",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -10,7 +10,6 @@ declare const brandSchema: z.ZodObject<{
10
10
  en: "en";
11
11
  ru: "ru";
12
12
  }> & z.core.$partial, z.ZodString>;
13
- description: z.ZodNullable<z.ZodString>;
14
13
  logotypeUrl: z.ZodString;
15
14
  countryId: z.ZodInt;
16
15
  updatedAt: z.ZodNullable<z.ZodDate>;
@@ -45,7 +44,6 @@ declare const brandSelectOneQuerySchema: z.ZodPipe<z.ZodObject<{
45
44
  slug?: string | undefined;
46
45
  }>>;
47
46
  declare const brandCreatePayloadSchema: z.ZodObject<{
48
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
49
47
  slug: z.ZodString;
50
48
  name: z.ZodPreprocess<z.ZodRecord<z.ZodEnum<{
51
49
  ka: "ka";
@@ -56,7 +54,6 @@ declare const brandCreatePayloadSchema: z.ZodObject<{
56
54
  logotype: z.ZodFile;
57
55
  }, z.core.$strict>;
58
56
  declare const brandUpdatePayloadSchema: z.ZodObject<{
59
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60
57
  slug: z.ZodString;
61
58
  name: z.ZodPreprocess<z.ZodRecord<z.ZodEnum<{
62
59
  ka: "ka";