@ecogood/e-calculator-schemas 2.7.23 → 2.7.24

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.
@@ -1,7 +1,8 @@
1
1
  import { z } from 'zod';
2
2
  export declare enum Currency {
3
3
  EUR = "EUR",
4
- USD = "USD"
4
+ USD = "USD",
5
+ CHF = "CHF"
5
6
  }
6
7
  export declare const GeneralInformationSchema: z.ZodObject<{
7
8
  company: z.ZodObject<{
@@ -20,6 +20,7 @@ var Currency;
20
20
  (function (Currency) {
21
21
  Currency["EUR"] = "EUR";
22
22
  Currency["USD"] = "USD";
23
+ Currency["CHF"] = "CHF";
23
24
  })(Currency || (exports.Currency = Currency = {}));
24
25
  exports.GeneralInformationSchema = zod_1.z.object({
25
26
  company: CompanySchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecogood/e-calculator-schemas",
3
- "version": "2.7.23",
3
+ "version": "2.7.24",
4
4
  "description": "A package providing the schemas for the e-calculator application.",
5
5
  "main": "dist/e-calculator-schemas",
6
6
  "types": "dist/e-calculator-schemas",