deskforge 1.0.0
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/.vscode/settings.json +3 -0
- package/README.md +547 -0
- package/examples/deskforge-app/App.ts +50 -0
- package/examples/deskforge-app/README.md +80 -0
- package/examples/deskforge-app/app.json +10 -0
- package/examples/deskforge-app/dist/App.d.ts +1 -0
- package/examples/deskforge-app/dist/App.js +100 -0
- package/examples/deskforge-app/dist/App.js.map +1 -0
- package/examples/deskforge-app/dist/deskforge-app-details.png +0 -0
- package/examples/deskforge-app/dist/deskforge-app-home.png +0 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/App.d.ts +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/App.js +74 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/App.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Details.d.ts +9 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Details.js +14 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Details.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Home.d.ts +9 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Home.js +13 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Home.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/index.d.ts +2 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/index.js +13 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/index.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/Responsive.d.ts +38 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/Responsive.js +61 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/Responsive.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/index.d.ts +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/index.js +18 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/easing.d.ts +22 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/easing.js +91 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/easing.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/index.d.ts +3 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/index.js +26 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/interpolate.d.ts +6 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/interpolate.js +83 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/interpolate.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/spring.d.ts +20 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/spring.js +79 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/spring.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/component/component.d.ts +5 -0
- package/examples/deskforge-app/dist/packages/core/src/component/component.js +14 -0
- package/examples/deskforge-app/dist/packages/core/src/component/component.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/component/index.d.ts +1 -0
- package/examples/deskforge-app/dist/packages/core/src/component/index.js +18 -0
- package/examples/deskforge-app/dist/packages/core/src/component/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/index.d.ts +5 -0
- package/examples/deskforge-app/dist/packages/core/src/index.js +30 -0
- package/examples/deskforge-app/dist/packages/core/src/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/index.d.ts +1 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/index.js +20 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/scheduler.d.ts +11 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/scheduler.js +61 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/scheduler.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/diff.d.ts +16 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/diff.js +67 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/diff.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/index.d.ts +3 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/index.js +23 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/node.d.ts +12 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/node.js +59 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/node.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/tree.d.ts +10 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/tree.js +43 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/tree.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/canvas.d.ts +23 -0
- package/examples/deskforge-app/dist/packages/renderer/src/canvas.js +38 -0
- package/examples/deskforge-app/dist/packages/renderer/src/canvas.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/context.d.ts +33 -0
- package/examples/deskforge-app/dist/packages/renderer/src/context.js +45 -0
- package/examples/deskforge-app/dist/packages/renderer/src/context.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/dirty-region.d.ts +42 -0
- package/examples/deskforge-app/dist/packages/renderer/src/dirty-region.js +106 -0
- package/examples/deskforge-app/dist/packages/renderer/src/dirty-region.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/engine.d.ts +56 -0
- package/examples/deskforge-app/dist/packages/renderer/src/engine.js +95 -0
- package/examples/deskforge-app/dist/packages/renderer/src/engine.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/filters.d.ts +22 -0
- package/examples/deskforge-app/dist/packages/renderer/src/filters.js +41 -0
- package/examples/deskforge-app/dist/packages/renderer/src/filters.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/index.d.ts +15 -0
- package/examples/deskforge-app/dist/packages/renderer/src/index.js +34 -0
- package/examples/deskforge-app/dist/packages/renderer/src/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/painter.d.ts +26 -0
- package/examples/deskforge-app/dist/packages/renderer/src/painter.js +127 -0
- package/examples/deskforge-app/dist/packages/renderer/src/painter.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/renderer.d.ts +71 -0
- package/examples/deskforge-app/dist/packages/renderer/src/renderer.js +120 -0
- package/examples/deskforge-app/dist/packages/renderer/src/renderer.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/svg-export.d.ts +47 -0
- package/examples/deskforge-app/dist/packages/renderer/src/svg-export.js +125 -0
- package/examples/deskforge-app/dist/packages/renderer/src/svg-export.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/app.d.ts +9 -0
- package/examples/deskforge-app/dist/packages/router/src/app.js +12 -0
- package/examples/deskforge-app/dist/packages/router/src/app.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/file-router.d.ts +35 -0
- package/examples/deskforge-app/dist/packages/router/src/file-router.js +145 -0
- package/examples/deskforge-app/dist/packages/router/src/file-router.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/index.d.ts +5 -0
- package/examples/deskforge-app/dist/packages/router/src/index.js +24 -0
- package/examples/deskforge-app/dist/packages/router/src/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/manifest.d.ts +9 -0
- package/examples/deskforge-app/dist/packages/router/src/manifest.js +26 -0
- package/examples/deskforge-app/dist/packages/router/src/manifest.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/router.d.ts +30 -0
- package/examples/deskforge-app/dist/packages/router/src/router.js +112 -0
- package/examples/deskforge-app/dist/packages/router/src/router.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/screen.d.ts +30 -0
- package/examples/deskforge-app/dist/packages/router/src/screen.js +34 -0
- package/examples/deskforge-app/dist/packages/router/src/screen.js.map +1 -0
- package/examples/deskforge-app/dist/src/screens/Details.d.ts +9 -0
- package/examples/deskforge-app/dist/src/screens/Details.js +62 -0
- package/examples/deskforge-app/dist/src/screens/Details.js.map +1 -0
- package/examples/deskforge-app/dist/src/screens/Home.d.ts +9 -0
- package/examples/deskforge-app/dist/src/screens/Home.js +68 -0
- package/examples/deskforge-app/dist/src/screens/Home.js.map +1 -0
- package/examples/deskforge-app/dist/src/screens/index.d.ts +2 -0
- package/examples/deskforge-app/dist/src/screens/index.js +11 -0
- package/examples/deskforge-app/dist/src/screens/index.js.map +1 -0
- package/examples/deskforge-app/node_modules/@types/node/LICENSE +21 -0
- package/examples/deskforge-app/node_modules/@types/node/README.md +15 -0
- package/examples/deskforge-app/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/examples/deskforge-app/node_modules/@types/node/assert.d.ts +1062 -0
- package/examples/deskforge-app/node_modules/@types/node/async_hooks.d.ts +605 -0
- package/examples/deskforge-app/node_modules/@types/node/buffer.buffer.d.ts +471 -0
- package/examples/deskforge-app/node_modules/@types/node/buffer.d.ts +1936 -0
- package/examples/deskforge-app/node_modules/@types/node/child_process.d.ts +1475 -0
- package/examples/deskforge-app/node_modules/@types/node/cluster.d.ts +577 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/examples/deskforge-app/node_modules/@types/node/console.d.ts +452 -0
- package/examples/deskforge-app/node_modules/@types/node/constants.d.ts +21 -0
- package/examples/deskforge-app/node_modules/@types/node/crypto.d.ts +4590 -0
- package/examples/deskforge-app/node_modules/@types/node/dgram.d.ts +597 -0
- package/examples/deskforge-app/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/examples/deskforge-app/node_modules/@types/node/dns/promises.d.ts +479 -0
- package/examples/deskforge-app/node_modules/@types/node/dns.d.ts +871 -0
- package/examples/deskforge-app/node_modules/@types/node/domain.d.ts +170 -0
- package/examples/deskforge-app/node_modules/@types/node/events.d.ts +977 -0
- package/examples/deskforge-app/node_modules/@types/node/fs/promises.d.ts +1270 -0
- package/examples/deskforge-app/node_modules/@types/node/fs.d.ts +4375 -0
- package/examples/deskforge-app/node_modules/@types/node/globals.d.ts +172 -0
- package/examples/deskforge-app/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/examples/deskforge-app/node_modules/@types/node/http.d.ts +2049 -0
- package/examples/deskforge-app/node_modules/@types/node/http2.d.ts +2712 -0
- package/examples/deskforge-app/node_modules/@types/node/https.d.ts +578 -0
- package/examples/deskforge-app/node_modules/@types/node/index.d.ts +93 -0
- package/examples/deskforge-app/node_modules/@types/node/inspector.generated.d.ts +3966 -0
- package/examples/deskforge-app/node_modules/@types/node/module.d.ts +539 -0
- package/examples/deskforge-app/node_modules/@types/node/net.d.ts +1031 -0
- package/examples/deskforge-app/node_modules/@types/node/os.d.ts +506 -0
- package/examples/deskforge-app/node_modules/@types/node/package.json +140 -0
- package/examples/deskforge-app/node_modules/@types/node/path.d.ts +200 -0
- package/examples/deskforge-app/node_modules/@types/node/perf_hooks.d.ts +961 -0
- package/examples/deskforge-app/node_modules/@types/node/process.d.ts +1961 -0
- package/examples/deskforge-app/node_modules/@types/node/punycode.d.ts +117 -0
- package/examples/deskforge-app/node_modules/@types/node/querystring.d.ts +152 -0
- package/examples/deskforge-app/node_modules/@types/node/readline/promises.d.ts +162 -0
- package/examples/deskforge-app/node_modules/@types/node/readline.d.ts +589 -0
- package/examples/deskforge-app/node_modules/@types/node/repl.d.ts +430 -0
- package/examples/deskforge-app/node_modules/@types/node/sea.d.ts +153 -0
- package/examples/deskforge-app/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/examples/deskforge-app/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/examples/deskforge-app/node_modules/@types/node/stream/web.d.ts +533 -0
- package/examples/deskforge-app/node_modules/@types/node/stream.d.ts +1698 -0
- package/examples/deskforge-app/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/examples/deskforge-app/node_modules/@types/node/test.d.ts +1787 -0
- package/examples/deskforge-app/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/examples/deskforge-app/node_modules/@types/node/timers.d.ts +286 -0
- package/examples/deskforge-app/node_modules/@types/node/tls.d.ts +1259 -0
- package/examples/deskforge-app/node_modules/@types/node/trace_events.d.ts +197 -0
- package/examples/deskforge-app/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/examples/deskforge-app/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/examples/deskforge-app/node_modules/@types/node/ts5.6/index.d.ts +93 -0
- package/examples/deskforge-app/node_modules/@types/node/tty.d.ts +208 -0
- package/examples/deskforge-app/node_modules/@types/node/url.d.ts +964 -0
- package/examples/deskforge-app/node_modules/@types/node/util.d.ts +2331 -0
- package/examples/deskforge-app/node_modules/@types/node/v8.d.ts +809 -0
- package/examples/deskforge-app/node_modules/@types/node/vm.d.ts +1001 -0
- package/examples/deskforge-app/node_modules/@types/node/wasi.d.ts +181 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
- package/examples/deskforge-app/node_modules/@types/node/worker_threads.d.ts +715 -0
- package/examples/deskforge-app/node_modules/@types/node/zlib.d.ts +598 -0
- package/examples/deskforge-app/node_modules/undici-types/LICENSE +21 -0
- package/examples/deskforge-app/node_modules/undici-types/README.md +6 -0
- package/examples/deskforge-app/node_modules/undici-types/agent.d.ts +31 -0
- package/examples/deskforge-app/node_modules/undici-types/api.d.ts +43 -0
- package/examples/deskforge-app/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/examples/deskforge-app/node_modules/undici-types/cache.d.ts +36 -0
- package/examples/deskforge-app/node_modules/undici-types/client.d.ts +108 -0
- package/examples/deskforge-app/node_modules/undici-types/connector.d.ts +34 -0
- package/examples/deskforge-app/node_modules/undici-types/content-type.d.ts +21 -0
- package/examples/deskforge-app/node_modules/undici-types/cookies.d.ts +28 -0
- package/examples/deskforge-app/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/examples/deskforge-app/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/examples/deskforge-app/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/examples/deskforge-app/node_modules/undici-types/errors.d.ts +149 -0
- package/examples/deskforge-app/node_modules/undici-types/eventsource.d.ts +61 -0
- package/examples/deskforge-app/node_modules/undici-types/fetch.d.ts +209 -0
- package/examples/deskforge-app/node_modules/undici-types/file.d.ts +39 -0
- package/examples/deskforge-app/node_modules/undici-types/filereader.d.ts +54 -0
- package/examples/deskforge-app/node_modules/undici-types/formdata.d.ts +108 -0
- package/examples/deskforge-app/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/examples/deskforge-app/node_modules/undici-types/global-origin.d.ts +7 -0
- package/examples/deskforge-app/node_modules/undici-types/handlers.d.ts +15 -0
- package/examples/deskforge-app/node_modules/undici-types/header.d.ts +4 -0
- package/examples/deskforge-app/node_modules/undici-types/index.d.ts +71 -0
- package/examples/deskforge-app/node_modules/undici-types/interceptors.d.ts +17 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-client.d.ts +25 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/examples/deskforge-app/node_modules/undici-types/package.json +55 -0
- package/examples/deskforge-app/node_modules/undici-types/patch.d.ts +33 -0
- package/examples/deskforge-app/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/examples/deskforge-app/node_modules/undici-types/pool.d.ts +39 -0
- package/examples/deskforge-app/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/examples/deskforge-app/node_modules/undici-types/readable.d.ts +65 -0
- package/examples/deskforge-app/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/examples/deskforge-app/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/examples/deskforge-app/node_modules/undici-types/util.d.ts +18 -0
- package/examples/deskforge-app/node_modules/undici-types/webidl.d.ts +228 -0
- package/examples/deskforge-app/node_modules/undici-types/websocket.d.ts +150 -0
- package/examples/deskforge-app/package.json +19 -0
- package/examples/deskforge-app/src/screens/Details.ts +20 -0
- package/examples/deskforge-app/src/screens/Home.ts +19 -0
- package/examples/deskforge-app/src/screens/index.ts +2 -0
- package/examples/deskforge-app/src/ui/Responsive.ts +88 -0
- package/examples/deskforge-app/src/ui/index.ts +1 -0
- package/examples/deskforge-app/tsconfig.json +24 -0
- package/examples/notekeeper/dist/app.d.ts +1 -0
- package/examples/notekeeper/dist/app.js +96 -0
- package/examples/notekeeper/dist/app.js.map +1 -0
- package/examples/notekeeper/dist/components/noteCard.d.ts +1 -0
- package/examples/notekeeper/dist/components/noteCard.js +124 -0
- package/examples/notekeeper/dist/components/noteCard.js.map +1 -0
- package/examples/notekeeper/dist/hooks/useNotes.d.ts +14 -0
- package/examples/notekeeper/dist/hooks/useNotes.js +127 -0
- package/examples/notekeeper/dist/hooks/useNotes.js.map +1 -0
- package/examples/notekeeper/dist/notekeeper.png +0 -0
- package/examples/notekeeper/dist/state/appState.d.ts +11 -0
- package/examples/notekeeper/dist/state/appState.js +125 -0
- package/examples/notekeeper/dist/state/appState.js.map +1 -0
- package/examples/notekeeper/package.json +19 -0
- package/examples/notekeeper/src/README.md +10 -0
- package/examples/notekeeper/src/app.ts +98 -0
- package/examples/notekeeper/src/components/noteCard.ts +147 -0
- package/examples/notekeeper/src/hooks/useNotes.ts +169 -0
- package/examples/notekeeper/src/state/appState.ts +142 -0
- package/examples/notekeeper/tsconfig.json +16 -0
- package/examples/tsconfig.json +34 -0
- package/local-app/addlibrary.ts +7 -0
- package/local-app/app.ts +29 -0
- package/local-app/package.json +13 -0
- package/local-app/screens/Home.ts +20 -0
- package/local-app/tsconfig.json +8 -0
- package/package.json +30 -0
- package/packages/ai/dist/brain.d.ts +32 -0
- package/packages/ai/dist/brain.d.ts.map +1 -0
- package/packages/ai/dist/brain.js +94 -0
- package/packages/ai/dist/brain.js.map +1 -0
- package/packages/ai/dist/index.d.ts +5 -0
- package/packages/ai/dist/index.d.ts.map +1 -0
- package/packages/ai/dist/index.js +27 -0
- package/packages/ai/dist/index.js.map +1 -0
- package/packages/ai/dist/nodes/logic.d.ts +23 -0
- package/packages/ai/dist/nodes/logic.d.ts.map +1 -0
- package/packages/ai/dist/nodes/logic.js +55 -0
- package/packages/ai/dist/nodes/logic.js.map +1 -0
- package/packages/ai/dist/nodes/memory.d.ts +28 -0
- package/packages/ai/dist/nodes/memory.d.ts.map +1 -0
- package/packages/ai/dist/nodes/memory.js +93 -0
- package/packages/ai/dist/nodes/memory.js.map +1 -0
- package/packages/ai/dist/nodes/perception.d.ts +21 -0
- package/packages/ai/dist/nodes/perception.d.ts.map +1 -0
- package/packages/ai/dist/nodes/perception.js +28 -0
- package/packages/ai/dist/nodes/perception.js.map +1 -0
- package/packages/ai/package.json +30 -0
- package/packages/ai/src/brain.ts +209 -0
- package/packages/ai/src/index.ts +14 -0
- package/packages/ai/src/nodes/logic.ts +109 -0
- package/packages/ai/src/nodes/memory.ts +172 -0
- package/packages/ai/src/nodes/perception.ts +90 -0
- package/packages/ai/tsconfig.json +17 -0
- package/packages/background/dist/background.d.ts +42 -0
- package/packages/background/dist/background.d.ts.map +1 -0
- package/packages/background/dist/background.js +149 -0
- package/packages/background/dist/background.js.map +1 -0
- package/packages/background/dist/index.d.ts +2 -0
- package/packages/background/dist/index.d.ts.map +1 -0
- package/packages/background/dist/index.js +20 -0
- package/packages/background/dist/index.js.map +1 -0
- package/packages/background/package.json +30 -0
- package/packages/background/src/background.ts +263 -0
- package/packages/background/src/index.ts +4 -0
- package/packages/background/tsconfig.json +17 -0
- package/packages/bridge/dist/bridge.d.ts +22 -0
- package/packages/bridge/dist/bridge.d.ts.map +1 -0
- package/packages/bridge/dist/bridge.js +44 -0
- package/packages/bridge/dist/bridge.js.map +1 -0
- package/packages/bridge/dist/c.d.ts +10 -0
- package/packages/bridge/dist/c.d.ts.map +1 -0
- package/packages/bridge/dist/c.js +23 -0
- package/packages/bridge/dist/c.js.map +1 -0
- package/packages/bridge/dist/dotnet.d.ts +11 -0
- package/packages/bridge/dist/dotnet.d.ts.map +1 -0
- package/packages/bridge/dist/dotnet.js +26 -0
- package/packages/bridge/dist/dotnet.js.map +1 -0
- package/packages/bridge/dist/go.d.ts +10 -0
- package/packages/bridge/dist/go.d.ts.map +1 -0
- package/packages/bridge/dist/go.js +27 -0
- package/packages/bridge/dist/go.js.map +1 -0
- package/packages/bridge/dist/http.d.ts +22 -0
- package/packages/bridge/dist/http.d.ts.map +1 -0
- package/packages/bridge/dist/http.js +110 -0
- package/packages/bridge/dist/http.js.map +1 -0
- package/packages/bridge/dist/index.d.ts +5 -0
- package/packages/bridge/dist/index.d.ts.map +1 -0
- package/packages/bridge/dist/index.js +27 -0
- package/packages/bridge/dist/index.js.map +1 -0
- package/packages/bridge/dist/kotlin.d.ts +11 -0
- package/packages/bridge/dist/kotlin.d.ts.map +1 -0
- package/packages/bridge/dist/kotlin.js +25 -0
- package/packages/bridge/dist/kotlin.js.map +1 -0
- package/packages/bridge/dist/php.d.ts +11 -0
- package/packages/bridge/dist/php.d.ts.map +1 -0
- package/packages/bridge/dist/php.js +28 -0
- package/packages/bridge/dist/php.js.map +1 -0
- package/packages/bridge/dist/process.d.ts +27 -0
- package/packages/bridge/dist/process.d.ts.map +1 -0
- package/packages/bridge/dist/process.js +101 -0
- package/packages/bridge/dist/process.js.map +1 -0
- package/packages/bridge/dist/python.d.ts +15 -0
- package/packages/bridge/dist/python.d.ts.map +1 -0
- package/packages/bridge/dist/python.js +34 -0
- package/packages/bridge/dist/python.js.map +1 -0
- package/packages/bridge/dist/rust.d.ts +10 -0
- package/packages/bridge/dist/rust.d.ts.map +1 -0
- package/packages/bridge/dist/rust.js +24 -0
- package/packages/bridge/dist/rust.js.map +1 -0
- package/packages/bridge/dist/swift.d.ts +11 -0
- package/packages/bridge/dist/swift.d.ts.map +1 -0
- package/packages/bridge/dist/swift.js +26 -0
- package/packages/bridge/dist/swift.js.map +1 -0
- package/packages/bridge/package.json +30 -0
- package/packages/bridge/src/bridge.ts +38 -0
- package/packages/bridge/src/c.ts +41 -0
- package/packages/bridge/src/dotnet.ts +50 -0
- package/packages/bridge/src/go.ts +48 -0
- package/packages/bridge/src/http.ts +198 -0
- package/packages/bridge/src/index.ts +14 -0
- package/packages/bridge/src/kotlin.ts +48 -0
- package/packages/bridge/src/php.ts +59 -0
- package/packages/bridge/src/process.ts +174 -0
- package/packages/bridge/src/python.ts +69 -0
- package/packages/bridge/src/rust.ts +43 -0
- package/packages/bridge/src/swift.ts +50 -0
- package/packages/bridge/tsconfig.json +18 -0
- package/packages/cli/dist/commands/build.d.ts +17 -0
- package/packages/cli/dist/commands/build.d.ts.map +1 -0
- package/packages/cli/dist/commands/build.js +79 -0
- package/packages/cli/dist/commands/build.js.map +1 -0
- package/packages/cli/dist/commands/create.d.ts +11 -0
- package/packages/cli/dist/commands/create.d.ts.map +1 -0
- package/packages/cli/dist/commands/create.js +287 -0
- package/packages/cli/dist/commands/create.js.map +1 -0
- package/packages/cli/dist/commands/lib/add.d.ts +3 -0
- package/packages/cli/dist/commands/lib/add.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/add.js +39 -0
- package/packages/cli/dist/commands/lib/add.js.map +1 -0
- package/packages/cli/dist/commands/lib/list.d.ts +3 -0
- package/packages/cli/dist/commands/lib/list.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/list.js +29 -0
- package/packages/cli/dist/commands/lib/list.js.map +1 -0
- package/packages/cli/dist/commands/lib/remove.d.ts +3 -0
- package/packages/cli/dist/commands/lib/remove.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/remove.js +30 -0
- package/packages/cli/dist/commands/lib/remove.js.map +1 -0
- package/packages/cli/dist/commands/lib/restore.d.ts +3 -0
- package/packages/cli/dist/commands/lib/restore.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/restore.js +49 -0
- package/packages/cli/dist/commands/lib/restore.js.map +1 -0
- package/packages/cli/dist/commands/lib/search.d.ts +3 -0
- package/packages/cli/dist/commands/lib/search.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/search.js +30 -0
- package/packages/cli/dist/commands/lib/search.js.map +1 -0
- package/packages/cli/dist/commands/start.d.ts +10 -0
- package/packages/cli/dist/commands/start.d.ts.map +1 -0
- package/packages/cli/dist/commands/start.js +88 -0
- package/packages/cli/dist/commands/start.js.map +1 -0
- package/packages/cli/dist/index.d.ts +3 -0
- package/packages/cli/dist/index.d.ts.map +1 -0
- package/packages/cli/dist/index.js +193 -0
- package/packages/cli/dist/index.js.map +1 -0
- package/packages/cli/dist/registry/client.d.ts +24 -0
- package/packages/cli/dist/registry/client.d.ts.map +1 -0
- package/packages/cli/dist/registry/client.js +73 -0
- package/packages/cli/dist/registry/client.js.map +1 -0
- package/packages/cli/dist/registry/installer.d.ts +16 -0
- package/packages/cli/dist/registry/installer.d.ts.map +1 -0
- package/packages/cli/dist/registry/installer.js +135 -0
- package/packages/cli/dist/registry/installer.js.map +1 -0
- package/packages/cli/dist/registry/manifest.d.ts +13 -0
- package/packages/cli/dist/registry/manifest.d.ts.map +1 -0
- package/packages/cli/dist/registry/manifest.js +100 -0
- package/packages/cli/dist/registry/manifest.js.map +1 -0
- package/packages/cli/package.json +36 -0
- package/packages/cli/src/commands/build.ts +138 -0
- package/packages/cli/src/commands/create.ts +363 -0
- package/packages/cli/src/commands/lib/add.ts +56 -0
- package/packages/cli/src/commands/lib/list.ts +42 -0
- package/packages/cli/src/commands/lib/remove.ts +39 -0
- package/packages/cli/src/commands/lib/restore.ts +65 -0
- package/packages/cli/src/commands/lib/search.ts +45 -0
- package/packages/cli/src/commands/start.ts +117 -0
- package/packages/cli/src/index.ts +224 -0
- package/packages/cli/src/registry/client.ts +153 -0
- package/packages/cli/src/registry/installer.ts +197 -0
- package/packages/cli/src/registry/manifest.ts +145 -0
- package/packages/cli/test/create.test.js +22 -0
- package/packages/cli/tsconfig.json +18 -0
- package/packages/core/dist/animation/easing.d.ts +23 -0
- package/packages/core/dist/animation/easing.d.ts.map +1 -0
- package/packages/core/dist/animation/easing.js +91 -0
- package/packages/core/dist/animation/easing.js.map +1 -0
- package/packages/core/dist/animation/index.d.ts +4 -0
- package/packages/core/dist/animation/index.d.ts.map +1 -0
- package/packages/core/dist/animation/index.js +26 -0
- package/packages/core/dist/animation/index.js.map +1 -0
- package/packages/core/dist/animation/interpolate.d.ts +7 -0
- package/packages/core/dist/animation/interpolate.d.ts.map +1 -0
- package/packages/core/dist/animation/interpolate.js +83 -0
- package/packages/core/dist/animation/interpolate.js.map +1 -0
- package/packages/core/dist/animation/spring.d.ts +21 -0
- package/packages/core/dist/animation/spring.d.ts.map +1 -0
- package/packages/core/dist/animation/spring.js +79 -0
- package/packages/core/dist/animation/spring.js.map +1 -0
- package/packages/core/dist/component/component.d.ts +6 -0
- package/packages/core/dist/component/component.d.ts.map +1 -0
- package/packages/core/dist/component/component.js +14 -0
- package/packages/core/dist/component/component.js.map +1 -0
- package/packages/core/dist/component/index.d.ts +2 -0
- package/packages/core/dist/component/index.d.ts.map +1 -0
- package/packages/core/dist/component/index.js +18 -0
- package/packages/core/dist/component/index.js.map +1 -0
- package/packages/core/dist/index.d.ts +6 -0
- package/packages/core/dist/index.d.ts.map +1 -0
- package/packages/core/dist/index.js +30 -0
- package/packages/core/dist/index.js.map +1 -0
- package/packages/core/dist/scheduler/index.d.ts +2 -0
- package/packages/core/dist/scheduler/index.d.ts.map +1 -0
- package/packages/core/dist/scheduler/index.js +20 -0
- package/packages/core/dist/scheduler/index.js.map +1 -0
- package/packages/core/dist/scheduler/scheduler.d.ts +12 -0
- package/packages/core/dist/scheduler/scheduler.d.ts.map +1 -0
- package/packages/core/dist/scheduler/scheduler.js +61 -0
- package/packages/core/dist/scheduler/scheduler.js.map +1 -0
- package/packages/core/dist/tree/diff.d.ts +17 -0
- package/packages/core/dist/tree/diff.d.ts.map +1 -0
- package/packages/core/dist/tree/diff.js +67 -0
- package/packages/core/dist/tree/diff.js.map +1 -0
- package/packages/core/dist/tree/index.d.ts +4 -0
- package/packages/core/dist/tree/index.d.ts.map +1 -0
- package/packages/core/dist/tree/index.js +23 -0
- package/packages/core/dist/tree/index.js.map +1 -0
- package/packages/core/dist/tree/node.d.ts +13 -0
- package/packages/core/dist/tree/node.d.ts.map +1 -0
- package/packages/core/dist/tree/node.js +59 -0
- package/packages/core/dist/tree/node.js.map +1 -0
- package/packages/core/dist/tree/tree.d.ts +11 -0
- package/packages/core/dist/tree/tree.d.ts.map +1 -0
- package/packages/core/dist/tree/tree.js +43 -0
- package/packages/core/dist/tree/tree.js.map +1 -0
- package/packages/core/package.json +30 -0
- package/packages/core/src/animation/easing.d.ts +22 -0
- package/packages/core/src/animation/easing.js +91 -0
- package/packages/core/src/animation/easing.js.map +1 -0
- package/packages/core/src/animation/easing.ts +88 -0
- package/packages/core/src/animation/index.d.ts +3 -0
- package/packages/core/src/animation/index.js +26 -0
- package/packages/core/src/animation/index.js.map +1 -0
- package/packages/core/src/animation/index.ts +12 -0
- package/packages/core/src/animation/interpolate.d.ts +6 -0
- package/packages/core/src/animation/interpolate.js +83 -0
- package/packages/core/src/animation/interpolate.js.map +1 -0
- package/packages/core/src/animation/interpolate.ts +107 -0
- package/packages/core/src/animation/spring.d.ts +20 -0
- package/packages/core/src/animation/spring.js +79 -0
- package/packages/core/src/animation/spring.js.map +1 -0
- package/packages/core/src/animation/spring.ts +118 -0
- package/packages/core/src/component/component.d.ts +5 -0
- package/packages/core/src/component/component.js +14 -0
- package/packages/core/src/component/component.js.map +1 -0
- package/packages/core/src/component/component.ts +22 -0
- package/packages/core/src/component/index.d.ts +1 -0
- package/packages/core/src/component/index.js +18 -0
- package/packages/core/src/component/index.js.map +1 -0
- package/packages/core/src/component/index.ts +1 -0
- package/packages/core/src/index.d.ts +5 -0
- package/packages/core/src/index.js +30 -0
- package/packages/core/src/index.js.map +1 -0
- package/packages/core/src/index.ts +18 -0
- package/packages/core/src/scheduler/index.d.ts +1 -0
- package/packages/core/src/scheduler/index.d.ts.map +1 -0
- package/packages/core/src/scheduler/index.js +20 -0
- package/packages/core/src/scheduler/index.js.map +1 -0
- package/packages/core/src/scheduler/index.ts +4 -0
- package/packages/core/src/scheduler/scheduler.d.ts +11 -0
- package/packages/core/src/scheduler/scheduler.d.ts.map +1 -0
- package/packages/core/src/scheduler/scheduler.js +61 -0
- package/packages/core/src/scheduler/scheduler.js.map +1 -0
- package/packages/core/src/scheduler/scheduler.ts +76 -0
- package/packages/core/src/tree/diff.d.ts +16 -0
- package/packages/core/src/tree/diff.js +67 -0
- package/packages/core/src/tree/diff.js.map +1 -0
- package/packages/core/src/tree/diff.ts +125 -0
- package/packages/core/src/tree/index.d.ts +3 -0
- package/packages/core/src/tree/index.js +23 -0
- package/packages/core/src/tree/index.js.map +1 -0
- package/packages/core/src/tree/index.ts +7 -0
- package/packages/core/src/tree/node.d.ts +12 -0
- package/packages/core/src/tree/node.d.ts.map +1 -0
- package/packages/core/src/tree/node.js +59 -0
- package/packages/core/src/tree/node.js.map +1 -0
- package/packages/core/src/tree/node.ts +96 -0
- package/packages/core/src/tree/tree.d.ts +10 -0
- package/packages/core/src/tree/tree.d.ts.map +1 -0
- package/packages/core/src/tree/tree.js +43 -0
- package/packages/core/src/tree/tree.js.map +1 -0
- package/packages/core/src/tree/tree.ts +64 -0
- package/packages/core/tsconfig.json +18 -0
- package/packages/db/dist/adapters/mongodb.d.ts +17 -0
- package/packages/db/dist/adapters/mongodb.d.ts.map +1 -0
- package/packages/db/dist/adapters/mongodb.js +64 -0
- package/packages/db/dist/adapters/mongodb.js.map +1 -0
- package/packages/db/dist/adapters/mysql.d.ts +15 -0
- package/packages/db/dist/adapters/mysql.d.ts.map +1 -0
- package/packages/db/dist/adapters/mysql.js +37 -0
- package/packages/db/dist/adapters/mysql.js.map +1 -0
- package/packages/db/dist/adapters/postgres.d.ts +15 -0
- package/packages/db/dist/adapters/postgres.d.ts.map +1 -0
- package/packages/db/dist/adapters/postgres.js +38 -0
- package/packages/db/dist/adapters/postgres.js.map +1 -0
- package/packages/db/dist/adapters/sqlite.d.ts +24 -0
- package/packages/db/dist/adapters/sqlite.d.ts.map +1 -0
- package/packages/db/dist/adapters/sqlite.js +56 -0
- package/packages/db/dist/adapters/sqlite.js.map +1 -0
- package/packages/db/dist/db.d.ts +45 -0
- package/packages/db/dist/db.d.ts.map +1 -0
- package/packages/db/dist/db.js +111 -0
- package/packages/db/dist/db.js.map +1 -0
- package/packages/db/dist/index.d.ts +7 -0
- package/packages/db/dist/index.d.ts.map +1 -0
- package/packages/db/dist/index.js +31 -0
- package/packages/db/dist/index.js.map +1 -0
- package/packages/db/dist/query.d.ts +26 -0
- package/packages/db/dist/query.d.ts.map +1 -0
- package/packages/db/dist/query.js +71 -0
- package/packages/db/dist/query.js.map +1 -0
- package/packages/db/package.json +30 -0
- package/packages/db/src/adapters/mongodb.ts +130 -0
- package/packages/db/src/adapters/mysql.ts +78 -0
- package/packages/db/src/adapters/postgres.ts +80 -0
- package/packages/db/src/adapters/sqlite.ts +99 -0
- package/packages/db/src/db.ts +175 -0
- package/packages/db/src/index.ts +20 -0
- package/packages/db/src/query.ts +154 -0
- package/packages/db/tsconfig.json +17 -0
- package/packages/device/README.md +21 -0
- package/packages/device/dist/camera.d.ts +28 -0
- package/packages/device/dist/camera.d.ts.map +1 -0
- package/packages/device/dist/camera.js +42 -0
- package/packages/device/dist/camera.js.map +1 -0
- package/packages/device/dist/contacts.d.ts +19 -0
- package/packages/device/dist/contacts.d.ts.map +1 -0
- package/packages/device/dist/contacts.js +40 -0
- package/packages/device/dist/contacts.js.map +1 -0
- package/packages/device/dist/index.d.ts +33 -0
- package/packages/device/dist/index.d.ts.map +1 -0
- package/packages/device/dist/index.js +35 -0
- package/packages/device/dist/index.js.map +1 -0
- package/packages/device/dist/media.d.ts +60 -0
- package/packages/device/dist/media.d.ts.map +1 -0
- package/packages/device/dist/media.js +129 -0
- package/packages/device/dist/media.js.map +1 -0
- package/packages/device/dist/sensors.d.ts +17 -0
- package/packages/device/dist/sensors.d.ts.map +1 -0
- package/packages/device/dist/sensors.js +32 -0
- package/packages/device/dist/sensors.js.map +1 -0
- package/packages/device/package.json +30 -0
- package/packages/device/src/camera.ts +65 -0
- package/packages/device/src/contacts.ts +57 -0
- package/packages/device/src/index.ts +20 -0
- package/packages/device/src/media.ts +194 -0
- package/packages/device/src/sensors.ts +51 -0
- package/packages/device/test/api.test.js +21 -0
- package/packages/device/tsconfig.json +9 -0
- package/packages/file/dist/file.d.ts +55 -0
- package/packages/file/dist/file.d.ts.map +1 -0
- package/packages/file/dist/file.js +114 -0
- package/packages/file/dist/file.js.map +1 -0
- package/packages/file/dist/index.d.ts +2 -0
- package/packages/file/dist/index.d.ts.map +1 -0
- package/packages/file/dist/index.js +20 -0
- package/packages/file/dist/index.js.map +1 -0
- package/packages/file/package.json +30 -0
- package/packages/file/src/file.ts +209 -0
- package/packages/file/src/index.ts +4 -0
- package/packages/file/tsconfig.json +17 -0
- package/packages/i18n/dist/i18n.d.ts +33 -0
- package/packages/i18n/dist/i18n.d.ts.map +1 -0
- package/packages/i18n/dist/i18n.js +149 -0
- package/packages/i18n/dist/i18n.js.map +1 -0
- package/packages/i18n/dist/index.d.ts +2 -0
- package/packages/i18n/dist/index.d.ts.map +1 -0
- package/packages/i18n/dist/index.js +20 -0
- package/packages/i18n/dist/index.js.map +1 -0
- package/packages/i18n/package.json +30 -0
- package/packages/i18n/src/i18n.ts +225 -0
- package/packages/i18n/src/index.ts +4 -0
- package/packages/i18n/tsconfig.json +17 -0
- package/packages/logger/dist/index.d.ts +2 -0
- package/packages/logger/dist/index.d.ts.map +1 -0
- package/packages/logger/dist/index.js +20 -0
- package/packages/logger/dist/index.js.map +1 -0
- package/packages/logger/dist/logger.d.ts +50 -0
- package/packages/logger/dist/logger.d.ts.map +1 -0
- package/packages/logger/dist/logger.js +147 -0
- package/packages/logger/dist/logger.js.map +1 -0
- package/packages/logger/package.json +30 -0
- package/packages/logger/src/index.ts +4 -0
- package/packages/logger/src/logger.ts +240 -0
- package/packages/logger/tsconfig.json +17 -0
- package/packages/network/dist/discovery.d.ts +20 -0
- package/packages/network/dist/discovery.d.ts.map +1 -0
- package/packages/network/dist/discovery.js +58 -0
- package/packages/network/dist/discovery.js.map +1 -0
- package/packages/network/dist/index.d.ts +3 -0
- package/packages/network/dist/index.d.ts.map +1 -0
- package/packages/network/dist/index.js +23 -0
- package/packages/network/dist/index.js.map +1 -0
- package/packages/network/dist/transfer.d.ts +40 -0
- package/packages/network/dist/transfer.d.ts.map +1 -0
- package/packages/network/dist/transfer.js +73 -0
- package/packages/network/dist/transfer.js.map +1 -0
- package/packages/network/package.json +30 -0
- package/packages/network/src/discovery.ts +107 -0
- package/packages/network/src/index.ts +8 -0
- package/packages/network/src/transfer.ts +182 -0
- package/packages/network/tsconfig.json +17 -0
- package/packages/notifications/dist/alert.d.ts +34 -0
- package/packages/notifications/dist/alert.d.ts.map +1 -0
- package/packages/notifications/dist/alert.js +99 -0
- package/packages/notifications/dist/alert.js.map +1 -0
- package/packages/notifications/dist/email.d.ts +41 -0
- package/packages/notifications/dist/email.d.ts.map +1 -0
- package/packages/notifications/dist/email.js +51 -0
- package/packages/notifications/dist/email.js.map +1 -0
- package/packages/notifications/dist/index.d.ts +84 -0
- package/packages/notifications/dist/index.d.ts.map +1 -0
- package/packages/notifications/dist/index.js +52 -0
- package/packages/notifications/dist/index.js.map +1 -0
- package/packages/notifications/dist/notify.d.ts +36 -0
- package/packages/notifications/dist/notify.d.ts.map +1 -0
- package/packages/notifications/dist/notify.js +62 -0
- package/packages/notifications/dist/notify.js.map +1 -0
- package/packages/notifications/dist/push.d.ts +49 -0
- package/packages/notifications/dist/push.d.ts.map +1 -0
- package/packages/notifications/dist/push.js +76 -0
- package/packages/notifications/dist/push.js.map +1 -0
- package/packages/notifications/dist/sms.d.ts +34 -0
- package/packages/notifications/dist/sms.d.ts.map +1 -0
- package/packages/notifications/dist/sms.js +44 -0
- package/packages/notifications/dist/sms.js.map +1 -0
- package/packages/notifications/dist/storage.d.ts +30 -0
- package/packages/notifications/dist/storage.d.ts.map +1 -0
- package/packages/notifications/dist/storage.js +93 -0
- package/packages/notifications/dist/storage.js.map +1 -0
- package/packages/notifications/dist/toast.d.ts +47 -0
- package/packages/notifications/dist/toast.d.ts.map +1 -0
- package/packages/notifications/dist/toast.js +138 -0
- package/packages/notifications/dist/toast.js.map +1 -0
- package/packages/notifications/dist/users.d.ts +36 -0
- package/packages/notifications/dist/users.d.ts.map +1 -0
- package/packages/notifications/dist/users.js +87 -0
- package/packages/notifications/dist/users.js.map +1 -0
- package/packages/notifications/notifications.db +0 -0
- package/packages/notifications/package.json +33 -0
- package/packages/notifications/src/alert.ts +133 -0
- package/packages/notifications/src/email.ts +127 -0
- package/packages/notifications/src/index.ts +44 -0
- package/packages/notifications/src/notify.ts +126 -0
- package/packages/notifications/src/push.ts +145 -0
- package/packages/notifications/src/sms.ts +97 -0
- package/packages/notifications/src/storage.ts +109 -0
- package/packages/notifications/src/toast.ts +186 -0
- package/packages/notifications/src/types/better-sqlite3.d.ts +5 -0
- package/packages/notifications/src/users.ts +121 -0
- package/packages/notifications/test/notifications.test.js +41 -0
- package/packages/notifications/test/storage.test.js +34 -0
- package/packages/notifications/tsconfig.json +19 -0
- package/packages/payments/dist/gateways/momo.d.ts +25 -0
- package/packages/payments/dist/gateways/momo.d.ts.map +1 -0
- package/packages/payments/dist/gateways/momo.js +44 -0
- package/packages/payments/dist/gateways/momo.js.map +1 -0
- package/packages/payments/dist/gateways/paystack.d.ts +24 -0
- package/packages/payments/dist/gateways/paystack.d.ts.map +1 -0
- package/packages/payments/dist/gateways/paystack.js +51 -0
- package/packages/payments/dist/gateways/paystack.js.map +1 -0
- package/packages/payments/dist/index.d.ts +4 -0
- package/packages/payments/dist/index.d.ts.map +1 -0
- package/packages/payments/dist/index.js +25 -0
- package/packages/payments/dist/index.js.map +1 -0
- package/packages/payments/dist/payment.d.ts +42 -0
- package/packages/payments/dist/payment.d.ts.map +1 -0
- package/packages/payments/dist/payment.js +124 -0
- package/packages/payments/dist/payment.js.map +1 -0
- package/packages/payments/package.json +30 -0
- package/packages/payments/src/gateways/momo.ts +97 -0
- package/packages/payments/src/gateways/paystack.ts +102 -0
- package/packages/payments/src/index.ts +11 -0
- package/packages/payments/src/payment.ts +229 -0
- package/packages/payments/tsconfig.json +17 -0
- package/packages/renderer/README.md +188 -0
- package/packages/renderer/dist/canvas.d.ts +24 -0
- package/packages/renderer/dist/canvas.d.ts.map +1 -0
- package/packages/renderer/dist/canvas.js +38 -0
- package/packages/renderer/dist/canvas.js.map +1 -0
- package/packages/renderer/dist/context.d.ts +34 -0
- package/packages/renderer/dist/context.d.ts.map +1 -0
- package/packages/renderer/dist/context.js +45 -0
- package/packages/renderer/dist/context.js.map +1 -0
- package/packages/renderer/dist/dirty-region.d.ts +43 -0
- package/packages/renderer/dist/dirty-region.d.ts.map +1 -0
- package/packages/renderer/dist/dirty-region.js +106 -0
- package/packages/renderer/dist/dirty-region.js.map +1 -0
- package/packages/renderer/dist/engine.d.ts +57 -0
- package/packages/renderer/dist/engine.d.ts.map +1 -0
- package/packages/renderer/dist/engine.js +95 -0
- package/packages/renderer/dist/engine.js.map +1 -0
- package/packages/renderer/dist/example.d.ts +14 -0
- package/packages/renderer/dist/example.d.ts.map +1 -0
- package/packages/renderer/dist/example.js +160 -0
- package/packages/renderer/dist/example.js.map +1 -0
- package/packages/renderer/dist/filters.d.ts +23 -0
- package/packages/renderer/dist/filters.d.ts.map +1 -0
- package/packages/renderer/dist/filters.js +41 -0
- package/packages/renderer/dist/filters.js.map +1 -0
- package/packages/renderer/dist/icons.d.ts +7 -0
- package/packages/renderer/dist/icons.d.ts.map +1 -0
- package/packages/renderer/dist/icons.js +31 -0
- package/packages/renderer/dist/icons.js.map +1 -0
- package/packages/renderer/dist/index.d.ts +16 -0
- package/packages/renderer/dist/index.d.ts.map +1 -0
- package/packages/renderer/dist/index.js +34 -0
- package/packages/renderer/dist/index.js.map +1 -0
- package/packages/renderer/dist/painter.d.ts +27 -0
- package/packages/renderer/dist/painter.d.ts.map +1 -0
- package/packages/renderer/dist/painter.js +221 -0
- package/packages/renderer/dist/painter.js.map +1 -0
- package/packages/renderer/dist/renderer.d.ts +72 -0
- package/packages/renderer/dist/renderer.d.ts.map +1 -0
- package/packages/renderer/dist/renderer.js +120 -0
- package/packages/renderer/dist/renderer.js.map +1 -0
- package/packages/renderer/dist/svg-export.d.ts +52 -0
- package/packages/renderer/dist/svg-export.d.ts.map +1 -0
- package/packages/renderer/dist/svg-export.js +159 -0
- package/packages/renderer/dist/svg-export.js.map +1 -0
- package/packages/renderer/package.json +34 -0
- package/packages/renderer/src/canvas.d.ts +23 -0
- package/packages/renderer/src/canvas.js +38 -0
- package/packages/renderer/src/canvas.js.map +1 -0
- package/packages/renderer/src/canvas.ts +70 -0
- package/packages/renderer/src/context.d.ts +33 -0
- package/packages/renderer/src/context.js +45 -0
- package/packages/renderer/src/context.js.map +1 -0
- package/packages/renderer/src/context.ts +83 -0
- package/packages/renderer/src/dirty-region.d.ts +42 -0
- package/packages/renderer/src/dirty-region.js +106 -0
- package/packages/renderer/src/dirty-region.js.map +1 -0
- package/packages/renderer/src/dirty-region.ts +125 -0
- package/packages/renderer/src/engine.d.ts +56 -0
- package/packages/renderer/src/engine.js +95 -0
- package/packages/renderer/src/engine.js.map +1 -0
- package/packages/renderer/src/engine.ts +131 -0
- package/packages/renderer/src/example.ts +184 -0
- package/packages/renderer/src/filters.d.ts +22 -0
- package/packages/renderer/src/filters.js +41 -0
- package/packages/renderer/src/filters.js.map +1 -0
- package/packages/renderer/src/filters.ts +63 -0
- package/packages/renderer/src/icons.ts +33 -0
- package/packages/renderer/src/index.d.ts +15 -0
- package/packages/renderer/src/index.js +34 -0
- package/packages/renderer/src/index.js.map +1 -0
- package/packages/renderer/src/index.ts +19 -0
- package/packages/renderer/src/painter.d.ts +26 -0
- package/packages/renderer/src/painter.js +127 -0
- package/packages/renderer/src/painter.js.map +1 -0
- package/packages/renderer/src/painter.ts +269 -0
- package/packages/renderer/src/renderer.d.ts +71 -0
- package/packages/renderer/src/renderer.js +120 -0
- package/packages/renderer/src/renderer.js.map +1 -0
- package/packages/renderer/src/renderer.ts +171 -0
- package/packages/renderer/src/svg-export.d.ts +47 -0
- package/packages/renderer/src/svg-export.js +125 -0
- package/packages/renderer/src/svg-export.js.map +1 -0
- package/packages/renderer/src/svg-export.ts +270 -0
- package/packages/renderer/test/renderer.test.js +41 -0
- package/packages/renderer/tsconfig.json +10 -0
- package/packages/router/dist/app.d.ts +10 -0
- package/packages/router/dist/app.d.ts.map +1 -0
- package/packages/router/dist/app.js +12 -0
- package/packages/router/dist/app.js.map +1 -0
- package/packages/router/dist/file-router.d.ts +36 -0
- package/packages/router/dist/file-router.d.ts.map +1 -0
- package/packages/router/dist/file-router.js +145 -0
- package/packages/router/dist/file-router.js.map +1 -0
- package/packages/router/dist/index.d.ts +6 -0
- package/packages/router/dist/index.d.ts.map +1 -0
- package/packages/router/dist/index.js +24 -0
- package/packages/router/dist/index.js.map +1 -0
- package/packages/router/dist/manifest.d.ts +10 -0
- package/packages/router/dist/manifest.d.ts.map +1 -0
- package/packages/router/dist/manifest.js +26 -0
- package/packages/router/dist/manifest.js.map +1 -0
- package/packages/router/dist/router.d.ts +31 -0
- package/packages/router/dist/router.d.ts.map +1 -0
- package/packages/router/dist/router.js +112 -0
- package/packages/router/dist/router.js.map +1 -0
- package/packages/router/dist/screen.d.ts +31 -0
- package/packages/router/dist/screen.d.ts.map +1 -0
- package/packages/router/dist/screen.js +34 -0
- package/packages/router/dist/screen.js.map +1 -0
- package/packages/router/package.json +30 -0
- package/packages/router/src/app.ts +16 -0
- package/packages/router/src/file-router.ts +181 -0
- package/packages/router/src/index.d.ts +2 -0
- package/packages/router/src/index.js +23 -0
- package/packages/router/src/index.js.map +1 -0
- package/packages/router/src/index.ts +7 -0
- package/packages/router/src/manifest.ts +27 -0
- package/packages/router/src/router.d.ts +30 -0
- package/packages/router/src/router.js +112 -0
- package/packages/router/src/router.js.map +1 -0
- package/packages/router/src/router.ts +161 -0
- package/packages/router/src/screen.d.ts +24 -0
- package/packages/router/src/screen.js +18 -0
- package/packages/router/src/screen.js.map +1 -0
- package/packages/router/src/screen.ts +68 -0
- package/packages/router/test/router.test.js +30 -0
- package/packages/router/tsconfig.json +17 -0
- package/packages/security/dist/biometric.d.ts +27 -0
- package/packages/security/dist/biometric.d.ts.map +1 -0
- package/packages/security/dist/biometric.js +63 -0
- package/packages/security/dist/biometric.js.map +1 -0
- package/packages/security/dist/index.d.ts +2 -0
- package/packages/security/dist/index.d.ts.map +1 -0
- package/packages/security/dist/index.js +21 -0
- package/packages/security/dist/index.js.map +1 -0
- package/packages/security/package.json +30 -0
- package/packages/security/src/biometric.ts +121 -0
- package/packages/security/src/index.ts +5 -0
- package/packages/security/tsconfig.json +17 -0
- package/packages/state/dist/computed.d.ts +10 -0
- package/packages/state/dist/computed.d.ts.map +1 -0
- package/packages/state/dist/computed.js +55 -0
- package/packages/state/dist/computed.js.map +1 -0
- package/packages/state/dist/context.d.ts +9 -0
- package/packages/state/dist/context.d.ts.map +1 -0
- package/packages/state/dist/context.js +36 -0
- package/packages/state/dist/context.js.map +1 -0
- package/packages/state/dist/core/src/animation/easing.d.ts +23 -0
- package/packages/state/dist/core/src/animation/easing.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/easing.js +91 -0
- package/packages/state/dist/core/src/animation/easing.js.map +1 -0
- package/packages/state/dist/core/src/animation/index.d.ts +4 -0
- package/packages/state/dist/core/src/animation/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/index.js +26 -0
- package/packages/state/dist/core/src/animation/index.js.map +1 -0
- package/packages/state/dist/core/src/animation/interpolate.d.ts +7 -0
- package/packages/state/dist/core/src/animation/interpolate.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/interpolate.js +83 -0
- package/packages/state/dist/core/src/animation/interpolate.js.map +1 -0
- package/packages/state/dist/core/src/animation/spring.d.ts +21 -0
- package/packages/state/dist/core/src/animation/spring.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/spring.js +79 -0
- package/packages/state/dist/core/src/animation/spring.js.map +1 -0
- package/packages/state/dist/core/src/component/component.d.ts +6 -0
- package/packages/state/dist/core/src/component/component.d.ts.map +1 -0
- package/packages/state/dist/core/src/component/component.js +14 -0
- package/packages/state/dist/core/src/component/component.js.map +1 -0
- package/packages/state/dist/core/src/component/index.d.ts +2 -0
- package/packages/state/dist/core/src/component/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/component/index.js +18 -0
- package/packages/state/dist/core/src/component/index.js.map +1 -0
- package/packages/state/dist/core/src/index.d.ts +6 -0
- package/packages/state/dist/core/src/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/index.js +30 -0
- package/packages/state/dist/core/src/index.js.map +1 -0
- package/packages/state/dist/core/src/scheduler/index.d.ts +2 -0
- package/packages/state/dist/core/src/scheduler/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/scheduler/index.js +20 -0
- package/packages/state/dist/core/src/scheduler/index.js.map +1 -0
- package/packages/state/dist/core/src/scheduler/scheduler.d.ts +12 -0
- package/packages/state/dist/core/src/scheduler/scheduler.d.ts.map +1 -0
- package/packages/state/dist/core/src/scheduler/scheduler.js +61 -0
- package/packages/state/dist/core/src/scheduler/scheduler.js.map +1 -0
- package/packages/state/dist/core/src/tree/diff.d.ts +17 -0
- package/packages/state/dist/core/src/tree/diff.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/diff.js +67 -0
- package/packages/state/dist/core/src/tree/diff.js.map +1 -0
- package/packages/state/dist/core/src/tree/index.d.ts +4 -0
- package/packages/state/dist/core/src/tree/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/index.js +23 -0
- package/packages/state/dist/core/src/tree/index.js.map +1 -0
- package/packages/state/dist/core/src/tree/node.d.ts +13 -0
- package/packages/state/dist/core/src/tree/node.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/node.js +59 -0
- package/packages/state/dist/core/src/tree/node.js.map +1 -0
- package/packages/state/dist/core/src/tree/tree.d.ts +11 -0
- package/packages/state/dist/core/src/tree/tree.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/tree.js +43 -0
- package/packages/state/dist/core/src/tree/tree.js.map +1 -0
- package/packages/state/dist/effect.d.ts +13 -0
- package/packages/state/dist/effect.d.ts.map +1 -0
- package/packages/state/dist/effect.js +74 -0
- package/packages/state/dist/effect.js.map +1 -0
- package/packages/state/dist/events/dispatch.d.ts +9 -0
- package/packages/state/dist/events/dispatch.d.ts.map +1 -0
- package/packages/state/dist/events/dispatch.js +64 -0
- package/packages/state/dist/events/dispatch.js.map +1 -0
- package/packages/state/dist/events/event.d.ts +18 -0
- package/packages/state/dist/events/event.d.ts.map +1 -0
- package/packages/state/dist/events/event.js +28 -0
- package/packages/state/dist/events/event.js.map +1 -0
- package/packages/state/dist/events/hittest.d.ts +15 -0
- package/packages/state/dist/events/hittest.d.ts.map +1 -0
- package/packages/state/dist/events/hittest.js +56 -0
- package/packages/state/dist/events/hittest.js.map +1 -0
- package/packages/state/dist/events/index.d.ts +6 -0
- package/packages/state/dist/events/index.d.ts.map +1 -0
- package/packages/state/dist/events/index.js +30 -0
- package/packages/state/dist/events/index.js.map +1 -0
- package/packages/state/dist/events/ingestion.d.ts +25 -0
- package/packages/state/dist/events/ingestion.d.ts.map +1 -0
- package/packages/state/dist/events/ingestion.js +61 -0
- package/packages/state/dist/events/ingestion.js.map +1 -0
- package/packages/state/dist/events/propagation.d.ts +9 -0
- package/packages/state/dist/events/propagation.d.ts.map +1 -0
- package/packages/state/dist/events/propagation.js +58 -0
- package/packages/state/dist/events/propagation.js.map +1 -0
- package/packages/state/dist/index.d.ts +10 -0
- package/packages/state/dist/index.d.ts.map +1 -0
- package/packages/state/dist/index.js +38 -0
- package/packages/state/dist/index.js.map +1 -0
- package/packages/state/dist/reducer.d.ts +18 -0
- package/packages/state/dist/reducer.d.ts.map +1 -0
- package/packages/state/dist/reducer.js +44 -0
- package/packages/state/dist/reducer.js.map +1 -0
- package/packages/state/dist/ref.d.ts +9 -0
- package/packages/state/dist/ref.d.ts.map +1 -0
- package/packages/state/dist/ref.js +33 -0
- package/packages/state/dist/ref.js.map +1 -0
- package/packages/state/dist/state/src/computed.d.ts +10 -0
- package/packages/state/dist/state/src/computed.d.ts.map +1 -0
- package/packages/state/dist/state/src/computed.js +55 -0
- package/packages/state/dist/state/src/computed.js.map +1 -0
- package/packages/state/dist/state/src/context.d.ts +9 -0
- package/packages/state/dist/state/src/context.d.ts.map +1 -0
- package/packages/state/dist/state/src/context.js +36 -0
- package/packages/state/dist/state/src/context.js.map +1 -0
- package/packages/state/dist/state/src/effect.d.ts +13 -0
- package/packages/state/dist/state/src/effect.d.ts.map +1 -0
- package/packages/state/dist/state/src/effect.js +74 -0
- package/packages/state/dist/state/src/effect.js.map +1 -0
- package/packages/state/dist/state/src/events/dispatch.d.ts +9 -0
- package/packages/state/dist/state/src/events/dispatch.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/dispatch.js +64 -0
- package/packages/state/dist/state/src/events/dispatch.js.map +1 -0
- package/packages/state/dist/state/src/events/event.d.ts +18 -0
- package/packages/state/dist/state/src/events/event.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/event.js +28 -0
- package/packages/state/dist/state/src/events/event.js.map +1 -0
- package/packages/state/dist/state/src/events/hittest.d.ts +16 -0
- package/packages/state/dist/state/src/events/hittest.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/hittest.js +56 -0
- package/packages/state/dist/state/src/events/hittest.js.map +1 -0
- package/packages/state/dist/state/src/events/index.d.ts +6 -0
- package/packages/state/dist/state/src/events/index.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/index.js +30 -0
- package/packages/state/dist/state/src/events/index.js.map +1 -0
- package/packages/state/dist/state/src/events/ingestion.d.ts +25 -0
- package/packages/state/dist/state/src/events/ingestion.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/ingestion.js +61 -0
- package/packages/state/dist/state/src/events/ingestion.js.map +1 -0
- package/packages/state/dist/state/src/events/propagation.d.ts +10 -0
- package/packages/state/dist/state/src/events/propagation.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/propagation.js +58 -0
- package/packages/state/dist/state/src/events/propagation.js.map +1 -0
- package/packages/state/dist/state/src/index.d.ts +9 -0
- package/packages/state/dist/state/src/index.d.ts.map +1 -0
- package/packages/state/dist/state/src/index.js +36 -0
- package/packages/state/dist/state/src/index.js.map +1 -0
- package/packages/state/dist/state/src/reducer.d.ts +18 -0
- package/packages/state/dist/state/src/reducer.d.ts.map +1 -0
- package/packages/state/dist/state/src/reducer.js +44 -0
- package/packages/state/dist/state/src/reducer.js.map +1 -0
- package/packages/state/dist/state/src/ref.d.ts +9 -0
- package/packages/state/dist/state/src/ref.d.ts.map +1 -0
- package/packages/state/dist/state/src/ref.js +33 -0
- package/packages/state/dist/state/src/ref.js.map +1 -0
- package/packages/state/dist/state/src/state.d.ts +10 -0
- package/packages/state/dist/state/src/state.d.ts.map +1 -0
- package/packages/state/dist/state/src/state.js +70 -0
- package/packages/state/dist/state/src/state.js.map +1 -0
- package/packages/state/dist/state/src/store.d.ts +19 -0
- package/packages/state/dist/state/src/store.d.ts.map +1 -0
- package/packages/state/dist/state/src/store.js +42 -0
- package/packages/state/dist/state/src/store.js.map +1 -0
- package/packages/state/dist/state/src/watch.d.ts +15 -0
- package/packages/state/dist/state/src/watch.d.ts.map +1 -0
- package/packages/state/dist/state/src/watch.js +79 -0
- package/packages/state/dist/state/src/watch.js.map +1 -0
- package/packages/state/dist/state.d.ts +10 -0
- package/packages/state/dist/state.d.ts.map +1 -0
- package/packages/state/dist/state.js +69 -0
- package/packages/state/dist/state.js.map +1 -0
- package/packages/state/dist/store.d.ts +19 -0
- package/packages/state/dist/store.d.ts.map +1 -0
- package/packages/state/dist/store.js +42 -0
- package/packages/state/dist/store.js.map +1 -0
- package/packages/state/dist/watch.d.ts +15 -0
- package/packages/state/dist/watch.d.ts.map +1 -0
- package/packages/state/dist/watch.js +79 -0
- package/packages/state/dist/watch.js.map +1 -0
- package/packages/state/package.json +30 -0
- package/packages/state/src/computed.ts +75 -0
- package/packages/state/src/context.ts +56 -0
- package/packages/state/src/effect.ts +100 -0
- package/packages/state/src/events/dispatch.ts +79 -0
- package/packages/state/src/events/event.ts +97 -0
- package/packages/state/src/events/hittest.ts +95 -0
- package/packages/state/src/events/index.ts +18 -0
- package/packages/state/src/events/ingestion.ts +102 -0
- package/packages/state/src/events/propagation.ts +83 -0
- package/packages/state/src/index.ts +32 -0
- package/packages/state/src/reducer.ts +87 -0
- package/packages/state/src/ref.ts +41 -0
- package/packages/state/src/state.ts +97 -0
- package/packages/state/src/store.ts +79 -0
- package/packages/state/src/watch.ts +131 -0
- package/packages/state/test/api.test.js +16 -0
- package/packages/state/tsconfig.json +17 -0
- package/packages/states/src/computed.ts +0 -0
- package/packages/states/src/state.ts +0 -0
- package/packages/states/tsconfig.json +0 -0
- package/packages/theme/dist/animate.d.ts +72 -0
- package/packages/theme/dist/animate.d.ts.map +1 -0
- package/packages/theme/dist/animate.js +154 -0
- package/packages/theme/dist/animate.js.map +1 -0
- package/packages/theme/dist/index.d.ts +7 -0
- package/packages/theme/dist/index.d.ts.map +1 -0
- package/packages/theme/dist/index.js +32 -0
- package/packages/theme/dist/index.js.map +1 -0
- package/packages/theme/dist/style.d.ts +55 -0
- package/packages/theme/dist/style.d.ts.map +1 -0
- package/packages/theme/dist/style.js +29 -0
- package/packages/theme/dist/style.js.map +1 -0
- package/packages/theme/dist/stylesheet.d.ts +8 -0
- package/packages/theme/dist/stylesheet.d.ts.map +1 -0
- package/packages/theme/dist/stylesheet.js +22 -0
- package/packages/theme/dist/stylesheet.js.map +1 -0
- package/packages/theme/dist/theme.d.ts +23 -0
- package/packages/theme/dist/theme.d.ts.map +1 -0
- package/packages/theme/dist/theme.js +109 -0
- package/packages/theme/dist/theme.js.map +1 -0
- package/packages/theme/dist/tokens.d.ts +116 -0
- package/packages/theme/dist/tokens.d.ts.map +1 -0
- package/packages/theme/dist/tokens.js +127 -0
- package/packages/theme/dist/tokens.js.map +1 -0
- package/packages/theme/dist/variant.d.ts +17 -0
- package/packages/theme/dist/variant.d.ts.map +1 -0
- package/packages/theme/dist/variant.js +35 -0
- package/packages/theme/dist/variant.js.map +1 -0
- package/packages/theme/package.json +30 -0
- package/packages/theme/src/animate.ts +207 -0
- package/packages/theme/src/index.ts +21 -0
- package/packages/theme/src/style.ts +109 -0
- package/packages/theme/src/stylesheet.ts +40 -0
- package/packages/theme/src/theme.ts +145 -0
- package/packages/theme/src/tokens.ts +303 -0
- package/packages/theme/src/variant.ts +68 -0
- package/packages/theme/tsconfig.json +17 -0
- package/packages/ui/dist/charts/BarChart.d.ts +23 -0
- package/packages/ui/dist/charts/BarChart.d.ts.map +1 -0
- package/packages/ui/dist/charts/BarChart.js +34 -0
- package/packages/ui/dist/charts/BarChart.js.map +1 -0
- package/packages/ui/dist/charts/LineChart.d.ts +27 -0
- package/packages/ui/dist/charts/LineChart.d.ts.map +1 -0
- package/packages/ui/dist/charts/LineChart.js +35 -0
- package/packages/ui/dist/charts/LineChart.js.map +1 -0
- package/packages/ui/dist/charts/index.d.ts +3 -0
- package/packages/ui/dist/charts/index.d.ts.map +1 -0
- package/packages/ui/dist/charts/index.js +21 -0
- package/packages/ui/dist/charts/index.js.map +1 -0
- package/packages/ui/dist/conditional/If.d.ts +4 -0
- package/packages/ui/dist/conditional/If.d.ts.map +1 -0
- package/packages/ui/dist/conditional/If.js +25 -0
- package/packages/ui/dist/conditional/If.js.map +1 -0
- package/packages/ui/dist/data/List.d.ts +18 -0
- package/packages/ui/dist/data/List.d.ts.map +1 -0
- package/packages/ui/dist/data/List.js +27 -0
- package/packages/ui/dist/data/List.js.map +1 -0
- package/packages/ui/dist/data/Table.d.ts +3 -0
- package/packages/ui/dist/data/Table.d.ts.map +1 -0
- package/packages/ui/dist/data/Table.js +21 -0
- package/packages/ui/dist/data/Table.js.map +1 -0
- package/packages/ui/dist/data/index.d.ts +34 -0
- package/packages/ui/dist/data/index.d.ts.map +1 -0
- package/packages/ui/dist/data/index.js +30 -0
- package/packages/ui/dist/data/index.js.map +1 -0
- package/packages/ui/dist/display/Avatar.d.ts +18 -0
- package/packages/ui/dist/display/Avatar.d.ts.map +1 -0
- package/packages/ui/dist/display/Avatar.js +53 -0
- package/packages/ui/dist/display/Avatar.js.map +1 -0
- package/packages/ui/dist/display/Badge.d.ts +17 -0
- package/packages/ui/dist/display/Badge.d.ts.map +1 -0
- package/packages/ui/dist/display/Badge.js +31 -0
- package/packages/ui/dist/display/Badge.js.map +1 -0
- package/packages/ui/dist/display/Card.d.ts +20 -0
- package/packages/ui/dist/display/Card.d.ts.map +1 -0
- package/packages/ui/dist/display/Card.js +35 -0
- package/packages/ui/dist/display/Card.js.map +1 -0
- package/packages/ui/dist/display/Icon.d.ts +14 -0
- package/packages/ui/dist/display/Icon.d.ts.map +1 -0
- package/packages/ui/dist/display/Icon.js +23 -0
- package/packages/ui/dist/display/Icon.js.map +1 -0
- package/packages/ui/dist/display/Image.d.ts +22 -0
- package/packages/ui/dist/display/Image.d.ts.map +1 -0
- package/packages/ui/dist/display/Image.js +30 -0
- package/packages/ui/dist/display/Image.js.map +1 -0
- package/packages/ui/dist/display/index.d.ts +6 -0
- package/packages/ui/dist/display/index.d.ts.map +1 -0
- package/packages/ui/dist/display/index.js +24 -0
- package/packages/ui/dist/display/index.js.map +1 -0
- package/packages/ui/dist/feedback/EmptyState.d.ts +16 -0
- package/packages/ui/dist/feedback/EmptyState.d.ts.map +1 -0
- package/packages/ui/dist/feedback/EmptyState.js +25 -0
- package/packages/ui/dist/feedback/EmptyState.js.map +1 -0
- package/packages/ui/dist/feedback/Skeleton.d.ts +15 -0
- package/packages/ui/dist/feedback/Skeleton.d.ts.map +1 -0
- package/packages/ui/dist/feedback/Skeleton.js +24 -0
- package/packages/ui/dist/feedback/Skeleton.js.map +1 -0
- package/packages/ui/dist/feedback/Spinner.d.ts +13 -0
- package/packages/ui/dist/feedback/Spinner.d.ts.map +1 -0
- package/packages/ui/dist/feedback/Spinner.js +35 -0
- package/packages/ui/dist/feedback/Spinner.js.map +1 -0
- package/packages/ui/dist/feedback/index.d.ts +4 -0
- package/packages/ui/dist/feedback/index.d.ts.map +1 -0
- package/packages/ui/dist/feedback/index.js +22 -0
- package/packages/ui/dist/feedback/index.js.map +1 -0
- package/packages/ui/dist/index.d.ts +11 -0
- package/packages/ui/dist/index.d.ts.map +1 -0
- package/packages/ui/dist/index.js +40 -0
- package/packages/ui/dist/index.js.map +1 -0
- package/packages/ui/dist/input/Button.d.ts +26 -0
- package/packages/ui/dist/input/Button.d.ts.map +1 -0
- package/packages/ui/dist/input/Button.js +39 -0
- package/packages/ui/dist/input/Button.js.map +1 -0
- package/packages/ui/dist/input/Checkbox.d.ts +16 -0
- package/packages/ui/dist/input/Checkbox.d.ts.map +1 -0
- package/packages/ui/dist/input/Checkbox.js +25 -0
- package/packages/ui/dist/input/Checkbox.js.map +1 -0
- package/packages/ui/dist/input/Dropdown.d.ts +27 -0
- package/packages/ui/dist/input/Dropdown.d.ts.map +1 -0
- package/packages/ui/dist/input/Dropdown.js +30 -0
- package/packages/ui/dist/input/Dropdown.js.map +1 -0
- package/packages/ui/dist/input/Input.d.ts +34 -0
- package/packages/ui/dist/input/Input.d.ts.map +1 -0
- package/packages/ui/dist/input/Input.js +43 -0
- package/packages/ui/dist/input/Input.js.map +1 -0
- package/packages/ui/dist/input/SearchBar.d.ts +20 -0
- package/packages/ui/dist/input/SearchBar.d.ts.map +1 -0
- package/packages/ui/dist/input/SearchBar.js +31 -0
- package/packages/ui/dist/input/SearchBar.js.map +1 -0
- package/packages/ui/dist/input/Slider.d.ts +22 -0
- package/packages/ui/dist/input/Slider.d.ts.map +1 -0
- package/packages/ui/dist/input/Slider.js +32 -0
- package/packages/ui/dist/input/Slider.js.map +1 -0
- package/packages/ui/dist/input/Toggle.d.ts +17 -0
- package/packages/ui/dist/input/Toggle.d.ts.map +1 -0
- package/packages/ui/dist/input/Toggle.js +29 -0
- package/packages/ui/dist/input/Toggle.js.map +1 -0
- package/packages/ui/dist/input/index.d.ts +8 -0
- package/packages/ui/dist/input/index.d.ts.map +1 -0
- package/packages/ui/dist/input/index.js +26 -0
- package/packages/ui/dist/input/index.js.map +1 -0
- package/packages/ui/dist/layout/Box.d.ts +25 -0
- package/packages/ui/dist/layout/Box.d.ts.map +1 -0
- package/packages/ui/dist/layout/Box.js +34 -0
- package/packages/ui/dist/layout/Box.js.map +1 -0
- package/packages/ui/dist/layout/Column.d.ts +30 -0
- package/packages/ui/dist/layout/Column.d.ts.map +1 -0
- package/packages/ui/dist/layout/Column.js +32 -0
- package/packages/ui/dist/layout/Column.js.map +1 -0
- package/packages/ui/dist/layout/Divider.d.ts +14 -0
- package/packages/ui/dist/layout/Divider.d.ts.map +1 -0
- package/packages/ui/dist/layout/Divider.js +23 -0
- package/packages/ui/dist/layout/Divider.js.map +1 -0
- package/packages/ui/dist/layout/Grid.d.ts +17 -0
- package/packages/ui/dist/layout/Grid.d.ts.map +1 -0
- package/packages/ui/dist/layout/Grid.js +26 -0
- package/packages/ui/dist/layout/Grid.js.map +1 -0
- package/packages/ui/dist/layout/Row.d.ts +28 -0
- package/packages/ui/dist/layout/Row.d.ts.map +1 -0
- package/packages/ui/dist/layout/Row.js +29 -0
- package/packages/ui/dist/layout/Row.js.map +1 -0
- package/packages/ui/dist/layout/ScrollView.d.ts +18 -0
- package/packages/ui/dist/layout/ScrollView.d.ts.map +1 -0
- package/packages/ui/dist/layout/ScrollView.js +25 -0
- package/packages/ui/dist/layout/ScrollView.js.map +1 -0
- package/packages/ui/dist/layout/Spacer.d.ts +9 -0
- package/packages/ui/dist/layout/Spacer.d.ts.map +1 -0
- package/packages/ui/dist/layout/Spacer.js +21 -0
- package/packages/ui/dist/layout/Spacer.js.map +1 -0
- package/packages/ui/dist/layout/Stack.d.ts +14 -0
- package/packages/ui/dist/layout/Stack.d.ts.map +1 -0
- package/packages/ui/dist/layout/Stack.js +25 -0
- package/packages/ui/dist/layout/Stack.js.map +1 -0
- package/packages/ui/dist/layout/index.d.ts +9 -0
- package/packages/ui/dist/layout/index.d.ts.map +1 -0
- package/packages/ui/dist/layout/index.js +27 -0
- package/packages/ui/dist/layout/index.js.map +1 -0
- package/packages/ui/dist/navigation/BottomNav.d.ts +23 -0
- package/packages/ui/dist/navigation/BottomNav.d.ts.map +1 -0
- package/packages/ui/dist/navigation/BottomNav.js +25 -0
- package/packages/ui/dist/navigation/BottomNav.js.map +1 -0
- package/packages/ui/dist/navigation/Drawer.d.ts +18 -0
- package/packages/ui/dist/navigation/Drawer.d.ts.map +1 -0
- package/packages/ui/dist/navigation/Drawer.js +29 -0
- package/packages/ui/dist/navigation/Drawer.js.map +1 -0
- package/packages/ui/dist/navigation/TabBar.d.ts +22 -0
- package/packages/ui/dist/navigation/TabBar.d.ts.map +1 -0
- package/packages/ui/dist/navigation/TabBar.js +26 -0
- package/packages/ui/dist/navigation/TabBar.js.map +1 -0
- package/packages/ui/dist/navigation/index.d.ts +4 -0
- package/packages/ui/dist/navigation/index.d.ts.map +1 -0
- package/packages/ui/dist/navigation/index.js +22 -0
- package/packages/ui/dist/navigation/index.js.map +1 -0
- package/packages/ui/dist/overlay/Dialog.d.ts +31 -0
- package/packages/ui/dist/overlay/Dialog.d.ts.map +1 -0
- package/packages/ui/dist/overlay/Dialog.js +81 -0
- package/packages/ui/dist/overlay/Dialog.js.map +1 -0
- package/packages/ui/dist/overlay/Modal.d.ts +19 -0
- package/packages/ui/dist/overlay/Modal.d.ts.map +1 -0
- package/packages/ui/dist/overlay/Modal.js +31 -0
- package/packages/ui/dist/overlay/Modal.js.map +1 -0
- package/packages/ui/dist/overlay/Sheet.d.ts +20 -0
- package/packages/ui/dist/overlay/Sheet.d.ts.map +1 -0
- package/packages/ui/dist/overlay/Sheet.js +31 -0
- package/packages/ui/dist/overlay/Sheet.js.map +1 -0
- package/packages/ui/dist/overlay/index.d.ts +4 -0
- package/packages/ui/dist/overlay/index.d.ts.map +1 -0
- package/packages/ui/dist/overlay/index.js +22 -0
- package/packages/ui/dist/overlay/index.js.map +1 -0
- package/packages/ui/dist/typography/Code.d.ts +18 -0
- package/packages/ui/dist/typography/Code.d.ts.map +1 -0
- package/packages/ui/dist/typography/Code.js +29 -0
- package/packages/ui/dist/typography/Code.js.map +1 -0
- package/packages/ui/dist/typography/Heading.d.ts +14 -0
- package/packages/ui/dist/typography/Heading.d.ts.map +1 -0
- package/packages/ui/dist/typography/Heading.js +39 -0
- package/packages/ui/dist/typography/Heading.js.map +1 -0
- package/packages/ui/dist/typography/Markdown.d.ts +14 -0
- package/packages/ui/dist/typography/Markdown.d.ts.map +1 -0
- package/packages/ui/dist/typography/Markdown.js +27 -0
- package/packages/ui/dist/typography/Markdown.js.map +1 -0
- package/packages/ui/dist/typography/Text.d.ts +25 -0
- package/packages/ui/dist/typography/Text.d.ts.map +1 -0
- package/packages/ui/dist/typography/Text.js +34 -0
- package/packages/ui/dist/typography/Text.js.map +1 -0
- package/packages/ui/dist/typography/index.d.ts +5 -0
- package/packages/ui/dist/typography/index.d.ts.map +1 -0
- package/packages/ui/dist/typography/index.js +23 -0
- package/packages/ui/dist/typography/index.js.map +1 -0
- package/packages/ui/package.json +35 -0
- package/packages/ui/src/charts/BarChart.ts +86 -0
- package/packages/ui/src/charts/LineChart.ts +98 -0
- package/packages/ui/src/charts/index.ts +5 -0
- package/packages/ui/src/conditional/If.ts +30 -0
- package/packages/ui/src/data/List.ts +72 -0
- package/packages/ui/src/data/Table.ts +5 -0
- package/packages/ui/src/data/index.ts +111 -0
- package/packages/ui/src/display/Avatar.ts +93 -0
- package/packages/ui/src/display/Badge.ts +72 -0
- package/packages/ui/src/display/Card.ts +82 -0
- package/packages/ui/src/display/Icon.ts +75 -0
- package/packages/ui/src/display/Image.ts +80 -0
- package/packages/ui/src/display/index.ts +8 -0
- package/packages/ui/src/feedback/EmptyState.ts +56 -0
- package/packages/ui/src/feedback/Skeleton.ts +53 -0
- package/packages/ui/src/feedback/Spinner.ts +61 -0
- package/packages/ui/src/feedback/index.ts +6 -0
- package/packages/ui/src/index.ts +33 -0
- package/packages/ui/src/input/Button.ts +104 -0
- package/packages/ui/src/input/Checkbox.ts +58 -0
- package/packages/ui/src/input/Dropdown.ts +92 -0
- package/packages/ui/src/input/Input.ts +138 -0
- package/packages/ui/src/input/SearchBar.ts +77 -0
- package/packages/ui/src/input/Slider.ts +82 -0
- package/packages/ui/src/input/Toggle.ts +65 -0
- package/packages/ui/src/input/index.ts +10 -0
- package/packages/ui/src/layout/Box.ts +94 -0
- package/packages/ui/src/layout/Column.ts +86 -0
- package/packages/ui/src/layout/Divider.ts +50 -0
- package/packages/ui/src/layout/Grid.ts +62 -0
- package/packages/ui/src/layout/Row.ts +77 -0
- package/packages/ui/src/layout/ScrollView.ts +64 -0
- package/packages/ui/src/layout/Spacer.ts +34 -0
- package/packages/ui/src/layout/Stack.ts +54 -0
- package/packages/ui/src/layout/index.ts +11 -0
- package/packages/ui/src/navigation/BottomNav.ts +73 -0
- package/packages/ui/src/navigation/Drawer.ts +72 -0
- package/packages/ui/src/navigation/TabBar.ts +73 -0
- package/packages/ui/src/navigation/index.ts +6 -0
- package/packages/ui/src/overlay/Dialog.ts +124 -0
- package/packages/ui/src/overlay/Modal.ts +76 -0
- package/packages/ui/src/overlay/Sheet.ts +79 -0
- package/packages/ui/src/overlay/index.ts +6 -0
- package/packages/ui/src/typography/Code.ts +88 -0
- package/packages/ui/src/typography/Heading.ts +70 -0
- package/packages/ui/src/typography/Markdown.ts +56 -0
- package/packages/ui/src/typography/Text.ts +104 -0
- package/packages/ui/src/typography/index.ts +7 -0
- package/packages/ui/tsconfig.json +18 -0
- package/packages/updater/dist/index.d.ts +2 -0
- package/packages/updater/dist/index.d.ts.map +1 -0
- package/packages/updater/dist/index.js +20 -0
- package/packages/updater/dist/index.js.map +1 -0
- package/packages/updater/dist/updater.d.ts +49 -0
- package/packages/updater/dist/updater.d.ts.map +1 -0
- package/packages/updater/dist/updater.js +119 -0
- package/packages/updater/dist/updater.js.map +1 -0
- package/packages/updater/package.json +30 -0
- package/packages/updater/src/index.ts +4 -0
- package/packages/updater/src/updater.ts +254 -0
- package/packages/updater/tsconfig.json +17 -0
- package/prompt-app/addlibrary.ts +7 -0
- package/prompt-app/app.dtx +27 -0
- package/prompt-app/package.json +13 -0
- package/prompt-app/screens/Home.dtx +20 -0
- package/prompt-app/tsconfig.json +8 -0
- package/tools/build/build.js +38 -0
- package/tools/build/publish.js +39 -0
- package/tools/build/test.js +24 -0
- package/ts-app/addlibrary.ts +7 -0
- package/ts-app/app.ts +29 -0
- package/ts-app/package.json +13 -0
- package/ts-app/screens/Home.ts +20 -0
- package/ts-app/tsconfig.json +8 -0
- package/tsconfig.json +13 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { URL, UrlObject } from 'url'
|
|
2
|
+
import { Duplex } from 'stream'
|
|
3
|
+
import Dispatcher from './dispatcher'
|
|
4
|
+
|
|
5
|
+
export {
|
|
6
|
+
request,
|
|
7
|
+
stream,
|
|
8
|
+
pipeline,
|
|
9
|
+
connect,
|
|
10
|
+
upgrade,
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/** Performs an HTTP request. */
|
|
14
|
+
declare function request(
|
|
15
|
+
url: string | URL | UrlObject,
|
|
16
|
+
options?: { dispatcher?: Dispatcher } & Omit<Dispatcher.RequestOptions, 'origin' | 'path' | 'method'> & Partial<Pick<Dispatcher.RequestOptions, 'method'>>,
|
|
17
|
+
): Promise<Dispatcher.ResponseData>;
|
|
18
|
+
|
|
19
|
+
/** A faster version of `request`. */
|
|
20
|
+
declare function stream(
|
|
21
|
+
url: string | URL | UrlObject,
|
|
22
|
+
options: { dispatcher?: Dispatcher } & Omit<Dispatcher.RequestOptions, 'origin' | 'path'>,
|
|
23
|
+
factory: Dispatcher.StreamFactory
|
|
24
|
+
): Promise<Dispatcher.StreamData>;
|
|
25
|
+
|
|
26
|
+
/** For easy use with `stream.pipeline`. */
|
|
27
|
+
declare function pipeline(
|
|
28
|
+
url: string | URL | UrlObject,
|
|
29
|
+
options: { dispatcher?: Dispatcher } & Omit<Dispatcher.PipelineOptions, 'origin' | 'path'>,
|
|
30
|
+
handler: Dispatcher.PipelineHandler
|
|
31
|
+
): Duplex;
|
|
32
|
+
|
|
33
|
+
/** Starts two-way communications with the requested resource. */
|
|
34
|
+
declare function connect(
|
|
35
|
+
url: string | URL | UrlObject,
|
|
36
|
+
options?: { dispatcher?: Dispatcher } & Omit<Dispatcher.ConnectOptions, 'origin' | 'path'>
|
|
37
|
+
): Promise<Dispatcher.ConnectData>;
|
|
38
|
+
|
|
39
|
+
/** Upgrade to a different protocol. */
|
|
40
|
+
declare function upgrade(
|
|
41
|
+
url: string | URL | UrlObject,
|
|
42
|
+
options?: { dispatcher?: Dispatcher } & Omit<Dispatcher.UpgradeOptions, 'origin' | 'path'>
|
|
43
|
+
): Promise<Dispatcher.UpgradeData>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import Pool from './pool'
|
|
2
|
+
import Dispatcher from './dispatcher'
|
|
3
|
+
import { URL } from 'url'
|
|
4
|
+
|
|
5
|
+
export default BalancedPool
|
|
6
|
+
|
|
7
|
+
type BalancedPoolConnectOptions = Omit<Dispatcher.ConnectOptions, "origin">;
|
|
8
|
+
|
|
9
|
+
declare class BalancedPool extends Dispatcher {
|
|
10
|
+
constructor(url: string | string[] | URL | URL[], options?: Pool.Options);
|
|
11
|
+
|
|
12
|
+
addUpstream(upstream: string | URL): BalancedPool;
|
|
13
|
+
removeUpstream(upstream: string | URL): BalancedPool;
|
|
14
|
+
upstreams: Array<string>;
|
|
15
|
+
|
|
16
|
+
/** `true` after `pool.close()` has been called. */
|
|
17
|
+
closed: boolean;
|
|
18
|
+
/** `true` after `pool.destroyed()` has been called or `pool.close()` has been called and the pool shutdown has completed. */
|
|
19
|
+
destroyed: boolean;
|
|
20
|
+
|
|
21
|
+
// Override dispatcher APIs.
|
|
22
|
+
override connect(
|
|
23
|
+
options: BalancedPoolConnectOptions
|
|
24
|
+
): Promise<Dispatcher.ConnectData>;
|
|
25
|
+
override connect(
|
|
26
|
+
options: BalancedPoolConnectOptions,
|
|
27
|
+
callback: (err: Error | null, data: Dispatcher.ConnectData) => void
|
|
28
|
+
): void;
|
|
29
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { RequestInfo, Response, Request } from './fetch'
|
|
2
|
+
|
|
3
|
+
export interface CacheStorage {
|
|
4
|
+
match (request: RequestInfo, options?: MultiCacheQueryOptions): Promise<Response | undefined>,
|
|
5
|
+
has (cacheName: string): Promise<boolean>,
|
|
6
|
+
open (cacheName: string): Promise<Cache>,
|
|
7
|
+
delete (cacheName: string): Promise<boolean>,
|
|
8
|
+
keys (): Promise<string[]>
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
declare const CacheStorage: {
|
|
12
|
+
prototype: CacheStorage
|
|
13
|
+
new(): CacheStorage
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface Cache {
|
|
17
|
+
match (request: RequestInfo, options?: CacheQueryOptions): Promise<Response | undefined>,
|
|
18
|
+
matchAll (request?: RequestInfo, options?: CacheQueryOptions): Promise<readonly Response[]>,
|
|
19
|
+
add (request: RequestInfo): Promise<undefined>,
|
|
20
|
+
addAll (requests: RequestInfo[]): Promise<undefined>,
|
|
21
|
+
put (request: RequestInfo, response: Response): Promise<undefined>,
|
|
22
|
+
delete (request: RequestInfo, options?: CacheQueryOptions): Promise<boolean>,
|
|
23
|
+
keys (request?: RequestInfo, options?: CacheQueryOptions): Promise<readonly Request[]>
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface CacheQueryOptions {
|
|
27
|
+
ignoreSearch?: boolean,
|
|
28
|
+
ignoreMethod?: boolean,
|
|
29
|
+
ignoreVary?: boolean
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface MultiCacheQueryOptions extends CacheQueryOptions {
|
|
33
|
+
cacheName?: string
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export declare const caches: CacheStorage
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { URL } from 'url'
|
|
2
|
+
import { TlsOptions } from 'tls'
|
|
3
|
+
import Dispatcher from './dispatcher'
|
|
4
|
+
import buildConnector from "./connector";
|
|
5
|
+
|
|
6
|
+
type ClientConnectOptions = Omit<Dispatcher.ConnectOptions, "origin">;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* A basic HTTP/1.1 client, mapped on top a single TCP/TLS connection. Pipelining is disabled by default.
|
|
10
|
+
*/
|
|
11
|
+
export class Client extends Dispatcher {
|
|
12
|
+
constructor(url: string | URL, options?: Client.Options);
|
|
13
|
+
/** Property to get and set the pipelining factor. */
|
|
14
|
+
pipelining: number;
|
|
15
|
+
/** `true` after `client.close()` has been called. */
|
|
16
|
+
closed: boolean;
|
|
17
|
+
/** `true` after `client.destroyed()` has been called or `client.close()` has been called and the client shutdown has completed. */
|
|
18
|
+
destroyed: boolean;
|
|
19
|
+
|
|
20
|
+
// Override dispatcher APIs.
|
|
21
|
+
override connect(
|
|
22
|
+
options: ClientConnectOptions
|
|
23
|
+
): Promise<Dispatcher.ConnectData>;
|
|
24
|
+
override connect(
|
|
25
|
+
options: ClientConnectOptions,
|
|
26
|
+
callback: (err: Error | null, data: Dispatcher.ConnectData) => void
|
|
27
|
+
): void;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export declare namespace Client {
|
|
31
|
+
export interface OptionsInterceptors {
|
|
32
|
+
Client: readonly Dispatcher.DispatchInterceptor[];
|
|
33
|
+
}
|
|
34
|
+
export interface Options {
|
|
35
|
+
/** TODO */
|
|
36
|
+
interceptors?: OptionsInterceptors;
|
|
37
|
+
/** The maximum length of request headers in bytes. Default: Node.js' `--max-http-header-size` or `16384` (16KiB). */
|
|
38
|
+
maxHeaderSize?: number;
|
|
39
|
+
/** The amount of time, in milliseconds, the parser will wait to receive the complete HTTP headers (Node 14 and above only). Default: `300e3` milliseconds (300s). */
|
|
40
|
+
headersTimeout?: number;
|
|
41
|
+
/** @deprecated unsupported socketTimeout, use headersTimeout & bodyTimeout instead */
|
|
42
|
+
socketTimeout?: never;
|
|
43
|
+
/** @deprecated unsupported requestTimeout, use headersTimeout & bodyTimeout instead */
|
|
44
|
+
requestTimeout?: never;
|
|
45
|
+
/** TODO */
|
|
46
|
+
connectTimeout?: number;
|
|
47
|
+
/** The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use `0` to disable it entirely. Default: `300e3` milliseconds (300s). */
|
|
48
|
+
bodyTimeout?: number;
|
|
49
|
+
/** @deprecated unsupported idleTimeout, use keepAliveTimeout instead */
|
|
50
|
+
idleTimeout?: never;
|
|
51
|
+
/** @deprecated unsupported keepAlive, use pipelining=0 instead */
|
|
52
|
+
keepAlive?: never;
|
|
53
|
+
/** the timeout, in milliseconds, after which a socket without active requests will time out. Monitors time between activity on a connected socket. This value may be overridden by *keep-alive* hints from the server. Default: `4e3` milliseconds (4s). */
|
|
54
|
+
keepAliveTimeout?: number;
|
|
55
|
+
/** @deprecated unsupported maxKeepAliveTimeout, use keepAliveMaxTimeout instead */
|
|
56
|
+
maxKeepAliveTimeout?: never;
|
|
57
|
+
/** the maximum allowed `idleTimeout`, in milliseconds, when overridden by *keep-alive* hints from the server. Default: `600e3` milliseconds (10min). */
|
|
58
|
+
keepAliveMaxTimeout?: number;
|
|
59
|
+
/** A number of milliseconds subtracted from server *keep-alive* hints when overriding `idleTimeout` to account for timing inaccuracies caused by e.g. transport latency. Default: `1e3` milliseconds (1s). */
|
|
60
|
+
keepAliveTimeoutThreshold?: number;
|
|
61
|
+
/** TODO */
|
|
62
|
+
socketPath?: string;
|
|
63
|
+
/** The amount of concurrent requests to be sent over the single TCP/TLS connection according to [RFC7230](https://tools.ietf.org/html/rfc7230#section-6.3.2). Default: `1`. */
|
|
64
|
+
pipelining?: number;
|
|
65
|
+
/** @deprecated use the connect option instead */
|
|
66
|
+
tls?: never;
|
|
67
|
+
/** If `true`, an error is thrown when the request content-length header doesn't match the length of the request body. Default: `true`. */
|
|
68
|
+
strictContentLength?: boolean;
|
|
69
|
+
/** TODO */
|
|
70
|
+
maxCachedSessions?: number;
|
|
71
|
+
/** TODO */
|
|
72
|
+
maxRedirections?: number;
|
|
73
|
+
/** TODO */
|
|
74
|
+
connect?: buildConnector.BuildOptions | buildConnector.connector;
|
|
75
|
+
/** TODO */
|
|
76
|
+
maxRequestsPerClient?: number;
|
|
77
|
+
/** TODO */
|
|
78
|
+
localAddress?: string;
|
|
79
|
+
/** Max response body size in bytes, -1 is disabled */
|
|
80
|
+
maxResponseSize?: number;
|
|
81
|
+
/** Enables a family autodetection algorithm that loosely implements section 5 of RFC 8305. */
|
|
82
|
+
autoSelectFamily?: boolean;
|
|
83
|
+
/** The amount of time in milliseconds to wait for a connection attempt to finish before trying the next address when using the `autoSelectFamily` option. */
|
|
84
|
+
autoSelectFamilyAttemptTimeout?: number;
|
|
85
|
+
/**
|
|
86
|
+
* @description Enables support for H2 if the server has assigned bigger priority to it through ALPN negotiation.
|
|
87
|
+
* @default false
|
|
88
|
+
*/
|
|
89
|
+
allowH2?: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* @description Dictates the maximum number of concurrent streams for a single H2 session. It can be overridden by a SETTINGS remote frame.
|
|
92
|
+
* @default 100
|
|
93
|
+
*/
|
|
94
|
+
maxConcurrentStreams?: number
|
|
95
|
+
}
|
|
96
|
+
export interface SocketInfo {
|
|
97
|
+
localAddress?: string
|
|
98
|
+
localPort?: number
|
|
99
|
+
remoteAddress?: string
|
|
100
|
+
remotePort?: number
|
|
101
|
+
remoteFamily?: string
|
|
102
|
+
timeout?: number
|
|
103
|
+
bytesWritten?: number
|
|
104
|
+
bytesRead?: number
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export default Client;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { TLSSocket, ConnectionOptions } from 'tls'
|
|
2
|
+
import { IpcNetConnectOpts, Socket, TcpNetConnectOpts } from 'net'
|
|
3
|
+
|
|
4
|
+
export default buildConnector
|
|
5
|
+
declare function buildConnector (options?: buildConnector.BuildOptions): buildConnector.connector
|
|
6
|
+
|
|
7
|
+
declare namespace buildConnector {
|
|
8
|
+
export type BuildOptions = (ConnectionOptions | TcpNetConnectOpts | IpcNetConnectOpts) & {
|
|
9
|
+
allowH2?: boolean;
|
|
10
|
+
maxCachedSessions?: number | null;
|
|
11
|
+
socketPath?: string | null;
|
|
12
|
+
timeout?: number | null;
|
|
13
|
+
port?: number;
|
|
14
|
+
keepAlive?: boolean | null;
|
|
15
|
+
keepAliveInitialDelay?: number | null;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export interface Options {
|
|
19
|
+
hostname: string
|
|
20
|
+
host?: string
|
|
21
|
+
protocol: string
|
|
22
|
+
port: string
|
|
23
|
+
servername?: string
|
|
24
|
+
localAddress?: string | null
|
|
25
|
+
httpSocket?: Socket
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export type Callback = (...args: CallbackArgs) => void
|
|
29
|
+
type CallbackArgs = [null, Socket | TLSSocket] | [Error, null]
|
|
30
|
+
|
|
31
|
+
export interface connector {
|
|
32
|
+
(options: buildConnector.Options, callback: buildConnector.Callback): void
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
|
|
3
|
+
interface MIMEType {
|
|
4
|
+
type: string
|
|
5
|
+
subtype: string
|
|
6
|
+
parameters: Map<string, string>
|
|
7
|
+
essence: string
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Parse a string to a {@link MIMEType} object. Returns `failure` if the string
|
|
12
|
+
* couldn't be parsed.
|
|
13
|
+
* @see https://mimesniff.spec.whatwg.org/#parse-a-mime-type
|
|
14
|
+
*/
|
|
15
|
+
export function parseMIMEType (input: string): 'failure' | MIMEType
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Convert a MIMEType object to a string.
|
|
19
|
+
* @see https://mimesniff.spec.whatwg.org/#serialize-a-mime-type
|
|
20
|
+
*/
|
|
21
|
+
export function serializeAMimeType (mimeType: MIMEType): string
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
|
|
3
|
+
import type { Headers } from './fetch'
|
|
4
|
+
|
|
5
|
+
export interface Cookie {
|
|
6
|
+
name: string
|
|
7
|
+
value: string
|
|
8
|
+
expires?: Date | number
|
|
9
|
+
maxAge?: number
|
|
10
|
+
domain?: string
|
|
11
|
+
path?: string
|
|
12
|
+
secure?: boolean
|
|
13
|
+
httpOnly?: boolean
|
|
14
|
+
sameSite?: 'Strict' | 'Lax' | 'None'
|
|
15
|
+
unparsed?: string[]
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function deleteCookie (
|
|
19
|
+
headers: Headers,
|
|
20
|
+
name: string,
|
|
21
|
+
attributes?: { name?: string, domain?: string }
|
|
22
|
+
): void
|
|
23
|
+
|
|
24
|
+
export function getCookies (headers: Headers): Record<string, string>
|
|
25
|
+
|
|
26
|
+
export function getSetCookies (headers: Headers): Cookie[]
|
|
27
|
+
|
|
28
|
+
export function setCookie (headers: Headers, cookie: Cookie): void
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Socket } from "net";
|
|
2
|
+
import { URL } from "url";
|
|
3
|
+
import Connector from "./connector";
|
|
4
|
+
import Dispatcher from "./dispatcher";
|
|
5
|
+
|
|
6
|
+
declare namespace DiagnosticsChannel {
|
|
7
|
+
interface Request {
|
|
8
|
+
origin?: string | URL;
|
|
9
|
+
completed: boolean;
|
|
10
|
+
method?: Dispatcher.HttpMethod;
|
|
11
|
+
path: string;
|
|
12
|
+
headers: any;
|
|
13
|
+
}
|
|
14
|
+
interface Response {
|
|
15
|
+
statusCode: number;
|
|
16
|
+
statusText: string;
|
|
17
|
+
headers: Array<Buffer>;
|
|
18
|
+
}
|
|
19
|
+
type Error = unknown;
|
|
20
|
+
interface ConnectParams {
|
|
21
|
+
host: URL["host"];
|
|
22
|
+
hostname: URL["hostname"];
|
|
23
|
+
protocol: URL["protocol"];
|
|
24
|
+
port: URL["port"];
|
|
25
|
+
servername: string | null;
|
|
26
|
+
}
|
|
27
|
+
type Connector = Connector.connector;
|
|
28
|
+
export interface RequestCreateMessage {
|
|
29
|
+
request: Request;
|
|
30
|
+
}
|
|
31
|
+
export interface RequestBodySentMessage {
|
|
32
|
+
request: Request;
|
|
33
|
+
}
|
|
34
|
+
export interface RequestHeadersMessage {
|
|
35
|
+
request: Request;
|
|
36
|
+
response: Response;
|
|
37
|
+
}
|
|
38
|
+
export interface RequestTrailersMessage {
|
|
39
|
+
request: Request;
|
|
40
|
+
trailers: Array<Buffer>;
|
|
41
|
+
}
|
|
42
|
+
export interface RequestErrorMessage {
|
|
43
|
+
request: Request;
|
|
44
|
+
error: Error;
|
|
45
|
+
}
|
|
46
|
+
export interface ClientSendHeadersMessage {
|
|
47
|
+
request: Request;
|
|
48
|
+
headers: string;
|
|
49
|
+
socket: Socket;
|
|
50
|
+
}
|
|
51
|
+
export interface ClientBeforeConnectMessage {
|
|
52
|
+
connectParams: ConnectParams;
|
|
53
|
+
connector: Connector;
|
|
54
|
+
}
|
|
55
|
+
export interface ClientConnectedMessage {
|
|
56
|
+
socket: Socket;
|
|
57
|
+
connectParams: ConnectParams;
|
|
58
|
+
connector: Connector;
|
|
59
|
+
}
|
|
60
|
+
export interface ClientConnectErrorMessage {
|
|
61
|
+
error: Error;
|
|
62
|
+
socket: Socket;
|
|
63
|
+
connectParams: ConnectParams;
|
|
64
|
+
connector: Connector;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
import { URL } from 'url'
|
|
2
|
+
import { Duplex, Readable, Writable } from 'stream'
|
|
3
|
+
import { EventEmitter } from 'events'
|
|
4
|
+
import { Blob } from 'buffer'
|
|
5
|
+
import { IncomingHttpHeaders } from './header'
|
|
6
|
+
import BodyReadable from './readable'
|
|
7
|
+
import { FormData } from './formdata'
|
|
8
|
+
import Errors from './errors'
|
|
9
|
+
|
|
10
|
+
type AbortSignal = unknown;
|
|
11
|
+
|
|
12
|
+
export default Dispatcher
|
|
13
|
+
|
|
14
|
+
/** Dispatcher is the core API used to dispatch requests. */
|
|
15
|
+
declare class Dispatcher extends EventEmitter {
|
|
16
|
+
/** Dispatches a request. This API is expected to evolve through semver-major versions and is less stable than the preceding higher level APIs. It is primarily intended for library developers who implement higher level APIs on top of this. */
|
|
17
|
+
dispatch(options: Dispatcher.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;
|
|
18
|
+
/** Starts two-way communications with the requested resource. */
|
|
19
|
+
connect(options: Dispatcher.ConnectOptions): Promise<Dispatcher.ConnectData>;
|
|
20
|
+
connect(options: Dispatcher.ConnectOptions, callback: (err: Error | null, data: Dispatcher.ConnectData) => void): void;
|
|
21
|
+
/** Compose a chain of dispatchers */
|
|
22
|
+
compose(dispatchers: Dispatcher.DispatcherComposeInterceptor[]): Dispatcher.ComposedDispatcher;
|
|
23
|
+
compose(...dispatchers: Dispatcher.DispatcherComposeInterceptor[]): Dispatcher.ComposedDispatcher;
|
|
24
|
+
/** Performs an HTTP request. */
|
|
25
|
+
request(options: Dispatcher.RequestOptions): Promise<Dispatcher.ResponseData>;
|
|
26
|
+
request(options: Dispatcher.RequestOptions, callback: (err: Error | null, data: Dispatcher.ResponseData) => void): void;
|
|
27
|
+
/** For easy use with `stream.pipeline`. */
|
|
28
|
+
pipeline(options: Dispatcher.PipelineOptions, handler: Dispatcher.PipelineHandler): Duplex;
|
|
29
|
+
/** A faster version of `Dispatcher.request`. */
|
|
30
|
+
stream(options: Dispatcher.RequestOptions, factory: Dispatcher.StreamFactory): Promise<Dispatcher.StreamData>;
|
|
31
|
+
stream(options: Dispatcher.RequestOptions, factory: Dispatcher.StreamFactory, callback: (err: Error | null, data: Dispatcher.StreamData) => void): void;
|
|
32
|
+
/** Upgrade to a different protocol. */
|
|
33
|
+
upgrade(options: Dispatcher.UpgradeOptions): Promise<Dispatcher.UpgradeData>;
|
|
34
|
+
upgrade(options: Dispatcher.UpgradeOptions, callback: (err: Error | null, data: Dispatcher.UpgradeData) => void): void;
|
|
35
|
+
/** Closes the client and gracefully waits for enqueued requests to complete before invoking the callback (or returning a promise if no callback is provided). */
|
|
36
|
+
close(): Promise<void>;
|
|
37
|
+
close(callback: () => void): void;
|
|
38
|
+
/** Destroy the client abruptly with the given err. All the pending and running requests will be asynchronously aborted and error. Waits until socket is closed before invoking the callback (or returning a promise if no callback is provided). Since this operation is asynchronously dispatched there might still be some progress on dispatched requests. */
|
|
39
|
+
destroy(): Promise<void>;
|
|
40
|
+
destroy(err: Error | null): Promise<void>;
|
|
41
|
+
destroy(callback: () => void): void;
|
|
42
|
+
destroy(err: Error | null, callback: () => void): void;
|
|
43
|
+
|
|
44
|
+
on(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
|
|
45
|
+
on(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
46
|
+
on(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
47
|
+
on(eventName: 'drain', callback: (origin: URL) => void): this;
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
once(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
|
|
51
|
+
once(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
52
|
+
once(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
53
|
+
once(eventName: 'drain', callback: (origin: URL) => void): this;
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
off(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
|
|
57
|
+
off(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
58
|
+
off(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
59
|
+
off(eventName: 'drain', callback: (origin: URL) => void): this;
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
addListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
|
|
63
|
+
addListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
64
|
+
addListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
65
|
+
addListener(eventName: 'drain', callback: (origin: URL) => void): this;
|
|
66
|
+
|
|
67
|
+
removeListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
|
|
68
|
+
removeListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
69
|
+
removeListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
70
|
+
removeListener(eventName: 'drain', callback: (origin: URL) => void): this;
|
|
71
|
+
|
|
72
|
+
prependListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
|
|
73
|
+
prependListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
74
|
+
prependListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
75
|
+
prependListener(eventName: 'drain', callback: (origin: URL) => void): this;
|
|
76
|
+
|
|
77
|
+
prependOnceListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
|
|
78
|
+
prependOnceListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
79
|
+
prependOnceListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
|
|
80
|
+
prependOnceListener(eventName: 'drain', callback: (origin: URL) => void): this;
|
|
81
|
+
|
|
82
|
+
listeners(eventName: 'connect'): ((origin: URL, targets: readonly Dispatcher[]) => void)[]
|
|
83
|
+
listeners(eventName: 'disconnect'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];
|
|
84
|
+
listeners(eventName: 'connectionError'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];
|
|
85
|
+
listeners(eventName: 'drain'): ((origin: URL) => void)[];
|
|
86
|
+
|
|
87
|
+
rawListeners(eventName: 'connect'): ((origin: URL, targets: readonly Dispatcher[]) => void)[]
|
|
88
|
+
rawListeners(eventName: 'disconnect'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];
|
|
89
|
+
rawListeners(eventName: 'connectionError'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];
|
|
90
|
+
rawListeners(eventName: 'drain'): ((origin: URL) => void)[];
|
|
91
|
+
|
|
92
|
+
emit(eventName: 'connect', origin: URL, targets: readonly Dispatcher[]): boolean;
|
|
93
|
+
emit(eventName: 'disconnect', origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError): boolean;
|
|
94
|
+
emit(eventName: 'connectionError', origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError): boolean;
|
|
95
|
+
emit(eventName: 'drain', origin: URL): boolean;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
declare namespace Dispatcher {
|
|
99
|
+
export interface ComposedDispatcher extends Dispatcher {}
|
|
100
|
+
export type DispatcherComposeInterceptor = (dispatch: Dispatcher['dispatch']) => Dispatcher['dispatch'];
|
|
101
|
+
export interface DispatchOptions {
|
|
102
|
+
origin?: string | URL;
|
|
103
|
+
path: string;
|
|
104
|
+
method: HttpMethod;
|
|
105
|
+
/** Default: `null` */
|
|
106
|
+
body?: string | Buffer | Uint8Array | Readable | null | FormData;
|
|
107
|
+
/** Default: `null` */
|
|
108
|
+
headers?: IncomingHttpHeaders | string[] | Iterable<[string, string | string[] | undefined]> | null;
|
|
109
|
+
/** Query string params to be embedded in the request URL. Default: `null` */
|
|
110
|
+
query?: Record<string, any>;
|
|
111
|
+
/** Whether the requests can be safely retried or not. If `false` the request won't be sent until all preceding requests in the pipeline have completed. Default: `true` if `method` is `HEAD` or `GET`. */
|
|
112
|
+
idempotent?: boolean;
|
|
113
|
+
/** Whether the response is expected to take a long time and would end up blocking the pipeline. When this is set to `true` further pipelining will be avoided on the same connection until headers have been received. */
|
|
114
|
+
blocking?: boolean;
|
|
115
|
+
/** Upgrade the request. Should be used to specify the kind of upgrade i.e. `'Websocket'`. Default: `method === 'CONNECT' || null`. */
|
|
116
|
+
upgrade?: boolean | string | null;
|
|
117
|
+
/** The amount of time, in milliseconds, the parser will wait to receive the complete HTTP headers. Defaults to 300 seconds. */
|
|
118
|
+
headersTimeout?: number | null;
|
|
119
|
+
/** The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use 0 to disable it entirely. Defaults to 300 seconds. */
|
|
120
|
+
bodyTimeout?: number | null;
|
|
121
|
+
/** Whether the request should stablish a keep-alive or not. Default `false` */
|
|
122
|
+
reset?: boolean;
|
|
123
|
+
/** Whether Undici should throw an error upon receiving a 4xx or 5xx response from the server. Defaults to false */
|
|
124
|
+
throwOnError?: boolean;
|
|
125
|
+
/** For H2, it appends the expect: 100-continue header, and halts the request body until a 100-continue is received from the remote server*/
|
|
126
|
+
expectContinue?: boolean;
|
|
127
|
+
}
|
|
128
|
+
export interface ConnectOptions {
|
|
129
|
+
origin: string | URL;
|
|
130
|
+
path: string;
|
|
131
|
+
/** Default: `null` */
|
|
132
|
+
headers?: IncomingHttpHeaders | string[] | null;
|
|
133
|
+
/** Default: `null` */
|
|
134
|
+
signal?: AbortSignal | EventEmitter | null;
|
|
135
|
+
/** This argument parameter is passed through to `ConnectData` */
|
|
136
|
+
opaque?: unknown;
|
|
137
|
+
/** Default: 0 */
|
|
138
|
+
maxRedirections?: number;
|
|
139
|
+
/** Default: false */
|
|
140
|
+
redirectionLimitReached?: boolean;
|
|
141
|
+
/** Default: `null` */
|
|
142
|
+
responseHeader?: 'raw' | null;
|
|
143
|
+
}
|
|
144
|
+
export interface RequestOptions extends DispatchOptions {
|
|
145
|
+
/** Default: `null` */
|
|
146
|
+
opaque?: unknown;
|
|
147
|
+
/** Default: `null` */
|
|
148
|
+
signal?: AbortSignal | EventEmitter | null;
|
|
149
|
+
/** Default: 0 */
|
|
150
|
+
maxRedirections?: number;
|
|
151
|
+
/** Default: false */
|
|
152
|
+
redirectionLimitReached?: boolean;
|
|
153
|
+
/** Default: `null` */
|
|
154
|
+
onInfo?: (info: { statusCode: number, headers: Record<string, string | string[]> }) => void;
|
|
155
|
+
/** Default: `null` */
|
|
156
|
+
responseHeader?: 'raw' | null;
|
|
157
|
+
/** Default: `64 KiB` */
|
|
158
|
+
highWaterMark?: number;
|
|
159
|
+
}
|
|
160
|
+
export interface PipelineOptions extends RequestOptions {
|
|
161
|
+
/** `true` if the `handler` will return an object stream. Default: `false` */
|
|
162
|
+
objectMode?: boolean;
|
|
163
|
+
}
|
|
164
|
+
export interface UpgradeOptions {
|
|
165
|
+
path: string;
|
|
166
|
+
/** Default: `'GET'` */
|
|
167
|
+
method?: string;
|
|
168
|
+
/** Default: `null` */
|
|
169
|
+
headers?: IncomingHttpHeaders | string[] | null;
|
|
170
|
+
/** A string of comma separated protocols, in descending preference order. Default: `'Websocket'` */
|
|
171
|
+
protocol?: string;
|
|
172
|
+
/** Default: `null` */
|
|
173
|
+
signal?: AbortSignal | EventEmitter | null;
|
|
174
|
+
/** Default: 0 */
|
|
175
|
+
maxRedirections?: number;
|
|
176
|
+
/** Default: false */
|
|
177
|
+
redirectionLimitReached?: boolean;
|
|
178
|
+
/** Default: `null` */
|
|
179
|
+
responseHeader?: 'raw' | null;
|
|
180
|
+
}
|
|
181
|
+
export interface ConnectData {
|
|
182
|
+
statusCode: number;
|
|
183
|
+
headers: IncomingHttpHeaders;
|
|
184
|
+
socket: Duplex;
|
|
185
|
+
opaque: unknown;
|
|
186
|
+
}
|
|
187
|
+
export interface ResponseData {
|
|
188
|
+
statusCode: number;
|
|
189
|
+
headers: IncomingHttpHeaders;
|
|
190
|
+
body: BodyReadable & BodyMixin;
|
|
191
|
+
trailers: Record<string, string>;
|
|
192
|
+
opaque: unknown;
|
|
193
|
+
context: object;
|
|
194
|
+
}
|
|
195
|
+
export interface PipelineHandlerData {
|
|
196
|
+
statusCode: number;
|
|
197
|
+
headers: IncomingHttpHeaders;
|
|
198
|
+
opaque: unknown;
|
|
199
|
+
body: BodyReadable;
|
|
200
|
+
context: object;
|
|
201
|
+
}
|
|
202
|
+
export interface StreamData {
|
|
203
|
+
opaque: unknown;
|
|
204
|
+
trailers: Record<string, string>;
|
|
205
|
+
}
|
|
206
|
+
export interface UpgradeData {
|
|
207
|
+
headers: IncomingHttpHeaders;
|
|
208
|
+
socket: Duplex;
|
|
209
|
+
opaque: unknown;
|
|
210
|
+
}
|
|
211
|
+
export interface StreamFactoryData {
|
|
212
|
+
statusCode: number;
|
|
213
|
+
headers: IncomingHttpHeaders;
|
|
214
|
+
opaque: unknown;
|
|
215
|
+
context: object;
|
|
216
|
+
}
|
|
217
|
+
export type StreamFactory = (data: StreamFactoryData) => Writable;
|
|
218
|
+
export interface DispatchHandlers {
|
|
219
|
+
/** Invoked before request is dispatched on socket. May be invoked multiple times when a request is retried when the request at the head of the pipeline fails. */
|
|
220
|
+
onConnect?(abort: (err?: Error) => void): void;
|
|
221
|
+
/** Invoked when an error has occurred. */
|
|
222
|
+
onError?(err: Error): void;
|
|
223
|
+
/** Invoked when request is upgraded either due to a `Upgrade` header or `CONNECT` method. */
|
|
224
|
+
onUpgrade?(statusCode: number, headers: Buffer[] | string[] | null, socket: Duplex): void;
|
|
225
|
+
/** Invoked when response is received, before headers have been read. **/
|
|
226
|
+
onResponseStarted?(): void;
|
|
227
|
+
/** Invoked when statusCode and headers have been received. May be invoked multiple times due to 1xx informational headers. */
|
|
228
|
+
onHeaders?(statusCode: number, headers: Buffer[], resume: () => void, statusText: string): boolean;
|
|
229
|
+
/** Invoked when response payload data is received. */
|
|
230
|
+
onData?(chunk: Buffer): boolean;
|
|
231
|
+
/** Invoked when response payload and trailers have been received and the request has completed. */
|
|
232
|
+
onComplete?(trailers: string[] | null): void;
|
|
233
|
+
/** Invoked when a body chunk is sent to the server. May be invoked multiple times for chunked requests */
|
|
234
|
+
onBodySent?(chunkSize: number, totalBytesSent: number): void;
|
|
235
|
+
}
|
|
236
|
+
export type PipelineHandler = (data: PipelineHandlerData) => Readable;
|
|
237
|
+
export type HttpMethod = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'TRACE' | 'PATCH';
|
|
238
|
+
|
|
239
|
+
/**
|
|
240
|
+
* @link https://fetch.spec.whatwg.org/#body-mixin
|
|
241
|
+
*/
|
|
242
|
+
interface BodyMixin {
|
|
243
|
+
readonly body?: never;
|
|
244
|
+
readonly bodyUsed: boolean;
|
|
245
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
246
|
+
blob(): Promise<Blob>;
|
|
247
|
+
bytes(): Promise<Uint8Array>;
|
|
248
|
+
formData(): Promise<never>;
|
|
249
|
+
json(): Promise<unknown>;
|
|
250
|
+
text(): Promise<string>;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
export interface DispatchInterceptor {
|
|
254
|
+
(dispatch: Dispatcher['dispatch']): Dispatcher['dispatch']
|
|
255
|
+
}
|
|
256
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Agent from './agent'
|
|
2
|
+
import Dispatcher from './dispatcher'
|
|
3
|
+
|
|
4
|
+
export default EnvHttpProxyAgent
|
|
5
|
+
|
|
6
|
+
declare class EnvHttpProxyAgent extends Dispatcher {
|
|
7
|
+
constructor(opts?: EnvHttpProxyAgent.Options)
|
|
8
|
+
|
|
9
|
+
dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare namespace EnvHttpProxyAgent {
|
|
13
|
+
export interface Options extends Agent.Options {
|
|
14
|
+
/** Overrides the value of the HTTP_PROXY environment variable */
|
|
15
|
+
httpProxy?: string;
|
|
16
|
+
/** Overrides the value of the HTTPS_PROXY environment variable */
|
|
17
|
+
httpsProxy?: string;
|
|
18
|
+
/** Overrides the value of the NO_PROXY environment variable */
|
|
19
|
+
noProxy?: string;
|
|
20
|
+
}
|
|
21
|
+
}
|