@likewatt/models 1.42.0 → 1.43.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.
@@ -52,6 +52,7 @@ export declare class LeadTenant {
52
52
  scenarioOptions: string[];
53
53
  isActive: boolean;
54
54
  limits?: LeadTenantLimits;
55
+ email: string[];
55
56
  }
56
57
  export declare const LeadTenantSchema: import("mongoose").Schema<LeadTenant, import("mongoose").Model<LeadTenant, any, any, any, Document<unknown, any, LeadTenant, any, {}> & LeadTenant & Required<{
57
58
  _id: string;
@@ -121,6 +121,10 @@ __decorate([
121
121
  (0, mongoose_1.Prop)({ type: exports.LeadTenantLimitsSchema }),
122
122
  __metadata("design:type", LeadTenantLimits)
123
123
  ], LeadTenant.prototype, "limits", void 0);
124
+ __decorate([
125
+ (0, mongoose_1.Prop)({ type: [String], default: [] }),
126
+ __metadata("design:type", Array)
127
+ ], LeadTenant.prototype, "email", void 0);
124
128
  exports.LeadTenant = LeadTenant = __decorate([
125
129
  (0, mongoose_1.Schema)({
126
130
  id: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@likewatt/models",
3
- "version": "1.42.0",
3
+ "version": "1.43.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {