@quantiya/codevibe-codex-plugin 2.0.5 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -23
- package/dist/server.js +21 -21
- package/hooks/common.sh +506 -19
- package/libexec/companion-launcher +789 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/README.md +137 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.d.ts +5 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/package.json +52 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/@isaacs/cliui/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/@isaacs/cliui/node_modules/string-width/index.js +54 -0
- package/node_modules/@isaacs/cliui/node_modules/string-width/package.json +59 -0
- package/node_modules/@isaacs/cliui/node_modules/string-width/readme.md +67 -0
- package/node_modules/@isaacs/cliui/node_modules/wrap-ansi/index.d.ts +41 -0
- package/node_modules/@isaacs/cliui/node_modules/wrap-ansi/index.js +214 -0
- package/node_modules/@isaacs/cliui/node_modules/wrap-ansi/package.json +69 -0
- package/node_modules/@isaacs/cliui/node_modules/wrap-ansi/readme.md +91 -0
- package/node_modules/@quantiya/codevibe-core/README.md +7 -5
- package/node_modules/@quantiya/codevibe-core/dist/agy-cli-contract.d.ts +14 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/appsync-client.d.ts +59 -31
- package/node_modules/@quantiya/codevibe-core/dist/appsync/event-throttle.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/index.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/appsync/queries.d.ts +4 -2
- package/node_modules/@quantiya/codevibe-core/dist/auth/auth-telemetry.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/dist/auth/vendor-key-cli.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/index.d.ts +36 -22
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/persist-preference.d.ts +1 -5
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/resolve-agent.d.ts +5 -4
- package/node_modules/@quantiya/codevibe-core/dist/config/config.d.ts +0 -5
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/__tests__/upstream-result-helpers.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/broker.d.ts +196 -12
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/chatgpt-config.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/index.d.ts +4 -1
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-account-lock.d.ts +104 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-refresh.d.ts +72 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/types.d.ts +165 -17
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/upstream-client.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/vendor-key-store.d.ts +32 -1
- package/node_modules/@quantiya/codevibe-core/dist/crypto/encrypt-for-emit.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/__tests__/process-guards.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/process-guards.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +17 -2
- package/node_modules/@quantiya/codevibe-core/dist/index.js +308 -281
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-manager.d.ts +25 -4
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/reviewer-rationale-flag.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/class-a-sign.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/group-decision-outcome.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/implementor-argv.d.ts +89 -7
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/local-executor-impl.d.ts +18 -7
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/merge-conflict-resolve.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/revert-reconcile.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/reviewer-rationale-flag.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/types.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-model/manager.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/__tests__/detect-agents.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/detect-agents.d.ts +10 -30
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/index.d.ts +1 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a1a-planner-offers.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a6-cli-surface.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-attachments-dir-race.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-multi-mention-panel.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-panel-attachments.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-quota-stdout-result.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/agent-turn-context-batch.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/bounded-shutdown.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cli-team-session-key.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/command-intent.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-compaction.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-hosted-sync.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-full-team-events.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-team-decomposed-zk.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/explicit-tty-exit.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/mention-suggest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/route-browse-summarize-recovery.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/attachments.d.ts +58 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/bounded-shutdown.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/brainstorm-quorum.d.ts +118 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +97 -70
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +30990 -22426
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/command-intent.d.ts +56 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/InputBar.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/OrchestrationApp.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-compaction.d.ts +264 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items-hosted-sync.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items.d.ts +408 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-store.d.ts +162 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/emit-shell-event.d.ts +34 -13
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/explicit-tty-exit.d.ts +18 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/gate-prompts.d.ts +3 -3
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +306 -37
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mention-suggest.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mode-selection.d.ts +4 -22
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +336 -20
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/task-progress.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/team-decompose.d.ts +37 -19
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +71 -4
- package/node_modules/@quantiya/codevibe-core/dist/planner/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-advisory.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-gemma.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/types.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/index.d.ts +0 -2
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/provider.d.ts +9 -6
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/antigravity.d.ts +2 -3
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/registry.d.ts +9 -4
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/token-usage.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/device-registration-lease.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/pending-session-create.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-rekey-fingerprint.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-key-reconciliation.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-pending-first.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/device-key-watcher.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/index.d.ts +4 -2
- package/node_modules/@quantiya/codevibe-core/dist/session/pending-session-create.d.ts +61 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/register-device-key.d.ts +11 -1
- package/node_modules/@quantiya/codevibe-core/dist/session/session-rekey.d.ts +4 -5
- package/node_modules/@quantiya/codevibe-core/dist/session/session-resume.d.ts +21 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate/docker.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate/sandbox-exec.d.ts +17 -3
- package/node_modules/@quantiya/codevibe-core/dist/substrate/types.d.ts +32 -3
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/apikey-bootstrap.d.ts +24 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/engage-substrate.d.ts +17 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/sanitized-env.d.ts +5 -5
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/consolidator.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/digest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/flock-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/ledger.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/outbox.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/replay-cursor.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/session-map.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/socket-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/atomic-file.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/consolidator.d.ts +253 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/digest.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/flock-rollout-lock.d.ts +68 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/index.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/ledger.d.ts +274 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/outbox.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/replay-cursor.d.ts +156 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/session-map.d.ts +133 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/socket-rollout-lock.d.ts +57 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +368 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/encryption.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/events.d.ts +24 -4
- package/node_modules/@quantiya/codevibe-core/dist/types/session.d.ts +32 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/README.md +207 -163
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/bin/uuid +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/index.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.js +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.js +83 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.js +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.js +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.js +9 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.js +113 -193
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.js +1 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.js +6 -32
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.js +6 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.js +62 -88
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.js +27 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.js +78 -90
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.js +30 -57
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.js +21 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.js +2 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.js +5 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/package.json +73 -76
- package/node_modules/@quantiya/codevibe-core/package.json +6 -5
- package/node_modules/ansi-styles/index.d.ts +232 -341
- package/node_modules/ansi-styles/index.js +190 -130
- package/node_modules/ansi-styles/license +1 -1
- package/node_modules/ansi-styles/package.json +8 -10
- package/node_modules/ansi-styles/readme.md +53 -32
- package/node_modules/body-parser/README.md +34 -19
- package/node_modules/body-parser/index.js +10 -35
- package/node_modules/body-parser/lib/read.js +34 -37
- package/node_modules/body-parser/lib/types/json.js +68 -48
- package/node_modules/body-parser/lib/types/raw.js +6 -7
- package/node_modules/body-parser/lib/types/text.js +6 -7
- package/node_modules/body-parser/lib/types/urlencoded.js +23 -27
- package/node_modules/body-parser/lib/utils.js +29 -25
- package/node_modules/body-parser/node_modules/content-type/LICENSE +22 -0
- package/node_modules/body-parser/node_modules/content-type/README.md +69 -0
- package/node_modules/body-parser/node_modules/content-type/dist/index.d.ts +26 -0
- package/node_modules/body-parser/node_modules/content-type/dist/index.js +170 -0
- package/node_modules/body-parser/node_modules/content-type/dist/index.js.map +1 -0
- package/node_modules/body-parser/node_modules/content-type/package.json +52 -0
- package/node_modules/body-parser/package.json +23 -10
- package/node_modules/brace-expansion/.tap/coverage/8b906b8c-e21f-40b5-8c0d-214d8c2682c5.json +757 -0
- package/node_modules/brace-expansion/.tap/processinfo/8b906b8c-e21f-40b5-8c0d-214d8c2682c5.json +719 -0
- package/node_modules/brace-expansion/ADVISORY-CVE-2026-14257.md +107 -0
- package/node_modules/brace-expansion/dist/commonjs/index.d.ts +8 -0
- package/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/brace-expansion/dist/commonjs/index.js +263 -0
- package/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
- package/node_modules/brace-expansion/dist/esm/index.d.ts +8 -0
- package/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
- package/node_modules/brace-expansion/dist/esm/index.js +259 -0
- package/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
- package/node_modules/brace-expansion/index.js +39 -24
- package/node_modules/brace-expansion/package.json +1 -1
- package/node_modules/cli-truncate/index.js +194 -0
- package/node_modules/cli-truncate/package.json +52 -0
- package/node_modules/content-disposition/README.md +7 -8
- package/node_modules/content-disposition/index.js +118 -40
- package/node_modules/content-disposition/package.json +8 -11
- package/node_modules/cross-spawn/node_modules/isexe/README.md +51 -0
- package/node_modules/cross-spawn/node_modules/isexe/package.json +31 -0
- package/node_modules/cross-spawn/node_modules/which/README.md +54 -0
- package/node_modules/cross-spawn/node_modules/which/package.json +43 -0
- package/node_modules/emoji-regex/README.md +6 -70
- package/node_modules/emoji-regex/es2015/index.js +1 -1
- package/node_modules/emoji-regex/es2015/text.js +1 -1
- package/node_modules/emoji-regex/index.d.ts +20 -2
- package/node_modules/emoji-regex/index.js +1 -1
- package/node_modules/emoji-regex/package.json +11 -13
- package/node_modules/emoji-regex/text.js +1 -1
- package/node_modules/es-object-atoms/CHANGELOG.md +21 -14
- package/node_modules/es-object-atoms/isObject.d.ts +1 -1
- package/node_modules/es-object-atoms/package.json +6 -7
- package/node_modules/es-object-atoms/tsconfig.json +1 -0
- package/node_modules/es-toolkit/CHANGELOG.md +80 -0
- package/node_modules/es-toolkit/LICENSE +1 -5
- package/node_modules/es-toolkit/README.md +1 -1
- package/node_modules/es-toolkit/compat/add.d.mts +1 -0
- package/node_modules/es-toolkit/compat/add.mjs +1 -0
- package/node_modules/es-toolkit/compat/after.d.mts +1 -0
- package/node_modules/es-toolkit/compat/after.mjs +1 -0
- package/node_modules/es-toolkit/compat/ary.d.mts +1 -0
- package/node_modules/es-toolkit/compat/ary.mjs +1 -0
- package/node_modules/es-toolkit/compat/assign.d.mts +1 -0
- package/node_modules/es-toolkit/compat/assign.mjs +1 -0
- package/node_modules/es-toolkit/compat/assignIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/assignIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/assignInWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/assignInWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/assignWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/assignWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/at.d.mts +1 -0
- package/node_modules/es-toolkit/compat/at.mjs +1 -0
- package/node_modules/es-toolkit/compat/attempt.d.mts +1 -0
- package/node_modules/es-toolkit/compat/attempt.mjs +1 -0
- package/node_modules/es-toolkit/compat/before.d.mts +1 -0
- package/node_modules/es-toolkit/compat/before.mjs +1 -0
- package/node_modules/es-toolkit/compat/bind.d.mts +1 -0
- package/node_modules/es-toolkit/compat/bind.mjs +1 -0
- package/node_modules/es-toolkit/compat/bindAll.d.mts +1 -0
- package/node_modules/es-toolkit/compat/bindAll.mjs +1 -0
- package/node_modules/es-toolkit/compat/bindKey.d.mts +1 -0
- package/node_modules/es-toolkit/compat/bindKey.mjs +1 -0
- package/node_modules/es-toolkit/compat/camelCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/camelCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/capitalize.d.mts +1 -0
- package/node_modules/es-toolkit/compat/capitalize.mjs +1 -0
- package/node_modules/es-toolkit/compat/castArray.d.mts +1 -0
- package/node_modules/es-toolkit/compat/castArray.mjs +1 -0
- package/node_modules/es-toolkit/compat/ceil.d.mts +1 -0
- package/node_modules/es-toolkit/compat/ceil.mjs +1 -0
- package/node_modules/es-toolkit/compat/chunk.d.mts +1 -0
- package/node_modules/es-toolkit/compat/chunk.mjs +1 -0
- package/node_modules/es-toolkit/compat/clamp.d.mts +1 -0
- package/node_modules/es-toolkit/compat/clamp.mjs +1 -0
- package/node_modules/es-toolkit/compat/clone.d.mts +1 -0
- package/node_modules/es-toolkit/compat/clone.mjs +1 -0
- package/node_modules/es-toolkit/compat/cloneDeep.d.mts +1 -0
- package/node_modules/es-toolkit/compat/cloneDeep.mjs +1 -0
- package/node_modules/es-toolkit/compat/cloneDeepWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/cloneDeepWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/cloneWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/cloneWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/compact.d.mts +1 -0
- package/node_modules/es-toolkit/compat/compact.mjs +1 -0
- package/node_modules/es-toolkit/compat/concat.d.mts +1 -0
- package/node_modules/es-toolkit/compat/concat.mjs +1 -0
- package/node_modules/es-toolkit/compat/cond.d.mts +1 -0
- package/node_modules/es-toolkit/compat/cond.mjs +1 -0
- package/node_modules/es-toolkit/compat/conforms.d.mts +1 -0
- package/node_modules/es-toolkit/compat/conforms.mjs +1 -0
- package/node_modules/es-toolkit/compat/conformsTo.d.mts +1 -0
- package/node_modules/es-toolkit/compat/conformsTo.mjs +1 -0
- package/node_modules/es-toolkit/compat/constant.d.mts +1 -0
- package/node_modules/es-toolkit/compat/constant.mjs +1 -0
- package/node_modules/es-toolkit/compat/countBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/countBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/create.d.mts +1 -0
- package/node_modules/es-toolkit/compat/create.mjs +1 -0
- package/node_modules/es-toolkit/compat/curry.d.mts +1 -0
- package/node_modules/es-toolkit/compat/curry.mjs +1 -0
- package/node_modules/es-toolkit/compat/curryRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/curryRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/debounce.d.mts +1 -0
- package/node_modules/es-toolkit/compat/debounce.mjs +1 -0
- package/node_modules/es-toolkit/compat/deburr.d.mts +1 -0
- package/node_modules/es-toolkit/compat/deburr.mjs +1 -0
- package/node_modules/es-toolkit/compat/defaultTo.d.mts +1 -0
- package/node_modules/es-toolkit/compat/defaultTo.mjs +1 -0
- package/node_modules/es-toolkit/compat/defaults.d.mts +1 -0
- package/node_modules/es-toolkit/compat/defaults.mjs +1 -0
- package/node_modules/es-toolkit/compat/defaultsDeep.d.mts +1 -0
- package/node_modules/es-toolkit/compat/defaultsDeep.mjs +1 -0
- package/node_modules/es-toolkit/compat/defer.d.mts +1 -0
- package/node_modules/es-toolkit/compat/defer.mjs +1 -0
- package/node_modules/es-toolkit/compat/delay.d.mts +1 -0
- package/node_modules/es-toolkit/compat/delay.mjs +1 -0
- package/node_modules/es-toolkit/compat/difference.d.mts +1 -0
- package/node_modules/es-toolkit/compat/difference.mjs +1 -0
- package/node_modules/es-toolkit/compat/differenceBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/differenceBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/differenceWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/differenceWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/divide.d.mts +1 -0
- package/node_modules/es-toolkit/compat/divide.mjs +1 -0
- package/node_modules/es-toolkit/compat/drop.d.mts +1 -0
- package/node_modules/es-toolkit/compat/drop.mjs +1 -0
- package/node_modules/es-toolkit/compat/dropRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/dropRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/dropRightWhile.d.mts +1 -0
- package/node_modules/es-toolkit/compat/dropRightWhile.mjs +1 -0
- package/node_modules/es-toolkit/compat/dropWhile.d.mts +1 -0
- package/node_modules/es-toolkit/compat/dropWhile.mjs +1 -0
- package/node_modules/es-toolkit/compat/each.d.mts +1 -0
- package/node_modules/es-toolkit/compat/each.mjs +1 -0
- package/node_modules/es-toolkit/compat/eachRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/eachRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/endsWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/endsWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/eq.d.mts +1 -0
- package/node_modules/es-toolkit/compat/eq.mjs +1 -0
- package/node_modules/es-toolkit/compat/escape.d.mts +1 -0
- package/node_modules/es-toolkit/compat/escape.mjs +1 -0
- package/node_modules/es-toolkit/compat/escapeRegExp.d.mts +1 -0
- package/node_modules/es-toolkit/compat/escapeRegExp.mjs +1 -0
- package/node_modules/es-toolkit/compat/every.d.mts +1 -0
- package/node_modules/es-toolkit/compat/every.mjs +1 -0
- package/node_modules/es-toolkit/compat/extend.d.mts +1 -0
- package/node_modules/es-toolkit/compat/extend.mjs +1 -0
- package/node_modules/es-toolkit/compat/extendWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/extendWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/fill.d.mts +1 -0
- package/node_modules/es-toolkit/compat/fill.mjs +1 -0
- package/node_modules/es-toolkit/compat/filter.d.mts +1 -0
- package/node_modules/es-toolkit/compat/filter.mjs +1 -0
- package/node_modules/es-toolkit/compat/find.d.mts +1 -0
- package/node_modules/es-toolkit/compat/find.mjs +1 -0
- package/node_modules/es-toolkit/compat/findIndex.d.mts +1 -0
- package/node_modules/es-toolkit/compat/findIndex.mjs +1 -0
- package/node_modules/es-toolkit/compat/findKey.d.mts +1 -0
- package/node_modules/es-toolkit/compat/findKey.mjs +1 -0
- package/node_modules/es-toolkit/compat/findLast.d.mts +1 -0
- package/node_modules/es-toolkit/compat/findLast.mjs +1 -0
- package/node_modules/es-toolkit/compat/findLastIndex.d.mts +1 -0
- package/node_modules/es-toolkit/compat/findLastIndex.mjs +1 -0
- package/node_modules/es-toolkit/compat/findLastKey.d.mts +1 -0
- package/node_modules/es-toolkit/compat/findLastKey.mjs +1 -0
- package/node_modules/es-toolkit/compat/first.d.mts +1 -0
- package/node_modules/es-toolkit/compat/first.mjs +1 -0
- package/node_modules/es-toolkit/compat/flatMap.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flatMap.mjs +1 -0
- package/node_modules/es-toolkit/compat/flatMapDeep.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flatMapDeep.mjs +1 -0
- package/node_modules/es-toolkit/compat/flatMapDepth.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flatMapDepth.mjs +1 -0
- package/node_modules/es-toolkit/compat/flatten.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flatten.mjs +1 -0
- package/node_modules/es-toolkit/compat/flattenDeep.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flattenDeep.mjs +1 -0
- package/node_modules/es-toolkit/compat/flattenDepth.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flattenDepth.mjs +1 -0
- package/node_modules/es-toolkit/compat/flip.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flip.mjs +1 -0
- package/node_modules/es-toolkit/compat/floor.d.mts +1 -0
- package/node_modules/es-toolkit/compat/floor.mjs +1 -0
- package/node_modules/es-toolkit/compat/flow.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flow.mjs +1 -0
- package/node_modules/es-toolkit/compat/flowRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flowRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/forEach.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forEach.mjs +1 -0
- package/node_modules/es-toolkit/compat/forEachRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forEachRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/forIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/forInRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forInRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/forOwn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forOwn.mjs +1 -0
- package/node_modules/es-toolkit/compat/forOwnRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forOwnRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/fromPairs.d.mts +1 -0
- package/node_modules/es-toolkit/compat/fromPairs.mjs +1 -0
- package/node_modules/es-toolkit/compat/functions.d.mts +1 -0
- package/node_modules/es-toolkit/compat/functions.mjs +1 -0
- package/node_modules/es-toolkit/compat/functionsIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/functionsIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/get.d.mts +1 -0
- package/node_modules/es-toolkit/compat/get.mjs +1 -0
- package/node_modules/es-toolkit/compat/groupBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/groupBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/gt.d.mts +1 -0
- package/node_modules/es-toolkit/compat/gt.mjs +1 -0
- package/node_modules/es-toolkit/compat/gte.d.mts +1 -0
- package/node_modules/es-toolkit/compat/gte.mjs +1 -0
- package/node_modules/es-toolkit/compat/has.d.mts +1 -0
- package/node_modules/es-toolkit/compat/has.mjs +1 -0
- package/node_modules/es-toolkit/compat/hasIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/hasIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/head.d.mts +1 -0
- package/node_modules/es-toolkit/compat/head.mjs +1 -0
- package/node_modules/es-toolkit/compat/identity.d.mts +1 -0
- package/node_modules/es-toolkit/compat/identity.mjs +1 -0
- package/node_modules/es-toolkit/compat/inRange.d.mts +1 -0
- package/node_modules/es-toolkit/compat/inRange.mjs +1 -0
- package/node_modules/es-toolkit/compat/includes.d.mts +1 -0
- package/node_modules/es-toolkit/compat/includes.mjs +1 -0
- package/node_modules/es-toolkit/compat/indexOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/indexOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/initial.d.mts +1 -0
- package/node_modules/es-toolkit/compat/initial.mjs +1 -0
- package/node_modules/es-toolkit/compat/intersection.d.mts +1 -0
- package/node_modules/es-toolkit/compat/intersection.mjs +1 -0
- package/node_modules/es-toolkit/compat/intersectionBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/intersectionBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/intersectionWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/intersectionWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/invert.d.mts +1 -0
- package/node_modules/es-toolkit/compat/invert.mjs +1 -0
- package/node_modules/es-toolkit/compat/invertBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/invertBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/invoke.d.mts +1 -0
- package/node_modules/es-toolkit/compat/invoke.mjs +1 -0
- package/node_modules/es-toolkit/compat/invokeMap.d.mts +1 -0
- package/node_modules/es-toolkit/compat/invokeMap.mjs +1 -0
- package/node_modules/es-toolkit/compat/isArguments.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isArguments.mjs +1 -0
- package/node_modules/es-toolkit/compat/isArray.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isArray.mjs +1 -0
- package/node_modules/es-toolkit/compat/isArrayBuffer.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isArrayBuffer.mjs +1 -0
- package/node_modules/es-toolkit/compat/isArrayLike.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isArrayLike.mjs +1 -0
- package/node_modules/es-toolkit/compat/isArrayLikeObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isArrayLikeObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/isBoolean.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isBoolean.mjs +1 -0
- package/node_modules/es-toolkit/compat/isBuffer.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isBuffer.mjs +1 -0
- package/node_modules/es-toolkit/compat/isDate.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isDate.mjs +1 -0
- package/node_modules/es-toolkit/compat/isElement.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isElement.mjs +1 -0
- package/node_modules/es-toolkit/compat/isEmpty.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isEmpty.mjs +1 -0
- package/node_modules/es-toolkit/compat/isEqual.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isEqual.mjs +1 -0
- package/node_modules/es-toolkit/compat/isEqualWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isEqualWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/isError.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isError.mjs +1 -0
- package/node_modules/es-toolkit/compat/isFinite.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isFinite.mjs +1 -0
- package/node_modules/es-toolkit/compat/isFunction.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isFunction.mjs +1 -0
- package/node_modules/es-toolkit/compat/isInteger.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isInteger.mjs +1 -0
- package/node_modules/es-toolkit/compat/isLength.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isLength.mjs +1 -0
- package/node_modules/es-toolkit/compat/isMap.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isMap.mjs +1 -0
- package/node_modules/es-toolkit/compat/isMatch.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isMatch.mjs +1 -0
- package/node_modules/es-toolkit/compat/isMatchWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isMatchWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/isNaN.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isNaN.mjs +1 -0
- package/node_modules/es-toolkit/compat/isNative.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isNative.mjs +1 -0
- package/node_modules/es-toolkit/compat/isNil.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isNil.mjs +1 -0
- package/node_modules/es-toolkit/compat/isNull.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isNull.mjs +1 -0
- package/node_modules/es-toolkit/compat/isNumber.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isNumber.mjs +1 -0
- package/node_modules/es-toolkit/compat/isObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/isObjectLike.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isObjectLike.mjs +1 -0
- package/node_modules/es-toolkit/compat/isPlainObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isPlainObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/isRegExp.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isRegExp.mjs +1 -0
- package/node_modules/es-toolkit/compat/isSafeInteger.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isSafeInteger.mjs +1 -0
- package/node_modules/es-toolkit/compat/isSet.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isSet.mjs +1 -0
- package/node_modules/es-toolkit/compat/isString.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isString.mjs +1 -0
- package/node_modules/es-toolkit/compat/isSymbol.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isSymbol.mjs +1 -0
- package/node_modules/es-toolkit/compat/isTypedArray.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isTypedArray.mjs +1 -0
- package/node_modules/es-toolkit/compat/isUndefined.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isUndefined.mjs +1 -0
- package/node_modules/es-toolkit/compat/isWeakMap.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isWeakMap.mjs +1 -0
- package/node_modules/es-toolkit/compat/isWeakSet.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isWeakSet.mjs +1 -0
- package/node_modules/es-toolkit/compat/iteratee.d.mts +1 -0
- package/node_modules/es-toolkit/compat/iteratee.mjs +1 -0
- package/node_modules/es-toolkit/compat/join.d.mts +1 -0
- package/node_modules/es-toolkit/compat/join.mjs +1 -0
- package/node_modules/es-toolkit/compat/kebabCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/kebabCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/keyBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/keyBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/keys.d.mts +1 -0
- package/node_modules/es-toolkit/compat/keys.mjs +1 -0
- package/node_modules/es-toolkit/compat/keysIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/keysIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/last.d.mts +1 -0
- package/node_modules/es-toolkit/compat/last.mjs +1 -0
- package/node_modules/es-toolkit/compat/lastIndexOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/lastIndexOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/lowerCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/lowerCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/lowerFirst.d.mts +1 -0
- package/node_modules/es-toolkit/compat/lowerFirst.mjs +1 -0
- package/node_modules/es-toolkit/compat/lt.d.mts +1 -0
- package/node_modules/es-toolkit/compat/lt.mjs +1 -0
- package/node_modules/es-toolkit/compat/lte.d.mts +1 -0
- package/node_modules/es-toolkit/compat/lte.mjs +1 -0
- package/node_modules/es-toolkit/compat/map.d.mts +1 -0
- package/node_modules/es-toolkit/compat/map.mjs +1 -0
- package/node_modules/es-toolkit/compat/mapKeys.d.mts +1 -0
- package/node_modules/es-toolkit/compat/mapKeys.mjs +1 -0
- package/node_modules/es-toolkit/compat/mapValues.d.mts +1 -0
- package/node_modules/es-toolkit/compat/mapValues.mjs +1 -0
- package/node_modules/es-toolkit/compat/matches.d.mts +1 -0
- package/node_modules/es-toolkit/compat/matches.mjs +1 -0
- package/node_modules/es-toolkit/compat/matchesProperty.d.mts +1 -0
- package/node_modules/es-toolkit/compat/matchesProperty.mjs +1 -0
- package/node_modules/es-toolkit/compat/max.d.mts +1 -0
- package/node_modules/es-toolkit/compat/max.mjs +1 -0
- package/node_modules/es-toolkit/compat/maxBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/maxBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/mean.d.mts +1 -0
- package/node_modules/es-toolkit/compat/mean.mjs +1 -0
- package/node_modules/es-toolkit/compat/meanBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/meanBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/memoize.d.mts +1 -0
- package/node_modules/es-toolkit/compat/memoize.mjs +1 -0
- package/node_modules/es-toolkit/compat/merge.d.mts +1 -0
- package/node_modules/es-toolkit/compat/merge.mjs +1 -0
- package/node_modules/es-toolkit/compat/mergeWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/mergeWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/method.d.mts +1 -0
- package/node_modules/es-toolkit/compat/method.mjs +1 -0
- package/node_modules/es-toolkit/compat/methodOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/methodOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/min.d.mts +1 -0
- package/node_modules/es-toolkit/compat/min.mjs +1 -0
- package/node_modules/es-toolkit/compat/minBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/minBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/multiply.d.mts +1 -0
- package/node_modules/es-toolkit/compat/multiply.mjs +1 -0
- package/node_modules/es-toolkit/compat/negate.d.mts +1 -0
- package/node_modules/es-toolkit/compat/negate.mjs +1 -0
- package/node_modules/es-toolkit/compat/noop.d.mts +1 -0
- package/node_modules/es-toolkit/compat/noop.mjs +1 -0
- package/node_modules/es-toolkit/compat/now.d.mts +1 -0
- package/node_modules/es-toolkit/compat/now.mjs +1 -0
- package/node_modules/es-toolkit/compat/nth.d.mts +1 -0
- package/node_modules/es-toolkit/compat/nth.mjs +1 -0
- package/node_modules/es-toolkit/compat/nthArg.d.mts +1 -0
- package/node_modules/es-toolkit/compat/nthArg.mjs +1 -0
- package/node_modules/es-toolkit/compat/omit.d.mts +1 -0
- package/node_modules/es-toolkit/compat/omit.mjs +1 -0
- package/node_modules/es-toolkit/compat/omitBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/omitBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/once.d.mts +1 -0
- package/node_modules/es-toolkit/compat/once.mjs +1 -0
- package/node_modules/es-toolkit/compat/orderBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/orderBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/over.d.mts +1 -0
- package/node_modules/es-toolkit/compat/over.mjs +1 -0
- package/node_modules/es-toolkit/compat/overArgs.d.mts +1 -0
- package/node_modules/es-toolkit/compat/overArgs.mjs +1 -0
- package/node_modules/es-toolkit/compat/overEvery.d.mts +1 -0
- package/node_modules/es-toolkit/compat/overEvery.mjs +1 -0
- package/node_modules/es-toolkit/compat/overSome.d.mts +1 -0
- package/node_modules/es-toolkit/compat/overSome.mjs +1 -0
- package/node_modules/es-toolkit/compat/pad.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pad.mjs +1 -0
- package/node_modules/es-toolkit/compat/padEnd.d.mts +1 -0
- package/node_modules/es-toolkit/compat/padEnd.mjs +1 -0
- package/node_modules/es-toolkit/compat/padStart.d.mts +1 -0
- package/node_modules/es-toolkit/compat/padStart.mjs +1 -0
- package/node_modules/es-toolkit/compat/parseInt.d.mts +1 -0
- package/node_modules/es-toolkit/compat/parseInt.mjs +1 -0
- package/node_modules/es-toolkit/compat/partial.d.mts +1 -0
- package/node_modules/es-toolkit/compat/partial.mjs +1 -0
- package/node_modules/es-toolkit/compat/partialRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/partialRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/partition.d.mts +1 -0
- package/node_modules/es-toolkit/compat/partition.mjs +1 -0
- package/node_modules/es-toolkit/compat/pick.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pick.mjs +1 -0
- package/node_modules/es-toolkit/compat/pickBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pickBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/property.d.mts +1 -0
- package/node_modules/es-toolkit/compat/property.mjs +1 -0
- package/node_modules/es-toolkit/compat/propertyOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/propertyOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/pull.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pull.mjs +1 -0
- package/node_modules/es-toolkit/compat/pullAll.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pullAll.mjs +1 -0
- package/node_modules/es-toolkit/compat/pullAllBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pullAllBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/pullAllWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pullAllWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/pullAt.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pullAt.mjs +1 -0
- package/node_modules/es-toolkit/compat/random.d.mts +1 -0
- package/node_modules/es-toolkit/compat/random.mjs +1 -0
- package/node_modules/es-toolkit/compat/range.d.mts +1 -0
- package/node_modules/es-toolkit/compat/range.mjs +1 -0
- package/node_modules/es-toolkit/compat/rangeRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/rangeRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/rearg.d.mts +1 -0
- package/node_modules/es-toolkit/compat/rearg.mjs +1 -0
- package/node_modules/es-toolkit/compat/reduce.d.mts +1 -0
- package/node_modules/es-toolkit/compat/reduce.mjs +1 -0
- package/node_modules/es-toolkit/compat/reduceRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/reduceRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/reject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/reject.mjs +1 -0
- package/node_modules/es-toolkit/compat/remove.d.mts +1 -0
- package/node_modules/es-toolkit/compat/remove.mjs +1 -0
- package/node_modules/es-toolkit/compat/repeat.d.mts +1 -0
- package/node_modules/es-toolkit/compat/repeat.mjs +1 -0
- package/node_modules/es-toolkit/compat/replace.d.mts +1 -0
- package/node_modules/es-toolkit/compat/replace.mjs +1 -0
- package/node_modules/es-toolkit/compat/rest.d.mts +1 -0
- package/node_modules/es-toolkit/compat/rest.mjs +1 -0
- package/node_modules/es-toolkit/compat/result.d.mts +1 -0
- package/node_modules/es-toolkit/compat/result.mjs +1 -0
- package/node_modules/es-toolkit/compat/reverse.d.mts +1 -0
- package/node_modules/es-toolkit/compat/reverse.mjs +1 -0
- package/node_modules/es-toolkit/compat/round.d.mts +1 -0
- package/node_modules/es-toolkit/compat/round.mjs +1 -0
- package/node_modules/es-toolkit/compat/sample.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sample.mjs +1 -0
- package/node_modules/es-toolkit/compat/sampleSize.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sampleSize.mjs +1 -0
- package/node_modules/es-toolkit/compat/set.d.mts +1 -0
- package/node_modules/es-toolkit/compat/set.mjs +1 -0
- package/node_modules/es-toolkit/compat/setWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/setWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/shuffle.d.mts +1 -0
- package/node_modules/es-toolkit/compat/shuffle.mjs +1 -0
- package/node_modules/es-toolkit/compat/size.d.mts +1 -0
- package/node_modules/es-toolkit/compat/size.mjs +1 -0
- package/node_modules/es-toolkit/compat/slice.d.mts +1 -0
- package/node_modules/es-toolkit/compat/slice.mjs +1 -0
- package/node_modules/es-toolkit/compat/snakeCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/snakeCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/some.d.mts +1 -0
- package/node_modules/es-toolkit/compat/some.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedIndex.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedIndex.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedIndexBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedIndexBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedIndexOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedIndexOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndex.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndex.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndexBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndexBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndexOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndexOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/split.d.mts +1 -0
- package/node_modules/es-toolkit/compat/split.mjs +1 -0
- package/node_modules/es-toolkit/compat/spread.d.mts +1 -0
- package/node_modules/es-toolkit/compat/spread.mjs +1 -0
- package/node_modules/es-toolkit/compat/startCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/startCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/startsWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/startsWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/stubArray.d.mts +1 -0
- package/node_modules/es-toolkit/compat/stubArray.mjs +1 -0
- package/node_modules/es-toolkit/compat/stubFalse.d.mts +1 -0
- package/node_modules/es-toolkit/compat/stubFalse.mjs +1 -0
- package/node_modules/es-toolkit/compat/stubObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/stubObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/stubString.d.mts +1 -0
- package/node_modules/es-toolkit/compat/stubString.mjs +1 -0
- package/node_modules/es-toolkit/compat/stubTrue.d.mts +1 -0
- package/node_modules/es-toolkit/compat/stubTrue.mjs +1 -0
- package/node_modules/es-toolkit/compat/subtract.d.mts +1 -0
- package/node_modules/es-toolkit/compat/subtract.mjs +1 -0
- package/node_modules/es-toolkit/compat/sum.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sum.mjs +1 -0
- package/node_modules/es-toolkit/compat/sumBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sumBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/tail.d.mts +1 -0
- package/node_modules/es-toolkit/compat/tail.mjs +1 -0
- package/node_modules/es-toolkit/compat/take.d.mts +1 -0
- package/node_modules/es-toolkit/compat/take.mjs +1 -0
- package/node_modules/es-toolkit/compat/takeRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/takeRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/takeRightWhile.d.mts +1 -0
- package/node_modules/es-toolkit/compat/takeRightWhile.mjs +1 -0
- package/node_modules/es-toolkit/compat/takeWhile.d.mts +1 -0
- package/node_modules/es-toolkit/compat/takeWhile.mjs +1 -0
- package/node_modules/es-toolkit/compat/template.d.mts +1 -0
- package/node_modules/es-toolkit/compat/template.mjs +1 -0
- package/node_modules/es-toolkit/compat/templateSettings.d.mts +1 -0
- package/node_modules/es-toolkit/compat/templateSettings.mjs +1 -0
- package/node_modules/es-toolkit/compat/throttle.d.mts +1 -0
- package/node_modules/es-toolkit/compat/throttle.mjs +1 -0
- package/node_modules/es-toolkit/compat/times.d.mts +1 -0
- package/node_modules/es-toolkit/compat/times.mjs +1 -0
- package/node_modules/es-toolkit/compat/toArray.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toArray.mjs +1 -0
- package/node_modules/es-toolkit/compat/toDefaulted.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toDefaulted.mjs +1 -0
- package/node_modules/es-toolkit/compat/toFinite.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toFinite.mjs +1 -0
- package/node_modules/es-toolkit/compat/toInteger.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toInteger.mjs +1 -0
- package/node_modules/es-toolkit/compat/toLength.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toLength.mjs +1 -0
- package/node_modules/es-toolkit/compat/toLower.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toLower.mjs +1 -0
- package/node_modules/es-toolkit/compat/toNumber.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toNumber.mjs +1 -0
- package/node_modules/es-toolkit/compat/toPairs.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toPairs.mjs +1 -0
- package/node_modules/es-toolkit/compat/toPairsIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toPairsIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/toPath.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toPath.mjs +1 -0
- package/node_modules/es-toolkit/compat/toPlainObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toPlainObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/toSafeInteger.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toSafeInteger.mjs +1 -0
- package/node_modules/es-toolkit/compat/toString.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toString.mjs +1 -0
- package/node_modules/es-toolkit/compat/toUpper.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toUpper.mjs +1 -0
- package/node_modules/es-toolkit/compat/transform.d.mts +1 -0
- package/node_modules/es-toolkit/compat/transform.mjs +1 -0
- package/node_modules/es-toolkit/compat/trim.d.mts +1 -0
- package/node_modules/es-toolkit/compat/trim.mjs +1 -0
- package/node_modules/es-toolkit/compat/trimEnd.d.mts +1 -0
- package/node_modules/es-toolkit/compat/trimEnd.mjs +1 -0
- package/node_modules/es-toolkit/compat/trimStart.d.mts +1 -0
- package/node_modules/es-toolkit/compat/trimStart.mjs +1 -0
- package/node_modules/es-toolkit/compat/truncate.d.mts +1 -0
- package/node_modules/es-toolkit/compat/truncate.mjs +1 -0
- package/node_modules/es-toolkit/compat/unary.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unary.mjs +1 -0
- package/node_modules/es-toolkit/compat/unescape.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unescape.mjs +1 -0
- package/node_modules/es-toolkit/compat/union.d.mts +1 -0
- package/node_modules/es-toolkit/compat/union.mjs +1 -0
- package/node_modules/es-toolkit/compat/unionBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unionBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/unionWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unionWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/uniq.d.mts +1 -0
- package/node_modules/es-toolkit/compat/uniq.mjs +1 -0
- package/node_modules/es-toolkit/compat/uniqBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/uniqBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/uniqWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/uniqWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/uniqueId.d.mts +1 -0
- package/node_modules/es-toolkit/compat/uniqueId.mjs +1 -0
- package/node_modules/es-toolkit/compat/unset.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unset.mjs +1 -0
- package/node_modules/es-toolkit/compat/unzip.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unzip.mjs +1 -0
- package/node_modules/es-toolkit/compat/unzipWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unzipWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/update.d.mts +1 -0
- package/node_modules/es-toolkit/compat/update.mjs +1 -0
- package/node_modules/es-toolkit/compat/updateWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/updateWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/upperCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/upperCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/upperFirst.d.mts +1 -0
- package/node_modules/es-toolkit/compat/upperFirst.mjs +1 -0
- package/node_modules/es-toolkit/compat/values.d.mts +1 -0
- package/node_modules/es-toolkit/compat/values.mjs +1 -0
- package/node_modules/es-toolkit/compat/valuesIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/valuesIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/without.d.mts +1 -0
- package/node_modules/es-toolkit/compat/without.mjs +1 -0
- package/node_modules/es-toolkit/compat/words.d.mts +1 -0
- package/node_modules/es-toolkit/compat/words.mjs +1 -0
- package/node_modules/es-toolkit/compat/wrap.d.mts +1 -0
- package/node_modules/es-toolkit/compat/wrap.mjs +1 -0
- package/node_modules/es-toolkit/compat/xor.d.mts +1 -0
- package/node_modules/es-toolkit/compat/xor.mjs +1 -0
- package/node_modules/es-toolkit/compat/xorBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/xorBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/xorWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/xorWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/zip.d.mts +1 -0
- package/node_modules/es-toolkit/compat/zip.mjs +1 -0
- package/node_modules/es-toolkit/compat/zipObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/zipObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/zipObjectDeep.d.mts +1 -0
- package/node_modules/es-toolkit/compat/zipObjectDeep.mjs +1 -0
- package/node_modules/es-toolkit/compat/zipWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/zipWith.mjs +1 -0
- package/node_modules/es-toolkit/dist/_internal/DOMException.d.mts +4 -3
- package/node_modules/es-toolkit/dist/_internal/DOMException.d.ts +4 -3
- package/node_modules/es-toolkit/dist/_internal/DOMException.js +4 -10
- package/node_modules/es-toolkit/dist/_internal/DOMException.mjs +4 -6
- package/node_modules/es-toolkit/dist/_internal/compareValues.js +18 -12
- package/node_modules/es-toolkit/dist/_internal/compareValues.mjs +18 -8
- package/node_modules/es-toolkit/dist/_internal/globalThis.d.mts +3 -2
- package/node_modules/es-toolkit/dist/_internal/globalThis.d.ts +3 -2
- package/node_modules/es-toolkit/dist/_internal/globalThis.js +6 -14
- package/node_modules/es-toolkit/dist/_internal/globalThis.mjs +6 -10
- package/node_modules/es-toolkit/dist/_internal/isEqualsSameValueZero.d.mts +3 -2
- package/node_modules/es-toolkit/dist/_internal/isEqualsSameValueZero.d.ts +3 -2
- package/node_modules/es-toolkit/dist/_internal/isEqualsSameValueZero.js +16 -6
- package/node_modules/es-toolkit/dist/_internal/isEqualsSameValueZero.mjs +16 -2
- package/node_modules/es-toolkit/dist/_internal/isUnsafeProperty.js +13 -6
- package/node_modules/es-toolkit/dist/_internal/isUnsafeProperty.mjs +13 -2
- package/node_modules/es-toolkit/dist/_virtual/_rolldown/runtime.js +13 -0
- package/node_modules/es-toolkit/dist/_virtual/_rolldown/runtime.mjs +13 -0
- package/node_modules/es-toolkit/dist/array/at.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/at.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/at.js +26 -16
- package/node_modules/es-toolkit/dist/array/at.mjs +26 -12
- package/node_modules/es-toolkit/dist/array/cartesianProduct.d.mts +75 -0
- package/node_modules/es-toolkit/dist/array/cartesianProduct.d.ts +75 -0
- package/node_modules/es-toolkit/dist/array/cartesianProduct.js +23 -0
- package/node_modules/es-toolkit/dist/array/cartesianProduct.mjs +23 -0
- package/node_modules/es-toolkit/dist/array/chunk.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/chunk.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/chunk.js +34 -16
- package/node_modules/es-toolkit/dist/array/chunk.mjs +34 -12
- package/node_modules/es-toolkit/dist/array/chunkBy.d.mts +32 -0
- package/node_modules/es-toolkit/dist/array/chunkBy.d.ts +32 -0
- package/node_modules/es-toolkit/dist/array/chunkBy.js +42 -0
- package/node_modules/es-toolkit/dist/array/chunkBy.mjs +42 -0
- package/node_modules/es-toolkit/dist/array/combinations.d.mts +35 -0
- package/node_modules/es-toolkit/dist/array/combinations.d.ts +35 -0
- package/node_modules/es-toolkit/dist/array/combinations.js +53 -0
- package/node_modules/es-toolkit/dist/array/combinations.mjs +53 -0
- package/node_modules/es-toolkit/dist/array/compact.d.mts +5 -4
- package/node_modules/es-toolkit/dist/array/compact.d.ts +5 -4
- package/node_modules/es-toolkit/dist/array/compact.js +19 -13
- package/node_modules/es-toolkit/dist/array/compact.mjs +19 -9
- package/node_modules/es-toolkit/dist/array/countBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/countBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/countBy.js +42 -12
- package/node_modules/es-toolkit/dist/array/countBy.mjs +42 -8
- package/node_modules/es-toolkit/dist/array/difference.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/difference.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/difference.js +26 -7
- package/node_modules/es-toolkit/dist/array/difference.mjs +26 -3
- package/node_modules/es-toolkit/dist/array/differenceBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/differenceBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/differenceBy.js +38 -9
- package/node_modules/es-toolkit/dist/array/differenceBy.mjs +38 -5
- package/node_modules/es-toolkit/dist/array/differenceWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/differenceWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/differenceWith.js +35 -10
- package/node_modules/es-toolkit/dist/array/differenceWith.mjs +35 -6
- package/node_modules/es-toolkit/dist/array/drop.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/drop.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/drop.js +20 -7
- package/node_modules/es-toolkit/dist/array/drop.mjs +20 -3
- package/node_modules/es-toolkit/dist/array/dropRight.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/dropRight.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/dropRight.js +21 -10
- package/node_modules/es-toolkit/dist/array/dropRight.mjs +21 -6
- package/node_modules/es-toolkit/dist/array/dropRightWhile.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/dropRightWhile.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/dropRightWhile.js +22 -11
- package/node_modules/es-toolkit/dist/array/dropRightWhile.mjs +22 -7
- package/node_modules/es-toolkit/dist/array/dropWhile.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/dropWhile.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/dropWhile.js +23 -10
- package/node_modules/es-toolkit/dist/array/dropWhile.mjs +23 -6
- package/node_modules/es-toolkit/dist/array/fill.d.mts +15 -14
- package/node_modules/es-toolkit/dist/array/fill.d.ts +15 -14
- package/node_modules/es-toolkit/dist/array/fill.js +35 -12
- package/node_modules/es-toolkit/dist/array/fill.mjs +35 -8
- package/node_modules/es-toolkit/dist/array/filterAsync.d.mts +9 -8
- package/node_modules/es-toolkit/dist/array/filterAsync.d.ts +9 -8
- package/node_modules/es-toolkit/dist/array/filterAsync.js +35 -12
- package/node_modules/es-toolkit/dist/array/filterAsync.mjs +35 -8
- package/node_modules/es-toolkit/dist/array/flatMap.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/flatMap.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/flatMap.js +24 -8
- package/node_modules/es-toolkit/dist/array/flatMap.mjs +24 -4
- package/node_modules/es-toolkit/dist/array/flatMapAsync.d.mts +9 -8
- package/node_modules/es-toolkit/dist/array/flatMapAsync.d.ts +9 -8
- package/node_modules/es-toolkit/dist/array/flatMapAsync.js +38 -13
- package/node_modules/es-toolkit/dist/array/flatMapAsync.mjs +37 -9
- package/node_modules/es-toolkit/dist/array/flatMapDeep.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/flatMapDeep.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/flatMapDeep.js +17 -8
- package/node_modules/es-toolkit/dist/array/flatMapDeep.mjs +17 -4
- package/node_modules/es-toolkit/dist/array/flatten.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/flatten.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/flatten.js +29 -20
- package/node_modules/es-toolkit/dist/array/flatten.mjs +29 -16
- package/node_modules/es-toolkit/dist/array/flattenDeep.d.mts +5 -4
- package/node_modules/es-toolkit/dist/array/flattenDeep.d.ts +5 -4
- package/node_modules/es-toolkit/dist/array/flattenDeep.js +15 -8
- package/node_modules/es-toolkit/dist/array/flattenDeep.mjs +15 -4
- package/node_modules/es-toolkit/dist/array/forEachAsync.d.mts +9 -8
- package/node_modules/es-toolkit/dist/array/forEachAsync.d.ts +9 -8
- package/node_modules/es-toolkit/dist/array/forEachAsync.js +34 -11
- package/node_modules/es-toolkit/dist/array/forEachAsync.mjs +34 -7
- package/node_modules/es-toolkit/dist/array/forEachRight.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/forEachRight.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/forEachRight.js +28 -9
- package/node_modules/es-toolkit/dist/array/forEachRight.mjs +28 -5
- package/node_modules/es-toolkit/dist/array/groupBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/groupBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/groupBy.js +48 -15
- package/node_modules/es-toolkit/dist/array/groupBy.mjs +48 -11
- package/node_modules/es-toolkit/dist/array/head.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/head.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/head.js +18 -6
- package/node_modules/es-toolkit/dist/array/head.mjs +18 -2
- package/node_modules/es-toolkit/dist/array/index.d.mts +70 -66
- package/node_modules/es-toolkit/dist/array/index.d.ts +70 -66
- package/node_modules/es-toolkit/dist/array/index.js +139 -139
- package/node_modules/es-toolkit/dist/array/index.mjs +70 -66
- package/node_modules/es-toolkit/dist/array/initial.d.mts +10 -9
- package/node_modules/es-toolkit/dist/array/initial.d.ts +10 -9
- package/node_modules/es-toolkit/dist/array/initial.js +16 -6
- package/node_modules/es-toolkit/dist/array/initial.mjs +16 -2
- package/node_modules/es-toolkit/dist/array/intersection.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/intersection.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/intersection.js +22 -7
- package/node_modules/es-toolkit/dist/array/intersection.mjs +22 -3
- package/node_modules/es-toolkit/dist/array/intersectionBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/intersectionBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/intersectionBy.js +46 -16
- package/node_modules/es-toolkit/dist/array/intersectionBy.mjs +46 -12
- package/node_modules/es-toolkit/dist/array/intersectionWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/intersectionWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/intersectionWith.js +41 -10
- package/node_modules/es-toolkit/dist/array/intersectionWith.mjs +41 -6
- package/node_modules/es-toolkit/dist/array/isSubset.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/isSubset.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/isSubset.js +27 -8
- package/node_modules/es-toolkit/dist/array/isSubset.mjs +27 -4
- package/node_modules/es-toolkit/dist/array/isSubsetWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/isSubsetWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/isSubsetWith.js +34 -8
- package/node_modules/es-toolkit/dist/array/isSubsetWith.mjs +34 -4
- package/node_modules/es-toolkit/dist/array/keyBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/keyBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/keyBy.js +42 -12
- package/node_modules/es-toolkit/dist/array/keyBy.mjs +42 -8
- package/node_modules/es-toolkit/dist/array/last.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/last.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/last.js +25 -6
- package/node_modules/es-toolkit/dist/array/last.mjs +25 -2
- package/node_modules/es-toolkit/dist/array/limitAsync.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/limitAsync.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/limitAsync.js +43 -17
- package/node_modules/es-toolkit/dist/array/limitAsync.mjs +43 -13
- package/node_modules/es-toolkit/dist/array/mapAsync.d.mts +9 -8
- package/node_modules/es-toolkit/dist/array/mapAsync.d.ts +9 -8
- package/node_modules/es-toolkit/dist/array/mapAsync.js +33 -11
- package/node_modules/es-toolkit/dist/array/mapAsync.mjs +33 -7
- package/node_modules/es-toolkit/dist/array/maxBy.d.mts +11 -8
- package/node_modules/es-toolkit/dist/array/maxBy.d.ts +11 -8
- package/node_modules/es-toolkit/dist/array/maxBy.js +37 -19
- package/node_modules/es-toolkit/dist/array/maxBy.mjs +37 -15
- package/node_modules/es-toolkit/dist/array/minBy.d.mts +11 -8
- package/node_modules/es-toolkit/dist/array/minBy.d.ts +11 -8
- package/node_modules/es-toolkit/dist/array/minBy.js +37 -19
- package/node_modules/es-toolkit/dist/array/minBy.mjs +37 -15
- package/node_modules/es-toolkit/dist/array/orderBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/orderBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/orderBy.js +50 -22
- package/node_modules/es-toolkit/dist/array/orderBy.mjs +48 -18
- package/node_modules/es-toolkit/dist/array/partition.d.mts +9 -8
- package/node_modules/es-toolkit/dist/array/partition.d.ts +9 -8
- package/node_modules/es-toolkit/dist/array/partition.js +10 -17
- package/node_modules/es-toolkit/dist/array/partition.mjs +10 -13
- package/node_modules/es-toolkit/dist/array/pull.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/pull.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/pull.js +30 -19
- package/node_modules/es-toolkit/dist/array/pull.mjs +30 -15
- package/node_modules/es-toolkit/dist/array/pullAt.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/pullAt.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/pullAt.js +23 -13
- package/node_modules/es-toolkit/dist/array/pullAt.mjs +23 -9
- package/node_modules/es-toolkit/dist/array/reduceAsync.d.mts +10 -9
- package/node_modules/es-toolkit/dist/array/reduceAsync.d.ts +10 -9
- package/node_modules/es-toolkit/dist/array/reduceAsync.js +10 -15
- package/node_modules/es-toolkit/dist/array/reduceAsync.mjs +10 -11
- package/node_modules/es-toolkit/dist/array/remove.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/remove.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/remove.js +34 -21
- package/node_modules/es-toolkit/dist/array/remove.mjs +34 -17
- package/node_modules/es-toolkit/dist/array/sample.d.mts +5 -4
- package/node_modules/es-toolkit/dist/array/sample.d.ts +5 -4
- package/node_modules/es-toolkit/dist/array/sample.js +17 -7
- package/node_modules/es-toolkit/dist/array/sample.mjs +17 -3
- package/node_modules/es-toolkit/dist/array/sampleSize.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/sampleSize.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/sampleSize.js +31 -21
- package/node_modules/es-toolkit/dist/array/sampleSize.mjs +31 -17
- package/node_modules/es-toolkit/dist/array/shuffle.d.mts +5 -4
- package/node_modules/es-toolkit/dist/array/shuffle.d.ts +5 -4
- package/node_modules/es-toolkit/dist/array/shuffle.js +25 -11
- package/node_modules/es-toolkit/dist/array/shuffle.mjs +25 -7
- package/node_modules/es-toolkit/dist/array/sortBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/sortBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/sortBy.js +36 -8
- package/node_modules/es-toolkit/dist/array/sortBy.mjs +36 -4
- package/node_modules/es-toolkit/dist/array/tail.d.mts +11 -10
- package/node_modules/es-toolkit/dist/array/tail.d.ts +11 -10
- package/node_modules/es-toolkit/dist/array/tail.js +27 -6
- package/node_modules/es-toolkit/dist/array/tail.mjs +27 -2
- package/node_modules/es-toolkit/dist/array/take.d.mts +7 -12
- package/node_modules/es-toolkit/dist/array/take.d.ts +7 -12
- package/node_modules/es-toolkit/dist/array/take.js +26 -10
- package/node_modules/es-toolkit/dist/array/take.mjs +26 -6
- package/node_modules/es-toolkit/dist/array/takeRight.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/takeRight.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/takeRight.js +26 -13
- package/node_modules/es-toolkit/dist/array/takeRight.mjs +26 -9
- package/node_modules/es-toolkit/dist/array/takeRightWhile.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/takeRightWhile.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/takeRightWhile.js +26 -11
- package/node_modules/es-toolkit/dist/array/takeRightWhile.mjs +26 -7
- package/node_modules/es-toolkit/dist/array/takeWhile.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/takeWhile.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/takeWhile.js +32 -14
- package/node_modules/es-toolkit/dist/array/takeWhile.mjs +32 -10
- package/node_modules/es-toolkit/dist/array/toFilled.d.mts +15 -14
- package/node_modules/es-toolkit/dist/array/toFilled.d.ts +15 -14
- package/node_modules/es-toolkit/dist/array/toFilled.js +20 -13
- package/node_modules/es-toolkit/dist/array/toFilled.mjs +20 -9
- package/node_modules/es-toolkit/dist/array/union.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/union.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/union.js +21 -8
- package/node_modules/es-toolkit/dist/array/union.mjs +21 -4
- package/node_modules/es-toolkit/dist/array/unionBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/unionBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/unionBy.js +26 -8
- package/node_modules/es-toolkit/dist/array/unionBy.mjs +26 -4
- package/node_modules/es-toolkit/dist/array/unionWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/unionWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/unionWith.js +24 -8
- package/node_modules/es-toolkit/dist/array/unionWith.mjs +24 -4
- package/node_modules/es-toolkit/dist/array/uniq.d.mts +5 -4
- package/node_modules/es-toolkit/dist/array/uniq.d.ts +5 -4
- package/node_modules/es-toolkit/dist/array/uniq.js +18 -6
- package/node_modules/es-toolkit/dist/array/uniq.mjs +18 -2
- package/node_modules/es-toolkit/dist/array/uniqBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/uniqBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/uniqBy.js +37 -14
- package/node_modules/es-toolkit/dist/array/uniqBy.mjs +37 -10
- package/node_modules/es-toolkit/dist/array/uniqWith.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/uniqWith.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/uniqWith.js +23 -14
- package/node_modules/es-toolkit/dist/array/uniqWith.mjs +23 -10
- package/node_modules/es-toolkit/dist/array/unzip.d.mts +6 -7
- package/node_modules/es-toolkit/dist/array/unzip.d.ts +6 -7
- package/node_modules/es-toolkit/dist/array/unzip.js +23 -19
- package/node_modules/es-toolkit/dist/array/unzip.mjs +23 -15
- package/node_modules/es-toolkit/dist/array/unzipWith.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/unzipWith.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/unzipWith.js +24 -15
- package/node_modules/es-toolkit/dist/array/unzipWith.mjs +24 -11
- package/node_modules/es-toolkit/dist/array/windowed.d.mts +21 -18
- package/node_modules/es-toolkit/dist/array/windowed.d.ts +21 -18
- package/node_modules/es-toolkit/dist/array/windowed.js +38 -17
- package/node_modules/es-toolkit/dist/array/windowed.mjs +38 -13
- package/node_modules/es-toolkit/dist/array/without.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/without.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/without.js +24 -8
- package/node_modules/es-toolkit/dist/array/without.mjs +24 -4
- package/node_modules/es-toolkit/dist/array/xor.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/xor.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/xor.js +23 -10
- package/node_modules/es-toolkit/dist/array/xor.mjs +23 -6
- package/node_modules/es-toolkit/dist/array/xorBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/xorBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/xorBy.js +27 -12
- package/node_modules/es-toolkit/dist/array/xorBy.mjs +25 -8
- package/node_modules/es-toolkit/dist/array/xorWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/xorWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/xorWith.js +26 -12
- package/node_modules/es-toolkit/dist/array/xorWith.mjs +24 -8
- package/node_modules/es-toolkit/dist/array/zip.d.mts +19 -18
- package/node_modules/es-toolkit/dist/array/zip.d.ts +19 -18
- package/node_modules/es-toolkit/dist/array/zip.js +31 -21
- package/node_modules/es-toolkit/dist/array/zip.mjs +31 -17
- package/node_modules/es-toolkit/dist/array/zipObject.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/zipObject.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/zipObject.js +35 -10
- package/node_modules/es-toolkit/dist/array/zipObject.mjs +35 -6
- package/node_modules/es-toolkit/dist/array/zipWith.d.mts +21 -20
- package/node_modules/es-toolkit/dist/array/zipWith.d.ts +21 -20
- package/node_modules/es-toolkit/dist/array/zipWith.js +29 -14
- package/node_modules/es-toolkit/dist/array/zipWith.mjs +29 -10
- package/node_modules/es-toolkit/dist/browser.global.js +8 -1
- package/node_modules/es-toolkit/dist/compat/_internal/ArrayIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ArrayIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ConformsPredicateObject.d.mts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/ConformsPredicateObject.d.ts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/EmptyObjectOf.d.mts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/EmptyObjectOf.d.ts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/Equals.d.mts +4 -0
- package/node_modules/es-toolkit/dist/compat/_internal/Equals.d.ts +4 -0
- package/node_modules/es-toolkit/dist/compat/_internal/GetFieldType.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/GetFieldType.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/IsEqualCustomizer.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/IsEqualCustomizer.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/IsMatchWithCustomizer.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/IsMatchWithCustomizer.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/IsWritable.d.mts +6 -0
- package/node_modules/es-toolkit/dist/compat/_internal/IsWritable.d.ts +6 -0
- package/node_modules/es-toolkit/dist/compat/_internal/IterateeShorthand.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/IterateeShorthand.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ListIteratee.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ListIteratee.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ListIterateeCustom.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ListIterateeCustom.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ListIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ListIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ListIteratorTypeGuard.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ListIteratorTypeGuard.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ListOfRecursiveArraysOrValues.d.mts +5 -5
- package/node_modules/es-toolkit/dist/compat/_internal/ListOfRecursiveArraysOrValues.d.ts +5 -5
- package/node_modules/es-toolkit/dist/compat/_internal/MAX_ARRAY_LENGTH.js +3 -6
- package/node_modules/es-toolkit/dist/compat/_internal/MAX_ARRAY_LENGTH.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MAX_SAFE_INTEGER.js +2 -5
- package/node_modules/es-toolkit/dist/compat/_internal/MAX_SAFE_INTEGER.mjs +2 -1
- package/node_modules/es-toolkit/dist/compat/_internal/Many.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/Many.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MemoListIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MemoListIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MemoObjectIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MemoObjectIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MutableList.d.mts +7 -0
- package/node_modules/es-toolkit/dist/compat/_internal/MutableList.d.ts +7 -0
- package/node_modules/es-toolkit/dist/compat/_internal/ObjectIteratee.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/_internal/ObjectIteratee.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/_internal/ObjectIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ObjectIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/PartialShallow.d.mts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/PartialShallow.d.ts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/PropertyPath.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/PropertyPath.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/RecursiveArray.d.mts +4 -4
- package/node_modules/es-toolkit/dist/compat/_internal/RecursiveArray.d.ts +4 -4
- package/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.mts +7 -0
- package/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.ts +7 -0
- package/node_modules/es-toolkit/dist/compat/_internal/StringIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/StringIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/TupleIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/TupleIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIteratee.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIteratee.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIterateeCustom.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIterateeCustom.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIteratorTypeGuard.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIteratorTypeGuard.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIteratee.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIteratee.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIterateeTypeGuard.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIterateeTypeGuard.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/assignValue.js +6 -11
- package/node_modules/es-toolkit/dist/compat/_internal/assignValue.mjs +6 -7
- package/node_modules/es-toolkit/dist/compat/_internal/compareValues.js +17 -32
- package/node_modules/es-toolkit/dist/compat/_internal/compareValues.mjs +17 -28
- package/node_modules/es-toolkit/dist/compat/_internal/copyArray.js +15 -12
- package/node_modules/es-toolkit/dist/compat/_internal/copyArray.mjs +14 -9
- package/node_modules/es-toolkit/dist/compat/_internal/decimalAdjust.js +13 -20
- package/node_modules/es-toolkit/dist/compat/_internal/decimalAdjust.mjs +13 -16
- package/node_modules/es-toolkit/dist/compat/_internal/flattenArrayLike.js +10 -18
- package/node_modules/es-toolkit/dist/compat/_internal/flattenArrayLike.mjs +10 -14
- package/node_modules/es-toolkit/dist/compat/_internal/getSymbols.js +3 -6
- package/node_modules/es-toolkit/dist/compat/_internal/getSymbols.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/getSymbolsIn.js +9 -13
- package/node_modules/es-toolkit/dist/compat/_internal/getSymbolsIn.mjs +9 -9
- package/node_modules/es-toolkit/dist/compat/_internal/getTag.js +11 -9
- package/node_modules/es-toolkit/dist/compat/_internal/getTag.mjs +11 -5
- package/node_modules/es-toolkit/dist/compat/_internal/isDeepKey.js +24 -14
- package/node_modules/es-toolkit/dist/compat/_internal/isDeepKey.mjs +24 -10
- package/node_modules/es-toolkit/dist/compat/_internal/isIndex.js +7 -16
- package/node_modules/es-toolkit/dist/compat/_internal/isIndex.mjs +7 -12
- package/node_modules/es-toolkit/dist/compat/_internal/isIterateeCall.js +10 -18
- package/node_modules/es-toolkit/dist/compat/_internal/isIterateeCall.mjs +10 -14
- package/node_modules/es-toolkit/dist/compat/_internal/isKey.js +21 -15
- package/node_modules/es-toolkit/dist/compat/_internal/isKey.mjs +21 -11
- package/node_modules/es-toolkit/dist/compat/_internal/isPrototype.js +4 -8
- package/node_modules/es-toolkit/dist/compat/_internal/isPrototype.mjs +4 -4
- package/node_modules/es-toolkit/dist/compat/_internal/mapToEntries.js +7 -12
- package/node_modules/es-toolkit/dist/compat/_internal/mapToEntries.mjs +7 -8
- package/node_modules/es-toolkit/dist/compat/_internal/normalizeForCase.js +5 -11
- package/node_modules/es-toolkit/dist/compat/_internal/normalizeForCase.mjs +5 -7
- package/node_modules/es-toolkit/dist/compat/_internal/setToEntries.js +9 -12
- package/node_modules/es-toolkit/dist/compat/_internal/setToEntries.mjs +9 -8
- package/node_modules/es-toolkit/dist/compat/_internal/tags.js +28 -31
- package/node_modules/es-toolkit/dist/compat/_internal/tags.mjs +28 -27
- package/node_modules/es-toolkit/dist/compat/_internal/toArray.js +3 -6
- package/node_modules/es-toolkit/dist/compat/_internal/toArray.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/toKey.js +12 -12
- package/node_modules/es-toolkit/dist/compat/_internal/toKey.mjs +12 -8
- package/node_modules/es-toolkit/dist/compat/array/castArray.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/castArray.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/castArray.js +30 -9
- package/node_modules/es-toolkit/dist/compat/array/castArray.mjs +30 -5
- package/node_modules/es-toolkit/dist/compat/array/chunk.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/chunk.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/chunk.js +32 -14
- package/node_modules/es-toolkit/dist/compat/array/chunk.mjs +32 -10
- package/node_modules/es-toolkit/dist/compat/array/compact.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/compact.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/compact.js +17 -12
- package/node_modules/es-toolkit/dist/compat/array/compact.mjs +17 -8
- package/node_modules/es-toolkit/dist/compat/array/concat.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/concat.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/concat.js +31 -8
- package/node_modules/es-toolkit/dist/compat/array/concat.mjs +31 -4
- package/node_modules/es-toolkit/dist/compat/array/countBy.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/array/countBy.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/array/countBy.js +14 -20
- package/node_modules/es-toolkit/dist/compat/array/countBy.mjs +14 -16
- package/node_modules/es-toolkit/dist/compat/array/difference.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/difference.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/difference.js +37 -21
- package/node_modules/es-toolkit/dist/compat/array/difference.mjs +37 -17
- package/node_modules/es-toolkit/dist/compat/array/differenceBy.d.mts +45 -44
- package/node_modules/es-toolkit/dist/compat/array/differenceBy.d.ts +45 -44
- package/node_modules/es-toolkit/dist/compat/array/differenceBy.js +22 -22
- package/node_modules/es-toolkit/dist/compat/array/differenceBy.mjs +22 -18
- package/node_modules/es-toolkit/dist/compat/array/differenceWith.d.mts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/differenceWith.d.ts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/differenceWith.js +39 -20
- package/node_modules/es-toolkit/dist/compat/array/differenceWith.mjs +39 -16
- package/node_modules/es-toolkit/dist/compat/array/drop.d.mts +7 -7
- package/node_modules/es-toolkit/dist/compat/array/drop.d.ts +7 -7
- package/node_modules/es-toolkit/dist/compat/array/drop.js +10 -16
- package/node_modules/es-toolkit/dist/compat/array/drop.mjs +10 -12
- package/node_modules/es-toolkit/dist/compat/array/dropRight.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/dropRight.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/dropRight.js +26 -15
- package/node_modules/es-toolkit/dist/compat/array/dropRight.mjs +26 -11
- package/node_modules/es-toolkit/dist/compat/array/dropRightWhile.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/dropRightWhile.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/dropRightWhile.js +41 -37
- package/node_modules/es-toolkit/dist/compat/array/dropRightWhile.mjs +41 -33
- package/node_modules/es-toolkit/dist/compat/array/dropWhile.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/dropWhile.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/dropWhile.js +46 -38
- package/node_modules/es-toolkit/dist/compat/array/dropWhile.mjs +46 -34
- package/node_modules/es-toolkit/dist/compat/array/each.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/each.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/each.js +1 -0
- package/node_modules/es-toolkit/dist/compat/array/each.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/array/eachRight.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/eachRight.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/eachRight.js +1 -0
- package/node_modules/es-toolkit/dist/compat/array/eachRight.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/array/every.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/every.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/every.js +55 -61
- package/node_modules/es-toolkit/dist/compat/array/every.mjs +55 -57
- package/node_modules/es-toolkit/dist/compat/array/fill.d.mts +21 -20
- package/node_modules/es-toolkit/dist/compat/array/fill.d.ts +21 -20
- package/node_modules/es-toolkit/dist/compat/array/fill.js +39 -24
- package/node_modules/es-toolkit/dist/compat/array/fill.mjs +39 -20
- package/node_modules/es-toolkit/dist/compat/array/filter.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/filter.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/filter.js +48 -36
- package/node_modules/es-toolkit/dist/compat/array/filter.mjs +47 -31
- package/node_modules/es-toolkit/dist/compat/array/find.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/find.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/find.js +33 -28
- package/node_modules/es-toolkit/dist/compat/array/find.mjs +32 -23
- package/node_modules/es-toolkit/dist/compat/array/findIndex.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/findIndex.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/findIndex.js +43 -42
- package/node_modules/es-toolkit/dist/compat/array/findIndex.mjs +42 -37
- package/node_modules/es-toolkit/dist/compat/array/findLast.d.mts +23 -22
- package/node_modules/es-toolkit/dist/compat/array/findLast.d.ts +23 -22
- package/node_modules/es-toolkit/dist/compat/array/findLast.js +37 -34
- package/node_modules/es-toolkit/dist/compat/array/findLast.mjs +36 -29
- package/node_modules/es-toolkit/dist/compat/array/findLastIndex.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/findLastIndex.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/findLastIndex.js +37 -42
- package/node_modules/es-toolkit/dist/compat/array/findLastIndex.mjs +36 -37
- package/node_modules/es-toolkit/dist/compat/array/first.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/first.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/first.js +1 -0
- package/node_modules/es-toolkit/dist/compat/array/first.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/array/flatMap.d.mts +22 -21
- package/node_modules/es-toolkit/dist/compat/array/flatMap.d.ts +22 -21
- package/node_modules/es-toolkit/dist/compat/array/flatMap.js +20 -14
- package/node_modules/es-toolkit/dist/compat/array/flatMap.mjs +19 -10
- package/node_modules/es-toolkit/dist/compat/array/flatMapDeep.d.mts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/flatMapDeep.d.ts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/flatMapDeep.js +16 -8
- package/node_modules/es-toolkit/dist/compat/array/flatMapDeep.mjs +16 -4
- package/node_modules/es-toolkit/dist/compat/array/flatMapDepth.d.mts +24 -23
- package/node_modules/es-toolkit/dist/compat/array/flatMapDepth.d.ts +24 -23
- package/node_modules/es-toolkit/dist/compat/array/flatMapDepth.js +24 -17
- package/node_modules/es-toolkit/dist/compat/array/flatMapDepth.mjs +21 -12
- package/node_modules/es-toolkit/dist/compat/array/flatten.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/flatten.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/flatten.js +16 -33
- package/node_modules/es-toolkit/dist/compat/array/flatten.mjs +16 -29
- package/node_modules/es-toolkit/dist/compat/array/flattenDeep.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/flattenDeep.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/flattenDeep.js +15 -8
- package/node_modules/es-toolkit/dist/compat/array/flattenDeep.mjs +15 -4
- package/node_modules/es-toolkit/dist/compat/array/flattenDepth.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/flattenDepth.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/flattenDepth.js +21 -8
- package/node_modules/es-toolkit/dist/compat/array/flattenDepth.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/array/forEach.d.mts +31 -30
- package/node_modules/es-toolkit/dist/compat/array/forEach.d.ts +31 -30
- package/node_modules/es-toolkit/dist/compat/array/forEach.js +32 -23
- package/node_modules/es-toolkit/dist/compat/array/forEach.mjs +31 -18
- package/node_modules/es-toolkit/dist/compat/array/forEachRight.d.mts +31 -30
- package/node_modules/es-toolkit/dist/compat/array/forEachRight.d.ts +31 -30
- package/node_modules/es-toolkit/dist/compat/array/forEachRight.js +32 -23
- package/node_modules/es-toolkit/dist/compat/array/forEachRight.mjs +31 -18
- package/node_modules/es-toolkit/dist/compat/array/groupBy.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/array/groupBy.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/array/groupBy.js +40 -16
- package/node_modules/es-toolkit/dist/compat/array/groupBy.mjs +38 -12
- package/node_modules/es-toolkit/dist/compat/array/head.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/head.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/head.js +22 -13
- package/node_modules/es-toolkit/dist/compat/array/head.mjs +22 -9
- package/node_modules/es-toolkit/dist/compat/array/includes.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/array/includes.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/array/includes.js +38 -41
- package/node_modules/es-toolkit/dist/compat/array/includes.mjs +35 -37
- package/node_modules/es-toolkit/dist/compat/array/indexOf.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/indexOf.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/indexOf.js +28 -23
- package/node_modules/es-toolkit/dist/compat/array/indexOf.mjs +28 -19
- package/node_modules/es-toolkit/dist/compat/array/initial.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/initial.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/initial.js +19 -12
- package/node_modules/es-toolkit/dist/compat/array/initial.mjs +19 -8
- package/node_modules/es-toolkit/dist/compat/array/intersection.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/intersection.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/intersection.js +31 -24
- package/node_modules/es-toolkit/dist/compat/array/intersection.mjs +31 -20
- package/node_modules/es-toolkit/dist/compat/array/intersectionBy.d.mts +23 -22
- package/node_modules/es-toolkit/dist/compat/array/intersectionBy.d.ts +23 -22
- package/node_modules/es-toolkit/dist/compat/array/intersectionBy.js +49 -37
- package/node_modules/es-toolkit/dist/compat/array/intersectionBy.mjs +49 -33
- package/node_modules/es-toolkit/dist/compat/array/intersectionWith.d.mts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/intersectionWith.d.ts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/intersectionWith.js +49 -41
- package/node_modules/es-toolkit/dist/compat/array/intersectionWith.mjs +49 -37
- package/node_modules/es-toolkit/dist/compat/array/invokeMap.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/invokeMap.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/invokeMap.js +41 -38
- package/node_modules/es-toolkit/dist/compat/array/invokeMap.mjs +38 -34
- package/node_modules/es-toolkit/dist/compat/array/join.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/join.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/join.js +17 -11
- package/node_modules/es-toolkit/dist/compat/array/join.mjs +17 -7
- package/node_modules/es-toolkit/dist/compat/array/keyBy.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/array/keyBy.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/array/keyBy.js +41 -20
- package/node_modules/es-toolkit/dist/compat/array/keyBy.mjs +41 -16
- package/node_modules/es-toolkit/dist/compat/array/last.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/last.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/last.js +29 -13
- package/node_modules/es-toolkit/dist/compat/array/last.mjs +29 -9
- package/node_modules/es-toolkit/dist/compat/array/lastIndexOf.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/lastIndexOf.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/lastIndexOf.js +11 -23
- package/node_modules/es-toolkit/dist/compat/array/lastIndexOf.mjs +11 -19
- package/node_modules/es-toolkit/dist/compat/array/map.d.mts +31 -32
- package/node_modules/es-toolkit/dist/compat/array/map.d.ts +31 -32
- package/node_modules/es-toolkit/dist/compat/array/map.js +16 -22
- package/node_modules/es-toolkit/dist/compat/array/map.mjs +16 -18
- package/node_modules/es-toolkit/dist/compat/array/nth.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/nth.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/nth.js +19 -16
- package/node_modules/es-toolkit/dist/compat/array/nth.mjs +19 -12
- package/node_modules/es-toolkit/dist/compat/array/orderBy.d.mts +25 -23
- package/node_modules/es-toolkit/dist/compat/array/orderBy.d.ts +25 -23
- package/node_modules/es-toolkit/dist/compat/array/orderBy.js +77 -79
- package/node_modules/es-toolkit/dist/compat/array/orderBy.mjs +77 -75
- package/node_modules/es-toolkit/dist/compat/array/partition.d.mts +14 -13
- package/node_modules/es-toolkit/dist/compat/array/partition.d.ts +14 -13
- package/node_modules/es-toolkit/dist/compat/array/partition.js +40 -27
- package/node_modules/es-toolkit/dist/compat/array/partition.mjs +39 -22
- package/node_modules/es-toolkit/dist/compat/array/pull.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/pull.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/pull.js +20 -8
- package/node_modules/es-toolkit/dist/compat/array/pull.mjs +20 -4
- package/node_modules/es-toolkit/dist/compat/array/pullAll.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/pullAll.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/pullAll.js +20 -8
- package/node_modules/es-toolkit/dist/compat/array/pullAll.mjs +20 -4
- package/node_modules/es-toolkit/dist/compat/array/pullAllBy.d.mts +22 -21
- package/node_modules/es-toolkit/dist/compat/array/pullAllBy.d.ts +22 -21
- package/node_modules/es-toolkit/dist/compat/array/pullAllBy.js +40 -23
- package/node_modules/es-toolkit/dist/compat/array/pullAllBy.mjs +40 -19
- package/node_modules/es-toolkit/dist/compat/array/pullAllWith.d.mts +21 -20
- package/node_modules/es-toolkit/dist/compat/array/pullAllWith.d.ts +21 -20
- package/node_modules/es-toolkit/dist/compat/array/pullAllWith.js +41 -34
- package/node_modules/es-toolkit/dist/compat/array/pullAllWith.mjs +41 -30
- package/node_modules/es-toolkit/dist/compat/array/pullAt.d.mts +12 -11
- package/node_modules/es-toolkit/dist/compat/array/pullAt.d.ts +12 -11
- package/node_modules/es-toolkit/dist/compat/array/pullAt.js +41 -35
- package/node_modules/es-toolkit/dist/compat/array/pullAt.mjs +40 -31
- package/node_modules/es-toolkit/dist/compat/array/reduce.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/array/reduce.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/array/reduce.js +52 -35
- package/node_modules/es-toolkit/dist/compat/array/reduce.mjs +51 -30
- package/node_modules/es-toolkit/dist/compat/array/reduceRight.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/array/reduceRight.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/array/reduceRight.js +52 -41
- package/node_modules/es-toolkit/dist/compat/array/reduceRight.mjs +51 -36
- package/node_modules/es-toolkit/dist/compat/array/reject.d.mts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/reject.d.ts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/reject.js +30 -12
- package/node_modules/es-toolkit/dist/compat/array/reject.mjs +29 -7
- package/node_modules/es-toolkit/dist/compat/array/remove.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/remove.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/remove.js +34 -11
- package/node_modules/es-toolkit/dist/compat/array/remove.mjs +33 -6
- package/node_modules/es-toolkit/dist/compat/array/reverse.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/reverse.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/reverse.js +25 -9
- package/node_modules/es-toolkit/dist/compat/array/reverse.mjs +25 -5
- package/node_modules/es-toolkit/dist/compat/array/sample.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sample.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sample.js +18 -16
- package/node_modules/es-toolkit/dist/compat/array/sample.mjs +18 -12
- package/node_modules/es-toolkit/dist/compat/array/sampleSize.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sampleSize.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sampleSize.js +28 -19
- package/node_modules/es-toolkit/dist/compat/array/sampleSize.mjs +28 -15
- package/node_modules/es-toolkit/dist/compat/array/shuffle.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/shuffle.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/shuffle.js +22 -25
- package/node_modules/es-toolkit/dist/compat/array/shuffle.mjs +22 -21
- package/node_modules/es-toolkit/dist/compat/array/size.d.mts +9 -4
- package/node_modules/es-toolkit/dist/compat/array/size.d.ts +9 -4
- package/node_modules/es-toolkit/dist/compat/array/size.js +8 -14
- package/node_modules/es-toolkit/dist/compat/array/size.mjs +8 -10
- package/node_modules/es-toolkit/dist/compat/array/slice.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/slice.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/slice.js +37 -40
- package/node_modules/es-toolkit/dist/compat/array/slice.mjs +37 -36
- package/node_modules/es-toolkit/dist/compat/array/some.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/some.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/some.js +87 -83
- package/node_modules/es-toolkit/dist/compat/array/some.mjs +87 -79
- package/node_modules/es-toolkit/dist/compat/array/sortBy.d.mts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/sortBy.d.ts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/sortBy.js +9 -17
- package/node_modules/es-toolkit/dist/compat/array/sortBy.mjs +9 -13
- package/node_modules/es-toolkit/dist/compat/array/sortedIndex.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sortedIndex.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sortedIndex.js +33 -32
- package/node_modules/es-toolkit/dist/compat/array/sortedIndex.mjs +33 -28
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.js +52 -61
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.mjs +51 -56
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.js +40 -16
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.mjs +40 -12
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.js +31 -32
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.mjs +31 -28
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.js +19 -8
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.mjs +19 -4
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.js +41 -16
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.mjs +41 -12
- package/node_modules/es-toolkit/dist/compat/array/tail.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/tail.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/tail.js +31 -13
- package/node_modules/es-toolkit/dist/compat/array/tail.mjs +31 -9
- package/node_modules/es-toolkit/dist/compat/array/take.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/take.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/take.js +32 -15
- package/node_modules/es-toolkit/dist/compat/array/take.mjs +32 -11
- package/node_modules/es-toolkit/dist/compat/array/takeRight.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/takeRight.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/takeRight.js +31 -15
- package/node_modules/es-toolkit/dist/compat/array/takeRight.mjs +31 -11
- package/node_modules/es-toolkit/dist/compat/array/takeRightWhile.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/takeRightWhile.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/takeRightWhile.js +56 -17
- package/node_modules/es-toolkit/dist/compat/array/takeRightWhile.mjs +56 -13
- package/node_modules/es-toolkit/dist/compat/array/takeWhile.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/takeWhile.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/takeWhile.js +56 -17
- package/node_modules/es-toolkit/dist/compat/array/takeWhile.mjs +56 -13
- package/node_modules/es-toolkit/dist/compat/array/union.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/union.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/union.js +35 -12
- package/node_modules/es-toolkit/dist/compat/array/union.mjs +33 -8
- package/node_modules/es-toolkit/dist/compat/array/unionBy.d.mts +29 -28
- package/node_modules/es-toolkit/dist/compat/array/unionBy.d.ts +29 -28
- package/node_modules/es-toolkit/dist/compat/array/unionBy.js +34 -19
- package/node_modules/es-toolkit/dist/compat/array/unionBy.mjs +34 -15
- package/node_modules/es-toolkit/dist/compat/array/unionWith.d.mts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/unionWith.d.ts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/unionWith.js +38 -17
- package/node_modules/es-toolkit/dist/compat/array/unionWith.mjs +38 -13
- package/node_modules/es-toolkit/dist/compat/array/uniq.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/uniq.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/uniq.js +21 -12
- package/node_modules/es-toolkit/dist/compat/array/uniq.mjs +21 -8
- package/node_modules/es-toolkit/dist/compat/array/uniqBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/uniqBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/uniqBy.js +10 -16
- package/node_modules/es-toolkit/dist/compat/array/uniqBy.mjs +9 -11
- package/node_modules/es-toolkit/dist/compat/array/uniqWith.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/uniqWith.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/uniqWith.js +31 -13
- package/node_modules/es-toolkit/dist/compat/array/uniqWith.mjs +31 -9
- package/node_modules/es-toolkit/dist/compat/array/unzip.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/unzip.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/unzip.js +22 -15
- package/node_modules/es-toolkit/dist/compat/array/unzip.mjs +22 -11
- package/node_modules/es-toolkit/dist/compat/array/unzipWith.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/unzipWith.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/unzipWith.js +30 -22
- package/node_modules/es-toolkit/dist/compat/array/unzipWith.mjs +30 -18
- package/node_modules/es-toolkit/dist/compat/array/without.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/without.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/without.js +26 -12
- package/node_modules/es-toolkit/dist/compat/array/without.mjs +26 -8
- package/node_modules/es-toolkit/dist/compat/array/xor.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/xor.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/xor.js +35 -31
- package/node_modules/es-toolkit/dist/compat/array/xor.mjs +35 -27
- package/node_modules/es-toolkit/dist/compat/array/xorBy.d.mts +16 -15
- package/node_modules/es-toolkit/dist/compat/array/xorBy.d.ts +16 -15
- package/node_modules/es-toolkit/dist/compat/array/xorBy.js +37 -24
- package/node_modules/es-toolkit/dist/compat/array/xorBy.mjs +35 -20
- package/node_modules/es-toolkit/dist/compat/array/xorWith.d.mts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/xorWith.d.ts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/xorWith.js +36 -22
- package/node_modules/es-toolkit/dist/compat/array/xorWith.mjs +34 -18
- package/node_modules/es-toolkit/dist/compat/array/zip.d.mts +43 -42
- package/node_modules/es-toolkit/dist/compat/array/zip.d.ts +43 -42
- package/node_modules/es-toolkit/dist/compat/array/zip.js +27 -12
- package/node_modules/es-toolkit/dist/compat/array/zip.mjs +27 -8
- package/node_modules/es-toolkit/dist/compat/array/zipObject.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/zipObject.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/zipObject.js +36 -12
- package/node_modules/es-toolkit/dist/compat/array/zipObject.mjs +36 -8
- package/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.js +47 -24
- package/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.mjs +47 -20
- package/node_modules/es-toolkit/dist/compat/array/zipWith.d.mts +30 -29
- package/node_modules/es-toolkit/dist/compat/array/zipWith.d.ts +30 -29
- package/node_modules/es-toolkit/dist/compat/array/zipWith.js +32 -21
- package/node_modules/es-toolkit/dist/compat/array/zipWith.mjs +32 -17
- package/node_modules/es-toolkit/dist/compat/compat.d.mts +298 -291
- package/node_modules/es-toolkit/dist/compat/compat.d.ts +298 -291
- package/node_modules/es-toolkit/dist/compat/compat.js +606 -595
- package/node_modules/es-toolkit/dist/compat/compat.mjs +601 -291
- package/node_modules/es-toolkit/dist/compat/function/after.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/after.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/after.js +29 -16
- package/node_modules/es-toolkit/dist/compat/function/after.mjs +29 -12
- package/node_modules/es-toolkit/dist/compat/function/ary.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/ary.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/ary.js +25 -14
- package/node_modules/es-toolkit/dist/compat/function/ary.mjs +25 -10
- package/node_modules/es-toolkit/dist/compat/function/attempt.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/attempt.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/attempt.js +37 -11
- package/node_modules/es-toolkit/dist/compat/function/attempt.mjs +37 -7
- package/node_modules/es-toolkit/dist/compat/function/before.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/before.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/before.js +34 -21
- package/node_modules/es-toolkit/dist/compat/function/before.mjs +34 -17
- package/node_modules/es-toolkit/dist/compat/function/bind.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/function/bind.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/function/bind.js +41 -28
- package/node_modules/es-toolkit/dist/compat/function/bind.mjs +41 -24
- package/node_modules/es-toolkit/dist/compat/function/bindKey.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/function/bindKey.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/function/bindKey.js +54 -28
- package/node_modules/es-toolkit/dist/compat/function/bindKey.mjs +54 -24
- package/node_modules/es-toolkit/dist/compat/function/curry.d.mts +84 -83
- package/node_modules/es-toolkit/dist/compat/function/curry.d.ts +84 -83
- package/node_modules/es-toolkit/dist/compat/function/curry.js +73 -53
- package/node_modules/es-toolkit/dist/compat/function/curry.mjs +73 -49
- package/node_modules/es-toolkit/dist/compat/function/curryRight.d.mts +66 -65
- package/node_modules/es-toolkit/dist/compat/function/curryRight.d.ts +66 -65
- package/node_modules/es-toolkit/dist/compat/function/curryRight.js +78 -60
- package/node_modules/es-toolkit/dist/compat/function/curryRight.mjs +78 -56
- package/node_modules/es-toolkit/dist/compat/function/debounce.d.mts +57 -56
- package/node_modules/es-toolkit/dist/compat/function/debounce.d.ts +57 -56
- package/node_modules/es-toolkit/dist/compat/function/debounce.js +35 -47
- package/node_modules/es-toolkit/dist/compat/function/debounce.mjs +35 -43
- package/node_modules/es-toolkit/dist/compat/function/defer.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/defer.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/defer.js +17 -9
- package/node_modules/es-toolkit/dist/compat/function/defer.mjs +17 -5
- package/node_modules/es-toolkit/dist/compat/function/delay.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/delay.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/delay.js +31 -11
- package/node_modules/es-toolkit/dist/compat/function/delay.mjs +31 -7
- package/node_modules/es-toolkit/dist/compat/function/flip.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/flip.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/flip.js +21 -8
- package/node_modules/es-toolkit/dist/compat/function/flip.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/function/flow.d.mts +12 -11
- package/node_modules/es-toolkit/dist/compat/function/flow.d.ts +12 -11
- package/node_modules/es-toolkit/dist/compat/function/flow.js +23 -13
- package/node_modules/es-toolkit/dist/compat/function/flow.mjs +23 -9
- package/node_modules/es-toolkit/dist/compat/function/flowRight.d.mts +12 -11
- package/node_modules/es-toolkit/dist/compat/function/flowRight.d.ts +12 -11
- package/node_modules/es-toolkit/dist/compat/function/flowRight.js +25 -13
- package/node_modules/es-toolkit/dist/compat/function/flowRight.mjs +25 -9
- package/node_modules/es-toolkit/dist/compat/function/identity.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/identity.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/identity.js +3 -6
- package/node_modules/es-toolkit/dist/compat/function/identity.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/function/memoize.d.mts +80 -79
- package/node_modules/es-toolkit/dist/compat/function/memoize.d.ts +80 -79
- package/node_modules/es-toolkit/dist/compat/function/memoize.js +24 -21
- package/node_modules/es-toolkit/dist/compat/function/memoize.mjs +24 -17
- package/node_modules/es-toolkit/dist/compat/function/negate.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/negate.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/negate.js +19 -11
- package/node_modules/es-toolkit/dist/compat/function/negate.mjs +19 -7
- package/node_modules/es-toolkit/dist/compat/function/noop.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/function/noop.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/function/noop.js +12 -6
- package/node_modules/es-toolkit/dist/compat/function/noop.mjs +12 -2
- package/node_modules/es-toolkit/dist/compat/function/nthArg.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/nthArg.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/nthArg.js +25 -10
- package/node_modules/es-toolkit/dist/compat/function/nthArg.mjs +25 -6
- package/node_modules/es-toolkit/dist/compat/function/once.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/function/once.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/function/once.js +4 -8
- package/node_modules/es-toolkit/dist/compat/function/once.mjs +4 -4
- package/node_modules/es-toolkit/dist/compat/function/overArgs.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/overArgs.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/overArgs.js +57 -21
- package/node_modules/es-toolkit/dist/compat/function/overArgs.mjs +57 -17
- package/node_modules/es-toolkit/dist/compat/function/partial.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/partial.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/partial.js +31 -9
- package/node_modules/es-toolkit/dist/compat/function/partial.mjs +31 -5
- package/node_modules/es-toolkit/dist/compat/function/partialRight.d.mts +143 -142
- package/node_modules/es-toolkit/dist/compat/function/partialRight.d.ts +143 -142
- package/node_modules/es-toolkit/dist/compat/function/partialRight.js +31 -9
- package/node_modules/es-toolkit/dist/compat/function/partialRight.mjs +31 -5
- package/node_modules/es-toolkit/dist/compat/function/rearg.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/rearg.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/rearg.js +23 -15
- package/node_modules/es-toolkit/dist/compat/function/rearg.mjs +23 -11
- package/node_modules/es-toolkit/dist/compat/function/rest.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/rest.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/rest.js +35 -12
- package/node_modules/es-toolkit/dist/compat/function/rest.mjs +35 -8
- package/node_modules/es-toolkit/dist/compat/function/spread.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/spread.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/spread.js +54 -17
- package/node_modules/es-toolkit/dist/compat/function/spread.mjs +54 -13
- package/node_modules/es-toolkit/dist/compat/function/throttle.d.mts +29 -28
- package/node_modules/es-toolkit/dist/compat/function/throttle.d.ts +29 -28
- package/node_modules/es-toolkit/dist/compat/function/throttle.js +39 -13
- package/node_modules/es-toolkit/dist/compat/function/throttle.mjs +39 -9
- package/node_modules/es-toolkit/dist/compat/function/unary.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/unary.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/unary.js +18 -8
- package/node_modules/es-toolkit/dist/compat/function/unary.mjs +18 -4
- package/node_modules/es-toolkit/dist/compat/function/wrap.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/wrap.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/wrap.js +31 -12
- package/node_modules/es-toolkit/dist/compat/function/wrap.mjs +31 -8
- package/node_modules/es-toolkit/dist/compat/index.d.mts +293 -292
- package/node_modules/es-toolkit/dist/compat/index.d.ts +293 -292
- package/node_modules/es-toolkit/dist/compat/index.js +595 -597
- package/node_modules/es-toolkit/dist/compat/index.mjs +294 -292
- package/node_modules/es-toolkit/dist/compat/math/add.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/add.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/add.js +29 -23
- package/node_modules/es-toolkit/dist/compat/math/add.mjs +29 -19
- package/node_modules/es-toolkit/dist/compat/math/ceil.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/ceil.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/ceil.js +16 -8
- package/node_modules/es-toolkit/dist/compat/math/ceil.mjs +16 -4
- package/node_modules/es-toolkit/dist/compat/math/clamp.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/math/clamp.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/math/clamp.js +33 -20
- package/node_modules/es-toolkit/dist/compat/math/clamp.mjs +33 -16
- package/node_modules/es-toolkit/dist/compat/math/divide.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/divide.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/divide.js +29 -23
- package/node_modules/es-toolkit/dist/compat/math/divide.mjs +29 -19
- package/node_modules/es-toolkit/dist/compat/math/floor.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/floor.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/floor.js +16 -8
- package/node_modules/es-toolkit/dist/compat/math/floor.mjs +16 -4
- package/node_modules/es-toolkit/dist/compat/math/inRange.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/inRange.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/inRange.js +25 -29
- package/node_modules/es-toolkit/dist/compat/math/inRange.mjs +25 -25
- package/node_modules/es-toolkit/dist/compat/math/max.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/max.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/max.js +17 -19
- package/node_modules/es-toolkit/dist/compat/math/max.mjs +17 -15
- package/node_modules/es-toolkit/dist/compat/math/maxBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/maxBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/maxBy.js +35 -13
- package/node_modules/es-toolkit/dist/compat/math/maxBy.mjs +35 -9
- package/node_modules/es-toolkit/dist/compat/math/mean.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/mean.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/mean.js +18 -9
- package/node_modules/es-toolkit/dist/compat/math/mean.mjs +18 -5
- package/node_modules/es-toolkit/dist/compat/math/meanBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/meanBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/meanBy.js +29 -13
- package/node_modules/es-toolkit/dist/compat/math/meanBy.mjs +29 -9
- package/node_modules/es-toolkit/dist/compat/math/min.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/min.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/min.js +17 -19
- package/node_modules/es-toolkit/dist/compat/math/min.mjs +17 -15
- package/node_modules/es-toolkit/dist/compat/math/minBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/minBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/minBy.js +35 -13
- package/node_modules/es-toolkit/dist/compat/math/minBy.mjs +35 -9
- package/node_modules/es-toolkit/dist/compat/math/multiply.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/multiply.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/multiply.js +29 -23
- package/node_modules/es-toolkit/dist/compat/math/multiply.mjs +29 -19
- package/node_modules/es-toolkit/dist/compat/math/parseInt.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/parseInt.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/parseInt.js +22 -9
- package/node_modules/es-toolkit/dist/compat/math/parseInt.mjs +22 -5
- package/node_modules/es-toolkit/dist/compat/math/random.d.mts +16 -15
- package/node_modules/es-toolkit/dist/compat/math/random.d.ts +16 -15
- package/node_modules/es-toolkit/dist/compat/math/random.js +55 -71
- package/node_modules/es-toolkit/dist/compat/math/random.mjs +55 -67
- package/node_modules/es-toolkit/dist/compat/math/range.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/math/range.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/math/range.js +34 -27
- package/node_modules/es-toolkit/dist/compat/math/range.mjs +34 -23
- package/node_modules/es-toolkit/dist/compat/math/rangeRight.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/math/rangeRight.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/math/rangeRight.js +35 -27
- package/node_modules/es-toolkit/dist/compat/math/rangeRight.mjs +35 -23
- package/node_modules/es-toolkit/dist/compat/math/round.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/round.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/round.js +16 -8
- package/node_modules/es-toolkit/dist/compat/math/round.mjs +16 -4
- package/node_modules/es-toolkit/dist/compat/math/subtract.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/subtract.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/subtract.js +28 -23
- package/node_modules/es-toolkit/dist/compat/math/subtract.mjs +28 -19
- package/node_modules/es-toolkit/dist/compat/math/sum.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/sum.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/sum.js +20 -8
- package/node_modules/es-toolkit/dist/compat/math/sum.mjs +20 -4
- package/node_modules/es-toolkit/dist/compat/math/sumBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/sumBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/sumBy.js +30 -26
- package/node_modules/es-toolkit/dist/compat/math/sumBy.mjs +30 -22
- package/node_modules/es-toolkit/dist/compat/object/assign.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/assign.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/assign.js +28 -19
- package/node_modules/es-toolkit/dist/compat/object/assign.mjs +28 -15
- package/node_modules/es-toolkit/dist/compat/object/assignIn.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/assignIn.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/assignIn.js +28 -19
- package/node_modules/es-toolkit/dist/compat/object/assignIn.mjs +28 -15
- package/node_modules/es-toolkit/dist/compat/object/assignInWith.d.mts +30 -29
- package/node_modules/es-toolkit/dist/compat/object/assignInWith.d.ts +30 -29
- package/node_modules/es-toolkit/dist/compat/object/assignInWith.js +43 -29
- package/node_modules/es-toolkit/dist/compat/object/assignInWith.mjs +43 -25
- package/node_modules/es-toolkit/dist/compat/object/assignWith.d.mts +30 -29
- package/node_modules/es-toolkit/dist/compat/object/assignWith.d.ts +30 -29
- package/node_modules/es-toolkit/dist/compat/object/assignWith.js +43 -29
- package/node_modules/es-toolkit/dist/compat/object/assignWith.mjs +43 -25
- package/node_modules/es-toolkit/dist/compat/object/at.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/at.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/at.js +34 -28
- package/node_modules/es-toolkit/dist/compat/object/at.mjs +34 -24
- package/node_modules/es-toolkit/dist/compat/object/clone.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/clone.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/clone.js +143 -151
- package/node_modules/es-toolkit/dist/compat/object/clone.mjs +143 -147
- package/node_modules/es-toolkit/dist/compat/object/cloneDeep.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/cloneDeep.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/cloneDeep.js +50 -8
- package/node_modules/es-toolkit/dist/compat/object/cloneDeep.mjs +50 -4
- package/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.js +68 -43
- package/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.mjs +68 -39
- package/node_modules/es-toolkit/dist/compat/object/cloneWith.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/cloneWith.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/cloneWith.js +52 -15
- package/node_modules/es-toolkit/dist/compat/object/cloneWith.mjs +52 -11
- package/node_modules/es-toolkit/dist/compat/object/create.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/create.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/create.js +28 -19
- package/node_modules/es-toolkit/dist/compat/object/create.mjs +28 -15
- package/node_modules/es-toolkit/dist/compat/object/defaults.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/defaults.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/defaults.js +44 -32
- package/node_modules/es-toolkit/dist/compat/object/defaults.mjs +44 -28
- package/node_modules/es-toolkit/dist/compat/object/defaultsDeep.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/defaultsDeep.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/defaultsDeep.js +59 -55
- package/node_modules/es-toolkit/dist/compat/object/defaultsDeep.mjs +59 -51
- package/node_modules/es-toolkit/dist/compat/object/extend.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extend.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extend.js +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extend.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extendWith.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extendWith.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extendWith.js +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extendWith.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/object/findKey.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/findKey.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/findKey.js +21 -15
- package/node_modules/es-toolkit/dist/compat/object/findKey.mjs +20 -11
- package/node_modules/es-toolkit/dist/compat/object/findLastKey.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/findLastKey.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/findLastKey.js +20 -15
- package/node_modules/es-toolkit/dist/compat/object/findLastKey.mjs +20 -11
- package/node_modules/es-toolkit/dist/compat/object/forIn.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/forIn.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/forIn.js +34 -18
- package/node_modules/es-toolkit/dist/compat/object/forIn.mjs +33 -13
- package/node_modules/es-toolkit/dist/compat/object/forInRight.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/forInRight.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/forInRight.js +39 -23
- package/node_modules/es-toolkit/dist/compat/object/forInRight.mjs +38 -18
- package/node_modules/es-toolkit/dist/compat/object/forOwn.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/forOwn.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/forOwn.js +38 -21
- package/node_modules/es-toolkit/dist/compat/object/forOwn.mjs +37 -16
- package/node_modules/es-toolkit/dist/compat/object/forOwnRight.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/forOwnRight.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/forOwnRight.js +38 -21
- package/node_modules/es-toolkit/dist/compat/object/forOwnRight.mjs +37 -16
- package/node_modules/es-toolkit/dist/compat/object/fromPairs.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/fromPairs.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/fromPairs.js +24 -16
- package/node_modules/es-toolkit/dist/compat/object/fromPairs.mjs +24 -12
- package/node_modules/es-toolkit/dist/compat/object/functions.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/functions.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/functions.js +26 -11
- package/node_modules/es-toolkit/dist/compat/object/functions.mjs +26 -7
- package/node_modules/es-toolkit/dist/compat/object/functionsIn.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/functionsIn.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/functionsIn.js +24 -17
- package/node_modules/es-toolkit/dist/compat/object/functionsIn.mjs +24 -13
- package/node_modules/es-toolkit/dist/compat/object/get.d.mts +73 -72
- package/node_modules/es-toolkit/dist/compat/object/get.d.ts +73 -72
- package/node_modules/es-toolkit/dist/compat/object/get.js +60 -77
- package/node_modules/es-toolkit/dist/compat/object/get.mjs +60 -73
- package/node_modules/es-toolkit/dist/compat/object/has.d.mts +12 -13
- package/node_modules/es-toolkit/dist/compat/object/has.d.ts +12 -13
- package/node_modules/es-toolkit/dist/compat/object/has.js +49 -35
- package/node_modules/es-toolkit/dist/compat/object/has.mjs +49 -31
- package/node_modules/es-toolkit/dist/compat/object/hasIn.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/hasIn.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/hasIn.js +59 -38
- package/node_modules/es-toolkit/dist/compat/object/hasIn.mjs +59 -34
- package/node_modules/es-toolkit/dist/compat/object/invert.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/invert.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/invert.js +22 -8
- package/node_modules/es-toolkit/dist/compat/object/invert.mjs +22 -4
- package/node_modules/es-toolkit/dist/compat/object/invertBy.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/object/invertBy.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/object/invertBy.js +42 -30
- package/node_modules/es-toolkit/dist/compat/object/invertBy.mjs +42 -26
- package/node_modules/es-toolkit/dist/compat/object/keys.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/keys.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/keys.js +44 -35
- package/node_modules/es-toolkit/dist/compat/object/keys.mjs +44 -31
- package/node_modules/es-toolkit/dist/compat/object/keysIn.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/keysIn.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/keysIn.js +57 -52
- package/node_modules/es-toolkit/dist/compat/object/keysIn.mjs +57 -48
- package/node_modules/es-toolkit/dist/compat/object/mapKeys.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/mapKeys.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/mapKeys.js +26 -14
- package/node_modules/es-toolkit/dist/compat/object/mapKeys.mjs +25 -9
- package/node_modules/es-toolkit/dist/compat/object/mapValues.d.mts +9 -14
- package/node_modules/es-toolkit/dist/compat/object/mapValues.d.ts +9 -14
- package/node_modules/es-toolkit/dist/compat/object/mapValues.js +27 -14
- package/node_modules/es-toolkit/dist/compat/object/mapValues.mjs +26 -9
- package/node_modules/es-toolkit/dist/compat/object/merge.d.mts +24 -23
- package/node_modules/es-toolkit/dist/compat/object/merge.d.ts +24 -23
- package/node_modules/es-toolkit/dist/compat/object/merge.js +42 -9
- package/node_modules/es-toolkit/dist/compat/object/merge.mjs +42 -5
- package/node_modules/es-toolkit/dist/compat/object/mergeWith.d.mts +28 -27
- package/node_modules/es-toolkit/dist/compat/object/mergeWith.d.ts +28 -27
- package/node_modules/es-toolkit/dist/compat/object/mergeWith.js +106 -105
- package/node_modules/es-toolkit/dist/compat/object/mergeWith.mjs +106 -101
- package/node_modules/es-toolkit/dist/compat/object/omit.d.mts +13 -12
- package/node_modules/es-toolkit/dist/compat/object/omit.d.ts +13 -12
- package/node_modules/es-toolkit/dist/compat/object/omit.js +69 -64
- package/node_modules/es-toolkit/dist/compat/object/omit.mjs +69 -60
- package/node_modules/es-toolkit/dist/compat/object/omitBy.d.mts +13 -12
- package/node_modules/es-toolkit/dist/compat/object/omitBy.d.ts +13 -12
- package/node_modules/es-toolkit/dist/compat/object/omitBy.js +36 -29
- package/node_modules/es-toolkit/dist/compat/object/omitBy.mjs +36 -25
- package/node_modules/es-toolkit/dist/compat/object/pick.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/pick.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/pick.js +58 -51
- package/node_modules/es-toolkit/dist/compat/object/pick.mjs +58 -47
- package/node_modules/es-toolkit/dist/compat/object/pickBy.d.mts +20 -19
- package/node_modules/es-toolkit/dist/compat/object/pickBy.d.ts +20 -19
- package/node_modules/es-toolkit/dist/compat/object/pickBy.js +38 -27
- package/node_modules/es-toolkit/dist/compat/object/pickBy.mjs +38 -23
- package/node_modules/es-toolkit/dist/compat/object/property.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/object/property.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/object/property.js +24 -10
- package/node_modules/es-toolkit/dist/compat/object/property.mjs +24 -6
- package/node_modules/es-toolkit/dist/compat/object/propertyOf.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/object/propertyOf.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/object/propertyOf.js +26 -10
- package/node_modules/es-toolkit/dist/compat/object/propertyOf.mjs +26 -6
- package/node_modules/es-toolkit/dist/compat/object/result.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/result.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/result.js +47 -25
- package/node_modules/es-toolkit/dist/compat/object/result.mjs +47 -21
- package/node_modules/es-toolkit/dist/compat/object/set.d.mts +12 -11
- package/node_modules/es-toolkit/dist/compat/object/set.d.ts +12 -11
- package/node_modules/es-toolkit/dist/compat/object/set.js +31 -8
- package/node_modules/es-toolkit/dist/compat/object/set.mjs +31 -4
- package/node_modules/es-toolkit/dist/compat/object/setWith.d.mts +14 -13
- package/node_modules/es-toolkit/dist/compat/object/setWith.d.ts +14 -13
- package/node_modules/es-toolkit/dist/compat/object/setWith.js +30 -15
- package/node_modules/es-toolkit/dist/compat/object/setWith.mjs +30 -11
- package/node_modules/es-toolkit/dist/compat/object/toDefaulted.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/toDefaulted.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/toDefaulted.js +28 -10
- package/node_modules/es-toolkit/dist/compat/object/toDefaulted.mjs +27 -6
- package/node_modules/es-toolkit/dist/compat/object/toPairs.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/toPairs.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/toPairs.js +34 -26
- package/node_modules/es-toolkit/dist/compat/object/toPairs.mjs +34 -22
- package/node_modules/es-toolkit/dist/compat/object/toPairsIn.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/toPairsIn.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/toPairsIn.js +32 -26
- package/node_modules/es-toolkit/dist/compat/object/toPairsIn.mjs +32 -22
- package/node_modules/es-toolkit/dist/compat/object/transform.d.mts +19 -18
- package/node_modules/es-toolkit/dist/compat/object/transform.d.ts +19 -18
- package/node_modules/es-toolkit/dist/compat/object/transform.js +42 -32
- package/node_modules/es-toolkit/dist/compat/object/transform.mjs +41 -27
- package/node_modules/es-toolkit/dist/compat/object/unset.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/unset.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/unset.js +61 -77
- package/node_modules/es-toolkit/dist/compat/object/unset.mjs +61 -73
- package/node_modules/es-toolkit/dist/compat/object/update.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/update.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/update.js +13 -8
- package/node_modules/es-toolkit/dist/compat/object/update.mjs +13 -4
- package/node_modules/es-toolkit/dist/compat/object/updateWith.d.mts +14 -13
- package/node_modules/es-toolkit/dist/compat/object/updateWith.d.ts +14 -13
- package/node_modules/es-toolkit/dist/compat/object/updateWith.js +48 -54
- package/node_modules/es-toolkit/dist/compat/object/updateWith.mjs +48 -50
- package/node_modules/es-toolkit/dist/compat/object/values.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/values.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/values.js +13 -9
- package/node_modules/es-toolkit/dist/compat/object/values.mjs +13 -5
- package/node_modules/es-toolkit/dist/compat/object/valuesIn.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/valuesIn.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/valuesIn.js +22 -14
- package/node_modules/es-toolkit/dist/compat/object/valuesIn.mjs +22 -10
- package/node_modules/es-toolkit/dist/compat/predicate/conforms.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/predicate/conforms.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/predicate/conforms.js +27 -12
- package/node_modules/es-toolkit/dist/compat/predicate/conforms.mjs +27 -8
- package/node_modules/es-toolkit/dist/compat/predicate/conformsTo.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/conformsTo.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/conformsTo.js +40 -24
- package/node_modules/es-toolkit/dist/compat/predicate/conformsTo.mjs +40 -20
- package/node_modules/es-toolkit/dist/compat/predicate/isArguments.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArguments.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArguments.js +24 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isArguments.mjs +24 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArray.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isArray.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isArray.js +23 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isArray.mjs +23 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.js +21 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.js +18 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.mjs +18 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.js +17 -9
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.mjs +17 -5
- package/node_modules/es-toolkit/dist/compat/predicate/isBoolean.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isBoolean.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isBoolean.js +25 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isBoolean.mjs +25 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isBuffer.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isBuffer.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isBuffer.js +22 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isBuffer.mjs +22 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isDate.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isDate.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isDate.js +17 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isDate.mjs +17 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isElement.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isElement.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isElement.js +15 -9
- package/node_modules/es-toolkit/dist/compat/predicate/isElement.mjs +15 -5
- package/node_modules/es-toolkit/dist/compat/predicate/isEmpty.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isEmpty.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isEmpty.js +45 -35
- package/node_modules/es-toolkit/dist/compat/predicate/isEmpty.mjs +45 -31
- package/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.js +46 -23
- package/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.mjs +46 -19
- package/node_modules/es-toolkit/dist/compat/predicate/isError.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isError.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isError.js +17 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isError.mjs +17 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isFinite.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isFinite.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isFinite.js +27 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isFinite.mjs +27 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isFunction.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isFunction.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isFunction.js +16 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isFunction.mjs +16 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isInteger.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isInteger.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isInteger.js +17 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isInteger.mjs +17 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isLength.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isLength.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isLength.js +24 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isLength.mjs +24 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isMap.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isMap.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isMap.js +21 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isMap.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isMatch.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/predicate/isMatch.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/predicate/isMatch.js +32 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isMatch.mjs +32 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.d.mts +9 -7
- package/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.d.ts +9 -7
- package/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.js +144 -142
- package/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.mjs +145 -138
- package/node_modules/es-toolkit/dist/compat/predicate/isNaN.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNaN.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNaN.js +16 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isNaN.mjs +16 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isNative.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNative.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNative.js +22 -17
- package/node_modules/es-toolkit/dist/compat/predicate/isNative.mjs +22 -13
- package/node_modules/es-toolkit/dist/compat/predicate/isNil.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNil.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNil.js +22 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isNil.mjs +22 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isNull.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNull.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNull.js +14 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isNull.mjs +14 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isNumber.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNumber.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNumber.js +23 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isNumber.mjs +23 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isObject.js +26 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isObject.mjs +26 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.js +26 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.mjs +26 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.js +36 -30
- package/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.mjs +36 -26
- package/node_modules/es-toolkit/dist/compat/predicate/isRegExp.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isRegExp.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isRegExp.js +17 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isRegExp.mjs +17 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.js +21 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.mjs +21 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isSet.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSet.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSet.js +21 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isSet.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isString.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isString.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isString.js +20 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isString.mjs +20 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isSymbol.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSymbol.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSymbol.js +17 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isSymbol.mjs +17 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.js +19 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.mjs +19 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isUndefined.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isUndefined.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isUndefined.js +24 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isUndefined.mjs +24 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.js +24 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.mjs +24 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.js +24 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.mjs +24 -4
- package/node_modules/es-toolkit/dist/compat/predicate/matches.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/matches.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/matches.js +34 -12
- package/node_modules/es-toolkit/dist/compat/predicate/matches.mjs +34 -8
- package/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.js +47 -34
- package/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.mjs +47 -30
- package/node_modules/es-toolkit/dist/compat/string/camelCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/camelCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/camelCase.js +21 -10
- package/node_modules/es-toolkit/dist/compat/string/camelCase.mjs +21 -6
- package/node_modules/es-toolkit/dist/compat/string/capitalize.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/capitalize.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/capitalize.js +16 -9
- package/node_modules/es-toolkit/dist/compat/string/capitalize.mjs +16 -5
- package/node_modules/es-toolkit/dist/compat/string/deburr.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/deburr.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/deburr.js +24 -9
- package/node_modules/es-toolkit/dist/compat/string/deburr.mjs +24 -5
- package/node_modules/es-toolkit/dist/compat/string/endsWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/endsWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/endsWith.js +22 -12
- package/node_modules/es-toolkit/dist/compat/string/endsWith.mjs +22 -8
- package/node_modules/es-toolkit/dist/compat/string/escape.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/escape.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/escape.js +18 -9
- package/node_modules/es-toolkit/dist/compat/string/escape.mjs +18 -5
- package/node_modules/es-toolkit/dist/compat/string/escapeRegExp.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/escapeRegExp.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/escapeRegExp.js +16 -9
- package/node_modules/es-toolkit/dist/compat/string/escapeRegExp.mjs +16 -5
- package/node_modules/es-toolkit/dist/compat/string/kebabCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/kebabCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/kebabCase.js +20 -10
- package/node_modules/es-toolkit/dist/compat/string/kebabCase.mjs +20 -6
- package/node_modules/es-toolkit/dist/compat/string/lowerCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/lowerCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/lowerCase.js +20 -10
- package/node_modules/es-toolkit/dist/compat/string/lowerCase.mjs +20 -6
- package/node_modules/es-toolkit/dist/compat/string/lowerFirst.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/lowerFirst.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/lowerFirst.js +16 -9
- package/node_modules/es-toolkit/dist/compat/string/lowerFirst.mjs +16 -5
- package/node_modules/es-toolkit/dist/compat/string/pad.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/pad.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/pad.js +21 -9
- package/node_modules/es-toolkit/dist/compat/string/pad.mjs +21 -5
- package/node_modules/es-toolkit/dist/compat/string/padEnd.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/padEnd.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/padEnd.js +22 -9
- package/node_modules/es-toolkit/dist/compat/string/padEnd.mjs +22 -5
- package/node_modules/es-toolkit/dist/compat/string/padStart.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/padStart.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/padStart.js +22 -9
- package/node_modules/es-toolkit/dist/compat/string/padStart.mjs +22 -5
- package/node_modules/es-toolkit/dist/compat/string/repeat.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/string/repeat.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/string/repeat.js +24 -20
- package/node_modules/es-toolkit/dist/compat/string/repeat.mjs +24 -16
- package/node_modules/es-toolkit/dist/compat/string/replace.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/string/replace.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/string/replace.js +19 -11
- package/node_modules/es-toolkit/dist/compat/string/replace.mjs +19 -7
- package/node_modules/es-toolkit/dist/compat/string/snakeCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/snakeCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/snakeCase.js +20 -10
- package/node_modules/es-toolkit/dist/compat/string/snakeCase.mjs +20 -6
- package/node_modules/es-toolkit/dist/compat/string/split.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/string/split.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/string/split.js +4 -8
- package/node_modules/es-toolkit/dist/compat/string/split.mjs +4 -4
- package/node_modules/es-toolkit/dist/compat/string/startCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/startCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/startCase.js +27 -24
- package/node_modules/es-toolkit/dist/compat/string/startCase.mjs +27 -20
- package/node_modules/es-toolkit/dist/compat/string/startsWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/startsWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/startsWith.js +22 -12
- package/node_modules/es-toolkit/dist/compat/string/startsWith.mjs +22 -8
- package/node_modules/es-toolkit/dist/compat/string/template.d.mts +21 -20
- package/node_modules/es-toolkit/dist/compat/string/template.d.ts +21 -20
- package/node_modules/es-toolkit/dist/compat/string/template.js +120 -74
- package/node_modules/es-toolkit/dist/compat/string/template.mjs +120 -70
- package/node_modules/es-toolkit/dist/compat/string/templateSettings.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/string/templateSettings.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/string/templateSettings.js +1 -0
- package/node_modules/es-toolkit/dist/compat/string/templateSettings.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/string/toLower.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/toLower.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/toLower.js +21 -8
- package/node_modules/es-toolkit/dist/compat/string/toLower.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/string/toUpper.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/toUpper.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/toUpper.js +21 -8
- package/node_modules/es-toolkit/dist/compat/string/toUpper.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/string/trim.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/string/trim.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/string/trim.js +10 -26
- package/node_modules/es-toolkit/dist/compat/string/trim.mjs +10 -22
- package/node_modules/es-toolkit/dist/compat/string/trimEnd.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/string/trimEnd.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/string/trimEnd.js +21 -14
- package/node_modules/es-toolkit/dist/compat/string/trimEnd.mjs +21 -10
- package/node_modules/es-toolkit/dist/compat/string/trimStart.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/string/trimStart.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/string/trimStart.js +21 -14
- package/node_modules/es-toolkit/dist/compat/string/trimStart.mjs +21 -10
- package/node_modules/es-toolkit/dist/compat/string/truncate.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/string/truncate.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/string/truncate.js +66 -46
- package/node_modules/es-toolkit/dist/compat/string/truncate.mjs +66 -42
- package/node_modules/es-toolkit/dist/compat/string/unescape.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/unescape.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/unescape.js +18 -9
- package/node_modules/es-toolkit/dist/compat/string/unescape.mjs +18 -5
- package/node_modules/es-toolkit/dist/compat/string/upperCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/upperCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/upperCase.js +20 -10
- package/node_modules/es-toolkit/dist/compat/string/upperCase.mjs +20 -6
- package/node_modules/es-toolkit/dist/compat/string/upperFirst.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/upperFirst.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/upperFirst.js +16 -9
- package/node_modules/es-toolkit/dist/compat/string/upperFirst.mjs +16 -5
- package/node_modules/es-toolkit/dist/compat/string/words.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/string/words.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/string/words.js +35 -33
- package/node_modules/es-toolkit/dist/compat/string/words.mjs +35 -29
- package/node_modules/es-toolkit/dist/compat/toolkit.d.mts +6 -6
- package/node_modules/es-toolkit/dist/compat/toolkit.d.ts +6 -6
- package/node_modules/es-toolkit/dist/compat/toolkit.js +5 -9
- package/node_modules/es-toolkit/dist/compat/toolkit.mjs +5 -5
- package/node_modules/es-toolkit/dist/compat/util/bindAll.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/bindAll.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/bindAll.js +50 -44
- package/node_modules/es-toolkit/dist/compat/util/bindAll.mjs +50 -40
- package/node_modules/es-toolkit/dist/compat/util/cond.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/cond.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/cond.js +19 -27
- package/node_modules/es-toolkit/dist/compat/util/cond.mjs +19 -23
- package/node_modules/es-toolkit/dist/compat/util/constant.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/constant.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/constant.js +17 -6
- package/node_modules/es-toolkit/dist/compat/util/constant.mjs +17 -2
- package/node_modules/es-toolkit/dist/compat/util/defaultTo.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/util/defaultTo.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/util/defaultTo.js +20 -9
- package/node_modules/es-toolkit/dist/compat/util/defaultTo.mjs +20 -5
- package/node_modules/es-toolkit/dist/compat/util/eq.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/util/eq.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/util/eq.js +1 -0
- package/node_modules/es-toolkit/dist/compat/util/eq.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/util/gt.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/gt.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/gt.js +17 -11
- package/node_modules/es-toolkit/dist/compat/util/gt.mjs +17 -7
- package/node_modules/es-toolkit/dist/compat/util/gte.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/gte.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/gte.js +17 -11
- package/node_modules/es-toolkit/dist/compat/util/gte.mjs +17 -7
- package/node_modules/es-toolkit/dist/compat/util/invoke.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/invoke.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/invoke.js +44 -48
- package/node_modules/es-toolkit/dist/compat/util/invoke.mjs +44 -44
- package/node_modules/es-toolkit/dist/compat/util/iteratee.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/iteratee.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/iteratee.js +46 -29
- package/node_modules/es-toolkit/dist/compat/util/iteratee.mjs +46 -25
- package/node_modules/es-toolkit/dist/compat/util/lt.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/lt.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/lt.js +17 -11
- package/node_modules/es-toolkit/dist/compat/util/lt.mjs +17 -7
- package/node_modules/es-toolkit/dist/compat/util/lte.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/lte.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/lte.js +17 -11
- package/node_modules/es-toolkit/dist/compat/util/lte.mjs +17 -7
- package/node_modules/es-toolkit/dist/compat/util/method.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/method.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/method.js +25 -10
- package/node_modules/es-toolkit/dist/compat/util/method.mjs +25 -6
- package/node_modules/es-toolkit/dist/compat/util/methodOf.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/methodOf.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/methodOf.js +25 -10
- package/node_modules/es-toolkit/dist/compat/util/methodOf.mjs +25 -6
- package/node_modules/es-toolkit/dist/compat/util/now.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/now.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/now.js +18 -6
- package/node_modules/es-toolkit/dist/compat/util/now.mjs +18 -2
- package/node_modules/es-toolkit/dist/compat/util/over.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/over.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/over.js +34 -14
- package/node_modules/es-toolkit/dist/compat/util/over.mjs +34 -10
- package/node_modules/es-toolkit/dist/compat/util/overEvery.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/overEvery.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/overEvery.js +58 -24
- package/node_modules/es-toolkit/dist/compat/util/overEvery.mjs +58 -20
- package/node_modules/es-toolkit/dist/compat/util/overSome.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/overSome.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/overSome.js +60 -24
- package/node_modules/es-toolkit/dist/compat/util/overSome.mjs +60 -20
- package/node_modules/es-toolkit/dist/compat/util/stubArray.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubArray.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubArray.js +3 -6
- package/node_modules/es-toolkit/dist/compat/util/stubArray.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/util/stubFalse.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/stubFalse.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/stubFalse.js +3 -6
- package/node_modules/es-toolkit/dist/compat/util/stubFalse.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/util/stubObject.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubObject.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubObject.js +10 -6
- package/node_modules/es-toolkit/dist/compat/util/stubObject.mjs +10 -2
- package/node_modules/es-toolkit/dist/compat/util/stubString.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubString.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubString.js +3 -6
- package/node_modules/es-toolkit/dist/compat/util/stubString.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/util/stubTrue.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/stubTrue.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/stubTrue.js +3 -6
- package/node_modules/es-toolkit/dist/compat/util/stubTrue.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/util/times.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/times.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/times.js +19 -16
- package/node_modules/es-toolkit/dist/compat/util/times.mjs +19 -12
- package/node_modules/es-toolkit/dist/compat/util/toArray.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/toArray.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/toArray.js +20 -18
- package/node_modules/es-toolkit/dist/compat/util/toArray.mjs +20 -14
- package/node_modules/es-toolkit/dist/compat/util/toFinite.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toFinite.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toFinite.js +21 -16
- package/node_modules/es-toolkit/dist/compat/util/toFinite.mjs +21 -12
- package/node_modules/es-toolkit/dist/compat/util/toInteger.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toInteger.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toInteger.js +23 -10
- package/node_modules/es-toolkit/dist/compat/util/toInteger.mjs +23 -6
- package/node_modules/es-toolkit/dist/compat/util/toLength.d.mts +7 -5
- package/node_modules/es-toolkit/dist/compat/util/toLength.d.ts +7 -5
- package/node_modules/es-toolkit/dist/compat/util/toLength.js +23 -13
- package/node_modules/es-toolkit/dist/compat/util/toLength.mjs +23 -9
- package/node_modules/es-toolkit/dist/compat/util/toNumber.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toNumber.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toNumber.js +21 -11
- package/node_modules/es-toolkit/dist/compat/util/toNumber.mjs +21 -7
- package/node_modules/es-toolkit/dist/compat/util/toPath.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toPath.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toPath.js +63 -79
- package/node_modules/es-toolkit/dist/compat/util/toPath.mjs +63 -75
- package/node_modules/es-toolkit/dist/compat/util/toPlainObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toPlainObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toPlainObject.js +30 -25
- package/node_modules/es-toolkit/dist/compat/util/toPlainObject.mjs +30 -21
- package/node_modules/es-toolkit/dist/compat/util/toSafeInteger.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toSafeInteger.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toSafeInteger.js +24 -13
- package/node_modules/es-toolkit/dist/compat/util/toSafeInteger.mjs +24 -9
- package/node_modules/es-toolkit/dist/compat/util/toString.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toString.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toString.js +24 -19
- package/node_modules/es-toolkit/dist/compat/util/toString.mjs +24 -15
- package/node_modules/es-toolkit/dist/compat/util/uniqueId.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/uniqueId.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/uniqueId.js +27 -8
- package/node_modules/es-toolkit/dist/compat/util/uniqueId.mjs +27 -4
- package/node_modules/es-toolkit/dist/error/AbortError.d.mts +5 -4
- package/node_modules/es-toolkit/dist/error/AbortError.d.ts +5 -4
- package/node_modules/es-toolkit/dist/error/AbortError.js +12 -12
- package/node_modules/es-toolkit/dist/error/AbortError.mjs +12 -8
- package/node_modules/es-toolkit/dist/error/TimeoutError.d.mts +5 -4
- package/node_modules/es-toolkit/dist/error/TimeoutError.d.ts +5 -4
- package/node_modules/es-toolkit/dist/error/TimeoutError.js +12 -12
- package/node_modules/es-toolkit/dist/error/TimeoutError.mjs +12 -8
- package/node_modules/es-toolkit/dist/error/index.d.mts +3 -2
- package/node_modules/es-toolkit/dist/error/index.d.ts +3 -2
- package/node_modules/es-toolkit/dist/error/index.js +5 -11
- package/node_modules/es-toolkit/dist/error/index.mjs +3 -2
- package/node_modules/es-toolkit/dist/fp/_internal/lazy.js +58 -0
- package/node_modules/es-toolkit/dist/fp/_internal/lazy.mjs +57 -0
- package/node_modules/es-toolkit/dist/fp/array/at.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/at.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/at.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/at.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/cartesianProduct.d.mts +61 -0
- package/node_modules/es-toolkit/dist/fp/array/cartesianProduct.d.ts +61 -0
- package/node_modules/es-toolkit/dist/fp/array/cartesianProduct.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/cartesianProduct.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/chunk.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/chunk.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/chunk.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/chunk.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/chunkBy.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/chunkBy.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/chunkBy.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/chunkBy.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/combinations.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/combinations.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/combinations.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/combinations.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/compact.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/compact.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/compact.js +31 -0
- package/node_modules/es-toolkit/dist/fp/array/compact.mjs +30 -0
- package/node_modules/es-toolkit/dist/fp/array/countBy.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/countBy.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/countBy.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/countBy.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/difference.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/difference.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/difference.js +32 -0
- package/node_modules/es-toolkit/dist/fp/array/difference.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceBy.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceBy.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceBy.js +33 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceBy.mjs +32 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceWith.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceWith.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceWith.js +32 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceWith.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/drop.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/drop.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/drop.js +31 -0
- package/node_modules/es-toolkit/dist/fp/array/drop.mjs +30 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRight.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRight.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRight.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRight.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRightWhile.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRightWhile.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRightWhile.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRightWhile.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/dropWhile.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropWhile.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropWhile.js +36 -0
- package/node_modules/es-toolkit/dist/fp/array/dropWhile.mjs +36 -0
- package/node_modules/es-toolkit/dist/fp/array/filter.d.mts +45 -0
- package/node_modules/es-toolkit/dist/fp/array/filter.d.ts +45 -0
- package/node_modules/es-toolkit/dist/fp/array/filter.js +13 -0
- package/node_modules/es-toolkit/dist/fp/array/filter.mjs +12 -0
- package/node_modules/es-toolkit/dist/fp/array/find.d.mts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/find.d.ts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/find.js +8 -0
- package/node_modules/es-toolkit/dist/fp/array/find.mjs +8 -0
- package/node_modules/es-toolkit/dist/fp/array/findIndex.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/findIndex.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/findIndex.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/findIndex.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/findLast.d.mts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/findLast.d.ts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/findLast.js +11 -0
- package/node_modules/es-toolkit/dist/fp/array/findLast.mjs +11 -0
- package/node_modules/es-toolkit/dist/fp/array/findLastIndex.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/findLastIndex.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/findLastIndex.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/findLastIndex.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMap.d.mts +28 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMap.d.ts +28 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMap.js +39 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMap.mjs +38 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMapDeep.d.mts +23 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMapDeep.d.ts +23 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMapDeep.js +38 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMapDeep.mjs +37 -0
- package/node_modules/es-toolkit/dist/fp/array/flatten.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/flatten.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/flatten.js +39 -0
- package/node_modules/es-toolkit/dist/fp/array/flatten.mjs +38 -0
- package/node_modules/es-toolkit/dist/fp/array/flattenDeep.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/flattenDeep.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/flattenDeep.js +36 -0
- package/node_modules/es-toolkit/dist/fp/array/flattenDeep.mjs +35 -0
- package/node_modules/es-toolkit/dist/fp/array/forEach.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/forEach.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/forEach.js +33 -0
- package/node_modules/es-toolkit/dist/fp/array/forEach.mjs +32 -0
- package/node_modules/es-toolkit/dist/fp/array/groupBy.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/groupBy.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/groupBy.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/groupBy.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/head.d.mts +35 -0
- package/node_modules/es-toolkit/dist/fp/array/head.d.ts +35 -0
- package/node_modules/es-toolkit/dist/fp/array/head.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/head.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/index.d.mts +69 -0
- package/node_modules/es-toolkit/dist/fp/array/index.d.ts +69 -0
- package/node_modules/es-toolkit/dist/fp/array/index.js +68 -0
- package/node_modules/es-toolkit/dist/fp/array/index.mjs +68 -0
- package/node_modules/es-toolkit/dist/fp/array/initial.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/initial.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/initial.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/initial.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/intersection.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/intersection.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/intersection.js +32 -0
- package/node_modules/es-toolkit/dist/fp/array/intersection.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionBy.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionBy.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionBy.js +33 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionBy.mjs +32 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionWith.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionWith.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionWith.js +32 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionWith.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubset.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubset.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubset.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubset.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubsetWith.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubsetWith.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubsetWith.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubsetWith.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/join.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/join.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/join.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/join.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/keyBy.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/keyBy.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/keyBy.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/keyBy.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/last.d.mts +35 -0
- package/node_modules/es-toolkit/dist/fp/array/last.d.ts +35 -0
- package/node_modules/es-toolkit/dist/fp/array/last.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/last.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/length.d.mts +18 -0
- package/node_modules/es-toolkit/dist/fp/array/length.d.ts +18 -0
- package/node_modules/es-toolkit/dist/fp/array/length.js +22 -0
- package/node_modules/es-toolkit/dist/fp/array/length.mjs +22 -0
- package/node_modules/es-toolkit/dist/fp/array/map.d.mts +27 -0
- package/node_modules/es-toolkit/dist/fp/array/map.d.ts +27 -0
- package/node_modules/es-toolkit/dist/fp/array/map.js +36 -0
- package/node_modules/es-toolkit/dist/fp/array/map.mjs +35 -0
- package/node_modules/es-toolkit/dist/fp/array/maxBy.d.mts +37 -0
- package/node_modules/es-toolkit/dist/fp/array/maxBy.d.ts +37 -0
- package/node_modules/es-toolkit/dist/fp/array/maxBy.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/maxBy.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/minBy.d.mts +37 -0
- package/node_modules/es-toolkit/dist/fp/array/minBy.d.ts +37 -0
- package/node_modules/es-toolkit/dist/fp/array/minBy.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/minBy.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/orderBy.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/orderBy.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/orderBy.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/orderBy.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/partition.d.mts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/partition.d.ts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/partition.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/partition.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/reverse.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/reverse.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/reverse.js +23 -0
- package/node_modules/es-toolkit/dist/fp/array/reverse.mjs +23 -0
- package/node_modules/es-toolkit/dist/fp/array/sample.d.mts +18 -0
- package/node_modules/es-toolkit/dist/fp/array/sample.d.ts +18 -0
- package/node_modules/es-toolkit/dist/fp/array/sample.js +23 -0
- package/node_modules/es-toolkit/dist/fp/array/sample.mjs +23 -0
- package/node_modules/es-toolkit/dist/fp/array/sampleSize.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/sampleSize.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/sampleSize.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/sampleSize.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/shuffle.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/shuffle.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/shuffle.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/shuffle.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/sortBy.d.mts +26 -0
- package/node_modules/es-toolkit/dist/fp/array/sortBy.d.ts +26 -0
- package/node_modules/es-toolkit/dist/fp/array/sortBy.js +31 -0
- package/node_modules/es-toolkit/dist/fp/array/sortBy.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/tail.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/tail.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/tail.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/tail.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/take.d.mts +26 -0
- package/node_modules/es-toolkit/dist/fp/array/take.d.ts +26 -0
- package/node_modules/es-toolkit/dist/fp/array/take.js +39 -0
- package/node_modules/es-toolkit/dist/fp/array/take.mjs +38 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRight.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRight.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRight.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRight.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRightWhile.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRightWhile.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRightWhile.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRightWhile.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/takeWhile.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/takeWhile.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/takeWhile.js +32 -0
- package/node_modules/es-toolkit/dist/fp/array/takeWhile.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/toFilled.d.mts +23 -0
- package/node_modules/es-toolkit/dist/fp/array/toFilled.d.ts +23 -0
- package/node_modules/es-toolkit/dist/fp/array/toFilled.js +30 -0
- package/node_modules/es-toolkit/dist/fp/array/toFilled.mjs +30 -0
- package/node_modules/es-toolkit/dist/fp/array/union.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/union.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/union.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/union.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/unionBy.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/unionBy.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/unionBy.js +27 -0
- package/node_modules/es-toolkit/dist/fp/array/unionBy.mjs +27 -0
- package/node_modules/es-toolkit/dist/fp/array/unionWith.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/unionWith.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/unionWith.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/unionWith.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/uniq.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/uniq.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/uniq.js +36 -0
- package/node_modules/es-toolkit/dist/fp/array/uniq.mjs +36 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqBy.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqBy.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqBy.js +38 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqBy.mjs +38 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqWith.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqWith.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqWith.js +35 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqWith.mjs +35 -0
- package/node_modules/es-toolkit/dist/fp/array/unzip.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/unzip.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/unzip.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/unzip.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/unzipWith.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/unzipWith.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/unzipWith.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/unzipWith.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/windowed.d.mts +25 -0
- package/node_modules/es-toolkit/dist/fp/array/windowed.d.ts +25 -0
- package/node_modules/es-toolkit/dist/fp/array/windowed.js +50 -0
- package/node_modules/es-toolkit/dist/fp/array/windowed.mjs +50 -0
- package/node_modules/es-toolkit/dist/fp/array/without.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/without.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/without.js +30 -0
- package/node_modules/es-toolkit/dist/fp/array/without.mjs +29 -0
- package/node_modules/es-toolkit/dist/fp/array/xor.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/xor.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/xor.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/xor.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/xorBy.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/xorBy.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/xorBy.js +27 -0
- package/node_modules/es-toolkit/dist/fp/array/xorBy.mjs +27 -0
- package/node_modules/es-toolkit/dist/fp/array/xorWith.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/xorWith.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/xorWith.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/xorWith.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/zip.d.mts +61 -0
- package/node_modules/es-toolkit/dist/fp/array/zip.d.ts +61 -0
- package/node_modules/es-toolkit/dist/fp/array/zip.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/zip.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/zipObject.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/zipObject.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/zipObject.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/zipObject.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/zipWith.d.mts +57 -0
- package/node_modules/es-toolkit/dist/fp/array/zipWith.d.ts +57 -0
- package/node_modules/es-toolkit/dist/fp/array/zipWith.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/zipWith.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/index.d.mts +75 -0
- package/node_modules/es-toolkit/dist/fp/index.d.ts +75 -0
- package/node_modules/es-toolkit/dist/fp/index.js +150 -0
- package/node_modules/es-toolkit/dist/fp/index.mjs +77 -0
- package/node_modules/es-toolkit/dist/fp/math/add.d.mts +17 -0
- package/node_modules/es-toolkit/dist/fp/math/add.d.ts +17 -0
- package/node_modules/es-toolkit/dist/fp/math/add.js +21 -0
- package/node_modules/es-toolkit/dist/fp/math/add.mjs +21 -0
- package/node_modules/es-toolkit/dist/fp/math/index.d.mts +2 -0
- package/node_modules/es-toolkit/dist/fp/math/index.d.ts +2 -0
- package/node_modules/es-toolkit/dist/fp/math/index.js +2 -0
- package/node_modules/es-toolkit/dist/fp/math/index.mjs +2 -0
- package/node_modules/es-toolkit/dist/fp/math/multiply.d.mts +17 -0
- package/node_modules/es-toolkit/dist/fp/math/multiply.d.ts +17 -0
- package/node_modules/es-toolkit/dist/fp/math/multiply.js +21 -0
- package/node_modules/es-toolkit/dist/fp/math/multiply.mjs +21 -0
- package/node_modules/es-toolkit/dist/fp/object/index.d.mts +2 -0
- package/node_modules/es-toolkit/dist/fp/object/index.d.ts +2 -0
- package/node_modules/es-toolkit/dist/fp/object/index.js +2 -0
- package/node_modules/es-toolkit/dist/fp/object/index.mjs +2 -0
- package/node_modules/es-toolkit/dist/fp/object/omit.d.mts +18 -0
- package/node_modules/es-toolkit/dist/fp/object/omit.d.ts +18 -0
- package/node_modules/es-toolkit/dist/fp/object/omit.js +23 -0
- package/node_modules/es-toolkit/dist/fp/object/omit.mjs +23 -0
- package/node_modules/es-toolkit/dist/fp/object/pick.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/object/pick.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/object/pick.js +24 -0
- package/node_modules/es-toolkit/dist/fp/object/pick.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/pipe.d.mts +235 -0
- package/node_modules/es-toolkit/dist/fp/pipe.d.ts +235 -0
- package/node_modules/es-toolkit/dist/fp/pipe.js +116 -0
- package/node_modules/es-toolkit/dist/fp/pipe.mjs +116 -0
- package/node_modules/es-toolkit/dist/function/after.d.mts +6 -5
- package/node_modules/es-toolkit/dist/function/after.d.ts +6 -5
- package/node_modules/es-toolkit/dist/function/after.js +35 -15
- package/node_modules/es-toolkit/dist/function/after.mjs +35 -11
- package/node_modules/es-toolkit/dist/function/ary.d.mts +6 -5
- package/node_modules/es-toolkit/dist/function/ary.d.ts +6 -5
- package/node_modules/es-toolkit/dist/function/ary.js +23 -8
- package/node_modules/es-toolkit/dist/function/ary.mjs +23 -4
- package/node_modules/es-toolkit/dist/function/asyncNoop.d.mts +4 -3
- package/node_modules/es-toolkit/dist/function/asyncNoop.d.ts +4 -3
- package/node_modules/es-toolkit/dist/function/asyncNoop.js +12 -6
- package/node_modules/es-toolkit/dist/function/asyncNoop.mjs +12 -2
- package/node_modules/es-toolkit/dist/function/before.d.mts +6 -5
- package/node_modules/es-toolkit/dist/function/before.d.ts +6 -5
- package/node_modules/es-toolkit/dist/function/before.js +35 -15
- package/node_modules/es-toolkit/dist/function/before.mjs +35 -11
- package/node_modules/es-toolkit/dist/function/curry.d.mts +17 -16
- package/node_modules/es-toolkit/dist/function/curry.d.ts +17 -16
- package/node_modules/es-toolkit/dist/function/curry.js +36 -20
- package/node_modules/es-toolkit/dist/function/curry.mjs +36 -16
- package/node_modules/es-toolkit/dist/function/curryRight.d.mts +17 -16
- package/node_modules/es-toolkit/dist/function/curryRight.d.ts +17 -16
- package/node_modules/es-toolkit/dist/function/curryRight.js +38 -20
- package/node_modules/es-toolkit/dist/function/curryRight.mjs +38 -16
- package/node_modules/es-toolkit/dist/function/debounce.d.mts +42 -39
- package/node_modules/es-toolkit/dist/function/debounce.d.ts +42 -39
- package/node_modules/es-toolkit/dist/function/debounce.js +88 -63
- package/node_modules/es-toolkit/dist/function/debounce.mjs +88 -59
- package/node_modules/es-toolkit/dist/function/flow.d.mts +27 -26
- package/node_modules/es-toolkit/dist/function/flow.d.ts +27 -26
- package/node_modules/es-toolkit/dist/function/flow.js +22 -12
- package/node_modules/es-toolkit/dist/function/flow.mjs +22 -8
- package/node_modules/es-toolkit/dist/function/flowRight.d.mts +27 -26
- package/node_modules/es-toolkit/dist/function/flowRight.d.ts +27 -26
- package/node_modules/es-toolkit/dist/function/flowRight.js +21 -8
- package/node_modules/es-toolkit/dist/function/flowRight.mjs +21 -4
- package/node_modules/es-toolkit/dist/function/identity.d.mts +5 -4
- package/node_modules/es-toolkit/dist/function/identity.d.ts +5 -4
- package/node_modules/es-toolkit/dist/function/identity.js +22 -6
- package/node_modules/es-toolkit/dist/function/identity.mjs +22 -2
- package/node_modules/es-toolkit/dist/function/index.d.mts +22 -21
- package/node_modules/es-toolkit/dist/function/index.d.ts +22 -21
- package/node_modules/es-toolkit/dist/function/index.js +43 -49
- package/node_modules/es-toolkit/dist/function/index.mjs +22 -21
- package/node_modules/es-toolkit/dist/function/memoize.d.mts +46 -45
- package/node_modules/es-toolkit/dist/function/memoize.d.ts +46 -45
- package/node_modules/es-toolkit/dist/function/memoize.js +84 -17
- package/node_modules/es-toolkit/dist/function/memoize.mjs +84 -13
- package/node_modules/es-toolkit/dist/function/negate.d.mts +5 -4
- package/node_modules/es-toolkit/dist/function/negate.d.ts +5 -4
- package/node_modules/es-toolkit/dist/function/negate.js +16 -6
- package/node_modules/es-toolkit/dist/function/negate.mjs +16 -2
- package/node_modules/es-toolkit/dist/function/noop.d.mts +4 -3
- package/node_modules/es-toolkit/dist/function/noop.d.ts +4 -3
- package/node_modules/es-toolkit/dist/function/noop.js +12 -6
- package/node_modules/es-toolkit/dist/function/noop.mjs +12 -2
- package/node_modules/es-toolkit/dist/function/once.d.mts +5 -4
- package/node_modules/es-toolkit/dist/function/once.d.ts +5 -4
- package/node_modules/es-toolkit/dist/function/once.js +28 -14
- package/node_modules/es-toolkit/dist/function/once.mjs +28 -10
- package/node_modules/es-toolkit/dist/function/partial.d.mts +135 -133
- package/node_modules/es-toolkit/dist/function/partial.d.ts +135 -133
- package/node_modules/es-toolkit/dist/function/partial.js +38 -19
- package/node_modules/es-toolkit/dist/function/partial.mjs +38 -15
- package/node_modules/es-toolkit/dist/function/partialRight.d.mts +140 -138
- package/node_modules/es-toolkit/dist/function/partialRight.d.ts +140 -138
- package/node_modules/es-toolkit/dist/function/partialRight.js +40 -21
- package/node_modules/es-toolkit/dist/function/partialRight.mjs +40 -17
- package/node_modules/es-toolkit/dist/function/rest.d.mts +6 -5
- package/node_modules/es-toolkit/dist/function/rest.d.ts +6 -5
- package/node_modules/es-toolkit/dist/function/rest.js +38 -13
- package/node_modules/es-toolkit/dist/function/rest.mjs +38 -9
- package/node_modules/es-toolkit/dist/function/retry.d.mts +45 -44
- package/node_modules/es-toolkit/dist/function/retry.d.ts +45 -44
- package/node_modules/es-toolkit/dist/function/retry.js +39 -41
- package/node_modules/es-toolkit/dist/function/retry.mjs +38 -37
- package/node_modules/es-toolkit/dist/function/spread.d.mts +5 -4
- package/node_modules/es-toolkit/dist/function/spread.d.ts +5 -4
- package/node_modules/es-toolkit/dist/function/spread.js +21 -8
- package/node_modules/es-toolkit/dist/function/spread.mjs +21 -4
- package/node_modules/es-toolkit/dist/function/throttle.d.mts +25 -21
- package/node_modules/es-toolkit/dist/function/throttle.d.ts +25 -21
- package/node_modules/es-toolkit/dist/function/throttle.js +52 -29
- package/node_modules/es-toolkit/dist/function/throttle.mjs +52 -25
- package/node_modules/es-toolkit/dist/function/unary.d.mts +5 -4
- package/node_modules/es-toolkit/dist/function/unary.d.ts +5 -4
- package/node_modules/es-toolkit/dist/function/unary.js +18 -8
- package/node_modules/es-toolkit/dist/function/unary.mjs +18 -4
- package/node_modules/es-toolkit/dist/index.d.mts +188 -180
- package/node_modules/es-toolkit/dist/index.d.ts +188 -180
- package/node_modules/es-toolkit/dist/index.js +387 -370
- package/node_modules/es-toolkit/dist/index.mjs +197 -180
- package/node_modules/es-toolkit/dist/map/countBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/countBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/countBy.js +40 -11
- package/node_modules/es-toolkit/dist/map/countBy.mjs +40 -7
- package/node_modules/es-toolkit/dist/map/every.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/every.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/every.js +29 -11
- package/node_modules/es-toolkit/dist/map/every.mjs +29 -7
- package/node_modules/es-toolkit/dist/map/filter.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/filter.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/filter.js +31 -12
- package/node_modules/es-toolkit/dist/map/filter.mjs +31 -8
- package/node_modules/es-toolkit/dist/map/findKey.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/findKey.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/findKey.js +30 -13
- package/node_modules/es-toolkit/dist/map/findKey.mjs +30 -9
- package/node_modules/es-toolkit/dist/map/findValue.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/findValue.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/findValue.js +30 -13
- package/node_modules/es-toolkit/dist/map/findValue.mjs +30 -9
- package/node_modules/es-toolkit/dist/map/forEach.d.mts +5 -5
- package/node_modules/es-toolkit/dist/map/forEach.d.ts +5 -5
- package/node_modules/es-toolkit/dist/map/forEach.js +28 -8
- package/node_modules/es-toolkit/dist/map/forEach.mjs +28 -4
- package/node_modules/es-toolkit/dist/map/hasValue.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/hasValue.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/hasValue.js +30 -13
- package/node_modules/es-toolkit/dist/map/hasValue.mjs +30 -9
- package/node_modules/es-toolkit/dist/map/index.d.mts +13 -12
- package/node_modules/es-toolkit/dist/map/index.d.ts +13 -12
- package/node_modules/es-toolkit/dist/map/index.js +25 -31
- package/node_modules/es-toolkit/dist/map/index.mjs +13 -12
- package/node_modules/es-toolkit/dist/map/keyBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/keyBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/keyBy.js +36 -11
- package/node_modules/es-toolkit/dist/map/keyBy.mjs +36 -7
- package/node_modules/es-toolkit/dist/map/mapKeys.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/mapKeys.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/mapKeys.js +35 -11
- package/node_modules/es-toolkit/dist/map/mapKeys.mjs +35 -7
- package/node_modules/es-toolkit/dist/map/mapValues.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/mapValues.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/mapValues.js +35 -11
- package/node_modules/es-toolkit/dist/map/mapValues.mjs +35 -7
- package/node_modules/es-toolkit/dist/map/reduce.d.mts +7 -6
- package/node_modules/es-toolkit/dist/map/reduce.d.ts +7 -6
- package/node_modules/es-toolkit/dist/map/reduce.js +39 -18
- package/node_modules/es-toolkit/dist/map/reduce.mjs +39 -14
- package/node_modules/es-toolkit/dist/map/some.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/some.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/some.js +29 -11
- package/node_modules/es-toolkit/dist/map/some.mjs +29 -7
- package/node_modules/es-toolkit/dist/math/clamp.d.mts +10 -9
- package/node_modules/es-toolkit/dist/math/clamp.d.ts +10 -9
- package/node_modules/es-toolkit/dist/math/clamp.js +21 -9
- package/node_modules/es-toolkit/dist/math/clamp.mjs +21 -5
- package/node_modules/es-toolkit/dist/math/inRange.d.mts +10 -9
- package/node_modules/es-toolkit/dist/math/inRange.d.ts +10 -9
- package/node_modules/es-toolkit/dist/math/inRange.js +22 -13
- package/node_modules/es-toolkit/dist/math/inRange.mjs +22 -9
- package/node_modules/es-toolkit/dist/math/index.d.mts +15 -13
- package/node_modules/es-toolkit/dist/math/index.d.ts +15 -13
- package/node_modules/es-toolkit/dist/math/index.js +29 -33
- package/node_modules/es-toolkit/dist/math/index.mjs +15 -13
- package/node_modules/es-toolkit/dist/math/mean.d.mts +5 -4
- package/node_modules/es-toolkit/dist/math/mean.d.ts +5 -4
- package/node_modules/es-toolkit/dist/math/mean.js +17 -8
- package/node_modules/es-toolkit/dist/math/mean.mjs +17 -4
- package/node_modules/es-toolkit/dist/math/meanBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/math/meanBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/math/meanBy.js +19 -8
- package/node_modules/es-toolkit/dist/math/meanBy.mjs +19 -4
- package/node_modules/es-toolkit/dist/math/median.d.mts +5 -4
- package/node_modules/es-toolkit/dist/math/median.d.ts +5 -4
- package/node_modules/es-toolkit/dist/math/median.js +29 -16
- package/node_modules/es-toolkit/dist/math/median.mjs +29 -12
- package/node_modules/es-toolkit/dist/math/medianBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/math/medianBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/math/medianBy.js +25 -9
- package/node_modules/es-toolkit/dist/math/medianBy.mjs +24 -5
- package/node_modules/es-toolkit/dist/math/percentile.d.mts +29 -0
- package/node_modules/es-toolkit/dist/math/percentile.d.ts +29 -0
- package/node_modules/es-toolkit/dist/math/percentile.js +39 -0
- package/node_modules/es-toolkit/dist/math/percentile.mjs +39 -0
- package/node_modules/es-toolkit/dist/math/random.d.mts +8 -7
- package/node_modules/es-toolkit/dist/math/random.d.ts +8 -7
- package/node_modules/es-toolkit/dist/math/random.js +21 -13
- package/node_modules/es-toolkit/dist/math/random.mjs +21 -9
- package/node_modules/es-toolkit/dist/math/randomInt.d.mts +8 -7
- package/node_modules/es-toolkit/dist/math/randomInt.d.ts +8 -7
- package/node_modules/es-toolkit/dist/math/randomInt.js +18 -8
- package/node_modules/es-toolkit/dist/math/randomInt.mjs +18 -4
- package/node_modules/es-toolkit/dist/math/range.d.mts +12 -11
- package/node_modules/es-toolkit/dist/math/range.d.ts +12 -11
- package/node_modules/es-toolkit/dist/math/range.js +28 -18
- package/node_modules/es-toolkit/dist/math/range.mjs +28 -14
- package/node_modules/es-toolkit/dist/math/rangeRight.d.mts +12 -11
- package/node_modules/es-toolkit/dist/math/rangeRight.d.ts +12 -11
- package/node_modules/es-toolkit/dist/math/rangeRight.js +28 -18
- package/node_modules/es-toolkit/dist/math/rangeRight.mjs +28 -14
- package/node_modules/es-toolkit/dist/math/round.d.mts +6 -5
- package/node_modules/es-toolkit/dist/math/round.d.ts +6 -5
- package/node_modules/es-toolkit/dist/math/round.js +22 -10
- package/node_modules/es-toolkit/dist/math/round.mjs +22 -6
- package/node_modules/es-toolkit/dist/math/sum.d.mts +5 -4
- package/node_modules/es-toolkit/dist/math/sum.d.ts +5 -4
- package/node_modules/es-toolkit/dist/math/sum.js +18 -10
- package/node_modules/es-toolkit/dist/math/sum.mjs +18 -6
- package/node_modules/es-toolkit/dist/math/sumBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/math/sumBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/math/sumBy.js +21 -10
- package/node_modules/es-toolkit/dist/math/sumBy.mjs +21 -6
- package/node_modules/es-toolkit/dist/object/clone.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/clone.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/clone.js +58 -54
- package/node_modules/es-toolkit/dist/object/clone.mjs +58 -50
- package/node_modules/es-toolkit/dist/object/cloneDeep.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/cloneDeep.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/cloneDeep.js +50 -8
- package/node_modules/es-toolkit/dist/object/cloneDeep.mjs +50 -4
- package/node_modules/es-toolkit/dist/object/cloneDeepWith.d.mts +8 -5
- package/node_modules/es-toolkit/dist/object/cloneDeepWith.d.ts +8 -5
- package/node_modules/es-toolkit/dist/object/cloneDeepWith.js +173 -170
- package/node_modules/es-toolkit/dist/object/cloneDeepWith.mjs +173 -166
- package/node_modules/es-toolkit/dist/object/findKey.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/findKey.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/findKey.js +21 -7
- package/node_modules/es-toolkit/dist/object/findKey.mjs +21 -3
- package/node_modules/es-toolkit/dist/object/flattenObject.d.mts +14 -11
- package/node_modules/es-toolkit/dist/object/flattenObject.d.ts +14 -11
- package/node_modules/es-toolkit/dist/object/flattenObject.js +48 -26
- package/node_modules/es-toolkit/dist/object/flattenObject.mjs +48 -22
- package/node_modules/es-toolkit/dist/object/index.d.mts +19 -17
- package/node_modules/es-toolkit/dist/object/index.d.ts +19 -17
- package/node_modules/es-toolkit/dist/object/index.js +37 -41
- package/node_modules/es-toolkit/dist/object/index.mjs +19 -17
- package/node_modules/es-toolkit/dist/object/invert.d.mts +5 -4
- package/node_modules/es-toolkit/dist/object/invert.d.ts +5 -4
- package/node_modules/es-toolkit/dist/object/invert.js +28 -13
- package/node_modules/es-toolkit/dist/object/invert.mjs +28 -9
- package/node_modules/es-toolkit/dist/object/mapKeys.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/mapKeys.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/mapKeys.js +27 -13
- package/node_modules/es-toolkit/dist/object/mapKeys.mjs +27 -9
- package/node_modules/es-toolkit/dist/object/mapValues.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/mapValues.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/mapValues.js +28 -13
- package/node_modules/es-toolkit/dist/object/mapValues.mjs +28 -9
- package/node_modules/es-toolkit/dist/object/merge.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/merge.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/merge.js +57 -31
- package/node_modules/es-toolkit/dist/object/merge.mjs +57 -27
- package/node_modules/es-toolkit/dist/object/mergeWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/object/mergeWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/object/mergeWith.js +67 -41
- package/node_modules/es-toolkit/dist/object/mergeWith.mjs +67 -37
- package/node_modules/es-toolkit/dist/object/omit.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/omit.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/omit.js +25 -11
- package/node_modules/es-toolkit/dist/object/omit.mjs +25 -7
- package/node_modules/es-toolkit/dist/object/omitBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/omitBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/omitBy.js +29 -15
- package/node_modules/es-toolkit/dist/object/omitBy.mjs +29 -11
- package/node_modules/es-toolkit/dist/object/pick.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/pick.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/pick.js +25 -13
- package/node_modules/es-toolkit/dist/object/pick.mjs +25 -9
- package/node_modules/es-toolkit/dist/object/pickBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/pickBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/pickBy.js +29 -15
- package/node_modules/es-toolkit/dist/object/pickBy.mjs +29 -11
- package/node_modules/es-toolkit/dist/object/sortKeys.d.mts +22 -0
- package/node_modules/es-toolkit/dist/object/sortKeys.d.ts +22 -0
- package/node_modules/es-toolkit/dist/object/sortKeys.js +30 -0
- package/node_modules/es-toolkit/dist/object/sortKeys.mjs +30 -0
- package/node_modules/es-toolkit/dist/object/toCamelCaseKeys.d.mts +6 -7
- package/node_modules/es-toolkit/dist/object/toCamelCaseKeys.d.ts +6 -7
- package/node_modules/es-toolkit/dist/object/toCamelCaseKeys.js +63 -24
- package/node_modules/es-toolkit/dist/object/toCamelCaseKeys.mjs +63 -20
- package/node_modules/es-toolkit/dist/object/toMerged.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/toMerged.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/toMerged.js +54 -27
- package/node_modules/es-toolkit/dist/object/toMerged.mjs +54 -23
- package/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.d.mts +6 -7
- package/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.d.ts +6 -7
- package/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.js +63 -24
- package/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.mjs +63 -20
- package/node_modules/es-toolkit/dist/predicate/index.d.mts +34 -32
- package/node_modules/es-toolkit/dist/predicate/index.d.ts +34 -32
- package/node_modules/es-toolkit/dist/predicate/index.js +69 -73
- package/node_modules/es-toolkit/dist/predicate/index.mjs +34 -32
- package/node_modules/es-toolkit/dist/predicate/isArrayBuffer.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isArrayBuffer.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isArrayBuffer.js +20 -6
- package/node_modules/es-toolkit/dist/predicate/isArrayBuffer.mjs +20 -2
- package/node_modules/es-toolkit/dist/predicate/isBlob.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBlob.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBlob.js +20 -9
- package/node_modules/es-toolkit/dist/predicate/isBlob.mjs +20 -5
- package/node_modules/es-toolkit/dist/predicate/isBoolean.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBoolean.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBoolean.js +25 -6
- package/node_modules/es-toolkit/dist/predicate/isBoolean.mjs +25 -2
- package/node_modules/es-toolkit/dist/predicate/isBrowser.d.mts +4 -3
- package/node_modules/es-toolkit/dist/predicate/isBrowser.d.ts +4 -3
- package/node_modules/es-toolkit/dist/predicate/isBrowser.js +17 -6
- package/node_modules/es-toolkit/dist/predicate/isBrowser.mjs +17 -2
- package/node_modules/es-toolkit/dist/predicate/isBuffer.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBuffer.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBuffer.js +22 -8
- package/node_modules/es-toolkit/dist/predicate/isBuffer.mjs +22 -4
- package/node_modules/es-toolkit/dist/predicate/isDate.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isDate.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isDate.js +16 -6
- package/node_modules/es-toolkit/dist/predicate/isDate.mjs +16 -2
- package/node_modules/es-toolkit/dist/predicate/isEmptyObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isEmptyObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isEmptyObject.js +16 -8
- package/node_modules/es-toolkit/dist/predicate/isEmptyObject.mjs +16 -4
- package/node_modules/es-toolkit/dist/predicate/isEqual.d.mts +6 -5
- package/node_modules/es-toolkit/dist/predicate/isEqual.d.ts +6 -5
- package/node_modules/es-toolkit/dist/predicate/isEqual.js +19 -9
- package/node_modules/es-toolkit/dist/predicate/isEqual.mjs +19 -5
- package/node_modules/es-toolkit/dist/predicate/isEqualWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/predicate/isEqualWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/predicate/isEqualWith.js +146 -183
- package/node_modules/es-toolkit/dist/predicate/isEqualWith.mjs +142 -179
- package/node_modules/es-toolkit/dist/predicate/isError.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isError.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isError.js +16 -6
- package/node_modules/es-toolkit/dist/predicate/isError.mjs +16 -2
- package/node_modules/es-toolkit/dist/predicate/isFile.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isFile.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isFile.js +23 -11
- package/node_modules/es-toolkit/dist/predicate/isFile.mjs +23 -7
- package/node_modules/es-toolkit/dist/predicate/isFunction.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isFunction.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isFunction.js +16 -6
- package/node_modules/es-toolkit/dist/predicate/isFunction.mjs +16 -2
- package/node_modules/es-toolkit/dist/predicate/isIterable.d.mts +26 -0
- package/node_modules/es-toolkit/dist/predicate/isIterable.d.ts +26 -0
- package/node_modules/es-toolkit/dist/predicate/isIterable.js +28 -0
- package/node_modules/es-toolkit/dist/predicate/isIterable.mjs +28 -0
- package/node_modules/es-toolkit/dist/predicate/isJSON.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isJSON.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isJSON.js +37 -15
- package/node_modules/es-toolkit/dist/predicate/isJSON.mjs +37 -11
- package/node_modules/es-toolkit/dist/predicate/isJSONValue.d.mts +9 -8
- package/node_modules/es-toolkit/dist/predicate/isJSONValue.d.ts +9 -8
- package/node_modules/es-toolkit/dist/predicate/isJSONValue.js +76 -39
- package/node_modules/es-toolkit/dist/predicate/isJSONValue.mjs +76 -35
- package/node_modules/es-toolkit/dist/predicate/isLength.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isLength.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isLength.js +24 -6
- package/node_modules/es-toolkit/dist/predicate/isLength.mjs +24 -2
- package/node_modules/es-toolkit/dist/predicate/isMap.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isMap.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isMap.js +20 -6
- package/node_modules/es-toolkit/dist/predicate/isMap.mjs +20 -2
- package/node_modules/es-toolkit/dist/predicate/isNil.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNil.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNil.js +22 -6
- package/node_modules/es-toolkit/dist/predicate/isNil.mjs +22 -2
- package/node_modules/es-toolkit/dist/predicate/isNode.d.mts +4 -3
- package/node_modules/es-toolkit/dist/predicate/isNode.d.ts +4 -3
- package/node_modules/es-toolkit/dist/predicate/isNode.js +17 -6
- package/node_modules/es-toolkit/dist/predicate/isNode.mjs +17 -2
- package/node_modules/es-toolkit/dist/predicate/isNotNil.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNotNil.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNotNil.js +19 -6
- package/node_modules/es-toolkit/dist/predicate/isNotNil.mjs +19 -2
- package/node_modules/es-toolkit/dist/predicate/isNull.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNull.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNull.js +23 -6
- package/node_modules/es-toolkit/dist/predicate/isNull.mjs +23 -2
- package/node_modules/es-toolkit/dist/predicate/isNumber.d.mts +7 -4
- package/node_modules/es-toolkit/dist/predicate/isNumber.d.ts +7 -4
- package/node_modules/es-toolkit/dist/predicate/isNumber.js +27 -6
- package/node_modules/es-toolkit/dist/predicate/isNumber.mjs +27 -2
- package/node_modules/es-toolkit/dist/predicate/isPlainObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isPlainObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isPlainObject.js +48 -16
- package/node_modules/es-toolkit/dist/predicate/isPlainObject.mjs +48 -12
- package/node_modules/es-toolkit/dist/predicate/isPrimitive.d.mts +5 -11
- package/node_modules/es-toolkit/dist/predicate/isPrimitive.d.ts +5 -11
- package/node_modules/es-toolkit/dist/predicate/isPrimitive.js +24 -6
- package/node_modules/es-toolkit/dist/predicate/isPrimitive.mjs +24 -2
- package/node_modules/es-toolkit/dist/predicate/isPromise.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isPromise.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isPromise.js +20 -6
- package/node_modules/es-toolkit/dist/predicate/isPromise.mjs +20 -2
- package/node_modules/es-toolkit/dist/predicate/isRegExp.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isRegExp.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isRegExp.js +16 -6
- package/node_modules/es-toolkit/dist/predicate/isRegExp.mjs +16 -2
- package/node_modules/es-toolkit/dist/predicate/isSet.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isSet.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isSet.js +20 -6
- package/node_modules/es-toolkit/dist/predicate/isSet.mjs +20 -2
- package/node_modules/es-toolkit/dist/predicate/isString.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isString.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isString.js +20 -6
- package/node_modules/es-toolkit/dist/predicate/isString.mjs +20 -2
- package/node_modules/es-toolkit/dist/predicate/isSymbol.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isSymbol.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isSymbol.js +26 -6
- package/node_modules/es-toolkit/dist/predicate/isSymbol.mjs +26 -2
- package/node_modules/es-toolkit/dist/predicate/isTypedArray.d.mts +5 -15
- package/node_modules/es-toolkit/dist/predicate/isTypedArray.d.ts +5 -15
- package/node_modules/es-toolkit/dist/predicate/isTypedArray.js +18 -6
- package/node_modules/es-toolkit/dist/predicate/isTypedArray.mjs +18 -2
- package/node_modules/es-toolkit/dist/predicate/isUndefined.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isUndefined.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isUndefined.js +23 -6
- package/node_modules/es-toolkit/dist/predicate/isUndefined.mjs +23 -2
- package/node_modules/es-toolkit/dist/predicate/isWeakMap.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isWeakMap.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isWeakMap.js +23 -6
- package/node_modules/es-toolkit/dist/predicate/isWeakMap.mjs +23 -2
- package/node_modules/es-toolkit/dist/predicate/isWeakSet.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isWeakSet.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isWeakSet.js +23 -6
- package/node_modules/es-toolkit/dist/predicate/isWeakSet.mjs +23 -2
- package/node_modules/es-toolkit/dist/promise/allKeyed.d.mts +31 -0
- package/node_modules/es-toolkit/dist/promise/allKeyed.d.ts +31 -0
- package/node_modules/es-toolkit/dist/promise/allKeyed.js +37 -0
- package/node_modules/es-toolkit/dist/promise/allKeyed.mjs +37 -0
- package/node_modules/es-toolkit/dist/promise/delay.d.mts +11 -8
- package/node_modules/es-toolkit/dist/promise/delay.d.ts +11 -8
- package/node_modules/es-toolkit/dist/promise/delay.js +50 -24
- package/node_modules/es-toolkit/dist/promise/delay.mjs +50 -20
- package/node_modules/es-toolkit/dist/promise/index.d.mts +7 -5
- package/node_modules/es-toolkit/dist/promise/index.d.ts +7 -5
- package/node_modules/es-toolkit/dist/promise/index.js +13 -17
- package/node_modules/es-toolkit/dist/promise/index.mjs +7 -5
- package/node_modules/es-toolkit/dist/promise/mutex.d.mts +44 -43
- package/node_modules/es-toolkit/dist/promise/mutex.d.ts +44 -43
- package/node_modules/es-toolkit/dist/promise/mutex.js +71 -19
- package/node_modules/es-toolkit/dist/promise/mutex.mjs +71 -15
- package/node_modules/es-toolkit/dist/promise/semaphore.d.mts +55 -54
- package/node_modules/es-toolkit/dist/promise/semaphore.d.ts +55 -54
- package/node_modules/es-toolkit/dist/promise/semaphore.js +99 -33
- package/node_modules/es-toolkit/dist/promise/semaphore.mjs +99 -29
- package/node_modules/es-toolkit/dist/promise/timeout.d.mts +29 -5
- package/node_modules/es-toolkit/dist/promise/timeout.d.ts +29 -5
- package/node_modules/es-toolkit/dist/promise/timeout.js +47 -11
- package/node_modules/es-toolkit/dist/promise/timeout.mjs +47 -7
- package/node_modules/es-toolkit/dist/promise/withTimeout.d.mts +25 -6
- package/node_modules/es-toolkit/dist/promise/withTimeout.d.ts +25 -6
- package/node_modules/es-toolkit/dist/promise/withTimeout.js +43 -9
- package/node_modules/es-toolkit/dist/promise/withTimeout.mjs +43 -5
- package/node_modules/es-toolkit/dist/server/colors/_internal/parseHex.js +32 -0
- package/node_modules/es-toolkit/dist/server/colors/_internal/parseHex.mjs +32 -0
- package/node_modules/es-toolkit/dist/server/colors/_internal/wrapAnsi.js +21 -0
- package/node_modules/es-toolkit/dist/server/colors/_internal/wrapAnsi.mjs +21 -0
- package/node_modules/es-toolkit/dist/server/colors/_internal/wrapAnsiBg.js +30 -0
- package/node_modules/es-toolkit/dist/server/colors/_internal/wrapAnsiBg.mjs +30 -0
- package/node_modules/es-toolkit/dist/server/colors/ansi256.d.mts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/ansi256.d.ts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/ansi256.js +19 -0
- package/node_modules/es-toolkit/dist/server/colors/ansi256.mjs +19 -0
- package/node_modules/es-toolkit/dist/server/colors/bgAnsi256.d.mts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgAnsi256.d.ts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgAnsi256.js +19 -0
- package/node_modules/es-toolkit/dist/server/colors/bgAnsi256.mjs +19 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlack.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlack.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlack.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlack.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlackBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlackBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlackBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlackBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlue.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlue.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlue.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlue.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlueBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlueBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlueBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlueBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyan.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyan.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyan.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyan.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyanBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyanBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyanBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyanBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreen.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreen.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreen.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreen.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreenBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreenBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreenBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreenBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgHex.d.mts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgHex.d.ts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgHex.js +21 -0
- package/node_modules/es-toolkit/dist/server/colors/bgHex.mjs +21 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagenta.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagenta.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagenta.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagenta.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagentaBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagentaBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagentaBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagentaBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRed.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRed.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRed.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRed.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRedBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRedBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRedBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRedBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRgb.d.mts +20 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRgb.d.ts +20 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRgb.js +21 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRgb.mjs +21 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhite.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhite.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhite.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhite.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhiteBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhiteBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhiteBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhiteBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellow.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellow.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellow.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellow.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellowBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellowBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellowBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellowBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/black.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/black.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/black.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/black.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blackBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blackBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blackBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blackBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blue.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blue.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blue.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blue.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blueBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blueBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blueBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blueBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bold.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bold.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bold.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bold.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/cyan.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/cyan.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/cyan.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/cyan.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/cyanBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/cyanBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/cyanBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/cyanBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/dim.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/dim.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/dim.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/dim.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/gray.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/gray.mjs +19 -0
- package/node_modules/es-toolkit/dist/server/colors/green.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/green.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/green.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/green.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/greenBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/greenBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/greenBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/greenBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/hex.d.mts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/hex.d.ts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/hex.js +21 -0
- package/node_modules/es-toolkit/dist/server/colors/hex.mjs +21 -0
- package/node_modules/es-toolkit/dist/server/colors/hidden.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/hidden.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/hidden.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/hidden.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/index.d.mts +99 -0
- package/node_modules/es-toolkit/dist/server/colors/index.d.ts +99 -0
- package/node_modules/es-toolkit/dist/server/colors/index.js +99 -0
- package/node_modules/es-toolkit/dist/server/colors/index.mjs +99 -0
- package/node_modules/es-toolkit/dist/server/colors/inverse.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/inverse.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/inverse.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/inverse.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/italic.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/italic.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/italic.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/italic.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/magenta.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/magenta.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/magenta.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/magenta.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/magentaBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/magentaBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/magentaBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/magentaBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/red.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/red.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/red.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/red.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/redBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/redBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/redBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/redBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/reset.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/reset.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/reset.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/reset.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/rgb.d.mts +20 -0
- package/node_modules/es-toolkit/dist/server/colors/rgb.d.ts +20 -0
- package/node_modules/es-toolkit/dist/server/colors/rgb.js +21 -0
- package/node_modules/es-toolkit/dist/server/colors/rgb.mjs +21 -0
- package/node_modules/es-toolkit/dist/server/colors/strikethrough.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/strikethrough.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/strikethrough.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/strikethrough.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/types.d.mts +4 -0
- package/node_modules/es-toolkit/dist/server/colors/types.d.ts +4 -0
- package/node_modules/es-toolkit/dist/server/colors/underline.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/underline.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/underline.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/underline.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/white.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/white.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/white.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/white.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/whiteBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/whiteBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/whiteBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/whiteBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/yellow.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/yellow.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/yellow.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/yellow.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/yellowBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/yellowBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/yellowBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/yellowBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/exec.d.mts +63 -0
- package/node_modules/es-toolkit/dist/server/exec.d.ts +63 -0
- package/node_modules/es-toolkit/dist/server/exec.js +103 -0
- package/node_modules/es-toolkit/dist/server/exec.mjs +102 -0
- package/node_modules/es-toolkit/dist/server/index.d.mts +4 -0
- package/node_modules/es-toolkit/dist/server/index.d.ts +4 -0
- package/node_modules/es-toolkit/dist/server/index.js +6 -0
- package/node_modules/es-toolkit/dist/server/index.mjs +3 -0
- package/node_modules/es-toolkit/dist/set/countBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/countBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/countBy.js +31 -11
- package/node_modules/es-toolkit/dist/set/countBy.mjs +31 -7
- package/node_modules/es-toolkit/dist/set/every.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/every.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/every.js +24 -11
- package/node_modules/es-toolkit/dist/set/every.mjs +24 -7
- package/node_modules/es-toolkit/dist/set/filter.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/filter.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/filter.js +22 -12
- package/node_modules/es-toolkit/dist/set/filter.mjs +22 -8
- package/node_modules/es-toolkit/dist/set/find.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/find.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/find.js +24 -11
- package/node_modules/es-toolkit/dist/set/find.mjs +24 -7
- package/node_modules/es-toolkit/dist/set/forEach.d.mts +5 -5
- package/node_modules/es-toolkit/dist/set/forEach.d.ts +5 -5
- package/node_modules/es-toolkit/dist/set/forEach.js +24 -8
- package/node_modules/es-toolkit/dist/set/forEach.mjs +24 -4
- package/node_modules/es-toolkit/dist/set/index.d.mts +10 -9
- package/node_modules/es-toolkit/dist/set/index.d.ts +10 -9
- package/node_modules/es-toolkit/dist/set/index.js +19 -25
- package/node_modules/es-toolkit/dist/set/index.mjs +10 -9
- package/node_modules/es-toolkit/dist/set/keyBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/keyBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/keyBy.js +35 -11
- package/node_modules/es-toolkit/dist/set/keyBy.mjs +35 -7
- package/node_modules/es-toolkit/dist/set/map.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/map.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/map.js +26 -11
- package/node_modules/es-toolkit/dist/set/map.mjs +26 -7
- package/node_modules/es-toolkit/dist/set/reduce.d.mts +7 -6
- package/node_modules/es-toolkit/dist/set/reduce.d.ts +7 -6
- package/node_modules/es-toolkit/dist/set/reduce.js +32 -18
- package/node_modules/es-toolkit/dist/set/reduce.mjs +32 -14
- package/node_modules/es-toolkit/dist/set/some.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/some.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/some.js +24 -11
- package/node_modules/es-toolkit/dist/set/some.mjs +24 -7
- package/node_modules/es-toolkit/dist/string/camelCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/camelCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/camelCase.js +24 -14
- package/node_modules/es-toolkit/dist/string/camelCase.mjs +24 -10
- package/node_modules/es-toolkit/dist/string/capitalize.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/capitalize.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/capitalize.js +14 -6
- package/node_modules/es-toolkit/dist/string/capitalize.mjs +14 -2
- package/node_modules/es-toolkit/dist/string/constantCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/constantCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/constantCase.js +18 -9
- package/node_modules/es-toolkit/dist/string/constantCase.mjs +18 -5
- package/node_modules/es-toolkit/dist/string/deburr.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/deburr.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/deburr.js +58 -44
- package/node_modules/es-toolkit/dist/string/deburr.mjs +58 -40
- package/node_modules/es-toolkit/dist/string/escape.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/escape.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/escape.js +21 -11
- package/node_modules/es-toolkit/dist/string/escape.mjs +21 -7
- package/node_modules/es-toolkit/dist/string/escapeRegExp.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/escapeRegExp.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/escapeRegExp.js +14 -6
- package/node_modules/es-toolkit/dist/string/escapeRegExp.mjs +14 -2
- package/node_modules/es-toolkit/dist/string/index.d.mts +22 -21
- package/node_modules/es-toolkit/dist/string/index.d.ts +22 -21
- package/node_modules/es-toolkit/dist/string/index.js +43 -49
- package/node_modules/es-toolkit/dist/string/index.mjs +22 -21
- package/node_modules/es-toolkit/dist/string/kebabCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/kebabCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/kebabCase.js +18 -9
- package/node_modules/es-toolkit/dist/string/kebabCase.mjs +18 -5
- package/node_modules/es-toolkit/dist/string/lowerCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/lowerCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/lowerCase.js +18 -9
- package/node_modules/es-toolkit/dist/string/lowerCase.mjs +18 -5
- package/node_modules/es-toolkit/dist/string/lowerFirst.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/lowerFirst.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/lowerFirst.js +14 -6
- package/node_modules/es-toolkit/dist/string/lowerFirst.mjs +14 -2
- package/node_modules/es-toolkit/dist/string/pad.d.mts +7 -6
- package/node_modules/es-toolkit/dist/string/pad.d.ts +7 -6
- package/node_modules/es-toolkit/dist/string/pad.js +20 -7
- package/node_modules/es-toolkit/dist/string/pad.mjs +20 -3
- package/node_modules/es-toolkit/dist/string/pascalCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/pascalCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/pascalCase.js +19 -10
- package/node_modules/es-toolkit/dist/string/pascalCase.mjs +19 -6
- package/node_modules/es-toolkit/dist/string/reverseString.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/reverseString.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/reverseString.js +16 -6
- package/node_modules/es-toolkit/dist/string/reverseString.mjs +16 -2
- package/node_modules/es-toolkit/dist/string/snakeCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/snakeCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/snakeCase.js +18 -9
- package/node_modules/es-toolkit/dist/string/snakeCase.mjs +18 -5
- package/node_modules/es-toolkit/dist/string/startCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/startCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/startCase.js +24 -17
- package/node_modules/es-toolkit/dist/string/startCase.mjs +24 -13
- package/node_modules/es-toolkit/dist/string/trim.d.mts +6 -5
- package/node_modules/es-toolkit/dist/string/trim.d.ts +6 -5
- package/node_modules/es-toolkit/dist/string/trim.js +18 -12
- package/node_modules/es-toolkit/dist/string/trim.mjs +18 -8
- package/node_modules/es-toolkit/dist/string/trimEnd.d.mts +6 -5
- package/node_modules/es-toolkit/dist/string/trimEnd.d.ts +6 -5
- package/node_modules/es-toolkit/dist/string/trimEnd.js +28 -26
- package/node_modules/es-toolkit/dist/string/trimEnd.mjs +28 -22
- package/node_modules/es-toolkit/dist/string/trimStart.d.mts +6 -5
- package/node_modules/es-toolkit/dist/string/trimStart.d.ts +6 -5
- package/node_modules/es-toolkit/dist/string/trimStart.js +28 -23
- package/node_modules/es-toolkit/dist/string/trimStart.mjs +28 -19
- package/node_modules/es-toolkit/dist/string/unescape.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/unescape.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/unescape.js +21 -11
- package/node_modules/es-toolkit/dist/string/unescape.mjs +21 -7
- package/node_modules/es-toolkit/dist/string/upperCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/upperCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/upperCase.js +24 -16
- package/node_modules/es-toolkit/dist/string/upperCase.mjs +24 -12
- package/node_modules/es-toolkit/dist/string/upperFirst.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/upperFirst.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/upperFirst.js +14 -6
- package/node_modules/es-toolkit/dist/string/upperFirst.mjs +14 -2
- package/node_modules/es-toolkit/dist/string/words.d.mts +24 -5
- package/node_modules/es-toolkit/dist/string/words.d.ts +24 -5
- package/node_modules/es-toolkit/dist/string/words.js +37 -7
- package/node_modules/es-toolkit/dist/string/words.mjs +38 -3
- package/node_modules/es-toolkit/dist/util/attempt.d.mts +5 -4
- package/node_modules/es-toolkit/dist/util/attempt.d.ts +5 -4
- package/node_modules/es-toolkit/dist/util/attempt.js +46 -11
- package/node_modules/es-toolkit/dist/util/attempt.mjs +46 -7
- package/node_modules/es-toolkit/dist/util/attemptAsync.d.mts +5 -4
- package/node_modules/es-toolkit/dist/util/attemptAsync.d.ts +5 -4
- package/node_modules/es-toolkit/dist/util/attemptAsync.js +39 -12
- package/node_modules/es-toolkit/dist/util/attemptAsync.mjs +39 -8
- package/node_modules/es-toolkit/dist/util/index.d.mts +4 -3
- package/node_modules/es-toolkit/dist/util/index.d.ts +4 -3
- package/node_modules/es-toolkit/dist/util/index.js +8 -14
- package/node_modules/es-toolkit/dist/util/index.mjs +4 -3
- package/node_modules/es-toolkit/dist/util/invariant.d.mts +9 -8
- package/node_modules/es-toolkit/dist/util/invariant.d.ts +9 -8
- package/node_modules/es-toolkit/dist/util/invariant.js +29 -12
- package/node_modules/es-toolkit/dist/util/invariant.mjs +29 -8
- package/node_modules/es-toolkit/fp.d.ts +1 -0
- package/node_modules/es-toolkit/fp.js +1 -0
- package/node_modules/es-toolkit/package.json +67 -15
- package/node_modules/es-toolkit/server.d.ts +1 -0
- package/node_modules/es-toolkit/server.js +1 -0
- package/node_modules/fs-ext/.eslintrc +53 -0
- package/node_modules/fs-ext/.github/workflows/node.js.yml +31 -0
- package/node_modules/fs-ext/.travis.yml +25 -0
- package/node_modules/fs-ext/LICENSE.txt +18 -0
- package/node_modules/fs-ext/README.md +130 -0
- package/node_modules/fs-ext/appveyor.yml +20 -0
- package/node_modules/fs-ext/binding.gyp +11 -0
- package/node_modules/fs-ext/example.js +57 -0
- package/node_modules/fs-ext/fs-ext.cc +622 -0
- package/node_modules/fs-ext/fs-ext.js +131 -0
- package/node_modules/fs-ext/package.json +42 -0
- package/node_modules/fs-ext/run_tests.js +17 -0
- package/node_modules/fs-ext/tests/test-fs-fcntl.js +350 -0
- package/node_modules/fs-ext/tests/test-fs-flock.js +452 -0
- package/node_modules/fs-ext/tests/test-fs-flock_stress.js +239 -0
- package/node_modules/fs-ext/tests/test-fs-seek.js +607 -0
- package/node_modules/fs-ext/tests/test-fs-seek_stress.js +313 -0
- package/node_modules/fs-ext/tests/test-fs-statvfs.js +15 -0
- package/node_modules/fs-ext/tests/worker-test.js +56 -0
- package/node_modules/fs-ext/wscript +15 -0
- package/node_modules/graphql/error/GraphQLError.d.ts +151 -15
- package/node_modules/graphql/error/GraphQLError.js +143 -12
- package/node_modules/graphql/error/GraphQLError.mjs +143 -12
- package/node_modules/graphql/error/index.d.ts +6 -0
- package/node_modules/graphql/error/index.mjs +6 -0
- package/node_modules/graphql/error/locatedError.d.ts +20 -0
- package/node_modules/graphql/error/locatedError.js +21 -0
- package/node_modules/graphql/error/locatedError.mjs +20 -0
- package/node_modules/graphql/error/syntaxError.d.ts +15 -0
- package/node_modules/graphql/error/syntaxError.js +16 -0
- package/node_modules/graphql/error/syntaxError.mjs +15 -0
- package/node_modules/graphql/execution/collectFields.js +6 -0
- package/node_modules/graphql/execution/collectFields.mjs +6 -0
- package/node_modules/graphql/execution/execute.d.ts +222 -10
- package/node_modules/graphql/execution/execute.js +269 -28
- package/node_modules/graphql/execution/execute.mjs +268 -28
- package/node_modules/graphql/execution/index.d.ts +6 -0
- package/node_modules/graphql/execution/index.mjs +6 -0
- package/node_modules/graphql/execution/mapAsyncIterator.d.ts +2 -0
- package/node_modules/graphql/execution/mapAsyncIterator.js +2 -0
- package/node_modules/graphql/execution/mapAsyncIterator.mjs +2 -0
- package/node_modules/graphql/execution/subscribe.d.ts +195 -5
- package/node_modules/graphql/execution/subscribe.js +155 -11
- package/node_modules/graphql/execution/subscribe.mjs +155 -11
- package/node_modules/graphql/execution/values.d.ts +167 -10
- package/node_modules/graphql/execution/values.js +153 -9
- package/node_modules/graphql/execution/values.mjs +152 -9
- package/node_modules/graphql/graphql.d.ts +163 -41
- package/node_modules/graphql/graphql.js +126 -4
- package/node_modules/graphql/graphql.mjs +131 -41
- package/node_modules/graphql/index.d.ts +12 -17
- package/node_modules/graphql/index.mjs +13 -19
- package/node_modules/graphql/jsutils/Maybe.d.ts +5 -1
- package/node_modules/graphql/jsutils/ObjMap.d.ts +4 -0
- package/node_modules/graphql/jsutils/Path.d.ts +30 -0
- package/node_modules/graphql/jsutils/Path.js +29 -0
- package/node_modules/graphql/jsutils/Path.mjs +29 -0
- package/node_modules/graphql/jsutils/PromiseOrValue.d.ts +1 -0
- package/node_modules/graphql/jsutils/devAssert.d.ts +1 -0
- package/node_modules/graphql/jsutils/devAssert.js +1 -0
- package/node_modules/graphql/jsutils/devAssert.mjs +1 -0
- package/node_modules/graphql/jsutils/didYouMean.d.ts +4 -1
- package/node_modules/graphql/jsutils/didYouMean.js +4 -1
- package/node_modules/graphql/jsutils/didYouMean.mjs +4 -1
- package/node_modules/graphql/jsutils/groupBy.d.ts +2 -0
- package/node_modules/graphql/jsutils/groupBy.js +2 -0
- package/node_modules/graphql/jsutils/groupBy.mjs +2 -0
- package/node_modules/graphql/jsutils/identityFunc.d.ts +2 -0
- package/node_modules/graphql/jsutils/identityFunc.js +2 -0
- package/node_modules/graphql/jsutils/identityFunc.mjs +2 -0
- package/node_modules/graphql/jsutils/inspect.d.ts +2 -0
- package/node_modules/graphql/jsutils/inspect.js +2 -0
- package/node_modules/graphql/jsutils/inspect.mjs +2 -0
- package/node_modules/graphql/jsutils/instanceOf.d.ts +2 -0
- package/node_modules/graphql/jsutils/instanceOf.js +2 -0
- package/node_modules/graphql/jsutils/instanceOf.mjs +2 -0
- package/node_modules/graphql/jsutils/invariant.d.ts +1 -0
- package/node_modules/graphql/jsutils/invariant.js +1 -0
- package/node_modules/graphql/jsutils/invariant.mjs +1 -0
- package/node_modules/graphql/jsutils/isAsyncIterable.d.ts +2 -0
- package/node_modules/graphql/jsutils/isAsyncIterable.js +2 -0
- package/node_modules/graphql/jsutils/isAsyncIterable.mjs +2 -0
- package/node_modules/graphql/jsutils/isIterableObject.d.ts +6 -5
- package/node_modules/graphql/jsutils/isIterableObject.js +6 -5
- package/node_modules/graphql/jsutils/isIterableObject.mjs +6 -5
- package/node_modules/graphql/jsutils/isObjectLike.d.ts +2 -0
- package/node_modules/graphql/jsutils/isObjectLike.js +2 -0
- package/node_modules/graphql/jsutils/isObjectLike.mjs +2 -0
- package/node_modules/graphql/jsutils/isPromise.d.ts +2 -0
- package/node_modules/graphql/jsutils/isPromise.js +2 -0
- package/node_modules/graphql/jsutils/isPromise.mjs +2 -0
- package/node_modules/graphql/jsutils/keyMap.d.ts +7 -14
- package/node_modules/graphql/jsutils/keyMap.js +7 -14
- package/node_modules/graphql/jsutils/keyMap.mjs +7 -14
- package/node_modules/graphql/jsutils/keyValMap.d.ts +9 -6
- package/node_modules/graphql/jsutils/keyValMap.js +9 -6
- package/node_modules/graphql/jsutils/keyValMap.mjs +9 -6
- package/node_modules/graphql/jsutils/mapValue.d.ts +2 -0
- package/node_modules/graphql/jsutils/mapValue.js +2 -0
- package/node_modules/graphql/jsutils/mapValue.mjs +2 -0
- package/node_modules/graphql/jsutils/memoize3.d.ts +2 -0
- package/node_modules/graphql/jsutils/memoize3.js +2 -0
- package/node_modules/graphql/jsutils/memoize3.mjs +2 -0
- package/node_modules/graphql/jsutils/naturalCompare.d.ts +2 -0
- package/node_modules/graphql/jsutils/naturalCompare.js +2 -0
- package/node_modules/graphql/jsutils/naturalCompare.mjs +2 -0
- package/node_modules/graphql/jsutils/printPathArray.d.ts +2 -0
- package/node_modules/graphql/jsutils/printPathArray.js +2 -0
- package/node_modules/graphql/jsutils/printPathArray.mjs +2 -0
- package/node_modules/graphql/jsutils/promiseForObject.d.ts +2 -0
- package/node_modules/graphql/jsutils/promiseForObject.js +2 -0
- package/node_modules/graphql/jsutils/promiseForObject.mjs +2 -0
- package/node_modules/graphql/jsutils/promiseReduce.d.ts +2 -0
- package/node_modules/graphql/jsutils/promiseReduce.js +2 -0
- package/node_modules/graphql/jsutils/promiseReduce.mjs +2 -0
- package/node_modules/graphql/jsutils/suggestionList.d.ts +2 -0
- package/node_modules/graphql/jsutils/suggestionList.js +4 -0
- package/node_modules/graphql/jsutils/suggestionList.mjs +4 -0
- package/node_modules/graphql/jsutils/toError.d.ts +2 -0
- package/node_modules/graphql/jsutils/toError.js +2 -0
- package/node_modules/graphql/jsutils/toError.mjs +2 -0
- package/node_modules/graphql/jsutils/toObjMap.d.ts +1 -0
- package/node_modules/graphql/jsutils/toObjMap.js +1 -0
- package/node_modules/graphql/jsutils/toObjMap.mjs +1 -0
- package/node_modules/graphql/language/ast.d.ts +422 -55
- package/node_modules/graphql/language/ast.js +103 -39
- package/node_modules/graphql/language/ast.mjs +103 -39
- package/node_modules/graphql/language/blockString.d.ts +1 -3
- package/node_modules/graphql/language/blockString.js +1 -3
- package/node_modules/graphql/language/blockString.mjs +1 -3
- package/node_modules/graphql/language/directiveLocation.d.ts +29 -8
- package/node_modules/graphql/language/directiveLocation.js +10 -6
- package/node_modules/graphql/language/directiveLocation.mjs +10 -6
- package/node_modules/graphql/language/index.d.ts +7 -0
- package/node_modules/graphql/language/index.mjs +6 -0
- package/node_modules/graphql/language/kinds.d.ts +58 -18
- package/node_modules/graphql/language/kinds.js +10 -6
- package/node_modules/graphql/language/kinds.mjs +10 -6
- package/node_modules/graphql/language/lexer.d.ts +47 -14
- package/node_modules/graphql/language/lexer.js +71 -13
- package/node_modules/graphql/language/lexer.mjs +70 -13
- package/node_modules/graphql/language/location.d.ts +16 -3
- package/node_modules/graphql/language/location.js +14 -3
- package/node_modules/graphql/language/location.mjs +14 -3
- package/node_modules/graphql/language/parser.d.ts +248 -11
- package/node_modules/graphql/language/parser.js +257 -0
- package/node_modules/graphql/language/parser.mjs +257 -3
- package/node_modules/graphql/language/predicates.d.ts +169 -0
- package/node_modules/graphql/language/predicates.js +173 -1
- package/node_modules/graphql/language/predicates.mjs +185 -1
- package/node_modules/graphql/language/printLocation.d.ts +28 -0
- package/node_modules/graphql/language/printLocation.js +29 -0
- package/node_modules/graphql/language/printLocation.mjs +28 -0
- package/node_modules/graphql/language/printString.d.ts +2 -0
- package/node_modules/graphql/language/printString.js +5 -1
- package/node_modules/graphql/language/printString.mjs +5 -1
- package/node_modules/graphql/language/printer.d.ts +12 -0
- package/node_modules/graphql/language/printer.js +32 -1
- package/node_modules/graphql/language/printer.mjs +31 -1
- package/node_modules/graphql/language/schemaCoordinateLexer.d.ts +8 -6
- package/node_modules/graphql/language/schemaCoordinateLexer.js +10 -6
- package/node_modules/graphql/language/schemaCoordinateLexer.mjs +10 -6
- package/node_modules/graphql/language/source.d.ts +28 -0
- package/node_modules/graphql/language/source.js +32 -0
- package/node_modules/graphql/language/source.mjs +31 -0
- package/node_modules/graphql/language/tokenKind.d.ts +30 -3
- package/node_modules/graphql/language/tokenKind.js +8 -3
- package/node_modules/graphql/language/tokenKind.mjs +8 -3
- package/node_modules/graphql/language/visitor.d.ts +200 -72
- package/node_modules/graphql/language/visitor.js +122 -50
- package/node_modules/graphql/language/visitor.mjs +122 -54
- package/node_modules/graphql/package.json +1 -1
- package/node_modules/graphql/subscription/index.d.ts +9 -3
- package/node_modules/graphql/subscription/index.mjs +9 -3
- package/node_modules/graphql/type/assertName.d.ts +18 -1
- package/node_modules/graphql/type/assertName.js +19 -1
- package/node_modules/graphql/type/assertName.mjs +18 -1
- package/node_modules/graphql/type/definition.d.ts +2540 -79
- package/node_modules/graphql/type/definition.js +2214 -61
- package/node_modules/graphql/type/definition.mjs +2241 -60
- package/node_modules/graphql/type/directives.d.ts +202 -19
- package/node_modules/graphql/type/directives.js +206 -20
- package/node_modules/graphql/type/directives.mjs +206 -20
- package/node_modules/graphql/type/index.d.ts +6 -0
- package/node_modules/graphql/type/index.mjs +6 -0
- package/node_modules/graphql/type/introspection.d.ts +36 -0
- package/node_modules/graphql/type/introspection.js +57 -1
- package/node_modules/graphql/type/introspection.mjs +65 -1
- package/node_modules/graphql/type/scalars.d.ts +29 -2
- package/node_modules/graphql/type/scalars.js +37 -2
- package/node_modules/graphql/type/scalars.mjs +36 -2
- package/node_modules/graphql/type/schema.d.ts +490 -28
- package/node_modules/graphql/type/schema.js +484 -26
- package/node_modules/graphql/type/schema.mjs +484 -26
- package/node_modules/graphql/type/validate.d.ts +31 -0
- package/node_modules/graphql/type/validate.js +32 -0
- package/node_modules/graphql/type/validate.mjs +31 -0
- package/node_modules/graphql/utilities/TypeInfo.d.ts +441 -1
- package/node_modules/graphql/utilities/TypeInfo.js +444 -1
- package/node_modules/graphql/utilities/TypeInfo.mjs +443 -1
- package/node_modules/graphql/utilities/assertValidName.d.ts +27 -2
- package/node_modules/graphql/utilities/assertValidName.js +28 -2
- package/node_modules/graphql/utilities/assertValidName.mjs +27 -2
- package/node_modules/graphql/utilities/astFromValue.d.ts +33 -3
- package/node_modules/graphql/utilities/astFromValue.js +36 -3
- package/node_modules/graphql/utilities/astFromValue.mjs +35 -3
- package/node_modules/graphql/utilities/buildASTSchema.d.ts +65 -6
- package/node_modules/graphql/utilities/buildASTSchema.js +69 -6
- package/node_modules/graphql/utilities/buildASTSchema.mjs +69 -6
- package/node_modules/graphql/utilities/buildClientSchema.d.ts +15 -0
- package/node_modules/graphql/utilities/buildClientSchema.js +17 -0
- package/node_modules/graphql/utilities/buildClientSchema.mjs +16 -0
- package/node_modules/graphql/utilities/coerceInputValue.d.ts +46 -0
- package/node_modules/graphql/utilities/coerceInputValue.js +49 -2
- package/node_modules/graphql/utilities/coerceInputValue.mjs +48 -2
- package/node_modules/graphql/utilities/concatAST.d.ts +12 -0
- package/node_modules/graphql/utilities/concatAST.js +13 -0
- package/node_modules/graphql/utilities/concatAST.mjs +12 -0
- package/node_modules/graphql/utilities/extendSchema.d.ts +56 -3
- package/node_modules/graphql/utilities/extendSchema.js +121 -6
- package/node_modules/graphql/utilities/extendSchema.mjs +120 -6
- package/node_modules/graphql/utilities/findBreakingChanges.d.ts +95 -0
- package/node_modules/graphql/utilities/findBreakingChanges.js +68 -0
- package/node_modules/graphql/utilities/findBreakingChanges.mjs +70 -0
- package/node_modules/graphql/utilities/getIntrospectionQuery.d.ts +148 -0
- package/node_modules/graphql/utilities/getIntrospectionQuery.js +72 -38
- package/node_modules/graphql/utilities/getIntrospectionQuery.mjs +72 -38
- package/node_modules/graphql/utilities/getOperationAST.d.ts +15 -0
- package/node_modules/graphql/utilities/getOperationAST.js +16 -0
- package/node_modules/graphql/utilities/getOperationAST.mjs +15 -0
- package/node_modules/graphql/utilities/getOperationRootType.d.ts +18 -1
- package/node_modules/graphql/utilities/getOperationRootType.js +19 -1
- package/node_modules/graphql/utilities/getOperationRootType.mjs +18 -1
- package/node_modules/graphql/utilities/index.d.ts +7 -0
- package/node_modules/graphql/utilities/index.mjs +7 -0
- package/node_modules/graphql/utilities/introspectionFromSchema.d.ts +54 -0
- package/node_modules/graphql/utilities/introspectionFromSchema.js +56 -0
- package/node_modules/graphql/utilities/introspectionFromSchema.mjs +55 -0
- package/node_modules/graphql/utilities/lexicographicSortSchema.d.ts +35 -0
- package/node_modules/graphql/utilities/lexicographicSortSchema.js +36 -0
- package/node_modules/graphql/utilities/lexicographicSortSchema.mjs +35 -0
- package/node_modules/graphql/utilities/printSchema.d.ts +63 -0
- package/node_modules/graphql/utilities/printSchema.js +67 -0
- package/node_modules/graphql/utilities/printSchema.mjs +68 -0
- package/node_modules/graphql/utilities/resolveSchemaCoordinate.d.ts +62 -0
- package/node_modules/graphql/utilities/resolveSchemaCoordinate.js +64 -0
- package/node_modules/graphql/utilities/resolveSchemaCoordinate.mjs +63 -0
- package/node_modules/graphql/utilities/separateOperations.d.ts +30 -0
- package/node_modules/graphql/utilities/separateOperations.js +31 -0
- package/node_modules/graphql/utilities/separateOperations.mjs +30 -0
- package/node_modules/graphql/utilities/stripIgnoredCharacters.d.ts +13 -6
- package/node_modules/graphql/utilities/stripIgnoredCharacters.js +16 -6
- package/node_modules/graphql/utilities/stripIgnoredCharacters.mjs +15 -6
- package/node_modules/graphql/utilities/typeComparators.d.ts +84 -0
- package/node_modules/graphql/utilities/typeComparators.js +85 -0
- package/node_modules/graphql/utilities/typeComparators.mjs +84 -0
- package/node_modules/graphql/utilities/typeFromAST.d.ts +86 -0
- package/node_modules/graphql/utilities/typeFromAST.js +3 -0
- package/node_modules/graphql/utilities/typeFromAST.mjs +3 -0
- package/node_modules/graphql/utilities/typedQueryDocumentNode.d.ts +4 -0
- package/node_modules/graphql/utilities/valueFromAST.d.ts +38 -0
- package/node_modules/graphql/utilities/valueFromAST.js +51 -2
- package/node_modules/graphql/utilities/valueFromAST.mjs +50 -2
- package/node_modules/graphql/utilities/valueFromASTUntyped.d.ts +15 -2
- package/node_modules/graphql/utilities/valueFromASTUntyped.js +16 -2
- package/node_modules/graphql/utilities/valueFromASTUntyped.mjs +15 -2
- package/node_modules/graphql/validation/ValidationContext.d.ts +399 -0
- package/node_modules/graphql/validation/ValidationContext.js +400 -0
- package/node_modules/graphql/validation/ValidationContext.mjs +401 -0
- package/node_modules/graphql/validation/index.d.ts +6 -0
- package/node_modules/graphql/validation/index.mjs +6 -0
- package/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.js +29 -0
- package/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.js +33 -0
- package/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs +32 -0
- package/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.js +29 -0
- package/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts +29 -3
- package/node_modules/graphql/validation/rules/KnownArgumentNamesRule.js +30 -3
- package/node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs +29 -3
- package/node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/KnownDirectivesRule.js +33 -0
- package/node_modules/graphql/validation/rules/KnownDirectivesRule.mjs +32 -0
- package/node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/KnownFragmentNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/KnownTypeNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.js +29 -0
- package/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.js +22 -0
- package/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.d.ts +31 -0
- package/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.js +33 -0
- package/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.mjs +34 -0
- package/node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/NoFragmentCyclesRule.js +29 -0
- package/node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.js +29 -0
- package/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.js +29 -0
- package/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts +29 -0
- package/node_modules/graphql/validation/rules/NoUnusedVariablesRule.js +30 -0
- package/node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs +29 -0
- package/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts +33 -0
- package/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.js +45 -6
- package/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs +45 -6
- package/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts +36 -0
- package/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.js +37 -0
- package/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs +36 -0
- package/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.js +22 -0
- package/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts +29 -3
- package/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.js +30 -3
- package/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs +29 -3
- package/node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/ScalarLeafsRule.js +29 -0
- package/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts +33 -0
- package/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.js +34 -0
- package/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs +33 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.js +41 -0
- package/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs +40 -0
- package/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts +32 -0
- package/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.js +33 -0
- package/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs +32 -0
- package/node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/UniqueOperationNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueOperationTypesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueTypeNamesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/UniqueVariableNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.js +36 -11
- package/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs +35 -11
- package/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts +32 -0
- package/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.js +33 -0
- package/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs +32 -0
- package/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.js +35 -1
- package/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs +34 -1
- package/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts +41 -0
- package/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.js +42 -0
- package/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs +41 -0
- package/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.js +29 -0
- package/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs +28 -0
- package/node_modules/graphql/validation/specifiedRules.d.ts +2 -3
- package/node_modules/graphql/validation/specifiedRules.js +2 -3
- package/node_modules/graphql/validation/specifiedRules.mjs +2 -3
- package/node_modules/graphql/validation/validate.d.ts +70 -9
- package/node_modules/graphql/validation/validate.js +74 -6
- package/node_modules/graphql/validation/validate.mjs +76 -9
- package/node_modules/graphql/version.d.ts +3 -6
- package/node_modules/graphql/version.js +7 -9
- package/node_modules/graphql/version.mjs +6 -9
- package/node_modules/hasown/CHANGELOG.md +18 -0
- package/node_modules/hasown/eslint.config.mjs +6 -0
- package/node_modules/hasown/package.json +13 -14
- package/node_modules/iconv-lite/encodings/sbcs-data.js +2 -0
- package/node_modules/iconv-lite/encodings/utf32.js +10 -3
- package/node_modules/iconv-lite/lib/index.d.ts +68 -70
- package/node_modules/iconv-lite/lib/index.js +39 -40
- package/node_modules/iconv-lite/package.json +7 -2
- package/node_modules/iconv-lite/types/encodings.d.ts +2 -0
- package/node_modules/ini/README.md +145 -67
- package/node_modules/ini/package.json +28 -16
- package/node_modules/ink/build/devtools-window-polyfill.d.ts +1 -0
- package/node_modules/is-fullwidth-code-point/index.js +8 -46
- package/node_modules/is-fullwidth-code-point/license +1 -1
- package/node_modules/is-fullwidth-code-point/package.json +19 -8
- package/node_modules/is-fullwidth-code-point/readme.md +4 -12
- package/node_modules/isexe/README.md +52 -23
- package/node_modules/isexe/package.json +65 -18
- package/node_modules/media-typer/README.md +15 -14
- package/node_modules/media-typer/index.js +0 -8
- package/node_modules/media-typer/package.json +16 -12
- package/node_modules/nan/.github/workflows/ci.yml +46 -0
- package/node_modules/nan/.pre-commit-config.yaml +8 -0
- package/node_modules/nan/CHANGELOG.md +605 -0
- package/node_modules/nan/CMakeLists.txt +138 -0
- package/node_modules/nan/LICENSE.md +9 -0
- package/node_modules/nan/README.md +457 -0
- package/node_modules/nan/doc/asyncworker.md +146 -0
- package/node_modules/nan/doc/buffers.md +54 -0
- package/node_modules/nan/doc/callback.md +76 -0
- package/node_modules/nan/doc/converters.md +41 -0
- package/node_modules/nan/doc/errors.md +226 -0
- package/node_modules/nan/doc/json.md +62 -0
- package/node_modules/nan/doc/maybe_types.md +583 -0
- package/node_modules/nan/doc/methods.md +689 -0
- package/node_modules/nan/doc/new.md +147 -0
- package/node_modules/nan/doc/node_misc.md +123 -0
- package/node_modules/nan/doc/object_wrappers.md +263 -0
- package/node_modules/nan/doc/persistent.md +296 -0
- package/node_modules/nan/doc/scopes.md +73 -0
- package/node_modules/nan/doc/script.md +58 -0
- package/node_modules/nan/doc/string_bytes.md +81 -0
- package/node_modules/nan/doc/v8_internals.md +211 -0
- package/node_modules/nan/doc/v8_misc.md +85 -0
- package/node_modules/nan/include_dirs.js +1 -0
- package/node_modules/nan/nan.h +3202 -0
- package/node_modules/nan/nan_callbacks.h +141 -0
- package/node_modules/nan/nan_callbacks_12_inl.h +730 -0
- package/node_modules/nan/nan_callbacks_pre_12_inl.h +528 -0
- package/node_modules/nan/nan_converters.h +72 -0
- package/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/node_modules/nan/nan_implementation_12_inl.h +446 -0
- package/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/node_modules/nan/nan_json.h +166 -0
- package/node_modules/nan/nan_maybe_43_inl.h +360 -0
- package/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/node_modules/nan/nan_new.h +340 -0
- package/node_modules/nan/nan_object_wrap.h +156 -0
- package/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/node_modules/nan/nan_private.h +73 -0
- package/node_modules/nan/nan_scriptorigin.h +97 -0
- package/node_modules/nan/nan_string_bytes.h +305 -0
- package/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/node_modules/nan/nan_weak.h +453 -0
- package/node_modules/nan/package.json +38 -0
- package/node_modules/nan/tools/1to2.js +412 -0
- package/node_modules/nan/tools/README.md +14 -0
- package/node_modules/nan/tools/package.json +19 -0
- package/node_modules/node-abi/abi_registry.json +17 -3
- package/node_modules/node-abi/package.json +1 -1
- package/node_modules/path-to-regexp/Readme.md +3 -3
- package/node_modules/path-to-regexp/dist/index.d.ts +3 -0
- package/node_modules/path-to-regexp/dist/index.js +215 -193
- package/node_modules/path-to-regexp/dist/index.js.map +1 -1
- package/node_modules/path-to-regexp/package.json +2 -2
- package/node_modules/qs/.editorconfig +1 -1
- package/node_modules/qs/.github/SECURITY.md +11 -0
- package/node_modules/qs/.github/THREAT_MODEL.md +78 -0
- package/node_modules/qs/CHANGELOG.md +211 -0
- package/node_modules/qs/README.md +30 -5
- package/node_modules/qs/dist/qs.js +26 -26
- package/node_modules/qs/eslint.config.mjs +57 -0
- package/node_modules/qs/lib/parse.js +146 -60
- package/node_modules/qs/lib/stringify.js +11 -4
- package/node_modules/qs/lib/utils.js +129 -16
- package/node_modules/qs/package.json +14 -12
- package/node_modules/qs/test/parse.js +670 -13
- package/node_modules/qs/test/stringify.js +145 -3
- package/node_modules/qs/test/utils.js +367 -3
- package/node_modules/range-parser/README.md +13 -12
- package/node_modules/range-parser/index.js +27 -8
- package/node_modules/range-parser/package.json +12 -8
- package/node_modules/rc/node_modules/ini/README.md +102 -0
- package/node_modules/rc/node_modules/ini/package.json +33 -0
- package/node_modules/react/cjs/react.development.js +1284 -0
- package/node_modules/react/cjs/react.production.js +542 -0
- package/node_modules/react/cjs/react.react-server.development.js +848 -0
- package/node_modules/react/cjs/react.react-server.production.js +423 -0
- package/node_modules/react/package.json +51 -0
- package/node_modules/react-devtools-core/node_modules/ws/lib/receiver.js +648 -0
- package/node_modules/react-devtools-core/node_modules/ws/lib/websocket-server.js +461 -0
- package/node_modules/react-devtools-core/node_modules/ws/lib/websocket.js +1215 -0
- package/node_modules/react-devtools-core/node_modules/ws/package.json +56 -0
- package/node_modules/semver/README.md +19 -4
- package/node_modules/semver/bin/semver.js +14 -10
- package/node_modules/semver/classes/range.js +24 -4
- package/node_modules/semver/classes/semver.js +19 -2
- package/node_modules/semver/functions/truncate.js +48 -0
- package/node_modules/semver/index.js +2 -0
- package/node_modules/semver/internal/re.js +1 -1
- package/node_modules/semver/package.json +4 -4
- package/node_modules/semver/range.bnf +5 -4
- package/node_modules/semver/ranges/subset.js +2 -2
- package/node_modules/send/package.json +11 -8
- package/node_modules/serve-static/README.md +23 -23
- package/node_modules/serve-static/package.json +6 -3
- package/node_modules/shell-quote/README.md +62 -17
- package/node_modules/shell-quote/package.json +4 -4
- package/node_modules/shell-quote/parse.d.ts +2 -0
- package/node_modules/shell-quote/parse.js +77 -8
- package/node_modules/shell-quote/quote.js +1 -1
- package/node_modules/shell-quote/test/parse.js +82 -0
- package/node_modules/shell-quote/test/quote.js +18 -1
- package/node_modules/side-channel/CHANGELOG.md +10 -0
- package/node_modules/side-channel/README.md +1 -1
- package/node_modules/side-channel/index.js +5 -2
- package/node_modules/side-channel/package.json +10 -10
- package/node_modules/side-channel/test/index.js +16 -0
- package/node_modules/side-channel-list/CHANGELOG.md +25 -4
- package/node_modules/side-channel-list/index.js +1 -3
- package/node_modules/side-channel-list/package.json +8 -8
- package/node_modules/side-channel-list/test/index.js +50 -0
- package/node_modules/string-width/index.d.ts +13 -3
- package/node_modules/string-width/index.js +182 -29
- package/node_modules/string-width/package.json +16 -10
- package/node_modules/string-width/readme.md +15 -16
- package/node_modules/string-width-cjs/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/string-width-cjs/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/string-width-cjs/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/string-width-cjs/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/tar-fs/index.js +39 -10
- package/node_modules/tar-fs/package.json +6 -1
- package/node_modules/tar-fs/test/index.js +111 -0
- package/node_modules/type-is/index.js +8 -18
- package/node_modules/type-is/node_modules/content-type/LICENSE +22 -0
- package/node_modules/type-is/node_modules/content-type/README.md +69 -0
- package/node_modules/type-is/node_modules/content-type/dist/index.d.ts +26 -0
- package/node_modules/type-is/node_modules/content-type/dist/index.js +170 -0
- package/node_modules/type-is/node_modules/content-type/dist/index.js.map +1 -0
- package/node_modules/type-is/node_modules/content-type/package.json +52 -0
- package/node_modules/type-is/package.json +9 -5
- package/node_modules/uuid/dist/v35.js +3 -0
- package/node_modules/uuid/dist/v6.js +3 -0
- package/node_modules/uuid/dist-node/v35.js +3 -0
- package/node_modules/uuid/dist-node/v6.js +3 -0
- package/node_modules/uuid/package.json +1 -1
- package/node_modules/which/README.md +13 -16
- package/node_modules/which/package.json +34 -20
- package/node_modules/wrap-ansi/index.d.ts +2 -2
- package/node_modules/wrap-ansi/index.js +293 -39
- package/node_modules/wrap-ansi/package.json +11 -11
- package/node_modules/wrap-ansi/readme.md +8 -22
- package/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.d.ts +345 -0
- package/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
- package/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
- package/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/readme.md +152 -0
- package/node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/ws/index.js +15 -6
- package/node_modules/ws/lib/constants.js +1 -0
- package/node_modules/ws/lib/permessage-deflate.js +6 -6
- package/node_modules/ws/lib/receiver.js +37 -0
- package/node_modules/ws/lib/sender.js +6 -1
- package/node_modules/ws/lib/websocket-server.js +18 -6
- package/node_modules/ws/lib/websocket.js +33 -14
- package/node_modules/ws/package.json +8 -3
- package/node_modules/ws/wrapper.mjs +14 -1
- package/package.json +6 -6
- package/bin/codevibe-codex +0 -828
- package/node_modules/@npmcli/git/node_modules/ini/README.md +0 -180
- package/node_modules/@npmcli/git/node_modules/ini/package.json +0 -45
- package/node_modules/@npmcli/git/node_modules/isexe/README.md +0 -80
- package/node_modules/@npmcli/git/node_modules/isexe/package.json +0 -78
- package/node_modules/@npmcli/git/node_modules/which/README.md +0 -51
- package/node_modules/@npmcli/git/node_modules/which/package.json +0 -57
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/LICENSE.md +0 -55
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/README.md +0 -80
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.d.ts +0 -14
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.js +0 -56
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.min.js +0 -2
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.min.js.map +0 -7
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/options.d.ts +0 -32
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/options.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/options.js +0 -3
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/options.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/posix.d.ts +0 -18
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/posix.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/posix.js +0 -67
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/posix.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/win32.d.ts +0 -18
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/win32.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/win32.js +0 -63
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/win32.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.d.ts +0 -14
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.js +0 -16
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.min.js +0 -2
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.min.js.map +0 -7
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/options.d.ts +0 -32
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/options.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/options.js +0 -2
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/options.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/posix.d.ts +0 -18
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/posix.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/posix.js +0 -62
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/posix.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/win32.d.ts +0 -18
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/win32.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/win32.js +0 -58
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/win32.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/package.json +0 -78
- package/node_modules/@npmcli/promise-spawn/node_modules/which/README.md +0 -51
- package/node_modules/@npmcli/promise-spawn/node_modules/which/bin/which.js +0 -52
- package/node_modules/@npmcli/promise-spawn/node_modules/which/lib/index.js +0 -111
- package/node_modules/@npmcli/promise-spawn/node_modules/which/package.json +0 -57
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/orchestration-cli.d.ts +0 -12
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-bootstrap.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-failure-recourse.d.ts +0 -23
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-save.d.ts +0 -47
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-seat-picker.d.ts +0 -72
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-telemetry.d.ts +0 -54
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-test-agents.d.ts +0 -108
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-types.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-wizard.d.ts +0 -57
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cohort-flag.d.ts +0 -16
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/gemini.d.ts +0 -109
- package/node_modules/@quantiya/codevibe-core/node_modules/ansi-styles/index.d.ts +0 -236
- package/node_modules/@quantiya/codevibe-core/node_modules/ansi-styles/package.json +0 -54
- package/node_modules/@quantiya/codevibe-core/node_modules/ansi-styles/readme.md +0 -173
- package/node_modules/@quantiya/codevibe-core/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/index.js +0 -194
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/package.json +0 -52
- package/node_modules/@quantiya/codevibe-core/node_modules/is-fullwidth-code-point/index.js +0 -12
- package/node_modules/@quantiya/codevibe-core/node_modules/is-fullwidth-code-point/package.json +0 -53
- package/node_modules/@quantiya/codevibe-core/node_modules/is-fullwidth-code-point/readme.md +0 -31
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.development.js +0 -1284
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.production.js +0 -542
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.react-server.development.js +0 -848
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.react-server.production.js +0 -423
- package/node_modules/@quantiya/codevibe-core/node_modules/react/package.json +0 -51
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/receiver.js +0 -664
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/websocket-server.js +0 -461
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/websocket.js +0 -1215
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/package.json +0 -56
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/index.d.ts +0 -39
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/index.js +0 -203
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/package.json +0 -65
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/readme.md +0 -66
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CONTRIBUTING.md +0 -18
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/index.js +0 -9
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/md5.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/parse.js +0 -35
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/regex.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/rng.js +0 -12
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/sha1.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/stringify.js +0 -33
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v1.js +0 -95
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v35.js +0 -66
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v4.js +0 -29
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/validate.js +0 -7
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/version.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5-browser.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng.js +0 -24
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/uuid-bin.js +0 -85
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/wrapper.mjs +0 -10
- package/node_modules/@quantiya/codevibe-core/node_modules/widest-line/license +0 -9
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/index.d.ts +0 -41
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/index.js +0 -468
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/license +0 -9
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/package.json +0 -69
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/readme.md +0 -77
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/LICENSE +0 -20
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/README.md +0 -548
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/browser.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/index.js +0 -22
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/buffer-util.js +0 -131
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/constants.js +0 -19
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/event-target.js +0 -292
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/extension.js +0 -203
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/limiter.js +0 -55
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/permessage-deflate.js +0 -528
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/receiver.js +0 -760
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/sender.js +0 -607
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/stream.js +0 -161
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/subprotocol.js +0 -62
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/validation.js +0 -152
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/websocket-server.js +0 -562
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/websocket.js +0 -1407
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/package.json +0 -70
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/wrapper.mjs +0 -21
- package/node_modules/content-disposition/HISTORY.md +0 -72
- package/node_modules/es-toolkit/dist/compat/_internal/Equals.d.d.mts +0 -3
- package/node_modules/es-toolkit/dist/compat/_internal/Equals.d.d.ts +0 -3
- package/node_modules/es-toolkit/dist/compat/_internal/IsWritable.d.d.mts +0 -5
- package/node_modules/es-toolkit/dist/compat/_internal/IsWritable.d.d.ts +0 -5
- package/node_modules/es-toolkit/dist/compat/_internal/MutableList.d.d.mts +0 -6
- package/node_modules/es-toolkit/dist/compat/_internal/MutableList.d.d.ts +0 -6
- package/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.d.mts +0 -6
- package/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.d.ts +0 -6
- package/node_modules/gradient-string/node_modules/chalk/license +0 -9
- package/node_modules/gradient-string/node_modules/chalk/package.json +0 -83
- package/node_modules/gradient-string/node_modules/chalk/readme.md +0 -297
- package/node_modules/gradient-string/node_modules/chalk/source/index.d.ts +0 -325
- package/node_modules/gradient-string/node_modules/chalk/source/index.js +0 -225
- package/node_modules/gradient-string/node_modules/chalk/source/utilities.js +0 -33
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +0 -236
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/supports-color/browser.d.ts +0 -1
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/supports-color/browser.js +0 -34
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/supports-color/index.d.ts +0 -55
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/supports-color/index.js +0 -190
- package/node_modules/hasown/.eslintrc +0 -5
- package/node_modules/hosted-git-info/node_modules/lru-cache/LICENSE +0 -15
- package/node_modules/hosted-git-info/node_modules/lru-cache/README.md +0 -331
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.d.ts +0 -1277
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.d.ts.map +0 -1
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.js +0 -1546
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.js.map +0 -1
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.min.js +0 -2
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.min.js.map +0 -7
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/package.json +0 -3
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.d.ts +0 -1277
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.d.ts.map +0 -1
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.js +0 -1542
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.js.map +0 -1
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.min.js +0 -2
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.min.js.map +0 -7
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/package.json +0 -3
- package/node_modules/hosted-git-info/node_modules/lru-cache/package.json +0 -116
- package/node_modules/iconv-lite/Changelog.md +0 -241
- package/node_modules/ink-text-input/node_modules/chalk/license +0 -9
- package/node_modules/ink-text-input/node_modules/chalk/package.json +0 -83
- package/node_modules/ink-text-input/node_modules/chalk/readme.md +0 -297
- package/node_modules/ink-text-input/node_modules/chalk/source/index.d.ts +0 -325
- package/node_modules/ink-text-input/node_modules/chalk/source/index.js +0 -225
- package/node_modules/ink-text-input/node_modules/chalk/source/utilities.js +0 -33
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +0 -236
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/supports-color/browser.d.ts +0 -1
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/supports-color/browser.js +0 -34
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/supports-color/index.d.ts +0 -55
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/supports-color/index.js +0 -190
- package/node_modules/isexe/LICENSE +0 -15
- package/node_modules/keytar/build/Release/keytar.node +0 -0
- package/node_modules/path-scurry/node_modules/lru-cache/LICENSE +0 -15
- package/node_modules/path-scurry/node_modules/lru-cache/README.md +0 -331
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.d.ts +0 -1277
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.d.ts.map +0 -1
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.js +0 -1546
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.js.map +0 -1
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.min.js +0 -2
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.min.js.map +0 -7
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/package.json +0 -3
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.d.ts +0 -1277
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.d.ts.map +0 -1
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.js +0 -1542
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.js.map +0 -1
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.min.js +0 -2
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.min.js.map +0 -7
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/package.json +0 -3
- package/node_modules/path-scurry/node_modules/lru-cache/package.json +0 -116
- package/node_modules/qs/.eslintrc +0 -39
- package/node_modules/send/HISTORY.md +0 -580
- package/node_modules/serve-static/HISTORY.md +0 -516
- package/node_modules/string-width-cjs/node_modules/emoji-regex/README.md +0 -73
- package/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/index.js +0 -6
- package/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/text.js +0 -6
- package/node_modules/string-width-cjs/node_modules/emoji-regex/index.d.ts +0 -23
- package/node_modules/string-width-cjs/node_modules/emoji-regex/index.js +0 -6
- package/node_modules/string-width-cjs/node_modules/emoji-regex/package.json +0 -50
- package/node_modules/string-width-cjs/node_modules/emoji-regex/text.js +0 -6
- package/node_modules/wrap-ansi/node_modules/ansi-styles/index.d.ts +0 -236
- package/node_modules/wrap-ansi/node_modules/ansi-styles/index.js +0 -223
- package/node_modules/wrap-ansi/node_modules/ansi-styles/license +0 -9
- package/node_modules/wrap-ansi/node_modules/ansi-styles/package.json +0 -54
- package/node_modules/wrap-ansi/node_modules/ansi-styles/readme.md +0 -173
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md +0 -73
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/index.js +0 -6
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/text.js +0 -6
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.d.ts +0 -23
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.js +0 -6
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/package.json +0 -50
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/text.js +0 -6
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/LICENSE +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/ansiCodes.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/ansiCodes.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/ansiCodes.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/consts.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/consts.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/consts.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/diff.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/diff.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/diff.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/index.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/reduce.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/reduce.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/reduce.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/styledChars.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/styledChars.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/styledChars.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/tokenize.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/tokenize.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/tokenize.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/undo.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/undo.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/undo.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/package.json +0 -0
- /package/node_modules/{string-width-cjs → @isaacs/cliui}/node_modules/emoji-regex/LICENSE-MIT.txt +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/RGI_Emoji.d.ts +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/RGI_Emoji.js +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/es2015/RGI_Emoji.d.ts +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/es2015/RGI_Emoji.js +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/es2015/index.d.ts +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/es2015/text.d.ts +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/text.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → @isaacs/cliui/node_modules/string-width}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-styles → @isaacs/cliui/node_modules/wrap-ansi}/license +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{companion-mode/__tests__/detect-parallel.test.d.ts → appsync/__tests__/appsync-client-context-items.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration-shell/__tests__/cli-stub-session-adapter.test.d.ts → appsync/__tests__/heartbeat-active.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-bootstrap.test.d.ts → appsync/__tests__/orphan-sweep-null-heartbeat.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-failure-recourse.test.d.ts → auth/__tests__/vendor-key-cli.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-save.test.d.ts → companion-mode/__tests__/mode-selected-emit.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-seat-picker.test.d.ts → companion-mode/__tests__/private-launcher-detection.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-telemetry.test.d.ts → companion-mode/__tests__/private-launcher-path.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-test-agents.test.d.ts → credential-broker/__tests__/broker-c4.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-types.test.d.ts → credential-broker/__tests__/broker-streaming.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-wizard.test.d.ts → credential-broker/__tests__/chatgpt-config.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini-live-smoke.test.d.ts → credential-broker/__tests__/oauth-account-lock.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini.test.d.ts → credential-broker/__tests__/oauth-refresh.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/{node_modules/ink/build/devtools-window-polyfill.d.ts → dist/crypto/__tests__/encrypt-for-emit.test.d.ts} +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/base.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/base.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → ansi-escapes}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/readme.md +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → brace-expansion}/dist/commonjs/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → brace-expansion}/dist/esm/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → chalk}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/utilities.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/vendor/ansi-styles/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules → chalk/source/vendor}/ansi-styles/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/vendor/supports-color/browser.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/vendor/supports-color/browser.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/vendor/supports-color/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/vendor/supports-color/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → cli-boxes}/boxes.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → cli-boxes}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → cli-boxes}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-truncate → cli-boxes}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → cli-boxes}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → cli-boxes}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-truncate → cli-truncate}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-fullwidth-code-point → cli-truncate}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-truncate → cli-truncate}/readme.md +0 -0
- /package/node_modules/{isexe → cross-spawn/node_modules/isexe}/.npmignore +0 -0
- /package/node_modules/{@npmcli/git/node_modules/ini → cross-spawn/node_modules/isexe}/LICENSE +0 -0
- /package/node_modules/{isexe → cross-spawn/node_modules/isexe}/index.js +0 -0
- /package/node_modules/{isexe → cross-spawn/node_modules/isexe}/mode.js +0 -0
- /package/node_modules/{isexe → cross-spawn/node_modules/isexe}/test/basic.js +0 -0
- /package/node_modules/{isexe → cross-spawn/node_modules/isexe}/windows.js +0 -0
- /package/node_modules/{which → cross-spawn/node_modules/which}/CHANGELOG.md +0 -0
- /package/node_modules/{@npmcli/git → cross-spawn}/node_modules/which/LICENSE +0 -0
- /package/node_modules/{which → cross-spawn/node_modules/which}/bin/node-which +0 -0
- /package/node_modules/{which → cross-spawn/node_modules/which}/which.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/ini → ini}/lib/ini.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ansi-tokenizer.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ansi-tokenizer.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ansi-tokenizer.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/colorize.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/colorize.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/colorize.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AccessibilityContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AccessibilityContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AccessibilityContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AnimationContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AnimationContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AnimationContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/App.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/App.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/App.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AppContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AppContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AppContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/BackgroundContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/BackgroundContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/BackgroundContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Box.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Box.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Box.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/CursorContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/CursorContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/CursorContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorBoundary.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorBoundary.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorBoundary.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorOverview.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorOverview.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorOverview.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/FocusContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/FocusContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/FocusContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Newline.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Newline.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Newline.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Spacer.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Spacer.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Spacer.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Static.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Static.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Static.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StderrContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StderrContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StderrContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdinContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdinContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdinContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdoutContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdoutContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdoutContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Text.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Text.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Text.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Transform.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Transform.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Transform.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/cursor-helpers.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/cursor-helpers.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/cursor-helpers.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/devtools-window-polyfill.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/devtools-window-polyfill.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/devtools.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/devtools.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/devtools.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/dom.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/dom.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/dom.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/get-max-width.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/get-max-width.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/get-max-width.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-animation.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-animation.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-animation.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-app.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-app.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-app.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-box-metrics.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-box-metrics.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-box-metrics.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-cursor.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-cursor.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-cursor.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus-manager.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus-manager.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus-manager.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-input.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-input.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-input.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-is-screen-reader-enabled.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-is-screen-reader-enabled.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-is-screen-reader-enabled.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-paste.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-paste.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-paste.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stderr.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stderr.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stderr.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdin.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdin.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdin.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdout.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdout.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdout.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-window-size.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-window-size.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-window-size.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/index.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ink.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ink.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ink.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/input-parser.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/input-parser.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/input-parser.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/instances.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/instances.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/instances.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/kitty-keyboard.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/kitty-keyboard.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/kitty-keyboard.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/log-update.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/log-update.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/log-update.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-element.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-element.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-text.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-text.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-text.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/output.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/output.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/output.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/parse-keypress.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/parse-keypress.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/parse-keypress.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/reconciler.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/reconciler.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/reconciler.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-background.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-background.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-background.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-border.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-border.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-border.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-node-to-output.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-node-to-output.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-node-to-output.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-to-string.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-to-string.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-to-string.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/renderer.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/renderer.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/renderer.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/sanitize-ansi.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/sanitize-ansi.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/sanitize-ansi.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/squash-text-nodes.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/squash-text-nodes.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/squash-text-nodes.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/styles.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/styles.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/styles.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/utils.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/utils.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/utils.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/wrap-text.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/wrap-text.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/wrap-text.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/write-synchronized.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/write-synchronized.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/write-synchronized.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core → ink}/node_modules/signal-exit/LICENSE.txt +0 -0
- /package/node_modules/{@quantiya/codevibe-core → ink}/node_modules/signal-exit/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core → ink}/node_modules/signal-exit/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core → ink}/node_modules/signal-exit/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core → ink}/node_modules/signal-exit/signals.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/cli.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/readme.md +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/LICENSE.md +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.min.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.min.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/options.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/options.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/options.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/options.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → isexe}/dist/commonjs/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/posix.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/posix.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/posix.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/posix.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/win32.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/win32.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/win32.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/win32.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.min.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.min.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/options.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/options.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/options.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/options.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → isexe}/dist/esm/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/posix.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/posix.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/posix.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/posix.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/win32.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/win32.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/win32.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/win32.js.map +0 -0
- /package/node_modules/{@npmcli/package-json/node_modules/json-parse-even-better-errors → json-parse-even-better-errors}/LICENSE.md +0 -0
- /package/node_modules/{@npmcli/package-json/node_modules/json-parse-even-better-errors → json-parse-even-better-errors}/README.md +0 -0
- /package/node_modules/{@npmcli/package-json/node_modules/json-parse-even-better-errors → json-parse-even-better-errors}/lib/index.js +0 -0
- /package/node_modules/{@npmcli/package-json/node_modules/json-parse-even-better-errors → json-parse-even-better-errors}/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/LICENSE +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/README.md +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.min.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.min.js.map +0 -0
- /package/node_modules/{@npmcli/promise-spawn/node_modules/isexe → lru-cache}/dist/commonjs/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.min.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.min.js.map +0 -0
- /package/node_modules/{@npmcli/promise-spawn/node_modules/isexe → lru-cache}/dist/esm/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/package.json +0 -0
- /package/node_modules/{@npmcli/promise-spawn/node_modules/which → rc/node_modules/ini}/LICENSE +0 -0
- /package/node_modules/{ini → rc/node_modules/ini}/ini.js +0 -0
- /package/node_modules/{strip-json-comments → rc/node_modules/strip-json-comments}/index.js +0 -0
- /package/node_modules/{strip-json-comments → rc/node_modules/strip-json-comments}/license +0 -0
- /package/node_modules/{strip-json-comments → rc/node_modules/strip-json-comments}/package.json +0 -0
- /package/node_modules/{strip-json-comments → rc/node_modules/strip-json-comments}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/LICENSE +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-compiler-runtime.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-compiler-runtime.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-compiler-runtime.profiling.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-dev-runtime.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-dev-runtime.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-dev-runtime.profiling.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-dev-runtime.react-server.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-dev-runtime.react-server.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-runtime.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-runtime.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-runtime.profiling.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-runtime.react-server.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-runtime.react-server.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/compiler-runtime.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/jsx-dev-runtime.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/jsx-dev-runtime.react-server.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/jsx-runtime.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/jsx-runtime.react-server.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/react.react-server.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/backend.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/backend.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/backend.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/importFile.worker.worker.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/importFile.worker.worker.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/parseHookNames.chunk.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/parseHookNames.chunk.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/parseSourceAndMetadata.worker.worker.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/parseSourceAndMetadata.worker.worker.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/standalone.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/standalone.js.LICENSE.txt +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/standalone.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/LICENSE +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/browser.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/buffer-util.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/constants.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/event-target.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/extension.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/limiter.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/permessage-deflate.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/sender.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/stream.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/validation.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/standalone.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/LICENSE +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler-constants.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler-constants.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler-reflection.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler-reflection.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler.profiling.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/constants.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/reflection.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/LICENSE +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler-unstable_mock.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler-unstable_mock.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler-unstable_post_task.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler-unstable_post_task.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler.native.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler.native.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/index.native.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/unstable_mock.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/unstable_post_task.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/tokenize-ansi.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core → string-width-cjs}/node_modules/is-fullwidth-code-point/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/license-cc0 +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/license-mit +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/absolute.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/all-extend.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/all-union-fields.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/and-all.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/and.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-indices.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-length.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-reverse.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-slice.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-splice.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-tail.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-values.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/arrayable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/async-return-type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/asyncify.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/basic.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/camel-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/camel-cased-properties-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/camel-cased-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/characters.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-except.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-pick-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-pick.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-simplify-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-simplify.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/delimiter-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/delimiter-cased-properties-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/delimiter-cased-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/distributed-omit.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/distributed-pick.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/empty-object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/entries.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/entry.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/exact.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/except.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/exclude-exactly.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/exclude-rest-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/exclude-strict.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/exclusify-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/extends-strict.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/extract-exactly.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/extract-rest-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/extract-strict.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/find-global-type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/fixed-length-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/get.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/global-this.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/globals/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/globals/observable-like.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/greater-than-or-equal.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/greater-than.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/has-optional-keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/has-readonly-keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/has-required-keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/has-writable-keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if-any.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if-empty-object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if-never.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if-null.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if-unknown.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/includes.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/int-closed-range.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/int-range.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/characters.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/enforce-optional.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/numeric.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/string.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/tuple.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/invariant-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-any.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-equal.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-float.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-integer.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-literal.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-lowercase.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-never.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-null.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-nullable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-optional-key-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-optional.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-readonly-key-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-required-key-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-tuple.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-undefined.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-unknown.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-uppercase.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-writable-key-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/iterable-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/join.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/json-value.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/jsonifiable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/jsonify.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/kebab-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/kebab-cased-properties-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/kebab-cased-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/key-as-string.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/keys-of-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/last-array-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/less-than-or-equal.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/less-than.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/literal-to-primitive-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/literal-to-primitive.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/literal-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/merge-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/merge-exclusive.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/merge.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/multidimensional-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/multidimensional-readonly-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/non-empty-object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/non-empty-string.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/non-empty-tuple.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/non-nullable-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/numeric.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/object-merge.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/omit-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/omit-index-signature.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/opaque.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/optional-keys-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/optional.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/or-all.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/or.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/override-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/package-json.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/partial-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/partial-on-undefined-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/pascal-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/pascal-cased-properties-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/pascal-cased-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/paths.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/pick-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/pick-index-signature.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/primitive.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/promisable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/readonly-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/readonly-keys-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/readonly-tuple.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/remove-prefix.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/remove-suffix.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/replace.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/require-all-or-none.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/require-at-least-one.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/require-exactly-one.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/require-one-or-none.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/required-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/required-keys-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/schema.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/screaming-snake-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-field-type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-non-nullable-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-non-nullable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-optional.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-parameter-type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-readonly.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-required-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-required.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-return-type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/shared-union-fields-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/shared-union-fields.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/simplify-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/simplify.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/single-key-object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/snake-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/snake-cased-properties-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/snake-cased-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/some-extend.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/split-on-rest-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/split.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/spread.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/string-length.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/string-repeat.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/string-slice.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/string-to-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/string-to-number.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/stringified.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/structured-cloneable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/subtract.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/sum.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tagged-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tagged.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/trim.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tsconfig-json.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tuple-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tuple-to-object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tuple-to-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/typed-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/undefined-on-partial-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/union-length.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/union-member.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/union-to-intersection.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/union-to-tuple.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unknown-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unknown-map.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unknown-record.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unknown-set.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unwrap-partial.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unwrap-required.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/value-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/words.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/writable-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/writable-keys-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/writable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/xor.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/which → which}/bin/which.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/which → which}/lib/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/widest-line → widest-line}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/widest-line → widest-line}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/string-width → widest-line}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/widest-line → widest-line}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/widest-line → widest-line}/readme.md +0 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/** @category Types */
|
|
1
2
|
import type { Maybe } from '../jsutils/Maybe';
|
|
2
3
|
import type { ObjMap } from '../jsutils/ObjMap';
|
|
3
4
|
import type { Path } from '../jsutils/Path';
|
|
@@ -24,9 +25,7 @@ import type {
|
|
|
24
25
|
ValueNode,
|
|
25
26
|
} from '../language/ast';
|
|
26
27
|
import type { GraphQLSchema } from './schema';
|
|
27
|
-
/**
|
|
28
|
-
* These are all of the possible kinds of types.
|
|
29
|
-
*/
|
|
28
|
+
/** These are all of the possible kinds of types. */
|
|
30
29
|
export declare type GraphQLType =
|
|
31
30
|
| GraphQLScalarType
|
|
32
31
|
| GraphQLObjectType
|
|
@@ -44,56 +43,555 @@ export declare type GraphQLType =
|
|
|
44
43
|
| GraphQLInputObjectType
|
|
45
44
|
| GraphQLList<GraphQLType>
|
|
46
45
|
>;
|
|
46
|
+
/**
|
|
47
|
+
* Returns true when the value is any GraphQL type.
|
|
48
|
+
* @param type - The GraphQL type to inspect.
|
|
49
|
+
* @returns True when the value is any GraphQL type.
|
|
50
|
+
* @example
|
|
51
|
+
* ```ts
|
|
52
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
53
|
+
* import { GraphQLList, GraphQLString, isType } from 'graphql/type';
|
|
54
|
+
*
|
|
55
|
+
* const schema = buildSchema(`
|
|
56
|
+
* type Query {
|
|
57
|
+
* name: String
|
|
58
|
+
* }
|
|
59
|
+
* `);
|
|
60
|
+
*
|
|
61
|
+
* isType(GraphQLString); // => true
|
|
62
|
+
* isType(new GraphQLList(GraphQLString)); // => true
|
|
63
|
+
* isType(schema.getType('Query')); // => true
|
|
64
|
+
* isType('String'); // => false
|
|
65
|
+
* ```
|
|
66
|
+
*/
|
|
47
67
|
export declare function isType(type: unknown): type is GraphQLType;
|
|
68
|
+
/**
|
|
69
|
+
* Returns the value as a GraphQL type, or throws if it is not one.
|
|
70
|
+
* @param type - The GraphQL type to inspect.
|
|
71
|
+
* @returns The value typed as a GraphQL type.
|
|
72
|
+
* @example
|
|
73
|
+
* ```ts
|
|
74
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
75
|
+
* import { assertType } from 'graphql/type';
|
|
76
|
+
*
|
|
77
|
+
* const schema = buildSchema(`
|
|
78
|
+
* type Query {
|
|
79
|
+
* name: String
|
|
80
|
+
* }
|
|
81
|
+
* `);
|
|
82
|
+
*
|
|
83
|
+
* const queryType = assertType(schema.getType('Query'));
|
|
84
|
+
*
|
|
85
|
+
* queryType.toString(); // => 'Query'
|
|
86
|
+
* assertType('Query'); // throws an error
|
|
87
|
+
* ```
|
|
88
|
+
*/
|
|
48
89
|
export declare function assertType(type: unknown): GraphQLType;
|
|
49
90
|
/**
|
|
50
91
|
* There are predicates for each kind of GraphQL type.
|
|
92
|
+
* @param type - The GraphQL type to inspect.
|
|
93
|
+
* @returns True when the value is a GraphQLScalarType.
|
|
94
|
+
* @example
|
|
95
|
+
* ```ts
|
|
96
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
97
|
+
* import { isScalarType } from 'graphql/type';
|
|
98
|
+
*
|
|
99
|
+
* const schema = buildSchema(`
|
|
100
|
+
* scalar DateTime
|
|
101
|
+
*
|
|
102
|
+
* type Query {
|
|
103
|
+
* createdAt: DateTime
|
|
104
|
+
* }
|
|
105
|
+
* `);
|
|
106
|
+
*
|
|
107
|
+
* isScalarType(schema.getType('DateTime')); // => true
|
|
108
|
+
* isScalarType(schema.getType('Query')); // => false
|
|
109
|
+
* ```
|
|
51
110
|
*/
|
|
52
111
|
export declare function isScalarType(type: unknown): type is GraphQLScalarType;
|
|
112
|
+
/**
|
|
113
|
+
* Returns the value as a GraphQLScalarType, or throws if it is not one.
|
|
114
|
+
* @param type - The GraphQL type to inspect.
|
|
115
|
+
* @returns The value typed as a GraphQLScalarType.
|
|
116
|
+
* @example
|
|
117
|
+
* ```ts
|
|
118
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
119
|
+
* import { assertScalarType } from 'graphql/type';
|
|
120
|
+
*
|
|
121
|
+
* const schema = buildSchema(`
|
|
122
|
+
* scalar DateTime
|
|
123
|
+
*
|
|
124
|
+
* type Query {
|
|
125
|
+
* createdAt: DateTime
|
|
126
|
+
* }
|
|
127
|
+
* `);
|
|
128
|
+
*
|
|
129
|
+
* const dateTimeType = assertScalarType(schema.getType('DateTime'));
|
|
130
|
+
*
|
|
131
|
+
* dateTimeType.name; // => 'DateTime'
|
|
132
|
+
* assertScalarType(schema.getType('Query')); // throws an error
|
|
133
|
+
* ```
|
|
134
|
+
*/
|
|
53
135
|
export declare function assertScalarType(type: unknown): GraphQLScalarType;
|
|
136
|
+
/**
|
|
137
|
+
* Returns true when the value is a GraphQLObjectType.
|
|
138
|
+
* @param type - The GraphQL type to inspect.
|
|
139
|
+
* @returns True when the value is a GraphQLObjectType.
|
|
140
|
+
* @example
|
|
141
|
+
* ```ts
|
|
142
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
143
|
+
* import { isObjectType } from 'graphql/type';
|
|
144
|
+
*
|
|
145
|
+
* const schema = buildSchema(`
|
|
146
|
+
* input ReviewInput {
|
|
147
|
+
* stars: Int!
|
|
148
|
+
* }
|
|
149
|
+
*
|
|
150
|
+
* type User {
|
|
151
|
+
* name: String
|
|
152
|
+
* }
|
|
153
|
+
*
|
|
154
|
+
* type Query {
|
|
155
|
+
* user: User
|
|
156
|
+
* }
|
|
157
|
+
* `);
|
|
158
|
+
*
|
|
159
|
+
* isObjectType(schema.getType('User')); // => true
|
|
160
|
+
* isObjectType(schema.getType('ReviewInput')); // => false
|
|
161
|
+
* ```
|
|
162
|
+
*/
|
|
54
163
|
export declare function isObjectType(type: unknown): type is GraphQLObjectType;
|
|
164
|
+
/**
|
|
165
|
+
* Returns the value as a GraphQLObjectType, or throws if it is not one.
|
|
166
|
+
* @param type - The GraphQL type to inspect.
|
|
167
|
+
* @returns The value typed as a GraphQLObjectType.
|
|
168
|
+
* @example
|
|
169
|
+
* ```ts
|
|
170
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
171
|
+
* import { assertObjectType } from 'graphql/type';
|
|
172
|
+
*
|
|
173
|
+
* const schema = buildSchema(`
|
|
174
|
+
* input ReviewInput {
|
|
175
|
+
* stars: Int!
|
|
176
|
+
* }
|
|
177
|
+
*
|
|
178
|
+
* type User {
|
|
179
|
+
* name: String
|
|
180
|
+
* }
|
|
181
|
+
*
|
|
182
|
+
* type Query {
|
|
183
|
+
* user: User
|
|
184
|
+
* }
|
|
185
|
+
* `);
|
|
186
|
+
*
|
|
187
|
+
* const userType = assertObjectType(schema.getType('User'));
|
|
188
|
+
*
|
|
189
|
+
* Object.keys(userType.getFields()); // => ['name']
|
|
190
|
+
* assertObjectType(schema.getType('ReviewInput')); // throws an error
|
|
191
|
+
* ```
|
|
192
|
+
*/
|
|
55
193
|
export declare function assertObjectType(type: unknown): GraphQLObjectType;
|
|
194
|
+
/**
|
|
195
|
+
* Returns true when the value is a GraphQLInterfaceType.
|
|
196
|
+
* @param type - The GraphQL type to inspect.
|
|
197
|
+
* @returns True when the value is a GraphQLInterfaceType.
|
|
198
|
+
* @example
|
|
199
|
+
* ```ts
|
|
200
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
201
|
+
* import { isInterfaceType } from 'graphql/type';
|
|
202
|
+
*
|
|
203
|
+
* const schema = buildSchema(`
|
|
204
|
+
* interface Node {
|
|
205
|
+
* id: ID!
|
|
206
|
+
* }
|
|
207
|
+
*
|
|
208
|
+
* type User implements Node {
|
|
209
|
+
* id: ID!
|
|
210
|
+
* }
|
|
211
|
+
*
|
|
212
|
+
* type Query {
|
|
213
|
+
* node: Node
|
|
214
|
+
* }
|
|
215
|
+
* `);
|
|
216
|
+
*
|
|
217
|
+
* isInterfaceType(schema.getType('Node')); // => true
|
|
218
|
+
* isInterfaceType(schema.getType('User')); // => false
|
|
219
|
+
* ```
|
|
220
|
+
*/
|
|
56
221
|
export declare function isInterfaceType(
|
|
57
222
|
type: unknown,
|
|
58
223
|
): type is GraphQLInterfaceType;
|
|
224
|
+
/**
|
|
225
|
+
* Returns the value as a GraphQLInterfaceType, or throws if it is not one.
|
|
226
|
+
* @param type - The GraphQL type to inspect.
|
|
227
|
+
* @returns The value typed as a GraphQLInterfaceType.
|
|
228
|
+
* @example
|
|
229
|
+
* ```ts
|
|
230
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
231
|
+
* import { assertInterfaceType } from 'graphql/type';
|
|
232
|
+
*
|
|
233
|
+
* const schema = buildSchema(`
|
|
234
|
+
* interface Node {
|
|
235
|
+
* id: ID!
|
|
236
|
+
* }
|
|
237
|
+
*
|
|
238
|
+
* type User implements Node {
|
|
239
|
+
* id: ID!
|
|
240
|
+
* }
|
|
241
|
+
*
|
|
242
|
+
* type Query {
|
|
243
|
+
* node: Node
|
|
244
|
+
* }
|
|
245
|
+
* `);
|
|
246
|
+
*
|
|
247
|
+
* const nodeType = assertInterfaceType(schema.getType('Node'));
|
|
248
|
+
*
|
|
249
|
+
* nodeType.name; // => 'Node'
|
|
250
|
+
* assertInterfaceType(schema.getType('User')); // throws an error
|
|
251
|
+
* ```
|
|
252
|
+
*/
|
|
59
253
|
export declare function assertInterfaceType(
|
|
60
254
|
type: unknown,
|
|
61
255
|
): GraphQLInterfaceType;
|
|
256
|
+
/**
|
|
257
|
+
* Returns true when the value is a GraphQLUnionType.
|
|
258
|
+
* @param type - The GraphQL type to inspect.
|
|
259
|
+
* @returns True when the value is a GraphQLUnionType.
|
|
260
|
+
* @example
|
|
261
|
+
* ```ts
|
|
262
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
263
|
+
* import { isUnionType } from 'graphql/type';
|
|
264
|
+
*
|
|
265
|
+
* const schema = buildSchema(`
|
|
266
|
+
* type Photo {
|
|
267
|
+
* url: String!
|
|
268
|
+
* }
|
|
269
|
+
*
|
|
270
|
+
* type Video {
|
|
271
|
+
* url: String!
|
|
272
|
+
* }
|
|
273
|
+
*
|
|
274
|
+
* union Media = Photo | Video
|
|
275
|
+
*
|
|
276
|
+
* type Query {
|
|
277
|
+
* media: [Media]
|
|
278
|
+
* }
|
|
279
|
+
* `);
|
|
280
|
+
*
|
|
281
|
+
* isUnionType(schema.getType('Media')); // => true
|
|
282
|
+
* isUnionType(schema.getType('Photo')); // => false
|
|
283
|
+
* ```
|
|
284
|
+
*/
|
|
62
285
|
export declare function isUnionType(type: unknown): type is GraphQLUnionType;
|
|
286
|
+
/**
|
|
287
|
+
* Returns the value as a GraphQLUnionType, or throws if it is not one.
|
|
288
|
+
* @param type - The GraphQL type to inspect.
|
|
289
|
+
* @returns The value typed as a GraphQLUnionType.
|
|
290
|
+
* @example
|
|
291
|
+
* ```ts
|
|
292
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
293
|
+
* import { assertUnionType } from 'graphql/type';
|
|
294
|
+
*
|
|
295
|
+
* const schema = buildSchema(`
|
|
296
|
+
* type Photo {
|
|
297
|
+
* url: String!
|
|
298
|
+
* }
|
|
299
|
+
*
|
|
300
|
+
* type Video {
|
|
301
|
+
* url: String!
|
|
302
|
+
* }
|
|
303
|
+
*
|
|
304
|
+
* union Media = Photo | Video
|
|
305
|
+
*
|
|
306
|
+
* type Query {
|
|
307
|
+
* media: [Media]
|
|
308
|
+
* }
|
|
309
|
+
* `);
|
|
310
|
+
*
|
|
311
|
+
* const mediaType = assertUnionType(schema.getType('Media'));
|
|
312
|
+
*
|
|
313
|
+
* mediaType.getTypes().map((type) => type.name); // => ['Photo', 'Video']
|
|
314
|
+
* assertUnionType(schema.getType('Photo')); // throws an error
|
|
315
|
+
* ```
|
|
316
|
+
*/
|
|
63
317
|
export declare function assertUnionType(type: unknown): GraphQLUnionType;
|
|
318
|
+
/**
|
|
319
|
+
* Returns true when the value is a GraphQLEnumType.
|
|
320
|
+
* @param type - The GraphQL type to inspect.
|
|
321
|
+
* @returns True when the value is a GraphQLEnumType.
|
|
322
|
+
* @example
|
|
323
|
+
* ```ts
|
|
324
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
325
|
+
* import { isEnumType } from 'graphql/type';
|
|
326
|
+
*
|
|
327
|
+
* const schema = buildSchema(`
|
|
328
|
+
* enum Episode {
|
|
329
|
+
* NEW_HOPE
|
|
330
|
+
* EMPIRE
|
|
331
|
+
* }
|
|
332
|
+
*
|
|
333
|
+
* type Query {
|
|
334
|
+
* favoriteEpisode: Episode
|
|
335
|
+
* }
|
|
336
|
+
* `);
|
|
337
|
+
*
|
|
338
|
+
* isEnumType(schema.getType('Episode')); // => true
|
|
339
|
+
* isEnumType(schema.getType('Query')); // => false
|
|
340
|
+
* ```
|
|
341
|
+
*/
|
|
64
342
|
export declare function isEnumType(type: unknown): type is GraphQLEnumType;
|
|
343
|
+
/**
|
|
344
|
+
* Returns the value as a GraphQLEnumType, or throws if it is not one.
|
|
345
|
+
* @param type - The GraphQL type to inspect.
|
|
346
|
+
* @returns The value typed as a GraphQLEnumType.
|
|
347
|
+
* @example
|
|
348
|
+
* ```ts
|
|
349
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
350
|
+
* import { assertEnumType } from 'graphql/type';
|
|
351
|
+
*
|
|
352
|
+
* const schema = buildSchema(`
|
|
353
|
+
* enum Episode {
|
|
354
|
+
* NEW_HOPE
|
|
355
|
+
* EMPIRE
|
|
356
|
+
* }
|
|
357
|
+
*
|
|
358
|
+
* type Query {
|
|
359
|
+
* favoriteEpisode: Episode
|
|
360
|
+
* }
|
|
361
|
+
* `);
|
|
362
|
+
*
|
|
363
|
+
* const episodeType = assertEnumType(schema.getType('Episode'));
|
|
364
|
+
*
|
|
365
|
+
* episodeType.getValues().map((value) => value.name); // => ['NEW_HOPE', 'EMPIRE']
|
|
366
|
+
* assertEnumType(schema.getType('Query')); // throws an error
|
|
367
|
+
* ```
|
|
368
|
+
*/
|
|
65
369
|
export declare function assertEnumType(type: unknown): GraphQLEnumType;
|
|
370
|
+
/**
|
|
371
|
+
* Returns true when the value is a GraphQLInputObjectType.
|
|
372
|
+
* @param type - The GraphQL type to inspect.
|
|
373
|
+
* @returns True when the value is a GraphQLInputObjectType.
|
|
374
|
+
* @example
|
|
375
|
+
* ```ts
|
|
376
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
377
|
+
* import { isInputObjectType } from 'graphql/type';
|
|
378
|
+
*
|
|
379
|
+
* const schema = buildSchema(`
|
|
380
|
+
* input ReviewInput {
|
|
381
|
+
* stars: Int!
|
|
382
|
+
* }
|
|
383
|
+
*
|
|
384
|
+
* type Review {
|
|
385
|
+
* stars: Int!
|
|
386
|
+
* }
|
|
387
|
+
*
|
|
388
|
+
* type Query {
|
|
389
|
+
* review(input: ReviewInput): Review
|
|
390
|
+
* }
|
|
391
|
+
* `);
|
|
392
|
+
*
|
|
393
|
+
* isInputObjectType(schema.getType('ReviewInput')); // => true
|
|
394
|
+
* isInputObjectType(schema.getType('Review')); // => false
|
|
395
|
+
* ```
|
|
396
|
+
*/
|
|
66
397
|
export declare function isInputObjectType(
|
|
67
398
|
type: unknown,
|
|
68
399
|
): type is GraphQLInputObjectType;
|
|
400
|
+
/**
|
|
401
|
+
* Returns the value as a GraphQLInputObjectType, or throws if it is not one.
|
|
402
|
+
* @param type - The GraphQL type to inspect.
|
|
403
|
+
* @returns The value typed as a GraphQLInputObjectType.
|
|
404
|
+
* @example
|
|
405
|
+
* ```ts
|
|
406
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
407
|
+
* import { assertInputObjectType } from 'graphql/type';
|
|
408
|
+
*
|
|
409
|
+
* const schema = buildSchema(`
|
|
410
|
+
* input ReviewInput {
|
|
411
|
+
* stars: Int!
|
|
412
|
+
* }
|
|
413
|
+
*
|
|
414
|
+
* type Review {
|
|
415
|
+
* stars: Int!
|
|
416
|
+
* }
|
|
417
|
+
*
|
|
418
|
+
* type Query {
|
|
419
|
+
* review(input: ReviewInput): Review
|
|
420
|
+
* }
|
|
421
|
+
* `);
|
|
422
|
+
*
|
|
423
|
+
* const inputType = assertInputObjectType(schema.getType('ReviewInput'));
|
|
424
|
+
*
|
|
425
|
+
* Object.keys(inputType.getFields()); // => ['stars']
|
|
426
|
+
* assertInputObjectType(schema.getType('Review')); // throws an error
|
|
427
|
+
* ```
|
|
428
|
+
*/
|
|
69
429
|
export declare function assertInputObjectType(
|
|
70
430
|
type: unknown,
|
|
71
431
|
): GraphQLInputObjectType;
|
|
432
|
+
/**
|
|
433
|
+
* Returns true when the value is a GraphQLList.
|
|
434
|
+
* @param type - The GraphQL type to inspect.
|
|
435
|
+
* @returns True when the value is a GraphQLList.
|
|
436
|
+
* @example
|
|
437
|
+
* ```ts
|
|
438
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
439
|
+
* import { GraphQLList, GraphQLString, isListType } from 'graphql/type';
|
|
440
|
+
*
|
|
441
|
+
* const schema = buildSchema(`
|
|
442
|
+
* type Query {
|
|
443
|
+
* tags: [String!]!
|
|
444
|
+
* }
|
|
445
|
+
* `);
|
|
446
|
+
*
|
|
447
|
+
* const tagsField = schema.getQueryType()?.getFields().tags;
|
|
448
|
+
*
|
|
449
|
+
* isListType(new GraphQLList(GraphQLString)); // => true
|
|
450
|
+
* isListType(GraphQLString); // => false
|
|
451
|
+
* isListType(tagsField?.type); // => false
|
|
452
|
+
* ```
|
|
453
|
+
*/
|
|
72
454
|
export declare function isListType(
|
|
73
455
|
type: GraphQLInputType,
|
|
74
456
|
): type is GraphQLList<GraphQLInputType>;
|
|
457
|
+
/**
|
|
458
|
+
* Returns true when the output type is a GraphQLList.
|
|
459
|
+
* @param type - The GraphQL output type to inspect.
|
|
460
|
+
* @returns True when the output type is a list type.
|
|
461
|
+
* @example
|
|
462
|
+
* ```ts
|
|
463
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
464
|
+
* import { getNullableType, isListType } from 'graphql/type';
|
|
465
|
+
*
|
|
466
|
+
* const schema = buildSchema(`
|
|
467
|
+
* type Query {
|
|
468
|
+
* tags: [String!]!
|
|
469
|
+
* }
|
|
470
|
+
* `);
|
|
471
|
+
*
|
|
472
|
+
* const tagsField = schema.getQueryType()?.getFields().tags;
|
|
473
|
+
* const nullableTagsType = getNullableType(tagsField?.type);
|
|
474
|
+
*
|
|
475
|
+
* isListType(nullableTagsType); // => true
|
|
476
|
+
* ```
|
|
477
|
+
*/
|
|
75
478
|
export declare function isListType(
|
|
76
479
|
type: GraphQLOutputType,
|
|
77
480
|
): type is GraphQLList<GraphQLOutputType>;
|
|
481
|
+
/**
|
|
482
|
+
* Returns true when the value is a GraphQLList.
|
|
483
|
+
* @param type - The value to inspect.
|
|
484
|
+
* @returns True when the value is a list type.
|
|
485
|
+
* @example
|
|
486
|
+
* ```ts
|
|
487
|
+
* import { isListType } from 'graphql/type';
|
|
488
|
+
*
|
|
489
|
+
* isListType('[String]'); // => false
|
|
490
|
+
* isListType(null); // => false
|
|
491
|
+
* ```
|
|
492
|
+
*/
|
|
78
493
|
export declare function isListType(
|
|
79
494
|
type: unknown,
|
|
80
495
|
): type is GraphQLList<GraphQLType>;
|
|
496
|
+
/**
|
|
497
|
+
* Returns the value as a GraphQLList, or throws if it is not one.
|
|
498
|
+
* @param type - The GraphQL type to inspect.
|
|
499
|
+
* @returns The value typed as a GraphQLList.
|
|
500
|
+
* @example
|
|
501
|
+
* ```ts
|
|
502
|
+
* import { GraphQLList, GraphQLString, assertListType } from 'graphql/type';
|
|
503
|
+
*
|
|
504
|
+
* const listType = assertListType(new GraphQLList(GraphQLString));
|
|
505
|
+
*
|
|
506
|
+
* listType.ofType; // => GraphQLString
|
|
507
|
+
* assertListType(GraphQLString); // throws an error
|
|
508
|
+
* ```
|
|
509
|
+
*/
|
|
81
510
|
export declare function assertListType(type: unknown): GraphQLList<GraphQLType>;
|
|
511
|
+
/**
|
|
512
|
+
* Returns true when the value is a GraphQLNonNull.
|
|
513
|
+
* @param type - The GraphQL type to inspect.
|
|
514
|
+
* @returns True when the value is a GraphQLNonNull.
|
|
515
|
+
* @example
|
|
516
|
+
* ```ts
|
|
517
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
518
|
+
* import { GraphQLNonNull, GraphQLString, isNonNullType } from 'graphql/type';
|
|
519
|
+
*
|
|
520
|
+
* const schema = buildSchema(`
|
|
521
|
+
* type Query {
|
|
522
|
+
* name: String!
|
|
523
|
+
* nickname: String
|
|
524
|
+
* }
|
|
525
|
+
* `);
|
|
526
|
+
*
|
|
527
|
+
* const fields = schema.getQueryType()?.getFields();
|
|
528
|
+
*
|
|
529
|
+
* isNonNullType(new GraphQLNonNull(GraphQLString)); // => true
|
|
530
|
+
* isNonNullType(fields?.name.type); // => true
|
|
531
|
+
* isNonNullType(fields?.nickname.type); // => false
|
|
532
|
+
* ```
|
|
533
|
+
*/
|
|
82
534
|
export declare function isNonNullType(
|
|
83
535
|
type: GraphQLInputType,
|
|
84
536
|
): type is GraphQLNonNull<GraphQLInputType>;
|
|
537
|
+
/**
|
|
538
|
+
* Returns true when the output type is a GraphQLNonNull.
|
|
539
|
+
* @param type - The GraphQL output type to inspect.
|
|
540
|
+
* @returns True when the output type is a non-null type.
|
|
541
|
+
* @example
|
|
542
|
+
* ```ts
|
|
543
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
544
|
+
* import { isNonNullType } from 'graphql/type';
|
|
545
|
+
*
|
|
546
|
+
* const schema = buildSchema(`
|
|
547
|
+
* type Query {
|
|
548
|
+
* name: String!
|
|
549
|
+
* nickname: String
|
|
550
|
+
* }
|
|
551
|
+
* `);
|
|
552
|
+
*
|
|
553
|
+
* const fields = schema.getQueryType()?.getFields();
|
|
554
|
+
*
|
|
555
|
+
* isNonNullType(fields?.name.type); // => true
|
|
556
|
+
* isNonNullType(fields?.nickname.type); // => false
|
|
557
|
+
* ```
|
|
558
|
+
*/
|
|
85
559
|
export declare function isNonNullType(
|
|
86
560
|
type: GraphQLOutputType,
|
|
87
561
|
): type is GraphQLNonNull<GraphQLOutputType>;
|
|
562
|
+
/**
|
|
563
|
+
* Returns true when the value is a GraphQLNonNull.
|
|
564
|
+
* @param type - The value to inspect.
|
|
565
|
+
* @returns True when the value is a non-null type.
|
|
566
|
+
* @example
|
|
567
|
+
* ```ts
|
|
568
|
+
* import { isNonNullType } from 'graphql/type';
|
|
569
|
+
*
|
|
570
|
+
* isNonNullType('String!'); // => false
|
|
571
|
+
* isNonNullType(null); // => false
|
|
572
|
+
* ```
|
|
573
|
+
*/
|
|
88
574
|
export declare function isNonNullType(
|
|
89
575
|
type: unknown,
|
|
90
576
|
): type is GraphQLNonNull<GraphQLType>;
|
|
577
|
+
/**
|
|
578
|
+
* Returns the value as a GraphQLNonNull, or throws if it is not one.
|
|
579
|
+
* @param type - The GraphQL type to inspect.
|
|
580
|
+
* @returns The value typed as a GraphQLNonNull.
|
|
581
|
+
* @example
|
|
582
|
+
* ```ts
|
|
583
|
+
* import { GraphQLNonNull, GraphQLString, assertNonNullType } from 'graphql/type';
|
|
584
|
+
*
|
|
585
|
+
* const nonNullType = assertNonNullType(new GraphQLNonNull(GraphQLString));
|
|
586
|
+
*
|
|
587
|
+
* nonNullType.ofType; // => GraphQLString
|
|
588
|
+
* assertNonNullType(GraphQLString); // throws an error
|
|
589
|
+
* ```
|
|
590
|
+
*/
|
|
91
591
|
export declare function assertNonNullType(
|
|
92
592
|
type: unknown,
|
|
93
593
|
): GraphQLNonNull<GraphQLType>;
|
|
94
|
-
/**
|
|
95
|
-
* These types may be used as input types for arguments and directives.
|
|
96
|
-
*/
|
|
594
|
+
/** These types may be used as input types for arguments and directives. */
|
|
97
595
|
export declare type GraphQLInputType =
|
|
98
596
|
| GraphQLScalarType
|
|
99
597
|
| GraphQLEnumType
|
|
@@ -105,11 +603,65 @@ export declare type GraphQLInputType =
|
|
|
105
603
|
| GraphQLInputObjectType
|
|
106
604
|
| GraphQLList<GraphQLInputType>
|
|
107
605
|
>;
|
|
606
|
+
/**
|
|
607
|
+
* Returns true when the value can be used as a GraphQL input type.
|
|
608
|
+
* @param type - The GraphQL type to inspect.
|
|
609
|
+
* @returns True when the value can be used as a GraphQL input type.
|
|
610
|
+
* @example
|
|
611
|
+
* ```ts
|
|
612
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
613
|
+
* import { isInputType } from 'graphql/type';
|
|
614
|
+
*
|
|
615
|
+
* const schema = buildSchema(`
|
|
616
|
+
* input ReviewInput {
|
|
617
|
+
* stars: Int!
|
|
618
|
+
* }
|
|
619
|
+
*
|
|
620
|
+
* type Review {
|
|
621
|
+
* stars: Int!
|
|
622
|
+
* }
|
|
623
|
+
*
|
|
624
|
+
* type Query {
|
|
625
|
+
* review(input: ReviewInput): Review
|
|
626
|
+
* }
|
|
627
|
+
* `);
|
|
628
|
+
*
|
|
629
|
+
* isInputType(schema.getType('ReviewInput')); // => true
|
|
630
|
+
* isInputType(schema.getType('Review')); // => false
|
|
631
|
+
* ```
|
|
632
|
+
*/
|
|
108
633
|
export declare function isInputType(type: unknown): type is GraphQLInputType;
|
|
109
|
-
export declare function assertInputType(type: unknown): GraphQLInputType;
|
|
110
634
|
/**
|
|
111
|
-
*
|
|
635
|
+
* Returns the value as a GraphQL input type, or throws if it is not one.
|
|
636
|
+
* @param type - The GraphQL type to inspect.
|
|
637
|
+
* @returns The value typed as a GraphQL input type.
|
|
638
|
+
* @example
|
|
639
|
+
* ```ts
|
|
640
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
641
|
+
* import { assertInputType } from 'graphql/type';
|
|
642
|
+
*
|
|
643
|
+
* const schema = buildSchema(`
|
|
644
|
+
* input ReviewInput {
|
|
645
|
+
* stars: Int!
|
|
646
|
+
* }
|
|
647
|
+
*
|
|
648
|
+
* type Review {
|
|
649
|
+
* stars: Int!
|
|
650
|
+
* }
|
|
651
|
+
*
|
|
652
|
+
* type Query {
|
|
653
|
+
* review(input: ReviewInput): Review
|
|
654
|
+
* }
|
|
655
|
+
* `);
|
|
656
|
+
*
|
|
657
|
+
* const inputType = assertInputType(schema.getType('ReviewInput'));
|
|
658
|
+
*
|
|
659
|
+
* inputType.toString(); // => 'ReviewInput'
|
|
660
|
+
* assertInputType(schema.getType('Review')); // throws an error
|
|
661
|
+
* ```
|
|
112
662
|
*/
|
|
663
|
+
export declare function assertInputType(type: unknown): GraphQLInputType;
|
|
664
|
+
/** These types may be used as output types as the result of fields. */
|
|
113
665
|
export declare type GraphQLOutputType =
|
|
114
666
|
| GraphQLScalarType
|
|
115
667
|
| GraphQLObjectType
|
|
@@ -125,36 +677,266 @@ export declare type GraphQLOutputType =
|
|
|
125
677
|
| GraphQLEnumType
|
|
126
678
|
| GraphQLList<GraphQLOutputType>
|
|
127
679
|
>;
|
|
680
|
+
/**
|
|
681
|
+
* Returns true when the value can be used as a GraphQL output type.
|
|
682
|
+
* @param type - The GraphQL type to inspect.
|
|
683
|
+
* @returns True when the value can be used as a GraphQL output type.
|
|
684
|
+
* @example
|
|
685
|
+
* ```ts
|
|
686
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
687
|
+
* import { isOutputType } from 'graphql/type';
|
|
688
|
+
*
|
|
689
|
+
* const schema = buildSchema(`
|
|
690
|
+
* input ReviewInput {
|
|
691
|
+
* stars: Int!
|
|
692
|
+
* }
|
|
693
|
+
*
|
|
694
|
+
* type Review {
|
|
695
|
+
* stars: Int!
|
|
696
|
+
* }
|
|
697
|
+
*
|
|
698
|
+
* type Query {
|
|
699
|
+
* review(input: ReviewInput): Review
|
|
700
|
+
* }
|
|
701
|
+
* `);
|
|
702
|
+
*
|
|
703
|
+
* isOutputType(schema.getType('Review')); // => true
|
|
704
|
+
* isOutputType(schema.getType('ReviewInput')); // => false
|
|
705
|
+
* ```
|
|
706
|
+
*/
|
|
128
707
|
export declare function isOutputType(type: unknown): type is GraphQLOutputType;
|
|
129
|
-
export declare function assertOutputType(type: unknown): GraphQLOutputType;
|
|
130
708
|
/**
|
|
131
|
-
*
|
|
709
|
+
* Returns the value as a GraphQL output type, or throws if it is not one.
|
|
710
|
+
* @param type - The GraphQL type to inspect.
|
|
711
|
+
* @returns The value typed as a GraphQL output type.
|
|
712
|
+
* @example
|
|
713
|
+
* ```ts
|
|
714
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
715
|
+
* import { assertOutputType } from 'graphql/type';
|
|
716
|
+
*
|
|
717
|
+
* const schema = buildSchema(`
|
|
718
|
+
* input ReviewInput {
|
|
719
|
+
* stars: Int!
|
|
720
|
+
* }
|
|
721
|
+
*
|
|
722
|
+
* type Review {
|
|
723
|
+
* stars: Int!
|
|
724
|
+
* }
|
|
725
|
+
*
|
|
726
|
+
* type Query {
|
|
727
|
+
* review(input: ReviewInput): Review
|
|
728
|
+
* }
|
|
729
|
+
* `);
|
|
730
|
+
*
|
|
731
|
+
* const outputType = assertOutputType(schema.getType('Review'));
|
|
732
|
+
*
|
|
733
|
+
* outputType.toString(); // => 'Review'
|
|
734
|
+
* assertOutputType(schema.getType('ReviewInput')); // throws an error
|
|
735
|
+
* ```
|
|
132
736
|
*/
|
|
737
|
+
export declare function assertOutputType(type: unknown): GraphQLOutputType;
|
|
738
|
+
/** These types may describe types which may be leaf values. */
|
|
133
739
|
export declare type GraphQLLeafType = GraphQLScalarType | GraphQLEnumType;
|
|
740
|
+
/**
|
|
741
|
+
* Returns true when the value is a GraphQL scalar or enum type.
|
|
742
|
+
* @param type - The GraphQL type to inspect.
|
|
743
|
+
* @returns True when the value is a GraphQL scalar or enum type.
|
|
744
|
+
* @example
|
|
745
|
+
* ```ts
|
|
746
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
747
|
+
* import { isLeafType } from 'graphql/type';
|
|
748
|
+
*
|
|
749
|
+
* const schema = buildSchema(`
|
|
750
|
+
* enum Episode {
|
|
751
|
+
* NEW_HOPE
|
|
752
|
+
* }
|
|
753
|
+
*
|
|
754
|
+
* type Review {
|
|
755
|
+
* stars: Int!
|
|
756
|
+
* }
|
|
757
|
+
*
|
|
758
|
+
* type Query {
|
|
759
|
+
* episode: Episode
|
|
760
|
+
* review: Review
|
|
761
|
+
* }
|
|
762
|
+
* `);
|
|
763
|
+
*
|
|
764
|
+
* isLeafType(schema.getType('Episode')); // => true
|
|
765
|
+
* isLeafType(schema.getType('String')); // => true
|
|
766
|
+
* isLeafType(schema.getType('Review')); // => false
|
|
767
|
+
* ```
|
|
768
|
+
*/
|
|
134
769
|
export declare function isLeafType(type: unknown): type is GraphQLLeafType;
|
|
135
|
-
export declare function assertLeafType(type: unknown): GraphQLLeafType;
|
|
136
770
|
/**
|
|
137
|
-
*
|
|
771
|
+
* Returns the value as a GraphQL leaf type, or throws if it is not one.
|
|
772
|
+
* @param type - The GraphQL type to inspect.
|
|
773
|
+
* @returns The value typed as a GraphQL leaf type.
|
|
774
|
+
* @example
|
|
775
|
+
* ```ts
|
|
776
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
777
|
+
* import { assertLeafType } from 'graphql/type';
|
|
778
|
+
*
|
|
779
|
+
* const schema = buildSchema(`
|
|
780
|
+
* enum Episode {
|
|
781
|
+
* NEW_HOPE
|
|
782
|
+
* }
|
|
783
|
+
*
|
|
784
|
+
* type Review {
|
|
785
|
+
* stars: Int!
|
|
786
|
+
* }
|
|
787
|
+
*
|
|
788
|
+
* type Query {
|
|
789
|
+
* episode: Episode
|
|
790
|
+
* review: Review
|
|
791
|
+
* }
|
|
792
|
+
* `);
|
|
793
|
+
*
|
|
794
|
+
* const episodeType = assertLeafType(schema.getType('Episode'));
|
|
795
|
+
*
|
|
796
|
+
* episodeType.toString(); // => 'Episode'
|
|
797
|
+
* assertLeafType(schema.getType('Review')); // throws an error
|
|
798
|
+
* ```
|
|
138
799
|
*/
|
|
800
|
+
export declare function assertLeafType(type: unknown): GraphQLLeafType;
|
|
801
|
+
/** These types may describe the parent context of a selection set. */
|
|
139
802
|
export declare type GraphQLCompositeType =
|
|
140
803
|
| GraphQLObjectType
|
|
141
804
|
| GraphQLInterfaceType
|
|
142
805
|
| GraphQLUnionType;
|
|
806
|
+
/**
|
|
807
|
+
* Returns true when the value is a GraphQL object, interface, or union type.
|
|
808
|
+
* @param type - The GraphQL type to inspect.
|
|
809
|
+
* @returns True when the value is a GraphQL object, interface, or union type.
|
|
810
|
+
* @example
|
|
811
|
+
* ```ts
|
|
812
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
813
|
+
* import { isCompositeType } from 'graphql/type';
|
|
814
|
+
*
|
|
815
|
+
* const schema = buildSchema(`
|
|
816
|
+
* interface Node {
|
|
817
|
+
* id: ID!
|
|
818
|
+
* }
|
|
819
|
+
*
|
|
820
|
+
* type User implements Node {
|
|
821
|
+
* id: ID!
|
|
822
|
+
* }
|
|
823
|
+
*
|
|
824
|
+
* union SearchResult = User
|
|
825
|
+
*
|
|
826
|
+
* type Query {
|
|
827
|
+
* node: Node
|
|
828
|
+
* search: [SearchResult]
|
|
829
|
+
* }
|
|
830
|
+
* `);
|
|
831
|
+
*
|
|
832
|
+
* isCompositeType(schema.getType('User')); // => true
|
|
833
|
+
* isCompositeType(schema.getType('Node')); // => true
|
|
834
|
+
* isCompositeType(schema.getType('SearchResult')); // => true
|
|
835
|
+
* isCompositeType(schema.getType('String')); // => false
|
|
836
|
+
* ```
|
|
837
|
+
*/
|
|
143
838
|
export declare function isCompositeType(
|
|
144
839
|
type: unknown,
|
|
145
840
|
): type is GraphQLCompositeType;
|
|
841
|
+
/**
|
|
842
|
+
* Returns the value as a GraphQL composite type, or throws if it is not one.
|
|
843
|
+
* @param type - The GraphQL type to inspect.
|
|
844
|
+
* @returns The value typed as a GraphQL composite type.
|
|
845
|
+
* @example
|
|
846
|
+
* ```ts
|
|
847
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
848
|
+
* import { assertCompositeType } from 'graphql/type';
|
|
849
|
+
*
|
|
850
|
+
* const schema = buildSchema(`
|
|
851
|
+
* interface Node {
|
|
852
|
+
* id: ID!
|
|
853
|
+
* }
|
|
854
|
+
*
|
|
855
|
+
* type User implements Node {
|
|
856
|
+
* id: ID!
|
|
857
|
+
* }
|
|
858
|
+
*
|
|
859
|
+
* type Query {
|
|
860
|
+
* node: Node
|
|
861
|
+
* }
|
|
862
|
+
* `);
|
|
863
|
+
*
|
|
864
|
+
* const userType = assertCompositeType(schema.getType('User'));
|
|
865
|
+
*
|
|
866
|
+
* userType.toString(); // => 'User'
|
|
867
|
+
* assertCompositeType(schema.getType('String')); // throws an error
|
|
868
|
+
* ```
|
|
869
|
+
*/
|
|
146
870
|
export declare function assertCompositeType(
|
|
147
871
|
type: unknown,
|
|
148
872
|
): GraphQLCompositeType;
|
|
149
|
-
/**
|
|
150
|
-
* These types may describe the parent context of a selection set.
|
|
151
|
-
*/
|
|
873
|
+
/** These types may describe the parent context of a selection set. */
|
|
152
874
|
export declare type GraphQLAbstractType =
|
|
153
875
|
| GraphQLInterfaceType
|
|
154
876
|
| GraphQLUnionType;
|
|
877
|
+
/**
|
|
878
|
+
* Returns true when the value is a GraphQL interface or union type.
|
|
879
|
+
* @param type - The GraphQL type to inspect.
|
|
880
|
+
* @returns True when the value is a GraphQL interface or union type.
|
|
881
|
+
* @example
|
|
882
|
+
* ```ts
|
|
883
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
884
|
+
* import { isAbstractType } from 'graphql/type';
|
|
885
|
+
*
|
|
886
|
+
* const schema = buildSchema(`
|
|
887
|
+
* interface Node {
|
|
888
|
+
* id: ID!
|
|
889
|
+
* }
|
|
890
|
+
*
|
|
891
|
+
* type User implements Node {
|
|
892
|
+
* id: ID!
|
|
893
|
+
* }
|
|
894
|
+
*
|
|
895
|
+
* union SearchResult = User
|
|
896
|
+
*
|
|
897
|
+
* type Query {
|
|
898
|
+
* node: Node
|
|
899
|
+
* search: [SearchResult]
|
|
900
|
+
* }
|
|
901
|
+
* `);
|
|
902
|
+
*
|
|
903
|
+
* isAbstractType(schema.getType('Node')); // => true
|
|
904
|
+
* isAbstractType(schema.getType('SearchResult')); // => true
|
|
905
|
+
* isAbstractType(schema.getType('User')); // => false
|
|
906
|
+
* ```
|
|
907
|
+
*/
|
|
155
908
|
export declare function isAbstractType(
|
|
156
909
|
type: unknown,
|
|
157
910
|
): type is GraphQLAbstractType;
|
|
911
|
+
/**
|
|
912
|
+
* Returns the value as a GraphQL abstract type, or throws if it is not one.
|
|
913
|
+
* @param type - The GraphQL type to inspect.
|
|
914
|
+
* @returns The value typed as a GraphQL abstract type.
|
|
915
|
+
* @example
|
|
916
|
+
* ```ts
|
|
917
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
918
|
+
* import { assertAbstractType } from 'graphql/type';
|
|
919
|
+
*
|
|
920
|
+
* const schema = buildSchema(`
|
|
921
|
+
* interface Node {
|
|
922
|
+
* id: ID!
|
|
923
|
+
* }
|
|
924
|
+
*
|
|
925
|
+
* type User implements Node {
|
|
926
|
+
* id: ID!
|
|
927
|
+
* }
|
|
928
|
+
*
|
|
929
|
+
* type Query {
|
|
930
|
+
* node: Node
|
|
931
|
+
* }
|
|
932
|
+
* `);
|
|
933
|
+
*
|
|
934
|
+
* const nodeType = assertAbstractType(schema.getType('Node'));
|
|
935
|
+
*
|
|
936
|
+
* nodeType.toString(); // => 'Node'
|
|
937
|
+
* assertAbstractType(schema.getType('User')); // throws an error
|
|
938
|
+
* ```
|
|
939
|
+
*/
|
|
158
940
|
export declare function assertAbstractType(type: unknown): GraphQLAbstractType;
|
|
159
941
|
/**
|
|
160
942
|
* List Type Wrapper
|
|
@@ -162,9 +944,8 @@ export declare function assertAbstractType(type: unknown): GraphQLAbstractType;
|
|
|
162
944
|
* A list is a wrapping type which points to another type.
|
|
163
945
|
* Lists are often created within the context of defining the fields of
|
|
164
946
|
* an object type.
|
|
165
|
-
*
|
|
166
|
-
*
|
|
167
|
-
*
|
|
947
|
+
* @typeParam T - The GraphQL type wrapped by this list type.
|
|
948
|
+
* @example
|
|
168
949
|
* ```ts
|
|
169
950
|
* const PersonType = new GraphQLObjectType({
|
|
170
951
|
* name: 'Person',
|
|
@@ -176,10 +957,55 @@ export declare function assertAbstractType(type: unknown): GraphQLAbstractType;
|
|
|
176
957
|
* ```
|
|
177
958
|
*/
|
|
178
959
|
export declare class GraphQLList<T extends GraphQLType> {
|
|
960
|
+
/** The type wrapped by this list or non-null type. */
|
|
179
961
|
readonly ofType: T;
|
|
962
|
+
/**
|
|
963
|
+
* Creates a GraphQLList instance.
|
|
964
|
+
* @param ofType - The type to wrap.
|
|
965
|
+
* @example
|
|
966
|
+
* ```ts
|
|
967
|
+
* import { GraphQLList, GraphQLString } from 'graphql/type';
|
|
968
|
+
*
|
|
969
|
+
* const stringList = new GraphQLList(GraphQLString);
|
|
970
|
+
*
|
|
971
|
+
* stringList.ofType; // => GraphQLString
|
|
972
|
+
* String(stringList); // => '[String]'
|
|
973
|
+
* ```
|
|
974
|
+
*/
|
|
180
975
|
constructor(ofType: T);
|
|
976
|
+
/**
|
|
977
|
+
* Returns the value used by `Object.prototype.toString`.
|
|
978
|
+
* @returns The built-in string tag for this object.
|
|
979
|
+
*/
|
|
181
980
|
get [Symbol.toStringTag](): string;
|
|
981
|
+
/**
|
|
982
|
+
* Returns this wrapping type as a GraphQL type-reference string.
|
|
983
|
+
* @returns The GraphQL type-reference string.
|
|
984
|
+
* @example
|
|
985
|
+
* ```ts
|
|
986
|
+
* import { GraphQLList, GraphQLNonNull, GraphQLString } from 'graphql/type';
|
|
987
|
+
*
|
|
988
|
+
* const stringList = new GraphQLList(GraphQLString);
|
|
989
|
+
* const requiredStringList = new GraphQLList(new GraphQLNonNull(GraphQLString));
|
|
990
|
+
*
|
|
991
|
+
* stringList.toString(); // => '[String]'
|
|
992
|
+
* requiredStringList.toString(); // => '[String!]'
|
|
993
|
+
* ```
|
|
994
|
+
*/
|
|
182
995
|
toString(): string;
|
|
996
|
+
/**
|
|
997
|
+
* Returns the JSON representation used when this object is serialized.
|
|
998
|
+
* @returns The JSON-serializable representation.
|
|
999
|
+
* @example
|
|
1000
|
+
* ```ts
|
|
1001
|
+
* import { GraphQLList, GraphQLString } from 'graphql/type';
|
|
1002
|
+
*
|
|
1003
|
+
* const stringList = new GraphQLList(GraphQLString);
|
|
1004
|
+
*
|
|
1005
|
+
* stringList.toJSON(); // => '[String]'
|
|
1006
|
+
* JSON.stringify({ type: stringList }); // => '{"type":"[String]"}'
|
|
1007
|
+
* ```
|
|
1008
|
+
*/
|
|
183
1009
|
toJSON(): string;
|
|
184
1010
|
}
|
|
185
1011
|
/**
|
|
@@ -190,9 +1016,8 @@ export declare class GraphQLList<T extends GraphQLType> {
|
|
|
190
1016
|
* an error is raised if this ever occurs during a request. It is useful for
|
|
191
1017
|
* fields which you can make a strong guarantee on non-nullability, for example
|
|
192
1018
|
* usually the id field of a database row will never be null.
|
|
193
|
-
*
|
|
194
|
-
*
|
|
195
|
-
*
|
|
1019
|
+
* @typeParam T - The nullable GraphQL type wrapped by this non-null type.
|
|
1020
|
+
* @example
|
|
196
1021
|
* ```ts
|
|
197
1022
|
* const RowType = new GraphQLObjectType({
|
|
198
1023
|
* name: 'Row',
|
|
@@ -201,28 +1026,104 @@ export declare class GraphQLList<T extends GraphQLType> {
|
|
|
201
1026
|
* })
|
|
202
1027
|
* })
|
|
203
1028
|
* ```
|
|
1029
|
+
*
|
|
204
1030
|
* Note: the enforcement of non-nullability occurs within the executor.
|
|
205
1031
|
*/
|
|
206
1032
|
export declare class GraphQLNonNull<T extends GraphQLNullableType> {
|
|
1033
|
+
/** The type wrapped by this list or non-null type. */
|
|
207
1034
|
readonly ofType: T;
|
|
1035
|
+
/**
|
|
1036
|
+
* Creates a GraphQLNonNull instance.
|
|
1037
|
+
* @param ofType - The type to wrap.
|
|
1038
|
+
* @example
|
|
1039
|
+
* ```ts
|
|
1040
|
+
* import { GraphQLNonNull, GraphQLString } from 'graphql/type';
|
|
1041
|
+
*
|
|
1042
|
+
* const requiredString = new GraphQLNonNull(GraphQLString);
|
|
1043
|
+
*
|
|
1044
|
+
* requiredString.ofType; // => GraphQLString
|
|
1045
|
+
* String(requiredString); // => 'String!'
|
|
1046
|
+
* ```
|
|
1047
|
+
*/
|
|
208
1048
|
constructor(ofType: T);
|
|
1049
|
+
/**
|
|
1050
|
+
* Returns the value used by `Object.prototype.toString`.
|
|
1051
|
+
* @returns The built-in string tag for this object.
|
|
1052
|
+
*/
|
|
209
1053
|
get [Symbol.toStringTag](): string;
|
|
1054
|
+
/**
|
|
1055
|
+
* Returns this wrapping type as a GraphQL type-reference string.
|
|
1056
|
+
* @returns The GraphQL type-reference string.
|
|
1057
|
+
* @example
|
|
1058
|
+
* ```ts
|
|
1059
|
+
* import { GraphQLList, GraphQLNonNull, GraphQLString } from 'graphql/type';
|
|
1060
|
+
*
|
|
1061
|
+
* const requiredString = new GraphQLNonNull(GraphQLString);
|
|
1062
|
+
* const requiredStringList = new GraphQLNonNull(
|
|
1063
|
+
* new GraphQLList(GraphQLString),
|
|
1064
|
+
* );
|
|
1065
|
+
*
|
|
1066
|
+
* requiredString.toString(); // => 'String!'
|
|
1067
|
+
* requiredStringList.toString(); // => '[String]!'
|
|
1068
|
+
* ```
|
|
1069
|
+
*/
|
|
210
1070
|
toString(): string;
|
|
1071
|
+
/**
|
|
1072
|
+
* Returns the JSON representation used when this object is serialized.
|
|
1073
|
+
* @returns The JSON-serializable representation.
|
|
1074
|
+
* @example
|
|
1075
|
+
* ```ts
|
|
1076
|
+
* import { GraphQLNonNull, GraphQLString } from 'graphql/type';
|
|
1077
|
+
*
|
|
1078
|
+
* const requiredString = new GraphQLNonNull(GraphQLString);
|
|
1079
|
+
*
|
|
1080
|
+
* requiredString.toJSON(); // => 'String!'
|
|
1081
|
+
* JSON.stringify({ type: requiredString }); // => '{"type":"String!"}'
|
|
1082
|
+
* ```
|
|
1083
|
+
*/
|
|
211
1084
|
toJSON(): string;
|
|
212
|
-
}
|
|
213
|
-
/**
|
|
214
|
-
* These types wrap and modify other types
|
|
215
|
-
*/
|
|
1085
|
+
}
|
|
1086
|
+
/** These types wrap and modify other types */
|
|
216
1087
|
export declare type GraphQLWrappingType =
|
|
217
1088
|
| GraphQLList<GraphQLType>
|
|
218
1089
|
| GraphQLNonNull<GraphQLType>;
|
|
1090
|
+
/**
|
|
1091
|
+
* Returns true when the value is a GraphQL list or non-null wrapper type.
|
|
1092
|
+
* @param type - The GraphQL type to inspect.
|
|
1093
|
+
* @returns True when the value is a GraphQL list or non-null wrapper type.
|
|
1094
|
+
* @example
|
|
1095
|
+
* ```ts
|
|
1096
|
+
* import {
|
|
1097
|
+
* GraphQLList,
|
|
1098
|
+
* GraphQLNonNull,
|
|
1099
|
+
* GraphQLString,
|
|
1100
|
+
* isWrappingType,
|
|
1101
|
+
* } from 'graphql/type';
|
|
1102
|
+
*
|
|
1103
|
+
* isWrappingType(new GraphQLList(GraphQLString)); // => true
|
|
1104
|
+
* isWrappingType(new GraphQLNonNull(GraphQLString)); // => true
|
|
1105
|
+
* isWrappingType(GraphQLString); // => false
|
|
1106
|
+
* ```
|
|
1107
|
+
*/
|
|
219
1108
|
export declare function isWrappingType(
|
|
220
1109
|
type: unknown,
|
|
221
1110
|
): type is GraphQLWrappingType;
|
|
222
|
-
export declare function assertWrappingType(type: unknown): GraphQLWrappingType;
|
|
223
1111
|
/**
|
|
224
|
-
*
|
|
1112
|
+
* Returns the value as a GraphQL wrapping type, or throws if it is not one.
|
|
1113
|
+
* @param type - The GraphQL type to inspect.
|
|
1114
|
+
* @returns The value typed as a GraphQL wrapping type.
|
|
1115
|
+
* @example
|
|
1116
|
+
* ```ts
|
|
1117
|
+
* import { GraphQLList, GraphQLString, assertWrappingType } from 'graphql/type';
|
|
1118
|
+
*
|
|
1119
|
+
* const wrappingType = assertWrappingType(new GraphQLList(GraphQLString));
|
|
1120
|
+
*
|
|
1121
|
+
* wrappingType.toString(); // => '[String]'
|
|
1122
|
+
* assertWrappingType(GraphQLString); // throws an error
|
|
1123
|
+
* ```
|
|
225
1124
|
*/
|
|
1125
|
+
export declare function assertWrappingType(type: unknown): GraphQLWrappingType;
|
|
1126
|
+
/** These types can all accept null as a value. */
|
|
226
1127
|
export declare type GraphQLNullableType =
|
|
227
1128
|
| GraphQLScalarType
|
|
228
1129
|
| GraphQLObjectType
|
|
@@ -231,61 +1132,305 @@ export declare type GraphQLNullableType =
|
|
|
231
1132
|
| GraphQLEnumType
|
|
232
1133
|
| GraphQLInputObjectType
|
|
233
1134
|
| GraphQLList<GraphQLType>;
|
|
1135
|
+
/**
|
|
1136
|
+
* Returns true when the value is a GraphQL type that can accept null.
|
|
1137
|
+
* @param type - The GraphQL type to inspect.
|
|
1138
|
+
* @returns True when the value is a GraphQL type that can accept null.
|
|
1139
|
+
* @example
|
|
1140
|
+
* ```ts
|
|
1141
|
+
* import { GraphQLNonNull, GraphQLString, isNullableType } from 'graphql/type';
|
|
1142
|
+
*
|
|
1143
|
+
* isNullableType(GraphQLString); // => true
|
|
1144
|
+
* isNullableType(new GraphQLNonNull(GraphQLString)); // => false
|
|
1145
|
+
* isNullableType(null); // => false
|
|
1146
|
+
* ```
|
|
1147
|
+
*/
|
|
234
1148
|
export declare function isNullableType(
|
|
235
1149
|
type: unknown,
|
|
236
1150
|
): type is GraphQLNullableType;
|
|
1151
|
+
/**
|
|
1152
|
+
* Returns the value as a nullable GraphQL type, or throws if it is not one.
|
|
1153
|
+
* @param type - The GraphQL type to inspect.
|
|
1154
|
+
* @returns The value typed as a nullable GraphQL type.
|
|
1155
|
+
* @example
|
|
1156
|
+
* ```ts
|
|
1157
|
+
* import {
|
|
1158
|
+
* GraphQLNonNull,
|
|
1159
|
+
* GraphQLString,
|
|
1160
|
+
* assertNullableType,
|
|
1161
|
+
* } from 'graphql/type';
|
|
1162
|
+
*
|
|
1163
|
+
* const nullableType = assertNullableType(GraphQLString);
|
|
1164
|
+
*
|
|
1165
|
+
* nullableType; // => GraphQLString
|
|
1166
|
+
* assertNullableType(new GraphQLNonNull(GraphQLString)); // throws an error
|
|
1167
|
+
* ```
|
|
1168
|
+
*/
|
|
237
1169
|
export declare function assertNullableType(type: unknown): GraphQLNullableType;
|
|
1170
|
+
/**
|
|
1171
|
+
* Returns the nullable type.
|
|
1172
|
+
* @param type - The GraphQL type to inspect.
|
|
1173
|
+
* @returns The nullable type after removing one non-null wrapper, if present.
|
|
1174
|
+
* @example
|
|
1175
|
+
* ```ts
|
|
1176
|
+
* import { getNullableType } from 'graphql/type';
|
|
1177
|
+
*
|
|
1178
|
+
* getNullableType(null); // => undefined
|
|
1179
|
+
* getNullableType(undefined); // => undefined
|
|
1180
|
+
* ```
|
|
1181
|
+
*/
|
|
238
1182
|
export declare function getNullableType(type: undefined | null): void;
|
|
1183
|
+
/**
|
|
1184
|
+
* Returns the nullable type after removing one non-null wrapper.
|
|
1185
|
+
* @param type - A nullable type or non-null wrapper.
|
|
1186
|
+
* @returns The nullable type after removing one non-null wrapper, if present.
|
|
1187
|
+
* @typeParam T - The nullable GraphQL type returned after removing one non-null wrapper.
|
|
1188
|
+
* @example
|
|
1189
|
+
* ```ts
|
|
1190
|
+
* import {
|
|
1191
|
+
* GraphQLList,
|
|
1192
|
+
* GraphQLNonNull,
|
|
1193
|
+
* GraphQLString,
|
|
1194
|
+
* getNullableType,
|
|
1195
|
+
* } from 'graphql/type';
|
|
1196
|
+
*
|
|
1197
|
+
* const requiredString = new GraphQLNonNull(GraphQLString);
|
|
1198
|
+
* const stringList = new GraphQLList(GraphQLString);
|
|
1199
|
+
*
|
|
1200
|
+
* getNullableType(requiredString); // => GraphQLString
|
|
1201
|
+
* getNullableType(stringList); // => stringList
|
|
1202
|
+
* ```
|
|
1203
|
+
*/
|
|
239
1204
|
export declare function getNullableType<T extends GraphQLNullableType>(
|
|
240
1205
|
type: T | GraphQLNonNull<T>,
|
|
241
1206
|
): T;
|
|
1207
|
+
/**
|
|
1208
|
+
* Returns the nullable type after removing one non-null wrapper.
|
|
1209
|
+
* @param type - The GraphQL type to inspect.
|
|
1210
|
+
* @returns The nullable type after removing one non-null wrapper, if present.
|
|
1211
|
+
* @example
|
|
1212
|
+
* ```ts
|
|
1213
|
+
* import {
|
|
1214
|
+
* GraphQLList,
|
|
1215
|
+
* GraphQLNonNull,
|
|
1216
|
+
* GraphQLString,
|
|
1217
|
+
* getNullableType,
|
|
1218
|
+
* } from 'graphql/type';
|
|
1219
|
+
*
|
|
1220
|
+
* const requiredStringList = new GraphQLNonNull(
|
|
1221
|
+
* new GraphQLList(GraphQLString),
|
|
1222
|
+
* );
|
|
1223
|
+
*
|
|
1224
|
+
* getNullableType(requiredStringList).toString(); // => '[String]'
|
|
1225
|
+
* getNullableType(GraphQLString); // => GraphQLString
|
|
1226
|
+
* ```
|
|
1227
|
+
*/
|
|
242
1228
|
export declare function getNullableType(
|
|
243
1229
|
type: Maybe<GraphQLType>,
|
|
244
1230
|
): GraphQLNullableType | undefined;
|
|
245
|
-
/**
|
|
246
|
-
* These named types do not include modifiers like List or NonNull.
|
|
247
|
-
*/
|
|
1231
|
+
/** These named types do not include modifiers like List or NonNull. */
|
|
248
1232
|
export declare type GraphQLNamedType =
|
|
249
1233
|
| GraphQLNamedInputType
|
|
250
1234
|
| GraphQLNamedOutputType;
|
|
1235
|
+
/** A named GraphQL type that can be used as an input type. */
|
|
251
1236
|
export declare type GraphQLNamedInputType =
|
|
252
1237
|
| GraphQLScalarType
|
|
253
1238
|
| GraphQLEnumType
|
|
254
1239
|
| GraphQLInputObjectType;
|
|
1240
|
+
/** A named GraphQL type that can be used as an output type. */
|
|
255
1241
|
export declare type GraphQLNamedOutputType =
|
|
256
1242
|
| GraphQLScalarType
|
|
257
1243
|
| GraphQLObjectType
|
|
258
1244
|
| GraphQLInterfaceType
|
|
259
1245
|
| GraphQLUnionType
|
|
260
1246
|
| GraphQLEnumType;
|
|
1247
|
+
/**
|
|
1248
|
+
* Returns true when the value is a GraphQL named type.
|
|
1249
|
+
* @param type - The GraphQL type to inspect.
|
|
1250
|
+
* @returns True when the value is a GraphQL named type.
|
|
1251
|
+
* @example
|
|
1252
|
+
* ```ts
|
|
1253
|
+
* import { GraphQLList, GraphQLString, isNamedType } from 'graphql/type';
|
|
1254
|
+
*
|
|
1255
|
+
* isNamedType(GraphQLString); // => true
|
|
1256
|
+
* isNamedType(new GraphQLList(GraphQLString)); // => false
|
|
1257
|
+
* isNamedType(null); // => false
|
|
1258
|
+
* ```
|
|
1259
|
+
*/
|
|
261
1260
|
export declare function isNamedType(type: unknown): type is GraphQLNamedType;
|
|
1261
|
+
/**
|
|
1262
|
+
* Returns the value as a GraphQL named type, or throws if it is not one.
|
|
1263
|
+
* @param type - The GraphQL type to inspect.
|
|
1264
|
+
* @returns The value typed as a GraphQL named type.
|
|
1265
|
+
* @example
|
|
1266
|
+
* ```ts
|
|
1267
|
+
* import { GraphQLList, GraphQLString, assertNamedType } from 'graphql/type';
|
|
1268
|
+
*
|
|
1269
|
+
* const namedType = assertNamedType(GraphQLString);
|
|
1270
|
+
*
|
|
1271
|
+
* namedType.name; // => 'String'
|
|
1272
|
+
* assertNamedType(new GraphQLList(GraphQLString)); // throws an error
|
|
1273
|
+
* ```
|
|
1274
|
+
*/
|
|
262
1275
|
export declare function assertNamedType(type: unknown): GraphQLNamedType;
|
|
1276
|
+
/**
|
|
1277
|
+
* Returns the named type.
|
|
1278
|
+
* @param type - The GraphQL type to inspect.
|
|
1279
|
+
* @returns The named type after unwrapping all list and non-null wrappers.
|
|
1280
|
+
* @example
|
|
1281
|
+
* ```ts
|
|
1282
|
+
* import { getNamedType } from 'graphql/type';
|
|
1283
|
+
*
|
|
1284
|
+
* getNamedType(null); // => undefined
|
|
1285
|
+
* getNamedType(undefined); // => undefined
|
|
1286
|
+
* ```
|
|
1287
|
+
*/
|
|
263
1288
|
export declare function getNamedType(type: undefined | null): void;
|
|
1289
|
+
/**
|
|
1290
|
+
* Returns the named input type after unwrapping all list and non-null wrappers.
|
|
1291
|
+
* @param type - The GraphQL input type to inspect.
|
|
1292
|
+
* @returns The named input type after unwrapping all wrappers.
|
|
1293
|
+
* @example
|
|
1294
|
+
* ```ts
|
|
1295
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
1296
|
+
* import { getNamedType } from 'graphql/type';
|
|
1297
|
+
*
|
|
1298
|
+
* const schema = buildSchema(`
|
|
1299
|
+
* input ReviewInput {
|
|
1300
|
+
* stars: Int!
|
|
1301
|
+
* }
|
|
1302
|
+
*
|
|
1303
|
+
* type Query {
|
|
1304
|
+
* review(input: [ReviewInput!]!): Boolean
|
|
1305
|
+
* }
|
|
1306
|
+
* `);
|
|
1307
|
+
*
|
|
1308
|
+
* const inputArg = schema.getQueryType()?.getFields().review.args[0];
|
|
1309
|
+
*
|
|
1310
|
+
* getNamedType(inputArg?.type).toString(); // => 'ReviewInput'
|
|
1311
|
+
* ```
|
|
1312
|
+
*/
|
|
264
1313
|
export declare function getNamedType(
|
|
265
1314
|
type: GraphQLInputType,
|
|
266
1315
|
): GraphQLNamedInputType;
|
|
1316
|
+
/**
|
|
1317
|
+
* Returns the named output type after unwrapping all list and non-null wrappers.
|
|
1318
|
+
* @param type - The GraphQL output type to inspect.
|
|
1319
|
+
* @returns The named output type after unwrapping all wrappers.
|
|
1320
|
+
* @example
|
|
1321
|
+
* ```ts
|
|
1322
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
1323
|
+
* import { getNamedType } from 'graphql/type';
|
|
1324
|
+
*
|
|
1325
|
+
* const schema = buildSchema(`
|
|
1326
|
+
* type User {
|
|
1327
|
+
* name: String
|
|
1328
|
+
* }
|
|
1329
|
+
*
|
|
1330
|
+
* type Query {
|
|
1331
|
+
* users: [User!]!
|
|
1332
|
+
* }
|
|
1333
|
+
* `);
|
|
1334
|
+
*
|
|
1335
|
+
* const usersField = schema.getQueryType()?.getFields().users;
|
|
1336
|
+
*
|
|
1337
|
+
* getNamedType(usersField?.type).toString(); // => 'User'
|
|
1338
|
+
* ```
|
|
1339
|
+
*/
|
|
267
1340
|
export declare function getNamedType(
|
|
268
1341
|
type: GraphQLOutputType,
|
|
269
1342
|
): GraphQLNamedOutputType;
|
|
1343
|
+
/**
|
|
1344
|
+
* Returns the named type after unwrapping all list and non-null wrappers.
|
|
1345
|
+
* @param type - The GraphQL type to inspect.
|
|
1346
|
+
* @returns The named type after unwrapping all wrappers.
|
|
1347
|
+
* @example
|
|
1348
|
+
* ```ts
|
|
1349
|
+
* import {
|
|
1350
|
+
* GraphQLList,
|
|
1351
|
+
* GraphQLNonNull,
|
|
1352
|
+
* GraphQLString,
|
|
1353
|
+
* getNamedType,
|
|
1354
|
+
* } from 'graphql/type';
|
|
1355
|
+
*
|
|
1356
|
+
* const nestedType = new GraphQLNonNull(
|
|
1357
|
+
* new GraphQLList(new GraphQLNonNull(GraphQLString)),
|
|
1358
|
+
* );
|
|
1359
|
+
*
|
|
1360
|
+
* getNamedType(nestedType); // => GraphQLString
|
|
1361
|
+
* ```
|
|
1362
|
+
*/
|
|
270
1363
|
export declare function getNamedType(type: GraphQLType): GraphQLNamedType;
|
|
1364
|
+
/**
|
|
1365
|
+
* Returns the named type after unwrapping all list and non-null wrappers.
|
|
1366
|
+
* @param type - The GraphQL type to inspect.
|
|
1367
|
+
* @returns The named type after unwrapping all wrappers, or undefined for nullish input.
|
|
1368
|
+
* @example
|
|
1369
|
+
* ```ts
|
|
1370
|
+
* import {
|
|
1371
|
+
* GraphQLList,
|
|
1372
|
+
* GraphQLString,
|
|
1373
|
+
* getNamedType,
|
|
1374
|
+
* } from 'graphql/type';
|
|
1375
|
+
*
|
|
1376
|
+
* getNamedType(new GraphQLList(GraphQLString)); // => GraphQLString
|
|
1377
|
+
* getNamedType(undefined); // => undefined
|
|
1378
|
+
* ```
|
|
1379
|
+
*/
|
|
271
1380
|
export declare function getNamedType(
|
|
272
1381
|
type: Maybe<GraphQLType>,
|
|
273
1382
|
): GraphQLNamedType | undefined;
|
|
274
1383
|
/**
|
|
275
1384
|
* Used while defining GraphQL types to allow for circular references in
|
|
276
1385
|
* otherwise immutable type definitions.
|
|
1386
|
+
* @typeParam T - The element type returned by the thunk or array.
|
|
277
1387
|
*/
|
|
278
1388
|
export declare type ThunkReadonlyArray<T> =
|
|
279
1389
|
| (() => ReadonlyArray<T>)
|
|
280
1390
|
| ReadonlyArray<T>;
|
|
1391
|
+
/**
|
|
1392
|
+
* A thunk that resolves to an object map.
|
|
1393
|
+
* @typeParam T - Value type stored in the object map.
|
|
1394
|
+
*/
|
|
281
1395
|
export declare type ThunkObjMap<T> = (() => ObjMap<T>) | ObjMap<T>;
|
|
1396
|
+
/**
|
|
1397
|
+
* Resolves a thunked readonly array.
|
|
1398
|
+
* @param thunk - The thunk or value to resolve.
|
|
1399
|
+
* @returns The resolved readonly array.
|
|
1400
|
+
* @typeParam T - The element type resolved from the thunk or array.
|
|
1401
|
+
* @example
|
|
1402
|
+
* ```ts
|
|
1403
|
+
* import { GraphQLString, resolveReadonlyArrayThunk } from 'graphql/type';
|
|
1404
|
+
*
|
|
1405
|
+
* const lazyFields = resolveReadonlyArrayThunk(() => [GraphQLString]);
|
|
1406
|
+
* const fields = resolveReadonlyArrayThunk([GraphQLString]);
|
|
1407
|
+
*
|
|
1408
|
+
* lazyFields; // => [GraphQLString]
|
|
1409
|
+
* fields; // => [GraphQLString]
|
|
1410
|
+
* ```
|
|
1411
|
+
*/
|
|
282
1412
|
export declare function resolveReadonlyArrayThunk<T>(
|
|
283
1413
|
thunk: ThunkReadonlyArray<T>,
|
|
284
1414
|
): ReadonlyArray<T>;
|
|
1415
|
+
/**
|
|
1416
|
+
* Resolves a thunked object map.
|
|
1417
|
+
* @param thunk - The thunk or value to resolve.
|
|
1418
|
+
* @returns The resolved object map.
|
|
1419
|
+
* @typeParam T - The object-map value type resolved from the thunk or map.
|
|
1420
|
+
* @example
|
|
1421
|
+
* ```ts
|
|
1422
|
+
* import { GraphQLString, resolveObjMapThunk } from 'graphql/type';
|
|
1423
|
+
*
|
|
1424
|
+
* const lazyFields = resolveObjMapThunk(() => ({ name: GraphQLString }));
|
|
1425
|
+
* const fields = resolveObjMapThunk({ name: GraphQLString });
|
|
1426
|
+
*
|
|
1427
|
+
* lazyFields.name; // => GraphQLString
|
|
1428
|
+
* fields.name; // => GraphQLString
|
|
1429
|
+
* ```
|
|
1430
|
+
*/
|
|
285
1431
|
export declare function resolveObjMapThunk<T>(thunk: ThunkObjMap<T>): ObjMap<T>;
|
|
286
1432
|
/**
|
|
287
1433
|
* Custom extensions
|
|
288
|
-
*
|
|
289
1434
|
* @remarks
|
|
290
1435
|
* Use a unique identifier name for your extension, for example the name of
|
|
291
1436
|
* your library or project. Do not use a shortened identifier as this increases
|
|
@@ -298,20 +1443,22 @@ export interface GraphQLScalarTypeExtensions {
|
|
|
298
1443
|
/**
|
|
299
1444
|
* Scalar Type Definition
|
|
300
1445
|
*
|
|
301
|
-
*
|
|
302
|
-
*
|
|
303
|
-
*
|
|
1446
|
+
* Scalar types define the leaf values of a GraphQL response and the input
|
|
1447
|
+
* values accepted by arguments and input object fields. A scalar type has a
|
|
1448
|
+
* name and coercion functions that validate and convert runtime values and
|
|
1449
|
+
* GraphQL literals.
|
|
304
1450
|
*
|
|
305
1451
|
* If a type's serialize function returns `null` or does not return a value
|
|
306
1452
|
* (i.e. it returns `undefined`) then an error will be raised and a `null`
|
|
307
|
-
* value will be returned in the response.
|
|
308
|
-
*
|
|
309
|
-
*
|
|
310
|
-
*
|
|
1453
|
+
* value will be returned in the response. Prefer validating inputs before
|
|
1454
|
+
* execution so clients receive input diagnostics before result coercion fails.
|
|
1455
|
+
* @typeParam TInternal - The internal runtime representation accepted by this scalar.
|
|
1456
|
+
* @typeParam TExternal - The serialized representation exposed in GraphQL results.
|
|
1457
|
+
* @example
|
|
311
1458
|
* ```ts
|
|
312
1459
|
* const OddType = new GraphQLScalarType({
|
|
313
1460
|
* name: 'Odd',
|
|
314
|
-
* serialize(value) {
|
|
1461
|
+
* serialize: (value) => {
|
|
315
1462
|
* if (!Number.isFinite(value)) {
|
|
316
1463
|
* throw new Error(
|
|
317
1464
|
* `Scalar "Odd" cannot represent "${value}" since it is not a finite number.`,
|
|
@@ -330,34 +1477,167 @@ export declare class GraphQLScalarType<
|
|
|
330
1477
|
TInternal = unknown,
|
|
331
1478
|
TExternal = TInternal,
|
|
332
1479
|
> {
|
|
1480
|
+
/** The GraphQL name for this schema element. */
|
|
333
1481
|
name: string;
|
|
1482
|
+
/** Human-readable description for this schema element, if provided. */
|
|
334
1483
|
description: Maybe<string>;
|
|
1484
|
+
/** URL identifying the behavior specified for this custom scalar. */
|
|
335
1485
|
specifiedByURL: Maybe<string>;
|
|
1486
|
+
/** Function that converts internal values to externally visible scalar values. */
|
|
336
1487
|
serialize: GraphQLScalarSerializer<TExternal>;
|
|
1488
|
+
/** Function that converts variable input into this scalar's internal value. */
|
|
337
1489
|
parseValue: GraphQLScalarValueParser<TInternal>;
|
|
1490
|
+
/** Function that converts AST input literals into this scalar's internal value. */
|
|
338
1491
|
parseLiteral: GraphQLScalarLiteralParser<TInternal>;
|
|
1492
|
+
/** Custom extension fields reserved for users. */
|
|
339
1493
|
extensions: Readonly<GraphQLScalarTypeExtensions>;
|
|
1494
|
+
/** AST node from which this schema element was built, if available. */
|
|
340
1495
|
astNode: Maybe<ScalarTypeDefinitionNode>;
|
|
1496
|
+
/** AST extension nodes applied to this schema element. */
|
|
341
1497
|
extensionASTNodes: ReadonlyArray<ScalarTypeExtensionNode>;
|
|
1498
|
+
/**
|
|
1499
|
+
* Creates a GraphQLScalarType instance.
|
|
1500
|
+
* @param config - Configuration describing this object.
|
|
1501
|
+
* @example
|
|
1502
|
+
* ```ts
|
|
1503
|
+
* import { Kind, parse } from 'graphql/language';
|
|
1504
|
+
* import { GraphQLScalarType } from 'graphql/type';
|
|
1505
|
+
*
|
|
1506
|
+
* const document = parse(`
|
|
1507
|
+
* "Odd integer values."
|
|
1508
|
+
* scalar Odd @specifiedBy(url: "https://example.com/odd")
|
|
1509
|
+
*
|
|
1510
|
+
* extend scalar Odd @specifiedBy(url: "https://example.com/odd-v2")
|
|
1511
|
+
* `);
|
|
1512
|
+
*
|
|
1513
|
+
* const Odd = new GraphQLScalarType({
|
|
1514
|
+
* name: 'Odd',
|
|
1515
|
+
* description: 'Odd integer values.',
|
|
1516
|
+
* specifiedByURL: 'https://example.com/odd',
|
|
1517
|
+
* serialize: (value) => {
|
|
1518
|
+
* if (typeof value !== 'number' || value % 2 === 0) {
|
|
1519
|
+
* throw new TypeError('Odd can only serialize odd numbers.');
|
|
1520
|
+
* }
|
|
1521
|
+
* return value;
|
|
1522
|
+
* },
|
|
1523
|
+
* parseValue: (value) => {
|
|
1524
|
+
* if (typeof value !== 'number' || value % 2 === 0) {
|
|
1525
|
+
* throw new TypeError('Odd can only parse odd numbers.');
|
|
1526
|
+
* }
|
|
1527
|
+
* return value;
|
|
1528
|
+
* },
|
|
1529
|
+
* parseLiteral: (ast) => {
|
|
1530
|
+
* if (ast.kind !== Kind.INT) {
|
|
1531
|
+
* throw new TypeError('Odd can only parse integer literals.');
|
|
1532
|
+
* }
|
|
1533
|
+
* const value = Number(ast.value);
|
|
1534
|
+
* if (value % 2 === 0) {
|
|
1535
|
+
* throw new TypeError('Odd can only parse odd integer literals.');
|
|
1536
|
+
* }
|
|
1537
|
+
* return value;
|
|
1538
|
+
* },
|
|
1539
|
+
* extensions: { numeric: true },
|
|
1540
|
+
* astNode: document.definitions[0],
|
|
1541
|
+
* extensionASTNodes: [ document.definitions[1] ],
|
|
1542
|
+
* });
|
|
1543
|
+
*
|
|
1544
|
+
* Odd.description; // => 'Odd integer values.'
|
|
1545
|
+
* Odd.specifiedByURL; // => 'https://example.com/odd'
|
|
1546
|
+
* Odd.serialize(3); // => 3
|
|
1547
|
+
* Odd.parseValue(5); // => 5
|
|
1548
|
+
* Odd.extensions; // => { numeric: true }
|
|
1549
|
+
* ```
|
|
1550
|
+
*/
|
|
342
1551
|
constructor(config: Readonly<GraphQLScalarTypeConfig<TInternal, TExternal>>);
|
|
1552
|
+
/**
|
|
1553
|
+
* Returns the value used by `Object.prototype.toString`.
|
|
1554
|
+
* @returns The built-in string tag for this object.
|
|
1555
|
+
*/
|
|
343
1556
|
get [Symbol.toStringTag](): string;
|
|
1557
|
+
/**
|
|
1558
|
+
* Returns a normalized configuration object for this object.
|
|
1559
|
+
* @returns A configuration object that can be used to recreate this object.
|
|
1560
|
+
* @example
|
|
1561
|
+
* ```ts
|
|
1562
|
+
* import { GraphQLScalarType } from 'graphql/type';
|
|
1563
|
+
*
|
|
1564
|
+
* const Url = new GraphQLScalarType({
|
|
1565
|
+
* name: 'Url',
|
|
1566
|
+
* description: 'An absolute URL string.',
|
|
1567
|
+
* specifiedByURL: 'https://url.spec.whatwg.org/',
|
|
1568
|
+
* });
|
|
1569
|
+
*
|
|
1570
|
+
* const config = Url.toConfig();
|
|
1571
|
+
* const UrlCopy = new GraphQLScalarType(config);
|
|
1572
|
+
*
|
|
1573
|
+
* config.name; // => 'Url'
|
|
1574
|
+
* config.specifiedByURL; // => 'https://url.spec.whatwg.org/'
|
|
1575
|
+
* UrlCopy.name; // => Url.name
|
|
1576
|
+
* ```
|
|
1577
|
+
*/
|
|
344
1578
|
toConfig(): GraphQLScalarTypeNormalizedConfig<TInternal, TExternal>;
|
|
1579
|
+
/**
|
|
1580
|
+
* Returns the schema coordinate identifying this scalar type.
|
|
1581
|
+
* @returns The schema coordinate for this scalar type.
|
|
1582
|
+
* @example
|
|
1583
|
+
* ```ts
|
|
1584
|
+
* import { GraphQLScalarType } from 'graphql/type';
|
|
1585
|
+
*
|
|
1586
|
+
* const DateTime = new GraphQLScalarType({ name: 'DateTime' });
|
|
1587
|
+
*
|
|
1588
|
+
* DateTime.toString(); // => 'DateTime'
|
|
1589
|
+
* String(DateTime); // => 'DateTime'
|
|
1590
|
+
* ```
|
|
1591
|
+
*/
|
|
345
1592
|
toString(): string;
|
|
1593
|
+
/**
|
|
1594
|
+
* Returns the JSON representation used when this object is serialized.
|
|
1595
|
+
* @returns The JSON-serializable representation.
|
|
1596
|
+
* @example
|
|
1597
|
+
* ```ts
|
|
1598
|
+
* import { GraphQLScalarType } from 'graphql/type';
|
|
1599
|
+
*
|
|
1600
|
+
* const DateTime = new GraphQLScalarType({ name: 'DateTime' });
|
|
1601
|
+
*
|
|
1602
|
+
* DateTime.toJSON(); // => 'DateTime'
|
|
1603
|
+
* JSON.stringify({ type: DateTime }); // => '{"type":"DateTime"}'
|
|
1604
|
+
* ```
|
|
1605
|
+
*/
|
|
346
1606
|
toJSON(): string;
|
|
347
1607
|
}
|
|
1608
|
+
/**
|
|
1609
|
+
* Serializes a runtime value as a scalar output value.
|
|
1610
|
+
* @typeParam TExternal - The serialized representation returned for GraphQL results.
|
|
1611
|
+
*/
|
|
348
1612
|
export declare type GraphQLScalarSerializer<TExternal> = (
|
|
349
1613
|
outputValue: unknown,
|
|
350
1614
|
) => TExternal;
|
|
1615
|
+
/**
|
|
1616
|
+
* Parses a runtime input value as a scalar input value.
|
|
1617
|
+
* @typeParam TInternal - The internal runtime representation produced from variable input.
|
|
1618
|
+
*/
|
|
351
1619
|
export declare type GraphQLScalarValueParser<TInternal> = (
|
|
352
1620
|
inputValue: unknown,
|
|
353
1621
|
) => TInternal;
|
|
1622
|
+
/**
|
|
1623
|
+
* Parses a GraphQL value literal as a scalar input value.
|
|
1624
|
+
* @typeParam TInternal - The internal runtime representation produced from literal input.
|
|
1625
|
+
*/
|
|
354
1626
|
export declare type GraphQLScalarLiteralParser<TInternal> = (
|
|
355
1627
|
valueNode: ValueNode,
|
|
356
1628
|
variables?: Maybe<ObjMap<unknown>>,
|
|
357
1629
|
) => TInternal;
|
|
1630
|
+
/**
|
|
1631
|
+
* Configuration used to construct a GraphQLScalarType.
|
|
1632
|
+
* @typeParam TInternal - The internal runtime representation accepted by this scalar.
|
|
1633
|
+
* @typeParam TExternal - The serialized representation exposed in GraphQL results.
|
|
1634
|
+
*/
|
|
358
1635
|
export interface GraphQLScalarTypeConfig<TInternal, TExternal> {
|
|
1636
|
+
/** The GraphQL name for this schema element. */
|
|
359
1637
|
name: string;
|
|
1638
|
+
/** Human-readable description for this schema element, if provided. */
|
|
360
1639
|
description?: Maybe<string>;
|
|
1640
|
+
/** URL identifying the behavior specified for this custom scalar. */
|
|
361
1641
|
specifiedByURL?: Maybe<string>;
|
|
362
1642
|
/** Serializes an internal value to include in a response. */
|
|
363
1643
|
serialize?: GraphQLScalarSerializer<TExternal>;
|
|
@@ -365,8 +1645,11 @@ export interface GraphQLScalarTypeConfig<TInternal, TExternal> {
|
|
|
365
1645
|
parseValue?: GraphQLScalarValueParser<TInternal>;
|
|
366
1646
|
/** Parses an externally provided literal value to use as an input. */
|
|
367
1647
|
parseLiteral?: GraphQLScalarLiteralParser<TInternal>;
|
|
1648
|
+
/** Custom extension fields reserved for users. */
|
|
368
1649
|
extensions?: Maybe<Readonly<GraphQLScalarTypeExtensions>>;
|
|
1650
|
+
/** AST node from which this schema element was built, if available. */
|
|
369
1651
|
astNode?: Maybe<ScalarTypeDefinitionNode>;
|
|
1652
|
+
/** AST extension nodes applied to this schema element. */
|
|
370
1653
|
extensionASTNodes?: Maybe<ReadonlyArray<ScalarTypeExtensionNode>>;
|
|
371
1654
|
}
|
|
372
1655
|
interface GraphQLScalarTypeNormalizedConfig<TInternal, TExternal>
|
|
@@ -379,15 +1662,15 @@ interface GraphQLScalarTypeNormalizedConfig<TInternal, TExternal>
|
|
|
379
1662
|
}
|
|
380
1663
|
/**
|
|
381
1664
|
* Custom extensions
|
|
382
|
-
*
|
|
383
1665
|
* @remarks
|
|
384
1666
|
* Use a unique identifier name for your extension, for example the name of
|
|
385
1667
|
* your library or project. Do not use a shortened identifier as this increases
|
|
386
1668
|
* the risk of conflicts. We recommend you add at most one extension field,
|
|
387
1669
|
* an object which can contain all the values you need.
|
|
388
|
-
*
|
|
389
1670
|
* We've provided these template arguments because this is an open type and
|
|
390
1671
|
* you may find them useful.
|
|
1672
|
+
* @typeParam _TSource - Reserved source type parameter for extension typing.
|
|
1673
|
+
* @typeParam _TContext - Reserved context type parameter for extension typing.
|
|
391
1674
|
*/
|
|
392
1675
|
export interface GraphQLObjectTypeExtensions<_TSource = any, _TContext = any> {
|
|
393
1676
|
[attributeName: string]: unknown;
|
|
@@ -397,9 +1680,9 @@ export interface GraphQLObjectTypeExtensions<_TSource = any, _TContext = any> {
|
|
|
397
1680
|
*
|
|
398
1681
|
* Almost all of the GraphQL types you define will be object types. Object types
|
|
399
1682
|
* have a name, but most importantly describe their fields.
|
|
400
|
-
*
|
|
401
|
-
*
|
|
402
|
-
*
|
|
1683
|
+
* @typeParam TSource - Source object type passed to resolvers.
|
|
1684
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
1685
|
+
* @example
|
|
403
1686
|
* ```ts
|
|
404
1687
|
* const AddressType = new GraphQLObjectType({
|
|
405
1688
|
* name: 'Address',
|
|
@@ -408,20 +1691,18 @@ export interface GraphQLObjectTypeExtensions<_TSource = any, _TContext = any> {
|
|
|
408
1691
|
* number: { type: GraphQLInt },
|
|
409
1692
|
* formatted: {
|
|
410
1693
|
* type: GraphQLString,
|
|
411
|
-
* resolve(obj) {
|
|
1694
|
+
* resolve: (obj) => {
|
|
412
1695
|
* return obj.number + ' ' + obj.street
|
|
413
1696
|
* }
|
|
414
1697
|
* }
|
|
415
1698
|
* }
|
|
416
1699
|
* });
|
|
417
1700
|
* ```
|
|
418
|
-
*
|
|
1701
|
+
* @example
|
|
419
1702
|
* When two types need to refer to each other, or a type needs to refer to
|
|
420
1703
|
* itself in a field, you can use a function expression (aka a closure or a
|
|
421
1704
|
* thunk) to supply the fields lazily.
|
|
422
1705
|
*
|
|
423
|
-
* Example:
|
|
424
|
-
*
|
|
425
1706
|
* ```ts
|
|
426
1707
|
* const PersonType = new GraphQLObjectType({
|
|
427
1708
|
* name: 'Person',
|
|
@@ -433,39 +1714,274 @@ export interface GraphQLObjectTypeExtensions<_TSource = any, _TContext = any> {
|
|
|
433
1714
|
* ```
|
|
434
1715
|
*/
|
|
435
1716
|
export declare class GraphQLObjectType<TSource = any, TContext = any> {
|
|
1717
|
+
/** The GraphQL name for this schema element. */
|
|
436
1718
|
name: string;
|
|
1719
|
+
/** Human-readable description for this schema element, if provided. */
|
|
437
1720
|
description: Maybe<string>;
|
|
1721
|
+
/** Predicate used to determine whether a runtime value belongs to this object type. */
|
|
438
1722
|
isTypeOf: Maybe<GraphQLIsTypeOfFn<TSource, TContext>>;
|
|
1723
|
+
/** Custom extension fields reserved for users. */
|
|
439
1724
|
extensions: Readonly<GraphQLObjectTypeExtensions<TSource, TContext>>;
|
|
1725
|
+
/** AST node from which this schema element was built, if available. */
|
|
440
1726
|
astNode: Maybe<ObjectTypeDefinitionNode>;
|
|
1727
|
+
/** AST extension nodes applied to this schema element. */
|
|
441
1728
|
extensionASTNodes: ReadonlyArray<ObjectTypeExtensionNode>;
|
|
442
1729
|
private _fields;
|
|
443
1730
|
private _interfaces;
|
|
1731
|
+
/**
|
|
1732
|
+
* Creates a GraphQLObjectType instance.
|
|
1733
|
+
* @param config - Configuration describing this object.
|
|
1734
|
+
* @example
|
|
1735
|
+
* ```ts
|
|
1736
|
+
* // Configure an object type with interfaces, fields, arguments, and metadata.
|
|
1737
|
+
* import { parse } from 'graphql/language';
|
|
1738
|
+
* import {
|
|
1739
|
+
* GraphQLID,
|
|
1740
|
+
* GraphQLInterfaceType,
|
|
1741
|
+
* GraphQLNonNull,
|
|
1742
|
+
* GraphQLObjectType,
|
|
1743
|
+
* GraphQLString,
|
|
1744
|
+
* } from 'graphql/type';
|
|
1745
|
+
*
|
|
1746
|
+
* const document = parse(`
|
|
1747
|
+
* type User implements Node {
|
|
1748
|
+
* id: ID!
|
|
1749
|
+
* name(format: String = "short"): String
|
|
1750
|
+
* }
|
|
1751
|
+
*
|
|
1752
|
+
* extend type User {
|
|
1753
|
+
* displayName: String
|
|
1754
|
+
* }
|
|
1755
|
+
* `);
|
|
1756
|
+
* const definition = document.definitions[0];
|
|
1757
|
+
* const nameField = definition.fields[1];
|
|
1758
|
+
* const formatArg = nameField.arguments[0];
|
|
1759
|
+
*
|
|
1760
|
+
* const Node = new GraphQLInterfaceType({
|
|
1761
|
+
* name: 'Node',
|
|
1762
|
+
* fields: {
|
|
1763
|
+
* id: { type: new GraphQLNonNull(GraphQLID) },
|
|
1764
|
+
* },
|
|
1765
|
+
* });
|
|
1766
|
+
*
|
|
1767
|
+
* const User = new GraphQLObjectType({
|
|
1768
|
+
* name: 'User',
|
|
1769
|
+
* description: 'A registered user.',
|
|
1770
|
+
* interfaces: [Node],
|
|
1771
|
+
* fields: {
|
|
1772
|
+
* id: { type: new GraphQLNonNull(GraphQLID) },
|
|
1773
|
+
* name: {
|
|
1774
|
+
* description: 'The formatted user name.',
|
|
1775
|
+
* type: GraphQLString,
|
|
1776
|
+
* args: {
|
|
1777
|
+
* format: {
|
|
1778
|
+
* description: 'Controls the name format.',
|
|
1779
|
+
* type: GraphQLString,
|
|
1780
|
+
* defaultValue: 'short',
|
|
1781
|
+
* deprecationReason: 'Use locale instead.',
|
|
1782
|
+
* extensions: { public: true },
|
|
1783
|
+
* astNode: formatArg,
|
|
1784
|
+
* },
|
|
1785
|
+
* },
|
|
1786
|
+
* resolve: (user, { format }) => {
|
|
1787
|
+
* return format === 'long' ? user.fullName : user.name;
|
|
1788
|
+
* },
|
|
1789
|
+
* deprecationReason: 'Use displayName.',
|
|
1790
|
+
* extensions: { cacheSeconds: 60 },
|
|
1791
|
+
* astNode: nameField,
|
|
1792
|
+
* },
|
|
1793
|
+
* },
|
|
1794
|
+
* isTypeOf: (value) => {
|
|
1795
|
+
* return typeof value === 'object' && value != null && 'id' in value;
|
|
1796
|
+
* },
|
|
1797
|
+
* extensions: { entity: 'User' },
|
|
1798
|
+
* astNode: definition,
|
|
1799
|
+
* extensionASTNodes: [ document.definitions[1] ],
|
|
1800
|
+
* });
|
|
1801
|
+
*
|
|
1802
|
+
* User.name; // => 'User'
|
|
1803
|
+
* User.getInterfaces(); // => [Node]
|
|
1804
|
+
* Object.keys(User.getFields()); // => ['id', 'name']
|
|
1805
|
+
* User.getFields().name.args[0].defaultValue; // => 'short'
|
|
1806
|
+
* User.extensions; // => { entity: 'User' }
|
|
1807
|
+
* ```
|
|
1808
|
+
* @example
|
|
1809
|
+
* ```ts
|
|
1810
|
+
* // This variant configures a subscription field with subscribe and resolve functions.
|
|
1811
|
+
* import { GraphQLObjectType, GraphQLString } from 'graphql/type';
|
|
1812
|
+
*
|
|
1813
|
+
* const Subscription = new GraphQLObjectType({
|
|
1814
|
+
* name: 'Subscription',
|
|
1815
|
+
* fields: {
|
|
1816
|
+
* greeting: {
|
|
1817
|
+
* type: GraphQLString,
|
|
1818
|
+
* subscribe: async function* () {
|
|
1819
|
+
* yield { greeting: 'Hello!' };
|
|
1820
|
+
* },
|
|
1821
|
+
* resolve: (event) => {
|
|
1822
|
+
* return event.greeting;
|
|
1823
|
+
* },
|
|
1824
|
+
* },
|
|
1825
|
+
* },
|
|
1826
|
+
* });
|
|
1827
|
+
*
|
|
1828
|
+
* typeof Subscription.getFields().greeting.subscribe; // => 'function'
|
|
1829
|
+
* ```
|
|
1830
|
+
*/
|
|
444
1831
|
constructor(config: Readonly<GraphQLObjectTypeConfig<TSource, TContext>>);
|
|
1832
|
+
/**
|
|
1833
|
+
* Returns the value used by `Object.prototype.toString`.
|
|
1834
|
+
* @returns The built-in string tag for this object.
|
|
1835
|
+
*/
|
|
445
1836
|
get [Symbol.toStringTag](): string;
|
|
1837
|
+
/**
|
|
1838
|
+
* Returns the fields defined by this type.
|
|
1839
|
+
* @returns The fields keyed by field name.
|
|
1840
|
+
* @example
|
|
1841
|
+
* ```ts
|
|
1842
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
1843
|
+
* import { assertObjectType } from 'graphql/type';
|
|
1844
|
+
*
|
|
1845
|
+
* const schema = buildSchema(`
|
|
1846
|
+
* type User {
|
|
1847
|
+
* id: ID!
|
|
1848
|
+
* name: String
|
|
1849
|
+
* }
|
|
1850
|
+
*
|
|
1851
|
+
* type Query {
|
|
1852
|
+
* viewer: User
|
|
1853
|
+
* }
|
|
1854
|
+
* `);
|
|
1855
|
+
*
|
|
1856
|
+
* const User = assertObjectType(schema.getType('User'));
|
|
1857
|
+
* const fields = User.getFields();
|
|
1858
|
+
*
|
|
1859
|
+
* Object.keys(fields); // => ['id', 'name']
|
|
1860
|
+
* String(fields.id.type); // => 'ID!'
|
|
1861
|
+
* ```
|
|
1862
|
+
*/
|
|
446
1863
|
getFields(): GraphQLFieldMap<TSource, TContext>;
|
|
1864
|
+
/**
|
|
1865
|
+
* Returns the interfaces implemented by this type.
|
|
1866
|
+
* @returns The implemented interfaces.
|
|
1867
|
+
* @example
|
|
1868
|
+
* ```ts
|
|
1869
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
1870
|
+
* import { assertObjectType } from 'graphql/type';
|
|
1871
|
+
*
|
|
1872
|
+
* const schema = buildSchema(`
|
|
1873
|
+
* interface Node {
|
|
1874
|
+
* id: ID!
|
|
1875
|
+
* }
|
|
1876
|
+
*
|
|
1877
|
+
* type User implements Node {
|
|
1878
|
+
* id: ID!
|
|
1879
|
+
* }
|
|
1880
|
+
*
|
|
1881
|
+
* type Query {
|
|
1882
|
+
* viewer: User
|
|
1883
|
+
* }
|
|
1884
|
+
* `);
|
|
1885
|
+
*
|
|
1886
|
+
* const User = assertObjectType(schema.getType('User'));
|
|
1887
|
+
*
|
|
1888
|
+
* User.getInterfaces().map((type) => type.name); // => ['Node']
|
|
1889
|
+
* ```
|
|
1890
|
+
*/
|
|
447
1891
|
getInterfaces(): ReadonlyArray<GraphQLInterfaceType>;
|
|
1892
|
+
/**
|
|
1893
|
+
* Returns a normalized configuration object for this object.
|
|
1894
|
+
* @returns A configuration object that can be used to recreate this object.
|
|
1895
|
+
* @example
|
|
1896
|
+
* ```ts
|
|
1897
|
+
* import { GraphQLObjectType, GraphQLString } from 'graphql/type';
|
|
1898
|
+
*
|
|
1899
|
+
* const User = new GraphQLObjectType({
|
|
1900
|
+
* name: 'User',
|
|
1901
|
+
* fields: {
|
|
1902
|
+
* name: { type: GraphQLString },
|
|
1903
|
+
* },
|
|
1904
|
+
* });
|
|
1905
|
+
*
|
|
1906
|
+
* const config = User.toConfig();
|
|
1907
|
+
* const UserCopy = new GraphQLObjectType(config);
|
|
1908
|
+
*
|
|
1909
|
+
* config.fields.name.type; // => GraphQLString
|
|
1910
|
+
* UserCopy.getFields().name.type; // => GraphQLString
|
|
1911
|
+
* ```
|
|
1912
|
+
*/
|
|
448
1913
|
toConfig(): GraphQLObjectTypeNormalizedConfig<TSource, TContext>;
|
|
1914
|
+
/**
|
|
1915
|
+
* Returns the schema coordinate identifying this object type.
|
|
1916
|
+
* @returns The schema coordinate for this object type.
|
|
1917
|
+
* @example
|
|
1918
|
+
* ```ts
|
|
1919
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
1920
|
+
* import { assertObjectType } from 'graphql/type';
|
|
1921
|
+
*
|
|
1922
|
+
* const schema = buildSchema(`
|
|
1923
|
+
* type User {
|
|
1924
|
+
* name: String
|
|
1925
|
+
* }
|
|
1926
|
+
*
|
|
1927
|
+
* type Query {
|
|
1928
|
+
* viewer: User
|
|
1929
|
+
* }
|
|
1930
|
+
* `);
|
|
1931
|
+
*
|
|
1932
|
+
* const User = assertObjectType(schema.getType('User'));
|
|
1933
|
+
*
|
|
1934
|
+
* User.toString(); // => 'User'
|
|
1935
|
+
* ```
|
|
1936
|
+
*/
|
|
449
1937
|
toString(): string;
|
|
1938
|
+
/**
|
|
1939
|
+
* Returns the JSON representation used when this object is serialized.
|
|
1940
|
+
* @returns The JSON-serializable representation.
|
|
1941
|
+
* @example
|
|
1942
|
+
* ```ts
|
|
1943
|
+
* import { GraphQLObjectType, GraphQLString } from 'graphql/type';
|
|
1944
|
+
*
|
|
1945
|
+
* const User = new GraphQLObjectType({
|
|
1946
|
+
* name: 'User',
|
|
1947
|
+
* fields: { name: { type: GraphQLString } },
|
|
1948
|
+
* });
|
|
1949
|
+
*
|
|
1950
|
+
* User.toJSON(); // => 'User'
|
|
1951
|
+
* JSON.stringify({ type: User }); // => '{"type":"User"}'
|
|
1952
|
+
* ```
|
|
1953
|
+
*/
|
|
450
1954
|
toJSON(): string;
|
|
451
1955
|
}
|
|
1956
|
+
/** @internal */
|
|
452
1957
|
export declare function defineArguments(
|
|
453
1958
|
config: GraphQLFieldConfigArgumentMap,
|
|
454
1959
|
): ReadonlyArray<GraphQLArgument>;
|
|
455
|
-
/**
|
|
456
|
-
* @internal
|
|
457
|
-
*/
|
|
1960
|
+
/** @internal */
|
|
458
1961
|
export declare function argsToArgsConfig(
|
|
459
1962
|
args: ReadonlyArray<GraphQLArgument>,
|
|
460
1963
|
): GraphQLFieldConfigArgumentMap;
|
|
1964
|
+
/**
|
|
1965
|
+
* Configuration used to construct a GraphQLObjectType.
|
|
1966
|
+
* @typeParam TSource - Source object type passed to resolvers.
|
|
1967
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
1968
|
+
*/
|
|
461
1969
|
export interface GraphQLObjectTypeConfig<TSource, TContext> {
|
|
1970
|
+
/** The GraphQL name for this schema element. */
|
|
462
1971
|
name: string;
|
|
1972
|
+
/** Human-readable description for this schema element, if provided. */
|
|
463
1973
|
description?: Maybe<string>;
|
|
1974
|
+
/** Interfaces implemented by this object or interface type. */
|
|
464
1975
|
interfaces?: ThunkReadonlyArray<GraphQLInterfaceType>;
|
|
1976
|
+
/** Fields declared by this object, interface, input object, or literal. */
|
|
465
1977
|
fields: ThunkObjMap<GraphQLFieldConfig<TSource, TContext>>;
|
|
1978
|
+
/** Predicate used to determine whether a runtime value belongs to this object type. */
|
|
466
1979
|
isTypeOf?: Maybe<GraphQLIsTypeOfFn<TSource, TContext>>;
|
|
1980
|
+
/** Custom extension fields reserved for users. */
|
|
467
1981
|
extensions?: Maybe<Readonly<GraphQLObjectTypeExtensions<TSource, TContext>>>;
|
|
1982
|
+
/** AST node from which this schema element was built, if available. */
|
|
468
1983
|
astNode?: Maybe<ObjectTypeDefinitionNode>;
|
|
1984
|
+
/** AST extension nodes applied to this schema element. */
|
|
469
1985
|
extensionASTNodes?: Maybe<ReadonlyArray<ObjectTypeExtensionNode>>;
|
|
470
1986
|
}
|
|
471
1987
|
interface GraphQLObjectTypeNormalizedConfig<TSource, TContext>
|
|
@@ -475,17 +1991,34 @@ interface GraphQLObjectTypeNormalizedConfig<TSource, TContext>
|
|
|
475
1991
|
extensions: Readonly<GraphQLObjectTypeExtensions<TSource, TContext>>;
|
|
476
1992
|
extensionASTNodes: ReadonlyArray<ObjectTypeExtensionNode>;
|
|
477
1993
|
}
|
|
1994
|
+
/**
|
|
1995
|
+
* Resolves the concrete object type for an abstract GraphQL type.
|
|
1996
|
+
* @typeParam TSource - Source object type passed to resolvers.
|
|
1997
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
1998
|
+
*/
|
|
478
1999
|
export declare type GraphQLTypeResolver<TSource, TContext> = (
|
|
479
2000
|
value: TSource,
|
|
480
2001
|
context: TContext,
|
|
481
2002
|
info: GraphQLResolveInfo,
|
|
482
2003
|
abstractType: GraphQLAbstractType,
|
|
483
2004
|
) => PromiseOrValue<string | undefined>;
|
|
2005
|
+
/**
|
|
2006
|
+
* Checks whether a runtime value belongs to a GraphQL object type.
|
|
2007
|
+
* @typeParam TSource - Source object type tested against this object type.
|
|
2008
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
2009
|
+
*/
|
|
484
2010
|
export declare type GraphQLIsTypeOfFn<TSource, TContext> = (
|
|
485
2011
|
source: TSource,
|
|
486
2012
|
context: TContext,
|
|
487
2013
|
info: GraphQLResolveInfo,
|
|
488
2014
|
) => PromiseOrValue<boolean>;
|
|
2015
|
+
/**
|
|
2016
|
+
* Resolves the runtime value for a GraphQL field.
|
|
2017
|
+
* @typeParam TSource - Source object type passed to resolvers.
|
|
2018
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
2019
|
+
* @typeParam TArgs - Argument object type passed to resolvers.
|
|
2020
|
+
* @typeParam TResult - Result value type.
|
|
2021
|
+
*/
|
|
489
2022
|
export declare type GraphQLFieldResolver<
|
|
490
2023
|
TSource,
|
|
491
2024
|
TContext,
|
|
@@ -497,52 +2030,78 @@ export declare type GraphQLFieldResolver<
|
|
|
497
2030
|
context: TContext,
|
|
498
2031
|
info: GraphQLResolveInfo,
|
|
499
2032
|
) => TResult;
|
|
2033
|
+
/** Information about the currently executing GraphQL field. */
|
|
500
2034
|
export interface GraphQLResolveInfo {
|
|
2035
|
+
/** The field name referenced by this schema coordinate. */
|
|
501
2036
|
readonly fieldName: string;
|
|
2037
|
+
/** AST field nodes that contributed to the current field execution. */
|
|
502
2038
|
readonly fieldNodes: ReadonlyArray<FieldNode>;
|
|
2039
|
+
/** GraphQL output type declared for the current field. */
|
|
503
2040
|
readonly returnType: GraphQLOutputType;
|
|
2041
|
+
/** Object type that owns the current field. */
|
|
504
2042
|
readonly parentType: GraphQLObjectType;
|
|
2043
|
+
/** Response path where this error occurred during execution. */
|
|
505
2044
|
readonly path: Path;
|
|
2045
|
+
/** The schema used for validation or execution. */
|
|
506
2046
|
readonly schema: GraphQLSchema;
|
|
2047
|
+
/** Fragment definitions in the operation document keyed by fragment name. */
|
|
507
2048
|
readonly fragments: ObjMap<FragmentDefinitionNode>;
|
|
2049
|
+
/** Initial root value passed to the operation. */
|
|
508
2050
|
readonly rootValue: unknown;
|
|
2051
|
+
/** The operation selected for execution. */
|
|
509
2052
|
readonly operation: OperationDefinitionNode;
|
|
2053
|
+
/** Runtime variable values keyed by variable name. */
|
|
510
2054
|
readonly variableValues: {
|
|
511
2055
|
[variable: string]: unknown;
|
|
512
2056
|
};
|
|
513
2057
|
}
|
|
514
2058
|
/**
|
|
515
2059
|
* Custom extensions
|
|
516
|
-
*
|
|
517
2060
|
* @remarks
|
|
518
2061
|
* Use a unique identifier name for your extension, for example the name of
|
|
519
2062
|
* your library or project. Do not use a shortened identifier as this increases
|
|
520
2063
|
* the risk of conflicts. We recommend you add at most one extension field,
|
|
521
2064
|
* an object which can contain all the values you need.
|
|
522
|
-
*
|
|
523
2065
|
* We've provided these template arguments because this is an open type and
|
|
524
2066
|
* you may find them useful.
|
|
2067
|
+
* @typeParam _TSource - Reserved source type parameter for extension typing.
|
|
2068
|
+
* @typeParam _TContext - Reserved context type parameter for extension typing.
|
|
2069
|
+
* @typeParam _TArgs - Reserved argument type parameter for extension typing.
|
|
525
2070
|
*/
|
|
526
2071
|
export interface GraphQLFieldExtensions<_TSource, _TContext, _TArgs = any> {
|
|
527
2072
|
[attributeName: string]: unknown;
|
|
528
2073
|
}
|
|
2074
|
+
/**
|
|
2075
|
+
* Configuration used to define a GraphQL field.
|
|
2076
|
+
* @typeParam TSource - Source object type passed to resolvers.
|
|
2077
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
2078
|
+
* @typeParam TArgs - Argument object type passed to resolvers.
|
|
2079
|
+
*/
|
|
529
2080
|
export interface GraphQLFieldConfig<TSource, TContext, TArgs = any> {
|
|
2081
|
+
/** Human-readable description for this schema element, if provided. */
|
|
530
2082
|
description?: Maybe<string>;
|
|
2083
|
+
/** The GraphQL type reference or runtime type for this element. */
|
|
531
2084
|
type: GraphQLOutputType;
|
|
2085
|
+
/** Arguments accepted by this field or directive. */
|
|
532
2086
|
args?: GraphQLFieldConfigArgumentMap;
|
|
2087
|
+
/** Resolver function used to produce this field value. */
|
|
533
2088
|
resolve?: GraphQLFieldResolver<TSource, TContext, TArgs>;
|
|
2089
|
+
/** Resolver function used to create a subscription event stream for this field. */
|
|
534
2090
|
subscribe?: GraphQLFieldResolver<TSource, TContext, TArgs>;
|
|
2091
|
+
/** Reason this element is deprecated, if one was provided. */
|
|
535
2092
|
deprecationReason?: Maybe<string>;
|
|
2093
|
+
/** Custom extension fields reserved for users. */
|
|
536
2094
|
extensions?: Maybe<
|
|
537
2095
|
Readonly<GraphQLFieldExtensions<TSource, TContext, TArgs>>
|
|
538
2096
|
>;
|
|
2097
|
+
/** AST node from which this schema element was built, if available. */
|
|
539
2098
|
astNode?: Maybe<FieldDefinitionNode>;
|
|
540
2099
|
}
|
|
2100
|
+
/** A map of argument names to argument configuration objects. */
|
|
541
2101
|
export declare type GraphQLFieldConfigArgumentMap =
|
|
542
2102
|
ObjMap<GraphQLArgumentConfig>;
|
|
543
2103
|
/**
|
|
544
2104
|
* Custom extensions
|
|
545
|
-
*
|
|
546
2105
|
* @remarks
|
|
547
2106
|
* Use a unique identifier name for your extension, for example the name of
|
|
548
2107
|
* your library or project. Do not use a shortened identifier as this increases
|
|
@@ -552,44 +2111,109 @@ export declare type GraphQLFieldConfigArgumentMap =
|
|
|
552
2111
|
export interface GraphQLArgumentExtensions {
|
|
553
2112
|
[attributeName: string]: unknown;
|
|
554
2113
|
}
|
|
2114
|
+
/** Configuration used to define a GraphQL argument. */
|
|
555
2115
|
export interface GraphQLArgumentConfig {
|
|
2116
|
+
/** Human-readable description for this schema element, if provided. */
|
|
556
2117
|
description?: Maybe<string>;
|
|
2118
|
+
/** The GraphQL type reference or runtime type for this element. */
|
|
557
2119
|
type: GraphQLInputType;
|
|
2120
|
+
/** Default value used when no explicit value is supplied. */
|
|
558
2121
|
defaultValue?: unknown;
|
|
2122
|
+
/** Reason this element is deprecated, if one was provided. */
|
|
559
2123
|
deprecationReason?: Maybe<string>;
|
|
2124
|
+
/** Custom extension fields reserved for users. */
|
|
560
2125
|
extensions?: Maybe<Readonly<GraphQLArgumentExtensions>>;
|
|
2126
|
+
/** AST node from which this schema element was built, if available. */
|
|
561
2127
|
astNode?: Maybe<InputValueDefinitionNode>;
|
|
562
2128
|
}
|
|
2129
|
+
/**
|
|
2130
|
+
* A map of field names to field configuration objects.
|
|
2131
|
+
* @typeParam TSource - Source object type passed to resolvers.
|
|
2132
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
2133
|
+
*/
|
|
563
2134
|
export declare type GraphQLFieldConfigMap<TSource, TContext> = ObjMap<
|
|
564
2135
|
GraphQLFieldConfig<TSource, TContext>
|
|
565
2136
|
>;
|
|
2137
|
+
/**
|
|
2138
|
+
* A resolved GraphQL field definition.
|
|
2139
|
+
* @typeParam TSource - Source object type passed to resolvers.
|
|
2140
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
2141
|
+
* @typeParam TArgs - Argument object type passed to resolvers.
|
|
2142
|
+
*/
|
|
566
2143
|
export interface GraphQLField<TSource, TContext, TArgs = any> {
|
|
2144
|
+
/** The GraphQL name for this schema element. */
|
|
567
2145
|
name: string;
|
|
2146
|
+
/** Human-readable description for this schema element, if provided. */
|
|
568
2147
|
description: Maybe<string>;
|
|
2148
|
+
/** The GraphQL type reference or runtime type for this element. */
|
|
569
2149
|
type: GraphQLOutputType;
|
|
2150
|
+
/** Arguments accepted by this field or directive. */
|
|
570
2151
|
args: ReadonlyArray<GraphQLArgument>;
|
|
2152
|
+
/** Resolver function used to produce this field value. */
|
|
571
2153
|
resolve?: GraphQLFieldResolver<TSource, TContext, TArgs>;
|
|
2154
|
+
/** Resolver function used to create a subscription event stream for this field. */
|
|
572
2155
|
subscribe?: GraphQLFieldResolver<TSource, TContext, TArgs>;
|
|
2156
|
+
/** Reason this element is deprecated, if one was provided. */
|
|
573
2157
|
deprecationReason: Maybe<string>;
|
|
2158
|
+
/** Custom extension fields reserved for users. */
|
|
574
2159
|
extensions: Readonly<GraphQLFieldExtensions<TSource, TContext, TArgs>>;
|
|
2160
|
+
/** AST node from which this schema element was built, if available. */
|
|
575
2161
|
astNode: Maybe<FieldDefinitionNode>;
|
|
576
2162
|
}
|
|
2163
|
+
/** A resolved GraphQL argument definition. */
|
|
577
2164
|
export interface GraphQLArgument {
|
|
2165
|
+
/** The GraphQL name for this schema element. */
|
|
578
2166
|
name: string;
|
|
2167
|
+
/** Human-readable description for this schema element, if provided. */
|
|
579
2168
|
description: Maybe<string>;
|
|
2169
|
+
/** The GraphQL type reference or runtime type for this element. */
|
|
580
2170
|
type: GraphQLInputType;
|
|
2171
|
+
/** Default value used when no explicit value is supplied. */
|
|
581
2172
|
defaultValue: unknown;
|
|
2173
|
+
/** Reason this element is deprecated, if one was provided. */
|
|
582
2174
|
deprecationReason: Maybe<string>;
|
|
2175
|
+
/** Custom extension fields reserved for users. */
|
|
583
2176
|
extensions: Readonly<GraphQLArgumentExtensions>;
|
|
2177
|
+
/** AST node from which this schema element was built, if available. */
|
|
584
2178
|
astNode: Maybe<InputValueDefinitionNode>;
|
|
585
2179
|
}
|
|
2180
|
+
/**
|
|
2181
|
+
* Returns true when the argument is non-null and has no default value.
|
|
2182
|
+
* @param arg - The argument definition to inspect.
|
|
2183
|
+
* @returns True when the argument is non-null and has no default value.
|
|
2184
|
+
* @example
|
|
2185
|
+
* ```ts
|
|
2186
|
+
* import {
|
|
2187
|
+
* GraphQLInt,
|
|
2188
|
+
* GraphQLNonNull,
|
|
2189
|
+
* GraphQLString,
|
|
2190
|
+
* isRequiredArgument,
|
|
2191
|
+
* } from 'graphql/type';
|
|
2192
|
+
*
|
|
2193
|
+
* const requiredArgument = { name: 'id', type: new GraphQLNonNull(GraphQLInt) };
|
|
2194
|
+
* const optionalArgument = { name: 'name', type: GraphQLString };
|
|
2195
|
+
* const argumentWithDefault = {
|
|
2196
|
+
* name: 'limit',
|
|
2197
|
+
* type: new GraphQLNonNull(GraphQLInt),
|
|
2198
|
+
* defaultValue: 10,
|
|
2199
|
+
* };
|
|
2200
|
+
*
|
|
2201
|
+
* isRequiredArgument(requiredArgument); // => true
|
|
2202
|
+
* isRequiredArgument(optionalArgument); // => false
|
|
2203
|
+
* isRequiredArgument(argumentWithDefault); // => false
|
|
2204
|
+
* ```
|
|
2205
|
+
*/
|
|
586
2206
|
export declare function isRequiredArgument(arg: GraphQLArgument): boolean;
|
|
2207
|
+
/**
|
|
2208
|
+
* A map of field names to resolved field definitions.
|
|
2209
|
+
* @typeParam TSource - Source object type passed to resolvers.
|
|
2210
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
2211
|
+
*/
|
|
587
2212
|
export declare type GraphQLFieldMap<TSource, TContext> = ObjMap<
|
|
588
2213
|
GraphQLField<TSource, TContext>
|
|
589
2214
|
>;
|
|
590
2215
|
/**
|
|
591
2216
|
* Custom extensions
|
|
592
|
-
*
|
|
593
2217
|
* @remarks
|
|
594
2218
|
* Use a unique identifier name for your extension, for example the name of
|
|
595
2219
|
* your library or project. Do not use a shortened identifier as this increases
|
|
@@ -606,9 +2230,7 @@ export interface GraphQLInterfaceTypeExtensions {
|
|
|
606
2230
|
* is used to describe what types are possible, what fields are in common across
|
|
607
2231
|
* all types, as well as a function to determine which type is actually used
|
|
608
2232
|
* when the field is resolved.
|
|
609
|
-
*
|
|
610
|
-
* Example:
|
|
611
|
-
*
|
|
2233
|
+
* @example
|
|
612
2234
|
* ```ts
|
|
613
2235
|
* const EntityType = new GraphQLInterfaceType({
|
|
614
2236
|
* name: 'Entity',
|
|
@@ -619,26 +2241,223 @@ export interface GraphQLInterfaceTypeExtensions {
|
|
|
619
2241
|
* ```
|
|
620
2242
|
*/
|
|
621
2243
|
export declare class GraphQLInterfaceType {
|
|
2244
|
+
/** The GraphQL name for this schema element. */
|
|
622
2245
|
name: string;
|
|
2246
|
+
/** Human-readable description for this schema element, if provided. */
|
|
623
2247
|
description: Maybe<string>;
|
|
2248
|
+
/** Function that resolves the concrete object type for this abstract type. */
|
|
624
2249
|
resolveType: Maybe<GraphQLTypeResolver<any, any>>;
|
|
2250
|
+
/** Custom extension fields reserved for users. */
|
|
625
2251
|
extensions: Readonly<GraphQLInterfaceTypeExtensions>;
|
|
2252
|
+
/** AST node from which this schema element was built, if available. */
|
|
626
2253
|
astNode: Maybe<InterfaceTypeDefinitionNode>;
|
|
2254
|
+
/** AST extension nodes applied to this schema element. */
|
|
627
2255
|
extensionASTNodes: ReadonlyArray<InterfaceTypeExtensionNode>;
|
|
628
2256
|
private _fields;
|
|
629
2257
|
private _interfaces;
|
|
2258
|
+
/**
|
|
2259
|
+
* Creates a GraphQLInterfaceType instance.
|
|
2260
|
+
* @param config - Configuration describing this object.
|
|
2261
|
+
* @example
|
|
2262
|
+
* ```ts
|
|
2263
|
+
* import { parse } from 'graphql/language';
|
|
2264
|
+
* import { GraphQLID, GraphQLInterfaceType, GraphQLNonNull } from 'graphql/type';
|
|
2265
|
+
*
|
|
2266
|
+
* const document = parse(`
|
|
2267
|
+
* interface Node {
|
|
2268
|
+
* id: ID!
|
|
2269
|
+
* }
|
|
2270
|
+
*
|
|
2271
|
+
* interface Resource implements Node {
|
|
2272
|
+
* id: ID!
|
|
2273
|
+
* }
|
|
2274
|
+
*
|
|
2275
|
+
* extend interface Resource {
|
|
2276
|
+
* url: String
|
|
2277
|
+
* }
|
|
2278
|
+
* `);
|
|
2279
|
+
*
|
|
2280
|
+
* const Node = new GraphQLInterfaceType({
|
|
2281
|
+
* name: 'Node',
|
|
2282
|
+
* fields: {
|
|
2283
|
+
* id: { type: new GraphQLNonNull(GraphQLID) },
|
|
2284
|
+
* },
|
|
2285
|
+
* });
|
|
2286
|
+
*
|
|
2287
|
+
* const Resource = new GraphQLInterfaceType({
|
|
2288
|
+
* name: 'Resource',
|
|
2289
|
+
* description: 'An addressable resource.',
|
|
2290
|
+
* interfaces: [Node],
|
|
2291
|
+
* fields: {
|
|
2292
|
+
* id: { type: new GraphQLNonNull(GraphQLID) },
|
|
2293
|
+
* },
|
|
2294
|
+
* resolveType: (value) => {
|
|
2295
|
+
* return typeof value === 'object' && value != null && 'url' in value
|
|
2296
|
+
* ? 'WebPage'
|
|
2297
|
+
* : null;
|
|
2298
|
+
* },
|
|
2299
|
+
* extensions: { abstract: true },
|
|
2300
|
+
* astNode: document.definitions[1],
|
|
2301
|
+
* extensionASTNodes: [ document.definitions[2] ],
|
|
2302
|
+
* });
|
|
2303
|
+
*
|
|
2304
|
+
* Resource.name; // => 'Resource'
|
|
2305
|
+
* Resource.getInterfaces(); // => [Node]
|
|
2306
|
+
* Object.keys(Resource.getFields()); // => ['id']
|
|
2307
|
+
* Resource.extensions; // => { abstract: true }
|
|
2308
|
+
* ```
|
|
2309
|
+
*/
|
|
630
2310
|
constructor(config: Readonly<GraphQLInterfaceTypeConfig<any, any>>);
|
|
2311
|
+
/**
|
|
2312
|
+
* Returns the value used by `Object.prototype.toString`.
|
|
2313
|
+
* @returns The built-in string tag for this object.
|
|
2314
|
+
*/
|
|
631
2315
|
get [Symbol.toStringTag](): string;
|
|
2316
|
+
/**
|
|
2317
|
+
* Returns the fields defined by this type.
|
|
2318
|
+
* @returns The fields keyed by field name.
|
|
2319
|
+
* @example
|
|
2320
|
+
* ```ts
|
|
2321
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
2322
|
+
* import { assertInterfaceType } from 'graphql/type';
|
|
2323
|
+
*
|
|
2324
|
+
* const schema = buildSchema(`
|
|
2325
|
+
* interface Node {
|
|
2326
|
+
* id: ID!
|
|
2327
|
+
* }
|
|
2328
|
+
*
|
|
2329
|
+
* type User implements Node {
|
|
2330
|
+
* id: ID!
|
|
2331
|
+
* }
|
|
2332
|
+
*
|
|
2333
|
+
* type Query {
|
|
2334
|
+
* node: Node
|
|
2335
|
+
* }
|
|
2336
|
+
* `);
|
|
2337
|
+
*
|
|
2338
|
+
* const Node = assertInterfaceType(schema.getType('Node'));
|
|
2339
|
+
* const fields = Node.getFields();
|
|
2340
|
+
*
|
|
2341
|
+
* Object.keys(fields); // => ['id']
|
|
2342
|
+
* String(fields.id.type); // => 'ID!'
|
|
2343
|
+
* ```
|
|
2344
|
+
*/
|
|
632
2345
|
getFields(): GraphQLFieldMap<any, any>;
|
|
2346
|
+
/**
|
|
2347
|
+
* Returns the interfaces implemented by this type.
|
|
2348
|
+
* @returns The implemented interfaces.
|
|
2349
|
+
* @example
|
|
2350
|
+
* ```ts
|
|
2351
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
2352
|
+
* import { assertInterfaceType } from 'graphql/type';
|
|
2353
|
+
*
|
|
2354
|
+
* const schema = buildSchema(`
|
|
2355
|
+
* interface Resource {
|
|
2356
|
+
* url: String!
|
|
2357
|
+
* }
|
|
2358
|
+
*
|
|
2359
|
+
* interface Image implements Resource {
|
|
2360
|
+
* url: String!
|
|
2361
|
+
* width: Int
|
|
2362
|
+
* }
|
|
2363
|
+
*
|
|
2364
|
+
* type Photo implements Resource & Image {
|
|
2365
|
+
* url: String!
|
|
2366
|
+
* width: Int
|
|
2367
|
+
* }
|
|
2368
|
+
*
|
|
2369
|
+
* type Query {
|
|
2370
|
+
* image: Image
|
|
2371
|
+
* }
|
|
2372
|
+
* `);
|
|
2373
|
+
*
|
|
2374
|
+
* const Image = assertInterfaceType(schema.getType('Image'));
|
|
2375
|
+
*
|
|
2376
|
+
* Image.getInterfaces().map((type) => type.name); // => ['Resource']
|
|
2377
|
+
* ```
|
|
2378
|
+
*/
|
|
633
2379
|
getInterfaces(): ReadonlyArray<GraphQLInterfaceType>;
|
|
2380
|
+
/**
|
|
2381
|
+
* Returns a normalized configuration object for this object.
|
|
2382
|
+
* @returns A configuration object that can be used to recreate this object.
|
|
2383
|
+
* @example
|
|
2384
|
+
* ```ts
|
|
2385
|
+
* import { GraphQLID, GraphQLInterfaceType, GraphQLNonNull } from 'graphql/type';
|
|
2386
|
+
*
|
|
2387
|
+
* const Node = new GraphQLInterfaceType({
|
|
2388
|
+
* name: 'Node',
|
|
2389
|
+
* fields: {
|
|
2390
|
+
* id: { type: new GraphQLNonNull(GraphQLID) },
|
|
2391
|
+
* },
|
|
2392
|
+
* });
|
|
2393
|
+
*
|
|
2394
|
+
* const config = Node.toConfig();
|
|
2395
|
+
* const NodeCopy = new GraphQLInterfaceType(config);
|
|
2396
|
+
*
|
|
2397
|
+
* String(config.fields.id.type); // => 'ID!'
|
|
2398
|
+
* String(NodeCopy.getFields().id.type); // => 'ID!'
|
|
2399
|
+
* ```
|
|
2400
|
+
*/
|
|
634
2401
|
toConfig(): GraphQLInterfaceTypeNormalizedConfig;
|
|
2402
|
+
/**
|
|
2403
|
+
* Returns the schema coordinate identifying this interface type.
|
|
2404
|
+
* @returns The schema coordinate for this interface type.
|
|
2405
|
+
* @example
|
|
2406
|
+
* ```ts
|
|
2407
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
2408
|
+
* import { assertInterfaceType } from 'graphql/type';
|
|
2409
|
+
*
|
|
2410
|
+
* const schema = buildSchema(`
|
|
2411
|
+
* interface Node {
|
|
2412
|
+
* id: ID!
|
|
2413
|
+
* }
|
|
2414
|
+
*
|
|
2415
|
+
* type User implements Node {
|
|
2416
|
+
* id: ID!
|
|
2417
|
+
* }
|
|
2418
|
+
*
|
|
2419
|
+
* type Query {
|
|
2420
|
+
* node: Node
|
|
2421
|
+
* }
|
|
2422
|
+
* `);
|
|
2423
|
+
*
|
|
2424
|
+
* const Node = assertInterfaceType(schema.getType('Node'));
|
|
2425
|
+
*
|
|
2426
|
+
* Node.toString(); // => 'Node'
|
|
2427
|
+
* ```
|
|
2428
|
+
*/
|
|
635
2429
|
toString(): string;
|
|
2430
|
+
/**
|
|
2431
|
+
* Returns the JSON representation used when this object is serialized.
|
|
2432
|
+
* @returns The JSON-serializable representation.
|
|
2433
|
+
* @example
|
|
2434
|
+
* ```ts
|
|
2435
|
+
* import { GraphQLInterfaceType, GraphQLString } from 'graphql/type';
|
|
2436
|
+
*
|
|
2437
|
+
* const Named = new GraphQLInterfaceType({
|
|
2438
|
+
* name: 'Named',
|
|
2439
|
+
* fields: { name: { type: GraphQLString } },
|
|
2440
|
+
* });
|
|
2441
|
+
*
|
|
2442
|
+
* Named.toJSON(); // => 'Named'
|
|
2443
|
+
* JSON.stringify({ type: Named }); // => '{"type":"Named"}'
|
|
2444
|
+
* ```
|
|
2445
|
+
*/
|
|
636
2446
|
toJSON(): string;
|
|
637
2447
|
}
|
|
2448
|
+
/**
|
|
2449
|
+
* Configuration used to construct a GraphQLInterfaceType.
|
|
2450
|
+
* @typeParam TSource - Source object type passed to resolvers.
|
|
2451
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
2452
|
+
*/
|
|
638
2453
|
export interface GraphQLInterfaceTypeConfig<TSource, TContext> {
|
|
2454
|
+
/** The GraphQL name for this schema element. */
|
|
639
2455
|
name: string;
|
|
2456
|
+
/** Human-readable description for this schema element, if provided. */
|
|
640
2457
|
description?: Maybe<string>;
|
|
2458
|
+
/** Interfaces implemented by this object or interface type. */
|
|
641
2459
|
interfaces?: ThunkReadonlyArray<GraphQLInterfaceType>;
|
|
2460
|
+
/** Fields declared by this object, interface, input object, or literal. */
|
|
642
2461
|
fields: ThunkObjMap<GraphQLFieldConfig<TSource, TContext>>;
|
|
643
2462
|
/**
|
|
644
2463
|
* Optionally provide a custom type resolver function. If one is not provided,
|
|
@@ -646,10 +2465,14 @@ export interface GraphQLInterfaceTypeConfig<TSource, TContext> {
|
|
|
646
2465
|
* Object type.
|
|
647
2466
|
*/
|
|
648
2467
|
resolveType?: Maybe<GraphQLTypeResolver<TSource, TContext>>;
|
|
2468
|
+
/** Custom extension fields reserved for users. */
|
|
649
2469
|
extensions?: Maybe<Readonly<GraphQLInterfaceTypeExtensions>>;
|
|
2470
|
+
/** AST node from which this schema element was built, if available. */
|
|
650
2471
|
astNode?: Maybe<InterfaceTypeDefinitionNode>;
|
|
2472
|
+
/** AST extension nodes applied to this schema element. */
|
|
651
2473
|
extensionASTNodes?: Maybe<ReadonlyArray<InterfaceTypeExtensionNode>>;
|
|
652
2474
|
}
|
|
2475
|
+
/** @internal */
|
|
653
2476
|
export interface GraphQLInterfaceTypeNormalizedConfig
|
|
654
2477
|
extends GraphQLInterfaceTypeConfig<any, any> {
|
|
655
2478
|
interfaces: ReadonlyArray<GraphQLInterfaceType>;
|
|
@@ -659,7 +2482,6 @@ export interface GraphQLInterfaceTypeNormalizedConfig
|
|
|
659
2482
|
}
|
|
660
2483
|
/**
|
|
661
2484
|
* Custom extensions
|
|
662
|
-
*
|
|
663
2485
|
* @remarks
|
|
664
2486
|
* Use a unique identifier name for your extension, for example the name of
|
|
665
2487
|
* your library or project. Do not use a shortened identifier as this increases
|
|
@@ -675,14 +2497,12 @@ export interface GraphQLUnionTypeExtensions {
|
|
|
675
2497
|
* When a field can return one of a heterogeneous set of types, a Union type
|
|
676
2498
|
* is used to describe what types are possible as well as providing a function
|
|
677
2499
|
* to determine which type is actually used when the field is resolved.
|
|
678
|
-
*
|
|
679
|
-
* Example:
|
|
680
|
-
*
|
|
2500
|
+
* @example
|
|
681
2501
|
* ```ts
|
|
682
2502
|
* const PetType = new GraphQLUnionType({
|
|
683
2503
|
* name: 'Pet',
|
|
684
|
-
* types: [
|
|
685
|
-
* resolveType(value) {
|
|
2504
|
+
* types: [DogType, CatType],
|
|
2505
|
+
* resolveType: (value) => {
|
|
686
2506
|
* if (value instanceof Dog) {
|
|
687
2507
|
* return DogType;
|
|
688
2508
|
* }
|
|
@@ -694,23 +2514,183 @@ export interface GraphQLUnionTypeExtensions {
|
|
|
694
2514
|
* ```
|
|
695
2515
|
*/
|
|
696
2516
|
export declare class GraphQLUnionType {
|
|
2517
|
+
/** The GraphQL name for this schema element. */
|
|
697
2518
|
name: string;
|
|
2519
|
+
/** Human-readable description for this schema element, if provided. */
|
|
698
2520
|
description: Maybe<string>;
|
|
2521
|
+
/** Function that resolves the concrete object type for this abstract type. */
|
|
699
2522
|
resolveType: Maybe<GraphQLTypeResolver<any, any>>;
|
|
2523
|
+
/** Custom extension fields reserved for users. */
|
|
700
2524
|
extensions: Readonly<GraphQLUnionTypeExtensions>;
|
|
2525
|
+
/** AST node from which this schema element was built, if available. */
|
|
701
2526
|
astNode: Maybe<UnionTypeDefinitionNode>;
|
|
2527
|
+
/** AST extension nodes applied to this schema element. */
|
|
702
2528
|
extensionASTNodes: ReadonlyArray<UnionTypeExtensionNode>;
|
|
703
2529
|
private _types;
|
|
2530
|
+
/**
|
|
2531
|
+
* Creates a GraphQLUnionType instance.
|
|
2532
|
+
* @param config - Configuration describing this object.
|
|
2533
|
+
* @example
|
|
2534
|
+
* ```ts
|
|
2535
|
+
* import { parse } from 'graphql/language';
|
|
2536
|
+
* import { GraphQLObjectType, GraphQLString, GraphQLUnionType } from 'graphql/type';
|
|
2537
|
+
*
|
|
2538
|
+
* const document = parse(`
|
|
2539
|
+
* union Media = Photo | Video
|
|
2540
|
+
*
|
|
2541
|
+
* extend union Media = Audio
|
|
2542
|
+
* `);
|
|
2543
|
+
*
|
|
2544
|
+
* const Photo = new GraphQLObjectType({
|
|
2545
|
+
* name: 'Photo',
|
|
2546
|
+
* fields: { url: { type: GraphQLString } },
|
|
2547
|
+
* });
|
|
2548
|
+
* const Video = new GraphQLObjectType({
|
|
2549
|
+
* name: 'Video',
|
|
2550
|
+
* fields: { url: { type: GraphQLString } },
|
|
2551
|
+
* });
|
|
2552
|
+
*
|
|
2553
|
+
* const Media = new GraphQLUnionType({
|
|
2554
|
+
* name: 'Media',
|
|
2555
|
+
* description: 'Media that can appear in a search result.',
|
|
2556
|
+
* types: [Photo, Video],
|
|
2557
|
+
* resolveType: (value) => {
|
|
2558
|
+
* return typeof value === 'object' && value != null && 'duration' in value
|
|
2559
|
+
* ? 'Video'
|
|
2560
|
+
* : 'Photo';
|
|
2561
|
+
* },
|
|
2562
|
+
* extensions: { searchable: true },
|
|
2563
|
+
* astNode: document.definitions[0],
|
|
2564
|
+
* extensionASTNodes: [ document.definitions[1] ],
|
|
2565
|
+
* });
|
|
2566
|
+
*
|
|
2567
|
+
* Media.description; // => 'Media that can appear in a search result.'
|
|
2568
|
+
* Media.getTypes().map((type) => type.name); // => ['Photo', 'Video']
|
|
2569
|
+
* Media.extensions; // => { searchable: true }
|
|
2570
|
+
* ```
|
|
2571
|
+
*/
|
|
704
2572
|
constructor(config: Readonly<GraphQLUnionTypeConfig<any, any>>);
|
|
2573
|
+
/**
|
|
2574
|
+
* Returns the value used by `Object.prototype.toString`.
|
|
2575
|
+
* @returns The built-in string tag for this object.
|
|
2576
|
+
*/
|
|
705
2577
|
get [Symbol.toStringTag](): string;
|
|
2578
|
+
/**
|
|
2579
|
+
* Returns the object types included in this union.
|
|
2580
|
+
* @returns The union member object types.
|
|
2581
|
+
* @example
|
|
2582
|
+
* ```ts
|
|
2583
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
2584
|
+
* import { assertUnionType } from 'graphql/type';
|
|
2585
|
+
*
|
|
2586
|
+
* const schema = buildSchema(`
|
|
2587
|
+
* type Photo {
|
|
2588
|
+
* url: String!
|
|
2589
|
+
* }
|
|
2590
|
+
*
|
|
2591
|
+
* type Video {
|
|
2592
|
+
* url: String!
|
|
2593
|
+
* }
|
|
2594
|
+
*
|
|
2595
|
+
* union Media = Photo | Video
|
|
2596
|
+
*
|
|
2597
|
+
* type Query {
|
|
2598
|
+
* media: [Media]
|
|
2599
|
+
* }
|
|
2600
|
+
* `);
|
|
2601
|
+
*
|
|
2602
|
+
* const Media = assertUnionType(schema.getType('Media'));
|
|
2603
|
+
*
|
|
2604
|
+
* Media.getTypes().map((type) => type.name); // => ['Photo', 'Video']
|
|
2605
|
+
* ```
|
|
2606
|
+
*/
|
|
706
2607
|
getTypes(): ReadonlyArray<GraphQLObjectType>;
|
|
2608
|
+
/**
|
|
2609
|
+
* Returns a normalized configuration object for this object.
|
|
2610
|
+
* @returns A configuration object that can be used to recreate this object.
|
|
2611
|
+
* @example
|
|
2612
|
+
* ```ts
|
|
2613
|
+
* import { GraphQLObjectType, GraphQLString, GraphQLUnionType } from 'graphql/type';
|
|
2614
|
+
*
|
|
2615
|
+
* const Photo = new GraphQLObjectType({
|
|
2616
|
+
* name: 'Photo',
|
|
2617
|
+
* fields: { url: { type: GraphQLString } },
|
|
2618
|
+
* });
|
|
2619
|
+
* const Video = new GraphQLObjectType({
|
|
2620
|
+
* name: 'Video',
|
|
2621
|
+
* fields: { url: { type: GraphQLString } },
|
|
2622
|
+
* });
|
|
2623
|
+
* const Media = new GraphQLUnionType({
|
|
2624
|
+
* name: 'Media',
|
|
2625
|
+
* types: [Photo, Video],
|
|
2626
|
+
* });
|
|
2627
|
+
*
|
|
2628
|
+
* const config = Media.toConfig();
|
|
2629
|
+
* const MediaCopy = new GraphQLUnionType(config);
|
|
2630
|
+
*
|
|
2631
|
+
* MediaCopy.getTypes().map((type) => type.name); // => ['Photo', 'Video']
|
|
2632
|
+
* ```
|
|
2633
|
+
*/
|
|
707
2634
|
toConfig(): GraphQLUnionTypeNormalizedConfig;
|
|
2635
|
+
/**
|
|
2636
|
+
* Returns the schema coordinate identifying this union type.
|
|
2637
|
+
* @returns The schema coordinate for this union type.
|
|
2638
|
+
* @example
|
|
2639
|
+
* ```ts
|
|
2640
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
2641
|
+
* import { assertUnionType } from 'graphql/type';
|
|
2642
|
+
*
|
|
2643
|
+
* const schema = buildSchema(`
|
|
2644
|
+
* type Photo {
|
|
2645
|
+
* url: String!
|
|
2646
|
+
* }
|
|
2647
|
+
*
|
|
2648
|
+
* union SearchResult = Photo
|
|
2649
|
+
*
|
|
2650
|
+
* type Query {
|
|
2651
|
+
* search: [SearchResult]
|
|
2652
|
+
* }
|
|
2653
|
+
* `);
|
|
2654
|
+
*
|
|
2655
|
+
* const SearchResult = assertUnionType(schema.getType('SearchResult'));
|
|
2656
|
+
*
|
|
2657
|
+
* SearchResult.toString(); // => 'SearchResult'
|
|
2658
|
+
* ```
|
|
2659
|
+
*/
|
|
708
2660
|
toString(): string;
|
|
2661
|
+
/**
|
|
2662
|
+
* Returns the JSON representation used when this object is serialized.
|
|
2663
|
+
* @returns The JSON-serializable representation.
|
|
2664
|
+
* @example
|
|
2665
|
+
* ```ts
|
|
2666
|
+
* import { GraphQLObjectType, GraphQLString, GraphQLUnionType } from 'graphql/type';
|
|
2667
|
+
*
|
|
2668
|
+
* const Photo = new GraphQLObjectType({
|
|
2669
|
+
* name: 'Photo',
|
|
2670
|
+
* fields: { url: { type: GraphQLString } },
|
|
2671
|
+
* });
|
|
2672
|
+
* const SearchResult = new GraphQLUnionType({
|
|
2673
|
+
* name: 'SearchResult',
|
|
2674
|
+
* types: [Photo],
|
|
2675
|
+
* });
|
|
2676
|
+
*
|
|
2677
|
+
* SearchResult.toJSON(); // => 'SearchResult'
|
|
2678
|
+
* JSON.stringify({ type: SearchResult }); // => '{"type":"SearchResult"}'
|
|
2679
|
+
* ```
|
|
2680
|
+
*/
|
|
709
2681
|
toJSON(): string;
|
|
710
2682
|
}
|
|
2683
|
+
/**
|
|
2684
|
+
* Configuration used to construct a GraphQLUnionType.
|
|
2685
|
+
* @typeParam TSource - Source object type passed to resolvers.
|
|
2686
|
+
* @typeParam TContext - Context object type passed to resolvers.
|
|
2687
|
+
*/
|
|
711
2688
|
export interface GraphQLUnionTypeConfig<TSource, TContext> {
|
|
2689
|
+
/** The GraphQL name for this schema element. */
|
|
712
2690
|
name: string;
|
|
2691
|
+
/** Human-readable description for this schema element, if provided. */
|
|
713
2692
|
description?: Maybe<string>;
|
|
2693
|
+
/** Object types that belong to this union type. */
|
|
714
2694
|
types: ThunkReadonlyArray<GraphQLObjectType>;
|
|
715
2695
|
/**
|
|
716
2696
|
* Optionally provide a custom type resolver function. If one is not provided,
|
|
@@ -718,8 +2698,11 @@ export interface GraphQLUnionTypeConfig<TSource, TContext> {
|
|
|
718
2698
|
* Object type.
|
|
719
2699
|
*/
|
|
720
2700
|
resolveType?: Maybe<GraphQLTypeResolver<TSource, TContext>>;
|
|
2701
|
+
/** Custom extension fields reserved for users. */
|
|
721
2702
|
extensions?: Maybe<Readonly<GraphQLUnionTypeExtensions>>;
|
|
2703
|
+
/** AST node from which this schema element was built, if available. */
|
|
722
2704
|
astNode?: Maybe<UnionTypeDefinitionNode>;
|
|
2705
|
+
/** AST extension nodes applied to this schema element. */
|
|
723
2706
|
extensionASTNodes?: Maybe<ReadonlyArray<UnionTypeExtensionNode>>;
|
|
724
2707
|
}
|
|
725
2708
|
interface GraphQLUnionTypeNormalizedConfig
|
|
@@ -730,7 +2713,6 @@ interface GraphQLUnionTypeNormalizedConfig
|
|
|
730
2713
|
}
|
|
731
2714
|
/**
|
|
732
2715
|
* Custom extensions
|
|
733
|
-
*
|
|
734
2716
|
* @remarks
|
|
735
2717
|
* Use a unique identifier name for your extension, for example the name of
|
|
736
2718
|
* your library or project. Do not use a shortened identifier as this increases
|
|
@@ -743,55 +2725,304 @@ export interface GraphQLEnumTypeExtensions {
|
|
|
743
2725
|
/**
|
|
744
2726
|
* Enum Type Definition
|
|
745
2727
|
*
|
|
746
|
-
*
|
|
747
|
-
*
|
|
748
|
-
*
|
|
749
|
-
*
|
|
750
|
-
* Example:
|
|
751
|
-
*
|
|
2728
|
+
* Enum types define leaf values whose serialized form is one of a fixed set
|
|
2729
|
+
* of GraphQL enum names. Internally, enum values can map to any runtime value,
|
|
2730
|
+
* often integers.
|
|
2731
|
+
* @example
|
|
752
2732
|
* ```ts
|
|
2733
|
+
* import { GraphQLEnumType } from 'graphql/type';
|
|
2734
|
+
*
|
|
753
2735
|
* const RGBType = new GraphQLEnumType({
|
|
754
2736
|
* name: 'RGB',
|
|
755
2737
|
* values: {
|
|
756
2738
|
* RED: { value: 0 },
|
|
757
2739
|
* GREEN: { value: 1 },
|
|
758
|
-
* BLUE: { value: 2 }
|
|
759
|
-
* }
|
|
2740
|
+
* BLUE: { value: 2 },
|
|
2741
|
+
* },
|
|
760
2742
|
* });
|
|
2743
|
+
*
|
|
2744
|
+
* RGBType.getValue('GREEN')?.value; // => 1
|
|
761
2745
|
* ```
|
|
762
2746
|
*
|
|
763
2747
|
* Note: If a value is not provided in a definition, the name of the enum value
|
|
764
2748
|
* will be used as its internal value.
|
|
765
2749
|
*/
|
|
766
2750
|
export declare class GraphQLEnumType {
|
|
2751
|
+
/** The GraphQL name for this schema element. */
|
|
767
2752
|
name: string;
|
|
2753
|
+
/** Human-readable description for this schema element, if provided. */
|
|
768
2754
|
description: Maybe<string>;
|
|
2755
|
+
/** Custom extension fields reserved for users. */
|
|
769
2756
|
extensions: Readonly<GraphQLEnumTypeExtensions>;
|
|
2757
|
+
/** AST node from which this schema element was built, if available. */
|
|
770
2758
|
astNode: Maybe<EnumTypeDefinitionNode>;
|
|
2759
|
+
/** AST extension nodes applied to this schema element. */
|
|
771
2760
|
extensionASTNodes: ReadonlyArray<EnumTypeExtensionNode>;
|
|
772
2761
|
private _values;
|
|
773
2762
|
private _valueLookup;
|
|
774
2763
|
private _nameLookup;
|
|
2764
|
+
/**
|
|
2765
|
+
* Creates a GraphQLEnumType instance.
|
|
2766
|
+
* @param config - Configuration describing this object.
|
|
2767
|
+
* @example
|
|
2768
|
+
* ```ts
|
|
2769
|
+
* import { parse } from 'graphql/language';
|
|
2770
|
+
* import { GraphQLEnumType } from 'graphql/type';
|
|
2771
|
+
*
|
|
2772
|
+
* const document = parse(`
|
|
2773
|
+
* enum Episode {
|
|
2774
|
+
* NEW_HOPE
|
|
2775
|
+
* EMPIRE
|
|
2776
|
+
* JEDI
|
|
2777
|
+
* }
|
|
2778
|
+
*
|
|
2779
|
+
* extend enum Episode {
|
|
2780
|
+
* FORCE_AWAKENS
|
|
2781
|
+
* }
|
|
2782
|
+
* `);
|
|
2783
|
+
* const definition = document.definitions[0];
|
|
2784
|
+
*
|
|
2785
|
+
* const Episode = new GraphQLEnumType({
|
|
2786
|
+
* name: 'Episode',
|
|
2787
|
+
* description: 'A Star Wars film episode.',
|
|
2788
|
+
* values: {
|
|
2789
|
+
* NEW_HOPE: {
|
|
2790
|
+
* value: 4,
|
|
2791
|
+
* description: 'Released in 1977.',
|
|
2792
|
+
* extensions: { trilogy: 'original' },
|
|
2793
|
+
* astNode: definition.values[0],
|
|
2794
|
+
* },
|
|
2795
|
+
* EMPIRE: { value: 5, astNode: definition.values[1] },
|
|
2796
|
+
* JEDI: {
|
|
2797
|
+
* value: 6,
|
|
2798
|
+
* deprecationReason: 'Use RETURN_OF_THE_JEDI.',
|
|
2799
|
+
* astNode: definition.values[2],
|
|
2800
|
+
* },
|
|
2801
|
+
* },
|
|
2802
|
+
* extensions: { catalog: 'films' },
|
|
2803
|
+
* astNode: definition,
|
|
2804
|
+
* extensionASTNodes: [ document.definitions[1] ],
|
|
2805
|
+
* });
|
|
2806
|
+
*
|
|
2807
|
+
* Episode.description; // => 'A Star Wars film episode.'
|
|
2808
|
+
* Episode.serialize(5); // => 'EMPIRE'
|
|
2809
|
+
* Episode.parseValue('JEDI'); // => 6
|
|
2810
|
+
* Episode.getValue('JEDI').deprecationReason; // => 'Use RETURN_OF_THE_JEDI.'
|
|
2811
|
+
* Episode.extensions; // => { catalog: 'films' }
|
|
2812
|
+
* ```
|
|
2813
|
+
*/
|
|
775
2814
|
constructor(config: Readonly<GraphQLEnumTypeConfig>);
|
|
2815
|
+
/**
|
|
2816
|
+
* Returns the value used by `Object.prototype.toString`.
|
|
2817
|
+
* @returns The built-in string tag for this object.
|
|
2818
|
+
*/
|
|
776
2819
|
get [Symbol.toStringTag](): string;
|
|
2820
|
+
/**
|
|
2821
|
+
* Returns the values defined by this enum type.
|
|
2822
|
+
* @returns Enum value definitions in schema order.
|
|
2823
|
+
* @example
|
|
2824
|
+
* ```ts
|
|
2825
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
2826
|
+
* import { assertEnumType } from 'graphql/type';
|
|
2827
|
+
*
|
|
2828
|
+
* const schema = buildSchema(`
|
|
2829
|
+
* enum Episode {
|
|
2830
|
+
* NEW_HOPE
|
|
2831
|
+
* EMPIRE
|
|
2832
|
+
* JEDI
|
|
2833
|
+
* }
|
|
2834
|
+
*
|
|
2835
|
+
* type Query {
|
|
2836
|
+
* episode: Episode
|
|
2837
|
+
* }
|
|
2838
|
+
* `);
|
|
2839
|
+
*
|
|
2840
|
+
* const Episode = assertEnumType(schema.getType('Episode'));
|
|
2841
|
+
*
|
|
2842
|
+
* Episode.getValues().map((value) => value.name); // => ['NEW_HOPE', 'EMPIRE', 'JEDI']
|
|
2843
|
+
* ```
|
|
2844
|
+
*/
|
|
777
2845
|
getValues(): ReadonlyArray<GraphQLEnumValue>;
|
|
2846
|
+
/**
|
|
2847
|
+
* Returns the enum value definition for a value name.
|
|
2848
|
+
* @param name - The GraphQL name to look up.
|
|
2849
|
+
* @returns The matching enum value definition, if it exists.
|
|
2850
|
+
* @example
|
|
2851
|
+
* ```ts
|
|
2852
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
2853
|
+
* import { assertEnumType } from 'graphql/type';
|
|
2854
|
+
*
|
|
2855
|
+
* const schema = buildSchema(`
|
|
2856
|
+
* enum Episode {
|
|
2857
|
+
* NEW_HOPE
|
|
2858
|
+
* EMPIRE
|
|
2859
|
+
* }
|
|
2860
|
+
*
|
|
2861
|
+
* type Query {
|
|
2862
|
+
* episode: Episode
|
|
2863
|
+
* }
|
|
2864
|
+
* `);
|
|
2865
|
+
*
|
|
2866
|
+
* const Episode = assertEnumType(schema.getType('Episode'));
|
|
2867
|
+
*
|
|
2868
|
+
* Episode.getValue('EMPIRE')?.name; // => 'EMPIRE'
|
|
2869
|
+
* Episode.getValue('JEDI'); // => undefined
|
|
2870
|
+
* ```
|
|
2871
|
+
*/
|
|
778
2872
|
getValue(name: string): Maybe<GraphQLEnumValue>;
|
|
2873
|
+
/**
|
|
2874
|
+
* Serializes a runtime enum value as a GraphQL enum name.
|
|
2875
|
+
* @param outputValue - Runtime enum value to serialize.
|
|
2876
|
+
* @returns The GraphQL enum name for the runtime value.
|
|
2877
|
+
* @example
|
|
2878
|
+
* ```ts
|
|
2879
|
+
* import { GraphQLEnumType } from 'graphql/type';
|
|
2880
|
+
*
|
|
2881
|
+
* const RGB = new GraphQLEnumType({
|
|
2882
|
+
* name: 'RGB',
|
|
2883
|
+
* values: {
|
|
2884
|
+
* RED: { value: 0 },
|
|
2885
|
+
* GREEN: { value: 1 },
|
|
2886
|
+
* BLUE: { value: 2 },
|
|
2887
|
+
* },
|
|
2888
|
+
* });
|
|
2889
|
+
*
|
|
2890
|
+
* RGB.serialize(1); // => 'GREEN'
|
|
2891
|
+
* RGB.serialize(3); // throws an error
|
|
2892
|
+
* ```
|
|
2893
|
+
*/
|
|
779
2894
|
serialize(outputValue: unknown): Maybe<string>;
|
|
2895
|
+
/**
|
|
2896
|
+
* Parses a GraphQL enum name from variable input.
|
|
2897
|
+
* @param inputValue - Runtime input value to parse.
|
|
2898
|
+
* @returns The internal enum value represented by the input name.
|
|
2899
|
+
* @example
|
|
2900
|
+
* ```ts
|
|
2901
|
+
* import { GraphQLEnumType } from 'graphql/type';
|
|
2902
|
+
*
|
|
2903
|
+
* const RGB = new GraphQLEnumType({
|
|
2904
|
+
* name: 'RGB',
|
|
2905
|
+
* values: {
|
|
2906
|
+
* RED: { value: 0 },
|
|
2907
|
+
* GREEN: { value: 1 },
|
|
2908
|
+
* BLUE: { value: 2 },
|
|
2909
|
+
* },
|
|
2910
|
+
* });
|
|
2911
|
+
*
|
|
2912
|
+
* RGB.parseValue('BLUE'); // => 2
|
|
2913
|
+
* RGB.parseValue('PURPLE'); // throws an error
|
|
2914
|
+
* RGB.parseValue(2); // throws an error
|
|
2915
|
+
* ```
|
|
2916
|
+
*/
|
|
780
2917
|
parseValue(inputValue: unknown): Maybe<any>;
|
|
2918
|
+
/**
|
|
2919
|
+
* Parses a GraphQL enum name from an AST value literal.
|
|
2920
|
+
* @param valueNode - AST value literal to parse.
|
|
2921
|
+
* @param _variables - Runtime variable values; ignored because enum literals cannot contain variables.
|
|
2922
|
+
* @returns The internal enum value represented by the literal.
|
|
2923
|
+
* @example
|
|
2924
|
+
* ```ts
|
|
2925
|
+
* import { parseValue } from 'graphql/language';
|
|
2926
|
+
* import { GraphQLEnumType } from 'graphql/type';
|
|
2927
|
+
*
|
|
2928
|
+
* const RGB = new GraphQLEnumType({
|
|
2929
|
+
* name: 'RGB',
|
|
2930
|
+
* values: {
|
|
2931
|
+
* RED: { value: 0 },
|
|
2932
|
+
* GREEN: { value: 1 },
|
|
2933
|
+
* BLUE: { value: 2 },
|
|
2934
|
+
* },
|
|
2935
|
+
* });
|
|
2936
|
+
*
|
|
2937
|
+
* RGB.parseLiteral(parseValue('RED')); // => 0
|
|
2938
|
+
* RGB.parseLiteral(parseValue('"RED"')); // throws an error
|
|
2939
|
+
* ```
|
|
2940
|
+
*/
|
|
781
2941
|
parseLiteral(
|
|
782
2942
|
valueNode: ValueNode,
|
|
783
2943
|
_variables: Maybe<ObjMap<unknown>>,
|
|
784
2944
|
): Maybe<any>;
|
|
2945
|
+
/**
|
|
2946
|
+
* Returns a normalized configuration object for this object.
|
|
2947
|
+
* @returns A configuration object that can be used to recreate this object.
|
|
2948
|
+
* @example
|
|
2949
|
+
* ```ts
|
|
2950
|
+
* import { GraphQLEnumType } from 'graphql/type';
|
|
2951
|
+
*
|
|
2952
|
+
* const RGB = new GraphQLEnumType({
|
|
2953
|
+
* name: 'RGB',
|
|
2954
|
+
* values: {
|
|
2955
|
+
* RED: { value: 0 },
|
|
2956
|
+
* GREEN: { value: 1 },
|
|
2957
|
+
* BLUE: { value: 2 },
|
|
2958
|
+
* },
|
|
2959
|
+
* });
|
|
2960
|
+
*
|
|
2961
|
+
* const config = RGB.toConfig();
|
|
2962
|
+
* const RGBCopy = new GraphQLEnumType(config);
|
|
2963
|
+
*
|
|
2964
|
+
* config.values.GREEN.value; // => 1
|
|
2965
|
+
* RGBCopy.serialize(2); // => 'BLUE'
|
|
2966
|
+
* ```
|
|
2967
|
+
*/
|
|
785
2968
|
toConfig(): GraphQLEnumTypeNormalizedConfig;
|
|
2969
|
+
/**
|
|
2970
|
+
* Returns the schema coordinate identifying this enum type.
|
|
2971
|
+
* @returns The schema coordinate for this enum type.
|
|
2972
|
+
* @example
|
|
2973
|
+
* ```ts
|
|
2974
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
2975
|
+
* import { assertEnumType } from 'graphql/type';
|
|
2976
|
+
*
|
|
2977
|
+
* const schema = buildSchema(`
|
|
2978
|
+
* enum Episode {
|
|
2979
|
+
* NEW_HOPE
|
|
2980
|
+
* }
|
|
2981
|
+
*
|
|
2982
|
+
* type Query {
|
|
2983
|
+
* episode: Episode
|
|
2984
|
+
* }
|
|
2985
|
+
* `);
|
|
2986
|
+
*
|
|
2987
|
+
* const Episode = assertEnumType(schema.getType('Episode'));
|
|
2988
|
+
*
|
|
2989
|
+
* Episode.toString(); // => 'Episode'
|
|
2990
|
+
* ```
|
|
2991
|
+
*/
|
|
786
2992
|
toString(): string;
|
|
2993
|
+
/**
|
|
2994
|
+
* Returns the JSON representation used when this object is serialized.
|
|
2995
|
+
* @returns The JSON-serializable representation.
|
|
2996
|
+
* @example
|
|
2997
|
+
* ```ts
|
|
2998
|
+
* import { GraphQLEnumType } from 'graphql/type';
|
|
2999
|
+
*
|
|
3000
|
+
* const Episode = new GraphQLEnumType({
|
|
3001
|
+
* name: 'Episode',
|
|
3002
|
+
* values: {
|
|
3003
|
+
* NEW_HOPE: {},
|
|
3004
|
+
* },
|
|
3005
|
+
* });
|
|
3006
|
+
*
|
|
3007
|
+
* Episode.toJSON(); // => 'Episode'
|
|
3008
|
+
* JSON.stringify({ type: Episode }); // => '{"type":"Episode"}'
|
|
3009
|
+
* ```
|
|
3010
|
+
*/
|
|
787
3011
|
toJSON(): string;
|
|
788
3012
|
}
|
|
3013
|
+
/** Configuration used to construct a GraphQLEnumType. */
|
|
789
3014
|
export interface GraphQLEnumTypeConfig {
|
|
3015
|
+
/** The GraphQL name for this schema element. */
|
|
790
3016
|
name: string;
|
|
3017
|
+
/** Human-readable description for this schema element, if provided. */
|
|
791
3018
|
description?: Maybe<string>;
|
|
3019
|
+
/** Values contained in this enum, list, or input-object definition. */
|
|
792
3020
|
values: ThunkObjMap<GraphQLEnumValueConfig>;
|
|
3021
|
+
/** Custom extension fields reserved for users. */
|
|
793
3022
|
extensions?: Maybe<Readonly<GraphQLEnumTypeExtensions>>;
|
|
3023
|
+
/** AST node from which this schema element was built, if available. */
|
|
794
3024
|
astNode?: Maybe<EnumTypeDefinitionNode>;
|
|
3025
|
+
/** AST extension nodes applied to this schema element. */
|
|
795
3026
|
extensionASTNodes?: Maybe<ReadonlyArray<EnumTypeExtensionNode>>;
|
|
796
3027
|
}
|
|
797
3028
|
interface GraphQLEnumTypeNormalizedConfig extends GraphQLEnumTypeConfig {
|
|
@@ -799,10 +3030,10 @@ interface GraphQLEnumTypeNormalizedConfig extends GraphQLEnumTypeConfig {
|
|
|
799
3030
|
extensions: Readonly<GraphQLEnumTypeExtensions>;
|
|
800
3031
|
extensionASTNodes: ReadonlyArray<EnumTypeExtensionNode>;
|
|
801
3032
|
}
|
|
3033
|
+
/** A map of enum value names to enum value configuration objects. */
|
|
802
3034
|
export declare type GraphQLEnumValueConfigMap = ObjMap<GraphQLEnumValueConfig>;
|
|
803
3035
|
/**
|
|
804
3036
|
* Custom extensions
|
|
805
|
-
*
|
|
806
3037
|
* @remarks
|
|
807
3038
|
* Use a unique identifier name for your extension, for example the name of
|
|
808
3039
|
* your library or project. Do not use a shortened identifier as this increases
|
|
@@ -812,24 +3043,36 @@ export declare type GraphQLEnumValueConfigMap = ObjMap<GraphQLEnumValueConfig>;
|
|
|
812
3043
|
export interface GraphQLEnumValueExtensions {
|
|
813
3044
|
[attributeName: string]: unknown;
|
|
814
3045
|
}
|
|
3046
|
+
/** Configuration used to define a GraphQL enum value. */
|
|
815
3047
|
export interface GraphQLEnumValueConfig {
|
|
3048
|
+
/** Human-readable description for this schema element, if provided. */
|
|
816
3049
|
description?: Maybe<string>;
|
|
3050
|
+
/** Parsed value represented by this node. */
|
|
817
3051
|
value?: any;
|
|
3052
|
+
/** Reason this element is deprecated, if one was provided. */
|
|
818
3053
|
deprecationReason?: Maybe<string>;
|
|
3054
|
+
/** Custom extension fields reserved for users. */
|
|
819
3055
|
extensions?: Maybe<Readonly<GraphQLEnumValueExtensions>>;
|
|
3056
|
+
/** AST node from which this schema element was built, if available. */
|
|
820
3057
|
astNode?: Maybe<EnumValueDefinitionNode>;
|
|
821
3058
|
}
|
|
3059
|
+
/** A resolved GraphQL enum value definition. */
|
|
822
3060
|
export interface GraphQLEnumValue {
|
|
3061
|
+
/** The GraphQL name for this schema element. */
|
|
823
3062
|
name: string;
|
|
3063
|
+
/** Human-readable description for this schema element, if provided. */
|
|
824
3064
|
description: Maybe<string>;
|
|
3065
|
+
/** Parsed value represented by this node. */
|
|
825
3066
|
value: any;
|
|
3067
|
+
/** Reason this element is deprecated, if one was provided. */
|
|
826
3068
|
deprecationReason: Maybe<string>;
|
|
3069
|
+
/** Custom extension fields reserved for users. */
|
|
827
3070
|
extensions: Readonly<GraphQLEnumValueExtensions>;
|
|
3071
|
+
/** AST node from which this schema element was built, if available. */
|
|
828
3072
|
astNode: Maybe<EnumValueDefinitionNode>;
|
|
829
3073
|
}
|
|
830
3074
|
/**
|
|
831
3075
|
* Custom extensions
|
|
832
|
-
*
|
|
833
3076
|
* @remarks
|
|
834
3077
|
* Use a unique identifier name for your extension, for example the name of
|
|
835
3078
|
* your library or project. Do not use a shortened identifier as this increases
|
|
@@ -846,9 +3089,7 @@ export interface GraphQLInputObjectTypeExtensions {
|
|
|
846
3089
|
* supplied to a field argument.
|
|
847
3090
|
*
|
|
848
3091
|
* Using `NonNull` will ensure that a value must be provided by the query
|
|
849
|
-
*
|
|
850
|
-
* Example:
|
|
851
|
-
*
|
|
3092
|
+
* @example
|
|
852
3093
|
* ```ts
|
|
853
3094
|
* const GeoPoint = new GraphQLInputObjectType({
|
|
854
3095
|
* name: 'GeoPoint',
|
|
@@ -861,27 +3102,205 @@ export interface GraphQLInputObjectTypeExtensions {
|
|
|
861
3102
|
* ```
|
|
862
3103
|
*/
|
|
863
3104
|
export declare class GraphQLInputObjectType {
|
|
3105
|
+
/** The GraphQL name for this schema element. */
|
|
864
3106
|
name: string;
|
|
3107
|
+
/** Human-readable description for this schema element, if provided. */
|
|
865
3108
|
description: Maybe<string>;
|
|
3109
|
+
/** Custom extension fields reserved for users. */
|
|
866
3110
|
extensions: Readonly<GraphQLInputObjectTypeExtensions>;
|
|
3111
|
+
/** AST node from which this schema element was built, if available. */
|
|
867
3112
|
astNode: Maybe<InputObjectTypeDefinitionNode>;
|
|
3113
|
+
/** AST extension nodes applied to this schema element. */
|
|
868
3114
|
extensionASTNodes: ReadonlyArray<InputObjectTypeExtensionNode>;
|
|
3115
|
+
/** Whether this input object uses the experimental OneOf input object semantics. */
|
|
869
3116
|
isOneOf: boolean;
|
|
870
3117
|
private _fields;
|
|
3118
|
+
/**
|
|
3119
|
+
* Creates a GraphQLInputObjectType instance.
|
|
3120
|
+
* @param config - Configuration describing this object.
|
|
3121
|
+
* @example
|
|
3122
|
+
* ```ts
|
|
3123
|
+
* import { parse } from 'graphql/language';
|
|
3124
|
+
* import {
|
|
3125
|
+
* GraphQLID,
|
|
3126
|
+
* GraphQLInputObjectType,
|
|
3127
|
+
* GraphQLInt,
|
|
3128
|
+
* GraphQLNonNull,
|
|
3129
|
+
* GraphQLString,
|
|
3130
|
+
* } from 'graphql/type';
|
|
3131
|
+
*
|
|
3132
|
+
* const document = parse(`
|
|
3133
|
+
* input ReviewInput {
|
|
3134
|
+
* stars: Int!
|
|
3135
|
+
* commentary: String
|
|
3136
|
+
* }
|
|
3137
|
+
*
|
|
3138
|
+
* extend input ReviewInput {
|
|
3139
|
+
* body: String
|
|
3140
|
+
* }
|
|
3141
|
+
* `);
|
|
3142
|
+
* const definition = document.definitions[0];
|
|
3143
|
+
*
|
|
3144
|
+
* const ReviewInput = new GraphQLInputObjectType({
|
|
3145
|
+
* name: 'ReviewInput',
|
|
3146
|
+
* description: 'Input collected when reviewing a product.',
|
|
3147
|
+
* fields: {
|
|
3148
|
+
* stars: {
|
|
3149
|
+
* description: 'Star rating from one to five.',
|
|
3150
|
+
* type: new GraphQLNonNull(GraphQLInt),
|
|
3151
|
+
* extensions: { min: 1, max: 5 },
|
|
3152
|
+
* astNode: definition.fields[0],
|
|
3153
|
+
* },
|
|
3154
|
+
* commentary: {
|
|
3155
|
+
* type: GraphQLString,
|
|
3156
|
+
* defaultValue: '',
|
|
3157
|
+
* deprecationReason: 'Use body.',
|
|
3158
|
+
* astNode: definition.fields[1],
|
|
3159
|
+
* },
|
|
3160
|
+
* },
|
|
3161
|
+
* extensions: { form: 'review' },
|
|
3162
|
+
* astNode: definition,
|
|
3163
|
+
* extensionASTNodes: [ document.definitions[1] ],
|
|
3164
|
+
* isOneOf: false,
|
|
3165
|
+
* });
|
|
3166
|
+
* const SearchBy = new GraphQLInputObjectType({
|
|
3167
|
+
* name: 'SearchBy',
|
|
3168
|
+
* fields: {
|
|
3169
|
+
* id: { type: GraphQLID },
|
|
3170
|
+
* slug: { type: GraphQLString },
|
|
3171
|
+
* },
|
|
3172
|
+
* isOneOf: true,
|
|
3173
|
+
* });
|
|
3174
|
+
*
|
|
3175
|
+
* const fields = ReviewInput.getFields();
|
|
3176
|
+
*
|
|
3177
|
+
* ReviewInput.description; // => 'Input collected when reviewing a product.'
|
|
3178
|
+
* String(fields.stars.type); // => 'Int!'
|
|
3179
|
+
* fields.stars.extensions; // => { min: 1, max: 5 }
|
|
3180
|
+
* fields.commentary.defaultValue; // => ''
|
|
3181
|
+
* fields.commentary.deprecationReason; // => 'Use body.'
|
|
3182
|
+
* ReviewInput.isOneOf; // => false
|
|
3183
|
+
* SearchBy.isOneOf; // => true
|
|
3184
|
+
* ```
|
|
3185
|
+
*/
|
|
871
3186
|
constructor(config: Readonly<GraphQLInputObjectTypeConfig>);
|
|
3187
|
+
/**
|
|
3188
|
+
* Returns the value used by `Object.prototype.toString`.
|
|
3189
|
+
* @returns The built-in string tag for this object.
|
|
3190
|
+
*/
|
|
872
3191
|
get [Symbol.toStringTag](): string;
|
|
3192
|
+
/**
|
|
3193
|
+
* Returns the fields defined by this type.
|
|
3194
|
+
* @returns The fields keyed by field name.
|
|
3195
|
+
* @example
|
|
3196
|
+
* ```ts
|
|
3197
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
3198
|
+
* import { assertInputObjectType } from 'graphql/type';
|
|
3199
|
+
*
|
|
3200
|
+
* const schema = buildSchema(`
|
|
3201
|
+
* input ReviewInput {
|
|
3202
|
+
* stars: Int!
|
|
3203
|
+
* commentary: String = ""
|
|
3204
|
+
* }
|
|
3205
|
+
*
|
|
3206
|
+
* type Query {
|
|
3207
|
+
* reviews(filter: ReviewInput): [String]
|
|
3208
|
+
* }
|
|
3209
|
+
* `);
|
|
3210
|
+
*
|
|
3211
|
+
* const ReviewInput = assertInputObjectType(schema.getType('ReviewInput'));
|
|
3212
|
+
* const fields = ReviewInput.getFields();
|
|
3213
|
+
*
|
|
3214
|
+
* Object.keys(fields); // => ['stars', 'commentary']
|
|
3215
|
+
* fields.commentary.defaultValue; // => ''
|
|
3216
|
+
* ```
|
|
3217
|
+
*/
|
|
873
3218
|
getFields(): GraphQLInputFieldMap;
|
|
3219
|
+
/**
|
|
3220
|
+
* Returns a normalized configuration object for this object.
|
|
3221
|
+
* @returns A configuration object that can be used to recreate this object.
|
|
3222
|
+
* @example
|
|
3223
|
+
* ```ts
|
|
3224
|
+
* import {
|
|
3225
|
+
* GraphQLInputObjectType,
|
|
3226
|
+
* GraphQLInt,
|
|
3227
|
+
* GraphQLNonNull,
|
|
3228
|
+
* } from 'graphql/type';
|
|
3229
|
+
*
|
|
3230
|
+
* const ReviewInput = new GraphQLInputObjectType({
|
|
3231
|
+
* name: 'ReviewInput',
|
|
3232
|
+
* fields: {
|
|
3233
|
+
* stars: { type: new GraphQLNonNull(GraphQLInt) },
|
|
3234
|
+
* },
|
|
3235
|
+
* });
|
|
3236
|
+
*
|
|
3237
|
+
* const config = ReviewInput.toConfig();
|
|
3238
|
+
* const ReviewInputCopy = new GraphQLInputObjectType(config);
|
|
3239
|
+
*
|
|
3240
|
+
* String(config.fields.stars.type); // => 'Int!'
|
|
3241
|
+
* String(ReviewInputCopy.getFields().stars.type); // => 'Int!'
|
|
3242
|
+
* ```
|
|
3243
|
+
*/
|
|
874
3244
|
toConfig(): GraphQLInputObjectTypeNormalizedConfig;
|
|
3245
|
+
/**
|
|
3246
|
+
* Returns the schema coordinate identifying this input object type.
|
|
3247
|
+
* @returns The schema coordinate for this input object type.
|
|
3248
|
+
* @example
|
|
3249
|
+
* ```ts
|
|
3250
|
+
* import { buildSchema } from 'graphql/utilities';
|
|
3251
|
+
* import { assertInputObjectType } from 'graphql/type';
|
|
3252
|
+
*
|
|
3253
|
+
* const schema = buildSchema(`
|
|
3254
|
+
* input ReviewInput {
|
|
3255
|
+
* stars: Int!
|
|
3256
|
+
* }
|
|
3257
|
+
*
|
|
3258
|
+
* type Query {
|
|
3259
|
+
* reviews(filter: ReviewInput): [String]
|
|
3260
|
+
* }
|
|
3261
|
+
* `);
|
|
3262
|
+
*
|
|
3263
|
+
* const ReviewInput = assertInputObjectType(schema.getType('ReviewInput'));
|
|
3264
|
+
*
|
|
3265
|
+
* ReviewInput.toString(); // => 'ReviewInput'
|
|
3266
|
+
* ```
|
|
3267
|
+
*/
|
|
875
3268
|
toString(): string;
|
|
3269
|
+
/**
|
|
3270
|
+
* Returns the JSON representation used when this object is serialized.
|
|
3271
|
+
* @returns The JSON-serializable representation.
|
|
3272
|
+
* @example
|
|
3273
|
+
* ```ts
|
|
3274
|
+
* import { GraphQLInputObjectType, GraphQLString } from 'graphql/type';
|
|
3275
|
+
*
|
|
3276
|
+
* const ReviewInput = new GraphQLInputObjectType({
|
|
3277
|
+
* name: 'ReviewInput',
|
|
3278
|
+
* fields: {
|
|
3279
|
+
* commentary: { type: GraphQLString },
|
|
3280
|
+
* },
|
|
3281
|
+
* });
|
|
3282
|
+
*
|
|
3283
|
+
* ReviewInput.toJSON(); // => 'ReviewInput'
|
|
3284
|
+
* JSON.stringify({ type: ReviewInput }); // => '{"type":"ReviewInput"}'
|
|
3285
|
+
* ```
|
|
3286
|
+
*/
|
|
876
3287
|
toJSON(): string;
|
|
877
3288
|
}
|
|
3289
|
+
/** Configuration used to construct a GraphQLInputObjectType. */
|
|
878
3290
|
export interface GraphQLInputObjectTypeConfig {
|
|
3291
|
+
/** The GraphQL name for this schema element. */
|
|
879
3292
|
name: string;
|
|
3293
|
+
/** Human-readable description for this schema element, if provided. */
|
|
880
3294
|
description?: Maybe<string>;
|
|
3295
|
+
/** Fields declared by this object, interface, input object, or literal. */
|
|
881
3296
|
fields: ThunkObjMap<GraphQLInputFieldConfig>;
|
|
3297
|
+
/** Custom extension fields reserved for users. */
|
|
882
3298
|
extensions?: Maybe<Readonly<GraphQLInputObjectTypeExtensions>>;
|
|
3299
|
+
/** AST node from which this schema element was built, if available. */
|
|
883
3300
|
astNode?: Maybe<InputObjectTypeDefinitionNode>;
|
|
3301
|
+
/** AST extension nodes applied to this schema element. */
|
|
884
3302
|
extensionASTNodes?: Maybe<ReadonlyArray<InputObjectTypeExtensionNode>>;
|
|
3303
|
+
/** Whether this input object uses the experimental OneOf input object semantics. */
|
|
885
3304
|
isOneOf?: boolean;
|
|
886
3305
|
}
|
|
887
3306
|
interface GraphQLInputObjectTypeNormalizedConfig
|
|
@@ -892,7 +3311,6 @@ interface GraphQLInputObjectTypeNormalizedConfig
|
|
|
892
3311
|
}
|
|
893
3312
|
/**
|
|
894
3313
|
* Custom extensions
|
|
895
|
-
*
|
|
896
3314
|
* @remarks
|
|
897
3315
|
* Use a unique identifier name for your extension, for example the name of
|
|
898
3316
|
* your library or project. Do not use a shortened identifier as this increases
|
|
@@ -902,25 +3320,68 @@ interface GraphQLInputObjectTypeNormalizedConfig
|
|
|
902
3320
|
export interface GraphQLInputFieldExtensions {
|
|
903
3321
|
[attributeName: string]: unknown;
|
|
904
3322
|
}
|
|
3323
|
+
/** Configuration used to define a GraphQL input field. */
|
|
905
3324
|
export interface GraphQLInputFieldConfig {
|
|
3325
|
+
/** Human-readable description for this schema element, if provided. */
|
|
906
3326
|
description?: Maybe<string>;
|
|
3327
|
+
/** The GraphQL type reference or runtime type for this element. */
|
|
907
3328
|
type: GraphQLInputType;
|
|
3329
|
+
/** Default value used when no explicit value is supplied. */
|
|
908
3330
|
defaultValue?: unknown;
|
|
3331
|
+
/** Reason this element is deprecated, if one was provided. */
|
|
909
3332
|
deprecationReason?: Maybe<string>;
|
|
3333
|
+
/** Custom extension fields reserved for users. */
|
|
910
3334
|
extensions?: Maybe<Readonly<GraphQLInputFieldExtensions>>;
|
|
3335
|
+
/** AST node from which this schema element was built, if available. */
|
|
911
3336
|
astNode?: Maybe<InputValueDefinitionNode>;
|
|
912
3337
|
}
|
|
3338
|
+
/** A map of input field names to input field configuration objects. */
|
|
913
3339
|
export declare type GraphQLInputFieldConfigMap =
|
|
914
3340
|
ObjMap<GraphQLInputFieldConfig>;
|
|
3341
|
+
/** A resolved GraphQL input field definition. */
|
|
915
3342
|
export interface GraphQLInputField {
|
|
3343
|
+
/** The GraphQL name for this schema element. */
|
|
916
3344
|
name: string;
|
|
3345
|
+
/** Human-readable description for this schema element, if provided. */
|
|
917
3346
|
description: Maybe<string>;
|
|
3347
|
+
/** The GraphQL type reference or runtime type for this element. */
|
|
918
3348
|
type: GraphQLInputType;
|
|
3349
|
+
/** Default value used when no explicit value is supplied. */
|
|
919
3350
|
defaultValue: unknown;
|
|
3351
|
+
/** Reason this element is deprecated, if one was provided. */
|
|
920
3352
|
deprecationReason: Maybe<string>;
|
|
3353
|
+
/** Custom extension fields reserved for users. */
|
|
921
3354
|
extensions: Readonly<GraphQLInputFieldExtensions>;
|
|
3355
|
+
/** AST node from which this schema element was built, if available. */
|
|
922
3356
|
astNode: Maybe<InputValueDefinitionNode>;
|
|
923
3357
|
}
|
|
3358
|
+
/**
|
|
3359
|
+
* Returns true when the input field is non-null and has no default value.
|
|
3360
|
+
* @param field - The input field definition to inspect.
|
|
3361
|
+
* @returns True when the input field is non-null and has no default value.
|
|
3362
|
+
* @example
|
|
3363
|
+
* ```ts
|
|
3364
|
+
* import {
|
|
3365
|
+
* GraphQLInt,
|
|
3366
|
+
* GraphQLNonNull,
|
|
3367
|
+
* GraphQLString,
|
|
3368
|
+
* isRequiredInputField,
|
|
3369
|
+
* } from 'graphql/type';
|
|
3370
|
+
*
|
|
3371
|
+
* const requiredField = { name: 'id', type: new GraphQLNonNull(GraphQLInt) };
|
|
3372
|
+
* const optionalField = { name: 'name', type: GraphQLString };
|
|
3373
|
+
* const fieldWithDefault = {
|
|
3374
|
+
* name: 'limit',
|
|
3375
|
+
* type: new GraphQLNonNull(GraphQLInt),
|
|
3376
|
+
* defaultValue: 10,
|
|
3377
|
+
* };
|
|
3378
|
+
*
|
|
3379
|
+
* isRequiredInputField(requiredField); // => true
|
|
3380
|
+
* isRequiredInputField(optionalField); // => false
|
|
3381
|
+
* isRequiredInputField(fieldWithDefault); // => false
|
|
3382
|
+
* ```
|
|
3383
|
+
*/
|
|
924
3384
|
export declare function isRequiredInputField(field: GraphQLInputField): boolean;
|
|
3385
|
+
/** A map of input field names to resolved input field definitions. */
|
|
925
3386
|
export declare type GraphQLInputFieldMap = ObjMap<GraphQLInputField>;
|
|
926
3387
|
export {};
|