claude-code-tools 0.2.0__py3-none-any.whl → 1.0.6__py3-none-any.whl
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.
- claude_code_tools/__init__.py +1 -1
- claude_code_tools/action_rpc.py +401 -0
- claude_code_tools/aichat.py +1718 -0
- claude_code_tools/claude_continue.py +295 -0
- claude_code_tools/codex_continue.py +261 -0
- claude_code_tools/config.py +93 -0
- claude_code_tools/delete_session.py +194 -0
- claude_code_tools/export_all.py +342 -0
- claude_code_tools/export_claude_session.py +481 -0
- claude_code_tools/export_codex_session.py +466 -0
- claude_code_tools/export_session.py +573 -0
- claude_code_tools/find_claude_session.py +1256 -118
- claude_code_tools/find_codex_session.py +928 -76
- claude_code_tools/find_original_session.py +134 -0
- claude_code_tools/find_session.py +1074 -0
- claude_code_tools/find_trimmed_sessions.py +259 -0
- claude_code_tools/node_menu_ui.py +406 -0
- claude_code_tools/search_index.py +1247 -0
- claude_code_tools/session_lineage.py +260 -0
- claude_code_tools/session_menu.py +187 -0
- claude_code_tools/session_menu_cli.py +448 -0
- claude_code_tools/session_tui.py +516 -0
- claude_code_tools/session_utils.py +1313 -0
- claude_code_tools/smart_trim.py +414 -0
- claude_code_tools/smart_trim_core.py +614 -0
- claude_code_tools/tmux_cli_controller.py +20 -11
- claude_code_tools/trim_session.py +791 -0
- claude_code_tools/trim_session_claude.py +319 -0
- claude_code_tools/trim_session_codex.py +344 -0
- claude_code_tools-1.0.6.dist-info/METADATA +685 -0
- claude_code_tools-1.0.6.dist-info/RECORD +1807 -0
- {claude_code_tools-0.2.0.dist-info → claude_code_tools-1.0.6.dist-info}/WHEEL +1 -1
- {claude_code_tools-0.2.0.dist-info → claude_code_tools-1.0.6.dist-info}/entry_points.txt +1 -2
- docs/lmsh.md +27 -5
- node_ui/action_config.js +72 -0
- node_ui/menu.js +2367 -0
- node_ui/node_modules/.bin/is-in-ci +5 -0
- node_ui/node_modules/.bin/loose-envify +16 -0
- node_ui/node_modules/.package-lock.json +714 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/README.md +248 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.d.ts +11 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js +41 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js.map +1 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/diff.d.ts +6 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/diff.js +17 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/diff.js.map +1 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/index.d.ts +6 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/index.js +7 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/index.js.map +1 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/reduce.d.ts +5 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/reduce.js +27 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/reduce.js.map +1 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/styledChars.d.ts +6 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/styledChars.js +38 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/styledChars.js.map +1 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/tokenize.d.ts +12 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js +70 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js.map +1 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/undo.d.ts +3 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/undo.js +11 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/build/undo.js.map +1 -0
- node_ui/node_modules/@alcalzone/ansi-tokenize/package.json +63 -0
- node_ui/node_modules/ansi-escapes/base.d.ts +292 -0
- node_ui/node_modules/ansi-escapes/base.js +198 -0
- node_ui/node_modules/ansi-escapes/index.d.ts +2 -0
- node_ui/node_modules/ansi-escapes/index.js +2 -0
- node_ui/node_modules/ansi-escapes/license +9 -0
- node_ui/node_modules/ansi-escapes/package.json +70 -0
- node_ui/node_modules/ansi-escapes/readme.md +284 -0
- node_ui/node_modules/ansi-regex/index.d.ts +33 -0
- node_ui/node_modules/ansi-regex/index.js +14 -0
- node_ui/node_modules/ansi-regex/license +9 -0
- node_ui/node_modules/ansi-regex/package.json +61 -0
- node_ui/node_modules/ansi-regex/readme.md +66 -0
- node_ui/node_modules/ansi-styles/index.d.ts +236 -0
- node_ui/node_modules/ansi-styles/index.js +223 -0
- node_ui/node_modules/ansi-styles/license +9 -0
- node_ui/node_modules/ansi-styles/package.json +54 -0
- node_ui/node_modules/ansi-styles/readme.md +173 -0
- node_ui/node_modules/auto-bind/index.d.ts +50 -0
- node_ui/node_modules/auto-bind/index.js +41 -0
- node_ui/node_modules/auto-bind/license +9 -0
- node_ui/node_modules/auto-bind/package.json +51 -0
- node_ui/node_modules/auto-bind/react.d.ts +26 -0
- node_ui/node_modules/auto-bind/react.js +28 -0
- node_ui/node_modules/auto-bind/readme.md +92 -0
- node_ui/node_modules/chalk/license +9 -0
- node_ui/node_modules/chalk/package.json +83 -0
- node_ui/node_modules/chalk/readme.md +325 -0
- node_ui/node_modules/chalk/source/index.d.ts +320 -0
- node_ui/node_modules/chalk/source/index.js +225 -0
- node_ui/node_modules/chalk/source/utilities.js +33 -0
- node_ui/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
- node_ui/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- node_ui/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
- node_ui/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
- node_ui/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
- node_ui/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
- node_ui/node_modules/cli-boxes/boxes.json +82 -0
- node_ui/node_modules/cli-boxes/index.d.ts +127 -0
- node_ui/node_modules/cli-boxes/index.js +6 -0
- node_ui/node_modules/cli-boxes/license +9 -0
- node_ui/node_modules/cli-boxes/package.json +42 -0
- node_ui/node_modules/cli-boxes/readme.md +115 -0
- node_ui/node_modules/cli-cursor/index.d.ts +47 -0
- node_ui/node_modules/cli-cursor/index.js +39 -0
- node_ui/node_modules/cli-cursor/license +9 -0
- node_ui/node_modules/cli-cursor/package.json +49 -0
- node_ui/node_modules/cli-cursor/readme.md +51 -0
- node_ui/node_modules/cli-truncate/index.d.ts +116 -0
- node_ui/node_modules/cli-truncate/index.js +99 -0
- node_ui/node_modules/cli-truncate/license +9 -0
- node_ui/node_modules/cli-truncate/node_modules/slice-ansi/index.js +105 -0
- node_ui/node_modules/cli-truncate/node_modules/slice-ansi/license +10 -0
- node_ui/node_modules/cli-truncate/node_modules/slice-ansi/package.json +53 -0
- node_ui/node_modules/cli-truncate/node_modules/slice-ansi/readme.md +66 -0
- node_ui/node_modules/cli-truncate/package.json +51 -0
- node_ui/node_modules/cli-truncate/readme.md +150 -0
- node_ui/node_modules/code-excerpt/dist/index.d.ts +9 -0
- node_ui/node_modules/code-excerpt/dist/index.js +27 -0
- node_ui/node_modules/code-excerpt/license +21 -0
- node_ui/node_modules/code-excerpt/package.json +43 -0
- node_ui/node_modules/code-excerpt/readme.md +65 -0
- node_ui/node_modules/convert-to-spaces/dist/index.d.ts +2 -0
- node_ui/node_modules/convert-to-spaces/dist/index.js +4 -0
- node_ui/node_modules/convert-to-spaces/license +21 -0
- node_ui/node_modules/convert-to-spaces/package.json +40 -0
- node_ui/node_modules/convert-to-spaces/readme.md +39 -0
- node_ui/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- node_ui/node_modules/emoji-regex/README.md +107 -0
- node_ui/node_modules/emoji-regex/index.d.ts +3 -0
- node_ui/node_modules/emoji-regex/index.js +4 -0
- node_ui/node_modules/emoji-regex/index.mjs +4 -0
- node_ui/node_modules/emoji-regex/package.json +45 -0
- node_ui/node_modules/environment/index.d.ts +74 -0
- node_ui/node_modules/environment/index.js +47 -0
- node_ui/node_modules/environment/license +9 -0
- node_ui/node_modules/environment/package.json +74 -0
- node_ui/node_modules/environment/readme.md +94 -0
- node_ui/node_modules/escape-string-regexp/index.d.ts +16 -0
- node_ui/node_modules/escape-string-regexp/index.js +11 -0
- node_ui/node_modules/escape-string-regexp/license +9 -0
- node_ui/node_modules/escape-string-regexp/package.json +40 -0
- node_ui/node_modules/escape-string-regexp/readme.md +34 -0
- node_ui/node_modules/figures/index.d.ts +269 -0
- node_ui/node_modules/figures/index.js +322 -0
- node_ui/node_modules/figures/license +9 -0
- node_ui/node_modules/figures/package.json +46 -0
- node_ui/node_modules/figures/readme.md +328 -0
- node_ui/node_modules/get-east-asian-width/index.d.ts +60 -0
- node_ui/node_modules/get-east-asian-width/index.js +30 -0
- node_ui/node_modules/get-east-asian-width/license +9 -0
- node_ui/node_modules/get-east-asian-width/lookup.js +403 -0
- node_ui/node_modules/get-east-asian-width/package.json +70 -0
- node_ui/node_modules/get-east-asian-width/readme.md +65 -0
- node_ui/node_modules/indent-string/index.d.ts +38 -0
- node_ui/node_modules/indent-string/index.js +38 -0
- node_ui/node_modules/indent-string/license +9 -0
- node_ui/node_modules/indent-string/package.json +40 -0
- node_ui/node_modules/indent-string/readme.md +73 -0
- node_ui/node_modules/ink/build/apply-styles.js +175 -0
- node_ui/node_modules/ink/build/build-layout.js +77 -0
- node_ui/node_modules/ink/build/calculate-wrapped-text.js +53 -0
- node_ui/node_modules/ink/build/colorize.d.ts +3 -0
- node_ui/node_modules/ink/build/colorize.js +48 -0
- node_ui/node_modules/ink/build/colorize.js.map +1 -0
- node_ui/node_modules/ink/build/components/App.d.ts +61 -0
- node_ui/node_modules/ink/build/components/App.js +286 -0
- node_ui/node_modules/ink/build/components/App.js.map +1 -0
- node_ui/node_modules/ink/build/components/AppContext.d.ts +12 -0
- node_ui/node_modules/ink/build/components/AppContext.js +11 -0
- node_ui/node_modules/ink/build/components/AppContext.js.map +1 -0
- node_ui/node_modules/ink/build/components/Box.d.ts +62 -0
- node_ui/node_modules/ink/build/components/Box.js +20 -0
- node_ui/node_modules/ink/build/components/Box.js.map +1 -0
- node_ui/node_modules/ink/build/components/Color.js +62 -0
- node_ui/node_modules/ink/build/components/ErrorOverview.d.ts +6 -0
- node_ui/node_modules/ink/build/components/ErrorOverview.js +79 -0
- node_ui/node_modules/ink/build/components/ErrorOverview.js.map +1 -0
- node_ui/node_modules/ink/build/components/FocusContext.d.ts +17 -0
- node_ui/node_modules/ink/build/components/FocusContext.js +17 -0
- node_ui/node_modules/ink/build/components/FocusContext.js.map +1 -0
- node_ui/node_modules/ink/build/components/Newline.d.ts +13 -0
- node_ui/node_modules/ink/build/components/Newline.js +8 -0
- node_ui/node_modules/ink/build/components/Newline.js.map +1 -0
- node_ui/node_modules/ink/build/components/Spacer.d.ts +6 -0
- node_ui/node_modules/ink/build/components/Spacer.js +10 -0
- node_ui/node_modules/ink/build/components/Spacer.js.map +1 -0
- node_ui/node_modules/ink/build/components/Static.d.ts +31 -0
- node_ui/node_modules/ink/build/components/Static.js +33 -0
- node_ui/node_modules/ink/build/components/Static.js.map +1 -0
- node_ui/node_modules/ink/build/components/StderrContext.d.ts +19 -0
- node_ui/node_modules/ink/build/components/StderrContext.js +13 -0
- node_ui/node_modules/ink/build/components/StderrContext.js.map +1 -0
- node_ui/node_modules/ink/build/components/StdinContext.d.ts +26 -0
- node_ui/node_modules/ink/build/components/StdinContext.js +19 -0
- node_ui/node_modules/ink/build/components/StdinContext.js.map +1 -0
- node_ui/node_modules/ink/build/components/StdoutContext.d.ts +19 -0
- node_ui/node_modules/ink/build/components/StdoutContext.js +13 -0
- node_ui/node_modules/ink/build/components/StdoutContext.js.map +1 -0
- node_ui/node_modules/ink/build/components/Text.d.ts +49 -0
- node_ui/node_modules/ink/build/components/Text.js +40 -0
- node_ui/node_modules/ink/build/components/Text.js.map +1 -0
- node_ui/node_modules/ink/build/components/Transform.d.ts +15 -0
- node_ui/node_modules/ink/build/components/Transform.js +14 -0
- node_ui/node_modules/ink/build/components/Transform.js.map +1 -0
- node_ui/node_modules/ink/build/devtools-window-polyfill.d.ts +1 -0
- node_ui/node_modules/ink/build/devtools-window-polyfill.js +64 -0
- node_ui/node_modules/ink/build/devtools-window-polyfill.js.map +1 -0
- node_ui/node_modules/ink/build/devtools.d.ts +1 -0
- node_ui/node_modules/ink/build/devtools.js +9 -0
- node_ui/node_modules/ink/build/devtools.js.map +1 -0
- node_ui/node_modules/ink/build/dom.d.ts +42 -0
- node_ui/node_modules/ink/build/dom.js +117 -0
- node_ui/node_modules/ink/build/dom.js.map +1 -0
- node_ui/node_modules/ink/build/experimental/apply-style.js +140 -0
- node_ui/node_modules/ink/build/experimental/dom.js +123 -0
- node_ui/node_modules/ink/build/experimental/output.js +91 -0
- node_ui/node_modules/ink/build/experimental/reconciler.js +141 -0
- node_ui/node_modules/ink/build/experimental/renderer.js +81 -0
- node_ui/node_modules/ink/build/get-max-width.d.ts +3 -0
- node_ui/node_modules/ink/build/get-max-width.js +10 -0
- node_ui/node_modules/ink/build/get-max-width.js.map +1 -0
- node_ui/node_modules/ink/build/hooks/use-app.d.ts +5 -0
- node_ui/node_modules/ink/build/hooks/use-app.js +8 -0
- node_ui/node_modules/ink/build/hooks/use-app.js.map +1 -0
- node_ui/node_modules/ink/build/hooks/use-focus-manager.d.ts +34 -0
- node_ui/node_modules/ink/build/hooks/use-focus-manager.js +18 -0
- node_ui/node_modules/ink/build/hooks/use-focus-manager.js.map +1 -0
- node_ui/node_modules/ink/build/hooks/use-focus.d.ts +34 -0
- node_ui/node_modules/ink/build/hooks/use-focus.js +47 -0
- node_ui/node_modules/ink/build/hooks/use-focus.js.map +1 -0
- node_ui/node_modules/ink/build/hooks/use-input.d.ts +97 -0
- node_ui/node_modules/ink/build/hooks/use-input.js +96 -0
- node_ui/node_modules/ink/build/hooks/use-input.js.map +1 -0
- node_ui/node_modules/ink/build/hooks/use-stderr.d.ts +5 -0
- node_ui/node_modules/ink/build/hooks/use-stderr.js +8 -0
- node_ui/node_modules/ink/build/hooks/use-stderr.js.map +1 -0
- node_ui/node_modules/ink/build/hooks/use-stdin.d.ts +5 -0
- node_ui/node_modules/ink/build/hooks/use-stdin.js +8 -0
- node_ui/node_modules/ink/build/hooks/use-stdin.js.map +1 -0
- node_ui/node_modules/ink/build/hooks/use-stdout.d.ts +5 -0
- node_ui/node_modules/ink/build/hooks/use-stdout.js +8 -0
- node_ui/node_modules/ink/build/hooks/use-stdout.js.map +1 -0
- node_ui/node_modules/ink/build/hooks/useInput.js +38 -0
- node_ui/node_modules/ink/build/index.d.ts +27 -0
- node_ui/node_modules/ink/build/index.js +16 -0
- node_ui/node_modules/ink/build/index.js.map +1 -0
- node_ui/node_modules/ink/build/ink.d.ts +38 -0
- node_ui/node_modules/ink/build/ink.js +235 -0
- node_ui/node_modules/ink/build/ink.js.map +1 -0
- node_ui/node_modules/ink/build/instance.js +205 -0
- node_ui/node_modules/ink/build/instances.d.ts +4 -0
- node_ui/node_modules/ink/build/instances.js +8 -0
- node_ui/node_modules/ink/build/instances.js.map +1 -0
- node_ui/node_modules/ink/build/log-update.d.ts +13 -0
- node_ui/node_modules/ink/build/log-update.js +37 -0
- node_ui/node_modules/ink/build/log-update.js.map +1 -0
- node_ui/node_modules/ink/build/measure-element.d.ts +16 -0
- node_ui/node_modules/ink/build/measure-element.js +9 -0
- node_ui/node_modules/ink/build/measure-element.js.map +1 -0
- node_ui/node_modules/ink/build/measure-text.d.ts +6 -0
- node_ui/node_modules/ink/build/measure-text.js +20 -0
- node_ui/node_modules/ink/build/measure-text.js.map +1 -0
- node_ui/node_modules/ink/build/output.d.ts +35 -0
- node_ui/node_modules/ink/build/output.js +148 -0
- node_ui/node_modules/ink/build/output.js.map +1 -0
- node_ui/node_modules/ink/build/parse-keypress.d.ts +15 -0
- node_ui/node_modules/ink/build/parse-keypress.js +225 -0
- node_ui/node_modules/ink/build/parse-keypress.js.map +1 -0
- node_ui/node_modules/ink/build/reconciler.d.ts +4 -0
- node_ui/node_modules/ink/build/reconciler.js +219 -0
- node_ui/node_modules/ink/build/reconciler.js.map +1 -0
- node_ui/node_modules/ink/build/render-border.d.ts +4 -0
- node_ui/node_modules/ink/build/render-border.js +73 -0
- node_ui/node_modules/ink/build/render-border.js.map +1 -0
- node_ui/node_modules/ink/build/render-node-to-output.d.ts +10 -0
- node_ui/node_modules/ink/build/render-node-to-output.js +99 -0
- node_ui/node_modules/ink/build/render-node-to-output.js.map +1 -0
- node_ui/node_modules/ink/build/render.d.ts +68 -0
- node_ui/node_modules/ink/build/render.js +48 -0
- node_ui/node_modules/ink/build/render.js.map +1 -0
- node_ui/node_modules/ink/build/renderer.d.ts +8 -0
- node_ui/node_modules/ink/build/renderer.js +36 -0
- node_ui/node_modules/ink/build/renderer.js.map +1 -0
- node_ui/node_modules/ink/build/squash-text-nodes.d.ts +3 -0
- node_ui/node_modules/ink/build/squash-text-nodes.js +35 -0
- node_ui/node_modules/ink/build/squash-text-nodes.js.map +1 -0
- node_ui/node_modules/ink/build/styles.d.ts +243 -0
- node_ui/node_modules/ink/build/styles.js +229 -0
- node_ui/node_modules/ink/build/styles.js.map +1 -0
- node_ui/node_modules/ink/build/wrap-text.d.ts +3 -0
- node_ui/node_modules/ink/build/wrap-text.js +31 -0
- node_ui/node_modules/ink/build/wrap-text.js.map +1 -0
- node_ui/node_modules/ink/license +9 -0
- node_ui/node_modules/ink/package.json +197 -0
- node_ui/node_modules/ink/readme.md +2153 -0
- node_ui/node_modules/ink-select-input/build/Indicator.d.ts +6 -0
- node_ui/node_modules/ink-select-input/build/Indicator.js +8 -0
- node_ui/node_modules/ink-select-input/build/Indicator.js.map +1 -0
- node_ui/node_modules/ink-select-input/build/Item.d.ts +7 -0
- node_ui/node_modules/ink-select-input/build/Item.js +7 -0
- node_ui/node_modules/ink-select-input/build/Item.js.map +1 -0
- node_ui/node_modules/ink-select-input/build/SelectInput.d.ts +49 -0
- node_ui/node_modules/ink-select-input/build/SelectInput.js +83 -0
- node_ui/node_modules/ink-select-input/build/SelectInput.js.map +1 -0
- node_ui/node_modules/ink-select-input/build/index.d.ts +3 -0
- node_ui/node_modules/ink-select-input/build/index.js +4 -0
- node_ui/node_modules/ink-select-input/build/index.js.map +1 -0
- node_ui/node_modules/ink-select-input/license +9 -0
- node_ui/node_modules/ink-select-input/node_modules/figures/index.d.ts +279 -0
- node_ui/node_modules/ink-select-input/node_modules/figures/index.js +292 -0
- node_ui/node_modules/ink-select-input/node_modules/figures/license +9 -0
- node_ui/node_modules/ink-select-input/node_modules/figures/package.json +49 -0
- node_ui/node_modules/ink-select-input/node_modules/figures/readme.md +337 -0
- node_ui/node_modules/ink-select-input/node_modules/is-unicode-supported/index.d.ts +12 -0
- node_ui/node_modules/ink-select-input/node_modules/is-unicode-supported/index.js +21 -0
- node_ui/node_modules/ink-select-input/node_modules/is-unicode-supported/license +9 -0
- node_ui/node_modules/ink-select-input/node_modules/is-unicode-supported/package.json +47 -0
- node_ui/node_modules/ink-select-input/node_modules/is-unicode-supported/readme.md +35 -0
- node_ui/node_modules/ink-select-input/package.json +83 -0
- node_ui/node_modules/ink-select-input/readme.md +98 -0
- node_ui/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- node_ui/node_modules/is-fullwidth-code-point/index.js +40 -0
- node_ui/node_modules/is-fullwidth-code-point/license +9 -0
- node_ui/node_modules/is-fullwidth-code-point/package.json +45 -0
- node_ui/node_modules/is-fullwidth-code-point/readme.md +43 -0
- node_ui/node_modules/is-in-ci/cli.js +5 -0
- node_ui/node_modules/is-in-ci/index.d.ts +15 -0
- node_ui/node_modules/is-in-ci/index.js +11 -0
- node_ui/node_modules/is-in-ci/license +9 -0
- node_ui/node_modules/is-in-ci/package.json +48 -0
- node_ui/node_modules/is-in-ci/readme.md +43 -0
- node_ui/node_modules/is-unicode-supported/index.d.ts +12 -0
- node_ui/node_modules/is-unicode-supported/index.js +17 -0
- node_ui/node_modules/is-unicode-supported/license +9 -0
- node_ui/node_modules/is-unicode-supported/package.json +43 -0
- node_ui/node_modules/is-unicode-supported/readme.md +35 -0
- node_ui/node_modules/js-tokens/CHANGELOG.md +151 -0
- node_ui/node_modules/js-tokens/LICENSE +21 -0
- node_ui/node_modules/js-tokens/README.md +240 -0
- node_ui/node_modules/js-tokens/index.js +23 -0
- node_ui/node_modules/js-tokens/package.json +30 -0
- node_ui/node_modules/lodash/LICENSE +47 -0
- node_ui/node_modules/lodash/README.md +39 -0
- node_ui/node_modules/lodash/_DataView.js +7 -0
- node_ui/node_modules/lodash/_Hash.js +32 -0
- node_ui/node_modules/lodash/_LazyWrapper.js +28 -0
- node_ui/node_modules/lodash/_ListCache.js +32 -0
- node_ui/node_modules/lodash/_LodashWrapper.js +22 -0
- node_ui/node_modules/lodash/_Map.js +7 -0
- node_ui/node_modules/lodash/_MapCache.js +32 -0
- node_ui/node_modules/lodash/_Promise.js +7 -0
- node_ui/node_modules/lodash/_Set.js +7 -0
- node_ui/node_modules/lodash/_SetCache.js +27 -0
- node_ui/node_modules/lodash/_Stack.js +27 -0
- node_ui/node_modules/lodash/_Symbol.js +6 -0
- node_ui/node_modules/lodash/_Uint8Array.js +6 -0
- node_ui/node_modules/lodash/_WeakMap.js +7 -0
- node_ui/node_modules/lodash/_apply.js +21 -0
- node_ui/node_modules/lodash/_arrayAggregator.js +22 -0
- node_ui/node_modules/lodash/_arrayEach.js +22 -0
- node_ui/node_modules/lodash/_arrayEachRight.js +21 -0
- node_ui/node_modules/lodash/_arrayEvery.js +23 -0
- node_ui/node_modules/lodash/_arrayFilter.js +25 -0
- node_ui/node_modules/lodash/_arrayIncludes.js +17 -0
- node_ui/node_modules/lodash/_arrayIncludesWith.js +22 -0
- node_ui/node_modules/lodash/_arrayLikeKeys.js +49 -0
- node_ui/node_modules/lodash/_arrayMap.js +21 -0
- node_ui/node_modules/lodash/_arrayPush.js +20 -0
- node_ui/node_modules/lodash/_arrayReduce.js +26 -0
- node_ui/node_modules/lodash/_arrayReduceRight.js +24 -0
- node_ui/node_modules/lodash/_arraySample.js +15 -0
- node_ui/node_modules/lodash/_arraySampleSize.js +17 -0
- node_ui/node_modules/lodash/_arrayShuffle.js +15 -0
- node_ui/node_modules/lodash/_arraySome.js +23 -0
- node_ui/node_modules/lodash/_asciiSize.js +12 -0
- node_ui/node_modules/lodash/_asciiToArray.js +12 -0
- node_ui/node_modules/lodash/_asciiWords.js +15 -0
- node_ui/node_modules/lodash/_assignMergeValue.js +20 -0
- node_ui/node_modules/lodash/_assignValue.js +28 -0
- node_ui/node_modules/lodash/_assocIndexOf.js +21 -0
- node_ui/node_modules/lodash/_baseAggregator.js +21 -0
- node_ui/node_modules/lodash/_baseAssign.js +17 -0
- node_ui/node_modules/lodash/_baseAssignIn.js +17 -0
- node_ui/node_modules/lodash/_baseAssignValue.js +25 -0
- node_ui/node_modules/lodash/_baseAt.js +23 -0
- node_ui/node_modules/lodash/_baseClamp.js +22 -0
- node_ui/node_modules/lodash/_baseClone.js +166 -0
- node_ui/node_modules/lodash/_baseConforms.js +18 -0
- node_ui/node_modules/lodash/_baseConformsTo.js +27 -0
- node_ui/node_modules/lodash/_baseCreate.js +30 -0
- node_ui/node_modules/lodash/_baseDelay.js +21 -0
- node_ui/node_modules/lodash/_baseDifference.js +67 -0
- node_ui/node_modules/lodash/_baseEach.js +14 -0
- node_ui/node_modules/lodash/_baseEachRight.js +14 -0
- node_ui/node_modules/lodash/_baseEvery.js +21 -0
- node_ui/node_modules/lodash/_baseExtremum.js +32 -0
- node_ui/node_modules/lodash/_baseFill.js +32 -0
- node_ui/node_modules/lodash/_baseFilter.js +21 -0
- node_ui/node_modules/lodash/_baseFindIndex.js +24 -0
- node_ui/node_modules/lodash/_baseFindKey.js +23 -0
- node_ui/node_modules/lodash/_baseFlatten.js +38 -0
- node_ui/node_modules/lodash/_baseFor.js +16 -0
- node_ui/node_modules/lodash/_baseForOwn.js +16 -0
- node_ui/node_modules/lodash/_baseForOwnRight.js +16 -0
- node_ui/node_modules/lodash/_baseForRight.js +15 -0
- node_ui/node_modules/lodash/_baseFunctions.js +19 -0
- node_ui/node_modules/lodash/_baseGet.js +24 -0
- node_ui/node_modules/lodash/_baseGetAllKeys.js +20 -0
- node_ui/node_modules/lodash/_baseGetTag.js +28 -0
- node_ui/node_modules/lodash/_baseGt.js +14 -0
- node_ui/node_modules/lodash/_baseHas.js +19 -0
- node_ui/node_modules/lodash/_baseHasIn.js +13 -0
- node_ui/node_modules/lodash/_baseInRange.js +18 -0
- node_ui/node_modules/lodash/_baseIndexOf.js +20 -0
- node_ui/node_modules/lodash/_baseIndexOfWith.js +23 -0
- node_ui/node_modules/lodash/_baseIntersection.js +74 -0
- node_ui/node_modules/lodash/_baseInverter.js +21 -0
- node_ui/node_modules/lodash/_baseInvoke.js +24 -0
- node_ui/node_modules/lodash/_baseIsArguments.js +18 -0
- node_ui/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
- node_ui/node_modules/lodash/_baseIsDate.js +18 -0
- node_ui/node_modules/lodash/_baseIsEqual.js +28 -0
- node_ui/node_modules/lodash/_baseIsEqualDeep.js +83 -0
- node_ui/node_modules/lodash/_baseIsMap.js +18 -0
- node_ui/node_modules/lodash/_baseIsMatch.js +62 -0
- node_ui/node_modules/lodash/_baseIsNaN.js +12 -0
- node_ui/node_modules/lodash/_baseIsNative.js +47 -0
- node_ui/node_modules/lodash/_baseIsRegExp.js +18 -0
- node_ui/node_modules/lodash/_baseIsSet.js +18 -0
- node_ui/node_modules/lodash/_baseIsTypedArray.js +60 -0
- node_ui/node_modules/lodash/_baseIteratee.js +31 -0
- node_ui/node_modules/lodash/_baseKeys.js +30 -0
- node_ui/node_modules/lodash/_baseKeysIn.js +33 -0
- node_ui/node_modules/lodash/_baseLodash.js +10 -0
- node_ui/node_modules/lodash/_baseLt.js +14 -0
- node_ui/node_modules/lodash/_baseMap.js +22 -0
- node_ui/node_modules/lodash/_baseMatches.js +22 -0
- node_ui/node_modules/lodash/_baseMatchesProperty.js +33 -0
- node_ui/node_modules/lodash/_baseMean.js +20 -0
- node_ui/node_modules/lodash/_baseMerge.js +42 -0
- node_ui/node_modules/lodash/_baseMergeDeep.js +94 -0
- node_ui/node_modules/lodash/_baseNth.js +20 -0
- node_ui/node_modules/lodash/_baseOrderBy.js +49 -0
- node_ui/node_modules/lodash/_basePick.js +19 -0
- node_ui/node_modules/lodash/_basePickBy.js +30 -0
- node_ui/node_modules/lodash/_baseProperty.js +14 -0
- node_ui/node_modules/lodash/_basePropertyDeep.js +16 -0
- node_ui/node_modules/lodash/_basePropertyOf.js +14 -0
- node_ui/node_modules/lodash/_basePullAll.js +51 -0
- node_ui/node_modules/lodash/_basePullAt.js +37 -0
- node_ui/node_modules/lodash/_baseRandom.js +18 -0
- node_ui/node_modules/lodash/_baseRange.js +28 -0
- node_ui/node_modules/lodash/_baseReduce.js +23 -0
- node_ui/node_modules/lodash/_baseRepeat.js +35 -0
- node_ui/node_modules/lodash/_baseRest.js +17 -0
- node_ui/node_modules/lodash/_baseSample.js +15 -0
- node_ui/node_modules/lodash/_baseSampleSize.js +18 -0
- node_ui/node_modules/lodash/_baseSet.js +51 -0
- node_ui/node_modules/lodash/_baseSetData.js +17 -0
- node_ui/node_modules/lodash/_baseSetToString.js +22 -0
- node_ui/node_modules/lodash/_baseShuffle.js +15 -0
- node_ui/node_modules/lodash/_baseSlice.js +31 -0
- node_ui/node_modules/lodash/_baseSome.js +22 -0
- node_ui/node_modules/lodash/_baseSortBy.js +21 -0
- node_ui/node_modules/lodash/_baseSortedIndex.js +42 -0
- node_ui/node_modules/lodash/_baseSortedIndexBy.js +67 -0
- node_ui/node_modules/lodash/_baseSortedUniq.js +30 -0
- node_ui/node_modules/lodash/_baseSum.js +24 -0
- node_ui/node_modules/lodash/_baseTimes.js +20 -0
- node_ui/node_modules/lodash/_baseToNumber.js +24 -0
- node_ui/node_modules/lodash/_baseToPairs.js +18 -0
- node_ui/node_modules/lodash/_baseToString.js +37 -0
- node_ui/node_modules/lodash/_baseTrim.js +19 -0
- node_ui/node_modules/lodash/_baseUnary.js +14 -0
- node_ui/node_modules/lodash/_baseUniq.js +72 -0
- node_ui/node_modules/lodash/_baseUnset.js +20 -0
- node_ui/node_modules/lodash/_baseUpdate.js +18 -0
- node_ui/node_modules/lodash/_baseValues.js +19 -0
- node_ui/node_modules/lodash/_baseWhile.js +26 -0
- node_ui/node_modules/lodash/_baseWrapperValue.js +25 -0
- node_ui/node_modules/lodash/_baseXor.js +36 -0
- node_ui/node_modules/lodash/_baseZipObject.js +23 -0
- node_ui/node_modules/lodash/_cacheHas.js +13 -0
- node_ui/node_modules/lodash/_castArrayLikeObject.js +14 -0
- node_ui/node_modules/lodash/_castFunction.js +14 -0
- node_ui/node_modules/lodash/_castPath.js +21 -0
- node_ui/node_modules/lodash/_castRest.js +14 -0
- node_ui/node_modules/lodash/_castSlice.js +18 -0
- node_ui/node_modules/lodash/_charsEndIndex.js +19 -0
- node_ui/node_modules/lodash/_charsStartIndex.js +20 -0
- node_ui/node_modules/lodash/_cloneArrayBuffer.js +16 -0
- node_ui/node_modules/lodash/_cloneBuffer.js +35 -0
- node_ui/node_modules/lodash/_cloneDataView.js +16 -0
- node_ui/node_modules/lodash/_cloneRegExp.js +17 -0
- node_ui/node_modules/lodash/_cloneSymbol.js +18 -0
- node_ui/node_modules/lodash/_cloneTypedArray.js +16 -0
- node_ui/node_modules/lodash/_compareAscending.js +41 -0
- node_ui/node_modules/lodash/_compareMultiple.js +44 -0
- node_ui/node_modules/lodash/_composeArgs.js +39 -0
- node_ui/node_modules/lodash/_composeArgsRight.js +41 -0
- node_ui/node_modules/lodash/_copyArray.js +20 -0
- node_ui/node_modules/lodash/_copyObject.js +40 -0
- node_ui/node_modules/lodash/_copySymbols.js +16 -0
- node_ui/node_modules/lodash/_copySymbolsIn.js +16 -0
- node_ui/node_modules/lodash/_coreJsData.js +6 -0
- node_ui/node_modules/lodash/_countHolders.js +21 -0
- node_ui/node_modules/lodash/_createAggregator.js +23 -0
- node_ui/node_modules/lodash/_createAssigner.js +37 -0
- node_ui/node_modules/lodash/_createBaseEach.js +32 -0
- node_ui/node_modules/lodash/_createBaseFor.js +25 -0
- node_ui/node_modules/lodash/_createBind.js +28 -0
- node_ui/node_modules/lodash/_createCaseFirst.js +33 -0
- node_ui/node_modules/lodash/_createCompounder.js +24 -0
- node_ui/node_modules/lodash/_createCtor.js +37 -0
- node_ui/node_modules/lodash/_createCurry.js +46 -0
- node_ui/node_modules/lodash/_createFind.js +25 -0
- node_ui/node_modules/lodash/_createFlow.js +78 -0
- node_ui/node_modules/lodash/_createHybrid.js +92 -0
- node_ui/node_modules/lodash/_createInverter.js +17 -0
- node_ui/node_modules/lodash/_createMathOperation.js +38 -0
- node_ui/node_modules/lodash/_createOver.js +27 -0
- node_ui/node_modules/lodash/_createPadding.js +33 -0
- node_ui/node_modules/lodash/_createPartial.js +43 -0
- node_ui/node_modules/lodash/_createRange.js +30 -0
- node_ui/node_modules/lodash/_createRecurry.js +56 -0
- node_ui/node_modules/lodash/_createRelationalOperation.js +20 -0
- node_ui/node_modules/lodash/_createRound.js +35 -0
- node_ui/node_modules/lodash/_createSet.js +19 -0
- node_ui/node_modules/lodash/_createToPairs.js +30 -0
- node_ui/node_modules/lodash/_createWrap.js +106 -0
- node_ui/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
- node_ui/node_modules/lodash/_customDefaultsMerge.js +28 -0
- node_ui/node_modules/lodash/_customOmitClone.js +16 -0
- node_ui/node_modules/lodash/_deburrLetter.js +71 -0
- node_ui/node_modules/lodash/_defineProperty.js +11 -0
- node_ui/node_modules/lodash/_equalArrays.js +84 -0
- node_ui/node_modules/lodash/_equalByTag.js +112 -0
- node_ui/node_modules/lodash/_equalObjects.js +90 -0
- node_ui/node_modules/lodash/_escapeHtmlChar.js +21 -0
- node_ui/node_modules/lodash/_escapeStringChar.js +22 -0
- node_ui/node_modules/lodash/_flatRest.js +16 -0
- node_ui/node_modules/lodash/_freeGlobal.js +4 -0
- node_ui/node_modules/lodash/_getAllKeys.js +16 -0
- node_ui/node_modules/lodash/_getAllKeysIn.js +17 -0
- node_ui/node_modules/lodash/_getData.js +15 -0
- node_ui/node_modules/lodash/_getFuncName.js +31 -0
- node_ui/node_modules/lodash/_getHolder.js +13 -0
- node_ui/node_modules/lodash/_getMapData.js +18 -0
- node_ui/node_modules/lodash/_getMatchData.js +24 -0
- node_ui/node_modules/lodash/_getNative.js +17 -0
- node_ui/node_modules/lodash/_getPrototype.js +6 -0
- node_ui/node_modules/lodash/_getRawTag.js +46 -0
- node_ui/node_modules/lodash/_getSymbols.js +30 -0
- node_ui/node_modules/lodash/_getSymbolsIn.js +25 -0
- node_ui/node_modules/lodash/_getTag.js +58 -0
- node_ui/node_modules/lodash/_getValue.js +13 -0
- node_ui/node_modules/lodash/_getView.js +33 -0
- node_ui/node_modules/lodash/_getWrapDetails.js +17 -0
- node_ui/node_modules/lodash/_hasPath.js +39 -0
- node_ui/node_modules/lodash/_hasUnicode.js +26 -0
- node_ui/node_modules/lodash/_hasUnicodeWord.js +15 -0
- node_ui/node_modules/lodash/_hashClear.js +15 -0
- node_ui/node_modules/lodash/_hashDelete.js +17 -0
- node_ui/node_modules/lodash/_hashGet.js +30 -0
- node_ui/node_modules/lodash/_hashHas.js +23 -0
- node_ui/node_modules/lodash/_hashSet.js +23 -0
- node_ui/node_modules/lodash/_initCloneArray.js +26 -0
- node_ui/node_modules/lodash/_initCloneByTag.js +77 -0
- node_ui/node_modules/lodash/_initCloneObject.js +18 -0
- node_ui/node_modules/lodash/_insertWrapDetails.js +23 -0
- node_ui/node_modules/lodash/_isFlattenable.js +20 -0
- node_ui/node_modules/lodash/_isIndex.js +25 -0
- node_ui/node_modules/lodash/_isIterateeCall.js +30 -0
- node_ui/node_modules/lodash/_isKey.js +29 -0
- node_ui/node_modules/lodash/_isKeyable.js +15 -0
- node_ui/node_modules/lodash/_isLaziable.js +28 -0
- node_ui/node_modules/lodash/_isMaskable.js +14 -0
- node_ui/node_modules/lodash/_isMasked.js +20 -0
- node_ui/node_modules/lodash/_isPrototype.js +18 -0
- node_ui/node_modules/lodash/_isStrictComparable.js +15 -0
- node_ui/node_modules/lodash/_iteratorToArray.js +18 -0
- node_ui/node_modules/lodash/_lazyClone.js +23 -0
- node_ui/node_modules/lodash/_lazyReverse.js +23 -0
- node_ui/node_modules/lodash/_lazyValue.js +69 -0
- node_ui/node_modules/lodash/_listCacheClear.js +13 -0
- node_ui/node_modules/lodash/_listCacheDelete.js +35 -0
- node_ui/node_modules/lodash/_listCacheGet.js +19 -0
- node_ui/node_modules/lodash/_listCacheHas.js +16 -0
- node_ui/node_modules/lodash/_listCacheSet.js +26 -0
- node_ui/node_modules/lodash/_mapCacheClear.js +21 -0
- node_ui/node_modules/lodash/_mapCacheDelete.js +18 -0
- node_ui/node_modules/lodash/_mapCacheGet.js +16 -0
- node_ui/node_modules/lodash/_mapCacheHas.js +16 -0
- node_ui/node_modules/lodash/_mapCacheSet.js +22 -0
- node_ui/node_modules/lodash/_mapToArray.js +18 -0
- node_ui/node_modules/lodash/_matchesStrictComparable.js +20 -0
- node_ui/node_modules/lodash/_memoizeCapped.js +26 -0
- node_ui/node_modules/lodash/_mergeData.js +90 -0
- node_ui/node_modules/lodash/_metaMap.js +6 -0
- node_ui/node_modules/lodash/_nativeCreate.js +6 -0
- node_ui/node_modules/lodash/_nativeKeys.js +6 -0
- node_ui/node_modules/lodash/_nativeKeysIn.js +20 -0
- node_ui/node_modules/lodash/_nodeUtil.js +30 -0
- node_ui/node_modules/lodash/_objectToString.js +22 -0
- node_ui/node_modules/lodash/_overArg.js +15 -0
- node_ui/node_modules/lodash/_overRest.js +36 -0
- node_ui/node_modules/lodash/_parent.js +16 -0
- node_ui/node_modules/lodash/_reEscape.js +4 -0
- node_ui/node_modules/lodash/_reEvaluate.js +4 -0
- node_ui/node_modules/lodash/_reInterpolate.js +4 -0
- node_ui/node_modules/lodash/_realNames.js +4 -0
- node_ui/node_modules/lodash/_reorder.js +29 -0
- node_ui/node_modules/lodash/_replaceHolders.js +29 -0
- node_ui/node_modules/lodash/_root.js +9 -0
- node_ui/node_modules/lodash/_safeGet.js +21 -0
- node_ui/node_modules/lodash/_setCacheAdd.js +19 -0
- node_ui/node_modules/lodash/_setCacheHas.js +14 -0
- node_ui/node_modules/lodash/_setData.js +20 -0
- node_ui/node_modules/lodash/_setToArray.js +18 -0
- node_ui/node_modules/lodash/_setToPairs.js +18 -0
- node_ui/node_modules/lodash/_setToString.js +14 -0
- node_ui/node_modules/lodash/_setWrapToString.js +21 -0
- node_ui/node_modules/lodash/_shortOut.js +37 -0
- node_ui/node_modules/lodash/_shuffleSelf.js +28 -0
- node_ui/node_modules/lodash/_stackClear.js +15 -0
- node_ui/node_modules/lodash/_stackDelete.js +18 -0
- node_ui/node_modules/lodash/_stackGet.js +14 -0
- node_ui/node_modules/lodash/_stackHas.js +14 -0
- node_ui/node_modules/lodash/_stackSet.js +34 -0
- node_ui/node_modules/lodash/_strictIndexOf.js +23 -0
- node_ui/node_modules/lodash/_strictLastIndexOf.js +21 -0
- node_ui/node_modules/lodash/_stringSize.js +18 -0
- node_ui/node_modules/lodash/_stringToArray.js +18 -0
- node_ui/node_modules/lodash/_stringToPath.js +27 -0
- node_ui/node_modules/lodash/_toKey.js +21 -0
- node_ui/node_modules/lodash/_toSource.js +26 -0
- node_ui/node_modules/lodash/_trimmedEndIndex.js +19 -0
- node_ui/node_modules/lodash/_unescapeHtmlChar.js +21 -0
- node_ui/node_modules/lodash/_unicodeSize.js +44 -0
- node_ui/node_modules/lodash/_unicodeToArray.js +40 -0
- node_ui/node_modules/lodash/_unicodeWords.js +69 -0
- node_ui/node_modules/lodash/_updateWrapDetails.js +46 -0
- node_ui/node_modules/lodash/_wrapperClone.js +23 -0
- node_ui/node_modules/lodash/add.js +22 -0
- node_ui/node_modules/lodash/after.js +42 -0
- node_ui/node_modules/lodash/array.js +67 -0
- node_ui/node_modules/lodash/ary.js +29 -0
- node_ui/node_modules/lodash/assign.js +58 -0
- node_ui/node_modules/lodash/assignIn.js +40 -0
- node_ui/node_modules/lodash/assignInWith.js +38 -0
- node_ui/node_modules/lodash/assignWith.js +37 -0
- node_ui/node_modules/lodash/at.js +23 -0
- node_ui/node_modules/lodash/attempt.js +35 -0
- node_ui/node_modules/lodash/before.js +40 -0
- node_ui/node_modules/lodash/bind.js +57 -0
- node_ui/node_modules/lodash/bindAll.js +41 -0
- node_ui/node_modules/lodash/bindKey.js +68 -0
- node_ui/node_modules/lodash/camelCase.js +29 -0
- node_ui/node_modules/lodash/capitalize.js +23 -0
- node_ui/node_modules/lodash/castArray.js +44 -0
- node_ui/node_modules/lodash/ceil.js +26 -0
- node_ui/node_modules/lodash/chain.js +38 -0
- node_ui/node_modules/lodash/chunk.js +50 -0
- node_ui/node_modules/lodash/clamp.js +39 -0
- node_ui/node_modules/lodash/clone.js +36 -0
- node_ui/node_modules/lodash/cloneDeep.js +29 -0
- node_ui/node_modules/lodash/cloneDeepWith.js +40 -0
- node_ui/node_modules/lodash/cloneWith.js +42 -0
- node_ui/node_modules/lodash/collection.js +30 -0
- node_ui/node_modules/lodash/commit.js +33 -0
- node_ui/node_modules/lodash/compact.js +31 -0
- node_ui/node_modules/lodash/concat.js +43 -0
- node_ui/node_modules/lodash/cond.js +60 -0
- node_ui/node_modules/lodash/conforms.js +35 -0
- node_ui/node_modules/lodash/conformsTo.js +32 -0
- node_ui/node_modules/lodash/constant.js +26 -0
- node_ui/node_modules/lodash/core.js +3877 -0
- node_ui/node_modules/lodash/core.min.js +29 -0
- node_ui/node_modules/lodash/countBy.js +40 -0
- node_ui/node_modules/lodash/create.js +43 -0
- node_ui/node_modules/lodash/curry.js +57 -0
- node_ui/node_modules/lodash/curryRight.js +54 -0
- node_ui/node_modules/lodash/date.js +3 -0
- node_ui/node_modules/lodash/debounce.js +191 -0
- node_ui/node_modules/lodash/deburr.js +45 -0
- node_ui/node_modules/lodash/defaultTo.js +25 -0
- node_ui/node_modules/lodash/defaults.js +64 -0
- node_ui/node_modules/lodash/defaultsDeep.js +30 -0
- node_ui/node_modules/lodash/defer.js +26 -0
- node_ui/node_modules/lodash/delay.js +28 -0
- node_ui/node_modules/lodash/difference.js +33 -0
- node_ui/node_modules/lodash/differenceBy.js +44 -0
- node_ui/node_modules/lodash/differenceWith.js +40 -0
- node_ui/node_modules/lodash/divide.js +22 -0
- node_ui/node_modules/lodash/drop.js +38 -0
- node_ui/node_modules/lodash/dropRight.js +39 -0
- node_ui/node_modules/lodash/dropRightWhile.js +45 -0
- node_ui/node_modules/lodash/dropWhile.js +45 -0
- node_ui/node_modules/lodash/each.js +1 -0
- node_ui/node_modules/lodash/eachRight.js +1 -0
- node_ui/node_modules/lodash/endsWith.js +43 -0
- node_ui/node_modules/lodash/entries.js +1 -0
- node_ui/node_modules/lodash/entriesIn.js +1 -0
- node_ui/node_modules/lodash/eq.js +37 -0
- node_ui/node_modules/lodash/escape.js +43 -0
- node_ui/node_modules/lodash/escapeRegExp.js +32 -0
- node_ui/node_modules/lodash/every.js +56 -0
- node_ui/node_modules/lodash/extend.js +1 -0
- node_ui/node_modules/lodash/extendWith.js +1 -0
- node_ui/node_modules/lodash/fill.js +45 -0
- node_ui/node_modules/lodash/filter.js +52 -0
- node_ui/node_modules/lodash/find.js +42 -0
- node_ui/node_modules/lodash/findIndex.js +55 -0
- node_ui/node_modules/lodash/findKey.js +44 -0
- node_ui/node_modules/lodash/findLast.js +25 -0
- node_ui/node_modules/lodash/findLastIndex.js +59 -0
- node_ui/node_modules/lodash/findLastKey.js +44 -0
- node_ui/node_modules/lodash/first.js +1 -0
- node_ui/node_modules/lodash/flake.lock +40 -0
- node_ui/node_modules/lodash/flake.nix +20 -0
- node_ui/node_modules/lodash/flatMap.js +29 -0
- node_ui/node_modules/lodash/flatMapDeep.js +31 -0
- node_ui/node_modules/lodash/flatMapDepth.js +31 -0
- node_ui/node_modules/lodash/flatten.js +22 -0
- node_ui/node_modules/lodash/flattenDeep.js +25 -0
- node_ui/node_modules/lodash/flattenDepth.js +33 -0
- node_ui/node_modules/lodash/flip.js +28 -0
- node_ui/node_modules/lodash/floor.js +26 -0
- node_ui/node_modules/lodash/flow.js +27 -0
- node_ui/node_modules/lodash/flowRight.js +26 -0
- node_ui/node_modules/lodash/forEach.js +41 -0
- node_ui/node_modules/lodash/forEachRight.js +31 -0
- node_ui/node_modules/lodash/forIn.js +39 -0
- node_ui/node_modules/lodash/forInRight.js +37 -0
- node_ui/node_modules/lodash/forOwn.js +36 -0
- node_ui/node_modules/lodash/forOwnRight.js +34 -0
- node_ui/node_modules/lodash/fp/F.js +1 -0
- node_ui/node_modules/lodash/fp/T.js +1 -0
- node_ui/node_modules/lodash/fp/__.js +1 -0
- node_ui/node_modules/lodash/fp/_baseConvert.js +569 -0
- node_ui/node_modules/lodash/fp/_convertBrowser.js +18 -0
- node_ui/node_modules/lodash/fp/_falseOptions.js +7 -0
- node_ui/node_modules/lodash/fp/_mapping.js +358 -0
- node_ui/node_modules/lodash/fp/_util.js +16 -0
- node_ui/node_modules/lodash/fp/add.js +5 -0
- node_ui/node_modules/lodash/fp/after.js +5 -0
- node_ui/node_modules/lodash/fp/all.js +1 -0
- node_ui/node_modules/lodash/fp/allPass.js +1 -0
- node_ui/node_modules/lodash/fp/always.js +1 -0
- node_ui/node_modules/lodash/fp/any.js +1 -0
- node_ui/node_modules/lodash/fp/anyPass.js +1 -0
- node_ui/node_modules/lodash/fp/apply.js +1 -0
- node_ui/node_modules/lodash/fp/array.js +2 -0
- node_ui/node_modules/lodash/fp/ary.js +5 -0
- node_ui/node_modules/lodash/fp/assign.js +5 -0
- node_ui/node_modules/lodash/fp/assignAll.js +5 -0
- node_ui/node_modules/lodash/fp/assignAllWith.js +5 -0
- node_ui/node_modules/lodash/fp/assignIn.js +5 -0
- node_ui/node_modules/lodash/fp/assignInAll.js +5 -0
- node_ui/node_modules/lodash/fp/assignInAllWith.js +5 -0
- node_ui/node_modules/lodash/fp/assignInWith.js +5 -0
- node_ui/node_modules/lodash/fp/assignWith.js +5 -0
- node_ui/node_modules/lodash/fp/assoc.js +1 -0
- node_ui/node_modules/lodash/fp/assocPath.js +1 -0
- node_ui/node_modules/lodash/fp/at.js +5 -0
- node_ui/node_modules/lodash/fp/attempt.js +5 -0
- node_ui/node_modules/lodash/fp/before.js +5 -0
- node_ui/node_modules/lodash/fp/bind.js +5 -0
- node_ui/node_modules/lodash/fp/bindAll.js +5 -0
- node_ui/node_modules/lodash/fp/bindKey.js +5 -0
- node_ui/node_modules/lodash/fp/camelCase.js +5 -0
- node_ui/node_modules/lodash/fp/capitalize.js +5 -0
- node_ui/node_modules/lodash/fp/castArray.js +5 -0
- node_ui/node_modules/lodash/fp/ceil.js +5 -0
- node_ui/node_modules/lodash/fp/chain.js +5 -0
- node_ui/node_modules/lodash/fp/chunk.js +5 -0
- node_ui/node_modules/lodash/fp/clamp.js +5 -0
- node_ui/node_modules/lodash/fp/clone.js +5 -0
- node_ui/node_modules/lodash/fp/cloneDeep.js +5 -0
- node_ui/node_modules/lodash/fp/cloneDeepWith.js +5 -0
- node_ui/node_modules/lodash/fp/cloneWith.js +5 -0
- node_ui/node_modules/lodash/fp/collection.js +2 -0
- node_ui/node_modules/lodash/fp/commit.js +5 -0
- node_ui/node_modules/lodash/fp/compact.js +5 -0
- node_ui/node_modules/lodash/fp/complement.js +1 -0
- node_ui/node_modules/lodash/fp/compose.js +1 -0
- node_ui/node_modules/lodash/fp/concat.js +5 -0
- node_ui/node_modules/lodash/fp/cond.js +5 -0
- node_ui/node_modules/lodash/fp/conforms.js +1 -0
- node_ui/node_modules/lodash/fp/conformsTo.js +5 -0
- node_ui/node_modules/lodash/fp/constant.js +5 -0
- node_ui/node_modules/lodash/fp/contains.js +1 -0
- node_ui/node_modules/lodash/fp/convert.js +18 -0
- node_ui/node_modules/lodash/fp/countBy.js +5 -0
- node_ui/node_modules/lodash/fp/create.js +5 -0
- node_ui/node_modules/lodash/fp/curry.js +5 -0
- node_ui/node_modules/lodash/fp/curryN.js +5 -0
- node_ui/node_modules/lodash/fp/curryRight.js +5 -0
- node_ui/node_modules/lodash/fp/curryRightN.js +5 -0
- node_ui/node_modules/lodash/fp/date.js +2 -0
- node_ui/node_modules/lodash/fp/debounce.js +5 -0
- node_ui/node_modules/lodash/fp/deburr.js +5 -0
- node_ui/node_modules/lodash/fp/defaultTo.js +5 -0
- node_ui/node_modules/lodash/fp/defaults.js +5 -0
- node_ui/node_modules/lodash/fp/defaultsAll.js +5 -0
- node_ui/node_modules/lodash/fp/defaultsDeep.js +5 -0
- node_ui/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
- node_ui/node_modules/lodash/fp/defer.js +5 -0
- node_ui/node_modules/lodash/fp/delay.js +5 -0
- node_ui/node_modules/lodash/fp/difference.js +5 -0
- node_ui/node_modules/lodash/fp/differenceBy.js +5 -0
- node_ui/node_modules/lodash/fp/differenceWith.js +5 -0
- node_ui/node_modules/lodash/fp/dissoc.js +1 -0
- node_ui/node_modules/lodash/fp/dissocPath.js +1 -0
- node_ui/node_modules/lodash/fp/divide.js +5 -0
- node_ui/node_modules/lodash/fp/drop.js +5 -0
- node_ui/node_modules/lodash/fp/dropLast.js +1 -0
- node_ui/node_modules/lodash/fp/dropLastWhile.js +1 -0
- node_ui/node_modules/lodash/fp/dropRight.js +5 -0
- node_ui/node_modules/lodash/fp/dropRightWhile.js +5 -0
- node_ui/node_modules/lodash/fp/dropWhile.js +5 -0
- node_ui/node_modules/lodash/fp/each.js +1 -0
- node_ui/node_modules/lodash/fp/eachRight.js +1 -0
- node_ui/node_modules/lodash/fp/endsWith.js +5 -0
- node_ui/node_modules/lodash/fp/entries.js +1 -0
- node_ui/node_modules/lodash/fp/entriesIn.js +1 -0
- node_ui/node_modules/lodash/fp/eq.js +5 -0
- node_ui/node_modules/lodash/fp/equals.js +1 -0
- node_ui/node_modules/lodash/fp/escape.js +5 -0
- node_ui/node_modules/lodash/fp/escapeRegExp.js +5 -0
- node_ui/node_modules/lodash/fp/every.js +5 -0
- node_ui/node_modules/lodash/fp/extend.js +1 -0
- node_ui/node_modules/lodash/fp/extendAll.js +1 -0
- node_ui/node_modules/lodash/fp/extendAllWith.js +1 -0
- node_ui/node_modules/lodash/fp/extendWith.js +1 -0
- node_ui/node_modules/lodash/fp/fill.js +5 -0
- node_ui/node_modules/lodash/fp/filter.js +5 -0
- node_ui/node_modules/lodash/fp/find.js +5 -0
- node_ui/node_modules/lodash/fp/findFrom.js +5 -0
- node_ui/node_modules/lodash/fp/findIndex.js +5 -0
- node_ui/node_modules/lodash/fp/findIndexFrom.js +5 -0
- node_ui/node_modules/lodash/fp/findKey.js +5 -0
- node_ui/node_modules/lodash/fp/findLast.js +5 -0
- node_ui/node_modules/lodash/fp/findLastFrom.js +5 -0
- node_ui/node_modules/lodash/fp/findLastIndex.js +5 -0
- node_ui/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
- node_ui/node_modules/lodash/fp/findLastKey.js +5 -0
- node_ui/node_modules/lodash/fp/first.js +1 -0
- node_ui/node_modules/lodash/fp/flatMap.js +5 -0
- node_ui/node_modules/lodash/fp/flatMapDeep.js +5 -0
- node_ui/node_modules/lodash/fp/flatMapDepth.js +5 -0
- node_ui/node_modules/lodash/fp/flatten.js +5 -0
- node_ui/node_modules/lodash/fp/flattenDeep.js +5 -0
- node_ui/node_modules/lodash/fp/flattenDepth.js +5 -0
- node_ui/node_modules/lodash/fp/flip.js +5 -0
- node_ui/node_modules/lodash/fp/floor.js +5 -0
- node_ui/node_modules/lodash/fp/flow.js +5 -0
- node_ui/node_modules/lodash/fp/flowRight.js +5 -0
- node_ui/node_modules/lodash/fp/forEach.js +5 -0
- node_ui/node_modules/lodash/fp/forEachRight.js +5 -0
- node_ui/node_modules/lodash/fp/forIn.js +5 -0
- node_ui/node_modules/lodash/fp/forInRight.js +5 -0
- node_ui/node_modules/lodash/fp/forOwn.js +5 -0
- node_ui/node_modules/lodash/fp/forOwnRight.js +5 -0
- node_ui/node_modules/lodash/fp/fromPairs.js +5 -0
- node_ui/node_modules/lodash/fp/function.js +2 -0
- node_ui/node_modules/lodash/fp/functions.js +5 -0
- node_ui/node_modules/lodash/fp/functionsIn.js +5 -0
- node_ui/node_modules/lodash/fp/get.js +5 -0
- node_ui/node_modules/lodash/fp/getOr.js +5 -0
- node_ui/node_modules/lodash/fp/groupBy.js +5 -0
- node_ui/node_modules/lodash/fp/gt.js +5 -0
- node_ui/node_modules/lodash/fp/gte.js +5 -0
- node_ui/node_modules/lodash/fp/has.js +5 -0
- node_ui/node_modules/lodash/fp/hasIn.js +5 -0
- node_ui/node_modules/lodash/fp/head.js +5 -0
- node_ui/node_modules/lodash/fp/identical.js +1 -0
- node_ui/node_modules/lodash/fp/identity.js +5 -0
- node_ui/node_modules/lodash/fp/inRange.js +5 -0
- node_ui/node_modules/lodash/fp/includes.js +5 -0
- node_ui/node_modules/lodash/fp/includesFrom.js +5 -0
- node_ui/node_modules/lodash/fp/indexBy.js +1 -0
- node_ui/node_modules/lodash/fp/indexOf.js +5 -0
- node_ui/node_modules/lodash/fp/indexOfFrom.js +5 -0
- node_ui/node_modules/lodash/fp/init.js +1 -0
- node_ui/node_modules/lodash/fp/initial.js +5 -0
- node_ui/node_modules/lodash/fp/intersection.js +5 -0
- node_ui/node_modules/lodash/fp/intersectionBy.js +5 -0
- node_ui/node_modules/lodash/fp/intersectionWith.js +5 -0
- node_ui/node_modules/lodash/fp/invert.js +5 -0
- node_ui/node_modules/lodash/fp/invertBy.js +5 -0
- node_ui/node_modules/lodash/fp/invertObj.js +1 -0
- node_ui/node_modules/lodash/fp/invoke.js +5 -0
- node_ui/node_modules/lodash/fp/invokeArgs.js +5 -0
- node_ui/node_modules/lodash/fp/invokeArgsMap.js +5 -0
- node_ui/node_modules/lodash/fp/invokeMap.js +5 -0
- node_ui/node_modules/lodash/fp/isArguments.js +5 -0
- node_ui/node_modules/lodash/fp/isArray.js +5 -0
- node_ui/node_modules/lodash/fp/isArrayBuffer.js +5 -0
- node_ui/node_modules/lodash/fp/isArrayLike.js +5 -0
- node_ui/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
- node_ui/node_modules/lodash/fp/isBoolean.js +5 -0
- node_ui/node_modules/lodash/fp/isBuffer.js +5 -0
- node_ui/node_modules/lodash/fp/isDate.js +5 -0
- node_ui/node_modules/lodash/fp/isElement.js +5 -0
- node_ui/node_modules/lodash/fp/isEmpty.js +5 -0
- node_ui/node_modules/lodash/fp/isEqual.js +5 -0
- node_ui/node_modules/lodash/fp/isEqualWith.js +5 -0
- node_ui/node_modules/lodash/fp/isError.js +5 -0
- node_ui/node_modules/lodash/fp/isFinite.js +5 -0
- node_ui/node_modules/lodash/fp/isFunction.js +5 -0
- node_ui/node_modules/lodash/fp/isInteger.js +5 -0
- node_ui/node_modules/lodash/fp/isLength.js +5 -0
- node_ui/node_modules/lodash/fp/isMap.js +5 -0
- node_ui/node_modules/lodash/fp/isMatch.js +5 -0
- node_ui/node_modules/lodash/fp/isMatchWith.js +5 -0
- node_ui/node_modules/lodash/fp/isNaN.js +5 -0
- node_ui/node_modules/lodash/fp/isNative.js +5 -0
- node_ui/node_modules/lodash/fp/isNil.js +5 -0
- node_ui/node_modules/lodash/fp/isNull.js +5 -0
- node_ui/node_modules/lodash/fp/isNumber.js +5 -0
- node_ui/node_modules/lodash/fp/isObject.js +5 -0
- node_ui/node_modules/lodash/fp/isObjectLike.js +5 -0
- node_ui/node_modules/lodash/fp/isPlainObject.js +5 -0
- node_ui/node_modules/lodash/fp/isRegExp.js +5 -0
- node_ui/node_modules/lodash/fp/isSafeInteger.js +5 -0
- node_ui/node_modules/lodash/fp/isSet.js +5 -0
- node_ui/node_modules/lodash/fp/isString.js +5 -0
- node_ui/node_modules/lodash/fp/isSymbol.js +5 -0
- node_ui/node_modules/lodash/fp/isTypedArray.js +5 -0
- node_ui/node_modules/lodash/fp/isUndefined.js +5 -0
- node_ui/node_modules/lodash/fp/isWeakMap.js +5 -0
- node_ui/node_modules/lodash/fp/isWeakSet.js +5 -0
- node_ui/node_modules/lodash/fp/iteratee.js +5 -0
- node_ui/node_modules/lodash/fp/join.js +5 -0
- node_ui/node_modules/lodash/fp/juxt.js +1 -0
- node_ui/node_modules/lodash/fp/kebabCase.js +5 -0
- node_ui/node_modules/lodash/fp/keyBy.js +5 -0
- node_ui/node_modules/lodash/fp/keys.js +5 -0
- node_ui/node_modules/lodash/fp/keysIn.js +5 -0
- node_ui/node_modules/lodash/fp/lang.js +2 -0
- node_ui/node_modules/lodash/fp/last.js +5 -0
- node_ui/node_modules/lodash/fp/lastIndexOf.js +5 -0
- node_ui/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
- node_ui/node_modules/lodash/fp/lowerCase.js +5 -0
- node_ui/node_modules/lodash/fp/lowerFirst.js +5 -0
- node_ui/node_modules/lodash/fp/lt.js +5 -0
- node_ui/node_modules/lodash/fp/lte.js +5 -0
- node_ui/node_modules/lodash/fp/map.js +5 -0
- node_ui/node_modules/lodash/fp/mapKeys.js +5 -0
- node_ui/node_modules/lodash/fp/mapValues.js +5 -0
- node_ui/node_modules/lodash/fp/matches.js +1 -0
- node_ui/node_modules/lodash/fp/matchesProperty.js +5 -0
- node_ui/node_modules/lodash/fp/math.js +2 -0
- node_ui/node_modules/lodash/fp/max.js +5 -0
- node_ui/node_modules/lodash/fp/maxBy.js +5 -0
- node_ui/node_modules/lodash/fp/mean.js +5 -0
- node_ui/node_modules/lodash/fp/meanBy.js +5 -0
- node_ui/node_modules/lodash/fp/memoize.js +5 -0
- node_ui/node_modules/lodash/fp/merge.js +5 -0
- node_ui/node_modules/lodash/fp/mergeAll.js +5 -0
- node_ui/node_modules/lodash/fp/mergeAllWith.js +5 -0
- node_ui/node_modules/lodash/fp/mergeWith.js +5 -0
- node_ui/node_modules/lodash/fp/method.js +5 -0
- node_ui/node_modules/lodash/fp/methodOf.js +5 -0
- node_ui/node_modules/lodash/fp/min.js +5 -0
- node_ui/node_modules/lodash/fp/minBy.js +5 -0
- node_ui/node_modules/lodash/fp/mixin.js +5 -0
- node_ui/node_modules/lodash/fp/multiply.js +5 -0
- node_ui/node_modules/lodash/fp/nAry.js +1 -0
- node_ui/node_modules/lodash/fp/negate.js +5 -0
- node_ui/node_modules/lodash/fp/next.js +5 -0
- node_ui/node_modules/lodash/fp/noop.js +5 -0
- node_ui/node_modules/lodash/fp/now.js +5 -0
- node_ui/node_modules/lodash/fp/nth.js +5 -0
- node_ui/node_modules/lodash/fp/nthArg.js +5 -0
- node_ui/node_modules/lodash/fp/number.js +2 -0
- node_ui/node_modules/lodash/fp/object.js +2 -0
- node_ui/node_modules/lodash/fp/omit.js +5 -0
- node_ui/node_modules/lodash/fp/omitAll.js +1 -0
- node_ui/node_modules/lodash/fp/omitBy.js +5 -0
- node_ui/node_modules/lodash/fp/once.js +5 -0
- node_ui/node_modules/lodash/fp/orderBy.js +5 -0
- node_ui/node_modules/lodash/fp/over.js +5 -0
- node_ui/node_modules/lodash/fp/overArgs.js +5 -0
- node_ui/node_modules/lodash/fp/overEvery.js +5 -0
- node_ui/node_modules/lodash/fp/overSome.js +5 -0
- node_ui/node_modules/lodash/fp/pad.js +5 -0
- node_ui/node_modules/lodash/fp/padChars.js +5 -0
- node_ui/node_modules/lodash/fp/padCharsEnd.js +5 -0
- node_ui/node_modules/lodash/fp/padCharsStart.js +5 -0
- node_ui/node_modules/lodash/fp/padEnd.js +5 -0
- node_ui/node_modules/lodash/fp/padStart.js +5 -0
- node_ui/node_modules/lodash/fp/parseInt.js +5 -0
- node_ui/node_modules/lodash/fp/partial.js +5 -0
- node_ui/node_modules/lodash/fp/partialRight.js +5 -0
- node_ui/node_modules/lodash/fp/partition.js +5 -0
- node_ui/node_modules/lodash/fp/path.js +1 -0
- node_ui/node_modules/lodash/fp/pathEq.js +1 -0
- node_ui/node_modules/lodash/fp/pathOr.js +1 -0
- node_ui/node_modules/lodash/fp/paths.js +1 -0
- node_ui/node_modules/lodash/fp/pick.js +5 -0
- node_ui/node_modules/lodash/fp/pickAll.js +1 -0
- node_ui/node_modules/lodash/fp/pickBy.js +5 -0
- node_ui/node_modules/lodash/fp/pipe.js +1 -0
- node_ui/node_modules/lodash/fp/placeholder.js +6 -0
- node_ui/node_modules/lodash/fp/plant.js +5 -0
- node_ui/node_modules/lodash/fp/pluck.js +1 -0
- node_ui/node_modules/lodash/fp/prop.js +1 -0
- node_ui/node_modules/lodash/fp/propEq.js +1 -0
- node_ui/node_modules/lodash/fp/propOr.js +1 -0
- node_ui/node_modules/lodash/fp/property.js +1 -0
- node_ui/node_modules/lodash/fp/propertyOf.js +5 -0
- node_ui/node_modules/lodash/fp/props.js +1 -0
- node_ui/node_modules/lodash/fp/pull.js +5 -0
- node_ui/node_modules/lodash/fp/pullAll.js +5 -0
- node_ui/node_modules/lodash/fp/pullAllBy.js +5 -0
- node_ui/node_modules/lodash/fp/pullAllWith.js +5 -0
- node_ui/node_modules/lodash/fp/pullAt.js +5 -0
- node_ui/node_modules/lodash/fp/random.js +5 -0
- node_ui/node_modules/lodash/fp/range.js +5 -0
- node_ui/node_modules/lodash/fp/rangeRight.js +5 -0
- node_ui/node_modules/lodash/fp/rangeStep.js +5 -0
- node_ui/node_modules/lodash/fp/rangeStepRight.js +5 -0
- node_ui/node_modules/lodash/fp/rearg.js +5 -0
- node_ui/node_modules/lodash/fp/reduce.js +5 -0
- node_ui/node_modules/lodash/fp/reduceRight.js +5 -0
- node_ui/node_modules/lodash/fp/reject.js +5 -0
- node_ui/node_modules/lodash/fp/remove.js +5 -0
- node_ui/node_modules/lodash/fp/repeat.js +5 -0
- node_ui/node_modules/lodash/fp/replace.js +5 -0
- node_ui/node_modules/lodash/fp/rest.js +5 -0
- node_ui/node_modules/lodash/fp/restFrom.js +5 -0
- node_ui/node_modules/lodash/fp/result.js +5 -0
- node_ui/node_modules/lodash/fp/reverse.js +5 -0
- node_ui/node_modules/lodash/fp/round.js +5 -0
- node_ui/node_modules/lodash/fp/sample.js +5 -0
- node_ui/node_modules/lodash/fp/sampleSize.js +5 -0
- node_ui/node_modules/lodash/fp/seq.js +2 -0
- node_ui/node_modules/lodash/fp/set.js +5 -0
- node_ui/node_modules/lodash/fp/setWith.js +5 -0
- node_ui/node_modules/lodash/fp/shuffle.js +5 -0
- node_ui/node_modules/lodash/fp/size.js +5 -0
- node_ui/node_modules/lodash/fp/slice.js +5 -0
- node_ui/node_modules/lodash/fp/snakeCase.js +5 -0
- node_ui/node_modules/lodash/fp/some.js +5 -0
- node_ui/node_modules/lodash/fp/sortBy.js +5 -0
- node_ui/node_modules/lodash/fp/sortedIndex.js +5 -0
- node_ui/node_modules/lodash/fp/sortedIndexBy.js +5 -0
- node_ui/node_modules/lodash/fp/sortedIndexOf.js +5 -0
- node_ui/node_modules/lodash/fp/sortedLastIndex.js +5 -0
- node_ui/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
- node_ui/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
- node_ui/node_modules/lodash/fp/sortedUniq.js +5 -0
- node_ui/node_modules/lodash/fp/sortedUniqBy.js +5 -0
- node_ui/node_modules/lodash/fp/split.js +5 -0
- node_ui/node_modules/lodash/fp/spread.js +5 -0
- node_ui/node_modules/lodash/fp/spreadFrom.js +5 -0
- node_ui/node_modules/lodash/fp/startCase.js +5 -0
- node_ui/node_modules/lodash/fp/startsWith.js +5 -0
- node_ui/node_modules/lodash/fp/string.js +2 -0
- node_ui/node_modules/lodash/fp/stubArray.js +5 -0
- node_ui/node_modules/lodash/fp/stubFalse.js +5 -0
- node_ui/node_modules/lodash/fp/stubObject.js +5 -0
- node_ui/node_modules/lodash/fp/stubString.js +5 -0
- node_ui/node_modules/lodash/fp/stubTrue.js +5 -0
- node_ui/node_modules/lodash/fp/subtract.js +5 -0
- node_ui/node_modules/lodash/fp/sum.js +5 -0
- node_ui/node_modules/lodash/fp/sumBy.js +5 -0
- node_ui/node_modules/lodash/fp/symmetricDifference.js +1 -0
- node_ui/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
- node_ui/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
- node_ui/node_modules/lodash/fp/tail.js +5 -0
- node_ui/node_modules/lodash/fp/take.js +5 -0
- node_ui/node_modules/lodash/fp/takeLast.js +1 -0
- node_ui/node_modules/lodash/fp/takeLastWhile.js +1 -0
- node_ui/node_modules/lodash/fp/takeRight.js +5 -0
- node_ui/node_modules/lodash/fp/takeRightWhile.js +5 -0
- node_ui/node_modules/lodash/fp/takeWhile.js +5 -0
- node_ui/node_modules/lodash/fp/tap.js +5 -0
- node_ui/node_modules/lodash/fp/template.js +5 -0
- node_ui/node_modules/lodash/fp/templateSettings.js +5 -0
- node_ui/node_modules/lodash/fp/throttle.js +5 -0
- node_ui/node_modules/lodash/fp/thru.js +5 -0
- node_ui/node_modules/lodash/fp/times.js +5 -0
- node_ui/node_modules/lodash/fp/toArray.js +5 -0
- node_ui/node_modules/lodash/fp/toFinite.js +5 -0
- node_ui/node_modules/lodash/fp/toInteger.js +5 -0
- node_ui/node_modules/lodash/fp/toIterator.js +5 -0
- node_ui/node_modules/lodash/fp/toJSON.js +5 -0
- node_ui/node_modules/lodash/fp/toLength.js +5 -0
- node_ui/node_modules/lodash/fp/toLower.js +5 -0
- node_ui/node_modules/lodash/fp/toNumber.js +5 -0
- node_ui/node_modules/lodash/fp/toPairs.js +5 -0
- node_ui/node_modules/lodash/fp/toPairsIn.js +5 -0
- node_ui/node_modules/lodash/fp/toPath.js +5 -0
- node_ui/node_modules/lodash/fp/toPlainObject.js +5 -0
- node_ui/node_modules/lodash/fp/toSafeInteger.js +5 -0
- node_ui/node_modules/lodash/fp/toString.js +5 -0
- node_ui/node_modules/lodash/fp/toUpper.js +5 -0
- node_ui/node_modules/lodash/fp/transform.js +5 -0
- node_ui/node_modules/lodash/fp/trim.js +5 -0
- node_ui/node_modules/lodash/fp/trimChars.js +5 -0
- node_ui/node_modules/lodash/fp/trimCharsEnd.js +5 -0
- node_ui/node_modules/lodash/fp/trimCharsStart.js +5 -0
- node_ui/node_modules/lodash/fp/trimEnd.js +5 -0
- node_ui/node_modules/lodash/fp/trimStart.js +5 -0
- node_ui/node_modules/lodash/fp/truncate.js +5 -0
- node_ui/node_modules/lodash/fp/unapply.js +1 -0
- node_ui/node_modules/lodash/fp/unary.js +5 -0
- node_ui/node_modules/lodash/fp/unescape.js +5 -0
- node_ui/node_modules/lodash/fp/union.js +5 -0
- node_ui/node_modules/lodash/fp/unionBy.js +5 -0
- node_ui/node_modules/lodash/fp/unionWith.js +5 -0
- node_ui/node_modules/lodash/fp/uniq.js +5 -0
- node_ui/node_modules/lodash/fp/uniqBy.js +5 -0
- node_ui/node_modules/lodash/fp/uniqWith.js +5 -0
- node_ui/node_modules/lodash/fp/uniqueId.js +5 -0
- node_ui/node_modules/lodash/fp/unnest.js +1 -0
- node_ui/node_modules/lodash/fp/unset.js +5 -0
- node_ui/node_modules/lodash/fp/unzip.js +5 -0
- node_ui/node_modules/lodash/fp/unzipWith.js +5 -0
- node_ui/node_modules/lodash/fp/update.js +5 -0
- node_ui/node_modules/lodash/fp/updateWith.js +5 -0
- node_ui/node_modules/lodash/fp/upperCase.js +5 -0
- node_ui/node_modules/lodash/fp/upperFirst.js +5 -0
- node_ui/node_modules/lodash/fp/useWith.js +1 -0
- node_ui/node_modules/lodash/fp/util.js +2 -0
- node_ui/node_modules/lodash/fp/value.js +5 -0
- node_ui/node_modules/lodash/fp/valueOf.js +5 -0
- node_ui/node_modules/lodash/fp/values.js +5 -0
- node_ui/node_modules/lodash/fp/valuesIn.js +5 -0
- node_ui/node_modules/lodash/fp/where.js +1 -0
- node_ui/node_modules/lodash/fp/whereEq.js +1 -0
- node_ui/node_modules/lodash/fp/without.js +5 -0
- node_ui/node_modules/lodash/fp/words.js +5 -0
- node_ui/node_modules/lodash/fp/wrap.js +5 -0
- node_ui/node_modules/lodash/fp/wrapperAt.js +5 -0
- node_ui/node_modules/lodash/fp/wrapperChain.js +5 -0
- node_ui/node_modules/lodash/fp/wrapperLodash.js +5 -0
- node_ui/node_modules/lodash/fp/wrapperReverse.js +5 -0
- node_ui/node_modules/lodash/fp/wrapperValue.js +5 -0
- node_ui/node_modules/lodash/fp/xor.js +5 -0
- node_ui/node_modules/lodash/fp/xorBy.js +5 -0
- node_ui/node_modules/lodash/fp/xorWith.js +5 -0
- node_ui/node_modules/lodash/fp/zip.js +5 -0
- node_ui/node_modules/lodash/fp/zipAll.js +5 -0
- node_ui/node_modules/lodash/fp/zipObj.js +1 -0
- node_ui/node_modules/lodash/fp/zipObject.js +5 -0
- node_ui/node_modules/lodash/fp/zipObjectDeep.js +5 -0
- node_ui/node_modules/lodash/fp/zipWith.js +5 -0
- node_ui/node_modules/lodash/fp.js +2 -0
- node_ui/node_modules/lodash/fromPairs.js +28 -0
- node_ui/node_modules/lodash/function.js +25 -0
- node_ui/node_modules/lodash/functions.js +31 -0
- node_ui/node_modules/lodash/functionsIn.js +31 -0
- node_ui/node_modules/lodash/get.js +33 -0
- node_ui/node_modules/lodash/groupBy.js +41 -0
- node_ui/node_modules/lodash/gt.js +29 -0
- node_ui/node_modules/lodash/gte.js +30 -0
- node_ui/node_modules/lodash/has.js +35 -0
- node_ui/node_modules/lodash/hasIn.js +34 -0
- node_ui/node_modules/lodash/head.js +23 -0
- node_ui/node_modules/lodash/identity.js +21 -0
- node_ui/node_modules/lodash/inRange.js +55 -0
- node_ui/node_modules/lodash/includes.js +53 -0
- node_ui/node_modules/lodash/index.js +1 -0
- node_ui/node_modules/lodash/indexOf.js +42 -0
- node_ui/node_modules/lodash/initial.js +22 -0
- node_ui/node_modules/lodash/intersection.js +30 -0
- node_ui/node_modules/lodash/intersectionBy.js +45 -0
- node_ui/node_modules/lodash/intersectionWith.js +41 -0
- node_ui/node_modules/lodash/invert.js +42 -0
- node_ui/node_modules/lodash/invertBy.js +56 -0
- node_ui/node_modules/lodash/invoke.js +24 -0
- node_ui/node_modules/lodash/invokeMap.js +41 -0
- node_ui/node_modules/lodash/isArguments.js +36 -0
- node_ui/node_modules/lodash/isArray.js +26 -0
- node_ui/node_modules/lodash/isArrayBuffer.js +27 -0
- node_ui/node_modules/lodash/isArrayLike.js +33 -0
- node_ui/node_modules/lodash/isArrayLikeObject.js +33 -0
- node_ui/node_modules/lodash/isBoolean.js +29 -0
- node_ui/node_modules/lodash/isBuffer.js +38 -0
- node_ui/node_modules/lodash/isDate.js +27 -0
- node_ui/node_modules/lodash/isElement.js +25 -0
- node_ui/node_modules/lodash/isEmpty.js +77 -0
- node_ui/node_modules/lodash/isEqual.js +35 -0
- node_ui/node_modules/lodash/isEqualWith.js +41 -0
- node_ui/node_modules/lodash/isError.js +36 -0
- node_ui/node_modules/lodash/isFinite.js +36 -0
- node_ui/node_modules/lodash/isFunction.js +37 -0
- node_ui/node_modules/lodash/isInteger.js +33 -0
- node_ui/node_modules/lodash/isLength.js +35 -0
- node_ui/node_modules/lodash/isMap.js +27 -0
- node_ui/node_modules/lodash/isMatch.js +36 -0
- node_ui/node_modules/lodash/isMatchWith.js +41 -0
- node_ui/node_modules/lodash/isNaN.js +38 -0
- node_ui/node_modules/lodash/isNative.js +40 -0
- node_ui/node_modules/lodash/isNil.js +25 -0
- node_ui/node_modules/lodash/isNull.js +22 -0
- node_ui/node_modules/lodash/isNumber.js +38 -0
- node_ui/node_modules/lodash/isObject.js +31 -0
- node_ui/node_modules/lodash/isObjectLike.js +29 -0
- node_ui/node_modules/lodash/isPlainObject.js +62 -0
- node_ui/node_modules/lodash/isRegExp.js +27 -0
- node_ui/node_modules/lodash/isSafeInteger.js +37 -0
- node_ui/node_modules/lodash/isSet.js +27 -0
- node_ui/node_modules/lodash/isString.js +30 -0
- node_ui/node_modules/lodash/isSymbol.js +29 -0
- node_ui/node_modules/lodash/isTypedArray.js +27 -0
- node_ui/node_modules/lodash/isUndefined.js +22 -0
- node_ui/node_modules/lodash/isWeakMap.js +28 -0
- node_ui/node_modules/lodash/isWeakSet.js +28 -0
- node_ui/node_modules/lodash/iteratee.js +53 -0
- node_ui/node_modules/lodash/join.js +26 -0
- node_ui/node_modules/lodash/kebabCase.js +28 -0
- node_ui/node_modules/lodash/keyBy.js +36 -0
- node_ui/node_modules/lodash/keys.js +37 -0
- node_ui/node_modules/lodash/keysIn.js +32 -0
- node_ui/node_modules/lodash/lang.js +58 -0
- node_ui/node_modules/lodash/last.js +20 -0
- node_ui/node_modules/lodash/lastIndexOf.js +46 -0
- node_ui/node_modules/lodash/lodash.js +17209 -0
- node_ui/node_modules/lodash/lodash.min.js +140 -0
- node_ui/node_modules/lodash/lowerCase.js +27 -0
- node_ui/node_modules/lodash/lowerFirst.js +22 -0
- node_ui/node_modules/lodash/lt.js +29 -0
- node_ui/node_modules/lodash/lte.js +30 -0
- node_ui/node_modules/lodash/map.js +53 -0
- node_ui/node_modules/lodash/mapKeys.js +36 -0
- node_ui/node_modules/lodash/mapValues.js +43 -0
- node_ui/node_modules/lodash/matches.js +46 -0
- node_ui/node_modules/lodash/matchesProperty.js +44 -0
- node_ui/node_modules/lodash/math.js +17 -0
- node_ui/node_modules/lodash/max.js +29 -0
- node_ui/node_modules/lodash/maxBy.js +34 -0
- node_ui/node_modules/lodash/mean.js +22 -0
- node_ui/node_modules/lodash/meanBy.js +31 -0
- node_ui/node_modules/lodash/memoize.js +73 -0
- node_ui/node_modules/lodash/merge.js +39 -0
- node_ui/node_modules/lodash/mergeWith.js +39 -0
- node_ui/node_modules/lodash/method.js +34 -0
- node_ui/node_modules/lodash/methodOf.js +33 -0
- node_ui/node_modules/lodash/min.js +29 -0
- node_ui/node_modules/lodash/minBy.js +34 -0
- node_ui/node_modules/lodash/mixin.js +74 -0
- node_ui/node_modules/lodash/multiply.js +22 -0
- node_ui/node_modules/lodash/negate.js +40 -0
- node_ui/node_modules/lodash/next.js +35 -0
- node_ui/node_modules/lodash/noop.js +17 -0
- node_ui/node_modules/lodash/now.js +23 -0
- node_ui/node_modules/lodash/nth.js +29 -0
- node_ui/node_modules/lodash/nthArg.js +32 -0
- node_ui/node_modules/lodash/number.js +5 -0
- node_ui/node_modules/lodash/object.js +49 -0
- node_ui/node_modules/lodash/omit.js +57 -0
- node_ui/node_modules/lodash/omitBy.js +29 -0
- node_ui/node_modules/lodash/once.js +25 -0
- node_ui/node_modules/lodash/orderBy.js +47 -0
- node_ui/node_modules/lodash/over.js +24 -0
- node_ui/node_modules/lodash/overArgs.js +61 -0
- node_ui/node_modules/lodash/overEvery.js +34 -0
- node_ui/node_modules/lodash/overSome.js +37 -0
- node_ui/node_modules/lodash/package.json +17 -0
- node_ui/node_modules/lodash/pad.js +49 -0
- node_ui/node_modules/lodash/padEnd.js +39 -0
- node_ui/node_modules/lodash/padStart.js +39 -0
- node_ui/node_modules/lodash/parseInt.js +43 -0
- node_ui/node_modules/lodash/partial.js +50 -0
- node_ui/node_modules/lodash/partialRight.js +49 -0
- node_ui/node_modules/lodash/partition.js +43 -0
- node_ui/node_modules/lodash/pick.js +25 -0
- node_ui/node_modules/lodash/pickBy.js +37 -0
- node_ui/node_modules/lodash/plant.js +48 -0
- node_ui/node_modules/lodash/property.js +32 -0
- node_ui/node_modules/lodash/propertyOf.js +30 -0
- node_ui/node_modules/lodash/pull.js +29 -0
- node_ui/node_modules/lodash/pullAll.js +29 -0
- node_ui/node_modules/lodash/pullAllBy.js +33 -0
- node_ui/node_modules/lodash/pullAllWith.js +32 -0
- node_ui/node_modules/lodash/pullAt.js +43 -0
- node_ui/node_modules/lodash/random.js +82 -0
- node_ui/node_modules/lodash/range.js +46 -0
- node_ui/node_modules/lodash/rangeRight.js +41 -0
- node_ui/node_modules/lodash/rearg.js +33 -0
- node_ui/node_modules/lodash/reduce.js +51 -0
- node_ui/node_modules/lodash/reduceRight.js +36 -0
- node_ui/node_modules/lodash/reject.js +46 -0
- node_ui/node_modules/lodash/release.md +48 -0
- node_ui/node_modules/lodash/remove.js +53 -0
- node_ui/node_modules/lodash/repeat.js +37 -0
- node_ui/node_modules/lodash/replace.js +29 -0
- node_ui/node_modules/lodash/rest.js +40 -0
- node_ui/node_modules/lodash/result.js +56 -0
- node_ui/node_modules/lodash/reverse.js +34 -0
- node_ui/node_modules/lodash/round.js +26 -0
- node_ui/node_modules/lodash/sample.js +24 -0
- node_ui/node_modules/lodash/sampleSize.js +37 -0
- node_ui/node_modules/lodash/seq.js +16 -0
- node_ui/node_modules/lodash/set.js +35 -0
- node_ui/node_modules/lodash/setWith.js +32 -0
- node_ui/node_modules/lodash/shuffle.js +25 -0
- node_ui/node_modules/lodash/size.js +46 -0
- node_ui/node_modules/lodash/slice.js +37 -0
- node_ui/node_modules/lodash/snakeCase.js +28 -0
- node_ui/node_modules/lodash/some.js +51 -0
- node_ui/node_modules/lodash/sortBy.js +48 -0
- node_ui/node_modules/lodash/sortedIndex.js +24 -0
- node_ui/node_modules/lodash/sortedIndexBy.js +33 -0
- node_ui/node_modules/lodash/sortedIndexOf.js +31 -0
- node_ui/node_modules/lodash/sortedLastIndex.js +25 -0
- node_ui/node_modules/lodash/sortedLastIndexBy.js +33 -0
- node_ui/node_modules/lodash/sortedLastIndexOf.js +31 -0
- node_ui/node_modules/lodash/sortedUniq.js +24 -0
- node_ui/node_modules/lodash/sortedUniqBy.js +26 -0
- node_ui/node_modules/lodash/split.js +52 -0
- node_ui/node_modules/lodash/spread.js +63 -0
- node_ui/node_modules/lodash/startCase.js +29 -0
- node_ui/node_modules/lodash/startsWith.js +39 -0
- node_ui/node_modules/lodash/string.js +33 -0
- node_ui/node_modules/lodash/stubArray.js +23 -0
- node_ui/node_modules/lodash/stubFalse.js +18 -0
- node_ui/node_modules/lodash/stubObject.js +23 -0
- node_ui/node_modules/lodash/stubString.js +18 -0
- node_ui/node_modules/lodash/stubTrue.js +18 -0
- node_ui/node_modules/lodash/subtract.js +22 -0
- node_ui/node_modules/lodash/sum.js +24 -0
- node_ui/node_modules/lodash/sumBy.js +33 -0
- node_ui/node_modules/lodash/tail.js +22 -0
- node_ui/node_modules/lodash/take.js +37 -0
- node_ui/node_modules/lodash/takeRight.js +39 -0
- node_ui/node_modules/lodash/takeRightWhile.js +45 -0
- node_ui/node_modules/lodash/takeWhile.js +45 -0
- node_ui/node_modules/lodash/tap.js +29 -0
- node_ui/node_modules/lodash/template.js +272 -0
- node_ui/node_modules/lodash/templateSettings.js +67 -0
- node_ui/node_modules/lodash/throttle.js +69 -0
- node_ui/node_modules/lodash/thru.js +28 -0
- node_ui/node_modules/lodash/times.js +51 -0
- node_ui/node_modules/lodash/toArray.js +58 -0
- node_ui/node_modules/lodash/toFinite.js +42 -0
- node_ui/node_modules/lodash/toInteger.js +36 -0
- node_ui/node_modules/lodash/toIterator.js +23 -0
- node_ui/node_modules/lodash/toJSON.js +1 -0
- node_ui/node_modules/lodash/toLength.js +38 -0
- node_ui/node_modules/lodash/toLower.js +28 -0
- node_ui/node_modules/lodash/toNumber.js +64 -0
- node_ui/node_modules/lodash/toPairs.js +30 -0
- node_ui/node_modules/lodash/toPairsIn.js +30 -0
- node_ui/node_modules/lodash/toPath.js +33 -0
- node_ui/node_modules/lodash/toPlainObject.js +32 -0
- node_ui/node_modules/lodash/toSafeInteger.js +37 -0
- node_ui/node_modules/lodash/toString.js +28 -0
- node_ui/node_modules/lodash/toUpper.js +28 -0
- node_ui/node_modules/lodash/transform.js +65 -0
- node_ui/node_modules/lodash/trim.js +47 -0
- node_ui/node_modules/lodash/trimEnd.js +41 -0
- node_ui/node_modules/lodash/trimStart.js +43 -0
- node_ui/node_modules/lodash/truncate.js +111 -0
- node_ui/node_modules/lodash/unary.js +22 -0
- node_ui/node_modules/lodash/unescape.js +34 -0
- node_ui/node_modules/lodash/union.js +26 -0
- node_ui/node_modules/lodash/unionBy.js +39 -0
- node_ui/node_modules/lodash/unionWith.js +34 -0
- node_ui/node_modules/lodash/uniq.js +25 -0
- node_ui/node_modules/lodash/uniqBy.js +31 -0
- node_ui/node_modules/lodash/uniqWith.js +28 -0
- node_ui/node_modules/lodash/uniqueId.js +28 -0
- node_ui/node_modules/lodash/unset.js +34 -0
- node_ui/node_modules/lodash/unzip.js +45 -0
- node_ui/node_modules/lodash/unzipWith.js +39 -0
- node_ui/node_modules/lodash/update.js +35 -0
- node_ui/node_modules/lodash/updateWith.js +33 -0
- node_ui/node_modules/lodash/upperCase.js +27 -0
- node_ui/node_modules/lodash/upperFirst.js +22 -0
- node_ui/node_modules/lodash/util.js +34 -0
- node_ui/node_modules/lodash/value.js +1 -0
- node_ui/node_modules/lodash/valueOf.js +1 -0
- node_ui/node_modules/lodash/values.js +34 -0
- node_ui/node_modules/lodash/valuesIn.js +32 -0
- node_ui/node_modules/lodash/without.js +31 -0
- node_ui/node_modules/lodash/words.js +35 -0
- node_ui/node_modules/lodash/wrap.js +30 -0
- node_ui/node_modules/lodash/wrapperAt.js +48 -0
- node_ui/node_modules/lodash/wrapperChain.js +34 -0
- node_ui/node_modules/lodash/wrapperLodash.js +147 -0
- node_ui/node_modules/lodash/wrapperReverse.js +44 -0
- node_ui/node_modules/lodash/wrapperValue.js +21 -0
- node_ui/node_modules/lodash/xor.js +28 -0
- node_ui/node_modules/lodash/xorBy.js +39 -0
- node_ui/node_modules/lodash/xorWith.js +34 -0
- node_ui/node_modules/lodash/zip.js +22 -0
- node_ui/node_modules/lodash/zipObject.js +24 -0
- node_ui/node_modules/lodash/zipObjectDeep.js +23 -0
- node_ui/node_modules/lodash/zipWith.js +32 -0
- node_ui/node_modules/lodash.isequal/LICENSE +47 -0
- node_ui/node_modules/lodash.isequal/README.md +18 -0
- node_ui/node_modules/lodash.isequal/index.js +1848 -0
- node_ui/node_modules/lodash.isequal/package.json +16 -0
- node_ui/node_modules/loose-envify/LICENSE +21 -0
- node_ui/node_modules/loose-envify/README.md +45 -0
- node_ui/node_modules/loose-envify/cli.js +16 -0
- node_ui/node_modules/loose-envify/custom.js +4 -0
- node_ui/node_modules/loose-envify/index.js +3 -0
- node_ui/node_modules/loose-envify/loose-envify.js +36 -0
- node_ui/node_modules/loose-envify/package.json +36 -0
- node_ui/node_modules/loose-envify/replace.js +65 -0
- node_ui/node_modules/meow/build/dependencies.js +8828 -0
- node_ui/node_modules/meow/build/index.d.ts +1425 -0
- node_ui/node_modules/meow/build/index.js +95 -0
- node_ui/node_modules/meow/build/licenses.md +1620 -0
- node_ui/node_modules/meow/build/options.js +92 -0
- node_ui/node_modules/meow/build/parser.js +84 -0
- node_ui/node_modules/meow/build/utils.js +7 -0
- node_ui/node_modules/meow/build/validate.js +122 -0
- node_ui/node_modules/meow/license +9 -0
- node_ui/node_modules/meow/package.json +105 -0
- node_ui/node_modules/meow/readme.md +314 -0
- node_ui/node_modules/mimic-fn/index.d.ts +54 -0
- node_ui/node_modules/mimic-fn/index.js +13 -0
- node_ui/node_modules/mimic-fn/license +9 -0
- node_ui/node_modules/mimic-fn/package.json +42 -0
- node_ui/node_modules/mimic-fn/readme.md +69 -0
- node_ui/node_modules/onetime/index.d.ts +64 -0
- node_ui/node_modules/onetime/index.js +44 -0
- node_ui/node_modules/onetime/license +9 -0
- node_ui/node_modules/onetime/package.json +43 -0
- node_ui/node_modules/onetime/readme.md +94 -0
- node_ui/node_modules/patch-console/dist/index.d.ts +4 -0
- node_ui/node_modules/patch-console/dist/index.js +45 -0
- node_ui/node_modules/patch-console/dist/index.js.map +1 -0
- node_ui/node_modules/patch-console/license +9 -0
- node_ui/node_modules/patch-console/package.json +53 -0
- node_ui/node_modules/patch-console/readme.md +62 -0
- node_ui/node_modules/react/LICENSE +21 -0
- node_ui/node_modules/react/README.md +37 -0
- node_ui/node_modules/react/cjs/react-jsx-dev-runtime.development.js +1315 -0
- node_ui/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +10 -0
- node_ui/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +10 -0
- node_ui/node_modules/react/cjs/react-jsx-runtime.development.js +1333 -0
- node_ui/node_modules/react/cjs/react-jsx-runtime.production.min.js +11 -0
- node_ui/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +11 -0
- node_ui/node_modules/react/cjs/react.development.js +2740 -0
- node_ui/node_modules/react/cjs/react.production.min.js +26 -0
- node_ui/node_modules/react/cjs/react.shared-subset.development.js +20 -0
- node_ui/node_modules/react/cjs/react.shared-subset.production.min.js +10 -0
- node_ui/node_modules/react/index.js +7 -0
- node_ui/node_modules/react/jsx-dev-runtime.js +7 -0
- node_ui/node_modules/react/jsx-runtime.js +7 -0
- node_ui/node_modules/react/package.json +47 -0
- node_ui/node_modules/react/react.shared-subset.js +7 -0
- node_ui/node_modules/react/umd/react.development.js +3343 -0
- node_ui/node_modules/react/umd/react.production.min.js +31 -0
- node_ui/node_modules/react/umd/react.profiling.min.js +31 -0
- node_ui/node_modules/react-devtools-core/README.md +131 -0
- node_ui/node_modules/react-devtools-core/backend.js +1 -0
- node_ui/node_modules/react-devtools-core/dist/backend.js +16888 -0
- node_ui/node_modules/react-devtools-core/dist/backend.js.map +1 -0
- node_ui/node_modules/react-devtools-core/dist/importFile.worker.worker.js +2 -0
- node_ui/node_modules/react-devtools-core/dist/importFile.worker.worker.js.map +1 -0
- node_ui/node_modules/react-devtools-core/dist/parseHookNames.chunk.js +2 -0
- node_ui/node_modules/react-devtools-core/dist/parseHookNames.chunk.js.map +1 -0
- node_ui/node_modules/react-devtools-core/dist/parseSourceAndMetadata.worker.worker.js +2 -0
- node_ui/node_modules/react-devtools-core/dist/parseSourceAndMetadata.worker.worker.js.map +1 -0
- node_ui/node_modules/react-devtools-core/dist/standalone.js +3 -0
- node_ui/node_modules/react-devtools-core/dist/standalone.js.LICENSE.txt +41 -0
- node_ui/node_modules/react-devtools-core/dist/standalone.js.map +1 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/LICENSE +21 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/README.md +495 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/browser.js +8 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/index.js +10 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/buffer-util.js +129 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/constants.js +10 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/event-target.js +184 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/extension.js +223 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/limiter.js +55 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/permessage-deflate.js +518 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/receiver.js +607 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/sender.js +409 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/stream.js +180 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/validation.js +104 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/websocket-server.js +449 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/lib/websocket.js +1197 -0
- node_ui/node_modules/react-devtools-core/node_modules/ws/package.json +56 -0
- node_ui/node_modules/react-devtools-core/package.json +38 -0
- node_ui/node_modules/react-devtools-core/standalone.js +1 -0
- node_ui/node_modules/react-reconciler/LICENSE +21 -0
- node_ui/node_modules/react-reconciler/README.md +337 -0
- node_ui/node_modules/react-reconciler/cjs/react-reconciler-constants.development.js +45 -0
- node_ui/node_modules/react-reconciler/cjs/react-reconciler-constants.production.min.js +10 -0
- node_ui/node_modules/react-reconciler/cjs/react-reconciler-reflection.development.js +660 -0
- node_ui/node_modules/react-reconciler/cjs/react-reconciler-reflection.production.min.js +15 -0
- node_ui/node_modules/react-reconciler/cjs/react-reconciler.development.js +21531 -0
- node_ui/node_modules/react-reconciler/cjs/react-reconciler.production.min.js +234 -0
- node_ui/node_modules/react-reconciler/cjs/react-reconciler.profiling.min.js +255 -0
- node_ui/node_modules/react-reconciler/constants.js +7 -0
- node_ui/node_modules/react-reconciler/index.js +7 -0
- node_ui/node_modules/react-reconciler/package.json +40 -0
- node_ui/node_modules/react-reconciler/reflection.js +7 -0
- node_ui/node_modules/restore-cursor/index.d.ts +11 -0
- node_ui/node_modules/restore-cursor/index.js +11 -0
- node_ui/node_modules/restore-cursor/license +9 -0
- node_ui/node_modules/restore-cursor/package.json +55 -0
- node_ui/node_modules/restore-cursor/readme.md +31 -0
- node_ui/node_modules/scheduler/LICENSE +21 -0
- node_ui/node_modules/scheduler/README.md +9 -0
- node_ui/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +700 -0
- node_ui/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +20 -0
- node_ui/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +207 -0
- node_ui/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +14 -0
- node_ui/node_modules/scheduler/cjs/scheduler.development.js +634 -0
- node_ui/node_modules/scheduler/cjs/scheduler.production.min.js +19 -0
- node_ui/node_modules/scheduler/index.js +7 -0
- node_ui/node_modules/scheduler/package.json +36 -0
- node_ui/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +699 -0
- node_ui/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +19 -0
- node_ui/node_modules/scheduler/umd/scheduler.development.js +152 -0
- node_ui/node_modules/scheduler/umd/scheduler.production.min.js +146 -0
- node_ui/node_modules/scheduler/umd/scheduler.profiling.min.js +146 -0
- node_ui/node_modules/scheduler/unstable_mock.js +7 -0
- node_ui/node_modules/scheduler/unstable_post_task.js +7 -0
- node_ui/node_modules/shell-quote/.eslintrc +30 -0
- node_ui/node_modules/shell-quote/.github/FUNDING.yml +12 -0
- node_ui/node_modules/shell-quote/.nycrc +14 -0
- node_ui/node_modules/shell-quote/LICENSE +24 -0
- node_ui/node_modules/shell-quote/README.md +161 -0
- node_ui/node_modules/shell-quote/index.js +4 -0
- node_ui/node_modules/shell-quote/package.json +72 -0
- node_ui/node_modules/shell-quote/parse.js +226 -0
- node_ui/node_modules/shell-quote/print.py +3 -0
- node_ui/node_modules/shell-quote/quote.js +19 -0
- node_ui/node_modules/shell-quote/security.md +11 -0
- node_ui/node_modules/shell-quote/test/comment.js +16 -0
- node_ui/node_modules/shell-quote/test/env.js +52 -0
- node_ui/node_modules/shell-quote/test/env_fn.js +21 -0
- node_ui/node_modules/shell-quote/test/op.js +102 -0
- node_ui/node_modules/shell-quote/test/parse.js +44 -0
- node_ui/node_modules/shell-quote/test/quote.js +60 -0
- node_ui/node_modules/shell-quote/test/set.js +31 -0
- node_ui/node_modules/signal-exit/LICENSE.txt +16 -0
- node_ui/node_modules/signal-exit/README.md +39 -0
- node_ui/node_modules/signal-exit/index.js +202 -0
- node_ui/node_modules/signal-exit/package.json +38 -0
- node_ui/node_modules/signal-exit/signals.js +53 -0
- node_ui/node_modules/slice-ansi/index.d.ts +19 -0
- node_ui/node_modules/slice-ansi/index.js +169 -0
- node_ui/node_modules/slice-ansi/license +10 -0
- node_ui/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- node_ui/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/index.js +12 -0
- node_ui/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/license +9 -0
- node_ui/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/package.json +53 -0
- node_ui/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/readme.md +31 -0
- node_ui/node_modules/slice-ansi/package.json +58 -0
- node_ui/node_modules/slice-ansi/readme.md +54 -0
- node_ui/node_modules/stack-utils/LICENSE.md +21 -0
- node_ui/node_modules/stack-utils/index.js +344 -0
- node_ui/node_modules/stack-utils/node_modules/escape-string-regexp/index.d.ts +18 -0
- node_ui/node_modules/stack-utils/node_modules/escape-string-regexp/index.js +11 -0
- node_ui/node_modules/stack-utils/node_modules/escape-string-regexp/license +9 -0
- node_ui/node_modules/stack-utils/node_modules/escape-string-regexp/package.json +43 -0
- node_ui/node_modules/stack-utils/node_modules/escape-string-regexp/readme.md +29 -0
- node_ui/node_modules/stack-utils/package.json +39 -0
- node_ui/node_modules/stack-utils/readme.md +143 -0
- node_ui/node_modules/string-width/index.d.ts +39 -0
- node_ui/node_modules/string-width/index.js +82 -0
- node_ui/node_modules/string-width/license +9 -0
- node_ui/node_modules/string-width/package.json +64 -0
- node_ui/node_modules/string-width/readme.md +66 -0
- node_ui/node_modules/strip-ansi/index.d.ts +15 -0
- node_ui/node_modules/strip-ansi/index.js +14 -0
- node_ui/node_modules/strip-ansi/license +9 -0
- node_ui/node_modules/strip-ansi/package.json +59 -0
- node_ui/node_modules/strip-ansi/readme.md +37 -0
- node_ui/node_modules/to-rotated/index.d.ts +18 -0
- node_ui/node_modules/to-rotated/index.js +24 -0
- node_ui/node_modules/to-rotated/license +9 -0
- node_ui/node_modules/to-rotated/package.json +46 -0
- node_ui/node_modules/to-rotated/readme.md +29 -0
- node_ui/node_modules/type-fest/index.d.ts +178 -0
- node_ui/node_modules/type-fest/license-cc0 +121 -0
- node_ui/node_modules/type-fest/license-mit +9 -0
- node_ui/node_modules/type-fest/package.json +91 -0
- node_ui/node_modules/type-fest/readme.md +1060 -0
- node_ui/node_modules/type-fest/source/all-union-fields.d.ts +88 -0
- node_ui/node_modules/type-fest/source/and.d.ts +25 -0
- node_ui/node_modules/type-fest/source/array-indices.d.ts +23 -0
- node_ui/node_modules/type-fest/source/array-slice.d.ts +109 -0
- node_ui/node_modules/type-fest/source/array-splice.d.ts +99 -0
- node_ui/node_modules/type-fest/source/array-tail.d.ts +76 -0
- node_ui/node_modules/type-fest/source/array-values.d.ts +22 -0
- node_ui/node_modules/type-fest/source/arrayable.d.ts +29 -0
- node_ui/node_modules/type-fest/source/async-return-type.d.ts +23 -0
- node_ui/node_modules/type-fest/source/asyncify.d.ts +32 -0
- node_ui/node_modules/type-fest/source/basic.d.ts +68 -0
- node_ui/node_modules/type-fest/source/camel-case.d.ts +89 -0
- node_ui/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +97 -0
- node_ui/node_modules/type-fest/source/camel-cased-properties.d.ts +43 -0
- node_ui/node_modules/type-fest/source/conditional-except.d.ts +45 -0
- node_ui/node_modules/type-fest/source/conditional-keys.d.ts +47 -0
- node_ui/node_modules/type-fest/source/conditional-pick-deep.d.ts +118 -0
- node_ui/node_modules/type-fest/source/conditional-pick.d.ts +44 -0
- node_ui/node_modules/type-fest/source/conditional-simplify.d.ts +32 -0
- node_ui/node_modules/type-fest/source/delimiter-case.d.ts +78 -0
- node_ui/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +106 -0
- node_ui/node_modules/type-fest/source/delimiter-cased-properties.d.ts +46 -0
- node_ui/node_modules/type-fest/source/distributed-omit.d.ts +89 -0
- node_ui/node_modules/type-fest/source/distributed-pick.d.ts +85 -0
- node_ui/node_modules/type-fest/source/empty-object.d.ts +46 -0
- node_ui/node_modules/type-fest/source/enforce-optional.d.ts +47 -0
- node_ui/node_modules/type-fest/source/entries.d.ts +62 -0
- node_ui/node_modules/type-fest/source/entry.d.ts +65 -0
- node_ui/node_modules/type-fest/source/exact.d.ts +68 -0
- node_ui/node_modules/type-fest/source/except.d.ts +108 -0
- node_ui/node_modules/type-fest/source/find-global-type.d.ts +64 -0
- node_ui/node_modules/type-fest/source/fixed-length-array.d.ts +43 -0
- node_ui/node_modules/type-fest/source/get.d.ts +219 -0
- node_ui/node_modules/type-fest/source/global-this.d.ts +21 -0
- node_ui/node_modules/type-fest/source/greater-than-or-equal.d.ts +22 -0
- node_ui/node_modules/type-fest/source/greater-than.d.ts +56 -0
- node_ui/node_modules/type-fest/source/has-optional-keys.d.ts +21 -0
- node_ui/node_modules/type-fest/source/has-readonly-keys.d.ts +21 -0
- node_ui/node_modules/type-fest/source/has-required-keys.d.ts +59 -0
- node_ui/node_modules/type-fest/source/has-writable-keys.d.ts +21 -0
- node_ui/node_modules/type-fest/source/if-any.d.ts +24 -0
- node_ui/node_modules/type-fest/source/if-empty-object.d.ts +26 -0
- node_ui/node_modules/type-fest/source/if-never.d.ts +24 -0
- node_ui/node_modules/type-fest/source/if-null.d.ts +24 -0
- node_ui/node_modules/type-fest/source/if-unknown.d.ts +24 -0
- node_ui/node_modules/type-fest/source/includes.d.ts +22 -0
- node_ui/node_modules/type-fest/source/int-closed-range.d.ts +35 -0
- node_ui/node_modules/type-fest/source/int-range.d.ts +55 -0
- node_ui/node_modules/type-fest/source/internal/array.d.ts +126 -0
- node_ui/node_modules/type-fest/source/internal/characters.d.ts +67 -0
- node_ui/node_modules/type-fest/source/internal/index.d.ts +8 -0
- node_ui/node_modules/type-fest/source/internal/keys.d.ts +97 -0
- node_ui/node_modules/type-fest/source/internal/numeric.d.ts +118 -0
- node_ui/node_modules/type-fest/source/internal/object.d.ts +236 -0
- node_ui/node_modules/type-fest/source/internal/string.d.ts +210 -0
- node_ui/node_modules/type-fest/source/internal/tuple.d.ts +90 -0
- node_ui/node_modules/type-fest/source/internal/type.d.ts +139 -0
- node_ui/node_modules/type-fest/source/invariant-of.d.ts +76 -0
- node_ui/node_modules/type-fest/source/is-any.d.ts +33 -0
- node_ui/node_modules/type-fest/source/is-equal.d.ts +31 -0
- node_ui/node_modules/type-fest/source/is-float.d.ts +41 -0
- node_ui/node_modules/type-fest/source/is-integer.d.ts +58 -0
- node_ui/node_modules/type-fest/source/is-literal.d.ts +296 -0
- node_ui/node_modules/type-fest/source/is-never.d.ts +42 -0
- node_ui/node_modules/type-fest/source/is-null.d.ts +20 -0
- node_ui/node_modules/type-fest/source/is-tuple.d.ts +89 -0
- node_ui/node_modules/type-fest/source/is-unknown.d.ts +52 -0
- node_ui/node_modules/type-fest/source/iterable-element.d.ts +64 -0
- node_ui/node_modules/type-fest/source/join.d.ts +68 -0
- node_ui/node_modules/type-fest/source/jsonifiable.d.ts +37 -0
- node_ui/node_modules/type-fest/source/jsonify.d.ts +122 -0
- node_ui/node_modules/type-fest/source/kebab-case.d.ts +44 -0
- node_ui/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +63 -0
- node_ui/node_modules/type-fest/source/kebab-cased-properties.d.ts +40 -0
- node_ui/node_modules/type-fest/source/keys-of-union.d.ts +42 -0
- node_ui/node_modules/type-fest/source/last-array-element.d.ts +38 -0
- node_ui/node_modules/type-fest/source/less-than-or-equal.d.ts +22 -0
- node_ui/node_modules/type-fest/source/less-than.d.ts +26 -0
- node_ui/node_modules/type-fest/source/literal-to-primitive-deep.d.ts +36 -0
- node_ui/node_modules/type-fest/source/literal-to-primitive.d.ts +36 -0
- node_ui/node_modules/type-fest/source/literal-union.d.ts +37 -0
- node_ui/node_modules/type-fest/source/merge-deep.d.ts +486 -0
- node_ui/node_modules/type-fest/source/merge-exclusive.d.ts +41 -0
- node_ui/node_modules/type-fest/source/merge.d.ts +48 -0
- node_ui/node_modules/type-fest/source/multidimensional-array.d.ts +44 -0
- node_ui/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +48 -0
- node_ui/node_modules/type-fest/source/non-empty-object.d.ts +35 -0
- node_ui/node_modules/type-fest/source/non-empty-string.d.ts +28 -0
- node_ui/node_modules/type-fest/source/non-empty-tuple.d.ts +21 -0
- node_ui/node_modules/type-fest/source/numeric.d.ts +222 -0
- node_ui/node_modules/type-fest/source/observable-like.d.ts +63 -0
- node_ui/node_modules/type-fest/source/omit-deep.d.ts +167 -0
- node_ui/node_modules/type-fest/source/omit-index-signature.d.ts +95 -0
- node_ui/node_modules/type-fest/source/opaque.d.ts +1 -0
- node_ui/node_modules/type-fest/source/optional-keys-of.d.ts +39 -0
- node_ui/node_modules/type-fest/source/or.d.ts +25 -0
- node_ui/node_modules/type-fest/source/override-properties.d.ts +36 -0
- node_ui/node_modules/type-fest/source/package-json.d.ts +676 -0
- node_ui/node_modules/type-fest/source/partial-deep.d.ts +151 -0
- node_ui/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +78 -0
- node_ui/node_modules/type-fest/source/pascal-case.d.ts +42 -0
- node_ui/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +62 -0
- node_ui/node_modules/type-fest/source/pascal-cased-properties.d.ts +36 -0
- node_ui/node_modules/type-fest/source/paths.d.ts +262 -0
- node_ui/node_modules/type-fest/source/pick-deep.d.ts +149 -0
- node_ui/node_modules/type-fest/source/pick-index-signature.d.ts +50 -0
- node_ui/node_modules/type-fest/source/primitive.d.ts +13 -0
- node_ui/node_modules/type-fest/source/promisable.d.ts +25 -0
- node_ui/node_modules/type-fest/source/readonly-deep.d.ts +81 -0
- node_ui/node_modules/type-fest/source/readonly-keys-of.d.ts +30 -0
- node_ui/node_modules/type-fest/source/readonly-tuple.d.ts +41 -0
- node_ui/node_modules/type-fest/source/replace.d.ts +85 -0
- node_ui/node_modules/type-fest/source/require-all-or-none.d.ts +51 -0
- node_ui/node_modules/type-fest/source/require-at-least-one.d.ts +47 -0
- node_ui/node_modules/type-fest/source/require-exactly-one.d.ts +45 -0
- node_ui/node_modules/type-fest/source/require-one-or-none.d.ts +46 -0
- node_ui/node_modules/type-fest/source/required-deep.d.ts +78 -0
- node_ui/node_modules/type-fest/source/required-keys-of.d.ts +30 -0
- node_ui/node_modules/type-fest/source/schema.d.ts +114 -0
- node_ui/node_modules/type-fest/source/screaming-snake-case.d.ts +28 -0
- node_ui/node_modules/type-fest/source/set-field-type.d.ts +65 -0
- node_ui/node_modules/type-fest/source/set-non-nullable-deep.d.ts +83 -0
- node_ui/node_modules/type-fest/source/set-non-nullable.d.ts +39 -0
- node_ui/node_modules/type-fest/source/set-optional.d.ts +38 -0
- node_ui/node_modules/type-fest/source/set-parameter-type.d.ts +117 -0
- node_ui/node_modules/type-fest/source/set-readonly.d.ts +39 -0
- node_ui/node_modules/type-fest/source/set-required-deep.d.ts +68 -0
- node_ui/node_modules/type-fest/source/set-required.d.ts +70 -0
- node_ui/node_modules/type-fest/source/set-return-type.d.ts +29 -0
- node_ui/node_modules/type-fest/source/shared-union-fields-deep.d.ts +178 -0
- node_ui/node_modules/type-fest/source/shared-union-fields.d.ts +76 -0
- node_ui/node_modules/type-fest/source/simplify-deep.d.ts +115 -0
- node_ui/node_modules/type-fest/source/simplify.d.ts +58 -0
- node_ui/node_modules/type-fest/source/single-key-object.d.ts +29 -0
- node_ui/node_modules/type-fest/source/snake-case.d.ts +45 -0
- node_ui/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +63 -0
- node_ui/node_modules/type-fest/source/snake-cased-properties.d.ts +40 -0
- node_ui/node_modules/type-fest/source/split.d.ts +88 -0
- node_ui/node_modules/type-fest/source/spread.d.ts +84 -0
- node_ui/node_modules/type-fest/source/string-key-of.d.ts +25 -0
- node_ui/node_modules/type-fest/source/string-repeat.d.ts +47 -0
- node_ui/node_modules/type-fest/source/string-slice.d.ts +37 -0
- node_ui/node_modules/type-fest/source/stringified.d.ts +23 -0
- node_ui/node_modules/type-fest/source/structured-cloneable.d.ts +92 -0
- node_ui/node_modules/type-fest/source/subtract.d.ts +83 -0
- node_ui/node_modules/type-fest/source/sum.d.ts +78 -0
- node_ui/node_modules/type-fest/source/tagged-union.d.ts +51 -0
- node_ui/node_modules/type-fest/source/tagged.d.ts +256 -0
- node_ui/node_modules/type-fest/source/trim.d.ts +27 -0
- node_ui/node_modules/type-fest/source/tsconfig-json.d.ts +1294 -0
- node_ui/node_modules/type-fest/source/tuple-to-object.d.ts +42 -0
- node_ui/node_modules/type-fest/source/tuple-to-union.d.ts +51 -0
- node_ui/node_modules/type-fest/source/typed-array.d.ts +17 -0
- node_ui/node_modules/type-fest/source/undefined-on-partial-deep.d.ts +80 -0
- node_ui/node_modules/type-fest/source/union-to-intersection.d.ts +61 -0
- node_ui/node_modules/type-fest/source/union-to-tuple.d.ts +56 -0
- node_ui/node_modules/type-fest/source/unknown-array.d.ts +25 -0
- node_ui/node_modules/type-fest/source/unknown-map.d.ts +24 -0
- node_ui/node_modules/type-fest/source/unknown-record.d.ts +31 -0
- node_ui/node_modules/type-fest/source/unknown-set.d.ts +24 -0
- node_ui/node_modules/type-fest/source/value-of.d.ts +42 -0
- node_ui/node_modules/type-fest/source/words.d.ts +118 -0
- node_ui/node_modules/type-fest/source/writable-deep.d.ts +83 -0
- node_ui/node_modules/type-fest/source/writable-keys-of.d.ts +33 -0
- node_ui/node_modules/type-fest/source/writable.d.ts +68 -0
- node_ui/node_modules/widest-line/index.d.ts +12 -0
- node_ui/node_modules/widest-line/index.js +11 -0
- node_ui/node_modules/widest-line/license +9 -0
- node_ui/node_modules/widest-line/package.json +60 -0
- node_ui/node_modules/widest-line/readme.md +26 -0
- node_ui/node_modules/wrap-ansi/index.d.ts +41 -0
- node_ui/node_modules/wrap-ansi/index.js +222 -0
- node_ui/node_modules/wrap-ansi/license +9 -0
- node_ui/node_modules/wrap-ansi/package.json +69 -0
- node_ui/node_modules/wrap-ansi/readme.md +75 -0
- node_ui/node_modules/ws/LICENSE +20 -0
- node_ui/node_modules/ws/README.md +548 -0
- node_ui/node_modules/ws/browser.js +8 -0
- node_ui/node_modules/ws/index.js +13 -0
- node_ui/node_modules/ws/lib/buffer-util.js +131 -0
- node_ui/node_modules/ws/lib/constants.js +18 -0
- node_ui/node_modules/ws/lib/event-target.js +292 -0
- node_ui/node_modules/ws/lib/extension.js +203 -0
- node_ui/node_modules/ws/lib/limiter.js +55 -0
- node_ui/node_modules/ws/lib/permessage-deflate.js +528 -0
- node_ui/node_modules/ws/lib/receiver.js +706 -0
- node_ui/node_modules/ws/lib/sender.js +602 -0
- node_ui/node_modules/ws/lib/stream.js +161 -0
- node_ui/node_modules/ws/lib/subprotocol.js +62 -0
- node_ui/node_modules/ws/lib/validation.js +152 -0
- node_ui/node_modules/ws/lib/websocket-server.js +550 -0
- node_ui/node_modules/ws/lib/websocket.js +1388 -0
- node_ui/node_modules/ws/package.json +69 -0
- node_ui/node_modules/ws/wrapper.mjs +8 -0
- node_ui/node_modules/yoga-wasm-web/LICENSE +21 -0
- node_ui/node_modules/yoga-wasm-web/README.md +70 -0
- node_ui/node_modules/yoga-wasm-web/dist/asm.d.ts +6 -0
- node_ui/node_modules/yoga-wasm-web/dist/asm.js +1 -0
- node_ui/node_modules/yoga-wasm-web/dist/auto.d.ts +7 -0
- node_ui/node_modules/yoga-wasm-web/dist/browser.js +1 -0
- node_ui/node_modules/yoga-wasm-web/dist/generated/YGEnums.d.ts +328 -0
- node_ui/node_modules/yoga-wasm-web/dist/index.d.ts +7 -0
- node_ui/node_modules/yoga-wasm-web/dist/index.js +1 -0
- node_ui/node_modules/yoga-wasm-web/dist/node.js +1 -0
- node_ui/node_modules/yoga-wasm-web/dist/wrapAsm-57389177.js +1 -0
- node_ui/node_modules/yoga-wasm-web/dist/wrapAsm-f766f97f.js +1 -0
- node_ui/node_modules/yoga-wasm-web/dist/wrapAsm.d.ts +176 -0
- node_ui/node_modules/yoga-wasm-web/dist/yoga.wasm +0 -0
- node_ui/node_modules/yoga-wasm-web/package.json +56 -0
- node_ui/package.json +21 -0
- claude_code_tools/codex_bridge_mcp.py +0 -333
- claude_code_tools-0.2.0.dist-info/METADATA +0 -495
- claude_code_tools-0.2.0.dist-info/RECORD +0 -22
- {claude_code_tools-0.2.0.dist-info → claude_code_tools-1.0.6.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,1247 @@
|
|
|
1
|
+
"""Tantivy-based search index for session exports."""
|
|
2
|
+
|
|
3
|
+
import json
|
|
4
|
+
import math
|
|
5
|
+
import sys
|
|
6
|
+
from dataclasses import dataclass
|
|
7
|
+
from datetime import datetime
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
from typing import Any, Optional
|
|
10
|
+
|
|
11
|
+
from claude_code_tools.session_utils import is_valid_session
|
|
12
|
+
|
|
13
|
+
# Lazy imports to allow module to load even if deps not installed
|
|
14
|
+
try:
|
|
15
|
+
import yaml
|
|
16
|
+
YAML_AVAILABLE = True
|
|
17
|
+
except ImportError:
|
|
18
|
+
yaml = None # type: ignore
|
|
19
|
+
YAML_AVAILABLE = False
|
|
20
|
+
|
|
21
|
+
try:
|
|
22
|
+
import tantivy
|
|
23
|
+
TANTIVY_AVAILABLE = True
|
|
24
|
+
except ImportError:
|
|
25
|
+
tantivy = None # type: ignore
|
|
26
|
+
TANTIVY_AVAILABLE = False
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def _require_deps():
|
|
30
|
+
"""Raise helpful error if required dependencies are not installed."""
|
|
31
|
+
missing = []
|
|
32
|
+
if not YAML_AVAILABLE:
|
|
33
|
+
missing.append("pyyaml")
|
|
34
|
+
if not TANTIVY_AVAILABLE:
|
|
35
|
+
missing.append("tantivy")
|
|
36
|
+
|
|
37
|
+
if missing:
|
|
38
|
+
raise ImportError(
|
|
39
|
+
f"Missing dependencies for search indexing: {', '.join(missing)}\n"
|
|
40
|
+
f"Install with: pip install {' '.join(missing)}\n"
|
|
41
|
+
"Or reinstall claude-code-tools: uv tool install claude-code-tools"
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def _iso_to_epoch_ms(iso_str: str) -> int:
|
|
46
|
+
"""Convert ISO timestamp string to epoch milliseconds.
|
|
47
|
+
|
|
48
|
+
Args:
|
|
49
|
+
iso_str: ISO format timestamp (e.g., "2025-12-08T18:22:59.582Z")
|
|
50
|
+
|
|
51
|
+
Returns:
|
|
52
|
+
Epoch time in milliseconds, or 0 if parsing fails
|
|
53
|
+
"""
|
|
54
|
+
if not iso_str:
|
|
55
|
+
return 0
|
|
56
|
+
try:
|
|
57
|
+
# Handle both Z suffix and +00:00 timezone formats
|
|
58
|
+
if "T" in iso_str:
|
|
59
|
+
dt = datetime.fromisoformat(iso_str.replace("Z", "+00:00"))
|
|
60
|
+
else:
|
|
61
|
+
dt = datetime.fromisoformat(iso_str)
|
|
62
|
+
return int(dt.timestamp() * 1000)
|
|
63
|
+
except (ValueError, TypeError):
|
|
64
|
+
return 0
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
@dataclass
|
|
68
|
+
class SearchResult:
|
|
69
|
+
"""A search result with metadata and snippet."""
|
|
70
|
+
|
|
71
|
+
session_id: str
|
|
72
|
+
agent: str
|
|
73
|
+
project: str
|
|
74
|
+
branch: Optional[str]
|
|
75
|
+
cwd: Optional[str]
|
|
76
|
+
modified: str
|
|
77
|
+
lines: int
|
|
78
|
+
snippet: str
|
|
79
|
+
score: float
|
|
80
|
+
export_path: str
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
class IndexState:
|
|
84
|
+
"""Track which files have been indexed to enable incremental updates."""
|
|
85
|
+
|
|
86
|
+
def __init__(self, state_path: Path):
|
|
87
|
+
self.state_path = state_path
|
|
88
|
+
self.indexed_files: dict[str, dict[str, Any]] = {}
|
|
89
|
+
self._load()
|
|
90
|
+
|
|
91
|
+
def _load(self):
|
|
92
|
+
"""Load state from disk."""
|
|
93
|
+
if self.state_path.exists():
|
|
94
|
+
try:
|
|
95
|
+
with open(self.state_path, "r") as f:
|
|
96
|
+
self.indexed_files = json.load(f)
|
|
97
|
+
except (json.JSONDecodeError, IOError):
|
|
98
|
+
self.indexed_files = {}
|
|
99
|
+
|
|
100
|
+
def save(self):
|
|
101
|
+
"""Save state to disk."""
|
|
102
|
+
self.state_path.parent.mkdir(parents=True, exist_ok=True)
|
|
103
|
+
with open(self.state_path, "w") as f:
|
|
104
|
+
json.dump(self.indexed_files, f)
|
|
105
|
+
|
|
106
|
+
def needs_reindex(self, file_path: Path) -> bool:
|
|
107
|
+
"""Check if file needs to be (re-)indexed."""
|
|
108
|
+
key = str(file_path)
|
|
109
|
+
if key not in self.indexed_files:
|
|
110
|
+
return True
|
|
111
|
+
|
|
112
|
+
stat = file_path.stat()
|
|
113
|
+
stored = self.indexed_files[key]
|
|
114
|
+
|
|
115
|
+
# Reindex if mtime or size changed
|
|
116
|
+
return (
|
|
117
|
+
stat.st_mtime != stored.get("mtime")
|
|
118
|
+
or stat.st_size != stored.get("size")
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
def mark_indexed(self, file_path: Path):
|
|
122
|
+
"""Mark file as indexed with current metadata."""
|
|
123
|
+
stat = file_path.stat()
|
|
124
|
+
self.indexed_files[str(file_path)] = {
|
|
125
|
+
"mtime": stat.st_mtime,
|
|
126
|
+
"size": stat.st_size,
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
class SessionIndex:
|
|
131
|
+
"""Tantivy-based full-text search index for sessions."""
|
|
132
|
+
|
|
133
|
+
def __init__(self, index_path: Path):
|
|
134
|
+
"""
|
|
135
|
+
Initialize or open a session index.
|
|
136
|
+
|
|
137
|
+
Args:
|
|
138
|
+
index_path: Directory for the Tantivy index
|
|
139
|
+
|
|
140
|
+
Raises:
|
|
141
|
+
ImportError: If tantivy or pyyaml is not installed
|
|
142
|
+
"""
|
|
143
|
+
_require_deps()
|
|
144
|
+
|
|
145
|
+
self.index_path = Path(index_path)
|
|
146
|
+
self.state = IndexState(self.index_path / "index_state.json")
|
|
147
|
+
|
|
148
|
+
# Define schema
|
|
149
|
+
self.schema_builder = tantivy.SchemaBuilder()
|
|
150
|
+
|
|
151
|
+
# Stored fields (retrieved but not searched)
|
|
152
|
+
self.schema_builder.add_text_field("session_id", stored=True)
|
|
153
|
+
self.schema_builder.add_text_field("agent", stored=True)
|
|
154
|
+
self.schema_builder.add_text_field("project", stored=True)
|
|
155
|
+
self.schema_builder.add_text_field("branch", stored=True)
|
|
156
|
+
self.schema_builder.add_text_field("cwd", stored=True)
|
|
157
|
+
self.schema_builder.add_text_field("created", stored=True)
|
|
158
|
+
self.schema_builder.add_text_field("modified", stored=True)
|
|
159
|
+
# Fast field for sorting by modification time (epoch milliseconds)
|
|
160
|
+
self.schema_builder.add_unsigned_field("modified_ts", stored=True, fast=True)
|
|
161
|
+
self.schema_builder.add_integer_field("lines", stored=True)
|
|
162
|
+
# export_path needs "raw" tokenizer for exact match deletion
|
|
163
|
+
self.schema_builder.add_text_field("export_path", stored=True, tokenizer_name="raw")
|
|
164
|
+
|
|
165
|
+
# First and last message fields (for preview in TUI)
|
|
166
|
+
self.schema_builder.add_text_field("first_msg_role", stored=True)
|
|
167
|
+
self.schema_builder.add_text_field("first_msg_content", stored=True)
|
|
168
|
+
self.schema_builder.add_text_field("last_msg_role", stored=True)
|
|
169
|
+
self.schema_builder.add_text_field("last_msg_content", stored=True)
|
|
170
|
+
|
|
171
|
+
# Session type fields (for filtering in TUI)
|
|
172
|
+
self.schema_builder.add_text_field("derivation_type", stored=True)
|
|
173
|
+
self.schema_builder.add_text_field("is_sidechain", stored=True) # "true"/"false"
|
|
174
|
+
|
|
175
|
+
# Claude home field (for filtering by source Claude home directory)
|
|
176
|
+
# Use "raw" tokenizer so paths are indexed as single tokens for exact matching
|
|
177
|
+
self.schema_builder.add_text_field("claude_home", stored=True, tokenizer_name="raw")
|
|
178
|
+
|
|
179
|
+
# Searchable content field
|
|
180
|
+
self.schema_builder.add_text_field("content", stored=True)
|
|
181
|
+
|
|
182
|
+
self.schema = self.schema_builder.build()
|
|
183
|
+
|
|
184
|
+
# Create or open index
|
|
185
|
+
self.index_path.mkdir(parents=True, exist_ok=True)
|
|
186
|
+
|
|
187
|
+
if (self.index_path / "meta.json").exists():
|
|
188
|
+
self.index = tantivy.Index(self.schema, path=str(self.index_path))
|
|
189
|
+
else:
|
|
190
|
+
self.index = tantivy.Index(self.schema, path=str(self.index_path))
|
|
191
|
+
|
|
192
|
+
def _parse_export_file(self, export_path: Path) -> Optional[dict[str, Any]]:
|
|
193
|
+
"""
|
|
194
|
+
Parse an exported session file with YAML front matter.
|
|
195
|
+
|
|
196
|
+
Returns:
|
|
197
|
+
Dict with metadata and content, or None if parsing fails
|
|
198
|
+
"""
|
|
199
|
+
try:
|
|
200
|
+
content = export_path.read_text(encoding="utf-8")
|
|
201
|
+
|
|
202
|
+
if not content.startswith("---\n"):
|
|
203
|
+
return None
|
|
204
|
+
|
|
205
|
+
end_idx = content.find("\n---\n", 4)
|
|
206
|
+
if end_idx == -1:
|
|
207
|
+
return None
|
|
208
|
+
|
|
209
|
+
yaml_str = content[4:end_idx]
|
|
210
|
+
metadata = yaml.safe_load(yaml_str)
|
|
211
|
+
|
|
212
|
+
conversation = content[end_idx + 5:]
|
|
213
|
+
|
|
214
|
+
return {
|
|
215
|
+
"metadata": metadata,
|
|
216
|
+
"content": conversation,
|
|
217
|
+
"export_path": str(export_path),
|
|
218
|
+
}
|
|
219
|
+
except Exception:
|
|
220
|
+
return None
|
|
221
|
+
|
|
222
|
+
def build_from_exports(
|
|
223
|
+
self, exports_dir: Path, incremental: bool = True
|
|
224
|
+
) -> dict[str, int]:
|
|
225
|
+
"""
|
|
226
|
+
Build or update index from exported session files.
|
|
227
|
+
|
|
228
|
+
Args:
|
|
229
|
+
exports_dir: Directory containing exported .txt files
|
|
230
|
+
(expects subdirs: claude/, codex/)
|
|
231
|
+
incremental: If True, only index new/modified files
|
|
232
|
+
|
|
233
|
+
Returns:
|
|
234
|
+
Stats dict: {indexed, skipped, failed}
|
|
235
|
+
"""
|
|
236
|
+
stats = {"indexed": 0, "skipped": 0, "failed": 0}
|
|
237
|
+
|
|
238
|
+
writer = self.index.writer()
|
|
239
|
+
|
|
240
|
+
# Find all export files
|
|
241
|
+
export_files = []
|
|
242
|
+
for subdir in ["claude", "codex"]:
|
|
243
|
+
subdir_path = exports_dir / subdir
|
|
244
|
+
if subdir_path.exists():
|
|
245
|
+
export_files.extend(subdir_path.glob("*.txt"))
|
|
246
|
+
|
|
247
|
+
for export_path in export_files:
|
|
248
|
+
# Check if needs indexing
|
|
249
|
+
if incremental and not self.state.needs_reindex(export_path):
|
|
250
|
+
stats["skipped"] += 1
|
|
251
|
+
continue
|
|
252
|
+
|
|
253
|
+
# Parse export file
|
|
254
|
+
parsed = self._parse_export_file(export_path)
|
|
255
|
+
if parsed is None:
|
|
256
|
+
stats["failed"] += 1
|
|
257
|
+
continue
|
|
258
|
+
|
|
259
|
+
metadata = parsed["metadata"]
|
|
260
|
+
|
|
261
|
+
# Create document
|
|
262
|
+
doc = tantivy.Document()
|
|
263
|
+
doc.add_text("session_id", metadata.get("session_id", ""))
|
|
264
|
+
doc.add_text("agent", metadata.get("agent", ""))
|
|
265
|
+
doc.add_text("project", metadata.get("project", ""))
|
|
266
|
+
doc.add_text("branch", metadata.get("branch", "") or "")
|
|
267
|
+
doc.add_text("cwd", metadata.get("cwd", "") or "")
|
|
268
|
+
doc.add_text("created", metadata.get("created", "") or "")
|
|
269
|
+
modified_str = metadata.get("modified", "")
|
|
270
|
+
doc.add_text("modified", modified_str)
|
|
271
|
+
doc.add_unsigned("modified_ts", _iso_to_epoch_ms(modified_str))
|
|
272
|
+
doc.add_integer("lines", metadata.get("lines", 0))
|
|
273
|
+
doc.add_text("export_path", parsed["export_path"])
|
|
274
|
+
|
|
275
|
+
# First and last message fields
|
|
276
|
+
first_msg = metadata.get("first_msg", {}) or {}
|
|
277
|
+
last_msg = metadata.get("last_msg", {}) or {}
|
|
278
|
+
doc.add_text("first_msg_role", first_msg.get("role", ""))
|
|
279
|
+
doc.add_text("first_msg_content", first_msg.get("content", ""))
|
|
280
|
+
doc.add_text("last_msg_role", last_msg.get("role", ""))
|
|
281
|
+
doc.add_text("last_msg_content", last_msg.get("content", ""))
|
|
282
|
+
|
|
283
|
+
# Session type fields
|
|
284
|
+
doc.add_text("derivation_type", metadata.get("derivation_type", "") or "")
|
|
285
|
+
doc.add_text(
|
|
286
|
+
"is_sidechain",
|
|
287
|
+
"true" if metadata.get("is_sidechain") else "false"
|
|
288
|
+
)
|
|
289
|
+
|
|
290
|
+
doc.add_text("content", parsed["content"])
|
|
291
|
+
|
|
292
|
+
writer.add_document(doc)
|
|
293
|
+
self.state.mark_indexed(export_path)
|
|
294
|
+
stats["indexed"] += 1
|
|
295
|
+
|
|
296
|
+
writer.commit()
|
|
297
|
+
self.state.save()
|
|
298
|
+
self.index.reload()
|
|
299
|
+
|
|
300
|
+
return stats
|
|
301
|
+
|
|
302
|
+
def index_single_file(
|
|
303
|
+
self, export_path: Path, writer, incremental: bool = True
|
|
304
|
+
) -> dict:
|
|
305
|
+
"""
|
|
306
|
+
Index a single export file.
|
|
307
|
+
|
|
308
|
+
Args:
|
|
309
|
+
export_path: Path to exported .txt file
|
|
310
|
+
writer: Tantivy index writer
|
|
311
|
+
incremental: If True, skip if already indexed
|
|
312
|
+
|
|
313
|
+
Returns:
|
|
314
|
+
Dict with result: {status, error}
|
|
315
|
+
status: 'indexed', 'skipped', 'failed'
|
|
316
|
+
"""
|
|
317
|
+
result: dict = {"status": "failed", "error": None}
|
|
318
|
+
|
|
319
|
+
if not export_path.exists():
|
|
320
|
+
result["error"] = "file not found"
|
|
321
|
+
return result
|
|
322
|
+
|
|
323
|
+
# Check if needs indexing
|
|
324
|
+
if incremental and not self.state.needs_reindex(export_path):
|
|
325
|
+
result["status"] = "skipped"
|
|
326
|
+
return result
|
|
327
|
+
|
|
328
|
+
# Parse export file
|
|
329
|
+
try:
|
|
330
|
+
parsed = self._parse_export_file(export_path)
|
|
331
|
+
except Exception as e:
|
|
332
|
+
result["error"] = f"parse error: {e}"
|
|
333
|
+
return result
|
|
334
|
+
|
|
335
|
+
if parsed is None:
|
|
336
|
+
result["error"] = "failed to parse YAML frontmatter"
|
|
337
|
+
return result
|
|
338
|
+
|
|
339
|
+
metadata = parsed["metadata"]
|
|
340
|
+
|
|
341
|
+
try:
|
|
342
|
+
# Create document
|
|
343
|
+
doc = tantivy.Document()
|
|
344
|
+
doc.add_text("session_id", metadata.get("session_id", ""))
|
|
345
|
+
doc.add_text("agent", metadata.get("agent", ""))
|
|
346
|
+
doc.add_text("project", metadata.get("project", ""))
|
|
347
|
+
doc.add_text("branch", metadata.get("branch", "") or "")
|
|
348
|
+
doc.add_text("cwd", metadata.get("cwd", "") or "")
|
|
349
|
+
doc.add_text("created", metadata.get("created", "") or "")
|
|
350
|
+
modified_str = metadata.get("modified", "")
|
|
351
|
+
doc.add_text("modified", modified_str)
|
|
352
|
+
doc.add_unsigned("modified_ts", _iso_to_epoch_ms(modified_str))
|
|
353
|
+
doc.add_integer("lines", metadata.get("lines", 0))
|
|
354
|
+
doc.add_text("export_path", parsed["export_path"])
|
|
355
|
+
|
|
356
|
+
# First and last message fields
|
|
357
|
+
first_msg = metadata.get("first_msg", {}) or {}
|
|
358
|
+
last_msg = metadata.get("last_msg", {}) or {}
|
|
359
|
+
doc.add_text("first_msg_role", first_msg.get("role", ""))
|
|
360
|
+
doc.add_text("first_msg_content", first_msg.get("content", ""))
|
|
361
|
+
doc.add_text("last_msg_role", last_msg.get("role", ""))
|
|
362
|
+
doc.add_text("last_msg_content", last_msg.get("content", ""))
|
|
363
|
+
|
|
364
|
+
# Session type fields
|
|
365
|
+
doc.add_text(
|
|
366
|
+
"derivation_type", metadata.get("derivation_type", "") or ""
|
|
367
|
+
)
|
|
368
|
+
doc.add_text(
|
|
369
|
+
"is_sidechain",
|
|
370
|
+
"true" if metadata.get("is_sidechain") else "false"
|
|
371
|
+
)
|
|
372
|
+
|
|
373
|
+
doc.add_text("content", parsed["content"])
|
|
374
|
+
|
|
375
|
+
writer.add_document(doc)
|
|
376
|
+
self.state.mark_indexed(export_path)
|
|
377
|
+
result["status"] = "indexed"
|
|
378
|
+
except Exception as e:
|
|
379
|
+
result["error"] = f"index error: {e}"
|
|
380
|
+
|
|
381
|
+
return result
|
|
382
|
+
|
|
383
|
+
def get_writer(self):
|
|
384
|
+
"""Get a writer for batch indexing."""
|
|
385
|
+
return self.index.writer()
|
|
386
|
+
|
|
387
|
+
def commit_and_reload(self, writer):
|
|
388
|
+
"""Commit writer changes and reload index."""
|
|
389
|
+
writer.commit()
|
|
390
|
+
self.state.save()
|
|
391
|
+
self.index.reload()
|
|
392
|
+
|
|
393
|
+
def build_from_files(
|
|
394
|
+
self, export_files: list[Path], incremental: bool = True
|
|
395
|
+
) -> dict[str, int]:
|
|
396
|
+
"""
|
|
397
|
+
Build or update index from a list of exported session files.
|
|
398
|
+
|
|
399
|
+
This is the per-project alternative to build_from_exports().
|
|
400
|
+
Instead of expecting a single directory, it accepts a list of
|
|
401
|
+
export file paths from multiple project directories.
|
|
402
|
+
|
|
403
|
+
Args:
|
|
404
|
+
export_files: List of paths to exported .txt files
|
|
405
|
+
incremental: If True, only index new/modified files
|
|
406
|
+
|
|
407
|
+
Returns:
|
|
408
|
+
Stats dict: {indexed, skipped, failed}
|
|
409
|
+
"""
|
|
410
|
+
stats = {"indexed": 0, "skipped": 0, "failed": 0}
|
|
411
|
+
|
|
412
|
+
writer = self.get_writer()
|
|
413
|
+
|
|
414
|
+
for export_path in export_files:
|
|
415
|
+
result = self.index_single_file(export_path, writer, incremental)
|
|
416
|
+
if result["status"] == "indexed":
|
|
417
|
+
stats["indexed"] += 1
|
|
418
|
+
elif result["status"] == "skipped":
|
|
419
|
+
stats["skipped"] += 1
|
|
420
|
+
else:
|
|
421
|
+
stats["failed"] += 1
|
|
422
|
+
|
|
423
|
+
self.commit_and_reload(writer)
|
|
424
|
+
|
|
425
|
+
return stats
|
|
426
|
+
|
|
427
|
+
def _extract_session_content(
|
|
428
|
+
self, jsonl_path: Path, agent: str
|
|
429
|
+
) -> tuple[str, int]:
|
|
430
|
+
"""
|
|
431
|
+
Extract searchable content from a session file.
|
|
432
|
+
|
|
433
|
+
Handles both Claude and Codex JSONL formats.
|
|
434
|
+
|
|
435
|
+
Args:
|
|
436
|
+
jsonl_path: Path to session JSONL file
|
|
437
|
+
agent: Agent type ('claude' or 'codex')
|
|
438
|
+
|
|
439
|
+
Returns:
|
|
440
|
+
Tuple of (content_string, user_message_count)
|
|
441
|
+
"""
|
|
442
|
+
messages = []
|
|
443
|
+
user_count = 0 # Count only user messages for the "lines" metric
|
|
444
|
+
|
|
445
|
+
try:
|
|
446
|
+
with open(jsonl_path, "r", encoding="utf-8") as f:
|
|
447
|
+
for line in f:
|
|
448
|
+
line = line.strip()
|
|
449
|
+
if not line:
|
|
450
|
+
continue
|
|
451
|
+
|
|
452
|
+
try:
|
|
453
|
+
data = json.loads(line)
|
|
454
|
+
except json.JSONDecodeError:
|
|
455
|
+
continue
|
|
456
|
+
|
|
457
|
+
role: Optional[str] = None
|
|
458
|
+
text: str = ""
|
|
459
|
+
|
|
460
|
+
if agent == "claude":
|
|
461
|
+
# Claude format: type is "user" or "assistant"
|
|
462
|
+
msg_type = data.get("type")
|
|
463
|
+
if msg_type not in ("user", "assistant"):
|
|
464
|
+
continue
|
|
465
|
+
|
|
466
|
+
role = msg_type
|
|
467
|
+
message = data.get("message", {})
|
|
468
|
+
content = message.get("content")
|
|
469
|
+
|
|
470
|
+
# Count user messages, but exclude tool results
|
|
471
|
+
# Tool results have content as list with {"type": "tool_result"}
|
|
472
|
+
# Real user messages have content as string or list with text
|
|
473
|
+
if role == "user":
|
|
474
|
+
is_tool_result = (
|
|
475
|
+
isinstance(content, list)
|
|
476
|
+
and len(content) > 0
|
|
477
|
+
and isinstance(content[0], dict)
|
|
478
|
+
and content[0].get("type") == "tool_result"
|
|
479
|
+
)
|
|
480
|
+
if not is_tool_result:
|
|
481
|
+
user_count += 1
|
|
482
|
+
|
|
483
|
+
if not content:
|
|
484
|
+
continue
|
|
485
|
+
|
|
486
|
+
# Extract text content
|
|
487
|
+
if isinstance(content, str):
|
|
488
|
+
text = content
|
|
489
|
+
elif isinstance(content, list):
|
|
490
|
+
for block in content:
|
|
491
|
+
if isinstance(block, str):
|
|
492
|
+
text += block + "\n"
|
|
493
|
+
elif isinstance(block, dict):
|
|
494
|
+
if block.get("type") == "text":
|
|
495
|
+
text += block.get("text", "") + "\n"
|
|
496
|
+
elif block.get("type") == "tool_use":
|
|
497
|
+
tool_name = block.get("name", "")
|
|
498
|
+
text += f"[Tool: {tool_name}]\n"
|
|
499
|
+
elif block.get("type") == "tool_result":
|
|
500
|
+
result = block.get("content", "")
|
|
501
|
+
if isinstance(result, str):
|
|
502
|
+
text += result[:500] + "\n"
|
|
503
|
+
|
|
504
|
+
elif agent == "codex":
|
|
505
|
+
# Codex format: type is "response_item" with payload
|
|
506
|
+
if data.get("type") != "response_item":
|
|
507
|
+
continue
|
|
508
|
+
|
|
509
|
+
payload = data.get("payload", {})
|
|
510
|
+
if payload.get("type") != "message":
|
|
511
|
+
continue
|
|
512
|
+
|
|
513
|
+
role = payload.get("role")
|
|
514
|
+
if role == "user":
|
|
515
|
+
user_count += 1
|
|
516
|
+
content = payload.get("content", [])
|
|
517
|
+
|
|
518
|
+
if not isinstance(content, list):
|
|
519
|
+
continue
|
|
520
|
+
|
|
521
|
+
for block in content:
|
|
522
|
+
if not isinstance(block, dict):
|
|
523
|
+
continue
|
|
524
|
+
block_type = block.get("type")
|
|
525
|
+
# input_text (user) and output_text (assistant)
|
|
526
|
+
if block_type in ("input_text", "output_text"):
|
|
527
|
+
text += block.get("text", "") + "\n"
|
|
528
|
+
|
|
529
|
+
if role and text.strip():
|
|
530
|
+
messages.append(f"[{role}] {text.strip()}")
|
|
531
|
+
|
|
532
|
+
except (OSError, IOError):
|
|
533
|
+
pass
|
|
534
|
+
|
|
535
|
+
return "\n\n".join(messages), user_count
|
|
536
|
+
|
|
537
|
+
def _parse_jsonl_session(self, jsonl_path: Path) -> Optional[dict[str, Any]]:
|
|
538
|
+
"""
|
|
539
|
+
Parse a JSONL session file directly (no export step).
|
|
540
|
+
|
|
541
|
+
Uses extract_session_metadata() from export_session.py for metadata,
|
|
542
|
+
and handles both Claude and Codex JSONL formats for content.
|
|
543
|
+
|
|
544
|
+
Args:
|
|
545
|
+
jsonl_path: Path to the session JSONL file
|
|
546
|
+
|
|
547
|
+
Returns:
|
|
548
|
+
Dict with metadata and content suitable for indexing, or None on failure
|
|
549
|
+
"""
|
|
550
|
+
try:
|
|
551
|
+
# Detect agent from path
|
|
552
|
+
path_str = str(jsonl_path)
|
|
553
|
+
agent = "codex" if ".codex" in path_str else "claude"
|
|
554
|
+
|
|
555
|
+
# Use existing helper for metadata extraction
|
|
556
|
+
from claude_code_tools.export_session import extract_session_metadata
|
|
557
|
+
metadata = extract_session_metadata(jsonl_path, agent)
|
|
558
|
+
|
|
559
|
+
# Extract content for full-text search
|
|
560
|
+
content, msg_count = self._extract_session_content(jsonl_path, agent)
|
|
561
|
+
|
|
562
|
+
if msg_count == 0:
|
|
563
|
+
return {"_skip_reason": "empty"}
|
|
564
|
+
|
|
565
|
+
# Map metadata fields to expected format
|
|
566
|
+
first_msg = metadata.get("first_msg") or {"role": "", "content": ""}
|
|
567
|
+
last_msg = metadata.get("last_msg") or {"role": "", "content": ""}
|
|
568
|
+
|
|
569
|
+
# Always use filename-derived session_id (the canonical identifier)
|
|
570
|
+
# Internal sessionId field can be stale in forked sessions
|
|
571
|
+
# Extract UUID from filename: last 36 chars of stem (handles both
|
|
572
|
+
# "uuid.jsonl" and "rollout-timestamp-uuid.jsonl" formats)
|
|
573
|
+
stem = jsonl_path.stem
|
|
574
|
+
session_id = stem[-36:] if len(stem) >= 36 else stem
|
|
575
|
+
|
|
576
|
+
return {
|
|
577
|
+
"metadata": {
|
|
578
|
+
"session_id": session_id,
|
|
579
|
+
"agent": agent,
|
|
580
|
+
"project": metadata.get("project", ""),
|
|
581
|
+
"branch": metadata.get("branch", "") or "",
|
|
582
|
+
"cwd": metadata.get("cwd", "") or "",
|
|
583
|
+
"created": metadata.get("created", "") or "",
|
|
584
|
+
"modified": metadata.get("modified", "") or "",
|
|
585
|
+
"is_sidechain": metadata.get("is_sidechain", False),
|
|
586
|
+
"derivation_type": metadata.get("derivation_type", "") or "",
|
|
587
|
+
"session_type": metadata.get("session_type"),
|
|
588
|
+
},
|
|
589
|
+
"content": content,
|
|
590
|
+
"first_msg": first_msg,
|
|
591
|
+
"last_msg": last_msg,
|
|
592
|
+
"lines": msg_count,
|
|
593
|
+
"file_path": str(jsonl_path),
|
|
594
|
+
}
|
|
595
|
+
except Exception as e:
|
|
596
|
+
return {"_skip_reason": "parse_error", "_error": str(e)}
|
|
597
|
+
|
|
598
|
+
def index_from_jsonl(
|
|
599
|
+
self,
|
|
600
|
+
jsonl_files: list[Path],
|
|
601
|
+
incremental: bool = True,
|
|
602
|
+
claude_home: Optional[Path] = None,
|
|
603
|
+
codex_home: Optional[Path] = None,
|
|
604
|
+
show_progress: bool = False,
|
|
605
|
+
) -> dict[str, int]:
|
|
606
|
+
"""
|
|
607
|
+
Build or update index directly from JSONL session files.
|
|
608
|
+
|
|
609
|
+
This is the "zero-config" approach - no export step needed.
|
|
610
|
+
Parses JSONL directly and indexes to Tantivy.
|
|
611
|
+
|
|
612
|
+
Args:
|
|
613
|
+
jsonl_files: List of paths to session JSONL files
|
|
614
|
+
incremental: If True, only index new/modified files
|
|
615
|
+
claude_home: Claude home directory (stored for filtering)
|
|
616
|
+
codex_home: Codex home directory (stored for filtering)
|
|
617
|
+
show_progress: If True, show tqdm progress bar
|
|
618
|
+
|
|
619
|
+
Returns:
|
|
620
|
+
Stats dict: {indexed, skipped, failed}
|
|
621
|
+
"""
|
|
622
|
+
claude_home_str = str(claude_home) if claude_home else ""
|
|
623
|
+
codex_home_str = str(codex_home) if codex_home else str(Path.home() / ".codex")
|
|
624
|
+
stats = {
|
|
625
|
+
"indexed": 0, "skipped": 0, "failed": 0,
|
|
626
|
+
"empty": 0, "parse_error": 0, "index_error": 0,
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
writer = self.get_writer()
|
|
630
|
+
|
|
631
|
+
# Wrap iterator with tqdm if progress requested
|
|
632
|
+
file_iter: Any = jsonl_files
|
|
633
|
+
if show_progress:
|
|
634
|
+
try:
|
|
635
|
+
from tqdm import tqdm
|
|
636
|
+
file_iter = tqdm(
|
|
637
|
+
jsonl_files,
|
|
638
|
+
desc="Indexing sessions",
|
|
639
|
+
unit="file",
|
|
640
|
+
file=sys.stderr,
|
|
641
|
+
)
|
|
642
|
+
except ImportError:
|
|
643
|
+
print("Note: Install tqdm for progress bar (pip install tqdm)",
|
|
644
|
+
file=sys.stderr)
|
|
645
|
+
|
|
646
|
+
for jsonl_path in file_iter:
|
|
647
|
+
# Check if needs indexing
|
|
648
|
+
if incremental and not self.state.needs_reindex(jsonl_path):
|
|
649
|
+
stats["skipped"] += 1
|
|
650
|
+
continue
|
|
651
|
+
|
|
652
|
+
# Skip invalid sessions (metadata-only files like file-history-snapshot)
|
|
653
|
+
if not is_valid_session(jsonl_path):
|
|
654
|
+
stats["skipped"] += 1
|
|
655
|
+
# Mark as indexed so we don't re-check next time
|
|
656
|
+
self.state.mark_indexed(jsonl_path)
|
|
657
|
+
continue
|
|
658
|
+
|
|
659
|
+
# Parse JSONL file
|
|
660
|
+
parsed = self._parse_jsonl_session(jsonl_path)
|
|
661
|
+
if parsed is None or "_skip_reason" in parsed:
|
|
662
|
+
stats["failed"] += 1
|
|
663
|
+
if parsed:
|
|
664
|
+
reason = parsed.get("_skip_reason", "unknown")
|
|
665
|
+
if reason == "empty":
|
|
666
|
+
stats["empty"] += 1
|
|
667
|
+
elif reason == "parse_error":
|
|
668
|
+
stats["parse_error"] += 1
|
|
669
|
+
continue
|
|
670
|
+
|
|
671
|
+
metadata = parsed["metadata"]
|
|
672
|
+
first_msg = parsed["first_msg"]
|
|
673
|
+
last_msg = parsed["last_msg"]
|
|
674
|
+
|
|
675
|
+
# Skip helper sessions (SDK/headless sessions used for analysis)
|
|
676
|
+
if metadata.get("session_type") == "helper":
|
|
677
|
+
stats["skipped"] += 1
|
|
678
|
+
# Mark as indexed so we don't re-check next time
|
|
679
|
+
self.state.mark_indexed(jsonl_path)
|
|
680
|
+
continue
|
|
681
|
+
|
|
682
|
+
# Skip sessions run from inside claude_home or codex_home directories
|
|
683
|
+
cwd = metadata.get("cwd", "") or ""
|
|
684
|
+
if cwd and (
|
|
685
|
+
(claude_home_str and cwd.startswith(claude_home_str))
|
|
686
|
+
or (codex_home_str and cwd.startswith(codex_home_str))
|
|
687
|
+
):
|
|
688
|
+
stats["skipped"] += 1
|
|
689
|
+
continue
|
|
690
|
+
|
|
691
|
+
try:
|
|
692
|
+
session_id = metadata.get("session_id", "")
|
|
693
|
+
file_path_str = str(jsonl_path)
|
|
694
|
+
|
|
695
|
+
# Delete by file path (unique), not sessionId (shared by sub-agents)
|
|
696
|
+
writer.delete_documents("export_path", file_path_str)
|
|
697
|
+
|
|
698
|
+
# Create document
|
|
699
|
+
doc = tantivy.Document()
|
|
700
|
+
doc.add_text("session_id", session_id)
|
|
701
|
+
doc.add_text("agent", metadata.get("agent", ""))
|
|
702
|
+
doc.add_text("project", metadata.get("project", ""))
|
|
703
|
+
doc.add_text("branch", metadata.get("branch", "") or "")
|
|
704
|
+
doc.add_text("cwd", metadata.get("cwd", "") or "")
|
|
705
|
+
doc.add_text("created", metadata.get("created", "") or "")
|
|
706
|
+
modified_str = metadata.get("modified", "")
|
|
707
|
+
doc.add_text("modified", modified_str)
|
|
708
|
+
doc.add_unsigned("modified_ts", _iso_to_epoch_ms(modified_str))
|
|
709
|
+
doc.add_integer("lines", parsed.get("lines", 0))
|
|
710
|
+
doc.add_text("export_path", parsed["file_path"]) # Store JSONL path
|
|
711
|
+
|
|
712
|
+
# First and last message fields
|
|
713
|
+
doc.add_text("first_msg_role", first_msg.get("role", ""))
|
|
714
|
+
doc.add_text("first_msg_content", first_msg.get("content", ""))
|
|
715
|
+
doc.add_text("last_msg_role", last_msg.get("role", ""))
|
|
716
|
+
doc.add_text("last_msg_content", last_msg.get("content", ""))
|
|
717
|
+
|
|
718
|
+
# Session type fields
|
|
719
|
+
doc.add_text(
|
|
720
|
+
"derivation_type", metadata.get("derivation_type", "") or ""
|
|
721
|
+
)
|
|
722
|
+
doc.add_text(
|
|
723
|
+
"is_sidechain",
|
|
724
|
+
"true" if metadata.get("is_sidechain") else "false"
|
|
725
|
+
)
|
|
726
|
+
|
|
727
|
+
# Source home (for filtering by source directory)
|
|
728
|
+
# Detect from path whether this is a Claude or Codex session
|
|
729
|
+
agent = metadata.get("agent", "")
|
|
730
|
+
if agent == "codex" or ".codex" in file_path_str:
|
|
731
|
+
# Codex session - store codex home
|
|
732
|
+
doc.add_text("claude_home", codex_home_str)
|
|
733
|
+
else:
|
|
734
|
+
# Claude session - store claude home
|
|
735
|
+
doc.add_text("claude_home", claude_home_str)
|
|
736
|
+
|
|
737
|
+
doc.add_text("content", parsed["content"])
|
|
738
|
+
|
|
739
|
+
writer.add_document(doc)
|
|
740
|
+
self.state.mark_indexed(jsonl_path)
|
|
741
|
+
stats["indexed"] += 1
|
|
742
|
+
except Exception:
|
|
743
|
+
stats["failed"] += 1
|
|
744
|
+
stats["index_error"] += 1
|
|
745
|
+
|
|
746
|
+
self.commit_and_reload(writer)
|
|
747
|
+
|
|
748
|
+
return stats
|
|
749
|
+
|
|
750
|
+
def prune_deleted(self) -> int:
|
|
751
|
+
"""
|
|
752
|
+
Remove deleted files from the index.
|
|
753
|
+
|
|
754
|
+
Checks all files tracked in the index state and removes any that
|
|
755
|
+
no longer exist on disk. This handles the case where sessions are
|
|
756
|
+
deleted outside of the search tool.
|
|
757
|
+
|
|
758
|
+
Returns:
|
|
759
|
+
Number of entries pruned from the index.
|
|
760
|
+
"""
|
|
761
|
+
if not self.state.indexed_files:
|
|
762
|
+
return 0
|
|
763
|
+
|
|
764
|
+
# First pass: identify deleted files
|
|
765
|
+
files_to_remove = [
|
|
766
|
+
file_path for file_path in self.state.indexed_files
|
|
767
|
+
if not Path(file_path).exists()
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
if not files_to_remove:
|
|
771
|
+
return 0
|
|
772
|
+
|
|
773
|
+
# Only create writer if we have deletions
|
|
774
|
+
writer = self.get_writer()
|
|
775
|
+
|
|
776
|
+
for file_path in files_to_remove:
|
|
777
|
+
# Delete from Tantivy index
|
|
778
|
+
writer.delete_documents("export_path", file_path)
|
|
779
|
+
# Remove from state tracking
|
|
780
|
+
del self.state.indexed_files[file_path]
|
|
781
|
+
|
|
782
|
+
self.commit_and_reload(writer)
|
|
783
|
+
|
|
784
|
+
return len(files_to_remove)
|
|
785
|
+
|
|
786
|
+
def _generate_snippet(
|
|
787
|
+
self, content: str, query: str, max_len: int = 200
|
|
788
|
+
) -> str:
|
|
789
|
+
"""
|
|
790
|
+
Generate a snippet centered around the first match.
|
|
791
|
+
|
|
792
|
+
Args:
|
|
793
|
+
content: Full content text
|
|
794
|
+
query: Search query
|
|
795
|
+
max_len: Maximum snippet length
|
|
796
|
+
|
|
797
|
+
Returns:
|
|
798
|
+
Snippet with match context
|
|
799
|
+
"""
|
|
800
|
+
if not query:
|
|
801
|
+
# For empty query, return start of content
|
|
802
|
+
return content[:max_len].strip() + "..." if len(content) > max_len else content.strip()
|
|
803
|
+
|
|
804
|
+
lower_content = content.lower()
|
|
805
|
+
lower_query = query.lower()
|
|
806
|
+
|
|
807
|
+
# Find first occurrence
|
|
808
|
+
pos = lower_content.find(lower_query)
|
|
809
|
+
if pos == -1:
|
|
810
|
+
# Try individual words
|
|
811
|
+
for word in query.split():
|
|
812
|
+
pos = lower_content.find(word.lower())
|
|
813
|
+
if pos != -1:
|
|
814
|
+
break
|
|
815
|
+
|
|
816
|
+
if pos == -1:
|
|
817
|
+
return content[:max_len].strip() + "..."
|
|
818
|
+
|
|
819
|
+
# Center snippet around match
|
|
820
|
+
half_len = max_len // 2
|
|
821
|
+
start = max(0, pos - half_len)
|
|
822
|
+
end = min(len(content), pos + len(query) + half_len)
|
|
823
|
+
|
|
824
|
+
snippet = content[start:end].strip()
|
|
825
|
+
|
|
826
|
+
# Add ellipses
|
|
827
|
+
if start > 0:
|
|
828
|
+
snippet = "..." + snippet
|
|
829
|
+
if end < len(content):
|
|
830
|
+
snippet = snippet + "..."
|
|
831
|
+
|
|
832
|
+
# Clean up newlines
|
|
833
|
+
snippet = " ".join(snippet.split())
|
|
834
|
+
|
|
835
|
+
return snippet
|
|
836
|
+
|
|
837
|
+
def _calculate_recency_score(
|
|
838
|
+
self, modified: str, base_score: float, half_life_days: float = 7.0
|
|
839
|
+
) -> float:
|
|
840
|
+
"""
|
|
841
|
+
Apply recency boost using exponential decay.
|
|
842
|
+
|
|
843
|
+
Args:
|
|
844
|
+
modified: ISO format timestamp
|
|
845
|
+
base_score: Original Tantivy score
|
|
846
|
+
half_life_days: Days for score to decay by half
|
|
847
|
+
|
|
848
|
+
Returns:
|
|
849
|
+
Score with recency boost (up to 2x for very recent)
|
|
850
|
+
"""
|
|
851
|
+
try:
|
|
852
|
+
# Parse modified timestamp
|
|
853
|
+
if "T" in modified:
|
|
854
|
+
mod_time = datetime.fromisoformat(modified.replace("Z", "+00:00"))
|
|
855
|
+
else:
|
|
856
|
+
mod_time = datetime.fromisoformat(modified)
|
|
857
|
+
|
|
858
|
+
now = datetime.now(mod_time.tzinfo) if mod_time.tzinfo else datetime.now()
|
|
859
|
+
age_seconds = (now - mod_time).total_seconds()
|
|
860
|
+
|
|
861
|
+
half_life_secs = half_life_days * 24 * 3600
|
|
862
|
+
recency_boost = 1.0 + math.exp(-age_seconds / half_life_secs)
|
|
863
|
+
|
|
864
|
+
return base_score * recency_boost
|
|
865
|
+
except Exception:
|
|
866
|
+
return base_score
|
|
867
|
+
|
|
868
|
+
def search(
|
|
869
|
+
self,
|
|
870
|
+
query: str,
|
|
871
|
+
limit: int = 50,
|
|
872
|
+
project: Optional[str] = None,
|
|
873
|
+
) -> list[dict[str, Any]]:
|
|
874
|
+
"""
|
|
875
|
+
Search the index.
|
|
876
|
+
|
|
877
|
+
Args:
|
|
878
|
+
query: Search query (empty returns recent sessions)
|
|
879
|
+
limit: Maximum results
|
|
880
|
+
project: Filter to specific project
|
|
881
|
+
|
|
882
|
+
Returns:
|
|
883
|
+
List of result dicts with metadata and snippets
|
|
884
|
+
"""
|
|
885
|
+
if not query and not project:
|
|
886
|
+
return self.get_recent(limit=limit)
|
|
887
|
+
|
|
888
|
+
searcher = self.index.searcher()
|
|
889
|
+
|
|
890
|
+
# Build query
|
|
891
|
+
if query:
|
|
892
|
+
# Use Index.parse_query with default fields
|
|
893
|
+
parsed_query = self.index.parse_query(query, ["content"])
|
|
894
|
+
else:
|
|
895
|
+
# Match all for project filter
|
|
896
|
+
parsed_query = self.index.parse_query("*", ["content"])
|
|
897
|
+
|
|
898
|
+
# Execute search
|
|
899
|
+
results = []
|
|
900
|
+
top_docs = searcher.search(parsed_query, limit * 2) # Fetch extra for filtering
|
|
901
|
+
|
|
902
|
+
for score, doc_address in top_docs.hits:
|
|
903
|
+
doc = searcher.doc(doc_address)
|
|
904
|
+
|
|
905
|
+
# Extract fields
|
|
906
|
+
session_id = doc.get_first("session_id")
|
|
907
|
+
agent = doc.get_first("agent")
|
|
908
|
+
doc_project = doc.get_first("project")
|
|
909
|
+
branch = doc.get_first("branch")
|
|
910
|
+
cwd = doc.get_first("cwd")
|
|
911
|
+
created = doc.get_first("created")
|
|
912
|
+
modified = doc.get_first("modified")
|
|
913
|
+
lines = doc.get_first("lines")
|
|
914
|
+
export_path = doc.get_first("export_path")
|
|
915
|
+
content = doc.get_first("content")
|
|
916
|
+
|
|
917
|
+
# Apply project filter
|
|
918
|
+
if project and doc_project != project:
|
|
919
|
+
continue
|
|
920
|
+
|
|
921
|
+
# Skip if session file no longer exists (deleted outside of search)
|
|
922
|
+
if export_path and not Path(export_path).exists():
|
|
923
|
+
continue
|
|
924
|
+
|
|
925
|
+
# Generate snippet
|
|
926
|
+
snippet = self._generate_snippet(content, query)
|
|
927
|
+
|
|
928
|
+
# Apply recency scoring
|
|
929
|
+
final_score = self._calculate_recency_score(modified, score)
|
|
930
|
+
|
|
931
|
+
# Extract first/last message fields
|
|
932
|
+
first_msg_role = doc.get_first("first_msg_role") or ""
|
|
933
|
+
first_msg_content = doc.get_first("first_msg_content") or ""
|
|
934
|
+
last_msg_role = doc.get_first("last_msg_role") or ""
|
|
935
|
+
last_msg_content = doc.get_first("last_msg_content") or ""
|
|
936
|
+
|
|
937
|
+
results.append({
|
|
938
|
+
"session_id": session_id,
|
|
939
|
+
"agent": agent,
|
|
940
|
+
"project": doc_project,
|
|
941
|
+
"branch": branch,
|
|
942
|
+
"cwd": cwd,
|
|
943
|
+
"created": created,
|
|
944
|
+
"modified": modified,
|
|
945
|
+
"lines": lines,
|
|
946
|
+
"export_path": export_path,
|
|
947
|
+
"snippet": snippet,
|
|
948
|
+
"score": final_score,
|
|
949
|
+
"first_msg_role": first_msg_role,
|
|
950
|
+
"first_msg_content": first_msg_content,
|
|
951
|
+
"last_msg_role": last_msg_role,
|
|
952
|
+
"last_msg_content": last_msg_content,
|
|
953
|
+
})
|
|
954
|
+
|
|
955
|
+
if len(results) >= limit:
|
|
956
|
+
break
|
|
957
|
+
|
|
958
|
+
# Sort by score (recency-adjusted)
|
|
959
|
+
results.sort(key=lambda x: x["score"], reverse=True)
|
|
960
|
+
|
|
961
|
+
return results
|
|
962
|
+
|
|
963
|
+
def get_recent(
|
|
964
|
+
self, limit: int = 20, project: Optional[str] = None
|
|
965
|
+
) -> list[dict[str, Any]]:
|
|
966
|
+
"""
|
|
967
|
+
Get recent sessions sorted by modification time.
|
|
968
|
+
|
|
969
|
+
Args:
|
|
970
|
+
limit: Maximum results
|
|
971
|
+
project: Filter to specific project
|
|
972
|
+
|
|
973
|
+
Returns:
|
|
974
|
+
List of result dicts sorted by recency
|
|
975
|
+
"""
|
|
976
|
+
searcher = self.index.searcher()
|
|
977
|
+
|
|
978
|
+
# Match all documents
|
|
979
|
+
all_query = tantivy.Query.all_query()
|
|
980
|
+
top_docs = searcher.search(all_query, limit * 3) # Fetch extra for filtering
|
|
981
|
+
|
|
982
|
+
results = []
|
|
983
|
+
for _, doc_address in top_docs.hits:
|
|
984
|
+
doc = searcher.doc(doc_address)
|
|
985
|
+
|
|
986
|
+
doc_project = doc.get_first("project")
|
|
987
|
+
export_path = doc.get_first("export_path")
|
|
988
|
+
|
|
989
|
+
# Apply project filter
|
|
990
|
+
if project and doc_project != project:
|
|
991
|
+
continue
|
|
992
|
+
|
|
993
|
+
# Skip if session file no longer exists (deleted outside of search)
|
|
994
|
+
if export_path and not Path(export_path).exists():
|
|
995
|
+
continue
|
|
996
|
+
|
|
997
|
+
modified = doc.get_first("modified")
|
|
998
|
+
content = doc.get_first("content")
|
|
999
|
+
|
|
1000
|
+
results.append({
|
|
1001
|
+
"session_id": doc.get_first("session_id"),
|
|
1002
|
+
"agent": doc.get_first("agent"),
|
|
1003
|
+
"project": doc_project,
|
|
1004
|
+
"branch": doc.get_first("branch"),
|
|
1005
|
+
"cwd": doc.get_first("cwd"),
|
|
1006
|
+
"created": doc.get_first("created"),
|
|
1007
|
+
"modified": modified,
|
|
1008
|
+
"lines": doc.get_first("lines"),
|
|
1009
|
+
"export_path": export_path,
|
|
1010
|
+
"snippet": self._generate_snippet(content, ""),
|
|
1011
|
+
"score": 0.0,
|
|
1012
|
+
"first_msg_role": doc.get_first("first_msg_role") or "",
|
|
1013
|
+
"first_msg_content": doc.get_first("first_msg_content") or "",
|
|
1014
|
+
"last_msg_role": doc.get_first("last_msg_role") or "",
|
|
1015
|
+
"last_msg_content": doc.get_first("last_msg_content") or "",
|
|
1016
|
+
"claude_home": doc.get_first("claude_home") or "",
|
|
1017
|
+
})
|
|
1018
|
+
|
|
1019
|
+
# Sort by modified timestamp (most recent first)
|
|
1020
|
+
results.sort(key=lambda x: x["modified"] or "", reverse=True)
|
|
1021
|
+
|
|
1022
|
+
return results[:limit]
|
|
1023
|
+
|
|
1024
|
+
def get_latest_session(
|
|
1025
|
+
self,
|
|
1026
|
+
cwd: Optional[str] = None,
|
|
1027
|
+
branch: Optional[str] = None,
|
|
1028
|
+
agent: Optional[str] = None,
|
|
1029
|
+
include_sub_agents: bool = False,
|
|
1030
|
+
) -> Optional[dict[str, Any]]:
|
|
1031
|
+
"""
|
|
1032
|
+
Get the most recent session matching the given criteria.
|
|
1033
|
+
|
|
1034
|
+
Uses Tantivy's native sorting by modified_ts fast field for efficiency.
|
|
1035
|
+
|
|
1036
|
+
Args:
|
|
1037
|
+
cwd: Filter to sessions from this working directory
|
|
1038
|
+
branch: Filter to sessions on this git branch
|
|
1039
|
+
agent: Filter to specific agent ("claude" or "codex")
|
|
1040
|
+
include_sub_agents: If False (default), exclude sub-agent sessions
|
|
1041
|
+
|
|
1042
|
+
Returns:
|
|
1043
|
+
Dict with session info, or None if no matching session found
|
|
1044
|
+
"""
|
|
1045
|
+
searcher = self.index.searcher()
|
|
1046
|
+
|
|
1047
|
+
# Build query string for filtering
|
|
1048
|
+
# Use parse_query with field:value syntax for exact matches
|
|
1049
|
+
query_terms = []
|
|
1050
|
+
|
|
1051
|
+
if agent:
|
|
1052
|
+
query_terms.append(f'agent:"{agent}"')
|
|
1053
|
+
|
|
1054
|
+
if cwd:
|
|
1055
|
+
# Escape special chars in cwd path
|
|
1056
|
+
escaped_cwd = cwd.replace('"', '\\"')
|
|
1057
|
+
query_terms.append(f'cwd:"{escaped_cwd}"')
|
|
1058
|
+
|
|
1059
|
+
if branch:
|
|
1060
|
+
query_terms.append(f'branch:"{branch}"')
|
|
1061
|
+
|
|
1062
|
+
# Combine with AND, or use match-all if no filters
|
|
1063
|
+
if query_terms:
|
|
1064
|
+
query_str = " AND ".join(query_terms)
|
|
1065
|
+
query = self.index.parse_query(query_str, ["content"])
|
|
1066
|
+
else:
|
|
1067
|
+
query = tantivy.Query.all_query()
|
|
1068
|
+
|
|
1069
|
+
# Search with native sorting by modified_ts descending (most recent first)
|
|
1070
|
+
# Fetch enough to find valid ones after filtering deleted files and sub-agents
|
|
1071
|
+
top_docs = searcher.search(
|
|
1072
|
+
query,
|
|
1073
|
+
limit=100,
|
|
1074
|
+
order_by_field="modified_ts",
|
|
1075
|
+
order=tantivy.Order.Desc,
|
|
1076
|
+
)
|
|
1077
|
+
|
|
1078
|
+
# Iterate through results (already sorted by recency) and return first valid
|
|
1079
|
+
for _, doc_address in top_docs.hits:
|
|
1080
|
+
doc = searcher.doc(doc_address)
|
|
1081
|
+
export_path = doc.get_first("export_path")
|
|
1082
|
+
|
|
1083
|
+
# Skip if session file no longer exists
|
|
1084
|
+
if export_path and not Path(export_path).exists():
|
|
1085
|
+
continue
|
|
1086
|
+
|
|
1087
|
+
# Filter out sub-agents unless requested
|
|
1088
|
+
if not include_sub_agents:
|
|
1089
|
+
if export_path and (
|
|
1090
|
+
"/agent-" in export_path or
|
|
1091
|
+
export_path.split("/")[-1].startswith("agent-")
|
|
1092
|
+
):
|
|
1093
|
+
continue
|
|
1094
|
+
|
|
1095
|
+
# Found a valid session - return it
|
|
1096
|
+
modified = doc.get_first("modified")
|
|
1097
|
+
content = doc.get_first("content")
|
|
1098
|
+
|
|
1099
|
+
return {
|
|
1100
|
+
"session_id": doc.get_first("session_id"),
|
|
1101
|
+
"agent": doc.get_first("agent"),
|
|
1102
|
+
"project": doc.get_first("project"),
|
|
1103
|
+
"branch": doc.get_first("branch"),
|
|
1104
|
+
"cwd": doc.get_first("cwd"),
|
|
1105
|
+
"created": doc.get_first("created"),
|
|
1106
|
+
"modified": modified,
|
|
1107
|
+
"lines": doc.get_first("lines"),
|
|
1108
|
+
"export_path": export_path,
|
|
1109
|
+
"snippet": self._generate_snippet(content, "") if content else "",
|
|
1110
|
+
"score": 0.0,
|
|
1111
|
+
"first_msg_role": doc.get_first("first_msg_role") or "",
|
|
1112
|
+
"first_msg_content": doc.get_first("first_msg_content") or "",
|
|
1113
|
+
"last_msg_role": doc.get_first("last_msg_role") or "",
|
|
1114
|
+
"last_msg_content": doc.get_first("last_msg_content") or "",
|
|
1115
|
+
"derivation_type": doc.get_first("derivation_type") or "",
|
|
1116
|
+
"is_sidechain": doc.get_first("is_sidechain") or "false",
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
return None
|
|
1120
|
+
|
|
1121
|
+
|
|
1122
|
+
def get_latest_session_from_index(
|
|
1123
|
+
cwd: Optional[str] = None,
|
|
1124
|
+
branch: Optional[str] = None,
|
|
1125
|
+
agent: Optional[str] = None,
|
|
1126
|
+
index_path: Optional[Path] = None,
|
|
1127
|
+
) -> Optional[dict[str, Any]]:
|
|
1128
|
+
"""
|
|
1129
|
+
Convenience function to get latest session from the index.
|
|
1130
|
+
|
|
1131
|
+
Args:
|
|
1132
|
+
cwd: Filter to sessions from this working directory
|
|
1133
|
+
branch: Filter to sessions on this git branch
|
|
1134
|
+
agent: Filter to specific agent ("claude" or "codex")
|
|
1135
|
+
index_path: Path to index (default: ~/.cctools/search-index)
|
|
1136
|
+
|
|
1137
|
+
Returns:
|
|
1138
|
+
Dict with session info including 'session_id' and 'export_path',
|
|
1139
|
+
or None if no matching session found
|
|
1140
|
+
"""
|
|
1141
|
+
if index_path is None:
|
|
1142
|
+
index_path = Path.home() / ".cctools" / "search-index"
|
|
1143
|
+
|
|
1144
|
+
if not index_path.exists():
|
|
1145
|
+
return None
|
|
1146
|
+
|
|
1147
|
+
try:
|
|
1148
|
+
idx = SessionIndex(index_path)
|
|
1149
|
+
return idx.get_latest_session(cwd=cwd, branch=branch, agent=agent)
|
|
1150
|
+
except Exception:
|
|
1151
|
+
return None
|
|
1152
|
+
|
|
1153
|
+
|
|
1154
|
+
def auto_index(
|
|
1155
|
+
index_path: Optional[Path] = None,
|
|
1156
|
+
claude_home: Optional[Path] = None,
|
|
1157
|
+
codex_home: Optional[Path] = None,
|
|
1158
|
+
verbose: bool = False,
|
|
1159
|
+
silent: bool = False,
|
|
1160
|
+
) -> dict[str, Any]:
|
|
1161
|
+
"""
|
|
1162
|
+
Automatically index new/changed session files on launch.
|
|
1163
|
+
|
|
1164
|
+
This implements the "zero-config" Recall model approach:
|
|
1165
|
+
- Scans session directories for JSONL files
|
|
1166
|
+
- Indexes new/modified files incrementally
|
|
1167
|
+
- Returns quickly if nothing changed
|
|
1168
|
+
|
|
1169
|
+
Args:
|
|
1170
|
+
index_path: Path to Tantivy index (default: ~/.cctools/search-index)
|
|
1171
|
+
claude_home: Claude home directory (default: ~/.claude)
|
|
1172
|
+
codex_home: Codex home directory (default: ~/.codex)
|
|
1173
|
+
verbose: If True, print progress messages
|
|
1174
|
+
silent: If True, suppress ALL output including progress bars (for JSON mode)
|
|
1175
|
+
|
|
1176
|
+
Returns:
|
|
1177
|
+
Dict with stats: {indexed, skipped, failed, total_files}
|
|
1178
|
+
"""
|
|
1179
|
+
_require_deps()
|
|
1180
|
+
|
|
1181
|
+
# Default paths
|
|
1182
|
+
if index_path is None:
|
|
1183
|
+
index_path = Path.home() / ".cctools" / "search-index"
|
|
1184
|
+
if claude_home is None:
|
|
1185
|
+
claude_home = Path.home() / ".claude"
|
|
1186
|
+
if codex_home is None:
|
|
1187
|
+
codex_home = Path.home() / ".codex"
|
|
1188
|
+
|
|
1189
|
+
# Find all JSONL session files
|
|
1190
|
+
jsonl_files: list[Path] = []
|
|
1191
|
+
claude_file_count = 0
|
|
1192
|
+
codex_file_count = 0
|
|
1193
|
+
|
|
1194
|
+
# Claude sessions: ~/.claude/projects/**/*.jsonl
|
|
1195
|
+
claude_projects = claude_home / "projects"
|
|
1196
|
+
if claude_projects.exists():
|
|
1197
|
+
claude_files = list(claude_projects.glob("**/*.jsonl"))
|
|
1198
|
+
claude_file_count = len(claude_files)
|
|
1199
|
+
jsonl_files.extend(claude_files)
|
|
1200
|
+
|
|
1201
|
+
# Codex sessions: ~/.codex/sessions/YYYY/MM/DD/*.jsonl (fixed depth)
|
|
1202
|
+
codex_sessions = codex_home / "sessions"
|
|
1203
|
+
if codex_sessions.exists():
|
|
1204
|
+
codex_files = list(codex_sessions.glob("????/??/??/*.jsonl"))
|
|
1205
|
+
codex_file_count = len(codex_files)
|
|
1206
|
+
jsonl_files.extend(codex_files)
|
|
1207
|
+
|
|
1208
|
+
if verbose and not silent:
|
|
1209
|
+
print(f"Claude home: {claude_home} ({claude_file_count} files)")
|
|
1210
|
+
print(f"Codex home: {codex_home} ({codex_file_count} files)")
|
|
1211
|
+
print(f"Total: {len(jsonl_files)} session files to check")
|
|
1212
|
+
|
|
1213
|
+
if not jsonl_files:
|
|
1214
|
+
return {
|
|
1215
|
+
"indexed": 0, "skipped": 0, "failed": 0,
|
|
1216
|
+
"total_files": 0, "claude_files": 0, "codex_files": 0,
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
# Create/open index and run incremental indexing
|
|
1220
|
+
# In silent mode, suppress tqdm progress bar for clean JSON output
|
|
1221
|
+
index = SessionIndex(index_path)
|
|
1222
|
+
stats = index.index_from_jsonl(
|
|
1223
|
+
jsonl_files,
|
|
1224
|
+
incremental=True,
|
|
1225
|
+
claude_home=claude_home,
|
|
1226
|
+
codex_home=codex_home,
|
|
1227
|
+
show_progress=not silent,
|
|
1228
|
+
)
|
|
1229
|
+
stats["total_files"] = len(jsonl_files)
|
|
1230
|
+
stats["claude_files"] = claude_file_count
|
|
1231
|
+
stats["codex_files"] = codex_file_count
|
|
1232
|
+
|
|
1233
|
+
# Prune deleted sessions from index
|
|
1234
|
+
pruned = index.prune_deleted()
|
|
1235
|
+
stats["pruned"] = pruned
|
|
1236
|
+
|
|
1237
|
+
# Always show indexing/pruning activity (even non-verbose), but suppress in silent mode
|
|
1238
|
+
if not silent:
|
|
1239
|
+
if stats["indexed"] > 0:
|
|
1240
|
+
print(f"Indexed {stats['indexed']} new/modified sessions")
|
|
1241
|
+
if pruned > 0:
|
|
1242
|
+
print(f"Pruned {pruned} deleted sessions from index")
|
|
1243
|
+
# Only show "up to date" in verbose mode (avoid noise on every command)
|
|
1244
|
+
if verbose and stats["indexed"] == 0 and pruned == 0:
|
|
1245
|
+
print("Index up to date")
|
|
1246
|
+
|
|
1247
|
+
return stats
|