You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/sim/lib/core/config/env.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,7 @@ export const env = createEnv({
73
73
FREE_API_DEPLOYMENT_GATE_ENABLED: z.boolean().optional(),// Block free-plan accounts from programmatic execution (API/MCP/A2A/generic webhooks/chat embeds). Requires BILLING_ENABLED. Off by default for dark rollout
74
74
TABLES_FRACTIONAL_ORDERING: z.boolean().optional(),// Order table rows by fractional order_key (O(1) insert/delete) instead of integer position
75
75
TABLE_SNAPSHOT_CACHE: z.boolean().optional(),// Mount tables into sandboxes by reference via a version-keyed CSV snapshot in object storage instead of draining the whole table into web-process heap
76
+
PII_REDACTION: z.boolean().optional(),// Redact PII from workflow logs via configurable Data Retention rules (Presidio at the logger persist choke point) and expose the Data Retention config UI
76
77
77
78
// Table feature limits (per plan). Apply when billing is disabled (free tier defaults) or for billed plans.
78
79
FREE_TABLES_LIMIT: z.number().optional(),// Max user tables per workspace on free tier (default: 5)
0 commit comments