@aria-cli/tools 1.0.18 → 1.0.31
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/.aria-build-stamp.json +1 -1
- package/dist/ask-user-interaction.js +23 -0
- package/dist/cache/web-cache.js +67 -0
- package/dist/definitions/arion.js +105 -0
- package/dist/definitions/browser/browser.js +419 -0
- package/dist/definitions/browser/index.js +5 -0
- package/dist/definitions/browser/pw-downloads.js +115 -0
- package/dist/definitions/browser/pw-interactions.js +200 -0
- package/dist/definitions/browser/pw-responses.js +77 -0
- package/dist/definitions/browser/pw-session.js +311 -0
- package/dist/definitions/browser/pw-shared.js +67 -0
- package/dist/definitions/browser/pw-snapshot.js +302 -0
- package/dist/definitions/browser/pw-state.js +63 -0
- package/dist/definitions/browser/types.js +5 -0
- package/dist/definitions/code-intelligence.js +471 -0
- package/dist/definitions/core.js +110 -0
- package/dist/definitions/delegation.js +513 -0
- package/dist/definitions/deploy.js +66 -0
- package/dist/definitions/filesystem.js +197 -0
- package/dist/definitions/frg.js +64 -0
- package/{dist-cjs/definitions/index.d.ts → dist/definitions/index.js} +2 -0
- package/dist/definitions/memory.js +124 -0
- package/dist/definitions/messaging.js +626 -0
- package/dist/definitions/meta.js +350 -0
- package/dist/definitions/network.js +160 -0
- package/dist/definitions/outlook.js +278 -0
- package/dist/definitions/patch/apply-patch.js +185 -0
- package/dist/definitions/patch/fuzzy-match.js +167 -0
- package/{dist-cjs/definitions/patch/index.d.ts → dist/definitions/patch/index.js} +1 -0
- package/dist/definitions/patch/patch-parser.js +208 -0
- package/dist/definitions/patch/sandbox-paths.js +106 -0
- package/dist/definitions/process/index.js +5 -0
- package/dist/definitions/process/process-registry.js +214 -0
- package/dist/definitions/process/process.js +387 -0
- package/dist/definitions/process/pty-keys.js +255 -0
- package/dist/definitions/process/session-slug.js +143 -0
- package/dist/definitions/quip.js +196 -0
- package/dist/definitions/search.js +61 -0
- package/dist/definitions/session-history.js +70 -0
- package/dist/definitions/shell.js +182 -0
- package/dist/definitions/slack.js +181 -0
- package/dist/definitions/web.js +110 -0
- package/dist/{dns-pinning-vc0r0vpx.js → dns-pinning-7szqhtmq.js} +1 -1
- package/dist/executors/apply-patch.js +902 -0
- package/dist/executors/arion.js +120 -0
- package/dist/executors/code-intelligence.js +883 -0
- package/dist/executors/deploy.js +849 -0
- package/dist/executors/filesystem.js +1119 -0
- package/dist/executors/frg-freshness.js +577 -0
- package/dist/executors/frg.js +299 -0
- package/{dist-cjs/executors/index.d.ts → dist/executors/index.js} +22 -19
- package/dist/executors/learning-meta.js +1147 -0
- package/dist/executors/lsp-client.js +297 -0
- package/dist/executors/memory.js +751 -0
- package/dist/executors/meta.js +221 -0
- package/dist/executors/process-registry.js +466 -0
- package/dist/executors/pty-session-store.js +31 -0
- package/dist/executors/pty.js +281 -0
- package/dist/executors/restart.js +120 -0
- package/dist/executors/search-freshness.js +196 -0
- package/dist/executors/search-types.js +53 -0
- package/dist/executors/search.js +67 -0
- package/dist/executors/self-diagnose.js +399 -0
- package/dist/executors/session-history.js +284 -0
- package/dist/executors/shell-safety.js +474 -0
- package/dist/executors/shell.js +955 -0
- package/dist/executors/utils.js +34 -0
- package/dist/executors/web.js +543 -0
- package/dist/extraction/content-extraction.js +248 -0
- package/dist/extraction/index.js +5 -0
- package/dist/headless-control-contract.js +968 -0
- package/dist/{index-x52t2mbj.js → index-45qvfjbf.js} +2 -2
- package/dist/{index-8xap0se3.js → index-b3sdwzh5.js} +1 -1
- package/dist/index-tvryzx00.js +2 -0
- package/dist/index.js +71 -372
- package/dist/local-control-http-auth.js +3 -0
- package/dist/{lsp-client-msnj763y.js → lsp-client-3qxptwyw.js} +1 -1
- package/dist/mcp/client.js +182 -0
- package/dist/mcp/connection.js +484 -0
- package/dist/mcp/index.js +11 -0
- package/dist/mcp/jsonrpc.js +145 -0
- package/dist/mcp/types.js +8 -0
- package/dist/network-control-adapter.js +73 -0
- package/dist/network-runtime/address-types.js +166 -0
- package/dist/network-runtime/db-owner-fencing.js +70 -0
- package/dist/network-runtime/delivery-receipts.js +270 -0
- package/dist/network-runtime/direct-endpoint-authority.js +26 -0
- package/dist/network-runtime/index.js +13 -1
- package/dist/network-runtime/local-control-contract.js +628 -0
- package/dist/network-runtime/node-store-contract.js +35 -0
- package/dist/network-runtime/pair-route-contract.js +78 -0
- package/dist/network-runtime/peer-capabilities.js +29 -0
- package/dist/network-runtime/peer-principal-ref.js +13 -0
- package/dist/network-runtime/peer-state-machine.js +122 -0
- package/dist/network-runtime/protocol-schemas.js +206 -0
- package/dist/network-runtime/runtime-bootstrap-contract.js +61 -0
- package/dist/outlook/desktop-session.js +280 -0
- package/dist/policy.js +150 -0
- package/dist/providers/brave.js +63 -0
- package/dist/providers/duckduckgo.js +177 -0
- package/dist/providers/exa.js +64 -0
- package/dist/providers/firecrawl.js +56 -0
- package/{dist-cjs/providers/index.d.ts → dist/providers/index.js} +1 -1
- package/dist/providers/jina.js +50 -0
- package/dist/providers/router.js +97 -0
- package/dist/providers/search-provider.js +33 -0
- package/dist/providers/tavily.js +55 -0
- package/dist/pty-w5c9dv33.js +1 -0
- package/dist/quip/desktop-session.js +318 -0
- package/{dist-cjs/registry/index.d.ts → dist/registry/index.js} +1 -0
- package/dist/registry/registry.js +757 -0
- package/dist/runtime-socket-local-control-client.js +331 -0
- package/dist/security/dns-normalization.js +20 -0
- package/dist/security/dns-pinning.js +124 -0
- package/dist/security/external-content.js +92 -0
- package/dist/security/ssrf.js +182 -0
- package/dist/session-history-gk75e3ta.js +1 -0
- package/dist/slack/desktop-session.js +325 -0
- package/dist/tool-factory.js +48 -0
- package/dist/types.js +8 -0
- package/dist/utils/retry.js +133 -0
- package/dist/utils/safe-parse-json.js +161 -0
- package/dist/utils/url.js +20 -0
- package/dist-cjs/ask-user-interaction.js +28 -0
- package/dist-cjs/cache/web-cache.js +71 -0
- package/dist-cjs/definitions/arion.js +108 -0
- package/dist-cjs/definitions/browser/browser.js +422 -0
- package/dist-cjs/definitions/browser/index.js +9 -0
- package/dist-cjs/definitions/browser/pw-downloads.js +118 -0
- package/dist-cjs/definitions/browser/pw-interactions.js +214 -0
- package/dist-cjs/definitions/browser/pw-responses.js +85 -0
- package/dist-cjs/definitions/browser/pw-session.js +327 -0
- package/dist-cjs/definitions/browser/pw-shared.js +73 -0
- package/dist-cjs/definitions/browser/pw-snapshot.js +308 -0
- package/dist-cjs/definitions/browser/pw-state.js +71 -0
- package/dist-cjs/definitions/browser/types.js +6 -0
- package/dist-cjs/definitions/code-intelligence.js +474 -0
- package/dist-cjs/definitions/core.js +134 -0
- package/dist-cjs/definitions/delegation.js +516 -0
- package/dist-cjs/definitions/deploy.js +69 -0
- package/dist-cjs/definitions/filesystem.js +200 -0
- package/dist-cjs/definitions/frg.js +67 -0
- package/dist-cjs/definitions/index.js +44 -0
- package/dist-cjs/definitions/memory.js +127 -0
- package/dist-cjs/definitions/messaging.js +632 -0
- package/dist-cjs/definitions/meta.js +353 -0
- package/dist-cjs/definitions/network.js +163 -0
- package/dist-cjs/definitions/outlook.js +281 -0
- package/dist-cjs/definitions/patch/apply-patch.js +192 -0
- package/dist-cjs/definitions/patch/fuzzy-match.js +173 -0
- package/dist-cjs/definitions/patch/index.js +6 -0
- package/dist-cjs/definitions/patch/patch-parser.js +216 -0
- package/dist-cjs/definitions/patch/sandbox-paths.js +114 -0
- package/dist-cjs/definitions/process/index.js +9 -0
- package/dist-cjs/definitions/process/process-registry.js +232 -0
- package/dist-cjs/definitions/process/process.js +390 -0
- package/dist-cjs/definitions/process/pty-keys.js +260 -0
- package/dist-cjs/definitions/process/session-slug.js +146 -0
- package/dist-cjs/definitions/quip.js +199 -0
- package/dist-cjs/definitions/search.js +64 -0
- package/dist-cjs/definitions/session-history.js +73 -0
- package/dist-cjs/definitions/shell.js +185 -0
- package/dist-cjs/definitions/slack.js +184 -0
- package/dist-cjs/definitions/web.js +113 -0
- package/dist-cjs/executors/apply-patch.js +939 -0
- package/dist-cjs/executors/arion.js +126 -0
- package/dist-cjs/executors/code-intelligence.js +926 -0
- package/dist-cjs/executors/deploy.js +870 -0
- package/dist-cjs/executors/filesystem.js +1164 -0
- package/dist-cjs/executors/frg-freshness.js +628 -0
- package/dist-cjs/executors/frg.js +335 -0
- package/dist-cjs/executors/index.js +144 -0
- package/dist-cjs/executors/learning-meta.js +1166 -0
- package/dist-cjs/executors/memory.js +797 -0
- package/dist-cjs/executors/meta.js +227 -0
- package/dist-cjs/executors/process-registry.js +470 -0
- package/dist-cjs/executors/pty-session-store.js +35 -0
- package/dist-cjs/executors/pty.js +289 -0
- package/dist-cjs/executors/restart.js +156 -0
- package/dist-cjs/executors/search-freshness.js +235 -0
- package/dist-cjs/executors/search-types.js +57 -0
- package/dist-cjs/executors/search.js +103 -0
- package/dist-cjs/executors/self-diagnose.js +435 -0
- package/dist-cjs/executors/session-history.js +321 -0
- package/dist-cjs/executors/shell-safety.js +479 -0
- package/dist-cjs/executors/shell.js +1002 -0
- package/dist-cjs/executors/utils.js +74 -0
- package/dist-cjs/executors/web.js +548 -0
- package/dist-cjs/extraction/content-extraction.js +289 -0
- package/dist-cjs/extraction/index.js +9 -0
- package/dist-cjs/headless-control-contract.js +973 -0
- package/dist-cjs/index.js +436 -385
- package/dist-cjs/local-control-http-auth.js +6 -0
- package/dist-cjs/mcp/client.js +186 -0
- package/dist-cjs/mcp/connection.js +488 -0
- package/dist-cjs/mcp/index.js +31 -0
- package/dist-cjs/mcp/jsonrpc.js +149 -0
- package/dist-cjs/mcp/types.js +9 -0
- package/dist-cjs/network-control-adapter.js +78 -0
- package/dist-cjs/network-runtime/address-types.js +169 -0
- package/dist-cjs/network-runtime/db-owner-fencing.js +77 -0
- package/dist-cjs/network-runtime/delivery-receipts.js +279 -0
- package/dist-cjs/network-runtime/direct-endpoint-authority.js +30 -0
- package/dist-cjs/network-runtime/index.js +173 -8
- package/dist-cjs/network-runtime/local-control-contract.js +634 -0
- package/dist-cjs/network-runtime/node-store-contract.js +39 -0
- package/dist-cjs/network-runtime/pair-route-contract.js +81 -0
- package/dist-cjs/network-runtime/peer-capabilities.js +38 -0
- package/dist-cjs/network-runtime/peer-principal-ref.js +16 -0
- package/dist-cjs/network-runtime/peer-state-machine.js +130 -0
- package/dist-cjs/network-runtime/protocol-schemas.js +213 -0
- package/dist-cjs/network-runtime/runtime-bootstrap-contract.js +64 -0
- package/dist-cjs/outlook/desktop-session.js +319 -0
- package/dist-cjs/policy.js +156 -0
- package/dist-cjs/providers/brave.js +67 -0
- package/dist-cjs/providers/duckduckgo.js +181 -0
- package/dist-cjs/providers/exa.js +68 -0
- package/dist-cjs/providers/firecrawl.js +60 -0
- package/dist-cjs/providers/index.js +18 -0
- package/dist-cjs/providers/jina.js +54 -0
- package/dist-cjs/providers/router.js +101 -0
- package/dist-cjs/providers/search-provider.js +37 -0
- package/dist-cjs/providers/tavily.js +59 -0
- package/dist-cjs/quip/desktop-session.js +354 -0
- package/dist-cjs/registry/index.js +7 -0
- package/dist-cjs/registry/registry.js +762 -0
- package/dist-cjs/runtime-socket-local-control-client.js +368 -0
- package/dist-cjs/security/dns-normalization.js +23 -0
- package/dist-cjs/security/dns-pinning.js +161 -0
- package/dist-cjs/security/external-content.js +96 -0
- package/dist-cjs/security/ssrf.js +222 -0
- package/dist-cjs/slack/desktop-session.js +367 -0
- package/dist-cjs/tool-factory.js +51 -0
- package/dist-cjs/types.js +9 -0
- package/dist-cjs/utils/retry.js +170 -0
- package/dist-cjs/utils/safe-parse-json.js +165 -0
- package/dist-cjs/utils/url.js +24 -0
- package/package.json +11 -10
- package/dist/ask-user-interaction.d.ts +0 -10
- package/dist/cache/web-cache.d.ts +0 -52
- package/dist/definitions/arion.d.ts +0 -8
- package/dist/definitions/browser/browser.d.ts +0 -2
- package/dist/definitions/browser/index.d.ts +0 -1
- package/dist/definitions/browser/pw-downloads.d.ts +0 -13
- package/dist/definitions/browser/pw-interactions.d.ts +0 -78
- package/dist/definitions/browser/pw-responses.d.ts +0 -28
- package/dist/definitions/browser/pw-session.d.ts +0 -65
- package/dist/definitions/browser/pw-shared.d.ts +0 -22
- package/dist/definitions/browser/pw-snapshot.d.ts +0 -34
- package/dist/definitions/browser/pw-state.d.ts +0 -22
- package/dist/definitions/browser/types.d.ts +0 -277
- package/dist/definitions/code-intelligence.d.ts +0 -8
- package/dist/definitions/core.d.ts +0 -47
- package/dist/definitions/delegation.d.ts +0 -11
- package/dist/definitions/deploy.d.ts +0 -15
- package/dist/definitions/filesystem.d.ts +0 -9
- package/dist/definitions/frg.d.ts +0 -3
- package/dist/definitions/index.d.ts +0 -19
- package/dist/definitions/memory.d.ts +0 -8
- package/dist/definitions/messaging.d.ts +0 -11
- package/dist/definitions/meta.d.ts +0 -11
- package/dist/definitions/network.d.ts +0 -11
- package/dist/definitions/outlook.d.ts +0 -2
- package/dist/definitions/patch/apply-patch.d.ts +0 -11
- package/dist/definitions/patch/fuzzy-match.d.ts +0 -10
- package/dist/definitions/patch/index.d.ts +0 -1
- package/dist/definitions/patch/patch-parser.d.ts +0 -50
- package/dist/definitions/patch/sandbox-paths.d.ts +0 -18
- package/dist/definitions/process/index.d.ts +0 -1
- package/dist/definitions/process/process-registry.d.ts +0 -67
- package/dist/definitions/process/process.d.ts +0 -9
- package/dist/definitions/process/pty-keys.d.ts +0 -13
- package/dist/definitions/process/session-slug.d.ts +0 -1
- package/dist/definitions/quip.d.ts +0 -2
- package/dist/definitions/search.d.ts +0 -9
- package/dist/definitions/session-history.d.ts +0 -11
- package/dist/definitions/shell.d.ts +0 -8
- package/dist/definitions/slack.d.ts +0 -2
- package/dist/definitions/web.d.ts +0 -8
- package/dist/executors/apply-patch.d.ts +0 -51
- package/dist/executors/arion.d.ts +0 -50
- package/dist/executors/code-intelligence.d.ts +0 -138
- package/dist/executors/deploy.d.ts +0 -169
- package/dist/executors/filesystem.d.ts +0 -150
- package/dist/executors/frg-freshness.d.ts +0 -93
- package/dist/executors/frg.d.ts +0 -27
- package/dist/executors/index.d.ts +0 -44
- package/dist/executors/learning-meta.d.ts +0 -87
- package/dist/executors/lsp-client.d.ts +0 -38
- package/dist/executors/memory.d.ts +0 -203
- package/dist/executors/meta.d.ts +0 -73
- package/dist/executors/process-registry.d.ts +0 -98
- package/dist/executors/pty-session-store.d.ts +0 -14
- package/dist/executors/pty.d.ts +0 -133
- package/dist/executors/restart.d.ts +0 -13
- package/dist/executors/search-freshness.d.ts +0 -50
- package/dist/executors/search-types.d.ts +0 -52
- package/dist/executors/search.d.ts +0 -11
- package/dist/executors/self-diagnose.d.ts +0 -89
- package/dist/executors/session-history.d.ts +0 -75
- package/dist/executors/shell-safety.d.ts +0 -27
- package/dist/executors/shell.d.ts +0 -168
- package/dist/executors/utils.d.ts +0 -20
- package/dist/executors/web.d.ts +0 -89
- package/dist/extraction/content-extraction.d.ts +0 -48
- package/dist/extraction/index.d.ts +0 -4
- package/dist/headless-control-contract.d.ts +0 -3182
- package/dist/index-a2fr1b3x.js +0 -2
- package/dist/index.d.ts +0 -62
- package/dist/local-control-http-auth.d.ts +0 -2
- package/dist/mcp/client.d.ts +0 -68
- package/dist/mcp/connection.d.ts +0 -54
- package/dist/mcp/index.d.ts +0 -10
- package/dist/mcp/jsonrpc.d.ts +0 -36
- package/dist/mcp/types.d.ts +0 -178
- package/dist/network-control-adapter.d.ts +0 -4
- package/dist/network-runtime/address-types.d.ts +0 -201
- package/dist/network-runtime/db-owner-fencing.d.ts +0 -43
- package/dist/network-runtime/delivery-receipts.d.ts +0 -117
- package/dist/network-runtime/direct-endpoint-authority.d.ts +0 -8
- package/dist/network-runtime/index.d.ts +0 -24
- package/dist/network-runtime/local-control-contract.d.ts +0 -758
- package/dist/network-runtime/node-store-contract.d.ts +0 -49
- package/dist/network-runtime/pair-route-contract.d.ts +0 -100
- package/dist/network-runtime/peer-capabilities.d.ts +0 -10
- package/dist/network-runtime/peer-principal-ref.d.ts +0 -9
- package/dist/network-runtime/peer-state-machine.d.ts +0 -70
- package/dist/network-runtime/protocol-schemas.d.ts +0 -328
- package/dist/network-runtime/runtime-bootstrap-contract.d.ts +0 -81
- package/dist/outlook/desktop-session.d.ts +0 -68
- package/dist/policy.d.ts +0 -43
- package/dist/providers/brave.d.ts +0 -10
- package/dist/providers/duckduckgo.d.ts +0 -18
- package/dist/providers/exa.d.ts +0 -10
- package/dist/providers/firecrawl.d.ts +0 -10
- package/dist/providers/index.d.ts +0 -8
- package/dist/providers/jina.d.ts +0 -10
- package/dist/providers/router.d.ts +0 -21
- package/dist/providers/search-provider.d.ts +0 -35
- package/dist/providers/tavily.d.ts +0 -10
- package/dist/pty-ff59hy75.js +0 -1
- package/dist/quip/desktop-session.d.ts +0 -69
- package/dist/registry/index.d.ts +0 -1
- package/dist/registry/registry.d.ts +0 -156
- package/dist/runtime-socket-local-control-client.d.ts +0 -10
- package/dist/security/dns-normalization.d.ts +0 -6
- package/dist/security/dns-pinning.d.ts +0 -27
- package/dist/security/external-content.d.ts +0 -40
- package/dist/security/ssrf.d.ts +0 -40
- package/dist/session-history-6gn52xhp.js +0 -1
- package/dist/slack/desktop-session.d.ts +0 -69
- package/dist/tool-factory.d.ts +0 -46
- package/dist/types.d.ts +0 -1192
- package/dist/utils/retry.d.ts +0 -11
- package/dist/utils/safe-parse-json.d.ts +0 -26
- package/dist/utils/url.d.ts +0 -10
- package/dist-cjs/ask-user-interaction.d.ts +0 -10
- package/dist-cjs/cache/web-cache.d.ts +0 -52
- package/dist-cjs/definitions/arion.d.ts +0 -8
- package/dist-cjs/definitions/browser/browser.d.ts +0 -2
- package/dist-cjs/definitions/browser/index.d.ts +0 -1
- package/dist-cjs/definitions/browser/pw-downloads.d.ts +0 -13
- package/dist-cjs/definitions/browser/pw-interactions.d.ts +0 -78
- package/dist-cjs/definitions/browser/pw-responses.d.ts +0 -28
- package/dist-cjs/definitions/browser/pw-session.d.ts +0 -65
- package/dist-cjs/definitions/browser/pw-shared.d.ts +0 -22
- package/dist-cjs/definitions/browser/pw-snapshot.d.ts +0 -34
- package/dist-cjs/definitions/browser/pw-state.d.ts +0 -22
- package/dist-cjs/definitions/browser/types.d.ts +0 -277
- package/dist-cjs/definitions/code-intelligence.d.ts +0 -8
- package/dist-cjs/definitions/core.d.ts +0 -47
- package/dist-cjs/definitions/delegation.d.ts +0 -11
- package/dist-cjs/definitions/deploy.d.ts +0 -15
- package/dist-cjs/definitions/filesystem.d.ts +0 -9
- package/dist-cjs/definitions/frg.d.ts +0 -3
- package/dist-cjs/definitions/memory.d.ts +0 -8
- package/dist-cjs/definitions/messaging.d.ts +0 -11
- package/dist-cjs/definitions/meta.d.ts +0 -11
- package/dist-cjs/definitions/network.d.ts +0 -11
- package/dist-cjs/definitions/outlook.d.ts +0 -2
- package/dist-cjs/definitions/patch/apply-patch.d.ts +0 -11
- package/dist-cjs/definitions/patch/fuzzy-match.d.ts +0 -10
- package/dist-cjs/definitions/patch/patch-parser.d.ts +0 -50
- package/dist-cjs/definitions/patch/sandbox-paths.d.ts +0 -18
- package/dist-cjs/definitions/process/index.d.ts +0 -1
- package/dist-cjs/definitions/process/process-registry.d.ts +0 -67
- package/dist-cjs/definitions/process/process.d.ts +0 -9
- package/dist-cjs/definitions/process/pty-keys.d.ts +0 -13
- package/dist-cjs/definitions/process/session-slug.d.ts +0 -1
- package/dist-cjs/definitions/quip.d.ts +0 -2
- package/dist-cjs/definitions/search.d.ts +0 -9
- package/dist-cjs/definitions/session-history.d.ts +0 -11
- package/dist-cjs/definitions/shell.d.ts +0 -8
- package/dist-cjs/definitions/slack.d.ts +0 -2
- package/dist-cjs/definitions/web.d.ts +0 -8
- package/dist-cjs/executors/apply-patch.d.ts +0 -51
- package/dist-cjs/executors/arion.d.ts +0 -50
- package/dist-cjs/executors/code-intelligence.d.ts +0 -138
- package/dist-cjs/executors/deploy.d.ts +0 -169
- package/dist-cjs/executors/filesystem.d.ts +0 -150
- package/dist-cjs/executors/frg-freshness.d.ts +0 -93
- package/dist-cjs/executors/frg.d.ts +0 -27
- package/dist-cjs/executors/learning-meta.d.ts +0 -87
- package/dist-cjs/executors/lsp-client.d.ts +0 -38
- package/dist-cjs/executors/memory.d.ts +0 -203
- package/dist-cjs/executors/meta.d.ts +0 -73
- package/dist-cjs/executors/process-registry.d.ts +0 -98
- package/dist-cjs/executors/pty-session-store.d.ts +0 -14
- package/dist-cjs/executors/pty.d.ts +0 -133
- package/dist-cjs/executors/restart.d.ts +0 -13
- package/dist-cjs/executors/search-freshness.d.ts +0 -50
- package/dist-cjs/executors/search-types.d.ts +0 -52
- package/dist-cjs/executors/search.d.ts +0 -11
- package/dist-cjs/executors/self-diagnose.d.ts +0 -89
- package/dist-cjs/executors/session-history.d.ts +0 -75
- package/dist-cjs/executors/shell-safety.d.ts +0 -27
- package/dist-cjs/executors/shell.d.ts +0 -168
- package/dist-cjs/executors/utils.d.ts +0 -20
- package/dist-cjs/executors/web.d.ts +0 -89
- package/dist-cjs/extraction/content-extraction.d.ts +0 -48
- package/dist-cjs/extraction/index.d.ts +0 -4
- package/dist-cjs/headless-control-contract.d.ts +0 -3182
- package/dist-cjs/index.d.ts +0 -62
- package/dist-cjs/local-control-http-auth.d.ts +0 -2
- package/dist-cjs/mcp/client.d.ts +0 -68
- package/dist-cjs/mcp/connection.d.ts +0 -54
- package/dist-cjs/mcp/index.d.ts +0 -10
- package/dist-cjs/mcp/jsonrpc.d.ts +0 -36
- package/dist-cjs/mcp/types.d.ts +0 -178
- package/dist-cjs/network-control-adapter.d.ts +0 -4
- package/dist-cjs/network-runtime/address-types.d.ts +0 -201
- package/dist-cjs/network-runtime/db-owner-fencing.d.ts +0 -43
- package/dist-cjs/network-runtime/delivery-receipts.d.ts +0 -117
- package/dist-cjs/network-runtime/direct-endpoint-authority.d.ts +0 -8
- package/dist-cjs/network-runtime/index.d.ts +0 -24
- package/dist-cjs/network-runtime/local-control-contract.d.ts +0 -758
- package/dist-cjs/network-runtime/node-store-contract.d.ts +0 -49
- package/dist-cjs/network-runtime/pair-route-contract.d.ts +0 -100
- package/dist-cjs/network-runtime/peer-capabilities.d.ts +0 -10
- package/dist-cjs/network-runtime/peer-principal-ref.d.ts +0 -9
- package/dist-cjs/network-runtime/peer-state-machine.d.ts +0 -70
- package/dist-cjs/network-runtime/protocol-schemas.d.ts +0 -328
- package/dist-cjs/network-runtime/runtime-bootstrap-contract.d.ts +0 -81
- package/dist-cjs/outlook/desktop-session.d.ts +0 -68
- package/dist-cjs/policy.d.ts +0 -43
- package/dist-cjs/providers/brave.d.ts +0 -10
- package/dist-cjs/providers/duckduckgo.d.ts +0 -18
- package/dist-cjs/providers/exa.d.ts +0 -10
- package/dist-cjs/providers/firecrawl.d.ts +0 -10
- package/dist-cjs/providers/jina.d.ts +0 -10
- package/dist-cjs/providers/router.d.ts +0 -21
- package/dist-cjs/providers/search-provider.d.ts +0 -35
- package/dist-cjs/providers/tavily.d.ts +0 -10
- package/dist-cjs/quip/desktop-session.d.ts +0 -69
- package/dist-cjs/registry/registry.d.ts +0 -156
- package/dist-cjs/runtime-socket-local-control-client.d.ts +0 -10
- package/dist-cjs/security/dns-normalization.d.ts +0 -6
- package/dist-cjs/security/dns-pinning.d.ts +0 -27
- package/dist-cjs/security/external-content.d.ts +0 -40
- package/dist-cjs/security/ssrf.d.ts +0 -40
- package/dist-cjs/slack/desktop-session.d.ts +0 -69
- package/dist-cjs/tool-factory.d.ts +0 -46
- package/dist-cjs/types.d.ts +0 -1192
- package/dist-cjs/utils/retry.d.ts +0 -11
- package/dist-cjs/utils/safe-parse-json.d.ts +0 -26
- package/dist-cjs/utils/url.d.ts +0 -10
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export { RuntimeOwnerRecordSchema } from "./address-types.js";
|
|
3
|
-
export type { RuntimeOwnerRecord } from "./address-types.js";
|
|
4
|
-
export declare const RuntimeEventKindSchema: z.ZodEnum<{
|
|
5
|
-
client_attached: "client_attached";
|
|
6
|
-
client_detached: "client_detached";
|
|
7
|
-
runtime_started: "runtime_started";
|
|
8
|
-
runtime_stopped: "runtime_stopped";
|
|
9
|
-
runtime_stale: "runtime_stale";
|
|
10
|
-
runtime_restarted: "runtime_restarted";
|
|
11
|
-
pair_proposed: "pair_proposed";
|
|
12
|
-
proof_committed: "proof_committed";
|
|
13
|
-
continuity_bound: "continuity_bound";
|
|
14
|
-
revocation_committed: "revocation_committed";
|
|
15
|
-
ingress_accepted: "ingress_accepted";
|
|
16
|
-
ingress_rejected: "ingress_rejected";
|
|
17
|
-
durable_send_queued: "durable_send_queued";
|
|
18
|
-
durable_send_dispatching: "durable_send_dispatching";
|
|
19
|
-
durable_send_acked: "durable_send_acked";
|
|
20
|
-
durable_send_expired: "durable_send_expired";
|
|
21
|
-
}>;
|
|
22
|
-
export type RuntimeEventKind = z.infer<typeof RuntimeEventKindSchema>;
|
|
23
|
-
export declare const RuntimeEventSchema: z.ZodObject<{
|
|
24
|
-
eventId: z.ZodString;
|
|
25
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
26
|
-
runtimeId: z.core.$ZodBranded<z.ZodString, "RuntimeId", "out">;
|
|
27
|
-
kind: z.ZodEnum<{
|
|
28
|
-
client_attached: "client_attached";
|
|
29
|
-
client_detached: "client_detached";
|
|
30
|
-
runtime_started: "runtime_started";
|
|
31
|
-
runtime_stopped: "runtime_stopped";
|
|
32
|
-
runtime_stale: "runtime_stale";
|
|
33
|
-
runtime_restarted: "runtime_restarted";
|
|
34
|
-
pair_proposed: "pair_proposed";
|
|
35
|
-
proof_committed: "proof_committed";
|
|
36
|
-
continuity_bound: "continuity_bound";
|
|
37
|
-
revocation_committed: "revocation_committed";
|
|
38
|
-
ingress_accepted: "ingress_accepted";
|
|
39
|
-
ingress_rejected: "ingress_rejected";
|
|
40
|
-
durable_send_queued: "durable_send_queued";
|
|
41
|
-
durable_send_dispatching: "durable_send_dispatching";
|
|
42
|
-
durable_send_acked: "durable_send_acked";
|
|
43
|
-
durable_send_expired: "durable_send_expired";
|
|
44
|
-
}>;
|
|
45
|
-
revision: z.ZodOptional<z.ZodNumber>;
|
|
46
|
-
recordedAt: z.ZodString;
|
|
47
|
-
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
48
|
-
}, z.core.$strict>;
|
|
49
|
-
export type RuntimeEvent = z.infer<typeof RuntimeEventSchema>;
|
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export declare const PairRequestRouteBodySchema: z.ZodObject<{
|
|
3
|
-
displayNameSnapshot: z.ZodString;
|
|
4
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
5
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
6
|
-
port: z.ZodNumber;
|
|
7
|
-
ephemeralPublicKey: z.ZodString;
|
|
8
|
-
ephemeralKeySignature: z.ZodString;
|
|
9
|
-
caCert: z.ZodOptional<z.ZodString>;
|
|
10
|
-
protocolVersion: z.ZodOptional<z.ZodNumber>;
|
|
11
|
-
wait: z.ZodOptional<z.ZodBoolean>;
|
|
12
|
-
}, z.core.$strict>;
|
|
13
|
-
export type PairRequestRouteBody = z.infer<typeof PairRequestRouteBodySchema>;
|
|
14
|
-
export declare const PairRequestRouteBodyJsonSchema: Record<string, unknown>;
|
|
15
|
-
export declare const AcceptInviteRequestSchema: z.ZodObject<{
|
|
16
|
-
inviteToken: z.ZodString;
|
|
17
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
18
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
19
|
-
transportEndpoint: z.ZodObject<{
|
|
20
|
-
host: z.ZodString;
|
|
21
|
-
port: z.ZodNumber;
|
|
22
|
-
}, z.core.$strip>;
|
|
23
|
-
controlEndpoint: z.ZodObject<{
|
|
24
|
-
host: z.ZodString;
|
|
25
|
-
port: z.ZodNumber;
|
|
26
|
-
tlsCaFingerprint: z.core.$ZodBranded<z.ZodString, "TlsCaFingerprint", "out">;
|
|
27
|
-
tlsServerIdentity: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
28
|
-
protocolVersion: z.ZodNumber;
|
|
29
|
-
endpointRevision: z.ZodOptional<z.ZodNumber>;
|
|
30
|
-
}, z.core.$strip>;
|
|
31
|
-
continuity: z.ZodOptional<z.ZodObject<{
|
|
32
|
-
statement: z.ZodObject<{
|
|
33
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
34
|
-
previousPrincipalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
35
|
-
newPrincipalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
36
|
-
newTransportPublicKey: z.ZodOptional<z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">>;
|
|
37
|
-
bindingGeneration: z.ZodNumber;
|
|
38
|
-
revocationGeneration: z.ZodOptional<z.ZodNumber>;
|
|
39
|
-
createdAt: z.ZodString;
|
|
40
|
-
}, z.core.$strict>;
|
|
41
|
-
delegationSignature: z.ZodString;
|
|
42
|
-
acceptanceSignature: z.ZodString;
|
|
43
|
-
previousPublicKey: z.ZodString;
|
|
44
|
-
newPublicKey: z.ZodString;
|
|
45
|
-
}, z.core.$strict>>;
|
|
46
|
-
}, z.core.$strict>;
|
|
47
|
-
export type AcceptInviteRequest = z.infer<typeof AcceptInviteRequestSchema>;
|
|
48
|
-
export declare const AcceptInviteRequestBodyJsonSchema: Record<string, unknown>;
|
|
49
|
-
export declare const PairRelayRouteBodySchema: z.ZodObject<{
|
|
50
|
-
targetNodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
51
|
-
displayNameSnapshot: z.ZodString;
|
|
52
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
53
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
54
|
-
port: z.ZodNumber;
|
|
55
|
-
ephemeralPublicKey: z.ZodString;
|
|
56
|
-
ephemeralKeySignature: z.ZodString;
|
|
57
|
-
caCert: z.ZodOptional<z.ZodString>;
|
|
58
|
-
}, z.core.$strict>;
|
|
59
|
-
export type PairRelayRouteBody = z.infer<typeof PairRelayRouteBodySchema>;
|
|
60
|
-
export declare const PairRelayRouteBodyJsonSchema: Record<string, unknown>;
|
|
61
|
-
export declare const RelayPendingQuerySchema: z.ZodObject<{
|
|
62
|
-
targetNodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
63
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
64
|
-
signature: z.ZodString;
|
|
65
|
-
timestamp: z.ZodString;
|
|
66
|
-
}, z.core.$strict>;
|
|
67
|
-
export type RelayPendingQuery = z.infer<typeof RelayPendingQuerySchema>;
|
|
68
|
-
export declare const RelayPendingQueryJsonSchema: Record<string, unknown>;
|
|
69
|
-
export declare const RelayPendingRequestSchema: z.ZodObject<{
|
|
70
|
-
id: z.ZodString;
|
|
71
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
72
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
73
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
74
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
75
|
-
port: z.ZodNumber;
|
|
76
|
-
ingressHost: z.ZodString;
|
|
77
|
-
responderControlHostHint: z.ZodOptional<z.ZodString>;
|
|
78
|
-
ephemeralPublicKey: z.ZodOptional<z.ZodString>;
|
|
79
|
-
ephemeralKeySignature: z.ZodOptional<z.ZodString>;
|
|
80
|
-
caCert: z.ZodOptional<z.ZodString>;
|
|
81
|
-
expiresAt: z.ZodNumber;
|
|
82
|
-
}, z.core.$strict>;
|
|
83
|
-
export type RelayPendingRequest = z.infer<typeof RelayPendingRequestSchema>;
|
|
84
|
-
export declare const RelayPendingResponseSchema: z.ZodObject<{
|
|
85
|
-
requests: z.ZodArray<z.ZodObject<{
|
|
86
|
-
id: z.ZodString;
|
|
87
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
88
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
89
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
90
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
91
|
-
port: z.ZodNumber;
|
|
92
|
-
ingressHost: z.ZodString;
|
|
93
|
-
responderControlHostHint: z.ZodOptional<z.ZodString>;
|
|
94
|
-
ephemeralPublicKey: z.ZodOptional<z.ZodString>;
|
|
95
|
-
ephemeralKeySignature: z.ZodOptional<z.ZodString>;
|
|
96
|
-
caCert: z.ZodOptional<z.ZodString>;
|
|
97
|
-
expiresAt: z.ZodNumber;
|
|
98
|
-
}, z.core.$strict>>;
|
|
99
|
-
}, z.core.$strict>;
|
|
100
|
-
export type RelayPendingResponse = z.infer<typeof RelayPendingResponseSchema>;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { PeerIdentityState, PeerTransportState } from "./peer-state-machine.js";
|
|
2
|
-
export declare function canRecordPendingPair(identityState: PeerIdentityState): boolean;
|
|
3
|
-
export declare function canCommitVerifiedPair(identityState: PeerIdentityState, proof: {
|
|
4
|
-
proofValid: boolean;
|
|
5
|
-
}): boolean;
|
|
6
|
-
export declare function canRefreshEndpoint(identityState: PeerIdentityState): boolean;
|
|
7
|
-
export declare function canHeartbeat(identityState: PeerIdentityState): boolean;
|
|
8
|
-
export declare function canAttemptBestEffortTransport(identityState: PeerIdentityState, transportState: PeerTransportState): boolean;
|
|
9
|
-
export declare function canAttemptDurableDelivery(identityState: PeerIdentityState, transportState: PeerTransportState): boolean;
|
|
10
|
-
export declare function canMutateTrustedState(identityState: PeerIdentityState): boolean;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export declare const NodePrincipalBindingRefSchema: z.ZodObject<{
|
|
3
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
4
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
5
|
-
transportPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
6
|
-
bindingGeneration: z.ZodNumber;
|
|
7
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
8
|
-
}, z.core.$strict>;
|
|
9
|
-
export type NodePrincipalBindingRef = z.infer<typeof NodePrincipalBindingRefSchema>;
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export declare const LegacyPeerRegistryStatusSchema: z.ZodEnum<{
|
|
3
|
-
pending: "pending";
|
|
4
|
-
active: "active";
|
|
5
|
-
pending_tunnel: "pending_tunnel";
|
|
6
|
-
pending_verification: "pending_verification";
|
|
7
|
-
revoked: "revoked";
|
|
8
|
-
}>;
|
|
9
|
-
export type LegacyPeerRegistryStatus = z.infer<typeof LegacyPeerRegistryStatusSchema>;
|
|
10
|
-
export declare const PeerIdentityStateSchema: z.ZodEnum<{
|
|
11
|
-
revoked: "revoked";
|
|
12
|
-
invited: "invited";
|
|
13
|
-
joining: "joining";
|
|
14
|
-
paired_unverified: "paired_unverified";
|
|
15
|
-
verified: "verified";
|
|
16
|
-
}>;
|
|
17
|
-
export type PeerIdentityState = z.infer<typeof PeerIdentityStateSchema>;
|
|
18
|
-
export declare const PeerTransportStateSchema: z.ZodEnum<{
|
|
19
|
-
unknown: "unknown";
|
|
20
|
-
connected: "connected";
|
|
21
|
-
endpoint_known: "endpoint_known";
|
|
22
|
-
connecting: "connecting";
|
|
23
|
-
degraded: "degraded";
|
|
24
|
-
disconnected: "disconnected";
|
|
25
|
-
}>;
|
|
26
|
-
export type PeerTransportState = z.infer<typeof PeerTransportStateSchema>;
|
|
27
|
-
export declare const PeerMutationKindSchema: z.ZodEnum<{
|
|
28
|
-
continuity: "continuity";
|
|
29
|
-
repair: "repair";
|
|
30
|
-
revocation: "revocation";
|
|
31
|
-
}>;
|
|
32
|
-
export type PeerMutationKind = z.infer<typeof PeerMutationKindSchema>;
|
|
33
|
-
export declare const LegacyPeerRuntimeShapeSchema: z.ZodObject<{
|
|
34
|
-
status: z.ZodEnum<{
|
|
35
|
-
pending: "pending";
|
|
36
|
-
active: "active";
|
|
37
|
-
pending_tunnel: "pending_tunnel";
|
|
38
|
-
pending_verification: "pending_verification";
|
|
39
|
-
revoked: "revoked";
|
|
40
|
-
}>;
|
|
41
|
-
endpointHost: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
42
|
-
endpointPort: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
43
|
-
lastHandshake: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
44
|
-
}, z.core.$strip>;
|
|
45
|
-
export type LegacyPeerRuntimeShape = z.infer<typeof LegacyPeerRuntimeShapeSchema>;
|
|
46
|
-
export declare function isValidPeerStateCombination(identityState: PeerIdentityState, transportState: PeerTransportState): boolean;
|
|
47
|
-
export declare const PeerStateSnapshotSchema: z.ZodObject<{
|
|
48
|
-
identityState: z.ZodEnum<{
|
|
49
|
-
revoked: "revoked";
|
|
50
|
-
invited: "invited";
|
|
51
|
-
joining: "joining";
|
|
52
|
-
paired_unverified: "paired_unverified";
|
|
53
|
-
verified: "verified";
|
|
54
|
-
}>;
|
|
55
|
-
transportState: z.ZodEnum<{
|
|
56
|
-
unknown: "unknown";
|
|
57
|
-
connected: "connected";
|
|
58
|
-
endpoint_known: "endpoint_known";
|
|
59
|
-
connecting: "connecting";
|
|
60
|
-
degraded: "degraded";
|
|
61
|
-
disconnected: "disconnected";
|
|
62
|
-
}>;
|
|
63
|
-
}, z.core.$strip>;
|
|
64
|
-
export type PeerStateSnapshot = z.infer<typeof PeerStateSnapshotSchema>;
|
|
65
|
-
export declare function derivePeerStateFromLegacyStatus(input: LegacyPeerRuntimeShape): PeerStateSnapshot;
|
|
66
|
-
export declare function isValidPeerIdentityTransition(from: PeerIdentityState, to: PeerIdentityState, options?: {
|
|
67
|
-
viaContinuity?: boolean;
|
|
68
|
-
}): boolean;
|
|
69
|
-
export declare function isValidPeerTransportTransition(from: PeerTransportState, to: PeerTransportState): boolean;
|
|
70
|
-
export declare function comparePeerMutationPrecedence(left: PeerMutationKind, right: PeerMutationKind): number;
|
|
@@ -1,328 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export { RuntimeEventKindSchema, RuntimeEventSchema, type RuntimeEventKind, type RuntimeEvent, } from "./node-store-contract.js";
|
|
3
|
-
export declare const NETWORK_RUNTIME_PROTOCOL_VERSION: 1;
|
|
4
|
-
export declare const NetworkRuntimeProtocolVersionSchema: z.ZodLiteral<1>;
|
|
5
|
-
export type NetworkRuntimeProtocolVersion = z.infer<typeof NetworkRuntimeProtocolVersionSchema>;
|
|
6
|
-
export declare function isSupportedNetworkRuntimeProtocolVersion(version: number | undefined): version is NetworkRuntimeProtocolVersion;
|
|
7
|
-
export declare function assertSupportedNetworkRuntimeProtocolVersion(version: number | undefined, context?: string): NetworkRuntimeProtocolVersion;
|
|
8
|
-
/**
|
|
9
|
-
* Shared delivery-ack wire contract.
|
|
10
|
-
* Durable settlement is keyed by stable peer identity, not display-name strings.
|
|
11
|
-
*/
|
|
12
|
-
export declare const DeliveryAckSchema: z.ZodObject<{
|
|
13
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
14
|
-
messageId: z.ZodString;
|
|
15
|
-
senderNodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
16
|
-
recipientNodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
17
|
-
storedAt: z.ZodNumber;
|
|
18
|
-
}, z.core.$strict>;
|
|
19
|
-
export type DeliveryAck = z.infer<typeof DeliveryAckSchema>;
|
|
20
|
-
export declare const TransportInviteTokenSchema: z.ZodObject<{
|
|
21
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
22
|
-
audienceNodeId: z.ZodOptional<z.core.$ZodBranded<z.ZodString, "NodeId", "out">>;
|
|
23
|
-
publicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
24
|
-
leaderDisplayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
25
|
-
host: z.ZodString;
|
|
26
|
-
port: z.ZodNumber;
|
|
27
|
-
controlEndpoint: z.ZodOptional<z.ZodObject<{
|
|
28
|
-
host: z.ZodString;
|
|
29
|
-
port: z.ZodNumber;
|
|
30
|
-
tlsCaFingerprint: z.core.$ZodBranded<z.ZodString, "TlsCaFingerprint", "out">;
|
|
31
|
-
tlsServerIdentity: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
32
|
-
protocolVersion: z.ZodNumber;
|
|
33
|
-
endpointRevision: z.ZodOptional<z.ZodNumber>;
|
|
34
|
-
}, z.core.$strip>>;
|
|
35
|
-
psk: z.ZodString;
|
|
36
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
37
|
-
signingPublicKey: z.ZodOptional<z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">>;
|
|
38
|
-
caCert: z.ZodOptional<z.ZodString>;
|
|
39
|
-
createdAt: z.ZodNumber;
|
|
40
|
-
expiresAt: z.ZodNumber;
|
|
41
|
-
tokenNonce: z.ZodString;
|
|
42
|
-
coordinationUrl: z.ZodOptional<z.ZodString>;
|
|
43
|
-
networkId: z.ZodOptional<z.ZodString>;
|
|
44
|
-
}, z.core.$strict>;
|
|
45
|
-
export type TransportInviteToken = z.infer<typeof TransportInviteTokenSchema>;
|
|
46
|
-
export declare const JoinRequestSchema: z.ZodObject<{
|
|
47
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
48
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
49
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
50
|
-
peerPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
51
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
52
|
-
transportEndpoint: z.ZodObject<{
|
|
53
|
-
host: z.ZodString;
|
|
54
|
-
port: z.ZodNumber;
|
|
55
|
-
}, z.core.$strip>;
|
|
56
|
-
controlEndpoint: z.ZodOptional<z.ZodObject<{
|
|
57
|
-
host: z.ZodString;
|
|
58
|
-
port: z.ZodNumber;
|
|
59
|
-
tlsCaFingerprint: z.core.$ZodBranded<z.ZodString, "TlsCaFingerprint", "out">;
|
|
60
|
-
tlsServerIdentity: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
61
|
-
protocolVersion: z.ZodNumber;
|
|
62
|
-
endpointRevision: z.ZodOptional<z.ZodNumber>;
|
|
63
|
-
}, z.core.$strip>>;
|
|
64
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
65
|
-
inviteTokenNonce: z.ZodString;
|
|
66
|
-
}, z.core.$strict>;
|
|
67
|
-
export type JoinRequest = z.infer<typeof JoinRequestSchema>;
|
|
68
|
-
export declare const JoinRouteBodySchema: z.ZodObject<{
|
|
69
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
70
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
71
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
72
|
-
peerPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
73
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
74
|
-
transportEndpoint: z.ZodObject<{
|
|
75
|
-
host: z.ZodString;
|
|
76
|
-
port: z.ZodNumber;
|
|
77
|
-
}, z.core.$strip>;
|
|
78
|
-
controlEndpoint: z.ZodOptional<z.ZodObject<{
|
|
79
|
-
host: z.ZodString;
|
|
80
|
-
port: z.ZodNumber;
|
|
81
|
-
tlsCaFingerprint: z.core.$ZodBranded<z.ZodString, "TlsCaFingerprint", "out">;
|
|
82
|
-
tlsServerIdentity: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
83
|
-
protocolVersion: z.ZodNumber;
|
|
84
|
-
endpointRevision: z.ZodOptional<z.ZodNumber>;
|
|
85
|
-
}, z.core.$strip>>;
|
|
86
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
87
|
-
inviteTokenNonce: z.ZodString;
|
|
88
|
-
proofOfWork: z.ZodString;
|
|
89
|
-
}, z.core.$strict>;
|
|
90
|
-
export type JoinRouteBody = z.infer<typeof JoinRouteBodySchema>;
|
|
91
|
-
export declare const JoinRouteBodyJsonSchema: Record<string, unknown>;
|
|
92
|
-
export declare const RuntimeIngressEnvelopeSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
93
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
94
|
-
deliveryAck: z.ZodObject<{
|
|
95
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
96
|
-
messageId: z.ZodString;
|
|
97
|
-
senderNodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
98
|
-
recipientNodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
99
|
-
storedAt: z.ZodNumber;
|
|
100
|
-
}, z.core.$strict>;
|
|
101
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
102
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
103
|
-
ariaMessage: z.ZodUnknown;
|
|
104
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
105
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
106
|
-
joinRequest: z.ZodObject<{
|
|
107
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
108
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
109
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
110
|
-
peerPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
111
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
112
|
-
transportEndpoint: z.ZodObject<{
|
|
113
|
-
host: z.ZodString;
|
|
114
|
-
port: z.ZodNumber;
|
|
115
|
-
}, z.core.$strip>;
|
|
116
|
-
controlEndpoint: z.ZodOptional<z.ZodObject<{
|
|
117
|
-
host: z.ZodString;
|
|
118
|
-
port: z.ZodNumber;
|
|
119
|
-
tlsCaFingerprint: z.core.$ZodBranded<z.ZodString, "TlsCaFingerprint", "out">;
|
|
120
|
-
tlsServerIdentity: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
121
|
-
protocolVersion: z.ZodNumber;
|
|
122
|
-
endpointRevision: z.ZodOptional<z.ZodNumber>;
|
|
123
|
-
}, z.core.$strip>>;
|
|
124
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
125
|
-
inviteTokenNonce: z.ZodString;
|
|
126
|
-
}, z.core.$strict>;
|
|
127
|
-
}, z.core.$strict>]>;
|
|
128
|
-
export type RuntimeIngressEnvelope = z.infer<typeof RuntimeIngressEnvelopeSchema>;
|
|
129
|
-
export declare const RuntimeNodeAdvertisementSchema: z.ZodObject<{
|
|
130
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
131
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
132
|
-
transportPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
133
|
-
controlEndpoint: z.ZodOptional<z.ZodObject<{
|
|
134
|
-
host: z.ZodString;
|
|
135
|
-
port: z.ZodNumber;
|
|
136
|
-
tlsCaFingerprint: z.core.$ZodBranded<z.ZodString, "TlsCaFingerprint", "out">;
|
|
137
|
-
tlsServerIdentity: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
138
|
-
protocolVersion: z.ZodNumber;
|
|
139
|
-
endpointRevision: z.ZodOptional<z.ZodNumber>;
|
|
140
|
-
}, z.core.$strip>>;
|
|
141
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
142
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
143
|
-
publicationRevision: z.ZodNumber;
|
|
144
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
145
|
-
transportEndpoint: z.ZodObject<{
|
|
146
|
-
host: z.ZodString;
|
|
147
|
-
port: z.ZodNumber;
|
|
148
|
-
}, z.core.$strip>;
|
|
149
|
-
advertisedHosts: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
150
|
-
}, z.core.$strict>;
|
|
151
|
-
export type RuntimeNodeAdvertisement = z.infer<typeof RuntimeNodeAdvertisementSchema>;
|
|
152
|
-
export declare const RuntimeDiscoveryAdvertisementSchema: z.ZodObject<{
|
|
153
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
154
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
155
|
-
displayNameSnapshot: z.ZodString;
|
|
156
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
157
|
-
controlPort: z.ZodNumber;
|
|
158
|
-
advertisedHosts: z.ZodArray<z.ZodString>;
|
|
159
|
-
tlsCaFingerprint: z.ZodOptional<z.ZodString>;
|
|
160
|
-
}, z.core.$strict>;
|
|
161
|
-
export type RuntimeDiscoveryAdvertisement = z.infer<typeof RuntimeDiscoveryAdvertisementSchema>;
|
|
162
|
-
export declare const RuntimeRegisterRequestSchema: z.ZodObject<{
|
|
163
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
164
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
165
|
-
transportPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
166
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
167
|
-
endpointRevision: z.ZodNumber;
|
|
168
|
-
controlEndpoint: z.ZodOptional<z.ZodObject<{
|
|
169
|
-
host: z.ZodString;
|
|
170
|
-
port: z.ZodNumber;
|
|
171
|
-
tlsCaFingerprint: z.core.$ZodBranded<z.ZodString, "TlsCaFingerprint", "out">;
|
|
172
|
-
tlsServerIdentity: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
173
|
-
protocolVersion: z.ZodNumber;
|
|
174
|
-
endpointRevision: z.ZodOptional<z.ZodNumber>;
|
|
175
|
-
}, z.core.$strip>>;
|
|
176
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
177
|
-
}, z.core.$strict>;
|
|
178
|
-
export type RuntimeRegisterRequest = z.infer<typeof RuntimeRegisterRequestSchema>;
|
|
179
|
-
export declare const PairProposalSchema: z.ZodObject<{
|
|
180
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
181
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
182
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
183
|
-
transportPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
184
|
-
controlEndpoint: z.ZodOptional<z.ZodObject<{
|
|
185
|
-
host: z.ZodString;
|
|
186
|
-
port: z.ZodNumber;
|
|
187
|
-
tlsCaFingerprint: z.core.$ZodBranded<z.ZodString, "TlsCaFingerprint", "out">;
|
|
188
|
-
tlsServerIdentity: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
189
|
-
protocolVersion: z.ZodNumber;
|
|
190
|
-
endpointRevision: z.ZodOptional<z.ZodNumber>;
|
|
191
|
-
}, z.core.$strip>>;
|
|
192
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
193
|
-
presharedKey: z.ZodString;
|
|
194
|
-
}, z.core.$strict>;
|
|
195
|
-
export type PairProposal = z.infer<typeof PairProposalSchema>;
|
|
196
|
-
/**
|
|
197
|
-
* Canonical statement of a continuity bind transition.
|
|
198
|
-
* This is the byte-exact payload that both parties sign.
|
|
199
|
-
*/
|
|
200
|
-
export declare const ContinuityStatementSchema: z.ZodObject<{
|
|
201
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
202
|
-
previousPrincipalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
203
|
-
newPrincipalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
204
|
-
newTransportPublicKey: z.ZodOptional<z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">>;
|
|
205
|
-
bindingGeneration: z.ZodNumber;
|
|
206
|
-
revocationGeneration: z.ZodOptional<z.ZodNumber>;
|
|
207
|
-
createdAt: z.ZodString;
|
|
208
|
-
}, z.core.$strict>;
|
|
209
|
-
export type ContinuityStatement = z.infer<typeof ContinuityStatementSchema>;
|
|
210
|
-
/**
|
|
211
|
-
* Dual-signed continuity bind: delegation (previous principal) + acceptance
|
|
212
|
-
* (new principal). Both public keys are included for independent verification.
|
|
213
|
-
*/
|
|
214
|
-
export declare const SignedContinuityBindSchema: z.ZodObject<{
|
|
215
|
-
statement: z.ZodObject<{
|
|
216
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
217
|
-
previousPrincipalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
218
|
-
newPrincipalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
219
|
-
newTransportPublicKey: z.ZodOptional<z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">>;
|
|
220
|
-
bindingGeneration: z.ZodNumber;
|
|
221
|
-
revocationGeneration: z.ZodOptional<z.ZodNumber>;
|
|
222
|
-
createdAt: z.ZodString;
|
|
223
|
-
}, z.core.$strict>;
|
|
224
|
-
delegationSignature: z.ZodString;
|
|
225
|
-
acceptanceSignature: z.ZodString;
|
|
226
|
-
previousPublicKey: z.ZodString;
|
|
227
|
-
newPublicKey: z.ZodString;
|
|
228
|
-
}, z.core.$strict>;
|
|
229
|
-
export type SignedContinuityBind = z.infer<typeof SignedContinuityBindSchema>;
|
|
230
|
-
export declare const MutationOperationSchema: z.ZodEnum<{
|
|
231
|
-
"network.register": "network.register";
|
|
232
|
-
"network.revoke": "network.revoke";
|
|
233
|
-
"network.list_peers": "network.list_peers";
|
|
234
|
-
"pair.direct": "pair.direct";
|
|
235
|
-
"pair.relay": "pair.relay";
|
|
236
|
-
"pair.relay_response": "pair.relay_response";
|
|
237
|
-
"peer.update_capabilities": "peer.update_capabilities";
|
|
238
|
-
"peer.update_trust_tier": "peer.update_trust_tier";
|
|
239
|
-
}>;
|
|
240
|
-
export type MutationOperation = z.infer<typeof MutationOperationSchema>;
|
|
241
|
-
export declare const MutationEnvelopeSchema: z.ZodObject<{
|
|
242
|
-
version: z.ZodLiteral<1>;
|
|
243
|
-
id: z.ZodString;
|
|
244
|
-
operation: z.ZodEnum<{
|
|
245
|
-
"network.register": "network.register";
|
|
246
|
-
"network.revoke": "network.revoke";
|
|
247
|
-
"network.list_peers": "network.list_peers";
|
|
248
|
-
"pair.direct": "pair.direct";
|
|
249
|
-
"pair.relay": "pair.relay";
|
|
250
|
-
"pair.relay_response": "pair.relay_response";
|
|
251
|
-
"peer.update_capabilities": "peer.update_capabilities";
|
|
252
|
-
"peer.update_trust_tier": "peer.update_trust_tier";
|
|
253
|
-
}>;
|
|
254
|
-
principal: z.ZodObject<{
|
|
255
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
256
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
257
|
-
transportPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
258
|
-
bindingGeneration: z.ZodNumber;
|
|
259
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
260
|
-
}, z.core.$strict>;
|
|
261
|
-
target: z.ZodObject<{
|
|
262
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
263
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
264
|
-
transportPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
265
|
-
bindingGeneration: z.ZodNumber;
|
|
266
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
267
|
-
}, z.core.$strict>;
|
|
268
|
-
namespace: z.ZodString;
|
|
269
|
-
policyEpoch: z.ZodNumber;
|
|
270
|
-
nonce: z.ZodString;
|
|
271
|
-
timestamp: z.ZodNumber;
|
|
272
|
-
ttl: z.ZodNumber;
|
|
273
|
-
contextHash: z.ZodString;
|
|
274
|
-
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
275
|
-
signature: z.ZodString;
|
|
276
|
-
method: z.ZodOptional<z.ZodString>;
|
|
277
|
-
path: z.ZodOptional<z.ZodString>;
|
|
278
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
279
|
-
reason: z.ZodOptional<z.ZodString>;
|
|
280
|
-
parentEnvelopeId: z.ZodOptional<z.ZodString>;
|
|
281
|
-
}, z.core.$strict>;
|
|
282
|
-
export type MutationEnvelope = z.infer<typeof MutationEnvelopeSchema>;
|
|
283
|
-
export declare const NetworkRouteRevokeRequestSchema: z.ZodObject<{
|
|
284
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
285
|
-
envelope: z.ZodObject<{
|
|
286
|
-
version: z.ZodLiteral<1>;
|
|
287
|
-
id: z.ZodString;
|
|
288
|
-
operation: z.ZodEnum<{
|
|
289
|
-
"network.register": "network.register";
|
|
290
|
-
"network.revoke": "network.revoke";
|
|
291
|
-
"network.list_peers": "network.list_peers";
|
|
292
|
-
"pair.direct": "pair.direct";
|
|
293
|
-
"pair.relay": "pair.relay";
|
|
294
|
-
"pair.relay_response": "pair.relay_response";
|
|
295
|
-
"peer.update_capabilities": "peer.update_capabilities";
|
|
296
|
-
"peer.update_trust_tier": "peer.update_trust_tier";
|
|
297
|
-
}>;
|
|
298
|
-
principal: z.ZodObject<{
|
|
299
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
300
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
301
|
-
transportPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
302
|
-
bindingGeneration: z.ZodNumber;
|
|
303
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
304
|
-
}, z.core.$strict>;
|
|
305
|
-
target: z.ZodObject<{
|
|
306
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
307
|
-
principalFingerprint: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
308
|
-
transportPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
309
|
-
bindingGeneration: z.ZodNumber;
|
|
310
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
311
|
-
}, z.core.$strict>;
|
|
312
|
-
namespace: z.ZodString;
|
|
313
|
-
policyEpoch: z.ZodNumber;
|
|
314
|
-
nonce: z.ZodString;
|
|
315
|
-
timestamp: z.ZodNumber;
|
|
316
|
-
ttl: z.ZodNumber;
|
|
317
|
-
contextHash: z.ZodString;
|
|
318
|
-
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
319
|
-
signature: z.ZodString;
|
|
320
|
-
method: z.ZodOptional<z.ZodString>;
|
|
321
|
-
path: z.ZodOptional<z.ZodString>;
|
|
322
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
323
|
-
reason: z.ZodOptional<z.ZodString>;
|
|
324
|
-
parentEnvelopeId: z.ZodOptional<z.ZodString>;
|
|
325
|
-
}, z.core.$strict>;
|
|
326
|
-
}, z.core.$strict>;
|
|
327
|
-
export type NetworkRouteRevokeRequest = z.infer<typeof NetworkRouteRevokeRequestSchema>;
|
|
328
|
-
export declare const NetworkRouteRevokeRequestJsonSchema: Record<string, unknown>;
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export declare const RuntimeBootstrapRevisionSchema: z.ZodNumber;
|
|
3
|
-
export type RuntimeBootstrapRevision = z.infer<typeof RuntimeBootstrapRevisionSchema>;
|
|
4
|
-
export declare const RuntimeBootstrapPhaseSchema: z.ZodEnum<{
|
|
5
|
-
degraded: "degraded";
|
|
6
|
-
stopped: "stopped";
|
|
7
|
-
starting: "starting";
|
|
8
|
-
tls_bound: "tls_bound";
|
|
9
|
-
control_ready: "control_ready";
|
|
10
|
-
network_ready: "network_ready";
|
|
11
|
-
mesh_ready: "mesh_ready";
|
|
12
|
-
}>;
|
|
13
|
-
export type RuntimeBootstrapPhase = z.infer<typeof RuntimeBootstrapPhaseSchema>;
|
|
14
|
-
export declare const RuntimeBootstrapControlEndpointSchema: z.ZodObject<{
|
|
15
|
-
host: z.ZodString;
|
|
16
|
-
port: z.ZodNumber;
|
|
17
|
-
}, z.core.$strict>;
|
|
18
|
-
export type RuntimeBootstrapControlEndpoint = z.infer<typeof RuntimeBootstrapControlEndpointSchema>;
|
|
19
|
-
export declare const RuntimeBootstrapTlsSchema: z.ZodObject<{
|
|
20
|
-
caFingerprint: z.core.$ZodBranded<z.ZodString, "TlsCaFingerprint", "out">;
|
|
21
|
-
caCertPem: z.ZodString;
|
|
22
|
-
principalIdentity: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
23
|
-
loopbackIdentity: z.core.$ZodBranded<z.ZodString, "LoopbackTlsIdentity", "out">;
|
|
24
|
-
}, z.core.$strict>;
|
|
25
|
-
export type RuntimeBootstrapTls = z.infer<typeof RuntimeBootstrapTlsSchema>;
|
|
26
|
-
export declare const RuntimeBootstrapIdentitySchema: z.ZodObject<{
|
|
27
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
28
|
-
transportPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
29
|
-
transportEndpoint: z.ZodObject<{
|
|
30
|
-
host: z.ZodString;
|
|
31
|
-
port: z.ZodNumber;
|
|
32
|
-
}, z.core.$strip>;
|
|
33
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
34
|
-
}, z.core.$strict>;
|
|
35
|
-
export type RuntimeBootstrapIdentity = z.infer<typeof RuntimeBootstrapIdentitySchema>;
|
|
36
|
-
export declare const RuntimeBootstrapRecordSchema: z.ZodObject<{
|
|
37
|
-
nodeId: z.core.$ZodBranded<z.ZodString, "NodeId", "out">;
|
|
38
|
-
runtimeId: z.core.$ZodBranded<z.ZodString, "RuntimeId", "out">;
|
|
39
|
-
arionName: z.ZodOptional<z.ZodString>;
|
|
40
|
-
ownerGeneration: z.ZodNumber;
|
|
41
|
-
bootstrapRevision: z.ZodNumber;
|
|
42
|
-
phase: z.ZodEnum<{
|
|
43
|
-
degraded: "degraded";
|
|
44
|
-
stopped: "stopped";
|
|
45
|
-
starting: "starting";
|
|
46
|
-
tls_bound: "tls_bound";
|
|
47
|
-
control_ready: "control_ready";
|
|
48
|
-
network_ready: "network_ready";
|
|
49
|
-
mesh_ready: "mesh_ready";
|
|
50
|
-
}>;
|
|
51
|
-
protocolVersion: z.ZodLiteral<1>;
|
|
52
|
-
controlEndpoint: z.ZodObject<{
|
|
53
|
-
host: z.ZodString;
|
|
54
|
-
port: z.ZodNumber;
|
|
55
|
-
}, z.core.$strict>;
|
|
56
|
-
displayNameSnapshot: z.ZodOptional<z.ZodString>;
|
|
57
|
-
signingPublicKey: z.core.$ZodBranded<z.ZodString, "SigningPublicKey", "out">;
|
|
58
|
-
transportPublicKey: z.core.$ZodBranded<z.ZodString, "PeerTransportId", "out">;
|
|
59
|
-
transportEndpoint: z.ZodObject<{
|
|
60
|
-
host: z.ZodString;
|
|
61
|
-
port: z.ZodNumber;
|
|
62
|
-
}, z.core.$strip>;
|
|
63
|
-
tls: z.ZodObject<{
|
|
64
|
-
caFingerprint: z.core.$ZodBranded<z.ZodString, "TlsCaFingerprint", "out">;
|
|
65
|
-
caCertPem: z.ZodString;
|
|
66
|
-
principalIdentity: z.core.$ZodBranded<z.ZodString, "PrincipalFingerprint", "out">;
|
|
67
|
-
loopbackIdentity: z.core.$ZodBranded<z.ZodString, "LoopbackTlsIdentity", "out">;
|
|
68
|
-
}, z.core.$strict>;
|
|
69
|
-
publishedAt: z.ZodString;
|
|
70
|
-
degradedReason: z.ZodOptional<z.ZodString>;
|
|
71
|
-
failedPhase: z.ZodOptional<z.ZodEnum<{
|
|
72
|
-
degraded: "degraded";
|
|
73
|
-
stopped: "stopped";
|
|
74
|
-
starting: "starting";
|
|
75
|
-
tls_bound: "tls_bound";
|
|
76
|
-
control_ready: "control_ready";
|
|
77
|
-
network_ready: "network_ready";
|
|
78
|
-
mesh_ready: "mesh_ready";
|
|
79
|
-
}>>;
|
|
80
|
-
}, z.core.$strict>;
|
|
81
|
-
export type RuntimeBootstrapRecord = z.infer<typeof RuntimeBootstrapRecordSchema>;
|