@esb-market-contracts/backend 1.0.46 → 1.0.47
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 +2 -0
- package/package.json +1 -1
- package/types.d.ts +2 -0
package/api.d.ts
CHANGED
|
@@ -817,6 +817,7 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
817
817
|
warehouseId: number;
|
|
818
818
|
currencyId: number;
|
|
819
819
|
notes?: string | null | undefined;
|
|
820
|
+
exchangeRateId?: number | null | undefined;
|
|
820
821
|
};
|
|
821
822
|
};
|
|
822
823
|
};
|
|
@@ -878,6 +879,7 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
|
|
|
878
879
|
warehouseId?: number | undefined;
|
|
879
880
|
currencyId?: number | undefined;
|
|
880
881
|
notes?: string | null | undefined;
|
|
882
|
+
exchangeRateId?: number | null | undefined;
|
|
881
883
|
deliveryId: number;
|
|
882
884
|
};
|
|
883
885
|
};
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -395,6 +395,7 @@ declare const deliveryCreatePayloadSchema: z.ZodObject<{
|
|
|
395
395
|
warehouseId: z.ZodInt;
|
|
396
396
|
currencyId: z.ZodInt;
|
|
397
397
|
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
398
|
+
exchangeRateId: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
398
399
|
}, {
|
|
399
400
|
out: {};
|
|
400
401
|
in: {};
|
|
@@ -407,6 +408,7 @@ declare const deliveryUpdatePayloadSchema: z.ZodObject<{
|
|
|
407
408
|
warehouseId: z.ZodOptional<z.ZodInt>;
|
|
408
409
|
currencyId: z.ZodOptional<z.ZodInt>;
|
|
409
410
|
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
411
|
+
exchangeRateId: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
410
412
|
deliveryId: z.ZodInt;
|
|
411
413
|
}, {
|
|
412
414
|
out: {};
|