@esb-market-contracts/backend 1.0.45 → 1.0.46
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 +28 -0
- package/package.json +1 -1
- package/types.d.ts +20 -0
package/api.d.ts
CHANGED
|
@@ -727,6 +727,10 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
727
727
|
id: number;
|
|
728
728
|
model: string | null;
|
|
729
729
|
name: Partial<Record<"en" | "ka" | "ru", string>> | null;
|
|
730
|
+
image: {
|
|
731
|
+
src: string;
|
|
732
|
+
isBanner: boolean;
|
|
733
|
+
} | null;
|
|
730
734
|
};
|
|
731
735
|
productVariant: {
|
|
732
736
|
id: number;
|
|
@@ -785,6 +789,10 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
785
789
|
id: number;
|
|
786
790
|
model: string | null;
|
|
787
791
|
name: Partial<Record<"en" | "ka" | "ru", string>> | null;
|
|
792
|
+
image: {
|
|
793
|
+
src: string;
|
|
794
|
+
isBanner: boolean;
|
|
795
|
+
} | null;
|
|
788
796
|
};
|
|
789
797
|
productVariant: {
|
|
790
798
|
id: number;
|
|
@@ -920,6 +928,10 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
920
928
|
id: number;
|
|
921
929
|
model: string | null;
|
|
922
930
|
name: Partial<Record<"en" | "ka" | "ru", string>> | null;
|
|
931
|
+
image: {
|
|
932
|
+
src: string;
|
|
933
|
+
isBanner: boolean;
|
|
934
|
+
} | null;
|
|
923
935
|
};
|
|
924
936
|
productVariant: {
|
|
925
937
|
id: number;
|
|
@@ -969,6 +981,10 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
969
981
|
id: number;
|
|
970
982
|
model: string | null;
|
|
971
983
|
name: Partial<Record<"en" | "ka" | "ru", string>> | null;
|
|
984
|
+
image: {
|
|
985
|
+
src: string;
|
|
986
|
+
isBanner: boolean;
|
|
987
|
+
} | null;
|
|
972
988
|
};
|
|
973
989
|
productVariant: {
|
|
974
990
|
id: number;
|
|
@@ -1000,6 +1016,10 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
1000
1016
|
id: number;
|
|
1001
1017
|
model: string | null;
|
|
1002
1018
|
name: Partial<Record<"en" | "ka" | "ru", string>> | null;
|
|
1019
|
+
image: {
|
|
1020
|
+
src: string;
|
|
1021
|
+
isBanner: boolean;
|
|
1022
|
+
} | null;
|
|
1003
1023
|
};
|
|
1004
1024
|
productVariant: {
|
|
1005
1025
|
id: number;
|
|
@@ -1047,6 +1067,10 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
1047
1067
|
id: number;
|
|
1048
1068
|
model: string | null;
|
|
1049
1069
|
name: Partial<Record<"en" | "ka" | "ru", string>> | null;
|
|
1070
|
+
image: {
|
|
1071
|
+
src: string;
|
|
1072
|
+
isBanner: boolean;
|
|
1073
|
+
} | null;
|
|
1050
1074
|
};
|
|
1051
1075
|
productVariant: {
|
|
1052
1076
|
id: number;
|
|
@@ -1094,6 +1118,10 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
1094
1118
|
id: number;
|
|
1095
1119
|
model: string | null;
|
|
1096
1120
|
name: Partial<Record<"en" | "ka" | "ru", string>> | null;
|
|
1121
|
+
image: {
|
|
1122
|
+
src: string;
|
|
1123
|
+
isBanner: boolean;
|
|
1124
|
+
} | null;
|
|
1097
1125
|
};
|
|
1098
1126
|
productVariant: {
|
|
1099
1127
|
id: number;
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -550,6 +550,10 @@ declare const deliveryItemCatalogDetailsSchema: z.ZodObject<{
|
|
|
550
550
|
ka: "ka";
|
|
551
551
|
ru: "ru";
|
|
552
552
|
}> & z.core.$partial, z.ZodString>>;
|
|
553
|
+
image: z.ZodNullable<z.ZodObject<{
|
|
554
|
+
src: z.ZodURL;
|
|
555
|
+
isBanner: z.ZodBoolean;
|
|
556
|
+
}, z.core.$strip>>;
|
|
553
557
|
}, z.core.$strip>;
|
|
554
558
|
productVariant: z.ZodObject<{
|
|
555
559
|
id: z.ZodInt;
|
|
@@ -587,6 +591,10 @@ declare const deliveryItemDetailsSchema: z.ZodObject<{
|
|
|
587
591
|
ka: "ka";
|
|
588
592
|
ru: "ru";
|
|
589
593
|
}> & z.core.$partial, z.ZodString>>;
|
|
594
|
+
image: z.ZodNullable<z.ZodObject<{
|
|
595
|
+
src: z.ZodURL;
|
|
596
|
+
isBanner: z.ZodBoolean;
|
|
597
|
+
}, z.core.$strip>>;
|
|
590
598
|
}, z.core.$strip>;
|
|
591
599
|
productVariant: z.ZodObject<{
|
|
592
600
|
id: z.ZodInt;
|
|
@@ -630,6 +638,10 @@ declare const deliveryItemScanResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
630
638
|
ka: "ka";
|
|
631
639
|
ru: "ru";
|
|
632
640
|
}> & z.core.$partial, z.ZodString>>;
|
|
641
|
+
image: z.ZodNullable<z.ZodObject<{
|
|
642
|
+
src: z.ZodURL;
|
|
643
|
+
isBanner: z.ZodBoolean;
|
|
644
|
+
}, z.core.$strip>>;
|
|
633
645
|
}, z.core.$strip>;
|
|
634
646
|
productVariant: z.ZodObject<{
|
|
635
647
|
id: z.ZodInt;
|
|
@@ -669,6 +681,10 @@ declare const deliveryItemScanResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
669
681
|
ka: "ka";
|
|
670
682
|
ru: "ru";
|
|
671
683
|
}> & z.core.$partial, z.ZodString>>;
|
|
684
|
+
image: z.ZodNullable<z.ZodObject<{
|
|
685
|
+
src: z.ZodURL;
|
|
686
|
+
isBanner: z.ZodBoolean;
|
|
687
|
+
}, z.core.$strip>>;
|
|
672
688
|
}, z.core.$strip>;
|
|
673
689
|
productVariant: z.ZodObject<{
|
|
674
690
|
id: z.ZodInt;
|
|
@@ -728,6 +744,10 @@ declare const deliveryDetailsSchema: z.ZodObject<{
|
|
|
728
744
|
ka: "ka";
|
|
729
745
|
ru: "ru";
|
|
730
746
|
}> & z.core.$partial, z.ZodString>>;
|
|
747
|
+
image: z.ZodNullable<z.ZodObject<{
|
|
748
|
+
src: z.ZodURL;
|
|
749
|
+
isBanner: z.ZodBoolean;
|
|
750
|
+
}, z.core.$strip>>;
|
|
731
751
|
}, z.core.$strip>;
|
|
732
752
|
productVariant: z.ZodObject<{
|
|
733
753
|
id: z.ZodInt;
|