@likewatt/models-front 1.64.2 → 1.65.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.
@@ -6,12 +6,20 @@ export type LeadThemeConfig = {
6
6
  sectionBgColor?: string;
7
7
  textColor?: string;
8
8
  };
9
+ export type LeadLimitRule = {
10
+ value: number;
11
+ comparison: string;
12
+ };
13
+ export type LeadTenantLimits = {
14
+ subscribedPowers?: LeadLimitRule;
15
+ };
9
16
  export type LeadTenant = {
10
17
  _id: string;
11
18
  userId: string;
12
19
  subdomain: string;
13
20
  domain: string;
14
21
  theme?: LeadThemeConfig;
22
+ limits?: LeadTenantLimits;
15
23
  scenarioOptions: string[];
16
24
  isActive: boolean;
17
25
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@likewatt/models-front",
3
- "version": "1.64.2",
3
+ "version": "1.65.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",