hotsheet 0.20.0-beta.4 → 0.20.0-beta.6
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/dist/channel.js +11 -1
- package/dist/cli.js +2488 -2104
- package/dist/client/app.global.js +1 -1
- package/package.json +2 -1
package/dist/channel.js
CHANGED
|
@@ -10479,7 +10479,17 @@ var GlobalConfigSchema = z2.object({
|
|
|
10479
10479
|
// HS-8781 — verbally announce permission checks (TTS only, no API cost).
|
|
10480
10480
|
// Global; default ON, so `undefined`/unset is treated as enabled by the
|
|
10481
10481
|
// client (`announcerSpeakPermissions !== false`).
|
|
10482
|
-
announcerSpeakPermissions: z2.boolean().optional()
|
|
10482
|
+
announcerSpeakPermissions: z2.boolean().optional(),
|
|
10483
|
+
// HS-8874 — one-time marker that the per-project telemetry migration
|
|
10484
|
+
// (`migratePerProjectTelemetry`) has run. Set after a successful, non-
|
|
10485
|
+
// destructive copy of legacy launch-default telemetry rows into each row's
|
|
10486
|
+
// owning project DB / the central store. Skipped on subsequent startups.
|
|
10487
|
+
telemetryMigratedV1: z2.boolean().optional(),
|
|
10488
|
+
// HS-8877 — retention window (days) for the centralized non-project telemetry
|
|
10489
|
+
// store (`~/.hotsheet/telemetry`). Projects have a per-project
|
|
10490
|
+
// `telemetry_retention_days`; central isn't a project, so its sweep window
|
|
10491
|
+
// lives here. Unset → the §67.6 default (30 days). `0` keeps central forever.
|
|
10492
|
+
centralTelemetryRetentionDays: z2.number().int().min(0).optional()
|
|
10483
10493
|
}).strict();
|
|
10484
10494
|
var PluginActionSchema = z2.object({
|
|
10485
10495
|
actionId: z2.string(),
|