@creator.co/analytics-kysely-types 1.0.5 → 1.0.7

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 CHANGED
@@ -24,7 +24,6 @@ export type AnalyticsWidget = {
24
24
  view_id: number;
25
25
  created_at: Generated<Timestamp>;
26
26
  updated_at: Timestamp | null;
27
- analyticsViewId: number;
28
27
  };
29
28
  export type DB = {
30
29
  analytics_view: AnalyticsView;
package/kyselyJson.d.ts CHANGED
@@ -1,13 +1,13 @@
1
1
  import { ColumnType } from 'kysely'
2
2
 
3
- export type Json = ColumnType<JsonValue, string, string>;
3
+ export type Json = ColumnType<JsonValue, string, string>
4
4
 
5
- export type JsonArray = JsonValue[];
5
+ export type JsonArray = JsonValue[]
6
6
 
7
7
  export type JsonObject = {
8
- [K in string]?: JsonValue;
9
- };
8
+ [K in string]?: JsonValue
9
+ }
10
10
 
11
- export type JsonPrimitive = boolean | number | string | null;
11
+ export type JsonPrimitive = boolean | number | string | null
12
12
 
13
- export type JsonValue = JsonArray | JsonObject | JsonPrimitive;
13
+ export type JsonValue = JsonArray | JsonObject | JsonPrimitive
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/analytics-kysely-types",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "types": "./index.d.ts",
5
5
  "type": "module",
6
6
  "devDependencies": {