@likewatt/models-front 1.30.0 → 1.31.1

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/dist/index.d.ts CHANGED
@@ -46,5 +46,6 @@ export * from './site/PeakHour.types';
46
46
  export * from './site/RestOfTheYearTarifs.types';
47
47
  export * from './site/SolarPotential.types';
48
48
  export * from './site/Tarif.types';
49
+ export * from './site/LeadsForm.types';
49
50
  export * from './core/SiteConstants';
50
51
  export * from './common/Comments.types';
package/dist/index.js CHANGED
@@ -65,6 +65,7 @@ __exportStar(require("./site/PeakHour.types"), exports);
65
65
  __exportStar(require("./site/RestOfTheYearTarifs.types"), exports);
66
66
  __exportStar(require("./site/SolarPotential.types"), exports);
67
67
  __exportStar(require("./site/Tarif.types"), exports);
68
+ __exportStar(require("./site/LeadsForm.types"), exports);
68
69
  __exportStar(require("./core/SiteConstants"), exports);
69
70
  // Common exports
70
71
  __exportStar(require("./common/Comments.types"), exports);
@@ -0,0 +1,13 @@
1
+ export interface LeadsForm {
2
+ firstname: string;
3
+ lastname: string;
4
+ email: string;
5
+ phone: string;
6
+ company?: string;
7
+ address: string;
8
+ addressCity: string;
9
+ addressZipCode: string;
10
+ addressDepartement: string;
11
+ addressDepartementNum: number;
12
+ addressGeocode: number[];
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@likewatt/models-front",
3
- "version": "1.30.0",
3
+ "version": "1.31.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",