@formigio/fazemos-cli 0.10.31 → 0.10.32

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/index.js CHANGED
@@ -16,6 +16,7 @@ import { execSync } from 'child_process';
16
16
  import { registerPauseCommands } from './pause.js';
17
17
  import { registerBudgetCommands } from './budget.js';
18
18
  import { registerTriggerCommands } from './trigger.js';
19
+ import { registerWakeCommands } from './wake.js';
19
20
  import { parseExecutionsJson, resolveWaitOptions, waitForPipelines, buildAwsCommand, validateExecutionEntry, } from './wait-for-pipeline.js';
20
21
  import { readFileSync, readdirSync, writeFileSync, mkdirSync, existsSync, statSync } from 'fs';
21
22
  import { fileURLToPath } from 'url';
@@ -8750,6 +8751,13 @@ registerBudgetCommands(program);
8750
8751
  // writes are org+project level (noProjectHeader: true on all calls).
8751
8752
  // admin/owner required for fire-now/disable/enable; member for list/status.
8752
8753
  registerTriggerCommands(program);
8754
+ // ── F36 — Inbox Auto-Wake: wake status/disable/enable ────────────────────────
8755
+ // Registers `wake` top-level command with status, disable, and enable
8756
+ // sub-commands. Project-scoped reads (project_id query param);
8757
+ // writes are org+project level (noProjectHeader: true on all calls).
8758
+ // admin/owner required for disable/enable; any active member for status.
8759
+ // No cadence dimension — wake_disables is UNIQUE(org_id, role), no cadence.
8760
+ registerWakeCommands(program);
8753
8761
  // Skip auto-parse only when running under Vitest (which sets process.env.VITEST).
8754
8762
  // Tests import `program` and drive it via `program.parseAsync(...)` after mocking
8755
8763
  // `./api.js`. In every other context — direct invocation, npx tsx, OR the bin