@esb-market-contracts/backend 1.0.31 → 1.0.32

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 +6 -0
  2. package/package.json +1 -1
  3. package/types.d.ts +1 -0
package/api.d.ts CHANGED
@@ -614,6 +614,12 @@ declare const exchangeRatesRouter: import("hono/hono-base").HonoBase<{
614
614
  name: string;
615
615
  sortOrder: number;
616
616
  }[];
617
+ baseCurrency: {
618
+ id: number;
619
+ code: string;
620
+ name: string;
621
+ sortOrder: number;
622
+ };
617
623
  }>;
618
624
  outputFormat: "json";
619
625
  status: 200;
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.31",
4
+ "version": "1.0.32",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -560,6 +560,7 @@ type ExchangeRateDateSearchResult = {
560
560
  };
561
561
  type CurrencyListResult = {
562
562
  currencies: Currency[];
563
+ baseCurrency: Currency;
563
564
  };
564
565
  //#endregion
565
566
  //#region src/app/domain/(catalog)/products/products.fields.d.ts