@quantiya/codevibe-codex-plugin 2.0.6 → 2.0.8
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/README.md +20 -23
- package/dist/server.js +21 -21
- package/hooks/common.sh +506 -19
- package/{bin/codevibe-codex → libexec/companion-launcher} +37 -76
- package/node_modules/@quantiya/codevibe-core/README.md +7 -5
- package/node_modules/@quantiya/codevibe-core/dist/agy-cli-contract.d.ts +14 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/appsync-client.d.ts +229 -61
- package/node_modules/@quantiya/codevibe-core/dist/appsync/event-throttle.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/index.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/appsync/queries.d.ts +6 -2
- package/node_modules/@quantiya/codevibe-core/dist/auth/auth-telemetry.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/dist/auth/keychain-cli.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/auth/vendor-key-cli.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/index.d.ts +50 -22
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/persist-preference.d.ts +1 -5
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/resolve-agent.d.ts +5 -4
- package/node_modules/@quantiya/codevibe-core/dist/config/config.d.ts +0 -5
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/__tests__/oauth-refresh.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/__tests__/upstream-result-helpers.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/broker.d.ts +196 -12
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/chatgpt-config.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/index.d.ts +4 -1
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-account-lock.d.ts +150 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-refresh.d.ts +72 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/types.d.ts +165 -17
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/upstream-client.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/vendor-key-store.d.ts +32 -1
- package/node_modules/@quantiya/codevibe-core/dist/crypto/__tests__/encrypt-for-emit.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/__tests__/open-prompt-id.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/encrypt-for-emit.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/index.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/open-prompt-id.d.ts +36 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/__tests__/process-guards.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/process-guards.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/__tests__/prompt-raise.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/prompt-raise.d.ts +65 -0
- package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +20 -2
- package/node_modules/@quantiya/codevibe-core/dist/index.js +4543 -288
- package/node_modules/@quantiya/codevibe-core/dist/keychain/__tests__/keychain-manager.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/__tests__/keychain-migrate.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-backend.d.ts +105 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-manager.d.ts +40 -5
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-migrate.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/anchored-fs.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/bounded-directory.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/bounded-output.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/durable-directory.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/hosted-class-a-sink.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/process-identity.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/process-tree.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/publication-authority-capability.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/reviewer-rationale-flag.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/snapshot-merge.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-authority-fixture.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-authority.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-materializer.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/agentic-disposable-repo.d.ts +23 -6
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/agentic-resolve.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/anchored-fs.d.ts +243 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-directory.d.ts +64 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-helper.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-output.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/class-a-emit.d.ts +13 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/class-a-sign.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/durable-directory.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/durable-store.d.ts +217 -25
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/group-decision-outcome.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/hosted-class-a-sink.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/implementor-argv.d.ts +89 -7
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/index.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/local-executor-impl.d.ts +177 -76
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/merge-conflict-resolve.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/process-identity.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/process-tree.d.ts +123 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/revert-reconcile.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/revert-runner.d.ts +14 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/reviewer-rationale-flag.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/snapshot-merge.d.ts +124 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/task-group-types.d.ts +7 -6
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/team-execution-flag.d.ts +2 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/track-registry.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/types.d.ts +34 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/build.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/deploy-preflight.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/diff-sanity.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/hostile-grep.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/lint.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/shell-runner.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/source-traceability.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/tests.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/typecheck.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-runner.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-authority.d.ts +45 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-materializer.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-shadow.d.ts +378 -85
- package/node_modules/@quantiya/codevibe-core/dist/local-model/manager.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/__tests__/detect-agents.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/detect-agents.d.ts +10 -30
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/index.d.ts +1 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a1a-planner-offers.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a6-cli-surface.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-attachment-journal.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-attachments-dir-race.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-multi-mention-panel.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-panel-attachments.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-quota-stdout-result.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/agent-turn-context-batch.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/bounded-shutdown.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cli-team-session-key.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/command-intent.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-compaction.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-hosted-sync.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-full-team-events.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-team-decomposed-zk.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/explicit-tty-exit.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/mention-suggest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/planner-offer-e1.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/route-browse-summarize-recovery.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/workspace-shutdown.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/advisory-attachment-journal.d.ts +165 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/attachments.d.ts +53 -8
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/bounded-shutdown.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/brainstorm-quorum.d.ts +118 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +97 -70
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +51847 -33465
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/command-intent.d.ts +56 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/InputBar.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/OrchestrationApp.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-compaction.d.ts +264 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items-hosted-sync.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items.d.ts +408 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-store.d.ts +162 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/declared-test-runner.d.ts +21 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/emit-shell-event.d.ts +41 -13
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/explicit-tty-exit.d.ts +17 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/gate-decision-submit.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/gate-prompts.d.ts +78 -3
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +309 -37
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mention-suggest.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mode-selection.d.ts +4 -22
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/planner-offer-e1.d.ts +97 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +603 -77
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/reducer.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/task-progress.d.ts +17 -4
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/team-decompose.d.ts +47 -29
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +103 -6
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/workspace-shutdown.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-advisory.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-gemma.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/types.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/index.d.ts +0 -2
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/output-parser.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/provider.d.ts +9 -6
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/antigravity.d.ts +2 -3
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/registry.d.ts +9 -4
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/token-usage.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/types.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/verdict-classifier.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/device-registration-lease.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/pending-session-create.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-rekey-fingerprint.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-key-reconciliation.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-pending-first.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/device-key-watcher.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/index.d.ts +4 -2
- package/node_modules/@quantiya/codevibe-core/dist/session/pending-session-create.d.ts +61 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/register-device-key.d.ts +11 -1
- package/node_modules/@quantiya/codevibe-core/dist/session/session-rekey.d.ts +8 -8
- package/node_modules/@quantiya/codevibe-core/dist/session/session-resume.d.ts +21 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate/command-runner.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate/docker.d.ts +14 -32
- package/node_modules/@quantiya/codevibe-core/dist/substrate/index.d.ts +0 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate/sandbox-exec.d.ts +17 -16
- package/node_modules/@quantiya/codevibe-core/dist/substrate/types.d.ts +39 -5
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/__tests__/reviewer-credential-preflight.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/apikey-bootstrap.d.ts +24 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/engage-substrate.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/reviewer-credential-preflight.d.ts +50 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/sanitized-env.d.ts +5 -5
- package/node_modules/@quantiya/codevibe-core/dist/test-publication-authority-setup.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/consolidator.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/digest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/flock-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/ledger.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/outbox.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/replay-cursor.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/session-map.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/socket-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/atomic-file.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/consolidator.d.ts +253 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/digest.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/flock-rollout-lock.d.ts +68 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/index.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/ledger.d.ts +274 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/outbox.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/replay-cursor.d.ts +190 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/session-map.d.ts +133 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/socket-rollout-lock.d.ts +57 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +368 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/encryption.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/events.d.ts +29 -4
- package/node_modules/@quantiya/codevibe-core/dist/types/session.d.ts +32 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/README.md +207 -163
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/bin/uuid +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/{esm-node → esm}/index.js +9 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.js +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.js +83 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.js +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.js +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.js +9 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.js +113 -193
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.js +1 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.js +6 -32
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.js +6 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.js +62 -88
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.js +27 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.js +78 -90
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.js +30 -57
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.js +21 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.js +2 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.js +5 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/package.json +73 -76
- package/node_modules/@quantiya/codevibe-core/package.json +7 -6
- package/node_modules/fs-ext/.eslintrc +53 -0
- package/node_modules/fs-ext/.github/workflows/node.js.yml +31 -0
- package/node_modules/fs-ext/.travis.yml +25 -0
- package/node_modules/fs-ext/LICENSE.txt +18 -0
- package/node_modules/fs-ext/README.md +130 -0
- package/node_modules/fs-ext/appveyor.yml +20 -0
- package/node_modules/fs-ext/binding.gyp +11 -0
- package/node_modules/fs-ext/build/Makefile +347 -0
- package/node_modules/fs-ext/build/Release/.deps/Release/fs_ext.node.d +1 -0
- package/node_modules/fs-ext/build/Release/.deps/Release/obj.target/fs_ext/fs-ext.o.d +165 -0
- package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
- package/node_modules/fs-ext/build/Release/obj.target/fs_ext/fs-ext.o +0 -0
- package/node_modules/fs-ext/build/binding.Makefile +6 -0
- package/node_modules/fs-ext/build/config.gypi +504 -0
- package/node_modules/fs-ext/build/fs_ext.target.mk +183 -0
- package/node_modules/fs-ext/build/gyp-mac-tool +768 -0
- package/node_modules/fs-ext/example.js +57 -0
- package/node_modules/fs-ext/fs-ext.cc +622 -0
- package/node_modules/fs-ext/fs-ext.js +131 -0
- package/node_modules/fs-ext/package.json +42 -0
- package/node_modules/fs-ext/run_tests.js +17 -0
- package/node_modules/fs-ext/tests/test-fs-fcntl.js +350 -0
- package/node_modules/fs-ext/tests/test-fs-flock.js +452 -0
- package/node_modules/fs-ext/tests/test-fs-flock_stress.js +239 -0
- package/node_modules/fs-ext/tests/test-fs-seek.js +607 -0
- package/node_modules/fs-ext/tests/test-fs-seek_stress.js +313 -0
- package/node_modules/fs-ext/tests/test-fs-statvfs.js +15 -0
- package/node_modules/fs-ext/tests/worker-test.js +56 -0
- package/node_modules/fs-ext/wscript +15 -0
- package/node_modules/nan/.github/workflows/ci.yml +46 -0
- package/node_modules/nan/.pre-commit-config.yaml +8 -0
- package/node_modules/nan/CHANGELOG.md +605 -0
- package/node_modules/nan/CMakeLists.txt +138 -0
- package/node_modules/nan/LICENSE.md +9 -0
- package/node_modules/nan/README.md +457 -0
- package/node_modules/nan/doc/asyncworker.md +146 -0
- package/node_modules/nan/doc/buffers.md +54 -0
- package/node_modules/nan/doc/callback.md +76 -0
- package/node_modules/nan/doc/converters.md +41 -0
- package/node_modules/nan/doc/errors.md +226 -0
- package/node_modules/nan/doc/json.md +62 -0
- package/node_modules/nan/doc/maybe_types.md +583 -0
- package/node_modules/nan/doc/methods.md +689 -0
- package/node_modules/nan/doc/new.md +147 -0
- package/node_modules/nan/doc/node_misc.md +123 -0
- package/node_modules/nan/doc/object_wrappers.md +263 -0
- package/node_modules/nan/doc/persistent.md +296 -0
- package/node_modules/nan/doc/scopes.md +73 -0
- package/node_modules/nan/doc/script.md +58 -0
- package/node_modules/nan/doc/string_bytes.md +81 -0
- package/node_modules/nan/doc/v8_internals.md +211 -0
- package/node_modules/nan/doc/v8_misc.md +85 -0
- package/node_modules/nan/include_dirs.js +1 -0
- package/node_modules/nan/nan.h +3202 -0
- package/node_modules/nan/nan_callbacks.h +141 -0
- package/node_modules/nan/nan_callbacks_12_inl.h +730 -0
- package/node_modules/nan/nan_callbacks_pre_12_inl.h +528 -0
- package/node_modules/nan/nan_converters.h +72 -0
- package/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/node_modules/nan/nan_implementation_12_inl.h +446 -0
- package/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/node_modules/nan/nan_json.h +166 -0
- package/node_modules/nan/nan_maybe_43_inl.h +360 -0
- package/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/node_modules/nan/nan_new.h +340 -0
- package/node_modules/nan/nan_object_wrap.h +156 -0
- package/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/node_modules/nan/nan_private.h +73 -0
- package/node_modules/nan/nan_scriptorigin.h +97 -0
- package/node_modules/nan/nan_string_bytes.h +305 -0
- package/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/node_modules/nan/nan_weak.h +453 -0
- package/node_modules/nan/package.json +38 -0
- package/node_modules/nan/tools/1to2.js +412 -0
- package/node_modules/nan/tools/README.md +14 -0
- package/node_modules/nan/tools/package.json +19 -0
- package/package.json +5 -5
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/orchestration-cli.d.ts +0 -12
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-bootstrap.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-failure-recourse.d.ts +0 -23
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-save.d.ts +0 -47
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-seat-picker.d.ts +0 -72
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-telemetry.d.ts +0 -54
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-test-agents.d.ts +0 -108
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-types.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-wizard.d.ts +0 -57
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cohort-flag.d.ts +0 -16
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/gemini.d.ts +0 -109
- package/node_modules/@quantiya/codevibe-core/dist/substrate/git-proxy.d.ts +0 -35
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CONTRIBUTING.md +0 -18
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/md5.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/parse.js +0 -35
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/regex.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/rng.js +0 -12
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/sha1.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/stringify.js +0 -33
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v1.js +0 -95
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v35.js +0 -66
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v4.js +0 -29
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/validate.js +0 -7
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/version.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5-browser.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng.js +0 -24
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/uuid-bin.js +0 -85
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/wrapper.mjs +0 -10
- /package/node_modules/@quantiya/codevibe-core/dist/{companion-mode/__tests__/detect-parallel.test.d.ts → appsync/__tests__/appsync-client-context-items.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration-shell/__tests__/cli-stub-session-adapter.test.d.ts → appsync/__tests__/heartbeat-active.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-bootstrap.test.d.ts → appsync/__tests__/orphan-sweep-null-heartbeat.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-failure-recourse.test.d.ts → appsync/__tests__/refresh-open-prompt-ttl-chunk.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-save.test.d.ts → auth/__tests__/keychain-cli.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-seat-picker.test.d.ts → auth/__tests__/vendor-key-cli.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-telemetry.test.d.ts → companion-mode/__tests__/mode-selected-emit.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-test-agents.test.d.ts → companion-mode/__tests__/private-launcher-detection.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-types.test.d.ts → companion-mode/__tests__/private-launcher-path.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-wizard.test.d.ts → credential-broker/__tests__/broker-c4.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini-live-smoke.test.d.ts → credential-broker/__tests__/broker-streaming.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini.test.d.ts → credential-broker/__tests__/chatgpt-config.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{substrate/__tests__/git-proxy.test.d.ts → credential-broker/__tests__/oauth-account-lock.test.d.ts} +0 -0
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { DetectableAgent } from '../orchestration/detect-agents';
|
|
2
2
|
import type { ShellEventEmit } from '../orchestration-shell/emit-shell-event';
|
|
3
3
|
import type { Session } from '../types';
|
|
4
|
+
import { type CompanionActivationAgent } from '../auth/auth-telemetry';
|
|
5
|
+
type ActiveCompanionAgent = Exclude<DetectableAgent, 'GEMINI'>;
|
|
4
6
|
export declare class NoAgentInstalledError extends Error {
|
|
5
7
|
constructor(message: string);
|
|
6
8
|
}
|
|
7
9
|
export interface CompanionArgs {
|
|
8
10
|
/** Optional `--agent <kind>` CLI override. */
|
|
9
|
-
agent?:
|
|
10
|
-
/** Args to pass through to the
|
|
11
|
+
agent?: ActiveCompanionAgent;
|
|
12
|
+
/** Args to pass through to the private Companion launcher. */
|
|
11
13
|
passthrough: string[];
|
|
12
|
-
/** When set, clears the persisted preference before resolving. */
|
|
13
|
-
forgetAgent?: boolean;
|
|
14
14
|
/**
|
|
15
15
|
* Session context for §3 emitShellEvent fan-out. When provided
|
|
16
16
|
* together with `emitter`, MODE_SELECTED is emitted before the exec
|
|
17
17
|
* handoff. When either is omitted, the emit is skipped — Companion
|
|
18
|
-
* Mode is functional without it because the
|
|
19
|
-
*
|
|
18
|
+
* Mode is functional without it because the MODE_SELECTED emit is a
|
|
19
|
+
* best-effort audit, not load-bearing for the mode. Per Stage 1 r1 HIGH-3.
|
|
20
20
|
*/
|
|
21
21
|
session?: Session;
|
|
22
22
|
/**
|
|
@@ -24,33 +24,61 @@ export interface CompanionArgs {
|
|
|
24
24
|
* Required for the MODE_SELECTED emit when `session` is also set.
|
|
25
25
|
*/
|
|
26
26
|
emitter?: (args: ShellEventEmit) => Promise<void>;
|
|
27
|
-
/** Test seam — override the
|
|
28
|
-
|
|
27
|
+
/** Test seam — override the blocking private-launcher handoff. */
|
|
28
|
+
spawnFile?: (binPath: string, args: string[], options: {
|
|
29
29
|
stdio: 'inherit';
|
|
30
|
-
}) =>
|
|
30
|
+
}) => CompanionProcessResult;
|
|
31
|
+
/** Test seam — production re-signals this process when the child dies by signal. */
|
|
32
|
+
signalSelf?: (signal: NodeJS.Signals) => void;
|
|
31
33
|
/** Test seam — override `detectInstalledAgents`. */
|
|
32
34
|
detect?: () => DetectableAgent[];
|
|
33
|
-
/** Test seam — override
|
|
34
|
-
|
|
35
|
+
/** Test seam — override the plugin-private launcher resolver. */
|
|
36
|
+
resolveLauncherPath?: (kind: ActiveCompanionAgent) => string | null;
|
|
35
37
|
/**
|
|
36
|
-
* Test seam —
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
* MEDIUM-2.
|
|
38
|
+
* Test seam — observe/suppress the best-effort activation-funnel beacon.
|
|
39
|
+
* The promise is awaited before the blocking launcher handoff so transport
|
|
40
|
+
* gets its bounded opportunity to complete.
|
|
40
41
|
*/
|
|
41
|
-
|
|
42
|
+
emitActivation?: (agent: CompanionActivationAgent) => void | Promise<void>;
|
|
42
43
|
}
|
|
44
|
+
export interface CompanionProcessResult {
|
|
45
|
+
status: number | null;
|
|
46
|
+
signal: NodeJS.Signals | null;
|
|
47
|
+
error?: Error;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Resolve the launcher's package-owned private entrypoint. Package manifests
|
|
51
|
+
* declare `codevibe.companionLauncher`; the resolved real path must remain
|
|
52
|
+
* inside the real package root and be an executable regular file. This avoids
|
|
53
|
+
* both PATH alias dependency and a manifest path traversal/symlink escape.
|
|
54
|
+
*/
|
|
55
|
+
export declare function resolveDeclaredCompanionLauncher(packageJsonPath: string): string | null;
|
|
56
|
+
/**
|
|
57
|
+
* Resolve a Companion plugin manifest from either:
|
|
58
|
+
*
|
|
59
|
+
* 1. this core package's ordinary dependency graph (published install), or
|
|
60
|
+
* 2. the node_modules graph that contains the CLI path used to start Node
|
|
61
|
+
* (local npm-link/dev-link install).
|
|
62
|
+
*
|
|
63
|
+
* Node resolves a symlinked module from its real path by default. Consequently,
|
|
64
|
+
* a locally linked codevibe-core cannot see the plugin siblings that remain
|
|
65
|
+
* under the meta-package's node_modules when it uses lexical `require.resolve`
|
|
66
|
+
* alone. `process.argv[1]` retains the invoked, meta-package-owned CLI path, so
|
|
67
|
+
* a require anchored there reproduces the dependency graph the user launched.
|
|
68
|
+
*/
|
|
69
|
+
export declare function resolveCompanionPluginManifest(packageName: string, invokedCliPath?: string | undefined): string | null;
|
|
43
70
|
/**
|
|
44
71
|
* §4 LOCK lines 232-273. Detect → resolve → persist → exec.
|
|
45
72
|
*
|
|
46
73
|
* On a TTY with multiple agents, this calls `pickAgent` for the
|
|
47
74
|
* interactive readline picker. The function does NOT mount the Ink
|
|
48
75
|
* TUI — Companion Mode does not need it (the picker hands terminal
|
|
49
|
-
* control directly to the
|
|
76
|
+
* control directly to the private launcher).
|
|
50
77
|
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
*
|
|
78
|
+
* The injected test seam and production `spawnSync` share the same contract.
|
|
79
|
+
* Production blocks while the private launcher owns the terminal, then
|
|
80
|
+
* returns its exact exit status or terminates this process with the same
|
|
81
|
+
* signal, preserving the former shell `exec` handoff semantics.
|
|
55
82
|
*/
|
|
56
|
-
export declare function runCompanionMode(args: CompanionArgs): Promise<
|
|
83
|
+
export declare function runCompanionMode(args: CompanionArgs): Promise<number>;
|
|
84
|
+
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare function companionPreferenceFilePath(): string;
|
|
2
2
|
export interface CompanionPreference {
|
|
3
|
-
lastAgent: 'CLAUDE' | '
|
|
3
|
+
lastAgent: 'CLAUDE' | 'CODEX' | 'ANTIGRAVITY';
|
|
4
4
|
lastUsedAt: string;
|
|
5
5
|
}
|
|
6
6
|
/**
|
|
@@ -18,7 +18,3 @@ export declare function readCompanionPreference(): Promise<CompanionPreference |
|
|
|
18
18
|
* write).
|
|
19
19
|
*/
|
|
20
20
|
export declare function persistCompanionPreference(pref: CompanionPreference): Promise<void>;
|
|
21
|
-
/**
|
|
22
|
-
* Clears the preference file (used by `--forget-agent` flag per §4).
|
|
23
|
-
*/
|
|
24
|
-
export declare function clearCompanionPreference(): Promise<void>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { DetectableAgent } from '../orchestration/detect-agents';
|
|
2
|
+
export type ActiveCompanionAgent = Exclude<DetectableAgent, 'GEMINI'>;
|
|
2
3
|
export interface DetectedAgent {
|
|
3
|
-
kind:
|
|
4
|
+
kind: ActiveCompanionAgent;
|
|
4
5
|
binPath: string;
|
|
5
6
|
healthy: boolean;
|
|
6
7
|
}
|
|
@@ -8,9 +9,9 @@ export interface ResolveAgentArgs {
|
|
|
8
9
|
/** Healthy agents detected on PATH. */
|
|
9
10
|
healthy: DetectedAgent[];
|
|
10
11
|
/** `--agent` CLI flag override (if any). */
|
|
11
|
-
flag?:
|
|
12
|
+
flag?: ActiveCompanionAgent;
|
|
12
13
|
/** Persisted preference from `readCompanionPreference()` (if any). */
|
|
13
|
-
preferred?:
|
|
14
|
+
preferred?: ActiveCompanionAgent;
|
|
14
15
|
}
|
|
15
16
|
export interface ResolveAgentResult {
|
|
16
17
|
/** When a single resolved agent exists. */
|
|
@@ -22,7 +23,7 @@ export interface ResolveAgentResult {
|
|
|
22
23
|
};
|
|
23
24
|
/** When the flag asked for an agent that's not healthy. */
|
|
24
25
|
flagMissing?: {
|
|
25
|
-
requested:
|
|
26
|
+
requested: ActiveCompanionAgent;
|
|
26
27
|
};
|
|
27
28
|
}
|
|
28
29
|
/**
|
|
@@ -39,11 +39,6 @@ export interface Config {
|
|
|
39
39
|
sessionsDir: string;
|
|
40
40
|
approvalTimeoutMs: number;
|
|
41
41
|
};
|
|
42
|
-
gemini: {
|
|
43
|
-
command: string;
|
|
44
|
-
defaultTimeout: number;
|
|
45
|
-
transcriptDir: string;
|
|
46
|
-
};
|
|
47
42
|
}
|
|
48
43
|
/**
|
|
49
44
|
* Get environment from process.env.ENVIRONMENT, defaults to 'production'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { UpstreamResult } from "../types";
|
|
2
|
+
/**
|
|
3
|
+
* The buffered SPEC a migrated stub stores (in place of the legacy
|
|
4
|
+
* `UpstreamResponse` shape). The stub wraps it via {@link bufferedResult} inside
|
|
5
|
+
* its own `post()`, producing a FRESH one-shot `UpstreamResult` per call (so a
|
|
6
|
+
* retry that posts twice never trips the one-shot guard).
|
|
7
|
+
*/
|
|
8
|
+
export interface BufferedSpec {
|
|
9
|
+
status: number;
|
|
10
|
+
body?: unknown;
|
|
11
|
+
/** Optional response headers (defaults to `content-type: application/json`). */
|
|
12
|
+
headers?: Record<string, string>;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Build a one-shot buffered {@link UpstreamResult} from a status + JSON body,
|
|
16
|
+
* matching the real `FetchUpstreamClient` contract: `readText()` returns the
|
|
17
|
+
* exact serialized bytes (empty string for an absent body → the broker parses it
|
|
18
|
+
* to `undefined`), `bodyStream()` yields those same bytes once, and a second or
|
|
19
|
+
* mixed consumption THROWS (LOCK #643-1).
|
|
20
|
+
*/
|
|
21
|
+
export declare function bufferedResult(status: number, body?: unknown, headers?: Record<string, string>): UpstreamResult;
|
|
@@ -1,7 +1,38 @@
|
|
|
1
|
+
import { PassThrough } from "node:stream";
|
|
1
2
|
import { type StrictAuditSink } from "./audit-sink";
|
|
2
3
|
import { getProviderConfig } from "./broker-config";
|
|
3
4
|
import { type RotationHandle } from "./broker-token";
|
|
4
|
-
import { type
|
|
5
|
+
import { type RefreshTransport } from "./oauth-refresh";
|
|
6
|
+
import { OAuthAccountLock } from "./oauth-account-lock";
|
|
7
|
+
import { type BrokerHandled, type BrokerRequest, type BrokerResponse, type BrokerToken, type ModelGatewayBroker, type ResponseSink, type UpstreamClient, type VendorKeyStore, type VendorOAuthBundle, type VendorProvider } from "./types";
|
|
8
|
+
/**
|
|
9
|
+
* PHASE-643 §3.3 — the streaming STALL meter: a `PassThrough`-derived stage that
|
|
10
|
+
* OWNS the idle timer (there is NO outer timer variable — agy R5, eliminating
|
|
11
|
+
* the stale-reference leak structurally). It ARMS the timer at construction,
|
|
12
|
+
* RE-ARMS it per chunk, calls `onIdle()` (→ `reg.controller.abort()`) on fire,
|
|
13
|
+
* and DISARMS it in `_destroy()`.
|
|
14
|
+
*
|
|
15
|
+
* Arm-order pin (Stage-1 v10): the timer arms LAZILY in `_construct` — which
|
|
16
|
+
* Node invokes AFTER `new IdleMeter(...)` has returned and been assigned to
|
|
17
|
+
* `meter` — so a constructor throw could never leave an armed timer that
|
|
18
|
+
* `meter?.destroy()` cannot reach. `autoDestroy` is pinned `true` (the Node
|
|
19
|
+
* default; pipeline explicitly skips destroying naturally-completed streams, so
|
|
20
|
+
* `autoDestroy` is what runs `_destroy` — and thus disarms the timer — on a
|
|
21
|
+
* successful stream), guaranteeing no timer survives a completed stream and no
|
|
22
|
+
* spurious late abort can fire.
|
|
23
|
+
*/
|
|
24
|
+
export declare class IdleMeter extends PassThrough {
|
|
25
|
+
private readonly idleMs;
|
|
26
|
+
private readonly onIdle;
|
|
27
|
+
private idleTimer;
|
|
28
|
+
private disarmed;
|
|
29
|
+
constructor(idleMs: number, onIdle: () => void);
|
|
30
|
+
_construct(callback: (err?: Error | null) => void): void;
|
|
31
|
+
_transform(chunk: unknown, _enc: BufferEncoding, cb: (err?: Error | null, data?: unknown) => void): void;
|
|
32
|
+
_destroy(err: Error | null, cb: (err?: Error | null) => void): void;
|
|
33
|
+
private arm;
|
|
34
|
+
private disarm;
|
|
35
|
+
}
|
|
5
36
|
/**
|
|
6
37
|
* Construction-time dependencies. All injectable so W1 unit-tests run
|
|
7
38
|
* against stubs (no network, deterministic audit ACKs). Defaults wire the
|
|
@@ -18,7 +49,38 @@ export interface BrokerDeps {
|
|
|
18
49
|
vendorKeyStore?: VendorKeyStore;
|
|
19
50
|
/** Strict audit sink (defaults to the in-memory stub until W3, §3.5). */
|
|
20
51
|
auditSink?: StrictAuditSink;
|
|
52
|
+
/**
|
|
53
|
+
* PHASE-626 §5 — the C4 refresh transport (token endpoint). Defaults to the
|
|
54
|
+
* hardened `FetchRefreshTransport`. Injected as a stub in tests.
|
|
55
|
+
*/
|
|
56
|
+
refreshTransport?: RefreshTransport;
|
|
57
|
+
/**
|
|
58
|
+
* PHASE-626 §5 — the cross-process OAuth-account lock for the (single) C4
|
|
59
|
+
* provider `openai`. Defaults to the portable `mkdir`-lock at
|
|
60
|
+
* `defaultOAuthLockDir("vendor-oauth-openai")`. Injected in tests.
|
|
61
|
+
*/
|
|
62
|
+
oauthLock?: OAuthAccountLock;
|
|
63
|
+
/** Proactive-refresh age threshold (ms). Test override. */
|
|
64
|
+
proactiveRefreshThresholdMs?: number;
|
|
65
|
+
/** stop() bounded-drain timeout (ms). Test override. */
|
|
66
|
+
stopDrainTimeoutMs?: number;
|
|
67
|
+
/** Injectable clock/delay for the stop drain (tests). */
|
|
68
|
+
now?: () => number;
|
|
69
|
+
delay?: (ms: number) => Promise<void>;
|
|
21
70
|
}
|
|
71
|
+
/**
|
|
72
|
+
* LOCAL-ONLY diagnostic shape of a non-200 upstream body. Upstream error
|
|
73
|
+
* bodies are UNTRUSTED and can carry credential material in ANY string —
|
|
74
|
+
* including inside the canonical `error.message`/`type`/`code` fields (a bare
|
|
75
|
+
* JWT matches no I2 pattern; Stage-2 r3 empirically refuted the
|
|
76
|
+
* scrub-the-allow-listed-values variant) — so ZERO upstream-controlled bytes
|
|
77
|
+
* may reach the logger. Reports structure only: which canonical error fields
|
|
78
|
+
* exist (key names come from OUR constant list, never the body) and their
|
|
79
|
+
* byte lengths. Own-property reads only (the W1 R3 prototype-pollution
|
|
80
|
+
* class). Cannot throw: no upstream value is ever serialized or traversed
|
|
81
|
+
* beyond one fixed level.
|
|
82
|
+
*/
|
|
83
|
+
export declare function upstreamErrorShape(body: unknown): Record<string, unknown> | undefined;
|
|
22
84
|
/**
|
|
23
85
|
* The local model-gateway broker (§3.2). One per session on
|
|
24
86
|
* `127.0.0.1:<ephemeral>`. Holds the upstream credential in-process only
|
|
@@ -35,12 +97,34 @@ export declare class LocalModelGatewayBroker implements ModelGatewayBroker, Vend
|
|
|
35
97
|
private readonly brokerId;
|
|
36
98
|
private server;
|
|
37
99
|
private boundAddr;
|
|
38
|
-
/** In-process cache of upstream
|
|
100
|
+
/** In-process cache of the resolved upstream credential (zeroized on stop()). */
|
|
39
101
|
private upstreamKeys;
|
|
40
102
|
/** Latest `credential_issuance_id` per provider (for the model_call FK). */
|
|
41
103
|
private issuanceIds;
|
|
42
104
|
private issuanceCounter;
|
|
105
|
+
private readonly refreshTransport;
|
|
106
|
+
private oauthLock;
|
|
107
|
+
private readonly proactiveThresholdMs;
|
|
108
|
+
private readonly stopDrainTimeoutMs;
|
|
109
|
+
private readonly nowFn;
|
|
110
|
+
private readonly delayFn;
|
|
111
|
+
/**
|
|
112
|
+
* Per-provider credential generation (§5) — advances on EVERY self-refresh
|
|
113
|
+
* AND on adopting a sibling's persisted bundle. A 401 issued under an older
|
|
114
|
+
* generation retries on the current credential WITHOUT re-refreshing.
|
|
115
|
+
*/
|
|
116
|
+
private credentialGeneration;
|
|
117
|
+
/** Intra-instance single-flight: one in-flight refresh per provider. */
|
|
118
|
+
private inflightRefresh;
|
|
119
|
+
/** STOPPING gate — reject new gateway work once set. */
|
|
120
|
+
private stopping;
|
|
121
|
+
/** Monotonic lifecycle generation `stop()` bumps (straggler no-op guard). */
|
|
122
|
+
private lifecycleGeneration;
|
|
123
|
+
/** Registered in-flight credential-bearing outer ops. */
|
|
124
|
+
private readonly ops;
|
|
43
125
|
constructor(deps: BrokerDeps);
|
|
126
|
+
/** Lazily resolve the OAuth-account lock for the (only) C4 provider `openai`. */
|
|
127
|
+
private getOAuthLock;
|
|
44
128
|
/**
|
|
45
129
|
* Start the per-session HTTP gateway on an ephemeral loopback port + mint
|
|
46
130
|
* the session's broker token. Resolves the bound `127.0.0.1:<port>`.
|
|
@@ -53,8 +137,29 @@ export declare class LocalModelGatewayBroker implements ModelGatewayBroker, Vend
|
|
|
53
137
|
/**
|
|
54
138
|
* Tear down: close the HTTP server, ZEROIZE the in-process upstream
|
|
55
139
|
* credentials, and clear the broker token. Idempotent.
|
|
140
|
+
*
|
|
141
|
+
* PHASE-626 §5 stop lifecycle (Stage-2 R1/R2/R3/R4 Codex): today's naive
|
|
142
|
+
* "clear the map immediately" lets an in-flight keychain load or refresh
|
|
143
|
+
* completing AFTER `stop()` silently REPOPULATE credentials post-stop. The
|
|
144
|
+
* new lifecycle: (1) enter STOPPING (reject new work) + bump the lifecycle
|
|
145
|
+
* generation so any straggler resuming post-stop aborts as a no-op; (2) await
|
|
146
|
+
* a BOUNDED drain of in-flight credential-bearing ops; (3) ABORT every
|
|
147
|
+
* registered signal (cancels abortable inner ops: the model-forward fetch +
|
|
148
|
+
* refresh transport) AND await the SETTLEMENT of every registered outer task
|
|
149
|
+
* (non-cancellable host ops — keychain, `mkdir`-lock, audit-sink — are awaited
|
|
150
|
+
* to natural settlement, never falsely raced); (4) drop ALL credential +
|
|
151
|
+
* in-flight-promise references as the FINAL step.
|
|
56
152
|
*/
|
|
57
153
|
stop(): Promise<void>;
|
|
154
|
+
/**
|
|
155
|
+
* Register an in-flight credential-bearing OUTER operation SYNCHRONOUSLY
|
|
156
|
+
* (before its first `await`) so `stop()` can abort + await it. Closes the
|
|
157
|
+
* started-but-unregistered pre-registration race.
|
|
158
|
+
*/
|
|
159
|
+
private registerOp;
|
|
160
|
+
private deregisterOp;
|
|
161
|
+
/** True once `stop()` has bumped past the op's captured generation. */
|
|
162
|
+
private isStale;
|
|
58
163
|
/** The current broker token (for the agent's apiKeyHelper bootstrap). */
|
|
59
164
|
currentBrokerToken(): BrokerToken | null;
|
|
60
165
|
/**
|
|
@@ -92,25 +197,104 @@ export declare class LocalModelGatewayBroker implements ModelGatewayBroker, Vend
|
|
|
92
197
|
rollbackBrokerTokenRotation(handle?: RotationHandle): void;
|
|
93
198
|
getVendorKey(provider: VendorProvider): Promise<string | null>;
|
|
94
199
|
setVendorKey(provider: VendorProvider, key: string): Promise<void>;
|
|
200
|
+
clearVendorKey(provider: VendorProvider): Promise<boolean>;
|
|
201
|
+
getVendorOAuthBundle(provider: VendorProvider): Promise<VendorOAuthBundle | null>;
|
|
202
|
+
setVendorOAuthBundle(provider: VendorProvider, bundle: VendorOAuthBundle): Promise<void>;
|
|
203
|
+
clearVendorOAuthBundle(provider: VendorProvider): Promise<boolean>;
|
|
95
204
|
/**
|
|
96
205
|
* Handle one broker request (§3.2). The pure, transport-agnostic core —
|
|
97
206
|
* the HTTP server (`handleHttp`) adapts node req/res onto this. Route
|
|
98
|
-
* table check first (everything else → 403), then
|
|
99
|
-
* the two POSTs (the ONLY 401 is an
|
|
100
|
-
* the per-provider gateway (§3.3/§3.4/§3.5).
|
|
207
|
+
* table check first (everything else → 403), then local metadata/health,
|
|
208
|
+
* then broker-token auth on the two model POSTs (the ONLY 401 is an
|
|
209
|
+
* invalid agent→broker token), then the per-provider gateway (§3.3/§3.4/§3.5).
|
|
101
210
|
*/
|
|
102
211
|
handle(req: BrokerRequest): Promise<BrokerResponse>;
|
|
212
|
+
handle(req: BrokerRequest, sink: ResponseSink): Promise<BrokerResponse | BrokerHandled>;
|
|
213
|
+
/**
|
|
214
|
+
* The credential-bearing OUTER operation (§5 stop lifecycle). Registers on
|
|
215
|
+
* the op-registry SYNCHRONOUSLY (before its first `await`), then runs the
|
|
216
|
+
* gateway body with the registration's abort signal + captured lifecycle
|
|
217
|
+
* generation, and deregisters in `finally`.
|
|
218
|
+
*/
|
|
103
219
|
private gateway;
|
|
220
|
+
private gatewayInner;
|
|
221
|
+
/**
|
|
222
|
+
* PHASE-643 §3.3 — the in-scope streaming write for a 200 `text/event-stream`
|
|
223
|
+
* forward. Runs INSIDE the op scope (the op stays in `this.ops` across the
|
|
224
|
+
* stream → `stop()` phase-3 settles). Pipes the upstream body incrementally
|
|
225
|
+
* into the caller-provided sink, byte-for-byte, forwarding ONLY `content-type`.
|
|
226
|
+
*
|
|
227
|
+
* Teardown principle (R6): NO ownership tracking — a resolving `pipeline()` does
|
|
228
|
+
* NOT prove it adopted the stages (a setup-time rejection, e.g.
|
|
229
|
+
* `ERR_STREAM_UNABLE_TO_PIPE` on an already-destroyed sink, leaves BOTH the
|
|
230
|
+
* source AND the meter live). The unified catch UNCONDITIONALLY + IDEMPOTENTLY
|
|
231
|
+
* tears down EVERY broker-allocated stage — `meter?.destroy()` (disarms its
|
|
232
|
+
* armed idle timer via `_destroy`) FIRST (Stage-2 R6 Codex MED, empirically
|
|
233
|
+
* reproduced on Node ≥22), then a guarded `source` destroy-before-abort with a
|
|
234
|
+
* no-op `'error'` listener (§5.1-D), then `reg.controller.abort()` — on ANY
|
|
235
|
+
* throw OR pipeline rejection in steps 1–3, whether or not the pipeline was
|
|
236
|
+
* invoked or already destroyed the stages. A missed teardown would leave a live
|
|
237
|
+
* credential-bearing fetch (or an armed ref'd timer) that `stop()` can no longer
|
|
238
|
+
* reach after op deregister.
|
|
239
|
+
*/
|
|
240
|
+
private streamForward;
|
|
104
241
|
/**
|
|
105
|
-
*
|
|
106
|
-
* `
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
242
|
+
* Build the upstream `{url, headers}` for a resolved credential (§5). For an
|
|
243
|
+
* `oauth_bundle` (C4) the URL is OVERRIDDEN to the ChatGPT config and its
|
|
244
|
+
* synthesized headers (originator / User-Agent) are merged over the openai
|
|
245
|
+
* canonical headers; the credential headers add `Authorization: Bearer` +
|
|
246
|
+
* `ChatGPT-Account-Id`. For C1/C2/C3 the canonical URL + the C2-beta synthesis
|
|
247
|
+
* are preserved unchanged.
|
|
111
248
|
*/
|
|
112
|
-
private
|
|
249
|
+
private buildUpstreamTarget;
|
|
250
|
+
/**
|
|
251
|
+
* Load the vendor credential (class-discriminated + precedence), caching it
|
|
252
|
+
* in-process, and emit `broker_credential_loaded` (§3.5) — with a
|
|
253
|
+
* `key_fingerprint` (sha256 prefix over the class-appropriate string; for an
|
|
254
|
+
* oauth_bundle the `refresh_token`) and a fresh `credential_issuance_id`,
|
|
255
|
+
* NEVER the raw credential.
|
|
256
|
+
*
|
|
257
|
+
* Precedence (§5): C1/C2/C3 (`vendor-key-<provider>`) WINS over a C4
|
|
258
|
+
* `vendor-oauth-openai` bundle. Explicit key wins; no config knob.
|
|
259
|
+
*/
|
|
260
|
+
private loadVendorCredential;
|
|
261
|
+
private genOf;
|
|
262
|
+
private currentBundle;
|
|
263
|
+
/** Is the C4 bundle's `last_refresh` older than the proactive threshold? */
|
|
264
|
+
private isProactiveDue;
|
|
265
|
+
/**
|
|
266
|
+
* Adopt a bundle into the in-process cache AND advance the local credential
|
|
267
|
+
* generation (§5 — adoption is treated identically to a self-refresh, so a
|
|
268
|
+
* stale-generation 401 recognizes the rotation and does not re-rotate).
|
|
269
|
+
* Respects the lifecycle guard: never repopulates a cleared cache post-stop.
|
|
270
|
+
*/
|
|
271
|
+
private adoptBundle;
|
|
272
|
+
/**
|
|
273
|
+
* Ensure a fresh C4 access token via single-flight + the cross-broker lock.
|
|
274
|
+
* `mode` distinguishes reactive (post-401 — a transient failure fails the
|
|
275
|
+
* call closed) from proactive (token still valid — a transient failure keeps
|
|
276
|
+
* serving the current token). `usedGen` (reactive only) is the generation the
|
|
277
|
+
* failed request rode: a 401 older than the current generation retries on the
|
|
278
|
+
* CURRENT credential WITHOUT refreshing (staggered-stale-401 guard).
|
|
279
|
+
*/
|
|
280
|
+
private refreshOAuth;
|
|
281
|
+
/**
|
|
282
|
+
* The cross-broker critical section (§5): acquire the OAuth-account lock →
|
|
283
|
+
* RE-READ the persisted bundle under the lock → compare-and-skip on
|
|
284
|
+
* `access_token` identity → refresh via the token endpoint → reassert
|
|
285
|
+
* ownership → whole-bundle write-through → advance generation → release.
|
|
286
|
+
* The single-flight promise resolves only AFTER persist + cache update.
|
|
287
|
+
*/
|
|
288
|
+
private doRefreshUnderLock;
|
|
113
289
|
private lastIssuanceId;
|
|
290
|
+
/**
|
|
291
|
+
* The user-visible remediation response for a PERMANENT (`invalid_grant`) C4
|
|
292
|
+
* refresh failure — the refresh token is dead, so no in-broker recovery is
|
|
293
|
+
* possible and the user must re-import (§5 failure classification + remediation
|
|
294
|
+
* scoping). Shared by BOTH the reactive (post-401) and proactive refresh paths
|
|
295
|
+
* so the surfaced instruction cannot drift.
|
|
296
|
+
*/
|
|
297
|
+
private permanentRefreshResponse;
|
|
114
298
|
/**
|
|
115
299
|
* Map an upstream response to the agent-facing status (§3.2). An upstream
|
|
116
300
|
* 401/403 (bad/expired vendor key) → 502 (NOT a pass-through 401, which
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/** The C4 ChatGPT-subscription upstream wire facts (LIVE-PINNED, §13 OQ-1). */
|
|
2
|
+
export interface ChatGptUpstreamConfig {
|
|
3
|
+
/** ChatGPT backend origin the C4 Bearer forwards to (origin confinement target). */
|
|
4
|
+
readonly upstreamBaseUrl: string;
|
|
5
|
+
/** The Responses route appended to the base for `/v1/responses`-shaped calls. */
|
|
6
|
+
readonly upstreamPath: string;
|
|
7
|
+
/**
|
|
8
|
+
* Headers the broker SYNTHESIZES on EVERY C4 upstream call (NOT agent-
|
|
9
|
+
* supplied — the canonical constructor drops all agent headers). These are
|
|
10
|
+
* broker-owned constants; the credential-derived `ChatGPT-Account-Id` +
|
|
11
|
+
* `Authorization` are added separately by `credentialHeaders` (they depend
|
|
12
|
+
* on the resolved bundle).
|
|
13
|
+
*/
|
|
14
|
+
readonly synthesizedHeaders: Readonly<Record<string, string>>;
|
|
15
|
+
/**
|
|
16
|
+
* PHASE-643-B §7 (v11) — pinned WIRE FACT: the real chatgpt.com Responses
|
|
17
|
+
* endpoint returns `200` + a genuine SSE body with NO `Content-Type` header at
|
|
18
|
+
* all (probe-proven 2026-07-21 — Cloudflare-fronted, `Transfer-Encoding:
|
|
19
|
+
* chunked`, no content-type either with or without an `Accept` header). So a
|
|
20
|
+
* `200` with an ABSENT/empty content-type on THIS endpoint must be STREAMED as
|
|
21
|
+
* SSE, not buffered. This is per-endpoint pinned knowledge (same class as the
|
|
22
|
+
* `originator`/UA pins), NOT body-sniffing and NOT `Accept` synthesis. Only the
|
|
23
|
+
* flagged (C4/oauth_bundle chatgpt) target sets it; declared non-SSE 200s
|
|
24
|
+
* (`application/json`) on this target STILL buffer.
|
|
25
|
+
*/
|
|
26
|
+
readonly assumeSseOn200: boolean;
|
|
27
|
+
}
|
|
28
|
+
export declare const CHATGPT_UPSTREAM_CONFIG: ChatGptUpstreamConfig;
|
|
29
|
+
/** The full pinned C4 model-forward URL (`{base}{route}`). */
|
|
30
|
+
export declare function chatGptUpstreamUrl(): string;
|
|
31
|
+
/** OAuth token-refresh endpoint (LIVE-PINNED). */
|
|
32
|
+
export declare const CHATGPT_TOKEN_ENDPOINT = "https://auth.openai.com/oauth/token";
|
|
33
|
+
/** Public OAuth client_id for the refresh grant (LIVE-PINNED). */
|
|
34
|
+
export declare const CHATGPT_OAUTH_CLIENT_ID = "app_EMoamEEZ73f0CkXaXp7hrann";
|
|
35
|
+
/**
|
|
36
|
+
* The request content type for the refresh grant. The body is
|
|
37
|
+
* `grant_type=refresh_token&refresh_token=…&client_id=…` (§5), so it is a
|
|
38
|
+
* standard OAuth2 form-encoded token request.
|
|
39
|
+
*/
|
|
40
|
+
export declare const CHATGPT_REFRESH_CONTENT_TYPE = "application/x-www-form-urlencoded";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { VendorProvider, BrokerRouteMethod, BrokerRoute, BrokerStatus, BrokerRequest, BrokerResponse, ModelGatewayBroker, VendorKeyStore, BrokerToken, UpstreamResponse, UpstreamClient, } from "./types";
|
|
1
|
+
export type { VendorProvider, BrokerRouteMethod, BrokerRoute, BrokerStatus, BrokerRequest, BrokerResponse, BrokerHandled, ResponseSink, ModelGatewayBroker, VendorKeyStore, VendorOAuthBundle, ResolvedCredential, BrokerToken, UpstreamResult, UpstreamResponse, UpstreamClient, } from "./types";
|
|
2
2
|
export { BROKER_ROUTES } from "./types";
|
|
3
3
|
export { LocalModelGatewayBroker } from "./broker";
|
|
4
4
|
export type { BrokerDeps } from "./broker";
|
|
@@ -7,6 +7,9 @@ export type { StrictAuditSink, AuditKindCp7, RecordedAuditEmit } from "./audit-s
|
|
|
7
7
|
export { StubStrictAuditSink } from "./audit-sink";
|
|
8
8
|
export { KeychainVendorKeyStore } from "./vendor-key-store";
|
|
9
9
|
export { BrokerTokenMinter, type RotationHandle } from "./broker-token";
|
|
10
|
+
export { CHATGPT_UPSTREAM_CONFIG, chatGptUpstreamUrl, CHATGPT_TOKEN_ENDPOINT, CHATGPT_OAUTH_CLIENT_ID, CHATGPT_REFRESH_CONTENT_TYPE, } from "./chatgpt-config";
|
|
11
|
+
export { FetchRefreshTransport, refreshOAuthToken, buildRefreshBody, type RefreshTransport, type RefreshOutcome, } from "./oauth-refresh";
|
|
12
|
+
export { OAuthAccountLock, createOAuthAccountLock, defaultOAuthLockDir, type OAuthAccountLockOptions, type LockHandle, type LockOwner, } from "./oauth-account-lock";
|
|
10
13
|
export { buildCanonicalRequest, selfCredentialGuard, requestSha256, CanonicalRejectError, } from "./canonical";
|
|
11
14
|
export type { CanonicalInput, CanonicalRequest } from "./canonical";
|
|
12
15
|
export { scrubRequestBody } from "./scrubber";
|