@creator.co/analytics-kysely-types 1.0.22-alpha-6b3aed6 → 1.0.22
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/index.d.ts +11 -11
- package/kyselyJson.d.ts +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -9,23 +9,23 @@ export type AnalyticsView = {
|
|
|
9
9
|
id: GeneratedAlways<number>;
|
|
10
10
|
title: string;
|
|
11
11
|
filters: Json;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
brandId: number;
|
|
13
|
+
createdAt: Generated<Timestamp>;
|
|
14
|
+
updatedAt: Timestamp | null;
|
|
15
15
|
};
|
|
16
16
|
export type AnalyticsWidget = {
|
|
17
17
|
id: GeneratedAlways<number>;
|
|
18
|
-
|
|
18
|
+
defaultTitle: string;
|
|
19
19
|
title: string;
|
|
20
20
|
filters: Json;
|
|
21
21
|
visible: boolean;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
widgetOrder: number;
|
|
23
|
+
componentId: string;
|
|
24
|
+
viewId: number;
|
|
25
|
+
createdAt: Generated<Timestamp>;
|
|
26
|
+
updatedAt: Timestamp | null;
|
|
27
27
|
};
|
|
28
28
|
export type DB = {
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
"analyticsMetadata.analyticsView": AnalyticsView;
|
|
30
|
+
"analyticsMetadata.analyticsWidget": AnalyticsWidget;
|
|
31
31
|
};
|
package/kyselyJson.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@creator.co/analytics-kysely-types",
|
|
3
|
-
"version": "1.0.22
|
|
3
|
+
"version": "1.0.22",
|
|
4
4
|
"types": "./index.d.ts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"devDependencies": {
|
|
7
7
|
"typescript": "^5.2.2"
|
|
8
8
|
},
|
|
9
|
-
"
|
|
10
|
-
"kysely": "^0.
|
|
9
|
+
"peerDependencies": {
|
|
10
|
+
"kysely": "^0.x.x"
|
|
11
11
|
},
|
|
12
12
|
"description": "Kysely types for analytics Database"
|
|
13
13
|
}
|