@transcend-io/contact-form-schema
Advanced tools
Comparing version 3.0.0 to 3.1.0
@@ -114,2 +114,4 @@ import { z } from 'zod'; | ||
pardotVisitorId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>; | ||
/** Koala cookie, ko_id */ | ||
koalaId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>; | ||
/** The user's existing anonymousId from Segment */ | ||
@@ -135,2 +137,3 @@ anonymousId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>; | ||
pardotVisitorId?: string | undefined; | ||
koalaId?: string | undefined; | ||
anonymousId?: string | undefined; | ||
@@ -149,2 +152,3 @@ utm_source?: string | undefined; | ||
pardotVisitorId?: string | undefined; | ||
koalaId?: string | undefined; | ||
anonymousId?: string | undefined; | ||
@@ -260,2 +264,4 @@ utm_source?: string | undefined; | ||
pardotVisitorId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>; | ||
/** Koala cookie, ko_id */ | ||
koalaId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>; | ||
/** The user's existing anonymousId from Segment */ | ||
@@ -281,2 +287,3 @@ anonymousId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>; | ||
pardotVisitorId?: string | undefined; | ||
koalaId?: string | undefined; | ||
anonymousId?: string | undefined; | ||
@@ -295,2 +302,3 @@ utm_source?: string | undefined; | ||
pardotVisitorId?: string | undefined; | ||
koalaId?: string | undefined; | ||
anonymousId?: string | undefined; | ||
@@ -297,0 +305,0 @@ utm_source?: string | undefined; |
@@ -9,3 +9,3 @@ import DOMPurify from 'isomorphic-dompurify'; | ||
*/ | ||
const CONTACT_FORM_VERSION = '3.0.0'; | ||
const CONTACT_FORM_VERSION = '3.1.0'; | ||
/** | ||
@@ -101,2 +101,4 @@ * Sanitize inputs to prevent XSS | ||
pardotVisitorId: SanitizedString.optional(), | ||
/** Koala cookie, ko_id */ | ||
koalaId: SanitizedString.optional(), | ||
/** The user's existing anonymousId from Segment */ | ||
@@ -103,0 +105,0 @@ anonymousId: SanitizedString.optional(), |
{ | ||
"name": "@transcend-io/contact-form-schema", | ||
"type": "module", | ||
"version": "3.0.0", | ||
"version": "3.1.0", | ||
"description": "Schema for the marketing contact form.", | ||
@@ -6,0 +6,0 @@ "license": "UNLICENSED", |
@@ -9,3 +9,3 @@ import DOMPurify from 'isomorphic-dompurify'; | ||
*/ | ||
export const CONTACT_FORM_VERSION: string = '3.0.0'; | ||
export const CONTACT_FORM_VERSION: string = '3.1.0'; | ||
@@ -122,2 +122,5 @@ /** | ||
/** Koala cookie, ko_id */ | ||
koalaId: SanitizedString.optional(), | ||
/** The user's existing anonymousId from Segment */ | ||
@@ -124,0 +127,0 @@ anonymousId: SanitizedString.optional(), |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
65428
678