shortcutxl 0.2.19 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/agent-docs/api-reference.json +2041 -0
- package/agent-docs/examples/extensions/built-in-tool-renderer.ts +2 -13
- package/agent-docs/examples/extensions/claude-code.ts +69 -0
- package/agent-docs/examples/extensions/custom-provider-gitlab-duo/test.ts +1 -7
- package/agent-docs/examples/sdk/04-skills.ts +1 -6
- package/dist/cli/config-selector.js +1 -1
- package/dist/cli/session-picker.js +1 -1
- package/dist/config.js +15 -5
- package/dist/core/agent-loop.js +8 -9
- package/dist/core/agent-session.js +102 -462
- package/dist/core/agent.js +1 -0
- package/dist/core/export-html/template.js +14 -2
- package/dist/core/extensions/loader.js +4 -4
- package/dist/core/keybindings.js +1 -1
- package/dist/core/run-agent.js +84 -0
- package/dist/core/session/extension-emitter.js +36 -0
- package/dist/core/session/model-manager.js +111 -0
- package/dist/core/session/persistence-handler.js +104 -0
- package/dist/core/session/queue-tracker.js +91 -0
- package/dist/core/session/tool-registry.js +231 -0
- package/dist/core/settings-manager.js +11 -3
- package/dist/core/theme.js +1 -1
- package/dist/core/tools/edit.js +1 -1
- package/dist/core/tools/find.js +1 -1
- package/dist/core/tools/grep.js +1 -1
- package/dist/core/tools/ls.js +1 -1
- package/dist/core/tools/read.js +1 -1
- package/dist/core/tools/write.js +1 -1
- package/dist/custom/dev/index.js +16 -1
- package/dist/custom/excel-session.js +2 -2
- package/dist/custom/exec-mode-command.js +27 -0
- package/dist/custom/install-utils.js +1 -4
- package/dist/custom/new-sheet/api-guidelines.js +83 -0
- package/dist/custom/new-sheet/api-lookup.js +69 -0
- package/dist/custom/new-sheet/api-overlay.js +133 -0
- package/dist/custom/new-sheet/api-reference-loader.js +29 -0
- package/dist/custom/new-sheet/cell-diff/address-utils.js +80 -0
- package/dist/custom/new-sheet/cell-diff/cell-categorizer.js +100 -0
- package/dist/custom/new-sheet/cell-diff/cell-diff-formatter.js +201 -0
- package/dist/custom/new-sheet/cell-diff/index.js +23 -0
- package/dist/custom/new-sheet/cell-diff/types.js +33 -0
- package/dist/custom/new-sheet/mutation-tracker.js +358 -0
- package/dist/custom/new-sheet/sandbox-globals.js +118 -0
- package/dist/custom/new-sheet/sdk-types.js +9 -0
- package/dist/custom/new-sheet/sheet-engine-poc.js +112 -0
- package/dist/custom/new-sheet/sheet-engine.js +146 -0
- package/dist/custom/new-sheet/sheet-exec.js +219 -0
- package/dist/custom/new-sheet-command.js +24 -0
- package/dist/custom/preflight.js +28 -18
- package/dist/custom/prompts/action.js +33 -12
- package/dist/custom/prompts/shared.js +0 -6
- package/dist/custom/providers/llm-usage.js +1 -5
- package/dist/custom/providers/shortcut-invoke.js +3 -4
- package/dist/custom/providers/shortcut-stream.js +3 -4
- package/dist/custom/sandbox/index.js +6 -10
- package/dist/custom/sandbox/lib/bwrap.js +93 -0
- package/dist/custom/sandbox/lib/index.js +20 -0
- package/dist/custom/sandbox/lib/manager.js +87 -0
- package/dist/custom/sandbox/lib/network/domain-filter.js +29 -0
- package/dist/custom/sandbox/lib/network/http-proxy.js +172 -0
- package/dist/custom/sandbox/lib/network/index.js +5 -0
- package/dist/custom/sandbox/lib/network/proxy.js +145 -0
- package/dist/custom/sandbox/lib/network/socks-proxy.js +269 -0
- package/dist/custom/sandbox/{sandbox-paths.js → lib/paths.js} +1 -3
- package/dist/custom/sandbox/lib/resolve.js +320 -0
- package/dist/custom/sandbox/lib/smoke.js +87 -0
- package/dist/custom/sandbox/lib/types.js +9 -0
- package/dist/custom/sandbox/lib/wrap-command.js +110 -0
- package/dist/custom/sandbox/{wsl-detect.js → lib/wsl-detect.js} +10 -14
- package/dist/custom/sandbox/lib/wsl-setup.js +152 -0
- package/dist/custom/sandbox/sandbox-bash-tool.js +12 -7
- package/dist/custom/sandbox/sandbox-command.js +17 -16
- package/dist/custom/sandbox/sandbox-executor.js +13 -38
- package/dist/custom/sandbox/sandbox-manager.js +43 -31
- package/dist/custom/sandbox/sandbox-prompt.js +2 -2
- package/dist/custom/sandbox/tests/test-helpers.js +24 -0
- package/dist/custom/sheet-api/api-guidelines.js +83 -0
- package/dist/custom/sheet-api/api-lookup.js +69 -0
- package/dist/custom/sheet-api/api-overlay.js +133 -0
- package/dist/custom/sheet-api/api-reference-loader.js +29 -0
- package/dist/custom/sync-xll.js +1 -1
- package/dist/custom/tools/approval.js +2 -2
- package/dist/custom/tools/excel-exec.js +29 -9
- package/dist/custom/tools/llm-analysis.js +54 -29
- package/dist/custom/tools/task/task.js +4 -7
- package/dist/custom/tools/todo-list.js +5 -1
- package/dist/custom/tracing/session-upload.js +4 -1
- package/dist/custom/uninstall.js +31 -20
- package/dist/main.js +77 -22
- package/dist/modes/interactive/components/assistant-message.js +1 -1
- package/dist/modes/interactive/components/bash-execution.js +5 -9
- package/dist/modes/interactive/components/branch-summary-message.js +1 -1
- package/dist/modes/interactive/components/compaction-summary-message.js +1 -1
- package/dist/modes/interactive/components/config-selector.js +1 -1
- package/dist/modes/interactive/components/custom-editor.js +3 -1
- package/dist/modes/interactive/components/custom-message.js +1 -1
- package/dist/modes/interactive/components/extension-editor.js +1 -1
- package/dist/modes/interactive/components/extension-input.js +1 -1
- package/dist/modes/interactive/components/extension-selector.js +1 -1
- package/dist/modes/interactive/components/footer.js +3 -2
- package/dist/modes/interactive/components/keybinding-hints.js +1 -1
- package/dist/modes/interactive/components/layout.js +1 -1
- package/dist/modes/interactive/components/login-dialog.js +1 -1
- package/dist/modes/interactive/components/model-selector.js +1 -1
- package/dist/modes/interactive/components/oauth-selector.js +1 -1
- package/dist/modes/interactive/components/session-selector.js +1 -1
- package/dist/modes/interactive/components/skill-invocation-message.js +1 -1
- package/dist/modes/interactive/components/theme-selector.js +1 -1
- package/dist/modes/interactive/components/tool-execution.js +1 -1
- package/dist/modes/interactive/components/tool-group.js +1 -1
- package/dist/modes/interactive/components/tree-selector.js +1 -1
- package/dist/modes/interactive/components/user-message-selector.js +1 -1
- package/dist/modes/interactive/components/user-message.js +1 -1
- package/dist/modes/interactive/file-attachments.js +4 -9
- package/dist/modes/interactive/interactive-mode.js +8 -136
- package/dist/modes/print-mode.js +2 -1
- package/dist/modes/rpc/rpc-mode.js +3 -4
- package/dist/tui/autocomplete.js +543 -555
- package/dist/tui/components/box.js +93 -89
- package/dist/tui/components/cancellable-loader.js +23 -23
- package/dist/tui/components/editor.js +1671 -1642
- package/dist/tui/components/image.js +67 -63
- package/dist/tui/components/input.js +408 -408
- package/dist/tui/components/loader.js +42 -42
- package/dist/tui/components/markdown.js +612 -617
- package/dist/tui/components/select-list.js +148 -142
- package/dist/tui/components/settings-list.js +187 -172
- package/dist/tui/components/spacer.js +17 -17
- package/dist/tui/components/text.js +83 -80
- package/dist/tui/components/truncated-text.js +43 -43
- package/dist/tui/editor-component.js +1 -1
- package/dist/tui/fuzzy.js +86 -88
- package/dist/tui/get-east-asian-width/index.js +13 -17
- package/dist/tui/get-east-asian-width/lookup.js +386 -384
- package/dist/tui/index.js +54 -22
- package/dist/tui/keybindings.js +92 -95
- package/dist/tui/keys.js +794 -806
- package/dist/tui/kill-ring.js +31 -33
- package/dist/tui/stdin-buffer.js +236 -241
- package/dist/tui/terminal-image.js +210 -224
- package/dist/tui/terminal.js +235 -242
- package/dist/tui/tui/autocomplete.js +543 -555
- package/dist/tui/tui/components/box.js +91 -89
- package/dist/tui/tui/components/cancellable-loader.js +23 -23
- package/dist/tui/tui/components/editor.js +1671 -1642
- package/dist/tui/tui/components/image.js +67 -63
- package/dist/tui/tui/components/input.js +408 -408
- package/dist/tui/tui/components/loader.js +42 -42
- package/dist/tui/tui/components/markdown.js +612 -617
- package/dist/tui/tui/components/select-list.js +148 -142
- package/dist/tui/tui/components/settings-list.js +187 -172
- package/dist/tui/tui/components/spacer.js +17 -17
- package/dist/tui/tui/components/text.js +81 -80
- package/dist/tui/tui/components/truncated-text.js +43 -43
- package/dist/tui/tui/editor-component.js +1 -1
- package/dist/tui/tui/fuzzy.js +86 -88
- package/dist/tui/tui/get-east-asian-width/index.js +13 -17
- package/dist/tui/tui/get-east-asian-width/lookup.js +386 -384
- package/dist/tui/tui/index.js +54 -22
- package/dist/tui/tui/keybindings.js +92 -95
- package/dist/tui/tui/keys.js +794 -806
- package/dist/tui/tui/kill-ring.js +31 -33
- package/dist/tui/tui/stdin-buffer.js +236 -241
- package/dist/tui/tui/terminal-image.js +210 -224
- package/dist/tui/tui/terminal.js +235 -242
- package/dist/tui/tui/tui.js +908 -920
- package/dist/tui/tui/undo-stack.js +17 -17
- package/dist/tui/tui/utils.js +647 -674
- package/dist/tui/tui.js +908 -920
- package/dist/tui/undo-stack.js +17 -17
- package/dist/tui/utils.js +647 -674
- package/dist/utils/log.js +51 -0
- package/package.json +9 -5
- package/skills/{com-advanced-api → advanced-com-api}/SKILL.md +1 -1
- package/skills/advanced-com-api/excel-type-library.py +30935 -0
- package/skills/advanced-com-api/office-type-library.py +11220 -0
- package/skills/sec-edgar/sec_to_pdf.py +26 -28
- package/wsl/alpine-minirootfs.tar.gz +0 -0
- package/xll/ShortcutXL.xll +0 -0
- package/xll/modules/debug_render.py +289 -0
- package/xll/modules/shortcut_xl/_com.py +10 -11
- package/xll/modules/shortcut_xl/_diff_highlight.py +17 -15
- package/xll/modules/shortcut_xl/_exec_entry.py +32 -14
- package/xll/modules/shortcut_xl/_log.py +4 -4
- package/xll/modules/shortcut_xl/_managed.py +25 -8
- package/xll/modules/shortcut_xl/_registry.py +12 -7
- package/xll/modules/shortcut_xl/_threading.py +33 -20
- package/xll/modules/shortcut_xl/_tracking.py +31 -14
- package/xll/modules/shortcut_xl/api/categorize.py +31 -17
- package/xll/modules/shortcut_xl/api/format.py +16 -26
- package/xll/modules/shortcut_xl/api/named_ranges.py +10 -10
- package/xll/modules/shortcut_xl/api/picture.py +6 -6
- package/xll/modules/shortcut_xl/api/range_formatter.py +44 -22
- package/xll/modules/shortcut_xl/api/style.py +3 -3
- package/xll/modules/shortcut_xl/api/utils/helpers.py +16 -26
- package/xll/modules/shortcut_xl/api/utils/numerical.py +6 -1
- package/xll/modules/shortcut_xl/api/utils/ranges.py +12 -7
- package/xll/modules/shortcut_xl/api/workbook.py +14 -28
- package/xll/modules/shortcut_xl/api/worksheet.py +33 -49
- package/xll/modules/shortcut_xl/api-reference.py +9 -5
- package/xll/python/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/from_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/functools.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_process.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_trio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/_asyncio.py +39 -23
- package/xll/python/Lib/site-packages/anyio/_backends/_trio.py +2 -5
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_signals.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tasks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_typedattr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/_fileio.py +12 -10
- package/xll/python/Lib/site-packages/anyio/_core/_subprocesses.py +2 -8
- package/xll/python/Lib/site-packages/anyio/_core/_synchronization.py +4 -0
- package/xll/python/Lib/site-packages/anyio/_core/_tempfile.py +1 -4
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_sockets.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_streams.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_tasks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/_eventloop.py +2 -7
- package/xll/python/Lib/site-packages/anyio/abc/_sockets.py +5 -11
- package/xll/python/Lib/site-packages/anyio/abc/_streams.py +14 -20
- package/xll/python/Lib/site-packages/anyio/functools.py +51 -17
- package/xll/python/Lib/site-packages/anyio/pytest_plugin.py +62 -1
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/stapled.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/file.py +5 -5
- package/xll/python/Lib/site-packages/anyio/streams/tls.py +6 -9
- package/xll/python/Lib/site-packages/anyio/to_thread.py +3 -3
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/METADATA +14 -5
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/RECORD +21 -21
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/WHEEL +1 -1
- package/xll/python/Lib/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/incremental_tree.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_abnf.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_events.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_headers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_readers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_receivebuffer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_state.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_writers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_ssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_synchronization.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_trace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http11.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http2.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/interfaces.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/anyio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/auto.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/mock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/sync.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/trio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http11.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http2.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/__version__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_client.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_config.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_content.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_decoders.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_multipart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_types.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_urlparse.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_urls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/asgi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/default.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/mock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/wsgi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +1 -1
- package/xll/python/Lib/site-packages/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/_constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/cell.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/read_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/rich_text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_3d.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/area_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/axis.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bar_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bubble_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/chartspace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/data_source.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/descriptors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/error_bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/label.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/layout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/legend.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/line_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/marker.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pie_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pivot.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/plotarea.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/print_settings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/radar_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reader.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/scatter_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series_factory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/shapes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/stock_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/surface_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/title.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/trendline.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/updown_bars.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/chartsheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/publish.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/relation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/author.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comment_sheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comments.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/shape_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/abc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/numbers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/product.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/singleton.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/strings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/container.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/namespace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/nested.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/sequence.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/serialisable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/slots.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/colors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/connector.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/effect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/fill.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/geometry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/graphic.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/image.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/line.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/relation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/spreadsheet_drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/xdr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/formatting.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/rule.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/tokenizer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/translate.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/extended.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/interface.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/manifest.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/relationship.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/fields.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/record.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/drawings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/strings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/alignment.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/borders.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/builtins.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/cell_style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/colors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/differential.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fills.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fonts.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/named_styles.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/numbers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/styleable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/stylesheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/bound_dictionary.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/cell.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/dataframe.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/escape.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/formulas.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/indexed_list.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/inference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/units.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/child.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/defined_name.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/external_reference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/function_group.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/smart_tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/web.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/external.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_read_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_reader.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_write_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_range.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_watch.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/controls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/copier.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/datavalidation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/dimensions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/errors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/filters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/formula.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/header_footer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/hyperlink.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/merge.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/ole.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/page.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/pagebreak.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/print_settings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/related.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/scenario.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/smart_tag.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/worksheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/functions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/RECORD +3 -3
- package/xll/python/Scripts/httpx.exe +0 -0
- package/xll/python/Scripts/pip.exe +0 -0
- package/xll/python/Scripts/pip3.12.exe +0 -0
- package/xll/python/Scripts/pip3.exe +0 -0
- package/dist/custom/ensure-excel.js +0 -63
- package/dist/custom/sandbox/network/index.js +0 -8
- package/dist/custom/sandbox/network/network-proxy.js +0 -136
- package/dist/custom/sandbox/network/proxy-worker.py +0 -257
- package/dist/custom/sandbox/sandbox-config.js +0 -153
- package/dist/custom/sandbox/sandbox-smoke.js +0 -49
- package/dist/custom/sandbox/wsl-setup.js +0 -92
- package/dist/custom/tools/task/agents.js +0 -6
- package/skills/com-advanced-api/excel-type-library.py +0 -27767
- package/skills/com-advanced-api/office-type-library.py +0 -10867
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/INSTALLER +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/entry_points.txt +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/licenses/LICENSE +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,2041 @@
|
|
|
1
|
+
{
|
|
2
|
+
"interfaces": {
|
|
3
|
+
"Workbook": {
|
|
4
|
+
"docstring": null,
|
|
5
|
+
"functions": {
|
|
6
|
+
"getSheet": {
|
|
7
|
+
"signature": "getSheet(sheetId: string): Worksheet",
|
|
8
|
+
"docstring": "Get a sheet by internal SheetId. SYNC — no IPC needed. Throws KernelError if not found.",
|
|
9
|
+
"usedTypes": []
|
|
10
|
+
},
|
|
11
|
+
"getSheetByName": {
|
|
12
|
+
"signature": "getSheetByName(name: string): Promise<Worksheet>",
|
|
13
|
+
"docstring": "Get a sheet by name (case-insensitive). ASYNC — resolves name via Rust.",
|
|
14
|
+
"usedTypes": []
|
|
15
|
+
},
|
|
16
|
+
"getSheetByIndex": {
|
|
17
|
+
"signature": "getSheetByIndex(index: number): Promise<Worksheet>",
|
|
18
|
+
"docstring": "Get a sheet by 0-based index. ASYNC — resolves index via Rust.",
|
|
19
|
+
"usedTypes": []
|
|
20
|
+
},
|
|
21
|
+
"getActiveSheet": {
|
|
22
|
+
"signature": "getActiveSheet(): Worksheet",
|
|
23
|
+
"docstring": "Get the currently active sheet. SYNC — uses known activeSheetId.",
|
|
24
|
+
"usedTypes": []
|
|
25
|
+
},
|
|
26
|
+
"getOrCreateSheet": {
|
|
27
|
+
"signature": "getOrCreateSheet(name: string): Promise<{ sheet: Worksheet; created: boolean; }>",
|
|
28
|
+
"docstring": "Get a sheet by name, creating it if it doesn't exist.\n@param - Sheet name (case-insensitive lookup)\n@returns The sheet and whether it was newly created",
|
|
29
|
+
"usedTypes": []
|
|
30
|
+
},
|
|
31
|
+
"getSheetCount": {
|
|
32
|
+
"signature": "getSheetCount(): Promise<number>",
|
|
33
|
+
"docstring": "Get the number of sheets in the workbook. ASYNC — reads from Rust.",
|
|
34
|
+
"usedTypes": []
|
|
35
|
+
},
|
|
36
|
+
"getSheetNames": {
|
|
37
|
+
"signature": "getSheetNames(): Promise<string[]>",
|
|
38
|
+
"docstring": "Get the names of all sheets in order. ASYNC — reads from Rust.",
|
|
39
|
+
"usedTypes": []
|
|
40
|
+
},
|
|
41
|
+
"batch": {
|
|
42
|
+
"signature": "batch(fn: (wb: Workbook) => Promise<T>): Promise<T>",
|
|
43
|
+
"docstring": "Execute a batch of operations as a single undo step.\n\nAll operations inside the callback are grouped into one undo step.\nIf an operation throws, the undo group is closed and all prior writes\nin the batch remain committed (Excel-style best-effort, not transactional).\n\nNote: Each mutation within the batch still triggers its own recalc pass.\nTrue deferred recalculation (single recalc at batch end) is not yet implemented.",
|
|
44
|
+
"usedTypes": []
|
|
45
|
+
},
|
|
46
|
+
"createCheckpoint": {
|
|
47
|
+
"signature": "createCheckpoint(label?: string | undefined): string",
|
|
48
|
+
"docstring": "Create a named checkpoint (version snapshot). Returns the checkpoint ID.",
|
|
49
|
+
"usedTypes": []
|
|
50
|
+
},
|
|
51
|
+
"restoreCheckpoint": {
|
|
52
|
+
"signature": "restoreCheckpoint(id: string): Promise<void>",
|
|
53
|
+
"docstring": "Restore the workbook to a previously saved checkpoint.",
|
|
54
|
+
"usedTypes": []
|
|
55
|
+
},
|
|
56
|
+
"listCheckpoints": {
|
|
57
|
+
"signature": "listCheckpoints(): CheckpointInfo[]",
|
|
58
|
+
"docstring": "List all saved checkpoints.",
|
|
59
|
+
"usedTypes": []
|
|
60
|
+
},
|
|
61
|
+
"calculate": {
|
|
62
|
+
"signature": "calculate(): Promise<void>",
|
|
63
|
+
"docstring": "Trigger full recalculation of all formulas.",
|
|
64
|
+
"usedTypes": []
|
|
65
|
+
},
|
|
66
|
+
"suspendCalc": {
|
|
67
|
+
"signature": "suspendCalc(): void",
|
|
68
|
+
"docstring": "No-op. Reserved for future calc suspension support.",
|
|
69
|
+
"usedTypes": []
|
|
70
|
+
},
|
|
71
|
+
"resumeCalc": {
|
|
72
|
+
"signature": "resumeCalc(): Promise<void>",
|
|
73
|
+
"docstring": "No-op. Reserved for future calc suspension support.",
|
|
74
|
+
"usedTypes": []
|
|
75
|
+
},
|
|
76
|
+
"on": {
|
|
77
|
+
"signature": "on(event: T, handler: (event: EventByType<T>) => void): () => void",
|
|
78
|
+
"docstring": "Subscribe to a specific internal event type with full type inference.",
|
|
79
|
+
"usedTypes": []
|
|
80
|
+
},
|
|
81
|
+
"executeCode": {
|
|
82
|
+
"signature": "executeCode(code: string, options?: ExecuteOptions | undefined): Promise<CodeResult>",
|
|
83
|
+
"docstring": "Execute TypeScript/JavaScript code in the spreadsheet sandbox.",
|
|
84
|
+
"usedTypes": []
|
|
85
|
+
},
|
|
86
|
+
"getWorkbookSnapshot": {
|
|
87
|
+
"signature": "getWorkbookSnapshot(): Promise<WorkbookSnapshot>",
|
|
88
|
+
"docstring": "Get a summary snapshot of the entire workbook.",
|
|
89
|
+
"usedTypes": []
|
|
90
|
+
},
|
|
91
|
+
"getFunctionCatalog": {
|
|
92
|
+
"signature": "getFunctionCatalog(): FunctionInfo[]",
|
|
93
|
+
"docstring": "Get the catalog of all available spreadsheet functions.",
|
|
94
|
+
"usedTypes": []
|
|
95
|
+
},
|
|
96
|
+
"getFunctionInfo": {
|
|
97
|
+
"signature": "getFunctionInfo(name: string): FunctionInfo | null",
|
|
98
|
+
"docstring": "Get detailed info about a specific function.",
|
|
99
|
+
"usedTypes": []
|
|
100
|
+
},
|
|
101
|
+
"getAPIInfo": {
|
|
102
|
+
"signature": "getAPIInfo(functionName: string): string",
|
|
103
|
+
"docstring": "Get API documentation for a specific method.",
|
|
104
|
+
"usedTypes": []
|
|
105
|
+
},
|
|
106
|
+
"exportSnapshot": {
|
|
107
|
+
"signature": "exportSnapshot(): Promise<WorkbookSnapshot>",
|
|
108
|
+
"docstring": "Export the workbook as a snapshot.",
|
|
109
|
+
"usedTypes": []
|
|
110
|
+
},
|
|
111
|
+
"toBuffer": {
|
|
112
|
+
"signature": "toBuffer(): Promise<Uint8Array>",
|
|
113
|
+
"docstring": "Export the workbook as an XLSX binary buffer.",
|
|
114
|
+
"usedTypes": []
|
|
115
|
+
},
|
|
116
|
+
"copyRangeFrom": {
|
|
117
|
+
"signature": "copyRangeFrom(source: Workbook, fromRange: string, toRange: string): Promise<void>",
|
|
118
|
+
"docstring": "Copy a range from another workbook into this workbook.",
|
|
119
|
+
"usedTypes": []
|
|
120
|
+
},
|
|
121
|
+
"indexToAddress": {
|
|
122
|
+
"signature": "indexToAddress(row: number, col: number): string",
|
|
123
|
+
"docstring": "Convert row/col to A1 address: (0, 0) -> \"A1\"",
|
|
124
|
+
"usedTypes": []
|
|
125
|
+
},
|
|
126
|
+
"addressToIndex": {
|
|
127
|
+
"signature": "addressToIndex(address: string): { row: number; col: number; }",
|
|
128
|
+
"docstring": "Convert A1 address to row/col: \"A1\" -> { row: 0, col: 0 }",
|
|
129
|
+
"usedTypes": []
|
|
130
|
+
},
|
|
131
|
+
"getSettings": {
|
|
132
|
+
"signature": "getSettings(): Promise<WorkbookSettings>",
|
|
133
|
+
"docstring": "Get workbook-level settings.",
|
|
134
|
+
"usedTypes": [
|
|
135
|
+
"WorkbookSettings"
|
|
136
|
+
]
|
|
137
|
+
},
|
|
138
|
+
"setSettings": {
|
|
139
|
+
"signature": "setSettings(updates: Partial<WorkbookSettings>): Promise<void>",
|
|
140
|
+
"docstring": "Update workbook-level settings.",
|
|
141
|
+
"usedTypes": []
|
|
142
|
+
},
|
|
143
|
+
"dispose": {
|
|
144
|
+
"signature": "dispose(): void",
|
|
145
|
+
"docstring": "Dispose of the workbook and release resources.",
|
|
146
|
+
"usedTypes": []
|
|
147
|
+
},
|
|
148
|
+
"history.undo": {
|
|
149
|
+
"signature": "history.undo(): Promise<void>",
|
|
150
|
+
"docstring": "Undo the last operation.",
|
|
151
|
+
"usedTypes": []
|
|
152
|
+
},
|
|
153
|
+
"history.redo": {
|
|
154
|
+
"signature": "history.redo(): Promise<void>",
|
|
155
|
+
"docstring": "Redo the last undone operation.",
|
|
156
|
+
"usedTypes": []
|
|
157
|
+
},
|
|
158
|
+
"history.canUndo": {
|
|
159
|
+
"signature": "history.canUndo(): boolean",
|
|
160
|
+
"docstring": "Check if undo is available. Synchronous (uses cached state).",
|
|
161
|
+
"usedTypes": []
|
|
162
|
+
},
|
|
163
|
+
"history.canRedo": {
|
|
164
|
+
"signature": "history.canRedo(): boolean",
|
|
165
|
+
"docstring": "Check if redo is available. Synchronous (uses cached state).",
|
|
166
|
+
"usedTypes": []
|
|
167
|
+
},
|
|
168
|
+
"history.list": {
|
|
169
|
+
"signature": "history.list(): UndoHistoryEntry[]",
|
|
170
|
+
"docstring": "Get the undo history entries. Synchronous.",
|
|
171
|
+
"usedTypes": []
|
|
172
|
+
},
|
|
173
|
+
"history.goToIndex": {
|
|
174
|
+
"signature": "history.goToIndex(index: number): Promise<void>",
|
|
175
|
+
"docstring": "Undo to a specific index in the history.\nPerforms multiple undo operations to reach the target state.\n@param - Index in the history (0 = most recent operation)",
|
|
176
|
+
"usedTypes": []
|
|
177
|
+
},
|
|
178
|
+
"history.getState": {
|
|
179
|
+
"signature": "history.getState(): Promise<UndoState>",
|
|
180
|
+
"docstring": "Get the full undo/redo state from the compute engine.\nReturns depth counts used by CheckpointManager to track checkpoint state.",
|
|
181
|
+
"usedTypes": []
|
|
182
|
+
},
|
|
183
|
+
"history.subscribe": {
|
|
184
|
+
"signature": "history.subscribe(listener: (event: UndoStateChangeEvent) => void): CallableDisposable",
|
|
185
|
+
"docstring": "Subscribe to undo/redo state changes.\nCalled whenever the undo stack changes (push, undo, redo, clear).\n@returns Unsubscribe function",
|
|
186
|
+
"usedTypes": []
|
|
187
|
+
},
|
|
188
|
+
"history.setNextDescription": {
|
|
189
|
+
"signature": "history.setNextDescription(description: string): void",
|
|
190
|
+
"docstring": "Set the description for the next undo step.\nCall immediately before a mutation to label the undo entry.",
|
|
191
|
+
"usedTypes": []
|
|
192
|
+
},
|
|
193
|
+
"names.add": {
|
|
194
|
+
"signature": "names.add(name: string, reference: string, comment?: string | undefined): Promise<void>",
|
|
195
|
+
"docstring": "Define a new named range.\n@param - The name to define.\n@param - A1-style reference (e.g. \"Sheet1!$A$1:$B$10\"). May omit leading \"=\".\n@param - Optional descriptive comment.",
|
|
196
|
+
"usedTypes": []
|
|
197
|
+
},
|
|
198
|
+
"names.get": {
|
|
199
|
+
"signature": "names.get(name: string, scope?: string | undefined): Promise<NamedRangeInfo | null>",
|
|
200
|
+
"docstring": "Get a named range by name.\n@param - The name to look up.\n@param - Optional sheet name scope. Omit for workbook-scoped names.\n@returns The named range info, or null if not found.",
|
|
201
|
+
"usedTypes": [
|
|
202
|
+
"NamedRangeInfo"
|
|
203
|
+
]
|
|
204
|
+
},
|
|
205
|
+
"names.getRange": {
|
|
206
|
+
"signature": "names.getRange(name: string, scope?: string | undefined): Promise<NamedRangeReference | null>",
|
|
207
|
+
"docstring": "Get the parsed sheet reference for a named range.\nReturns the sheet name and range portion for names that refer to a simple\nsheet!range reference. Returns null if the name is not found or if the\nreference is not a simple sheet!range format (e.g., a formula).\n@param - The name to look up.\n@param - Optional sheet name scope. Omit for workbook-scoped names.\n@returns The parsed reference, or null if not found or not a simple range.",
|
|
208
|
+
"usedTypes": []
|
|
209
|
+
},
|
|
210
|
+
"names.remove": {
|
|
211
|
+
"signature": "names.remove(name: string, scope?: string | undefined): Promise<void>",
|
|
212
|
+
"docstring": "Remove a named range.\n@param - The name to remove.\n@param - Optional sheet name scope. Omit for workbook-scoped names.",
|
|
213
|
+
"usedTypes": []
|
|
214
|
+
},
|
|
215
|
+
"names.update": {
|
|
216
|
+
"signature": "names.update(name: string, updates: NamedRangeUpdateOptions): Promise<void>",
|
|
217
|
+
"docstring": "Update an existing named range.\n@param - The current name to update.\n@param - Fields to change (name, reference, comment).",
|
|
218
|
+
"usedTypes": []
|
|
219
|
+
},
|
|
220
|
+
"names.list": {
|
|
221
|
+
"signature": "names.list(): Promise<NamedRangeInfo[]>",
|
|
222
|
+
"docstring": "List all named ranges in the workbook.\n@returns Array of named range info objects.",
|
|
223
|
+
"usedTypes": [
|
|
224
|
+
"NamedRangeInfo"
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
"names.createFromSelection": {
|
|
228
|
+
"signature": "names.createFromSelection(sheetId: string, range: CellRange, options: CreateNamesFromSelectionOptions): Promise<CreateNamesResult>",
|
|
229
|
+
"docstring": "Create named ranges from row/column labels in a selection.\nScans edges of the selection for label text and creates names referring to\nthe corresponding data cells.\n@param - Sheet containing the selection.\n@param - The cell range to scan for labels.\n@param - Which edges to scan (top, left, bottom, right).\n@returns Counts of successfully created and skipped names.",
|
|
230
|
+
"usedTypes": []
|
|
231
|
+
},
|
|
232
|
+
"names.recalculateDependents": {
|
|
233
|
+
"signature": "names.recalculateDependents(name: string, sheetId: string, origin?: string | undefined): void",
|
|
234
|
+
"docstring": "Recalculate all formulas that depend on a given named range.\nCalled after a name is created, updated, or deleted so that\ndependent cells reflect the new definition (or show #NAME? errors).\n@param - The name that changed (case-insensitive).\n@param - Current active sheet for relative reference resolution.\n@param - Transaction origin (default: 'user').",
|
|
235
|
+
"usedTypes": []
|
|
236
|
+
},
|
|
237
|
+
"protection.protect": {
|
|
238
|
+
"signature": "protection.protect(password?: string | undefined, options?: Partial<WorkbookProtectionOptions> | undefined): Promise<void>",
|
|
239
|
+
"docstring": "Protect workbook structure with optional password and options.",
|
|
240
|
+
"usedTypes": []
|
|
241
|
+
},
|
|
242
|
+
"protection.unprotect": {
|
|
243
|
+
"signature": "protection.unprotect(password?: string | undefined): Promise<boolean>",
|
|
244
|
+
"docstring": "Unprotect the workbook. Returns true if successful (password matches).",
|
|
245
|
+
"usedTypes": []
|
|
246
|
+
},
|
|
247
|
+
"scenarios.create": {
|
|
248
|
+
"signature": "scenarios.create(config: ScenarioConfig): Promise<string>",
|
|
249
|
+
"docstring": "Create a what-if scenario.\n@param - Scenario configuration (name, changing cells, values).\n@returns The newly created scenario's ID.",
|
|
250
|
+
"usedTypes": []
|
|
251
|
+
},
|
|
252
|
+
"scenarios.list": {
|
|
253
|
+
"signature": "scenarios.list(): Promise<Scenario[]>",
|
|
254
|
+
"docstring": "List all scenarios in the workbook.\n@returns Array of all saved scenarios.",
|
|
255
|
+
"usedTypes": []
|
|
256
|
+
},
|
|
257
|
+
"scenarios.apply": {
|
|
258
|
+
"signature": "scenarios.apply(id: string): Promise<ApplyScenarioResult>",
|
|
259
|
+
"docstring": "Apply a scenario's values to the worksheet.\n@param - The scenario ID to apply.\n@returns Result including cells updated count and original values for restore.",
|
|
260
|
+
"usedTypes": []
|
|
261
|
+
},
|
|
262
|
+
"scenarios.restore": {
|
|
263
|
+
"signature": "scenarios.restore(originalValues: OriginalCellValue[]): Promise<void>",
|
|
264
|
+
"docstring": "Restore original values from a prior apply() call and deactivate the scenario.\n@param - The original cell values returned by apply().",
|
|
265
|
+
"usedTypes": []
|
|
266
|
+
},
|
|
267
|
+
"scenarios.update": {
|
|
268
|
+
"signature": "scenarios.update(scenarioId: string, config: Partial<ScenarioConfig>): Promise<void>",
|
|
269
|
+
"docstring": "Update an existing scenario's configuration.\n@param - The scenario ID to update.\n@param - Partial configuration with fields to change.",
|
|
270
|
+
"usedTypes": []
|
|
271
|
+
},
|
|
272
|
+
"scenarios.delete": {
|
|
273
|
+
"signature": "scenarios.delete(id: string): Promise<void>",
|
|
274
|
+
"docstring": "Delete a scenario.\n@param - The scenario ID to delete.",
|
|
275
|
+
"usedTypes": []
|
|
276
|
+
},
|
|
277
|
+
"sheets.add": {
|
|
278
|
+
"signature": "sheets.add(name?: string | undefined, index?: number | undefined): Promise<Worksheet>",
|
|
279
|
+
"docstring": "Add a new sheet to the workbook.\n@param - Optional sheet name. Defaults to \"SheetN\".\n@param - Optional 0-based position to insert the sheet.\n@returns The created Worksheet.",
|
|
280
|
+
"usedTypes": []
|
|
281
|
+
},
|
|
282
|
+
"sheets.remove": {
|
|
283
|
+
"signature": "sheets.remove(target: string | number): Promise<void>",
|
|
284
|
+
"docstring": "Remove a sheet by index or name.\nThrows if attempting to remove the last sheet.\n@param - 0-based index or sheet name.",
|
|
285
|
+
"usedTypes": []
|
|
286
|
+
},
|
|
287
|
+
"sheets.move": {
|
|
288
|
+
"signature": "sheets.move(name: string, toIndex: number): Promise<void>",
|
|
289
|
+
"docstring": "Move a sheet to a new position.\n@param - Sheet name (or identifier) to move.\n@param - Target 0-based index.",
|
|
290
|
+
"usedTypes": []
|
|
291
|
+
},
|
|
292
|
+
"sheets.rename": {
|
|
293
|
+
"signature": "sheets.rename(target: string | number, newName: string): Promise<void>",
|
|
294
|
+
"docstring": "Rename a sheet.\n@param - 0-based index or current sheet name.\n@param - The new name for the sheet.",
|
|
295
|
+
"usedTypes": []
|
|
296
|
+
},
|
|
297
|
+
"sheets.setActive": {
|
|
298
|
+
"signature": "sheets.setActive(target: string | number): void | Promise<void>",
|
|
299
|
+
"docstring": "Set the active sheet.\n@param - 0-based index or sheet name.",
|
|
300
|
+
"usedTypes": []
|
|
301
|
+
},
|
|
302
|
+
"sheets.copy": {
|
|
303
|
+
"signature": "sheets.copy(source: string | number, newName?: string | undefined): Promise<Worksheet>",
|
|
304
|
+
"docstring": "Copy a sheet within the workbook.\n@param - 0-based index or name of the sheet to copy.\n@param - Optional name for the copy. Defaults to \"SheetName (Copy)\".\n@returns The newly created Worksheet.",
|
|
305
|
+
"usedTypes": []
|
|
306
|
+
},
|
|
307
|
+
"sheets.hide": {
|
|
308
|
+
"signature": "sheets.hide(target: string | number): Promise<void>",
|
|
309
|
+
"docstring": "Hide a sheet.\nThrows if attempting to hide the last visible sheet.\n@param - 0-based index or sheet name.",
|
|
310
|
+
"usedTypes": []
|
|
311
|
+
},
|
|
312
|
+
"sheets.show": {
|
|
313
|
+
"signature": "sheets.show(target: string | number): Promise<void>",
|
|
314
|
+
"docstring": "Show (unhide) a sheet.\n@param - 0-based index or sheet name.",
|
|
315
|
+
"usedTypes": []
|
|
316
|
+
},
|
|
317
|
+
"sheets.setSelectedIds": {
|
|
318
|
+
"signature": "sheets.setSelectedIds(sheetIds: string[]): Promise<void>",
|
|
319
|
+
"docstring": "Set which sheets are selected (multi-sheet selection for collaboration).\n@param - Array of sheet IDs to mark as selected.",
|
|
320
|
+
"usedTypes": []
|
|
321
|
+
},
|
|
322
|
+
"styles.getTableStyles": {
|
|
323
|
+
"signature": "styles.getTableStyles(): Promise<TableStyleInfo[]>",
|
|
324
|
+
"docstring": "Get all custom table styles.",
|
|
325
|
+
"usedTypes": [
|
|
326
|
+
"TableStyleInfo"
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
"styles.createTableStyle": {
|
|
330
|
+
"signature": "styles.createTableStyle(config: TableStyleConfig): Promise<string>",
|
|
331
|
+
"docstring": "Create a custom table style. Returns the style name/ID.",
|
|
332
|
+
"usedTypes": [
|
|
333
|
+
"TableStyleConfig"
|
|
334
|
+
]
|
|
335
|
+
},
|
|
336
|
+
"styles.updateTableStyle": {
|
|
337
|
+
"signature": "styles.updateTableStyle(name: string, updates: Partial<TableStyleConfig>): Promise<void>",
|
|
338
|
+
"docstring": "Update a custom table style.",
|
|
339
|
+
"usedTypes": []
|
|
340
|
+
},
|
|
341
|
+
"styles.removeTableStyle": {
|
|
342
|
+
"signature": "styles.removeTableStyle(name: string): Promise<void>",
|
|
343
|
+
"docstring": "Remove a custom table style.",
|
|
344
|
+
"usedTypes": []
|
|
345
|
+
},
|
|
346
|
+
"styles.getById": {
|
|
347
|
+
"signature": "styles.getById(styleId: string): Promise<CellFormat | null>",
|
|
348
|
+
"docstring": "Get a cell format (style) by its style ID. Returns the format, or null if not found.",
|
|
349
|
+
"usedTypes": []
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
"Worksheet": {
|
|
354
|
+
"docstring": null,
|
|
355
|
+
"functions": {
|
|
356
|
+
"getName": {
|
|
357
|
+
"signature": "getName(): string",
|
|
358
|
+
"docstring": "Get the sheet name.",
|
|
359
|
+
"usedTypes": []
|
|
360
|
+
},
|
|
361
|
+
"setName": {
|
|
362
|
+
"signature": "setName(name: string): Promise<void>",
|
|
363
|
+
"docstring": "Set the sheet name.",
|
|
364
|
+
"usedTypes": []
|
|
365
|
+
},
|
|
366
|
+
"getIndex": {
|
|
367
|
+
"signature": "getIndex(): number",
|
|
368
|
+
"docstring": "Get the 0-based sheet index.",
|
|
369
|
+
"usedTypes": []
|
|
370
|
+
},
|
|
371
|
+
"getSheetId": {
|
|
372
|
+
"signature": "getSheetId(): string",
|
|
373
|
+
"docstring": "Get the internal sheet ID.",
|
|
374
|
+
"usedTypes": []
|
|
375
|
+
},
|
|
376
|
+
"setCell": {
|
|
377
|
+
"signature": "setCell(address: string, value: any, options?: CellWriteOptions | undefined): Promise<void>",
|
|
378
|
+
"docstring": "Set a cell value by A1 address.",
|
|
379
|
+
"usedTypes": [
|
|
380
|
+
"CellWriteOptions"
|
|
381
|
+
]
|
|
382
|
+
},
|
|
383
|
+
"setDateValue": {
|
|
384
|
+
"signature": "setDateValue(row: number, col: number, date: Date): Promise<void>",
|
|
385
|
+
"docstring": "Set a date value in a cell, automatically applying date format.",
|
|
386
|
+
"usedTypes": []
|
|
387
|
+
},
|
|
388
|
+
"setTimeValue": {
|
|
389
|
+
"signature": "setTimeValue(row: number, col: number, date: Date): Promise<void>",
|
|
390
|
+
"docstring": "Set a time value in a cell, automatically applying time format.",
|
|
391
|
+
"usedTypes": []
|
|
392
|
+
},
|
|
393
|
+
"getCell": {
|
|
394
|
+
"signature": "getCell(address: string): Promise<CellData>",
|
|
395
|
+
"docstring": "Get cell data by A1 address.",
|
|
396
|
+
"usedTypes": [
|
|
397
|
+
"CellData"
|
|
398
|
+
]
|
|
399
|
+
},
|
|
400
|
+
"getRange": {
|
|
401
|
+
"signature": "getRange(range: string): Promise<CellData[][]>",
|
|
402
|
+
"docstring": "Get a 2D array of cell data for a range (A1 notation).",
|
|
403
|
+
"usedTypes": [
|
|
404
|
+
"CellData"
|
|
405
|
+
]
|
|
406
|
+
},
|
|
407
|
+
"setRange": {
|
|
408
|
+
"signature": "setRange(range: string, values: any[][]): Promise<void>",
|
|
409
|
+
"docstring": "Set a 2D array of values into a range (A1 notation).",
|
|
410
|
+
"usedTypes": []
|
|
411
|
+
},
|
|
412
|
+
"getValue": {
|
|
413
|
+
"signature": "getValue(address: string): Promise<CellValue>",
|
|
414
|
+
"docstring": "Get the computed value of a cell by A1 address. Returns null for empty cells.",
|
|
415
|
+
"usedTypes": []
|
|
416
|
+
},
|
|
417
|
+
"getData": {
|
|
418
|
+
"signature": "getData(): Promise<CellValue[][]>",
|
|
419
|
+
"docstring": "Get all cell values in the used range as a 2D array. Returns [] if sheet is empty.",
|
|
420
|
+
"usedTypes": []
|
|
421
|
+
},
|
|
422
|
+
"getFormula": {
|
|
423
|
+
"signature": "getFormula(address: string): Promise<string | null>",
|
|
424
|
+
"docstring": "Get the formula of a cell by A1 address (null if not a formula cell).",
|
|
425
|
+
"usedTypes": []
|
|
426
|
+
},
|
|
427
|
+
"getRawCellData": {
|
|
428
|
+
"signature": "getRawCellData(address: string, includeFormula?: boolean | undefined): Promise<RawCellData>",
|
|
429
|
+
"docstring": "Get raw cell data (value, formula, format, borders, etc.) by A1 address.",
|
|
430
|
+
"usedTypes": [
|
|
431
|
+
"RawCellData"
|
|
432
|
+
]
|
|
433
|
+
},
|
|
434
|
+
"getRawRangeData": {
|
|
435
|
+
"signature": "getRawRangeData(range: string, includeFormula?: boolean | undefined): Promise<RawCellData[][]>",
|
|
436
|
+
"docstring": "Get raw data for a range as a 2D array.",
|
|
437
|
+
"usedTypes": [
|
|
438
|
+
"RawCellData"
|
|
439
|
+
]
|
|
440
|
+
},
|
|
441
|
+
"getRangeWithIdentity": {
|
|
442
|
+
"signature": "getRangeWithIdentity(startRow: number, startCol: number, endRow: number, endCol: number): Promise<IdentifiedCellData[]>",
|
|
443
|
+
"docstring": "Get all non-empty cells in a range with stable CellId identity.\n\nReturns a flat array of cells (not a 2D grid) — only cells with data\nare included. Each cell includes its CellId, position, computed value,\nformula text (if formula cell), and pre-formatted display string.\n\nUsed by operations that need identity-aware cell data (find-replace,\nclipboard, cell relocation).",
|
|
444
|
+
"usedTypes": []
|
|
445
|
+
},
|
|
446
|
+
"describe": {
|
|
447
|
+
"signature": "describe(address: string): Promise<string>",
|
|
448
|
+
"docstring": "Get a human-readable description of a cell: \"Revenue | =SUM(B2:B10) | [bold]\"",
|
|
449
|
+
"usedTypes": []
|
|
450
|
+
},
|
|
451
|
+
"describeRange": {
|
|
452
|
+
"signature": "describeRange(range: string, includeStyle?: boolean | undefined): Promise<string>",
|
|
453
|
+
"docstring": "Get a tabular description of a range with formula abbreviation.",
|
|
454
|
+
"usedTypes": []
|
|
455
|
+
},
|
|
456
|
+
"summarize": {
|
|
457
|
+
"signature": "summarize(options?: SummaryOptions | undefined): Promise<string>",
|
|
458
|
+
"docstring": "Get a sheet overview summary for agent context.",
|
|
459
|
+
"usedTypes": [
|
|
460
|
+
"SummaryOptions"
|
|
461
|
+
]
|
|
462
|
+
},
|
|
463
|
+
"getUsedRange": {
|
|
464
|
+
"signature": "getUsedRange(): Promise<string | null>",
|
|
465
|
+
"docstring": "Get the used range as an A1 string, or null if the sheet is empty.",
|
|
466
|
+
"usedTypes": []
|
|
467
|
+
},
|
|
468
|
+
"getCurrentRegion": {
|
|
469
|
+
"signature": "getCurrentRegion(row: number, col: number): Promise<CellRange>",
|
|
470
|
+
"docstring": "Get the contiguous data region around a cell (Excel's Ctrl+Shift+* / CurrentRegion).",
|
|
471
|
+
"usedTypes": []
|
|
472
|
+
},
|
|
473
|
+
"findCells": {
|
|
474
|
+
"signature": "findCells(predicate: (cell: CellData) => boolean): Promise<string[]>",
|
|
475
|
+
"docstring": "Find all cells matching a predicate. Returns A1 addresses.",
|
|
476
|
+
"usedTypes": []
|
|
477
|
+
},
|
|
478
|
+
"findByValue": {
|
|
479
|
+
"signature": "findByValue(value: any): Promise<string[]>",
|
|
480
|
+
"docstring": "Find all cells with a specific value. Returns A1 addresses.",
|
|
481
|
+
"usedTypes": []
|
|
482
|
+
},
|
|
483
|
+
"findByFormula": {
|
|
484
|
+
"signature": "findByFormula(pattern: RegExp): Promise<string[]>",
|
|
485
|
+
"docstring": "Find all cells whose formula matches a regex pattern. Returns A1 addresses.",
|
|
486
|
+
"usedTypes": []
|
|
487
|
+
},
|
|
488
|
+
"regexSearch": {
|
|
489
|
+
"signature": "regexSearch(patterns: string[], options?: SearchOptions | undefined): Promise<SearchResult[]>",
|
|
490
|
+
"docstring": "Search cells using regex patterns.",
|
|
491
|
+
"usedTypes": [
|
|
492
|
+
"SearchOptions",
|
|
493
|
+
"SearchResult"
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
"getDisplayValue": {
|
|
497
|
+
"signature": "getDisplayValue(address: string): Promise<string>",
|
|
498
|
+
"docstring": "Get the display value (formatted string) for a cell by A1 address.",
|
|
499
|
+
"usedTypes": []
|
|
500
|
+
},
|
|
501
|
+
"sortRange": {
|
|
502
|
+
"signature": "sortRange(range: string, options: SortOptions): Promise<void>",
|
|
503
|
+
"docstring": "Sort a range by the specified options.",
|
|
504
|
+
"usedTypes": [
|
|
505
|
+
"SortOptions"
|
|
506
|
+
]
|
|
507
|
+
},
|
|
508
|
+
"autoFill": {
|
|
509
|
+
"signature": "autoFill(sourceRange: string, targetRange: string, fillMode?: AutoFillMode | undefined): Promise<AutoFillResult>",
|
|
510
|
+
"docstring": "Autofill from source range into target range.\n@param - Source range in A1 notation (e.g., \"A1:A3\")\n@param - Target range to fill into (e.g., \"A4:A10\")\n@param - Fill behavior. Default: 'auto' (detect pattern).",
|
|
511
|
+
"usedTypes": []
|
|
512
|
+
},
|
|
513
|
+
"fillSeries": {
|
|
514
|
+
"signature": "fillSeries(range: string, options: FillSeriesOptions): Promise<void>",
|
|
515
|
+
"docstring": "Fill a range with a series (Edit > Fill > Series dialog equivalent).\nMore explicit than autoFill — caller specifies exact series parameters.\n\nThe range contains BOTH source cells (first row/col) and target cells (rest).\nThe kernel splits them based on direction.\n@param - Range in A1 notation containing source + target cells\n@param - Series parameters (type, step, stop, direction, etc.)",
|
|
516
|
+
"usedTypes": []
|
|
517
|
+
},
|
|
518
|
+
"createTable": {
|
|
519
|
+
"signature": "createTable(name: string, options: CreateTableOptions): Promise<void>",
|
|
520
|
+
"docstring": "Create a table from headers and data in a single call.\n\nWrites `[headers, ...data]` starting at `startCell` (default \"A1\"),\nthen creates an Excel table over the written range.\n@param - Table name (must be unique in the workbook)\n@param - Headers, data rows, and optional start cell",
|
|
521
|
+
"usedTypes": []
|
|
522
|
+
},
|
|
523
|
+
"toCSV": {
|
|
524
|
+
"signature": "toCSV(options?: { separator?: string | undefined; } | undefined): Promise<string>",
|
|
525
|
+
"docstring": "Export the used range as a CSV string (RFC 4180 compliant).\n\nFields containing commas, quotes, or newlines are quoted.\nDouble-quotes inside fields are escaped as \"\".\nFormula injection is prevented by prefixing `=`, `+`, `-`, `@` with a tab character.\n@param - Optional separator (default \",\")",
|
|
526
|
+
"usedTypes": []
|
|
527
|
+
},
|
|
528
|
+
"toJSON": {
|
|
529
|
+
"signature": "toJSON(options?: { headerRow?: number | \"none\" | undefined; } | undefined): Promise<Record<string, CellValue>[]>",
|
|
530
|
+
"docstring": "Export the used range as an array of row objects.\n\nBy default, the first row is used as header keys.\nPass `headerRow: 'none'` to use column letters (A, B, C, ...) as keys.\nPass `headerRow: N` to use a specific 0-based row as headers.\n@param - Optional header row configuration",
|
|
531
|
+
"usedTypes": []
|
|
532
|
+
},
|
|
533
|
+
"getDependents": {
|
|
534
|
+
"signature": "getDependents(address: string): Promise<string[]>",
|
|
535
|
+
"docstring": "Get cells that depend on this cell by A1 address.",
|
|
536
|
+
"usedTypes": []
|
|
537
|
+
},
|
|
538
|
+
"getPrecedents": {
|
|
539
|
+
"signature": "getPrecedents(address: string): Promise<string[]>",
|
|
540
|
+
"docstring": "Get cells that this cell depends on by A1 address.",
|
|
541
|
+
"usedTypes": []
|
|
542
|
+
},
|
|
543
|
+
"getSelectionAggregates": {
|
|
544
|
+
"signature": "getSelectionAggregates(ranges: CellRange[]): Promise<AggregateResult>",
|
|
545
|
+
"docstring": "Get aggregates (SUM, COUNT, AVG, MIN, MAX) for selected ranges.",
|
|
546
|
+
"usedTypes": [
|
|
547
|
+
"AggregateResult"
|
|
548
|
+
]
|
|
549
|
+
},
|
|
550
|
+
"formatValues": {
|
|
551
|
+
"signature": "formatValues(entries: FormatEntry[]): Promise<string[]>",
|
|
552
|
+
"docstring": "Batch-format values using number format codes. Returns formatted strings.",
|
|
553
|
+
"usedTypes": []
|
|
554
|
+
},
|
|
555
|
+
"goalSeek": {
|
|
556
|
+
"signature": "goalSeek(targetCell: string, targetValue: number, changingCell: string): Promise<GoalSeekResult>",
|
|
557
|
+
"docstring": "Run a goal seek to find the input value that produces a target result.",
|
|
558
|
+
"usedTypes": [
|
|
559
|
+
"GoalSeekResult"
|
|
560
|
+
]
|
|
561
|
+
},
|
|
562
|
+
"isVisible": {
|
|
563
|
+
"signature": "isVisible(): boolean",
|
|
564
|
+
"docstring": "Check if the sheet is visible (sync -- local metadata).",
|
|
565
|
+
"usedTypes": []
|
|
566
|
+
},
|
|
567
|
+
"setVisible": {
|
|
568
|
+
"signature": "setVisible(visible: boolean): Promise<void>",
|
|
569
|
+
"docstring": "Show or hide the sheet.",
|
|
570
|
+
"usedTypes": []
|
|
571
|
+
},
|
|
572
|
+
"on": {
|
|
573
|
+
"signature": "on(event: T, handler: (event: EventByType<T>) => void): () => void",
|
|
574
|
+
"docstring": "Subscribe to sheet-level events. Returns an unsubscribe function.\n\nAccepts both coarse SheetEvent types (recommended default) and fine-grained\ninternal event type strings (escape hatch for perf-sensitive callers).\nHandler receives the internal event directly — no wrapper.",
|
|
575
|
+
"usedTypes": []
|
|
576
|
+
},
|
|
577
|
+
"setBoundsReader": {
|
|
578
|
+
"signature": "setBoundsReader(reader: IObjectBoundsReader): void",
|
|
579
|
+
"docstring": "Inject the bounds reader (from the renderer's SceneGraphBoundsReader) so that\nfloating-object handles can resolve pixel bounds via `handle.getBounds()`.\n\nCalling this invalidates cached typed collections so they pick up the new reader\non their next access.",
|
|
580
|
+
"usedTypes": []
|
|
581
|
+
},
|
|
582
|
+
"bindings.list": {
|
|
583
|
+
"signature": "bindings.list(): Promise<SheetDataBindingInfo[]>",
|
|
584
|
+
"docstring": "List all data bindings on the sheet.\n@returns Array of binding info objects",
|
|
585
|
+
"usedTypes": []
|
|
586
|
+
},
|
|
587
|
+
"bindings.create": {
|
|
588
|
+
"signature": "bindings.create(config: CreateBindingConfig): Promise<void>",
|
|
589
|
+
"docstring": "Create a new data binding on the sheet.\n@param - Binding configuration (connection, column mappings, etc.)",
|
|
590
|
+
"usedTypes": []
|
|
591
|
+
},
|
|
592
|
+
"bindings.remove": {
|
|
593
|
+
"signature": "bindings.remove(bindingId: string): Promise<void>",
|
|
594
|
+
"docstring": "Remove a data binding by ID.\n@param - The binding ID to remove",
|
|
595
|
+
"usedTypes": []
|
|
596
|
+
},
|
|
597
|
+
"bindings.getProjectionRange": {
|
|
598
|
+
"signature": "bindings.getProjectionRange(row: number, col: number): Promise<CellRange | null>",
|
|
599
|
+
"docstring": "Get the spill range for a projected (dynamic array) cell.\n@param - Row index (0-based)\n@param - Column index (0-based)\n@returns The spill range, or null if the cell is not a projection source",
|
|
600
|
+
"usedTypes": []
|
|
601
|
+
},
|
|
602
|
+
"bindings.getProjectionSource": {
|
|
603
|
+
"signature": "bindings.getProjectionSource(row: number, col: number): Promise<{ row: number; col: number; } | null>",
|
|
604
|
+
"docstring": "Get the source cell of a projected value.\n@param - Row index (0-based)\n@param - Column index (0-based)\n@returns The source cell position, or null if the cell is not a projection",
|
|
605
|
+
"usedTypes": []
|
|
606
|
+
},
|
|
607
|
+
"bindings.isProjectedPosition": {
|
|
608
|
+
"signature": "bindings.isProjectedPosition(row: number, col: number): Promise<boolean>",
|
|
609
|
+
"docstring": "Check whether a cell position is a projected (spilled) value.\n@param - Row index (0-based)\n@param - Column index (0-based)\n@returns True if the cell holds a projected value",
|
|
610
|
+
"usedTypes": []
|
|
611
|
+
},
|
|
612
|
+
"bindings.getViewportProjectionData": {
|
|
613
|
+
"signature": "bindings.getViewportProjectionData(startRow: number, startCol: number, endRow: number, endCol: number): Promise<{ originRow: number; originCol: number; rows: number; cols: number; }[]>",
|
|
614
|
+
"docstring": "Get all projection data overlapping a viewport range (batch query).\nReturns one entry per projection with origin position and dimensions.",
|
|
615
|
+
"usedTypes": []
|
|
616
|
+
},
|
|
617
|
+
"charts.add": {
|
|
618
|
+
"signature": "charts.add(config: ChartConfig): Promise<string>",
|
|
619
|
+
"docstring": "Add a chart to the sheet. Returns the chart ID.",
|
|
620
|
+
"usedTypes": [
|
|
621
|
+
"ChartConfig"
|
|
622
|
+
]
|
|
623
|
+
},
|
|
624
|
+
"charts.get": {
|
|
625
|
+
"signature": "charts.get(chartId: string): Promise<Chart | null>",
|
|
626
|
+
"docstring": "Get a chart by ID, or null if not found.",
|
|
627
|
+
"usedTypes": [
|
|
628
|
+
"Chart"
|
|
629
|
+
]
|
|
630
|
+
},
|
|
631
|
+
"charts.update": {
|
|
632
|
+
"signature": "charts.update(chartId: string, updates: Partial<ChartConfig>): Promise<void>",
|
|
633
|
+
"docstring": "Update a chart's configuration.",
|
|
634
|
+
"usedTypes": []
|
|
635
|
+
},
|
|
636
|
+
"charts.remove": {
|
|
637
|
+
"signature": "charts.remove(chartId: string): Promise<void>",
|
|
638
|
+
"docstring": "Remove a chart by ID.",
|
|
639
|
+
"usedTypes": []
|
|
640
|
+
},
|
|
641
|
+
"charts.list": {
|
|
642
|
+
"signature": "charts.list(): Promise<Chart[]>",
|
|
643
|
+
"docstring": "List all charts in the sheet.",
|
|
644
|
+
"usedTypes": [
|
|
645
|
+
"Chart"
|
|
646
|
+
]
|
|
647
|
+
},
|
|
648
|
+
"charts.duplicate": {
|
|
649
|
+
"signature": "charts.duplicate(chartId: string): Promise<string>",
|
|
650
|
+
"docstring": "Duplicate a chart, offsetting the copy by 2 rows. Returns the new chart ID.",
|
|
651
|
+
"usedTypes": []
|
|
652
|
+
},
|
|
653
|
+
"charts.exportImage": {
|
|
654
|
+
"signature": "charts.exportImage(chartId: string, options?: ImageExportOptions | undefined): Promise<string>",
|
|
655
|
+
"docstring": "Export a chart as an image.\n\nNote: This is a stub — actual rendering requires a canvas context.\nThe bridge integration will be wired in Wave 4.",
|
|
656
|
+
"usedTypes": []
|
|
657
|
+
},
|
|
658
|
+
"charts.setDataRange": {
|
|
659
|
+
"signature": "charts.setDataRange(chartId: string, range: string): Promise<void>",
|
|
660
|
+
"docstring": "Set a chart's data range (A1 notation).",
|
|
661
|
+
"usedTypes": []
|
|
662
|
+
},
|
|
663
|
+
"charts.setType": {
|
|
664
|
+
"signature": "charts.setType(chartId: string, type: ChartType, subType?: string | undefined): Promise<void>",
|
|
665
|
+
"docstring": "Set a chart's type and optional sub-type.",
|
|
666
|
+
"usedTypes": [
|
|
667
|
+
"ChartType"
|
|
668
|
+
]
|
|
669
|
+
},
|
|
670
|
+
"charts.getCount": {
|
|
671
|
+
"signature": "charts.getCount(): Promise<number>",
|
|
672
|
+
"docstring": "Get the total number of charts on this sheet.",
|
|
673
|
+
"usedTypes": []
|
|
674
|
+
},
|
|
675
|
+
"charts.getByName": {
|
|
676
|
+
"signature": "charts.getByName(name: string): Promise<Chart | null>",
|
|
677
|
+
"docstring": "Find a chart by its name, or null if not found.",
|
|
678
|
+
"usedTypes": [
|
|
679
|
+
"Chart"
|
|
680
|
+
]
|
|
681
|
+
},
|
|
682
|
+
"charts.bringToFront": {
|
|
683
|
+
"signature": "charts.bringToFront(chartId: string): Promise<void>",
|
|
684
|
+
"docstring": "Bring a chart to the front (highest z-index).",
|
|
685
|
+
"usedTypes": []
|
|
686
|
+
},
|
|
687
|
+
"charts.sendToBack": {
|
|
688
|
+
"signature": "charts.sendToBack(chartId: string): Promise<void>",
|
|
689
|
+
"docstring": "Send a chart to the back (lowest z-index).",
|
|
690
|
+
"usedTypes": []
|
|
691
|
+
},
|
|
692
|
+
"charts.bringForward": {
|
|
693
|
+
"signature": "charts.bringForward(chartId: string): Promise<void>",
|
|
694
|
+
"docstring": "Bring a chart forward by one layer.",
|
|
695
|
+
"usedTypes": []
|
|
696
|
+
},
|
|
697
|
+
"charts.sendBackward": {
|
|
698
|
+
"signature": "charts.sendBackward(chartId: string): Promise<void>",
|
|
699
|
+
"docstring": "Send a chart backward by one layer.",
|
|
700
|
+
"usedTypes": []
|
|
701
|
+
},
|
|
702
|
+
"charts.linkToTable": {
|
|
703
|
+
"signature": "charts.linkToTable(chartId: string, tableId: string): Promise<void>",
|
|
704
|
+
"docstring": "Link a chart to a table so it auto-updates with the table's data.",
|
|
705
|
+
"usedTypes": []
|
|
706
|
+
},
|
|
707
|
+
"charts.unlinkFromTable": {
|
|
708
|
+
"signature": "charts.unlinkFromTable(chartId: string): Promise<void>",
|
|
709
|
+
"docstring": "Unlink a chart from its source table.",
|
|
710
|
+
"usedTypes": []
|
|
711
|
+
},
|
|
712
|
+
"charts.isLinkedToTable": {
|
|
713
|
+
"signature": "charts.isLinkedToTable(chartId: string): Promise<boolean>",
|
|
714
|
+
"docstring": "Check whether a chart is linked to a table.",
|
|
715
|
+
"usedTypes": []
|
|
716
|
+
},
|
|
717
|
+
"charts.addSeries": {
|
|
718
|
+
"signature": "charts.addSeries(chartId: string, config: SeriesConfig): Promise<number>",
|
|
719
|
+
"docstring": "Add a data series to a chart. Returns the new series index.",
|
|
720
|
+
"usedTypes": []
|
|
721
|
+
},
|
|
722
|
+
"charts.removeSeries": {
|
|
723
|
+
"signature": "charts.removeSeries(chartId: string, index: number): Promise<void>",
|
|
724
|
+
"docstring": "Remove a data series by index.",
|
|
725
|
+
"usedTypes": []
|
|
726
|
+
},
|
|
727
|
+
"charts.getSeries": {
|
|
728
|
+
"signature": "charts.getSeries(chartId: string, index: number): Promise<SeriesConfig>",
|
|
729
|
+
"docstring": "Get a data series by index.",
|
|
730
|
+
"usedTypes": []
|
|
731
|
+
},
|
|
732
|
+
"charts.updateSeries": {
|
|
733
|
+
"signature": "charts.updateSeries(chartId: string, index: number, updates: Partial<SeriesConfig>): Promise<void>",
|
|
734
|
+
"docstring": "Update a data series at the given index.",
|
|
735
|
+
"usedTypes": []
|
|
736
|
+
},
|
|
737
|
+
"charts.getSeriesCount": {
|
|
738
|
+
"signature": "charts.getSeriesCount(chartId: string): Promise<number>",
|
|
739
|
+
"docstring": "Get the number of data series in a chart.",
|
|
740
|
+
"usedTypes": []
|
|
741
|
+
},
|
|
742
|
+
"charts.reorderSeries": {
|
|
743
|
+
"signature": "charts.reorderSeries(chartId: string, fromIndex: number, toIndex: number): Promise<void>",
|
|
744
|
+
"docstring": "Reorder a series from one index to another.",
|
|
745
|
+
"usedTypes": []
|
|
746
|
+
},
|
|
747
|
+
"charts.setSeriesValues": {
|
|
748
|
+
"signature": "charts.setSeriesValues(chartId: string, index: number, range: string): Promise<void>",
|
|
749
|
+
"docstring": "Set the values range for a series (A1 notation).",
|
|
750
|
+
"usedTypes": []
|
|
751
|
+
},
|
|
752
|
+
"charts.setSeriesCategories": {
|
|
753
|
+
"signature": "charts.setSeriesCategories(chartId: string, index: number, range: string): Promise<void>",
|
|
754
|
+
"docstring": "Set the categories range for a series (A1 notation).",
|
|
755
|
+
"usedTypes": []
|
|
756
|
+
},
|
|
757
|
+
"charts.formatPoint": {
|
|
758
|
+
"signature": "charts.formatPoint(chartId: string, seriesIndex: number, pointIndex: number, format: { fill?: string | undefined; border?: ChartBorder | undefined; }): Promise<void>",
|
|
759
|
+
"docstring": "Format an individual data point within a series.",
|
|
760
|
+
"usedTypes": []
|
|
761
|
+
},
|
|
762
|
+
"charts.setPointDataLabel": {
|
|
763
|
+
"signature": "charts.setPointDataLabel(chartId: string, seriesIndex: number, pointIndex: number, config: DataLabelConfig): Promise<void>",
|
|
764
|
+
"docstring": "Set the data label configuration for an individual data point.",
|
|
765
|
+
"usedTypes": []
|
|
766
|
+
},
|
|
767
|
+
"comments.addNote": {
|
|
768
|
+
"signature": "comments.addNote(address: string, text: string): Promise<void>",
|
|
769
|
+
"docstring": "Add a note to a cell.\n@param - A1-style cell address (e.g. \"A1\")\n@param - Note text",
|
|
770
|
+
"usedTypes": []
|
|
771
|
+
},
|
|
772
|
+
"comments.getNote": {
|
|
773
|
+
"signature": "comments.getNote(address: string): Promise<string | null>",
|
|
774
|
+
"docstring": "Get the note text for a cell.\n@param - A1-style cell address\n@returns The note text, or null if no note",
|
|
775
|
+
"usedTypes": []
|
|
776
|
+
},
|
|
777
|
+
"comments.removeNote": {
|
|
778
|
+
"signature": "comments.removeNote(address: string): Promise<void>",
|
|
779
|
+
"docstring": "Remove the note from a cell.\n@param - A1-style cell address",
|
|
780
|
+
"usedTypes": []
|
|
781
|
+
},
|
|
782
|
+
"comments.add": {
|
|
783
|
+
"signature": "comments.add(address: string, text: string, author: string): Promise<Comment>",
|
|
784
|
+
"docstring": "Add a threaded comment to a cell.\n@param - A1-style cell address\n@param - Comment text\n@param - Author name or identifier",
|
|
785
|
+
"usedTypes": []
|
|
786
|
+
},
|
|
787
|
+
"comments.update": {
|
|
788
|
+
"signature": "comments.update(commentId: string, text: string): Promise<void>",
|
|
789
|
+
"docstring": "Update an existing comment's text.\n@param - Comment identifier\n@param - New comment text",
|
|
790
|
+
"usedTypes": []
|
|
791
|
+
},
|
|
792
|
+
"comments.delete": {
|
|
793
|
+
"signature": "comments.delete(commentId: string): Promise<void>",
|
|
794
|
+
"docstring": "Delete a comment.\n@param - Comment identifier",
|
|
795
|
+
"usedTypes": []
|
|
796
|
+
},
|
|
797
|
+
"comments.resolveThread": {
|
|
798
|
+
"signature": "comments.resolveThread(threadId: string, resolved: boolean): Promise<void>",
|
|
799
|
+
"docstring": "Set the resolved state of a comment thread.\n@param - Thread identifier (cell ID)\n@param - Whether the thread should be marked as resolved",
|
|
800
|
+
"usedTypes": []
|
|
801
|
+
},
|
|
802
|
+
"comments.list": {
|
|
803
|
+
"signature": "comments.list(): Promise<Comment[]>",
|
|
804
|
+
"docstring": "List all comments in the worksheet.\n@returns Array of all comments",
|
|
805
|
+
"usedTypes": []
|
|
806
|
+
},
|
|
807
|
+
"comments.getForCell": {
|
|
808
|
+
"signature": "comments.getForCell(address: string): Promise<Comment[]>",
|
|
809
|
+
"docstring": "Get all comments for a specific cell.\n@param - A1-style cell address\n@returns Array of comments for the cell",
|
|
810
|
+
"usedTypes": []
|
|
811
|
+
},
|
|
812
|
+
"comments.addReply": {
|
|
813
|
+
"signature": "comments.addReply(commentId: string, text: string, author: string): Promise<Comment>",
|
|
814
|
+
"docstring": "Add a reply to an existing comment.\n@param - ID of the comment to reply to\n@param - Reply text\n@param - Author name or identifier\n@returns The created reply comment",
|
|
815
|
+
"usedTypes": []
|
|
816
|
+
},
|
|
817
|
+
"comments.getThread": {
|
|
818
|
+
"signature": "comments.getThread(commentId: string): Promise<Comment[]>",
|
|
819
|
+
"docstring": "Get all comments in a thread (root + replies), sorted by createdAt.\n@param - ID of any comment in the thread\n@returns Array of comments in the thread",
|
|
820
|
+
"usedTypes": []
|
|
821
|
+
},
|
|
822
|
+
"comments.getById": {
|
|
823
|
+
"signature": "comments.getById(commentId: string): Promise<Comment | null>",
|
|
824
|
+
"docstring": "Get a single comment by its ID.\n@param - Comment identifier\n@returns The comment, or null if not found",
|
|
825
|
+
"usedTypes": []
|
|
826
|
+
},
|
|
827
|
+
"conditionalFormats.add": {
|
|
828
|
+
"signature": "conditionalFormats.add(ranges: CellRange[], rules: CFRuleInput[]): Promise<string>",
|
|
829
|
+
"docstring": "Add a new conditional format with ranges and rules.\nThe API assigns IDs and priorities — callers provide rule configuration only.\n@param - Cell ranges this format applies to\n@param - Rule inputs (without id/priority)\n@returns The generated format ID",
|
|
830
|
+
"usedTypes": []
|
|
831
|
+
},
|
|
832
|
+
"conditionalFormats.get": {
|
|
833
|
+
"signature": "conditionalFormats.get(formatId: string): Promise<ConditionalFormat | null>",
|
|
834
|
+
"docstring": "Get a conditional format by its ID.\n@param - Format ID to look up\n@returns The conditional format, or null if not found",
|
|
835
|
+
"usedTypes": []
|
|
836
|
+
},
|
|
837
|
+
"conditionalFormats.update": {
|
|
838
|
+
"signature": "conditionalFormats.update(formatId: string, updates: { rules?: CFRule[] | undefined; }): Promise<void>",
|
|
839
|
+
"docstring": "Update an existing conditional format.\nCurrently supports replacing the rules array.\n@param - Format ID to update\n@param - Object with optional rules array",
|
|
840
|
+
"usedTypes": []
|
|
841
|
+
},
|
|
842
|
+
"conditionalFormats.remove": {
|
|
843
|
+
"signature": "conditionalFormats.remove(formatId: string): Promise<void>",
|
|
844
|
+
"docstring": "Remove a conditional format by ID.\n@param - Format ID to remove",
|
|
845
|
+
"usedTypes": []
|
|
846
|
+
},
|
|
847
|
+
"conditionalFormats.list": {
|
|
848
|
+
"signature": "conditionalFormats.list(): Promise<ConditionalFormat[]>",
|
|
849
|
+
"docstring": "Get all conditional formats on the sheet.\n@returns Array of conditional format objects",
|
|
850
|
+
"usedTypes": []
|
|
851
|
+
},
|
|
852
|
+
"conditionalFormats.clear": {
|
|
853
|
+
"signature": "conditionalFormats.clear(): Promise<void>",
|
|
854
|
+
"docstring": "Clear all conditional formats from the sheet.",
|
|
855
|
+
"usedTypes": []
|
|
856
|
+
},
|
|
857
|
+
"conditionalFormats.clearInRanges": {
|
|
858
|
+
"signature": "conditionalFormats.clearInRanges(ranges: CellRange[]): Promise<void>",
|
|
859
|
+
"docstring": "Clear conditional formats that intersect with the given ranges.\n@param - Ranges to clear conditional formats from",
|
|
860
|
+
"usedTypes": []
|
|
861
|
+
},
|
|
862
|
+
"conditionalFormats.reorder": {
|
|
863
|
+
"signature": "conditionalFormats.reorder(formatIds: string[]): Promise<void>",
|
|
864
|
+
"docstring": "Reorder conditional formats by format ID array (first = highest priority).\n@param - Array of format IDs in the desired order",
|
|
865
|
+
"usedTypes": []
|
|
866
|
+
},
|
|
867
|
+
"conditionalFormats.cloneForPaste": {
|
|
868
|
+
"signature": "conditionalFormats.cloneForPaste(sourceSheetId: string, relativeCFs: { rules: any[]; rangeOffsets: { startRowOffset: number; startColOffset: number; endRowOffset: number; endColOffset: number; }[]; }[], origin: { row: number; col: number; }, isCut: boolean): Promise<void>",
|
|
869
|
+
"docstring": "Clone conditional formats from source to target with offset.\nUsed by format painter and paste operations.\n@param - Source sheet ID (for cut operation reference removal)\n@param - Relative CF formats with range offsets\n@param - Target paste origin (row, col)\n@param - Whether this is a cut operation",
|
|
870
|
+
"usedTypes": []
|
|
871
|
+
},
|
|
872
|
+
"filters.setAutoFilter": {
|
|
873
|
+
"signature": "filters.setAutoFilter(range: string): Promise<void>",
|
|
874
|
+
"docstring": "Set an auto-filter on the sheet by parsing an A1-style range string.\n@param - A1-style range string (e.g. \"A1:D100\")",
|
|
875
|
+
"usedTypes": []
|
|
876
|
+
},
|
|
877
|
+
"filters.createAutoFilter": {
|
|
878
|
+
"signature": "filters.createAutoFilter(range: CellRange): Promise<void>",
|
|
879
|
+
"docstring": "Create an auto-filter from a CellRange (position-based).\n@param - Range object with start/end row and column",
|
|
880
|
+
"usedTypes": []
|
|
881
|
+
},
|
|
882
|
+
"filters.clearAutoFilter": {
|
|
883
|
+
"signature": "filters.clearAutoFilter(): Promise<void>",
|
|
884
|
+
"docstring": "Clear the auto-filter from the sheet.\nRemoves all filters, not just criteria.",
|
|
885
|
+
"usedTypes": []
|
|
886
|
+
},
|
|
887
|
+
"filters.getAutoFilter": {
|
|
888
|
+
"signature": "filters.getAutoFilter(): Promise<FilterState | null>",
|
|
889
|
+
"docstring": "Get the current auto-filter state.\n@returns The filter state, or null if no auto-filter is set",
|
|
890
|
+
"usedTypes": [
|
|
891
|
+
"FilterState"
|
|
892
|
+
]
|
|
893
|
+
},
|
|
894
|
+
"filters.getForRange": {
|
|
895
|
+
"signature": "filters.getForRange(range: CellRange): Promise<{ id: string; } | null>",
|
|
896
|
+
"docstring": "Get the filter overlapping a range, or null if none.\n@param - Range to check for filter overlap\n@returns Object with filter ID if found, or null",
|
|
897
|
+
"usedTypes": []
|
|
898
|
+
},
|
|
899
|
+
"filters.remove": {
|
|
900
|
+
"signature": "filters.remove(filterId: string): Promise<void>",
|
|
901
|
+
"docstring": "Remove a specific filter by its ID.\n@param - Filter ID to remove",
|
|
902
|
+
"usedTypes": []
|
|
903
|
+
},
|
|
904
|
+
"filters.setColumnFilter": {
|
|
905
|
+
"signature": "filters.setColumnFilter(col: number, criteria: ColumnFilterCriteria): Promise<void>",
|
|
906
|
+
"docstring": "Set filter criteria for a column on the first auto-filter.\n@param - Column index (0-based)\n@param - Filter criteria to apply",
|
|
907
|
+
"usedTypes": []
|
|
908
|
+
},
|
|
909
|
+
"filters.clearColumnFilter": {
|
|
910
|
+
"signature": "filters.clearColumnFilter(col: number): Promise<void>",
|
|
911
|
+
"docstring": "Clear filter criteria for a column on the first auto-filter.\n@param - Column index (0-based)",
|
|
912
|
+
"usedTypes": []
|
|
913
|
+
},
|
|
914
|
+
"filters.getUniqueValues": {
|
|
915
|
+
"signature": "filters.getUniqueValues(col: number): Promise<any[]>",
|
|
916
|
+
"docstring": "Get unique values in a column (for filter dropdowns).\nUses the first auto-filter.\n@param - Column index (0-based)\n@returns Array of unique values",
|
|
917
|
+
"usedTypes": []
|
|
918
|
+
},
|
|
919
|
+
"filters.setCriteria": {
|
|
920
|
+
"signature": "filters.setCriteria(filterId: string, headerCellId: string, criteria: ColumnFilterCriteria): Promise<void>",
|
|
921
|
+
"docstring": "Set filter criteria using filter ID and header cell ID (CRDT-safe).\n@param - Filter ID\n@param - Header cell ID to filter on\n@param - Filter criteria to apply",
|
|
922
|
+
"usedTypes": []
|
|
923
|
+
},
|
|
924
|
+
"filters.clearCriteria": {
|
|
925
|
+
"signature": "filters.clearCriteria(filterId: string, headerCellId: string): Promise<void>",
|
|
926
|
+
"docstring": "Clear filter criteria using filter ID and header cell ID.\n@param - Filter ID\n@param - Header cell ID to clear",
|
|
927
|
+
"usedTypes": []
|
|
928
|
+
},
|
|
929
|
+
"filters.clearAllCriteria": {
|
|
930
|
+
"signature": "filters.clearAllCriteria(filterId: string): Promise<void>",
|
|
931
|
+
"docstring": "Clear all filter criteria for a filter.\nRemoves filters from all columns but keeps the filter structure intact.\n@param - Filter ID",
|
|
932
|
+
"usedTypes": []
|
|
933
|
+
},
|
|
934
|
+
"filters.apply": {
|
|
935
|
+
"signature": "filters.apply(filterId: string): Promise<void>",
|
|
936
|
+
"docstring": "Apply a filter (Rust evaluates criteria and updates row visibility).\n@param - Filter ID to apply",
|
|
937
|
+
"usedTypes": []
|
|
938
|
+
},
|
|
939
|
+
"filters.getInfo": {
|
|
940
|
+
"signature": "filters.getInfo(filterId: string): Promise<FilterDetailInfo | null>",
|
|
941
|
+
"docstring": "Get detailed filter info including resolved range and column filters.\n@param - Filter ID\n@returns Detailed filter info, or null if not found",
|
|
942
|
+
"usedTypes": []
|
|
943
|
+
},
|
|
944
|
+
"filters.getFilterUniqueValues": {
|
|
945
|
+
"signature": "filters.getFilterUniqueValues(filterId: string, headerCellId: string): Promise<any[]>",
|
|
946
|
+
"docstring": "Get unique values for a filter column (CellId-aware).\n@param - Filter ID\n@param - Header cell ID to get values for\n@returns Array of unique values",
|
|
947
|
+
"usedTypes": []
|
|
948
|
+
},
|
|
949
|
+
"filters.list": {
|
|
950
|
+
"signature": "filters.list(): Promise<FilterInfo[]>",
|
|
951
|
+
"docstring": "List all filters in the sheet.\n@returns Array of filter info objects",
|
|
952
|
+
"usedTypes": [
|
|
953
|
+
"FilterInfo"
|
|
954
|
+
]
|
|
955
|
+
},
|
|
956
|
+
"filters.listDetails": {
|
|
957
|
+
"signature": "filters.listDetails(): Promise<FilterDetailInfo[]>",
|
|
958
|
+
"docstring": "List all filters with resolved numeric ranges and column filters.\nSingle bridge call — avoids the N+1 pattern.\n@returns Array of detailed filter info objects",
|
|
959
|
+
"usedTypes": []
|
|
960
|
+
},
|
|
961
|
+
"filters.getSortState": {
|
|
962
|
+
"signature": "filters.getSortState(filterId: string): Promise<FilterSortState | null>",
|
|
963
|
+
"docstring": "Get the sort state for a filter.\n@param - Filter ID\n@returns Sort state, or null if no sort state set",
|
|
964
|
+
"usedTypes": []
|
|
965
|
+
},
|
|
966
|
+
"filters.setSortState": {
|
|
967
|
+
"signature": "filters.setSortState(filterId: string, state: FilterSortState): Promise<void>",
|
|
968
|
+
"docstring": "Set the sort state for a filter.\n@param - Filter ID\n@param - Sort state to set",
|
|
969
|
+
"usedTypes": []
|
|
970
|
+
},
|
|
971
|
+
"formats.set": {
|
|
972
|
+
"signature": "formats.set(address: string, format: CellFormat): Promise<void>",
|
|
973
|
+
"docstring": "Set format for a single cell.\n@param - A1-style cell address (e.g. \"A1\", \"B3\")\n@param - Format properties to apply",
|
|
974
|
+
"usedTypes": []
|
|
975
|
+
},
|
|
976
|
+
"formats.setRange": {
|
|
977
|
+
"signature": "formats.setRange(range: string, format: CellFormat): Promise<void>",
|
|
978
|
+
"docstring": "Set format for a contiguous range.\n@param - A1-style range string (e.g. \"A1:B2\")\n@param - Format properties to apply",
|
|
979
|
+
"usedTypes": []
|
|
980
|
+
},
|
|
981
|
+
"formats.setRanges": {
|
|
982
|
+
"signature": "formats.setRanges(ranges: CellRange[], format: CellFormat): Promise<void>",
|
|
983
|
+
"docstring": "Set format for multiple ranges, with full row/column optimization.\n@param - Array of range objects\n@param - Format properties to apply",
|
|
984
|
+
"usedTypes": []
|
|
985
|
+
},
|
|
986
|
+
"formats.clear": {
|
|
987
|
+
"signature": "formats.clear(address: string): Promise<void>",
|
|
988
|
+
"docstring": "Clear format from a single cell, resetting it to default.\n@param - A1-style cell address",
|
|
989
|
+
"usedTypes": []
|
|
990
|
+
},
|
|
991
|
+
"formats.get": {
|
|
992
|
+
"signature": "formats.get(address: string): Promise<CellFormat | null>",
|
|
993
|
+
"docstring": "Get the format of a single cell.\n@param - A1-style cell address\n@returns The cell format, or null if no format is set",
|
|
994
|
+
"usedTypes": []
|
|
995
|
+
},
|
|
996
|
+
"formats.applyPattern": {
|
|
997
|
+
"signature": "formats.applyPattern(format: CellFormat, sourceRange: CellRange | null, targetRange: CellRange): Promise<void>",
|
|
998
|
+
"docstring": "Apply a format pattern from a source range to a target range.\n\nWhen the target range is larger than the source range, the source format\npattern is tiled to fill the target (like Excel's Format Painter with\nmulti-cell sources).\n@param - The base format to apply (used when sourceRange is null or single-cell)\n@param - Source range for pattern replication, or null for simple application\n@param - Target range to apply formats to",
|
|
999
|
+
"usedTypes": []
|
|
1000
|
+
},
|
|
1001
|
+
"hyperlinks.set": {
|
|
1002
|
+
"signature": "hyperlinks.set(address: string, url: string): Promise<void>",
|
|
1003
|
+
"docstring": "Set a hyperlink on a cell.\n@param - A1-style cell address (e.g. \"A1\")\n@param - Hyperlink URL",
|
|
1004
|
+
"usedTypes": []
|
|
1005
|
+
},
|
|
1006
|
+
"hyperlinks.get": {
|
|
1007
|
+
"signature": "hyperlinks.get(address: string): Promise<string | null>",
|
|
1008
|
+
"docstring": "Get the hyperlink URL for a cell.\n@param - A1-style cell address\n@returns The hyperlink URL, or null if no hyperlink",
|
|
1009
|
+
"usedTypes": []
|
|
1010
|
+
},
|
|
1011
|
+
"hyperlinks.remove": {
|
|
1012
|
+
"signature": "hyperlinks.remove(address: string): Promise<void>",
|
|
1013
|
+
"docstring": "Remove a hyperlink from a cell.\n@param - A1-style cell address",
|
|
1014
|
+
"usedTypes": []
|
|
1015
|
+
},
|
|
1016
|
+
"layout.getRowHeight": {
|
|
1017
|
+
"signature": "layout.getRowHeight(row: number): Promise<number>",
|
|
1018
|
+
"docstring": "Get the height of a row in pixels.\n@param - Row index (0-based)\n@returns Row height in pixels",
|
|
1019
|
+
"usedTypes": []
|
|
1020
|
+
},
|
|
1021
|
+
"layout.setRowHeight": {
|
|
1022
|
+
"signature": "layout.setRowHeight(row: number, height: number): Promise<void>",
|
|
1023
|
+
"docstring": "Set the height of a row.\n@param - Row index (0-based)\n@param - Height in pixels (must be > 0)",
|
|
1024
|
+
"usedTypes": []
|
|
1025
|
+
},
|
|
1026
|
+
"layout.getColumnWidth": {
|
|
1027
|
+
"signature": "layout.getColumnWidth(col: number): Promise<number>",
|
|
1028
|
+
"docstring": "Get the width of a column in pixels.\n@param - Column index (0-based)\n@returns Column width in pixels",
|
|
1029
|
+
"usedTypes": []
|
|
1030
|
+
},
|
|
1031
|
+
"layout.setColumnWidth": {
|
|
1032
|
+
"signature": "layout.setColumnWidth(col: number, width: number): Promise<void>",
|
|
1033
|
+
"docstring": "Set the width of a column.\n@param - Column index (0-based)\n@param - Width in pixels (must be > 0)",
|
|
1034
|
+
"usedTypes": []
|
|
1035
|
+
},
|
|
1036
|
+
"layout.autoFitColumn": {
|
|
1037
|
+
"signature": "layout.autoFitColumn(col: number): Promise<void>",
|
|
1038
|
+
"docstring": "Auto-fit a column width to its content.\n@param - Column index (0-based)",
|
|
1039
|
+
"usedTypes": []
|
|
1040
|
+
},
|
|
1041
|
+
"layout.autoFitRow": {
|
|
1042
|
+
"signature": "layout.autoFitRow(row: number): Promise<void>",
|
|
1043
|
+
"docstring": "Auto-fit a row height to its content.\n@param - Row index (0-based)",
|
|
1044
|
+
"usedTypes": []
|
|
1045
|
+
},
|
|
1046
|
+
"layout.getRowHeightsBatch": {
|
|
1047
|
+
"signature": "layout.getRowHeightsBatch(startRow: number, endRow: number): Promise<[number, number][]>",
|
|
1048
|
+
"docstring": "Get row heights for a range of rows.\n@param - Start row index (0-based, inclusive)\n@param - End row index (0-based, inclusive)\n@returns Array of [rowIndex, height] pairs",
|
|
1049
|
+
"usedTypes": []
|
|
1050
|
+
},
|
|
1051
|
+
"layout.getColWidthsBatch": {
|
|
1052
|
+
"signature": "layout.getColWidthsBatch(startCol: number, endCol: number): Promise<[number, number][]>",
|
|
1053
|
+
"docstring": "Get column widths for a range of columns.\n@param - Start column index (0-based, inclusive)\n@param - End column index (0-based, inclusive)\n@returns Array of [colIndex, width] pairs",
|
|
1054
|
+
"usedTypes": []
|
|
1055
|
+
},
|
|
1056
|
+
"layout.setRowVisible": {
|
|
1057
|
+
"signature": "layout.setRowVisible(row: number, visible: boolean): Promise<void>",
|
|
1058
|
+
"docstring": "Set the visibility of a single row.\n@param - Row index (0-based)\n@param - True to show, false to hide",
|
|
1059
|
+
"usedTypes": []
|
|
1060
|
+
},
|
|
1061
|
+
"layout.setColumnVisible": {
|
|
1062
|
+
"signature": "layout.setColumnVisible(col: number, visible: boolean): Promise<void>",
|
|
1063
|
+
"docstring": "Set the visibility of a single column.\n@param - Column index (0-based)\n@param - True to show, false to hide",
|
|
1064
|
+
"usedTypes": []
|
|
1065
|
+
},
|
|
1066
|
+
"layout.isRowHidden": {
|
|
1067
|
+
"signature": "layout.isRowHidden(row: number): Promise<boolean>",
|
|
1068
|
+
"docstring": "Check whether a row is hidden.\n@param - Row index (0-based)\n@returns True if the row is hidden",
|
|
1069
|
+
"usedTypes": []
|
|
1070
|
+
},
|
|
1071
|
+
"layout.isColumnHidden": {
|
|
1072
|
+
"signature": "layout.isColumnHidden(col: number): Promise<boolean>",
|
|
1073
|
+
"docstring": "Check whether a column is hidden.\n@param - Column index (0-based)\n@returns True if the column is hidden",
|
|
1074
|
+
"usedTypes": []
|
|
1075
|
+
},
|
|
1076
|
+
"layout.unhideRows": {
|
|
1077
|
+
"signature": "layout.unhideRows(startRow: number, endRow: number): Promise<void>",
|
|
1078
|
+
"docstring": "Unhide all rows in a range.\n@param - Start row index (0-based, inclusive)\n@param - End row index (0-based, inclusive)",
|
|
1079
|
+
"usedTypes": []
|
|
1080
|
+
},
|
|
1081
|
+
"layout.unhideColumns": {
|
|
1082
|
+
"signature": "layout.unhideColumns(startCol: number, endCol: number): Promise<void>",
|
|
1083
|
+
"docstring": "Unhide all columns in a range.\n@param - Start column index (0-based, inclusive)\n@param - End column index (0-based, inclusive)",
|
|
1084
|
+
"usedTypes": []
|
|
1085
|
+
},
|
|
1086
|
+
"layout.hideRows": {
|
|
1087
|
+
"signature": "layout.hideRows(rows: number[]): Promise<void>",
|
|
1088
|
+
"docstring": "Hide multiple rows by index.\n@param - Array of row indices to hide (0-based)",
|
|
1089
|
+
"usedTypes": []
|
|
1090
|
+
},
|
|
1091
|
+
"layout.getHiddenRowsBitmap": {
|
|
1092
|
+
"signature": "layout.getHiddenRowsBitmap(): Promise<Set<number>>",
|
|
1093
|
+
"docstring": "Get the set of all hidden row indices.\n@returns Set of hidden row indices",
|
|
1094
|
+
"usedTypes": []
|
|
1095
|
+
},
|
|
1096
|
+
"layout.getHiddenColumnsBitmap": {
|
|
1097
|
+
"signature": "layout.getHiddenColumnsBitmap(): Promise<Set<number>>",
|
|
1098
|
+
"docstring": "Get the set of all hidden column indices.\n@returns Set of hidden column indices",
|
|
1099
|
+
"usedTypes": []
|
|
1100
|
+
},
|
|
1101
|
+
"outline.groupRows": {
|
|
1102
|
+
"signature": "outline.groupRows(startRow: number, endRow: number): Promise<void>",
|
|
1103
|
+
"docstring": "Group rows in a range.\n@param - Start row index (0-based, inclusive)\n@param - End row index (0-based, inclusive)",
|
|
1104
|
+
"usedTypes": []
|
|
1105
|
+
},
|
|
1106
|
+
"outline.ungroupRows": {
|
|
1107
|
+
"signature": "outline.ungroupRows(startRow: number, endRow: number): Promise<void>",
|
|
1108
|
+
"docstring": "Ungroup rows in a range.\n@param - Start row index (0-based, inclusive)\n@param - End row index (0-based, inclusive)",
|
|
1109
|
+
"usedTypes": []
|
|
1110
|
+
},
|
|
1111
|
+
"outline.groupColumns": {
|
|
1112
|
+
"signature": "outline.groupColumns(startCol: number, endCol: number): Promise<void>",
|
|
1113
|
+
"docstring": "Group columns in a range.\n@param - Start column index (0-based, inclusive)\n@param - End column index (0-based, inclusive)",
|
|
1114
|
+
"usedTypes": []
|
|
1115
|
+
},
|
|
1116
|
+
"outline.ungroupColumns": {
|
|
1117
|
+
"signature": "outline.ungroupColumns(startCol: number, endCol: number): Promise<void>",
|
|
1118
|
+
"docstring": "Ungroup columns in a range.\n@param - Start column index (0-based, inclusive)\n@param - End column index (0-based, inclusive)",
|
|
1119
|
+
"usedTypes": []
|
|
1120
|
+
},
|
|
1121
|
+
"outline.toggleCollapsed": {
|
|
1122
|
+
"signature": "outline.toggleCollapsed(groupId: string): Promise<void>",
|
|
1123
|
+
"docstring": "Toggle the collapsed state of a group.\n@param - Group identifier",
|
|
1124
|
+
"usedTypes": []
|
|
1125
|
+
},
|
|
1126
|
+
"outline.expandAll": {
|
|
1127
|
+
"signature": "outline.expandAll(): Promise<void>",
|
|
1128
|
+
"docstring": "Expand all groups in the worksheet.",
|
|
1129
|
+
"usedTypes": []
|
|
1130
|
+
},
|
|
1131
|
+
"outline.collapseAll": {
|
|
1132
|
+
"signature": "outline.collapseAll(): Promise<void>",
|
|
1133
|
+
"docstring": "Collapse all groups in the worksheet.",
|
|
1134
|
+
"usedTypes": []
|
|
1135
|
+
},
|
|
1136
|
+
"outline.getState": {
|
|
1137
|
+
"signature": "outline.getState(): Promise<GroupState>",
|
|
1138
|
+
"docstring": "Get the full group state for the worksheet.\n@returns Group state including row groups, column groups, and max levels",
|
|
1139
|
+
"usedTypes": []
|
|
1140
|
+
},
|
|
1141
|
+
"outline.getLevel": {
|
|
1142
|
+
"signature": "outline.getLevel(type: \"column\" | \"row\", index: number): Promise<number>",
|
|
1143
|
+
"docstring": "Get the outline level of a specific row or column.\n@param - Whether to query a row or column\n@param - Row or column index (0-based)\n@returns The outline level (0 if not in any group)",
|
|
1144
|
+
"usedTypes": []
|
|
1145
|
+
},
|
|
1146
|
+
"outline.getMaxLevel": {
|
|
1147
|
+
"signature": "outline.getMaxLevel(type: \"column\" | \"row\"): Promise<number>",
|
|
1148
|
+
"docstring": "Get the maximum outline level for rows or columns.\n@param - Whether to query rows or columns\n@returns The maximum outline level",
|
|
1149
|
+
"usedTypes": []
|
|
1150
|
+
},
|
|
1151
|
+
"outline.subtotal": {
|
|
1152
|
+
"signature": "outline.subtotal(config: SubtotalConfig): Promise<void>",
|
|
1153
|
+
"docstring": "Apply automatic subtotals.\n@param - Subtotal configuration",
|
|
1154
|
+
"usedTypes": []
|
|
1155
|
+
},
|
|
1156
|
+
"outline.getSettings": {
|
|
1157
|
+
"signature": "outline.getSettings(): Promise<OutlineSettings>",
|
|
1158
|
+
"docstring": "Get the outline display settings.\n@returns Current outline settings",
|
|
1159
|
+
"usedTypes": []
|
|
1160
|
+
},
|
|
1161
|
+
"outline.setSettings": {
|
|
1162
|
+
"signature": "outline.setSettings(settings: Partial<OutlineSettings>): Promise<void>",
|
|
1163
|
+
"docstring": "Update outline display settings.\n@param - Partial outline settings to update",
|
|
1164
|
+
"usedTypes": []
|
|
1165
|
+
},
|
|
1166
|
+
"pivots.add": {
|
|
1167
|
+
"signature": "pivots.add(config: Omit<PivotTableConfig, \"id\" | \"createdAt\" | \"updatedAt\">): Promise<PivotTableConfig>",
|
|
1168
|
+
"docstring": "Create a new pivot table on this worksheet.\n@param - Pivot table configuration (source, fields, placements).\nThe `id`, `createdAt`, and `updatedAt` fields are auto-generated and should be omitted.\n@returns The created pivot table configuration (with generated id, timestamps)",
|
|
1169
|
+
"usedTypes": [
|
|
1170
|
+
"PivotTableConfig"
|
|
1171
|
+
]
|
|
1172
|
+
},
|
|
1173
|
+
"pivots.addWithSheet": {
|
|
1174
|
+
"signature": "pivots.addWithSheet(sheetName: string, config: Omit<PivotTableConfig, \"id\" | \"createdAt\" | \"updatedAt\">): Promise<{ sheetId: string; config: PivotTableConfig; }>",
|
|
1175
|
+
"docstring": "Atomically create a new sheet AND a pivot table on it.\nBoth operations happen in a single transaction for undo atomicity.\n@param - Name for the new sheet\n@param - Pivot table configuration (id, createdAt, updatedAt auto-generated)\n@returns The new sheet ID and the created pivot config",
|
|
1176
|
+
"usedTypes": []
|
|
1177
|
+
},
|
|
1178
|
+
"pivots.remove": {
|
|
1179
|
+
"signature": "pivots.remove(name: string): Promise<void>",
|
|
1180
|
+
"docstring": "Remove a pivot table by name.\n@param - Pivot table name",
|
|
1181
|
+
"usedTypes": []
|
|
1182
|
+
},
|
|
1183
|
+
"pivots.list": {
|
|
1184
|
+
"signature": "pivots.list(): Promise<PivotTableInfo[]>",
|
|
1185
|
+
"docstring": "List all pivot tables on this worksheet.\n@returns Array of pivot table summary information",
|
|
1186
|
+
"usedTypes": []
|
|
1187
|
+
},
|
|
1188
|
+
"pivots.get": {
|
|
1189
|
+
"signature": "pivots.get(name: string): Promise<PivotTableHandle | null>",
|
|
1190
|
+
"docstring": "Get a pivot table handle by name.\n@param - Pivot table name\n@returns A handle for the pivot table, or null if not found",
|
|
1191
|
+
"usedTypes": [
|
|
1192
|
+
"PivotTableHandle"
|
|
1193
|
+
]
|
|
1194
|
+
},
|
|
1195
|
+
"pivots.addField": {
|
|
1196
|
+
"signature": "pivots.addField(pivotId: string, fieldId: string, area: PivotFieldArea, options?: { position?: number | undefined; aggregateFunction?: AggregateFunction | undefined; sortOrder?: SortOrder | undefined; displayName?: string | undefined; } | undefined): Promise<void>",
|
|
1197
|
+
"docstring": "Add a field to a pivot table area.\n@param - Pivot table ID\n@param - Field ID to add\n@param - Target area (row, column, value, or filter)\n@param - Optional configuration (position, aggregateFunction, sortOrder, displayName)",
|
|
1198
|
+
"usedTypes": []
|
|
1199
|
+
},
|
|
1200
|
+
"pivots.removeField": {
|
|
1201
|
+
"signature": "pivots.removeField(pivotId: string, fieldId: string, area: PivotFieldArea): Promise<void>",
|
|
1202
|
+
"docstring": "Remove a field from a pivot table area.\n@param - Pivot table ID\n@param - Field ID to remove\n@param - Area to remove the field from",
|
|
1203
|
+
"usedTypes": []
|
|
1204
|
+
},
|
|
1205
|
+
"pivots.moveField": {
|
|
1206
|
+
"signature": "pivots.moveField(pivotId: string, fieldId: string, fromArea: PivotFieldArea, toArea: PivotFieldArea, toPosition: number): Promise<void>",
|
|
1207
|
+
"docstring": "Move a field to a different area or position.\n@param - Pivot table ID\n@param - Field ID to move\n@param - Source area\n@param - Target area\n@param - Target position within the area",
|
|
1208
|
+
"usedTypes": []
|
|
1209
|
+
},
|
|
1210
|
+
"pivots.setAggregateFunction": {
|
|
1211
|
+
"signature": "pivots.setAggregateFunction(pivotId: string, fieldId: string, aggregateFunction: AggregateFunction): Promise<void>",
|
|
1212
|
+
"docstring": "Set the aggregate function for a value field.\n@param - Pivot table ID\n@param - Field ID (must be in the 'value' area)\n@param - New aggregation function",
|
|
1213
|
+
"usedTypes": []
|
|
1214
|
+
},
|
|
1215
|
+
"pivots.setSortOrder": {
|
|
1216
|
+
"signature": "pivots.setSortOrder(pivotId: string, fieldId: string, sortOrder: SortOrder): Promise<void>",
|
|
1217
|
+
"docstring": "Set the sort order for a row or column field.\n@param - Pivot table ID\n@param - Field ID (must be in 'row' or 'column' area)\n@param - Sort order ('asc', 'desc', or 'none')",
|
|
1218
|
+
"usedTypes": []
|
|
1219
|
+
},
|
|
1220
|
+
"pivots.setFilter": {
|
|
1221
|
+
"signature": "pivots.setFilter(pivotId: string, fieldId: string, filter: Omit<PivotFilter, \"fieldId\">): Promise<void>",
|
|
1222
|
+
"docstring": "Set (add or update) a filter on a field.\n@param - Pivot table ID\n@param - Field ID to filter\n@param - Filter configuration (without fieldId)",
|
|
1223
|
+
"usedTypes": []
|
|
1224
|
+
},
|
|
1225
|
+
"pivots.removeFilter": {
|
|
1226
|
+
"signature": "pivots.removeFilter(pivotId: string, fieldId: string): Promise<void>",
|
|
1227
|
+
"docstring": "Remove a filter from a field.\n@param - Pivot table ID\n@param - Field ID whose filter should be removed",
|
|
1228
|
+
"usedTypes": []
|
|
1229
|
+
},
|
|
1230
|
+
"pivots.setLayout": {
|
|
1231
|
+
"signature": "pivots.setLayout(pivotId: string, layout: Partial<PivotTableLayout>): Promise<void>",
|
|
1232
|
+
"docstring": "Set layout options for a pivot table.\n@param - Pivot table ID\n@param - Partial layout configuration to merge with existing",
|
|
1233
|
+
"usedTypes": []
|
|
1234
|
+
},
|
|
1235
|
+
"pivots.setStyle": {
|
|
1236
|
+
"signature": "pivots.setStyle(pivotId: string, style: Partial<PivotTableStyle>): Promise<void>",
|
|
1237
|
+
"docstring": "Set style options for a pivot table.\n@param - Pivot table ID\n@param - Partial style configuration to merge with existing",
|
|
1238
|
+
"usedTypes": []
|
|
1239
|
+
},
|
|
1240
|
+
"pivots.detectFields": {
|
|
1241
|
+
"signature": "pivots.detectFields(sourceSheetId: string, range: { startRow: number; startCol: number; endRow: number; endCol: number; }): Promise<any[]>",
|
|
1242
|
+
"docstring": "Detect fields from source data for pivot table creation.\n@param - Sheet ID containing the source data\n@param - Source data range\n@returns Array of detected pivot fields",
|
|
1243
|
+
"usedTypes": []
|
|
1244
|
+
},
|
|
1245
|
+
"pivots.compute": {
|
|
1246
|
+
"signature": "pivots.compute(pivotId: string, forceRefresh?: boolean | undefined): Promise<any>",
|
|
1247
|
+
"docstring": "Compute a pivot table result (uses cache if available).\n@param - Pivot table ID\n@param - Force recomputation ignoring cache\n@returns Computed pivot table result",
|
|
1248
|
+
"usedTypes": []
|
|
1249
|
+
},
|
|
1250
|
+
"pivots.refresh": {
|
|
1251
|
+
"signature": "pivots.refresh(pivotId: string): Promise<void>",
|
|
1252
|
+
"docstring": "Refresh a pivot table (recompute without cache).\n@param - Pivot table ID",
|
|
1253
|
+
"usedTypes": []
|
|
1254
|
+
},
|
|
1255
|
+
"pivots.getDrillDownData": {
|
|
1256
|
+
"signature": "pivots.getDrillDownData(pivotId: string, rowKey: string, columnKey: string): Promise<any[][]>",
|
|
1257
|
+
"docstring": "Get drill-down data for a pivot table cell.\n@param - Pivot table ID\n@param - Row key from the pivot result\n@param - Column key from the pivot result\n@returns Source data rows that contribute to this cell",
|
|
1258
|
+
"usedTypes": []
|
|
1259
|
+
},
|
|
1260
|
+
"pivots.toggleExpanded": {
|
|
1261
|
+
"signature": "pivots.toggleExpanded(pivotId: string, headerKey: string, isRow: boolean): Promise<boolean>",
|
|
1262
|
+
"docstring": "Toggle expansion state for a header.\n@param - Pivot table ID\n@param - Header key to toggle\n@param - Whether this is a row header (true) or column header (false)\n@returns The new expansion state (true = expanded, false = collapsed)",
|
|
1263
|
+
"usedTypes": []
|
|
1264
|
+
},
|
|
1265
|
+
"pivots.setAllExpanded": {
|
|
1266
|
+
"signature": "pivots.setAllExpanded(pivotId: string, expanded: boolean): Promise<void>",
|
|
1267
|
+
"docstring": "Set expansion state for all headers.\n@param - Pivot table ID\n@param - Whether all headers should be expanded (true) or collapsed (false)",
|
|
1268
|
+
"usedTypes": []
|
|
1269
|
+
},
|
|
1270
|
+
"pivots.getExpansionState": {
|
|
1271
|
+
"signature": "pivots.getExpansionState(pivotId: string): Promise<PivotExpansionState>",
|
|
1272
|
+
"docstring": "Get the current expansion state for a pivot table.\n@param - Pivot table ID\n@returns Expansion state with expandedRows and expandedColumns maps",
|
|
1273
|
+
"usedTypes": []
|
|
1274
|
+
},
|
|
1275
|
+
"print.getSettings": {
|
|
1276
|
+
"signature": "print.getSettings(): Promise<SheetPrintSettings>",
|
|
1277
|
+
"docstring": "Get the current print settings for the sheet.\n@returns Current print settings",
|
|
1278
|
+
"usedTypes": []
|
|
1279
|
+
},
|
|
1280
|
+
"print.setSettings": {
|
|
1281
|
+
"signature": "print.setSettings(settings: Partial<SheetPrintSettings>): Promise<void>",
|
|
1282
|
+
"docstring": "Update print settings. Only the provided keys are changed.\n@param - Partial print settings to apply",
|
|
1283
|
+
"usedTypes": []
|
|
1284
|
+
},
|
|
1285
|
+
"print.getArea": {
|
|
1286
|
+
"signature": "print.getArea(): Promise<string | null>",
|
|
1287
|
+
"docstring": "Get the current print area as an A1-notation range string.\n@returns The print area range string, or null if no print area is set",
|
|
1288
|
+
"usedTypes": []
|
|
1289
|
+
},
|
|
1290
|
+
"print.setArea": {
|
|
1291
|
+
"signature": "print.setArea(area: string): Promise<void>",
|
|
1292
|
+
"docstring": "Set the print area to the specified A1-notation range.\n@param - A1-notation range string (e.g., \"A1:H20\")",
|
|
1293
|
+
"usedTypes": []
|
|
1294
|
+
},
|
|
1295
|
+
"print.clearArea": {
|
|
1296
|
+
"signature": "print.clearArea(): Promise<void>",
|
|
1297
|
+
"docstring": "Clear the print area so the entire sheet prints.",
|
|
1298
|
+
"usedTypes": []
|
|
1299
|
+
},
|
|
1300
|
+
"print.addPageBreak": {
|
|
1301
|
+
"signature": "print.addPageBreak(type: \"horizontal\" | \"vertical\", position: number): Promise<void>",
|
|
1302
|
+
"docstring": "Add a manual page break at the specified position.\n@param - 'horizontal' (row break) or 'vertical' (column break)\n@param - 0-based row or column index for the break",
|
|
1303
|
+
"usedTypes": []
|
|
1304
|
+
},
|
|
1305
|
+
"print.removePageBreak": {
|
|
1306
|
+
"signature": "print.removePageBreak(type: \"horizontal\" | \"vertical\", position: number): Promise<void>",
|
|
1307
|
+
"docstring": "Remove a manual page break at the specified position.\n@param - 'horizontal' or 'vertical'\n@param - 0-based row or column index of the break to remove",
|
|
1308
|
+
"usedTypes": []
|
|
1309
|
+
},
|
|
1310
|
+
"print.getPageBreaks": {
|
|
1311
|
+
"signature": "print.getPageBreaks(): Promise<{ horizontal: number[]; vertical: number[]; }>",
|
|
1312
|
+
"docstring": "Get all manual page breaks in the sheet.\n@returns Object containing arrays of horizontal and vertical break positions",
|
|
1313
|
+
"usedTypes": []
|
|
1314
|
+
},
|
|
1315
|
+
"print.clearPageBreaks": {
|
|
1316
|
+
"signature": "print.clearPageBreaks(): Promise<void>",
|
|
1317
|
+
"docstring": "Remove all manual page breaks from the sheet.",
|
|
1318
|
+
"usedTypes": []
|
|
1319
|
+
},
|
|
1320
|
+
"print.setPrintTitleRows": {
|
|
1321
|
+
"signature": "print.setPrintTitleRows(startRow: number, endRow: number): Promise<void>",
|
|
1322
|
+
"docstring": "Set the rows to repeat at the top of each printed page (print titles).\n@param - 0-based start row index\n@param - 0-based end row index (inclusive)",
|
|
1323
|
+
"usedTypes": []
|
|
1324
|
+
},
|
|
1325
|
+
"print.setPrintTitleColumns": {
|
|
1326
|
+
"signature": "print.setPrintTitleColumns(startCol: number, endCol: number): Promise<void>",
|
|
1327
|
+
"docstring": "Set the columns to repeat at the left of each printed page (print titles).\n@param - 0-based start column index\n@param - 0-based end column index (inclusive)",
|
|
1328
|
+
"usedTypes": []
|
|
1329
|
+
},
|
|
1330
|
+
"print.getPrintTitleRows": {
|
|
1331
|
+
"signature": "print.getPrintTitleRows(): Promise<[number, number] | null>",
|
|
1332
|
+
"docstring": "Get the rows configured to repeat at the top of each printed page.\n@returns A [startRow, endRow] tuple (0-based, inclusive), or null if no repeat rows are set",
|
|
1333
|
+
"usedTypes": []
|
|
1334
|
+
},
|
|
1335
|
+
"print.getPrintTitleColumns": {
|
|
1336
|
+
"signature": "print.getPrintTitleColumns(): Promise<[number, number] | null>",
|
|
1337
|
+
"docstring": "Get the columns configured to repeat at the left of each printed page.\n@returns A [startCol, endCol] tuple (0-based, inclusive), or null if no repeat columns are set",
|
|
1338
|
+
"usedTypes": []
|
|
1339
|
+
},
|
|
1340
|
+
"print.clearPrintTitles": {
|
|
1341
|
+
"signature": "print.clearPrintTitles(): Promise<void>",
|
|
1342
|
+
"docstring": "Clear all print titles (both repeat rows and repeat columns).\nOther print settings (margins, orientation, etc.) are preserved.",
|
|
1343
|
+
"usedTypes": []
|
|
1344
|
+
},
|
|
1345
|
+
"protection.isProtected": {
|
|
1346
|
+
"signature": "protection.isProtected(): Promise<boolean>",
|
|
1347
|
+
"docstring": "Check whether the sheet is currently protected.\n@returns True if the sheet is protected",
|
|
1348
|
+
"usedTypes": []
|
|
1349
|
+
},
|
|
1350
|
+
"protection.protect": {
|
|
1351
|
+
"signature": "protection.protect(password?: string | undefined, options?: ProtectionOptions | undefined): Promise<void>",
|
|
1352
|
+
"docstring": "Protect the sheet with an optional password and granular permission options.\n@param - Optional password to require for unprotection\n@param - Granular permissions (e.g., allowSort, allowFormatCells)",
|
|
1353
|
+
"usedTypes": [
|
|
1354
|
+
"ProtectionOptions"
|
|
1355
|
+
]
|
|
1356
|
+
},
|
|
1357
|
+
"protection.unprotect": {
|
|
1358
|
+
"signature": "protection.unprotect(password?: string | undefined): Promise<boolean>",
|
|
1359
|
+
"docstring": "Unprotect the sheet. Returns true if unprotection succeeded.\n@param - Password if the sheet was protected with one\n@returns True if the sheet was successfully unprotected",
|
|
1360
|
+
"usedTypes": []
|
|
1361
|
+
},
|
|
1362
|
+
"protection.canEditCell": {
|
|
1363
|
+
"signature": "protection.canEditCell(row: number, col: number): Promise<boolean>",
|
|
1364
|
+
"docstring": "Check whether a specific cell can be edited under current protection.\nReturns true if the sheet is unprotected or the cell is unlocked.\n@param - Row index (0-based)\n@param - Column index (0-based)\n@returns True if the cell is editable",
|
|
1365
|
+
"usedTypes": []
|
|
1366
|
+
},
|
|
1367
|
+
"protection.canDoStructureOp": {
|
|
1368
|
+
"signature": "protection.canDoStructureOp(operation: string): Promise<boolean>",
|
|
1369
|
+
"docstring": "Check whether a structural operation is allowed under current protection.\n@param - Operation name (e.g., 'sort', 'insertRows', 'deleteColumns')\n@returns True if the operation is allowed",
|
|
1370
|
+
"usedTypes": []
|
|
1371
|
+
},
|
|
1372
|
+
"protection.canSort": {
|
|
1373
|
+
"signature": "protection.canSort(): Promise<boolean>",
|
|
1374
|
+
"docstring": "Check whether sorting is allowed under current protection.\nConvenience shorthand for `canDoStructureOp('sort')`.\n@returns True if sorting is allowed",
|
|
1375
|
+
"usedTypes": []
|
|
1376
|
+
},
|
|
1377
|
+
"protection.getConfig": {
|
|
1378
|
+
"signature": "protection.getConfig(): Promise<ProtectionConfig>",
|
|
1379
|
+
"docstring": "Get the full protection configuration for the sheet.\n@returns Protection configuration including status and permission flags",
|
|
1380
|
+
"usedTypes": [
|
|
1381
|
+
"ProtectionConfig"
|
|
1382
|
+
]
|
|
1383
|
+
},
|
|
1384
|
+
"settings.get": {
|
|
1385
|
+
"signature": "settings.get(): Promise<SheetSettingsInfo>",
|
|
1386
|
+
"docstring": "Get all sheet settings.\n@returns Current sheet settings",
|
|
1387
|
+
"usedTypes": []
|
|
1388
|
+
},
|
|
1389
|
+
"settings.set": {
|
|
1390
|
+
"signature": "settings.set(key: K, value: SheetSettingsInfo[K]): Promise<void>",
|
|
1391
|
+
"docstring": "Set an individual sheet setting by key.\n@param - Setting key (e.g., 'showGridlines', 'defaultRowHeight')\n@param - New value for the setting",
|
|
1392
|
+
"usedTypes": []
|
|
1393
|
+
},
|
|
1394
|
+
"settings.getCustomLists": {
|
|
1395
|
+
"signature": "settings.getCustomLists(): Promise<string[][]>",
|
|
1396
|
+
"docstring": "Get the workbook-level custom sort lists.\n@returns Array of custom lists, each being an array of string values",
|
|
1397
|
+
"usedTypes": []
|
|
1398
|
+
},
|
|
1399
|
+
"settings.setCustomLists": {
|
|
1400
|
+
"signature": "settings.setCustomLists(lists: string[][]): Promise<void>",
|
|
1401
|
+
"docstring": "Replace all user-defined custom sort lists.\n@param - Array of custom lists to set",
|
|
1402
|
+
"usedTypes": []
|
|
1403
|
+
},
|
|
1404
|
+
"slicers.add": {
|
|
1405
|
+
"signature": "slicers.add(config: SlicerConfig): Promise<string>",
|
|
1406
|
+
"docstring": "Create a new slicer on this worksheet.\n@param - Slicer configuration (table, column, position)\n@returns The ID of the created slicer",
|
|
1407
|
+
"usedTypes": [
|
|
1408
|
+
"SlicerConfig"
|
|
1409
|
+
]
|
|
1410
|
+
},
|
|
1411
|
+
"slicers.remove": {
|
|
1412
|
+
"signature": "slicers.remove(slicerId: string): Promise<void>",
|
|
1413
|
+
"docstring": "Remove a slicer from this worksheet.\n@param - ID of the slicer to remove",
|
|
1414
|
+
"usedTypes": []
|
|
1415
|
+
},
|
|
1416
|
+
"slicers.list": {
|
|
1417
|
+
"signature": "slicers.list(): Promise<SlicerInfo[]>",
|
|
1418
|
+
"docstring": "List all slicers on this worksheet.\n@returns Array of slicer summary information",
|
|
1419
|
+
"usedTypes": [
|
|
1420
|
+
"SlicerInfo"
|
|
1421
|
+
]
|
|
1422
|
+
},
|
|
1423
|
+
"slicers.get": {
|
|
1424
|
+
"signature": "slicers.get(slicerId: string): Promise<Slicer | null>",
|
|
1425
|
+
"docstring": "Get a slicer by ID, including full state.\n@param - ID of the slicer\n@returns Full slicer state, or null if not found",
|
|
1426
|
+
"usedTypes": []
|
|
1427
|
+
},
|
|
1428
|
+
"slicers.getItems": {
|
|
1429
|
+
"signature": "slicers.getItems(slicerId: string): Promise<SlicerItem[]>",
|
|
1430
|
+
"docstring": "Get the items (values) available in a slicer.\n@param - ID of the slicer\n@returns Array of slicer items with selection state",
|
|
1431
|
+
"usedTypes": [
|
|
1432
|
+
"SlicerItem"
|
|
1433
|
+
]
|
|
1434
|
+
},
|
|
1435
|
+
"slicers.setSelection": {
|
|
1436
|
+
"signature": "slicers.setSelection(slicerId: string, selectedItems: CellValue[]): Promise<void>",
|
|
1437
|
+
"docstring": "Set the selected items in a slicer, replacing any existing selection.\n@param - ID of the slicer\n@param - Array of values to select",
|
|
1438
|
+
"usedTypes": []
|
|
1439
|
+
},
|
|
1440
|
+
"slicers.clearSelection": {
|
|
1441
|
+
"signature": "slicers.clearSelection(slicerId: string): Promise<void>",
|
|
1442
|
+
"docstring": "Clear all selections in a slicer (show all items).\n@param - ID of the slicer",
|
|
1443
|
+
"usedTypes": []
|
|
1444
|
+
},
|
|
1445
|
+
"slicers.duplicate": {
|
|
1446
|
+
"signature": "slicers.duplicate(slicerId: string, offset?: { x?: number | undefined; y?: number | undefined; } | undefined): Promise<string>",
|
|
1447
|
+
"docstring": "Duplicate a slicer with an optional position offset.\n@param - ID of the slicer to duplicate\n@param - Position offset in pixels (defaults to { x: 20, y: 20 })\n@returns The ID of the newly created slicer",
|
|
1448
|
+
"usedTypes": []
|
|
1449
|
+
},
|
|
1450
|
+
"slicers.updateConfig": {
|
|
1451
|
+
"signature": "slicers.updateConfig(slicerId: string, updates: Partial<SlicerConfig>): Promise<void>",
|
|
1452
|
+
"docstring": "Update a slicer's configuration.\n@param - ID of the slicer\n@param - Partial configuration updates",
|
|
1453
|
+
"usedTypes": []
|
|
1454
|
+
},
|
|
1455
|
+
"slicers.getState": {
|
|
1456
|
+
"signature": "slicers.getState(slicerId: string): Promise<SlicerState>",
|
|
1457
|
+
"docstring": "Get the enriched runtime state of a slicer.\n@param - ID of the slicer\n@returns Enriched slicer state including computed items and connection status",
|
|
1458
|
+
"usedTypes": [
|
|
1459
|
+
"SlicerState"
|
|
1460
|
+
]
|
|
1461
|
+
},
|
|
1462
|
+
"sparklines.add": {
|
|
1463
|
+
"signature": "sparklines.add(cell: { row: number; col: number; }, dataRange: CellRange, type: SparklineType, options?: CreateSparklineOptions | undefined): Promise<Sparkline>",
|
|
1464
|
+
"docstring": "Add a sparkline to a cell.\n@param - Cell position (row and col, 0-based)\n@param - Data range for the sparkline\n@param - Sparkline type (line, column, winLoss)\n@param - Optional creation settings\n@returns The created sparkline",
|
|
1465
|
+
"usedTypes": []
|
|
1466
|
+
},
|
|
1467
|
+
"sparklines.addGroup": {
|
|
1468
|
+
"signature": "sparklines.addGroup(cells: { row: number; col: number; }[], dataRanges: CellRange[], type: SparklineType, options?: CreateSparklineGroupOptions | undefined): Promise<SparklineGroup>",
|
|
1469
|
+
"docstring": "Add a group of sparklines with shared settings.\n@param - Array of cell positions\n@param - Array of data ranges (must match cells length)\n@param - Sparkline type\n@param - Optional group creation settings\n@returns The created sparkline group",
|
|
1470
|
+
"usedTypes": []
|
|
1471
|
+
},
|
|
1472
|
+
"sparklines.get": {
|
|
1473
|
+
"signature": "sparklines.get(sparklineId: string): Promise<Sparkline | null>",
|
|
1474
|
+
"docstring": "Get a sparkline by ID.\n@param - Sparkline identifier\n@returns The sparkline, or null if not found",
|
|
1475
|
+
"usedTypes": []
|
|
1476
|
+
},
|
|
1477
|
+
"sparklines.getAtCell": {
|
|
1478
|
+
"signature": "sparklines.getAtCell(row: number, col: number): Promise<Sparkline | null>",
|
|
1479
|
+
"docstring": "Get the sparkline at a specific cell.\n@param - Row index (0-based)\n@param - Column index (0-based)\n@returns The sparkline at the cell, or null if none",
|
|
1480
|
+
"usedTypes": []
|
|
1481
|
+
},
|
|
1482
|
+
"sparklines.list": {
|
|
1483
|
+
"signature": "sparklines.list(): Promise<Sparkline[]>",
|
|
1484
|
+
"docstring": "List all sparklines in the worksheet.\n@returns Array of all sparklines",
|
|
1485
|
+
"usedTypes": []
|
|
1486
|
+
},
|
|
1487
|
+
"sparklines.getGroup": {
|
|
1488
|
+
"signature": "sparklines.getGroup(groupId: string): Promise<SparklineGroup | null>",
|
|
1489
|
+
"docstring": "Get a sparkline group by ID.\n@param - Group identifier\n@returns The sparkline group, or null if not found",
|
|
1490
|
+
"usedTypes": []
|
|
1491
|
+
},
|
|
1492
|
+
"sparklines.listGroups": {
|
|
1493
|
+
"signature": "sparklines.listGroups(): Promise<SparklineGroup[]>",
|
|
1494
|
+
"docstring": "List all sparkline groups in the worksheet.\n@returns Array of all sparkline groups",
|
|
1495
|
+
"usedTypes": []
|
|
1496
|
+
},
|
|
1497
|
+
"sparklines.update": {
|
|
1498
|
+
"signature": "sparklines.update(sparklineId: string, updates: Partial<Sparkline>): Promise<void>",
|
|
1499
|
+
"docstring": "Update a sparkline's settings.\n@param - Sparkline identifier\n@param - Partial sparkline properties to update",
|
|
1500
|
+
"usedTypes": []
|
|
1501
|
+
},
|
|
1502
|
+
"sparklines.updateGroup": {
|
|
1503
|
+
"signature": "sparklines.updateGroup(groupId: string, updates: Partial<SparklineGroup>): Promise<void>",
|
|
1504
|
+
"docstring": "Update a sparkline group's settings (applies to all members).\n@param - Group identifier\n@param - Partial group properties to update",
|
|
1505
|
+
"usedTypes": []
|
|
1506
|
+
},
|
|
1507
|
+
"sparklines.remove": {
|
|
1508
|
+
"signature": "sparklines.remove(sparklineId: string): Promise<void>",
|
|
1509
|
+
"docstring": "Remove a sparkline.\n@param - Sparkline identifier",
|
|
1510
|
+
"usedTypes": []
|
|
1511
|
+
},
|
|
1512
|
+
"sparklines.removeGroup": {
|
|
1513
|
+
"signature": "sparklines.removeGroup(groupId: string): Promise<void>",
|
|
1514
|
+
"docstring": "Remove a sparkline group and all its member sparklines.\n@param - Group identifier",
|
|
1515
|
+
"usedTypes": []
|
|
1516
|
+
},
|
|
1517
|
+
"sparklines.clearInRange": {
|
|
1518
|
+
"signature": "sparklines.clearInRange(range: CellRange): Promise<void>",
|
|
1519
|
+
"docstring": "Clear all sparklines whose cell falls within a range.\n@param - Range to clear sparklines from",
|
|
1520
|
+
"usedTypes": []
|
|
1521
|
+
},
|
|
1522
|
+
"sparklines.clearAll": {
|
|
1523
|
+
"signature": "sparklines.clearAll(): Promise<void>",
|
|
1524
|
+
"docstring": "Clear all sparklines in the worksheet.",
|
|
1525
|
+
"usedTypes": []
|
|
1526
|
+
},
|
|
1527
|
+
"sparklines.addToGroup": {
|
|
1528
|
+
"signature": "sparklines.addToGroup(sparklineId: string, groupId: string): Promise<void>",
|
|
1529
|
+
"docstring": "Add a sparkline to a group.\n@param - Sparkline identifier\n@param - Group identifier",
|
|
1530
|
+
"usedTypes": []
|
|
1531
|
+
},
|
|
1532
|
+
"sparklines.removeFromGroup": {
|
|
1533
|
+
"signature": "sparklines.removeFromGroup(sparklineId: string): Promise<void>",
|
|
1534
|
+
"docstring": "Remove a sparkline from its group (becomes standalone).\n@param - Sparkline identifier",
|
|
1535
|
+
"usedTypes": []
|
|
1536
|
+
},
|
|
1537
|
+
"sparklines.ungroupAll": {
|
|
1538
|
+
"signature": "sparklines.ungroupAll(groupId: string): Promise<string[]>",
|
|
1539
|
+
"docstring": "Ungroup all sparklines in a group (members become standalone).\n@param - Group identifier\n@returns IDs of sparklines that were ungrouped",
|
|
1540
|
+
"usedTypes": []
|
|
1541
|
+
},
|
|
1542
|
+
"sparklines.has": {
|
|
1543
|
+
"signature": "sparklines.has(row: number, col: number): Promise<boolean>",
|
|
1544
|
+
"docstring": "Check if a cell has a sparkline.\n@param - Row index (0-based)\n@param - Column index (0-based)\n@returns True if the cell has a sparkline",
|
|
1545
|
+
"usedTypes": []
|
|
1546
|
+
},
|
|
1547
|
+
"sparklines.getWithDataInRange": {
|
|
1548
|
+
"signature": "sparklines.getWithDataInRange(range: CellRange): Promise<Sparkline[]>",
|
|
1549
|
+
"docstring": "Get sparklines whose data range intersects with a given range.\n@param - Range to check for data intersection\n@returns Sparklines with data in the range",
|
|
1550
|
+
"usedTypes": []
|
|
1551
|
+
},
|
|
1552
|
+
"structure.insertRows": {
|
|
1553
|
+
"signature": "structure.insertRows(index: number, count: number): Promise<void>",
|
|
1554
|
+
"docstring": "Insert rows starting at the given 0-based index.",
|
|
1555
|
+
"usedTypes": []
|
|
1556
|
+
},
|
|
1557
|
+
"structure.deleteRows": {
|
|
1558
|
+
"signature": "structure.deleteRows(index: number, count: number): Promise<void>",
|
|
1559
|
+
"docstring": "Delete rows starting at the given 0-based index.",
|
|
1560
|
+
"usedTypes": []
|
|
1561
|
+
},
|
|
1562
|
+
"structure.insertColumns": {
|
|
1563
|
+
"signature": "structure.insertColumns(index: number, count: number): Promise<void>",
|
|
1564
|
+
"docstring": "Insert columns starting at the given 0-based index.",
|
|
1565
|
+
"usedTypes": []
|
|
1566
|
+
},
|
|
1567
|
+
"structure.deleteColumns": {
|
|
1568
|
+
"signature": "structure.deleteColumns(index: number, count: number): Promise<void>",
|
|
1569
|
+
"docstring": "Delete columns starting at the given 0-based index.",
|
|
1570
|
+
"usedTypes": []
|
|
1571
|
+
},
|
|
1572
|
+
"structure.insertCellsWithShift": {
|
|
1573
|
+
"signature": "structure.insertCellsWithShift(startRow: number, startCol: number, endRow: number, endCol: number, direction: \"right\" | \"down\"): Promise<void>",
|
|
1574
|
+
"docstring": "Insert cells by shifting existing cells in the specified direction.",
|
|
1575
|
+
"usedTypes": []
|
|
1576
|
+
},
|
|
1577
|
+
"structure.deleteCellsWithShift": {
|
|
1578
|
+
"signature": "structure.deleteCellsWithShift(startRow: number, startCol: number, endRow: number, endCol: number, direction: \"left\" | \"up\"): Promise<void>",
|
|
1579
|
+
"docstring": "Delete cells by shifting remaining cells in the specified direction.",
|
|
1580
|
+
"usedTypes": []
|
|
1581
|
+
},
|
|
1582
|
+
"structure.getRowCount": {
|
|
1583
|
+
"signature": "structure.getRowCount(): Promise<number>",
|
|
1584
|
+
"docstring": "Get the number of rows with data.",
|
|
1585
|
+
"usedTypes": []
|
|
1586
|
+
},
|
|
1587
|
+
"structure.getColumnCount": {
|
|
1588
|
+
"signature": "structure.getColumnCount(): Promise<number>",
|
|
1589
|
+
"docstring": "Get the number of columns with data.",
|
|
1590
|
+
"usedTypes": []
|
|
1591
|
+
},
|
|
1592
|
+
"structure.textToColumns": {
|
|
1593
|
+
"signature": "structure.textToColumns(range: string, options: TextToColumnsOptions): Promise<void>",
|
|
1594
|
+
"docstring": "Split text in a column into multiple columns.",
|
|
1595
|
+
"usedTypes": [
|
|
1596
|
+
"TextToColumnsOptions"
|
|
1597
|
+
]
|
|
1598
|
+
},
|
|
1599
|
+
"structure.removeDuplicates": {
|
|
1600
|
+
"signature": "structure.removeDuplicates(range: string, columns: number[], hasHeaders?: boolean | undefined): Promise<RemoveDuplicatesResult>",
|
|
1601
|
+
"docstring": "Remove duplicate rows in a range.",
|
|
1602
|
+
"usedTypes": [
|
|
1603
|
+
"RemoveDuplicatesResult"
|
|
1604
|
+
]
|
|
1605
|
+
},
|
|
1606
|
+
"structure.merge": {
|
|
1607
|
+
"signature": "structure.merge(range: string): Promise<void>",
|
|
1608
|
+
"docstring": "Merge cells by A1 range.",
|
|
1609
|
+
"usedTypes": []
|
|
1610
|
+
},
|
|
1611
|
+
"structure.unmerge": {
|
|
1612
|
+
"signature": "structure.unmerge(range: string): Promise<void>",
|
|
1613
|
+
"docstring": "Unmerge cells by A1 range.",
|
|
1614
|
+
"usedTypes": []
|
|
1615
|
+
},
|
|
1616
|
+
"structure.getMergedRegions": {
|
|
1617
|
+
"signature": "structure.getMergedRegions(): Promise<MergedRegion[]>",
|
|
1618
|
+
"docstring": "Get all merged regions in the sheet.",
|
|
1619
|
+
"usedTypes": [
|
|
1620
|
+
"MergedRegion"
|
|
1621
|
+
]
|
|
1622
|
+
},
|
|
1623
|
+
"structure.getMergeAtCell": {
|
|
1624
|
+
"signature": "structure.getMergeAtCell(address: string): Promise<CellRange | null>",
|
|
1625
|
+
"docstring": "Get the merge containing a cell by A1 address, or null if not merged.",
|
|
1626
|
+
"usedTypes": []
|
|
1627
|
+
},
|
|
1628
|
+
"tables.add": {
|
|
1629
|
+
"signature": "tables.add(range: string, options?: TableOptions | undefined): Promise<TableInfo>",
|
|
1630
|
+
"docstring": "Create a new table from a cell range.\n@param - A1-style range string (e.g. \"A1:D10\")\n@param - Optional table creation settings (name, headers, style)\n@returns The created table information",
|
|
1631
|
+
"usedTypes": [
|
|
1632
|
+
"TableInfo",
|
|
1633
|
+
"TableOptions"
|
|
1634
|
+
]
|
|
1635
|
+
},
|
|
1636
|
+
"tables.get": {
|
|
1637
|
+
"signature": "tables.get(name: string): Promise<TableInfo | null>",
|
|
1638
|
+
"docstring": "Get a table by name.\n\nTables are workbook-scoped, so the name is unique across all sheets.\n@param - Table name\n@returns Table information, or null if not found",
|
|
1639
|
+
"usedTypes": [
|
|
1640
|
+
"TableInfo"
|
|
1641
|
+
]
|
|
1642
|
+
},
|
|
1643
|
+
"tables.list": {
|
|
1644
|
+
"signature": "tables.list(): Promise<TableInfo[]>",
|
|
1645
|
+
"docstring": "List all tables in this worksheet.\n@returns Array of table information objects",
|
|
1646
|
+
"usedTypes": [
|
|
1647
|
+
"TableInfo"
|
|
1648
|
+
]
|
|
1649
|
+
},
|
|
1650
|
+
"tables.remove": {
|
|
1651
|
+
"signature": "tables.remove(name: string): Promise<void>",
|
|
1652
|
+
"docstring": "Remove a table definition, converting it back to a plain range.\n\nCell data is preserved; only the table metadata is removed.\n@param - Table name",
|
|
1653
|
+
"usedTypes": []
|
|
1654
|
+
},
|
|
1655
|
+
"tables.rename": {
|
|
1656
|
+
"signature": "tables.rename(oldName: string, newName: string): Promise<void>",
|
|
1657
|
+
"docstring": "Rename a table.\n@param - Current table name\n@param - New table name",
|
|
1658
|
+
"usedTypes": []
|
|
1659
|
+
},
|
|
1660
|
+
"tables.update": {
|
|
1661
|
+
"signature": "tables.update(tableName: string, updates: Record<string, any>): Promise<void>",
|
|
1662
|
+
"docstring": "Update a table's properties.\n@param - Table name\n@param - Key-value pairs of properties to update",
|
|
1663
|
+
"usedTypes": []
|
|
1664
|
+
},
|
|
1665
|
+
"tables.getAtCell": {
|
|
1666
|
+
"signature": "tables.getAtCell(row: number, col: number): Promise<TableInfo | null>",
|
|
1667
|
+
"docstring": "Get the table at a specific cell position, if one exists.\n@param - Row index (0-based)\n@param - Column index (0-based)\n@returns Table information, or null if no table exists at that cell",
|
|
1668
|
+
"usedTypes": [
|
|
1669
|
+
"TableInfo"
|
|
1670
|
+
]
|
|
1671
|
+
},
|
|
1672
|
+
"tables.clearFilters": {
|
|
1673
|
+
"signature": "tables.clearFilters(tableName: string): Promise<void>",
|
|
1674
|
+
"docstring": "Clear all column filters on a table.\n@param - Table name",
|
|
1675
|
+
"usedTypes": []
|
|
1676
|
+
},
|
|
1677
|
+
"tables.setStylePreset": {
|
|
1678
|
+
"signature": "tables.setStylePreset(tableName: string, preset: string): Promise<void>",
|
|
1679
|
+
"docstring": "Set the visual style preset for a table.\n@param - Table name\n@param - Style preset name (e.g. \"TableStyleLight1\")",
|
|
1680
|
+
"usedTypes": []
|
|
1681
|
+
},
|
|
1682
|
+
"tables.resize": {
|
|
1683
|
+
"signature": "tables.resize(name: string, newRange: string): Promise<void>",
|
|
1684
|
+
"docstring": "Resize a table to a new range.\n@param - Table name\n@param - New A1-style range string",
|
|
1685
|
+
"usedTypes": []
|
|
1686
|
+
},
|
|
1687
|
+
"tables.addColumn": {
|
|
1688
|
+
"signature": "tables.addColumn(name: string, columnName: string, position?: number | undefined): Promise<void>",
|
|
1689
|
+
"docstring": "Add a column to a table.\n@param - Table name\n@param - Name for the new column\n@param - Column position (0-based index). If omitted, appends to the end.",
|
|
1690
|
+
"usedTypes": []
|
|
1691
|
+
},
|
|
1692
|
+
"tables.removeColumn": {
|
|
1693
|
+
"signature": "tables.removeColumn(name: string, columnIndex: number): Promise<void>",
|
|
1694
|
+
"docstring": "Remove a column from a table by index.\n@param - Table name\n@param - Column index within the table (0-based)",
|
|
1695
|
+
"usedTypes": []
|
|
1696
|
+
},
|
|
1697
|
+
"tables.toggleTotalsRow": {
|
|
1698
|
+
"signature": "tables.toggleTotalsRow(name: string): Promise<void>",
|
|
1699
|
+
"docstring": "Toggle the totals row visibility on a table.\n@param - Table name",
|
|
1700
|
+
"usedTypes": []
|
|
1701
|
+
},
|
|
1702
|
+
"tables.toggleHeaderRow": {
|
|
1703
|
+
"signature": "tables.toggleHeaderRow(name: string): Promise<void>",
|
|
1704
|
+
"docstring": "Toggle the header row visibility on a table.\n@param - Table name",
|
|
1705
|
+
"usedTypes": []
|
|
1706
|
+
},
|
|
1707
|
+
"tables.applyAutoExpansion": {
|
|
1708
|
+
"signature": "tables.applyAutoExpansion(tableName: string): Promise<void>",
|
|
1709
|
+
"docstring": "Apply auto-expansion to a table, extending it to include adjacent data.\n@param - Table name",
|
|
1710
|
+
"usedTypes": []
|
|
1711
|
+
},
|
|
1712
|
+
"tables.setCalculatedColumn": {
|
|
1713
|
+
"signature": "tables.setCalculatedColumn(tableName: string, colIndex: number, formula: string): Promise<void>",
|
|
1714
|
+
"docstring": "Set a calculated column formula for all data cells in a table column.\n@param - Table name\n@param - Column index within the table (0-based)\n@param - The formula to set (e.g. \"=[@Price]*[@Quantity]\")",
|
|
1715
|
+
"usedTypes": []
|
|
1716
|
+
},
|
|
1717
|
+
"tables.clearCalculatedColumn": {
|
|
1718
|
+
"signature": "tables.clearCalculatedColumn(tableName: string, colIndex: number): Promise<void>",
|
|
1719
|
+
"docstring": "Clear the calculated column formula from a table column, replacing with empty values.\n@param - Table name\n@param - Column index within the table (0-based)",
|
|
1720
|
+
"usedTypes": []
|
|
1721
|
+
},
|
|
1722
|
+
"tables.getDataBodyRange": {
|
|
1723
|
+
"signature": "tables.getDataBodyRange(name: string): Promise<string | null>",
|
|
1724
|
+
"docstring": "Get the A1-notation range covering the data body of a table (excludes header and totals rows).\n@param - Table name\n@returns A1-notation range string, or null if the table has no data body rows",
|
|
1725
|
+
"usedTypes": []
|
|
1726
|
+
},
|
|
1727
|
+
"tables.getHeaderRowRange": {
|
|
1728
|
+
"signature": "tables.getHeaderRowRange(name: string): Promise<string | null>",
|
|
1729
|
+
"docstring": "Get the A1-notation range covering the header row of a table.\n@param - Table name\n@returns A1-notation range string, or null if the table has no header row",
|
|
1730
|
+
"usedTypes": []
|
|
1731
|
+
},
|
|
1732
|
+
"tables.getTotalRowRange": {
|
|
1733
|
+
"signature": "tables.getTotalRowRange(name: string): Promise<string | null>",
|
|
1734
|
+
"docstring": "Get the A1-notation range covering the totals row of a table.\n@param - Table name\n@returns A1-notation range string, or null if the table has no totals row",
|
|
1735
|
+
"usedTypes": []
|
|
1736
|
+
},
|
|
1737
|
+
"validation.set": {
|
|
1738
|
+
"signature": "validation.set(address: string, rule: ValidationRule): Promise<void>",
|
|
1739
|
+
"docstring": "Set a validation rule on a cell or range.\n@param - A1-style cell or range address (e.g. \"A1\", \"A1:B5\")\n@param - Validation rule to apply",
|
|
1740
|
+
"usedTypes": [
|
|
1741
|
+
"ValidationRule"
|
|
1742
|
+
]
|
|
1743
|
+
},
|
|
1744
|
+
"validation.remove": {
|
|
1745
|
+
"signature": "validation.remove(address: string): Promise<void>",
|
|
1746
|
+
"docstring": "Remove validation from a cell (deletes any range schema covering the cell).\n@param - A1-style cell address",
|
|
1747
|
+
"usedTypes": []
|
|
1748
|
+
},
|
|
1749
|
+
"validation.get": {
|
|
1750
|
+
"signature": "validation.get(address: string): Promise<ValidationRule | null>",
|
|
1751
|
+
"docstring": "Get the validation rule for a cell.\n@param - A1-style cell address\n@returns The validation rule, or null if none",
|
|
1752
|
+
"usedTypes": [
|
|
1753
|
+
"ValidationRule"
|
|
1754
|
+
]
|
|
1755
|
+
},
|
|
1756
|
+
"validation.getDropdownItems": {
|
|
1757
|
+
"signature": "validation.getDropdownItems(address: string): Promise<string[]>",
|
|
1758
|
+
"docstring": "Get dropdown items for a cell with list validation.\n@param - A1-style cell address\n@returns Array of dropdown item strings",
|
|
1759
|
+
"usedTypes": []
|
|
1760
|
+
},
|
|
1761
|
+
"validation.list": {
|
|
1762
|
+
"signature": "validation.list(): Promise<ValidationRule[]>",
|
|
1763
|
+
"docstring": "List all validation rules on the sheet.\n@returns Array of validation rules",
|
|
1764
|
+
"usedTypes": [
|
|
1765
|
+
"ValidationRule"
|
|
1766
|
+
]
|
|
1767
|
+
},
|
|
1768
|
+
"validation.clear": {
|
|
1769
|
+
"signature": "validation.clear(range: string): Promise<void>",
|
|
1770
|
+
"docstring": "Clear validation rules that overlap a range.\n@param - A1-style range string (e.g. \"A1:B5\")",
|
|
1771
|
+
"usedTypes": []
|
|
1772
|
+
},
|
|
1773
|
+
"validation.delete": {
|
|
1774
|
+
"signature": "validation.delete(id: string): Promise<void>",
|
|
1775
|
+
"docstring": "Delete a validation rule by its ID.\n@param - Validation rule / range schema ID",
|
|
1776
|
+
"usedTypes": []
|
|
1777
|
+
},
|
|
1778
|
+
"validation.getErrorsInRange": {
|
|
1779
|
+
"signature": "validation.getErrorsInRange(startRow: number, startCol: number, endRow: number, endCol: number): Promise<{ row: number; col: number; }[]>",
|
|
1780
|
+
"docstring": "Get cells with validation errors in a range.\n@param - Start row (0-based)\n@param - Start column (0-based)\n@param - End row (0-based)\n@param - End column (0-based)\n@returns Array of {row, col} for cells with errors",
|
|
1781
|
+
"usedTypes": []
|
|
1782
|
+
},
|
|
1783
|
+
"view.freezeRows": {
|
|
1784
|
+
"signature": "view.freezeRows(count: number): Promise<void>",
|
|
1785
|
+
"docstring": "Freeze the top N rows. Preserves any existing column freeze.\n@param - Number of rows to freeze (0 to unfreeze rows)",
|
|
1786
|
+
"usedTypes": []
|
|
1787
|
+
},
|
|
1788
|
+
"view.freezeColumns": {
|
|
1789
|
+
"signature": "view.freezeColumns(count: number): Promise<void>",
|
|
1790
|
+
"docstring": "Freeze the left N columns. Preserves any existing row freeze.\n@param - Number of columns to freeze (0 to unfreeze columns)",
|
|
1791
|
+
"usedTypes": []
|
|
1792
|
+
},
|
|
1793
|
+
"view.unfreeze": {
|
|
1794
|
+
"signature": "view.unfreeze(): Promise<void>",
|
|
1795
|
+
"docstring": "Remove all frozen panes (both rows and columns).",
|
|
1796
|
+
"usedTypes": []
|
|
1797
|
+
},
|
|
1798
|
+
"view.getFrozenPanes": {
|
|
1799
|
+
"signature": "view.getFrozenPanes(): Promise<{ rows: number; cols: number; }>",
|
|
1800
|
+
"docstring": "Get the current frozen panes configuration.\n@returns Object with the number of frozen rows and columns",
|
|
1801
|
+
"usedTypes": []
|
|
1802
|
+
},
|
|
1803
|
+
"view.getSplitConfig": {
|
|
1804
|
+
"signature": "view.getSplitConfig(): Promise<SplitViewportConfig | null>",
|
|
1805
|
+
"docstring": "Get the current split view configuration.\n@returns The split configuration, or null if the view is not split",
|
|
1806
|
+
"usedTypes": []
|
|
1807
|
+
},
|
|
1808
|
+
"view.setSplitConfig": {
|
|
1809
|
+
"signature": "view.setSplitConfig(config: SplitViewportConfig | null): Promise<void>",
|
|
1810
|
+
"docstring": "Set or clear the split view configuration.\n@param - Split configuration to apply, or null to remove split",
|
|
1811
|
+
"usedTypes": []
|
|
1812
|
+
},
|
|
1813
|
+
"view.setGridlines": {
|
|
1814
|
+
"signature": "view.setGridlines(show: boolean): Promise<void>",
|
|
1815
|
+
"docstring": "Show or hide gridlines.\n@param - True to show gridlines, false to hide",
|
|
1816
|
+
"usedTypes": []
|
|
1817
|
+
},
|
|
1818
|
+
"view.setHeadings": {
|
|
1819
|
+
"signature": "view.setHeadings(show: boolean): Promise<void>",
|
|
1820
|
+
"docstring": "Show or hide row/column headings.\n@param - True to show headings, false to hide",
|
|
1821
|
+
"usedTypes": []
|
|
1822
|
+
},
|
|
1823
|
+
"view.getViewOptions": {
|
|
1824
|
+
"signature": "view.getViewOptions(): Promise<ViewOptions>",
|
|
1825
|
+
"docstring": "Get the current view options (gridlines, headings).\n@returns Current view options",
|
|
1826
|
+
"usedTypes": [
|
|
1827
|
+
"ViewOptions"
|
|
1828
|
+
]
|
|
1829
|
+
},
|
|
1830
|
+
"view.getTabColor": {
|
|
1831
|
+
"signature": "view.getTabColor(): Promise<string | null>",
|
|
1832
|
+
"docstring": "Get the tab color of this worksheet.\n@returns The tab color as a hex string, or null if no color is set",
|
|
1833
|
+
"usedTypes": []
|
|
1834
|
+
},
|
|
1835
|
+
"view.setTabColor": {
|
|
1836
|
+
"signature": "view.setTabColor(color: string | null): Promise<void>",
|
|
1837
|
+
"docstring": "Set or clear the tab color for this worksheet.\n@param - Hex color string, or null to clear",
|
|
1838
|
+
"usedTypes": []
|
|
1839
|
+
},
|
|
1840
|
+
"view.getScrollPosition": {
|
|
1841
|
+
"signature": "view.getScrollPosition(): Promise<ScrollPosition>",
|
|
1842
|
+
"docstring": "Get the persistent scroll position (cell-level) for this sheet.",
|
|
1843
|
+
"usedTypes": []
|
|
1844
|
+
},
|
|
1845
|
+
"view.setScrollPosition": {
|
|
1846
|
+
"signature": "view.setScrollPosition(topRow: number, leftCol: number): Promise<void>",
|
|
1847
|
+
"docstring": "Set the persistent scroll position (cell-level) for this sheet.",
|
|
1848
|
+
"usedTypes": []
|
|
1849
|
+
}
|
|
1850
|
+
}
|
|
1851
|
+
}
|
|
1852
|
+
},
|
|
1853
|
+
"types": {
|
|
1854
|
+
"PivotTableConfig": {
|
|
1855
|
+
"name": "PivotTableConfig",
|
|
1856
|
+
"definition": "{\n /** Pivot table name */\n name: string;\n /** Source data range in A1 notation (e.g., \"Sheet1!A1:E100\") */\n dataSource: string;\n /** Target sheet name (defaults to a new sheet) */\n targetSheet?: string | undefined;\n /** Target cell address (defaults to A1) */\n targetAddress?: string | undefined;\n /** Field names for the row area */\n rowFields?: string[] | undefined;\n /** Field names for the column area */\n columnFields?: string[] | undefined;\n /** Value field configurations */\n valueFields?: PivotValueField[] | undefined;\n /** Field names for the filter area */\n filterFields?: string[] | undefined;\n}",
|
|
1857
|
+
"docstring": "Configuration for creating or describing a pivot table."
|
|
1858
|
+
},
|
|
1859
|
+
"PivotTableHandle": {
|
|
1860
|
+
"name": "PivotTableHandle",
|
|
1861
|
+
"definition": "{\n /** Get the pivot table name */\n getName(): string;\n /** Get the current configuration including all fields */\n getConfig(): PivotTableConfig;\n /** Add a field to the row, column, or filter area */\n addField(field: string, area: \"column\" | \"row\" | \"filter\", position?: number | undefined): void;\n /** Add a value field with aggregation */\n addValueField(field: string, aggregation: \"sum\" | \"count\" | \"average\" | \"min\" | \"max\", label?: string | undefined): void;\n /** Remove a field by name */\n removeField(fieldName: string): void;\n /** Change the aggregation function of a value field */\n changeAggregation(valueFieldLabel: string, newAggregation: \"sum\" | \"count\" | \"average\" | \"min\" | \"max\"): void;\n /** Rename a value field's display label */\n renameValueField(currentLabel: string, newLabel: string): void;\n /** Refresh the pivot table from its data source */\n refresh(): Promise<void>;\n}",
|
|
1862
|
+
"docstring": "Handle for interacting with an existing pivot table.\n\nReturned by `worksheet.getPivotTable()`. Provides methods to query\nand modify the pivot table's field configuration."
|
|
1863
|
+
},
|
|
1864
|
+
"RawCellData": {
|
|
1865
|
+
"name": "RawCellData",
|
|
1866
|
+
"definition": "{\n /** The computed cell value */\n value: CellValue;\n /** The formula string with \"=\" prefix, if the cell contains a formula */\n formula?: FormulaA1 | undefined;\n /** Cell formatting */\n format?: CellFormat | undefined;\n /** Cell borders */\n borders?: CellBorders | undefined;\n /** Cell comment/note text */\n comment?: string | undefined;\n /** Hyperlink URL */\n hyperlink?: string | undefined;\n /** Whether the cell is part of a merged region */\n isMerged?: boolean | undefined;\n /** The merged region this cell belongs to (A1 notation, e.g., \"A1:B2\") */\n mergedRegion?: string | undefined;\n}",
|
|
1867
|
+
"docstring": "Complete raw cell data including formula, formatting, and metadata.\n\nUnlike `CellData` from core (which is the minimal read type), `RawCellData`\nincludes all optional cell metadata useful for bulk reads and LLM presentation."
|
|
1868
|
+
},
|
|
1869
|
+
"CellWriteOptions": {
|
|
1870
|
+
"name": "CellWriteOptions",
|
|
1871
|
+
"definition": "{\n /** If true, value is treated as a formula (prefixed with =) */\n asFormula?: boolean | undefined;\n}",
|
|
1872
|
+
"docstring": "Options controlling how a cell value is interpreted when written."
|
|
1873
|
+
},
|
|
1874
|
+
"SummaryOptions": {
|
|
1875
|
+
"name": "SummaryOptions",
|
|
1876
|
+
"definition": "{\n /** Whether to include sample data in the summary */\n includeData?: boolean | undefined;\n /** Maximum number of rows to include in sample data */\n maxRows?: number | undefined;\n /** Maximum number of columns to include in sample data */\n maxCols?: number | undefined;\n}",
|
|
1877
|
+
"docstring": "Options for the `worksheet.summarize()` method."
|
|
1878
|
+
},
|
|
1879
|
+
"SortOptions": {
|
|
1880
|
+
"name": "SortOptions",
|
|
1881
|
+
"definition": "{\n /** Columns to sort by, in priority order */\n columns: SortColumn[];\n /** Whether the first row of the range contains headers (default: false) */\n hasHeaders?: boolean | undefined;\n}",
|
|
1882
|
+
"docstring": "Options for sorting a range of cells."
|
|
1883
|
+
},
|
|
1884
|
+
"SortColumn": {
|
|
1885
|
+
"name": "SortColumn",
|
|
1886
|
+
"definition": "{\n /** Column index (0-based, relative to the sort range) */\n column: number;\n /** Sort direction as boolean (default: true = ascending). Use `direction` for string form. */\n ascending?: boolean | undefined;\n /** Sort direction as 'asc' | 'desc'. Takes precedence over `ascending` if both are set. */\n direction?: \"asc\" | \"desc\" | undefined;\n /** What to sort by (default: 'value') */\n sortBy?: \"value\" | \"cellColor\" | \"fontColor\" | undefined;\n /** Case sensitive comparison (default: false) */\n caseSensitive?: boolean | undefined;\n}",
|
|
1887
|
+
"docstring": "A single column sort specification."
|
|
1888
|
+
},
|
|
1889
|
+
"MergedRegion": {
|
|
1890
|
+
"name": "MergedRegion",
|
|
1891
|
+
"definition": "{\n /** The merged range in A1 notation (e.g., \"A1:B2\") */\n range: string;\n /** Start row (0-based) */\n startRow: number;\n /** Start column (0-based) */\n startCol: number;\n /** End row (0-based, inclusive) */\n endRow: number;\n /** End column (0-based, inclusive) */\n endCol: number;\n}",
|
|
1892
|
+
"docstring": "Information about a merged cell region."
|
|
1893
|
+
},
|
|
1894
|
+
"GoalSeekResult": {
|
|
1895
|
+
"name": "GoalSeekResult",
|
|
1896
|
+
"definition": "{\n /** Whether a solution was found */\n found: boolean;\n /** The value found for the changing cell (if found) */\n value?: number | undefined;\n /** Number of iterations performed */\n iterations?: number | undefined;\n}",
|
|
1897
|
+
"docstring": "Result of a goal seek operation."
|
|
1898
|
+
},
|
|
1899
|
+
"ValidationRule": {
|
|
1900
|
+
"name": "ValidationRule",
|
|
1901
|
+
"definition": "{\n /** Schema ID — populated when reading, optional when creating (auto-generated if omitted) */\n id?: string | undefined;\n /** The cell range this rule applies to in A1 notation (e.g., \"A1:B5\") — populated when reading */\n range?: string | undefined;\n /** The validation type */\n type: \"list\" | \"wholeNumber\" | \"decimal\" | \"date\" | \"time\" | \"textLength\" | \"custom\";\n /** Comparison operator */\n operator?: \"equal\" | \"notEqual\" | \"greaterThan\" | \"lessThan\" | \"greaterThanOrEqual\" | \"lessThanOrEqual\" | \"between\" | \"notBetween\" | undefined;\n /** Primary constraint value or formula */\n formula1?: string | number | undefined;\n /** Secondary constraint value or formula (for 'between' / 'notBetween') */\n formula2?: string | number | undefined;\n /** Explicit list of allowed values (for 'list' type) */\n values?: string[] | undefined;\n /** Source reference for list validation: A1 range (e.g., \"=Sheet1!A1:A10\") or formula (e.g., \"=INDIRECT(A1)\"). Prefixed with \"=\" for formulas. */\n listSource?: string | undefined;\n /** Whether blank cells pass validation (default: true) */\n allowBlank?: boolean | undefined;\n /** Whether to show a dropdown arrow for list validations */\n showDropdown?: boolean | undefined;\n /** Whether to show an input message when the cell is selected */\n showInputMessage?: boolean | undefined;\n /** Title for the input message */\n inputTitle?: string | undefined;\n /** Body text for the input message */\n inputMessage?: string | undefined;\n /** Whether to show an error alert on invalid input */\n showErrorAlert?: boolean | undefined;\n /** Error alert style */\n errorStyle?: \"stop\" | \"warning\" | \"information\" | undefined;\n /** Title for the error alert */\n errorTitle?: string | undefined;\n /** Body text for the error alert */\n errorMessage?: string | undefined;\n}",
|
|
1902
|
+
"docstring": "A data validation rule for cells."
|
|
1903
|
+
},
|
|
1904
|
+
"FilterState": {
|
|
1905
|
+
"name": "FilterState",
|
|
1906
|
+
"definition": "{\n /** The range the auto-filter is applied to (A1 notation) */\n range: string;\n /** Per-column filter criteria, keyed by column index */\n columns: Map<number, ColumnFilterCriteria>;\n}",
|
|
1907
|
+
"docstring": "Current auto-filter state for a sheet."
|
|
1908
|
+
},
|
|
1909
|
+
"TableOptions": {
|
|
1910
|
+
"name": "TableOptions",
|
|
1911
|
+
"definition": "{\n /** Table name (auto-generated if omitted) */\n name?: string | undefined;\n /** Whether the first row of the range contains headers (default: true) */\n hasHeaders?: boolean | undefined;\n /** Table style preset name */\n style?: string | undefined;\n}",
|
|
1912
|
+
"docstring": "Options for creating a new table."
|
|
1913
|
+
},
|
|
1914
|
+
"TableInfo": {
|
|
1915
|
+
"name": "TableInfo",
|
|
1916
|
+
"definition": "{\n /** Internal table identifier (opaque string) */\n id?: string | undefined;\n /** Table name */\n name: string;\n /** Table range in A1 notation */\n range: string;\n /** Whether the table has a header row */\n hasHeaders: boolean;\n /** Table style preset name */\n style?: TableStylePreset | undefined;\n /** Column definitions */\n columns: TableColumn[];\n /** Whether the total row is visible */\n showTotals?: boolean | undefined;\n}",
|
|
1917
|
+
"docstring": "Information about an existing table."
|
|
1918
|
+
},
|
|
1919
|
+
"NamedRangeInfo": {
|
|
1920
|
+
"name": "NamedRangeInfo",
|
|
1921
|
+
"definition": "{\n /** The defined name */\n name: string;\n /** The reference formula (e.g., \"Sheet1!$A$1:$B$10\") */\n reference: string;\n /** Scope: undefined or sheet name (undefined = workbook scope) */\n scope?: string | undefined;\n /** Optional descriptive comment */\n comment?: string | undefined;\n /** Whether the name is visible in Name Manager. Hidden names are typically system-generated. */\n visible?: boolean | undefined;\n}",
|
|
1922
|
+
"docstring": "Information about a defined name / named range."
|
|
1923
|
+
},
|
|
1924
|
+
"SearchOptions": {
|
|
1925
|
+
"name": "SearchOptions",
|
|
1926
|
+
"definition": "{\n /** Whether the search is case-sensitive */\n matchCase?: boolean | undefined;\n /** Whether to match the entire cell value */\n entireCell?: boolean | undefined;\n /** Whether to search formula text instead of computed values */\n searchFormulas?: boolean | undefined;\n /** Limit search to this range (A1 notation) */\n range?: string | undefined;\n}",
|
|
1927
|
+
"docstring": "Options for cell search operations."
|
|
1928
|
+
},
|
|
1929
|
+
"SearchResult": {
|
|
1930
|
+
"name": "SearchResult",
|
|
1931
|
+
"definition": "{\n /** Cell address in A1 notation */\n address: string;\n /** The cell's display value */\n value: string;\n /** The cell's formula (if any) */\n formula?: string | undefined;\n}",
|
|
1932
|
+
"docstring": "A single search result."
|
|
1933
|
+
},
|
|
1934
|
+
"ViewOptions": {
|
|
1935
|
+
"name": "ViewOptions",
|
|
1936
|
+
"definition": "{\n /** Whether gridlines are shown */\n showGridlines: boolean;\n /** Whether row headers are shown */\n showRowHeaders: boolean;\n /** Whether column headers are shown */\n showColumnHeaders: boolean;\n}",
|
|
1937
|
+
"docstring": "Sheet view options (gridlines, headings)."
|
|
1938
|
+
},
|
|
1939
|
+
"ProtectionConfig": {
|
|
1940
|
+
"name": "ProtectionConfig",
|
|
1941
|
+
"definition": "{\n /** Whether the sheet is protected */\n isProtected: boolean;\n /** Whether a password is set for protection (does not expose the hash) */\n hasPasswordSet?: boolean | undefined;\n /** Allow selecting locked cells */\n allowSelectLockedCells?: boolean | undefined;\n /** Allow selecting unlocked cells */\n allowSelectUnlockedCells?: boolean | undefined;\n /** Allow formatting cells */\n allowFormatCells?: boolean | undefined;\n /** Allow formatting columns */\n allowFormatColumns?: boolean | undefined;\n /** Allow formatting rows */\n allowFormatRows?: boolean | undefined;\n /** Allow inserting columns */\n allowInsertColumns?: boolean | undefined;\n /** Allow inserting rows */\n allowInsertRows?: boolean | undefined;\n /** Allow inserting hyperlinks */\n allowInsertHyperlinks?: boolean | undefined;\n /** Allow deleting columns */\n allowDeleteColumns?: boolean | undefined;\n /** Allow deleting rows */\n allowDeleteRows?: boolean | undefined;\n /** Allow sorting */\n allowSort?: boolean | undefined;\n /** Allow using auto-filter */\n allowAutoFilter?: boolean | undefined;\n /** Allow using pivot tables */\n allowPivotTables?: boolean | undefined;\n}",
|
|
1942
|
+
"docstring": "Full protection configuration for a sheet."
|
|
1943
|
+
},
|
|
1944
|
+
"ProtectionOptions": {
|
|
1945
|
+
"name": "ProtectionOptions",
|
|
1946
|
+
"definition": "{\n /** Allow selecting locked cells */\n allowSelectLockedCells?: boolean | undefined;\n /** Allow selecting unlocked cells */\n allowSelectUnlockedCells?: boolean | undefined;\n /** Allow formatting cells */\n allowFormatCells?: boolean | undefined;\n /** Allow formatting columns */\n allowFormatColumns?: boolean | undefined;\n /** Allow formatting rows */\n allowFormatRows?: boolean | undefined;\n /** Allow inserting columns */\n allowInsertColumns?: boolean | undefined;\n /** Allow inserting rows */\n allowInsertRows?: boolean | undefined;\n /** Allow inserting hyperlinks */\n allowInsertHyperlinks?: boolean | undefined;\n /** Allow deleting columns */\n allowDeleteColumns?: boolean | undefined;\n /** Allow deleting rows */\n allowDeleteRows?: boolean | undefined;\n /** Allow sorting */\n allowSort?: boolean | undefined;\n /** Allow using auto-filter */\n allowAutoFilter?: boolean | undefined;\n /** Allow using pivot tables */\n allowPivotTables?: boolean | undefined;\n}",
|
|
1947
|
+
"docstring": "Granular options for sheet protection."
|
|
1948
|
+
},
|
|
1949
|
+
"AggregateResult": {
|
|
1950
|
+
"name": "AggregateResult",
|
|
1951
|
+
"definition": "{\n /** Sum of numeric values */\n sum: number;\n /** Total number of non-empty cells */\n count: number;\n /** Number of numeric cells */\n numericCount: number;\n /** Average of numeric values (null if no numeric cells) */\n average: number | null;\n /** Minimum numeric value (null if no numeric cells) */\n min: number | null;\n /** Maximum numeric value (null if no numeric cells) */\n max: number | null;\n}",
|
|
1952
|
+
"docstring": "Aggregate values for selected cells (status bar display)."
|
|
1953
|
+
},
|
|
1954
|
+
"FilterInfo": {
|
|
1955
|
+
"name": "FilterInfo",
|
|
1956
|
+
"definition": "{\n /** Filter ID */\n id: string;\n /** The filtered range */\n range?: string | undefined;\n /** Per-column filter criteria */\n columns?: Record<string, unknown> | undefined;\n /** Table ID if this filter is associated with a table. */\n tableId?: string | undefined;\n /** Per-column filter criteria, keyed by column identifier. */\n columnFilters?: Record<string, unknown> | undefined;\n}",
|
|
1957
|
+
"docstring": "Information about a filter applied to a sheet."
|
|
1958
|
+
},
|
|
1959
|
+
"TextToColumnsOptions": {
|
|
1960
|
+
"name": "TextToColumnsOptions",
|
|
1961
|
+
"definition": "{\n /** Delimiter type */\n delimiter: \"custom\" | \"comma\" | \"tab\" | \"semicolon\" | \"space\";\n /** Custom delimiter character (when delimiter is 'custom') */\n customDelimiter?: string | undefined;\n /** Whether to treat consecutive delimiters as one */\n treatConsecutiveAsOne?: boolean | undefined;\n /** Text qualifier character */\n textQualifier?: \"none\" | \"\\\"\" | \"'\" | undefined;\n}",
|
|
1962
|
+
"docstring": "Options for text-to-columns splitting."
|
|
1963
|
+
},
|
|
1964
|
+
"RemoveDuplicatesResult": {
|
|
1965
|
+
"name": "RemoveDuplicatesResult",
|
|
1966
|
+
"definition": "{\n /** Number of duplicate rows removed */\n removedCount: number;\n /** Number of unique rows remaining */\n remainingCount: number;\n}",
|
|
1967
|
+
"docstring": "Result of a remove-duplicates operation."
|
|
1968
|
+
},
|
|
1969
|
+
"TableStyleInfo": {
|
|
1970
|
+
"name": "TableStyleInfo",
|
|
1971
|
+
"definition": "{\n /** Style name/ID */\n name: string;\n /** Display name */\n displayName?: string | undefined;\n /** Whether this is a built-in style */\n isBuiltIn?: boolean | undefined;\n}",
|
|
1972
|
+
"docstring": "Information about a custom table style."
|
|
1973
|
+
},
|
|
1974
|
+
"TableStyleConfig": {
|
|
1975
|
+
"name": "TableStyleConfig",
|
|
1976
|
+
"definition": "{\n /** Style name */\n name: string;\n}",
|
|
1977
|
+
"docstring": "Configuration for creating/updating a custom table style."
|
|
1978
|
+
},
|
|
1979
|
+
"FloatingObjectInfo": {
|
|
1980
|
+
"name": "FloatingObjectInfo",
|
|
1981
|
+
"definition": "{\n /** Unique object ID. */\n id: string;\n /** Object type discriminator. */\n type: FloatingObjectType;\n /** Optional display name. */\n name?: string | undefined;\n /** X position in pixels. */\n x: number;\n /** Y position in pixels. */\n y: number;\n /** Width in pixels. */\n width: number;\n /** Height in pixels. */\n height: number;\n /** Rotation angle in degrees. */\n rotation?: number | undefined;\n /** Flipped horizontally. */\n flipH?: boolean | undefined;\n /** Flipped vertically. */\n flipV?: boolean | undefined;\n /** Z-order index. */\n zIndex?: number | undefined;\n}",
|
|
1982
|
+
"docstring": "Summary information about a floating object (returned by listFloatingObjects)."
|
|
1983
|
+
},
|
|
1984
|
+
"PictureConfig": {
|
|
1985
|
+
"name": "PictureConfig",
|
|
1986
|
+
"definition": "{\n /** Image source: data URL, blob URL, or file path. */\n src: string;\n /** X position in pixels. */\n x?: number | undefined;\n /** Y position in pixels. */\n y?: number | undefined;\n /** Width in pixels (defaults to original image width). */\n width?: number | undefined;\n /** Height in pixels (defaults to original image height). */\n height?: number | undefined;\n /** Accessibility alt text. */\n altText?: string | undefined;\n /** Display name. */\n name?: string | undefined;\n}",
|
|
1987
|
+
"docstring": "Configuration for creating a new picture."
|
|
1988
|
+
},
|
|
1989
|
+
"TextBoxConfig": {
|
|
1990
|
+
"name": "TextBoxConfig",
|
|
1991
|
+
"definition": "{\n /** Initial text content. */\n content: string;\n /** X position in pixels. */\n x?: number | undefined;\n /** Y position in pixels. */\n y?: number | undefined;\n /** Width in pixels (default: 200). */\n width?: number | undefined;\n /** Height in pixels (default: 100). */\n height?: number | undefined;\n /** Display name. */\n name?: string | undefined;\n}",
|
|
1992
|
+
"docstring": "Configuration for creating a new text box."
|
|
1993
|
+
},
|
|
1994
|
+
"EquationConfig": {
|
|
1995
|
+
"name": "EquationConfig",
|
|
1996
|
+
"definition": "{\n /** LaTeX source for the equation. */\n latex: string;\n /** X position in pixels. */\n x?: number | undefined;\n /** Y position in pixels. */\n y?: number | undefined;\n /** Width in pixels. */\n width?: number | undefined;\n /** Height in pixels. */\n height?: number | undefined;\n /** Equation style options. */\n style?: EquationStyleConfig | undefined;\n}",
|
|
1997
|
+
"docstring": "Configuration for creating a new equation."
|
|
1998
|
+
},
|
|
1999
|
+
"EquationUpdates": {
|
|
2000
|
+
"name": "EquationUpdates",
|
|
2001
|
+
"definition": "{\n /** Updated LaTeX source. */\n latex?: string | undefined;\n /** Updated OMML XML. */\n omml?: string | undefined;\n /** Updated style options. */\n style?: Partial<EquationStyleConfig> | undefined;\n}",
|
|
2002
|
+
"docstring": "Updates for an existing equation."
|
|
2003
|
+
},
|
|
2004
|
+
"WordArtConfig": {
|
|
2005
|
+
"name": "WordArtConfig",
|
|
2006
|
+
"definition": "{\n /** Text content. */\n text: string;\n /** Preset style ID (e.g., 'fill-1', 'gradient-2'). */\n presetId?: string | undefined;\n /** X position in pixels. */\n x?: number | undefined;\n /** Y position in pixels. */\n y?: number | undefined;\n /** Width in pixels. */\n width?: number | undefined;\n /** Height in pixels. */\n height?: number | undefined;\n /** Display name. */\n name?: string | undefined;\n}",
|
|
2007
|
+
"docstring": "Configuration for creating new WordArt."
|
|
2008
|
+
},
|
|
2009
|
+
"WordArtUpdates": {
|
|
2010
|
+
"name": "WordArtUpdates",
|
|
2011
|
+
"definition": "{\n /** Updated text content. */\n text?: string | undefined;\n /** Warp preset name (text geometric transformation). */\n warp?: string | undefined;\n /** Warp adjustment values. */\n warpAdjustments?: Record<string, number> | undefined;\n /** Fill configuration. */\n fill?: Record<string, unknown> | undefined;\n /** Outline configuration. */\n outline?: Record<string, unknown> | undefined;\n /** Text effects (shadow, glow, reflection, etc.). */\n effects?: Record<string, unknown> | undefined;\n /** Full WordArt configuration batch update. */\n config?: Record<string, unknown> | undefined;\n /** Text formatting update. */\n textFormat?: Record<string, unknown> | undefined;\n}",
|
|
2012
|
+
"docstring": "Updates for existing WordArt."
|
|
2013
|
+
},
|
|
2014
|
+
"SmartArtConfig": {
|
|
2015
|
+
"name": "SmartArtConfig",
|
|
2016
|
+
"definition": "{\n /** Layout ID (e.g., 'hierarchy/org-chart', 'process/basic-process'). */\n layoutId: string;\n /** X position in pixels. */\n x?: number | undefined;\n /** Y position in pixels. */\n y?: number | undefined;\n /** Width in pixels. */\n width?: number | undefined;\n /** Height in pixels. */\n height?: number | undefined;\n /** Initial nodes to create. */\n nodes?: SmartArtNodeConfig[] | undefined;\n /** Display name. */\n name?: string | undefined;\n}",
|
|
2017
|
+
"docstring": "Configuration for creating a new SmartArt diagram."
|
|
2018
|
+
},
|
|
2019
|
+
"SlicerConfig": {
|
|
2020
|
+
"name": "SlicerConfig",
|
|
2021
|
+
"definition": "{\n /** Name of the table to connect the slicer to */\n tableName?: string | undefined;\n /** Column name within the table to filter on */\n columnName?: string | undefined;\n /** Display name for the slicer (auto-generated if omitted) */\n name?: string | undefined;\n /** Position and dimensions in pixels */\n position?: { x: number; y: number; width: number; height: number; } | undefined;\n /** Data source connection (rich alternative to tableName/columnName) */\n source?: SlicerSource | undefined;\n /** Slicer caption (header text) */\n caption?: string | undefined;\n /** Style configuration (partial for incremental updates) */\n style?: Partial<SlicerStyle> | undefined;\n /** Show slicer header */\n showHeader?: boolean | undefined;\n /** Currently selected date range start (timeline slicers) */\n selectedStartDate?: number | undefined;\n /** Currently selected date range end (timeline slicers) */\n selectedEndDate?: number | undefined;\n /** Current aggregation level (timeline slicers) */\n timelineLevel?: TimelineLevel | undefined;\n}",
|
|
2022
|
+
"docstring": "Configuration for creating a new slicer."
|
|
2023
|
+
},
|
|
2024
|
+
"SlicerInfo": {
|
|
2025
|
+
"name": "SlicerInfo",
|
|
2026
|
+
"definition": "{\n /** Unique slicer ID */\n id: string;\n /** Display name */\n name: string;\n /** Connected table name */\n tableName: string;\n /** Connected column name */\n columnName: string;\n /** Source type — 'table' for table slicers, 'pivot' for pivot table slicers */\n source?: { type: \"table\" | \"pivot\"; } | undefined;\n /** Discriminator for timeline slicers (matches TimelineSlicerConfig.sourceType) */\n sourceType?: \"timeline\" | undefined;\n}",
|
|
2027
|
+
"docstring": "Summary information about a slicer."
|
|
2028
|
+
},
|
|
2029
|
+
"SlicerState": {
|
|
2030
|
+
"name": "SlicerState",
|
|
2031
|
+
"definition": "{\n /** Computed items with selection state */\n items: SlicerItem[];\n /** Whether the slicer is connected to its data source */\n isConnected: boolean;\n /** Selected values */\n selectedValues: CellValue[];\n /** Timeline periods (for timeline slicers) */\n periods?: TimelinePeriod[] | undefined;\n}",
|
|
2032
|
+
"docstring": "Enriched runtime state for a slicer (includes computed items, connection status)."
|
|
2033
|
+
},
|
|
2034
|
+
"SlicerItem": {
|
|
2035
|
+
"name": "SlicerItem",
|
|
2036
|
+
"definition": "{\n /** The display value */\n value: CellValue;\n /** Whether this item is currently selected */\n selected: boolean;\n /** Number of matching records (if available) */\n count?: number | undefined;\n}",
|
|
2037
|
+
"docstring": "A single item in a slicer's value list."
|
|
2038
|
+
}
|
|
2039
|
+
},
|
|
2040
|
+
"generated": "2026-03-26T06:07:37.111Z"
|
|
2041
|
+
}
|