@helpai/elements 0.22.0 → 0.23.0
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/configurator.mjs +4 -1
- package/elements-web-component.esm.js +27 -27
- package/elements-web-component.esm.js.map +3 -3
- package/elements.cjs.js +27 -27
- package/elements.cjs.js.map +3 -3
- package/elements.esm.js +27 -27
- package/elements.esm.js.map +3 -3
- package/elements.js +27 -27
- package/elements.js.map +3 -3
- package/index.d.ts +21 -6
- package/index.mjs +72 -18
- package/package.json +1 -1
- package/schema.d.ts +50 -49
- package/schema.json +10 -0
- package/schema.mjs +4 -1
- package/style.css +1 -1
- package/web-component.mjs +71 -18
package/configurator.mjs
CHANGED
|
@@ -568,7 +568,10 @@ import { z as z15 } from "zod";
|
|
|
568
568
|
var trackingSchema = z15.object({
|
|
569
569
|
enabled: z15.boolean().optional().describe("Master switch. Default `false` \u2014 no hits are sent until the deployment turns tracking on."),
|
|
570
570
|
endpoint: z15.url().max(2048).optional().describe("Pixel collector URL. Default: `https://t.<brand domain>/api/ai-elements/px.gif`. Must be a full URL."),
|
|
571
|
-
sampleRate: z15.number().min(0).max(1).optional().describe("Per-visitor sampling 0..1 (decided once per page load, keeping funnels intact). Default `1`.")
|
|
571
|
+
sampleRate: z15.number().min(0).max(1).optional().describe("Per-visitor sampling 0..1 (decided once per page load, keeping funnels intact). Default `1`."),
|
|
572
|
+
token: z15.string().max(512).optional().describe(
|
|
573
|
+
"Anti-forgery token, echoed as `tk=` on every hit. Server-issued in the `/start-conversation` response \u2014 never set by hand (see `docs/api/tracking-collector.md`)."
|
|
574
|
+
)
|
|
572
575
|
}).loose().describe(
|
|
573
576
|
"Anonymous usage tracking for the widget owner \u2014 GA-style pixel events (open, send, form submit, \u2026) with page / device / locale dimensions. Never includes message content; visitors are identified only by the widget's anonymous visitorId."
|
|
574
577
|
).meta({
|