@esb-market-contracts/backend 1.0.46 → 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.
Files changed (3) hide show
  1. package/api.d.ts +2 -5
  2. package/package.json +1 -1
  3. package/types.d.ts +2 -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,7 @@ 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;
817
+ exchangeRateId?: number | null | undefined;
820
818
  };
821
819
  };
822
820
  };
@@ -832,7 +830,6 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
832
830
  warehouseId: number;
833
831
  currencyId: number;
834
832
  status: "draft" | "posted" | "reversed";
835
- notes: string | null;
836
833
  exchangeRateId: number | null;
837
834
  exchangeRate: string | null;
838
835
  exchangeRateValidFromDate: string | null;
@@ -877,7 +874,7 @@ declare const deliveriesRouter: import("hono/hono-base").HonoBase<{
877
874
  supplierId?: number | undefined;
878
875
  warehouseId?: number | undefined;
879
876
  currencyId?: number | undefined;
880
- notes?: string | null | undefined;
877
+ exchangeRateId?: number | null | undefined;
881
878
  deliveryId: number;
882
879
  };
883
880
  };
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.46",
4
+ "version": "1.0.48",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -394,7 +394,7 @@ 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>>;
397
+ exchangeRateId: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
398
398
  }, {
399
399
  out: {};
400
400
  in: {};
@@ -406,7 +406,7 @@ declare const deliveryUpdatePayloadSchema: z.ZodObject<{
406
406
  supplierId: z.ZodOptional<z.ZodInt>;
407
407
  warehouseId: z.ZodOptional<z.ZodInt>;
408
408
  currencyId: z.ZodOptional<z.ZodInt>;
409
- notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
409
+ exchangeRateId: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
410
410
  deliveryId: z.ZodInt;
411
411
  }, {
412
412
  out: {};
@@ -491,7 +491,6 @@ declare const deliverySearchItemSchema: z.ZodObject<{
491
491
  posted: "posted";
492
492
  reversed: "reversed";
493
493
  }>;
494
- notes: z.ZodNullable<z.ZodString>;
495
494
  exchangeRateId: z.ZodNullable<z.ZodInt>;
496
495
  exchangeRate: z.ZodNullable<z.ZodString>;
497
496
  exchangeRateValidFromDate: z.ZodNullable<z.ZodISODate>;
@@ -718,7 +717,6 @@ declare const deliveryDetailsSchema: z.ZodObject<{
718
717
  posted: "posted";
719
718
  reversed: "reversed";
720
719
  }>;
721
- notes: z.ZodNullable<z.ZodString>;
722
720
  exchangeRateId: z.ZodNullable<z.ZodInt>;
723
721
  exchangeRate: z.ZodNullable<z.ZodString>;
724
722
  exchangeRateValidFromDate: z.ZodNullable<z.ZodISODate>;
@@ -1288,7 +1286,6 @@ declare const deliverySchema: z.ZodObject<{
1288
1286
  posted: "posted";
1289
1287
  reversed: "reversed";
1290
1288
  }>;
1291
- notes: z.ZodNullable<z.ZodString>;
1292
1289
  exchangeRateId: z.ZodNullable<z.ZodInt>;
1293
1290
  exchangeRate: z.ZodNullable<z.ZodString>;
1294
1291
  exchangeRateValidFromDate: z.ZodNullable<z.ZodISODate>;