Comparing version 0.15.1 to 0.15.2
@@ -34,2 +34,3 @@ import { z } from 'zod'; | ||
url: z.ZodString; | ||
referrer: z.ZodString; | ||
productId: z.ZodOptional<z.ZodString>; | ||
@@ -55,2 +56,3 @@ tags: z.ZodArray<z.ZodString, "many">; | ||
workspaceId: string; | ||
referrer: string; | ||
tags: string[]; | ||
@@ -77,2 +79,3 @@ userId: string; | ||
workspaceId: string; | ||
referrer: string; | ||
tags: string[]; | ||
@@ -111,2 +114,3 @@ userId: string; | ||
url: z.ZodString; | ||
referrer: z.ZodString; | ||
productId: z.ZodOptional<z.ZodString>; | ||
@@ -129,2 +133,3 @@ tags: z.ZodArray<z.ZodString, "many">; | ||
url: string; | ||
referrer: string; | ||
scrollX: number; | ||
@@ -144,2 +149,3 @@ scrollY: number; | ||
url: string; | ||
referrer: string; | ||
scrollX: number; | ||
@@ -146,0 +152,0 @@ scrollY: number; |
@@ -30,2 +30,3 @@ "use strict"; | ||
url: zod_1.z.string(), // url of the page where the event occurred | ||
referrer: zod_1.z.string(), // referrer url | ||
productId: zod_1.z.string().optional(), // id of the product associated with the event | ||
@@ -32,0 +33,0 @@ tags: zod_1.z.array(zod_1.z.string()), // product tags associated with the event |
{ | ||
"name": "lz-schema", | ||
"version": "0.15.1", | ||
"version": "0.15.2", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "types": "dist/index.d.ts", |
91851
2567