@iotready/nextjs-components-library 1.0.0-preview2 → 1.0.0-preview21

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.
@@ -0,0 +1,24 @@
1
+ export type FirebaseConfig = {
2
+ apiKey: string;
3
+ authDomain: string;
4
+ projectId: string;
5
+ storageBucket: string;
6
+ messagingSenderId: string;
7
+ appId: string;
8
+ };
9
+ export type InfluxConfig = {
10
+ url: string;
11
+ accessToken: string;
12
+ bucket: string;
13
+ orgId: string;
14
+ measurement: string;
15
+ dbName: string;
16
+ username: string;
17
+ password: string;
18
+ };
19
+ export declare enum FilterTagMode {
20
+ Include = "include",// include tag + quelli senza tag
21
+ Exclude = "exclude",// esclude il tag
22
+ DW = "dw"
23
+ }
24
+ export type InfluxFillType = "null" | "none" | "previous";
@@ -0,0 +1,6 @@
1
+ export var FilterTagMode;
2
+ (function (FilterTagMode) {
3
+ FilterTagMode["Include"] = "include";
4
+ FilterTagMode["Exclude"] = "exclude";
5
+ FilterTagMode["DW"] = "dw"; // solo esattamente quel tag
6
+ })(FilterTagMode || (FilterTagMode = {}));
package/types/user.d.ts CHANGED
@@ -4,6 +4,7 @@ export type UserType = {
4
4
  name: string;
5
5
  picture?: string;
6
6
  role: string;
7
+ demo?: any;
7
8
  lastSignInAt?: number;
8
9
  firstname?: string;
9
10
  lastname?: string;