@likewatt/models 1.50.0 → 1.51.0
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/core/Customer.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/core/Customer.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare class Customer {
|
|
|
14
14
|
email: string;
|
|
15
15
|
sites: string[];
|
|
16
16
|
}
|
|
17
|
-
export type
|
|
17
|
+
export type CustomerDocument = Customer & Document;
|
|
18
18
|
export declare const CustomerSchema: import("mongoose").Schema<Customer, import("mongoose").Model<Customer, any, any, any, Document<unknown, any, Customer, any, {}> & Customer & Required<{
|
|
19
19
|
_id: string;
|
|
20
20
|
}> & {
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -19,6 +19,7 @@ exports.EnedisReportOperationType = exports.EnedisReportAcquisitionMethod = void
|
|
|
19
19
|
__exportStar(require("./core/CollectiveSite"), exports);
|
|
20
20
|
__exportStar(require("./core/Scenario"), exports);
|
|
21
21
|
__exportStar(require("./core/Site"), exports);
|
|
22
|
+
__exportStar(require("./core/Customer"), exports);
|
|
22
23
|
__exportStar(require("./core/Consent"), exports);
|
|
23
24
|
__exportStar(require("./core/User"), exports);
|
|
24
25
|
__exportStar(require("./core/License"), exports);
|