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
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
76
77
77
// Table feature limits (per plan). Apply when billing is disabled (free tier defaults) or for billed plans.
78
-
FREE_TABLES_LIMIT: z.number().optional(),// Max user tables per workspace on free tier (default: 3)
79
-
FREE_TABLE_ROWS_LIMIT: z.number().optional(),// Max rows per table on free tier (default: 1000)
80
-
PRO_TABLES_LIMIT: z.number().optional(),// Max user tables per workspace on pro tier (default: 25)
81
-
PRO_TABLE_ROWS_LIMIT: z.number().optional(),// Max rows per table on pro tier (default: 5000)
82
-
TEAM_TABLES_LIMIT: z.number().optional(),// Max user tables per workspace on team tier (default: 100)
83
-
TEAM_TABLE_ROWS_LIMIT: z.number().optional(),// Max rows per table on team tier (default: 10000)
78
+
FREE_TABLES_LIMIT: z.number().optional(),// Max user tables per workspace on free tier (default: 5)
79
+
FREE_TABLE_ROWS_LIMIT: z.number().optional(),// Max rows per table on free tier (default: 50000)
80
+
PRO_TABLES_LIMIT: z.number().optional(),// Max user tables per workspace on pro tier (default: 100)
81
+
PRO_TABLE_ROWS_LIMIT: z.number().optional(),// Max rows per table on pro tier (default: 100000)
82
+
TEAM_TABLES_LIMIT: z.number().optional(),// Max user tables per workspace on team tier (default: 1000)
83
+
TEAM_TABLE_ROWS_LIMIT: z.number().optional(),// Max rows per table on team tier (default: 500000)
84
84
ENTERPRISE_TABLES_LIMIT: z.number().optional(),// Max user tables per workspace on enterprise tier (default: 10000)
85
85
ENTERPRISE_TABLE_ROWS_LIMIT: z.number().optional(),// Max rows per table on enterprise tier (default: 1000000)
0 commit comments