@esb-market-contracts/backend 1.0.47 → 1.0.48
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 +0 -5
- package/package.json +1 -1
- package/types.d.ts +0 -5
package/api.d.ts
CHANGED
|
@@ -705,7 +705,6 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
705
705
|
warehouseId: number;
|
|
706
706
|
currencyId: number;
|
|
707
707
|
status: "draft" | "posted" | "reversed";
|
|
708
|
-
notes: string | null;
|
|
709
708
|
exchangeRateId: number | null;
|
|
710
709
|
exchangeRate: string | null;
|
|
711
710
|
exchangeRateValidFromDate: string | null;
|
|
@@ -767,7 +766,6 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
767
766
|
warehouseId: number;
|
|
768
767
|
currencyId: number;
|
|
769
768
|
status: "draft" | "posted" | "reversed";
|
|
770
|
-
notes: string | null;
|
|
771
769
|
exchangeRateId: number | null;
|
|
772
770
|
exchangeRate: string | null;
|
|
773
771
|
exchangeRateValidFromDate: string | null;
|
|
@@ -816,7 +814,6 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
816
814
|
supplierId: number;
|
|
817
815
|
warehouseId: number;
|
|
818
816
|
currencyId: number;
|
|
819
|
-
notes?: string | null | undefined;
|
|
820
817
|
exchangeRateId?: number | null | undefined;
|
|
821
818
|
};
|
|
822
819
|
};
|
|
@@ -833,7 +830,6 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
833
830
|
warehouseId: number;
|
|
834
831
|
currencyId: number;
|
|
835
832
|
status: "draft" | "posted" | "reversed";
|
|
836
|
-
notes: string | null;
|
|
837
833
|
exchangeRateId: number | null;
|
|
838
834
|
exchangeRate: string | null;
|
|
839
835
|
exchangeRateValidFromDate: string | null;
|
|
@@ -878,7 +874,6 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
878
874
|
supplierId?: number | undefined;
|
|
879
875
|
warehouseId?: number | undefined;
|
|
880
876
|
currencyId?: number | undefined;
|
|
881
|
-
notes?: string | null | undefined;
|
|
882
877
|
exchangeRateId?: number | null | undefined;
|
|
883
878
|
deliveryId: number;
|
|
884
879
|
};
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -394,7 +394,6 @@ declare const deliveryCreatePayloadSchema: z.ZodObject<{
|
|
|
394
394
|
supplierId: z.ZodInt;
|
|
395
395
|
warehouseId: z.ZodInt;
|
|
396
396
|
currencyId: z.ZodInt;
|
|
397
|
-
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
398
397
|
exchangeRateId: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
399
398
|
}, {
|
|
400
399
|
out: {};
|
|
@@ -407,7 +406,6 @@ declare const deliveryUpdatePayloadSchema: z.ZodObject<{
|
|
|
407
406
|
supplierId: z.ZodOptional<z.ZodInt>;
|
|
408
407
|
warehouseId: z.ZodOptional<z.ZodInt>;
|
|
409
408
|
currencyId: z.ZodOptional<z.ZodInt>;
|
|
410
|
-
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
411
409
|
exchangeRateId: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
412
410
|
deliveryId: z.ZodInt;
|
|
413
411
|
}, {
|
|
@@ -493,7 +491,6 @@ declare const deliverySearchItemSchema: z.ZodObject<{
|
|
|
493
491
|
posted: "posted";
|
|
494
492
|
reversed: "reversed";
|
|
495
493
|
}>;
|
|
496
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
497
494
|
exchangeRateId: z.ZodNullable<z.ZodInt>;
|
|
498
495
|
exchangeRate: z.ZodNullable<z.ZodString>;
|
|
499
496
|
exchangeRateValidFromDate: z.ZodNullable<z.ZodISODate>;
|
|
@@ -720,7 +717,6 @@ declare const deliveryDetailsSchema: z.ZodObject<{
|
|
|
720
717
|
posted: "posted";
|
|
721
718
|
reversed: "reversed";
|
|
722
719
|
}>;
|
|
723
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
724
720
|
exchangeRateId: z.ZodNullable<z.ZodInt>;
|
|
725
721
|
exchangeRate: z.ZodNullable<z.ZodString>;
|
|
726
722
|
exchangeRateValidFromDate: z.ZodNullable<z.ZodISODate>;
|
|
@@ -1290,7 +1286,6 @@ declare const deliverySchema: z.ZodObject<{
|
|
|
1290
1286
|
posted: "posted";
|
|
1291
1287
|
reversed: "reversed";
|
|
1292
1288
|
}>;
|
|
1293
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
1294
1289
|
exchangeRateId: z.ZodNullable<z.ZodInt>;
|
|
1295
1290
|
exchangeRate: z.ZodNullable<z.ZodString>;
|
|
1296
1291
|
exchangeRateValidFromDate: z.ZodNullable<z.ZodISODate>;
|