@demind-inc/core 1.2.46 → 1.2.48
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/constants.d.ts +2 -0
- package/dist/constants.js +2 -0
- package/dist/models/User.d.ts +1 -1
- package/lib/constants.ts +2 -0
- package/lib/models/User.ts +1 -1
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -21,6 +21,8 @@ export declare const DB_COLLECTION: {
|
|
|
21
21
|
DATA_TREND_ENERGY: string;
|
|
22
22
|
DATA_TREND_TASK: string;
|
|
23
23
|
DATA_TREND_EVENT: string;
|
|
24
|
+
DEVICE_GROUP: string;
|
|
25
|
+
DEVICES: string;
|
|
24
26
|
};
|
|
25
27
|
export declare const SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[];
|
|
26
28
|
export declare const AVAILABLE_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[];
|
package/dist/constants.js
CHANGED
package/dist/models/User.d.ts
CHANGED
package/lib/constants.ts
CHANGED
|
@@ -22,6 +22,8 @@ export const DB_COLLECTION = {
|
|
|
22
22
|
DATA_TREND_ENERGY: "energy",
|
|
23
23
|
DATA_TREND_TASK: "task",
|
|
24
24
|
DATA_TREND_EVENT: "event",
|
|
25
|
+
DEVICE_GROUP: "deviceGroup",
|
|
26
|
+
DEVICES: "devices",
|
|
25
27
|
};
|
|
26
28
|
|
|
27
29
|
export const SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[] = [
|
package/lib/models/User.ts
CHANGED