diff --git a/apps/bridge/src/shared/schemas/wafir-config.ts b/apps/bridge/src/shared/schemas/wafir-config.ts index 3945cf0..3a1c02d 100644 --- a/apps/bridge/src/shared/schemas/wafir-config.ts +++ b/apps/bridge/src/shared/schemas/wafir-config.ts @@ -197,27 +197,6 @@ export const wafirConfigSchema = { additionalProperties: false, }, }, - telemetry: { - type: "object", - description: "Automatic data collection settings", - properties: { - screenshot: { - type: "boolean", - default: true, - description: "Enable screenshot capture", - }, - browserInfo: { - type: "boolean", - default: true, - description: "Collect URL, user agent, viewport, language", - }, - consoleLog: { - type: "boolean", - default: false, - description: "Capture console messages", - }, - }, - }, forms: { type: "array", items: formSchema, diff --git a/apps/bridge/src/shared/utils/config-validator.ts b/apps/bridge/src/shared/utils/config-validator.ts index 4cc1498..44e2107 100644 --- a/apps/bridge/src/shared/utils/config-validator.ts +++ b/apps/bridge/src/shared/utils/config-validator.ts @@ -14,11 +14,6 @@ const DEFAULT_CONFIG: WafirConfig = { authRef: "", }, ], - telemetry: { - screenshot: true, - browserInfo: true, - consoleLog: false, - }, forms: [ { id: "feedback", diff --git a/examples/full-featured/wafir.yaml b/examples/full-featured/wafir.yaml index 15a0235..28d9350 100644 --- a/examples/full-featured/wafir.yaml +++ b/examples/full-featured/wafir.yaml @@ -10,13 +10,6 @@ targets: target: your-username/your-repo authRef: "YOUR_INSTALLATION_ID" # Replace with your installation ID -# Note: The telemetry section is deprecated. Use autofill fields instead for user opt-in. -# Legacy telemetry config is still supported for backward compatibility. -# telemetry: -# screenshot: true -# browserInfo: true -# consoleLog: true - forms: - id: feedback label: "Product Feedback"