@nocobase/plugin-ai 2.1.0-alpha.26 → 2.1.0-alpha.27
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/build.config.ts +16 -0
- package/dist/ai/ai-employees/dara.js +1 -0
- package/dist/ai/docs/nocobase/ai/ai-quick-start.md +60 -0
- package/dist/ai/docs/nocobase/ai/claude-code/index.md +107 -0
- package/dist/ai/docs/nocobase/ai/codex/index.md +104 -0
- package/dist/ai/docs/nocobase/ai/hermes-agent/index.md +124 -0
- package/dist/ai/docs/nocobase/ai/index.md +102 -0
- package/dist/ai/docs/nocobase/ai/install-upgrade-migration.mdx +407 -0
- package/dist/ai/docs/nocobase/ai/mcp/index.md +167 -0
- package/dist/ai/docs/nocobase/ai/openclaw/index.md +112 -0
- package/dist/ai/docs/nocobase/ai/opencode/index.md +106 -0
- package/dist/ai/docs/nocobase/ai/quick-start.mdx +175 -0
- package/dist/ai/docs/nocobase/ai/workbuddy/index.md +119 -0
- package/dist/ai/docs/nocobase/ai-builder/acl.md +92 -0
- package/dist/ai/docs/nocobase/ai-builder/data-modeling.md +95 -0
- package/dist/ai/docs/nocobase/ai-builder/dsl-reconciler.md +90 -0
- package/dist/ai/docs/nocobase/ai-builder/env-bootstrap.md +116 -0
- package/dist/ai/docs/nocobase/ai-builder/index.md +127 -0
- package/dist/ai/docs/nocobase/ai-builder/plugin-manage.md +80 -0
- package/dist/ai/docs/nocobase/ai-builder/publish.md +95 -0
- package/dist/ai/docs/nocobase/ai-builder/security.md +233 -0
- package/dist/ai/docs/nocobase/ai-builder/ui-builder.md +100 -0
- package/dist/ai/docs/nocobase/ai-builder/workflow.md +171 -0
- package/dist/ai/docs/nocobase/ai-dev/capabilities.md +234 -0
- package/dist/ai/docs/nocobase/ai-dev/index.md +102 -0
- package/dist/ai/docs/nocobase/ai-dev/watermark-plugin.md +147 -0
- package/dist/ai/docs/nocobase/ai-employees/configuration/admin-configuration.md +278 -0
- package/dist/ai/docs/nocobase/ai-employees/configuration/prompt-engineering-guide.md +319 -0
- package/dist/ai/docs/nocobase/ai-employees/features/built-in-employee.md +231 -0
- package/dist/ai/docs/nocobase/ai-employees/features/collaborate.md +34 -0
- package/dist/ai/docs/nocobase/ai-employees/features/enable-ai-employee.md +20 -0
- package/dist/ai/docs/nocobase/ai-employees/features/llm-service.md +41 -0
- package/dist/ai/docs/nocobase/ai-employees/features/mcp.md +68 -0
- package/dist/ai/docs/nocobase/ai-employees/features/new-ai-employees.md +43 -0
- package/dist/ai/docs/nocobase/ai-employees/features/pick-block.md +29 -0
- package/dist/ai/docs/nocobase/ai-employees/features/skills.md +39 -0
- package/dist/ai/docs/nocobase/ai-employees/features/task.md +41 -0
- package/dist/ai/docs/nocobase/ai-employees/features/tools.md +60 -0
- package/dist/ai/docs/nocobase/ai-employees/features/web-search.md +39 -0
- package/dist/ai/docs/nocobase/ai-employees/file-manager.md +18 -0
- package/dist/ai/docs/nocobase/ai-employees/index.md +72 -0
- package/dist/ai/docs/nocobase/ai-employees/knowledge-base/index.md +25 -0
- package/dist/ai/docs/nocobase/ai-employees/knowledge-base/knowledge-base.md +82 -0
- package/dist/ai/docs/nocobase/ai-employees/knowledge-base/rag.md +29 -0
- package/dist/ai/docs/nocobase/ai-employees/knowledge-base/vector-database.md +32 -0
- package/dist/ai/docs/nocobase/ai-employees/knowledge-base/vector-store.md +24 -0
- package/dist/ai/docs/nocobase/ai-employees/permission.md +211 -0
- package/dist/ai/docs/nocobase/ai-employees/quick-start.md +89 -0
- package/dist/ai/docs/nocobase/ai-employees/scenarios/business-report.md +46 -0
- package/dist/ai/docs/nocobase/ai-employees/scenarios/viz-crm.md +248 -0
- package/dist/ai/docs/nocobase/ai-employees/workflow/nodes/employee/approval.md +31 -0
- package/dist/ai/docs/nocobase/ai-employees/workflow/nodes/employee/configuration.md +133 -0
- package/dist/ai/docs/nocobase/ai-employees/workflow/nodes/llm/chat.md +88 -0
- package/dist/ai/docs/nocobase/ai-employees/workflow/nodes/llm/multimodal-chat.md +21 -0
- package/dist/ai/docs/nocobase/ai-employees/workflow/nodes/llm/structured-output.md +59 -0
- package/dist/ai/docs/nocobase/api/acl/acl.md +7 -0
- package/dist/ai/docs/nocobase/api/app/env.md +288 -0
- package/dist/ai/docs/nocobase/api/auth/auth-manager.md +175 -0
- package/dist/ai/docs/nocobase/api/auth/auth.md +103 -0
- package/dist/ai/docs/nocobase/api/auth/base-auth.md +70 -0
- package/dist/ai/docs/nocobase/api/cache/cache-manager.md +194 -0
- package/dist/ai/docs/nocobase/api/cache/cache.md +60 -0
- package/dist/ai/docs/nocobase/api/cli/api/dynamic.md +47 -0
- package/dist/ai/docs/nocobase/api/cli/api/index.md +49 -0
- package/dist/ai/docs/nocobase/api/cli/api/resource/create.md +40 -0
- package/dist/ai/docs/nocobase/api/cli/api/resource/destroy.md +39 -0
- package/dist/ai/docs/nocobase/api/cli/api/resource/get.md +41 -0
- package/dist/ai/docs/nocobase/api/cli/api/resource/index.md +55 -0
- package/dist/ai/docs/nocobase/api/cli/api/resource/list.md +46 -0
- package/dist/ai/docs/nocobase/api/cli/api/resource/query.md +44 -0
- package/dist/ai/docs/nocobase/api/cli/api/resource/update.md +44 -0
- package/dist/ai/docs/nocobase/api/cli/app/down.md +37 -0
- package/dist/ai/docs/nocobase/api/cli/app/index.md +42 -0
- package/dist/ai/docs/nocobase/api/cli/app/logs.md +38 -0
- package/dist/ai/docs/nocobase/api/cli/app/restart.md +46 -0
- package/dist/ai/docs/nocobase/api/cli/app/start.md +47 -0
- package/dist/ai/docs/nocobase/api/cli/app/stop.md +37 -0
- package/dist/ai/docs/nocobase/api/cli/app/upgrade.md +39 -0
- package/dist/ai/docs/nocobase/api/cli/db/index.md +39 -0
- package/dist/ai/docs/nocobase/api/cli/db/logs.md +37 -0
- package/dist/ai/docs/nocobase/api/cli/db/ps.md +34 -0
- package/dist/ai/docs/nocobase/api/cli/db/start.md +36 -0
- package/dist/ai/docs/nocobase/api/cli/db/stop.md +36 -0
- package/dist/ai/docs/nocobase/api/cli/env/add.md +41 -0
- package/dist/ai/docs/nocobase/api/cli/env/auth.md +37 -0
- package/dist/ai/docs/nocobase/api/cli/env/index.md +44 -0
- package/dist/ai/docs/nocobase/api/cli/env/info.md +41 -0
- package/dist/ai/docs/nocobase/api/cli/env/list.md +33 -0
- package/dist/ai/docs/nocobase/api/cli/env/remove.md +35 -0
- package/dist/ai/docs/nocobase/api/cli/env/update.md +40 -0
- package/dist/ai/docs/nocobase/api/cli/env/use.md +32 -0
- package/dist/ai/docs/nocobase/api/cli/index.md +153 -0
- package/dist/ai/docs/nocobase/api/cli/init.md +98 -0
- package/dist/ai/docs/nocobase/api/cli/plugin/disable.md +35 -0
- package/dist/ai/docs/nocobase/api/cli/plugin/enable.md +35 -0
- package/dist/ai/docs/nocobase/api/cli/plugin/index.md +36 -0
- package/dist/ai/docs/nocobase/api/cli/plugin/list.md +34 -0
- package/dist/ai/docs/nocobase/api/cli/scaffold/index.md +34 -0
- package/dist/ai/docs/nocobase/api/cli/scaffold/migration.md +35 -0
- package/dist/ai/docs/nocobase/api/cli/scaffold/plugin.md +34 -0
- package/dist/ai/docs/nocobase/api/cli/self/check.md +34 -0
- package/dist/ai/docs/nocobase/api/cli/self/index.md +35 -0
- package/dist/ai/docs/nocobase/api/cli/self/update.md +37 -0
- package/dist/ai/docs/nocobase/api/cli/skills/check.md +33 -0
- package/dist/ai/docs/nocobase/api/cli/skills/index.md +38 -0
- package/dist/ai/docs/nocobase/api/cli/skills/install.md +36 -0
- package/dist/ai/docs/nocobase/api/cli/skills/remove.md +36 -0
- package/dist/ai/docs/nocobase/api/cli/skills/update.md +36 -0
- package/dist/ai/docs/nocobase/api/cli/source/build.md +40 -0
- package/dist/ai/docs/nocobase/api/cli/source/dev.md +44 -0
- package/dist/ai/docs/nocobase/api/cli/source/download.md +59 -0
- package/dist/ai/docs/nocobase/api/cli/source/index.md +39 -0
- package/dist/ai/docs/nocobase/api/cli/source/test.md +53 -0
- package/dist/ai/docs/nocobase/api/client/application.md +1 -0
- package/dist/ai/docs/nocobase/api/client/plugin.md +5 -0
- package/dist/ai/docs/nocobase/api/data-source-manager/data-source-manager.md +56 -0
- package/dist/ai/docs/nocobase/api/data-source-manager/data-source.md +79 -0
- package/dist/ai/docs/nocobase/api/data-source-manager/i-collection-manager.md +110 -0
- package/dist/ai/docs/nocobase/api/data-source-manager/i-collection.md +69 -0
- package/dist/ai/docs/nocobase/api/data-source-manager/i-field.md +33 -0
- package/dist/ai/docs/nocobase/api/data-source-manager/i-model.md +15 -0
- package/dist/ai/docs/nocobase/api/data-source-manager/i-repository.md +62 -0
- package/dist/ai/docs/nocobase/api/database/collection.md +514 -0
- package/dist/ai/docs/nocobase/api/database/field.md +558 -0
- package/dist/ai/docs/nocobase/api/database/index.md +1193 -0
- package/dist/ai/docs/nocobase/api/database/interfaces/base-interface.md +29 -0
- package/dist/ai/docs/nocobase/api/database/operators.md +808 -0
- package/dist/ai/docs/nocobase/api/database/relation-repository/belongs-to-many-repository.md +191 -0
- package/dist/ai/docs/nocobase/api/database/relation-repository/belongs-to-repository.md +4 -0
- package/dist/ai/docs/nocobase/api/database/relation-repository/has-many-repository.md +134 -0
- package/dist/ai/docs/nocobase/api/database/relation-repository/has-one-repository.md +187 -0
- package/dist/ai/docs/nocobase/api/database/relation-repository/index.md +48 -0
- package/dist/ai/docs/nocobase/api/database/repository.md +677 -0
- package/dist/ai/docs/nocobase/api/database/shared/create-options.md +22 -0
- package/dist/ai/docs/nocobase/api/database/shared/destroy-options.md +17 -0
- package/dist/ai/docs/nocobase/api/database/shared/find-one.md +9 -0
- package/dist/ai/docs/nocobase/api/database/shared/find-options.md +1 -0
- package/dist/ai/docs/nocobase/api/database/shared/transaction.md +1 -0
- package/dist/ai/docs/nocobase/api/database/shared/update-options.md +24 -0
- package/dist/ai/docs/nocobase/api/database/shared.md +8 -0
- package/dist/ai/docs/nocobase/api/flow-engine/data-source-manager.md +1 -0
- package/dist/ai/docs/nocobase/api/flow-engine/flow-context.md +176 -0
- package/dist/ai/docs/nocobase/api/flow-engine/flow-engine.md +6 -0
- package/dist/ai/docs/nocobase/api/flow-engine/flow-model.md +7 -0
- package/dist/ai/docs/nocobase/api/flow-engine/flow-resource.md +1 -0
- package/dist/ai/docs/nocobase/api/flow-engine/resource.md +384 -0
- package/dist/ai/docs/nocobase/api/index.md +4 -0
- package/dist/ai/docs/nocobase/api/logger/logger.md +165 -0
- package/dist/ai/docs/nocobase/api/sdk/auth.md +70 -0
- package/dist/ai/docs/nocobase/api/sdk/index.md +151 -0
- package/dist/ai/docs/nocobase/api/sdk/storage.md +54 -0
- package/dist/ai/docs/nocobase/api/server/app-command.md +9 -0
- package/dist/ai/docs/nocobase/api/server/application.md +1 -0
- package/dist/ai/docs/nocobase/api/server/audit-manager.md +141 -0
- package/dist/ai/docs/nocobase/api/server/context.md +17 -0
- package/dist/ai/docs/nocobase/api/server/migration.md +305 -0
- package/dist/ai/docs/nocobase/api/server/plugin.md +13 -0
- package/dist/ai/docs/nocobase/api/telemetry/metric.md +105 -0
- package/dist/ai/docs/nocobase/api/telemetry/telemetry.md +67 -0
- package/dist/ai/docs/nocobase/api/telemetry/trace.md +91 -0
- package/dist/ai/docs/nocobase/auth-verification/2fa/index.md +50 -0
- package/dist/ai/docs/nocobase/auth-verification/api-keys/index.md +44 -0
- package/dist/ai/docs/nocobase/auth-verification/auth/authenticators.md +35 -0
- package/dist/ai/docs/nocobase/auth-verification/auth/dev/api.md +112 -0
- package/dist/ai/docs/nocobase/auth-verification/auth/dev/index.md +193 -0
- package/dist/ai/docs/nocobase/auth-verification/auth/index.md +20 -0
- package/dist/ai/docs/nocobase/auth-verification/auth/password.md +127 -0
- package/dist/ai/docs/nocobase/auth-verification/auth-cas/index.md +44 -0
- package/dist/ai/docs/nocobase/auth-verification/auth-dingtalk/index.md +72 -0
- package/dist/ai/docs/nocobase/auth-verification/auth-ldap/index.md +59 -0
- package/dist/ai/docs/nocobase/auth-verification/auth-oidc/examples/google.md +27 -0
- package/dist/ai/docs/nocobase/auth-verification/auth-oidc/examples/microsoft.md +50 -0
- package/dist/ai/docs/nocobase/auth-verification/auth-oidc/index.md +96 -0
- package/dist/ai/docs/nocobase/auth-verification/auth-saml/examples/google.md +49 -0
- package/dist/ai/docs/nocobase/auth-verification/auth-saml/index.md +67 -0
- package/dist/ai/docs/nocobase/auth-verification/auth-sms/index.md +60 -0
- package/dist/ai/docs/nocobase/auth-verification/auth-wecom/index.md +144 -0
- package/dist/ai/docs/nocobase/auth-verification/index.md +1 -0
- package/dist/ai/docs/nocobase/auth-verification/verification/dev/api.md +63 -0
- package/dist/ai/docs/nocobase/auth-verification/verification/dev/scene.md +13 -0
- package/dist/ai/docs/nocobase/auth-verification/verification/dev/sms-type.md +95 -0
- package/dist/ai/docs/nocobase/auth-verification/verification/dev/type.md +11 -0
- package/dist/ai/docs/nocobase/auth-verification/verification/index.md +37 -0
- package/dist/ai/docs/nocobase/auth-verification/verification/sms.md +71 -0
- package/dist/ai/docs/nocobase/auth-verification/verification-totp/index.md +48 -0
- package/dist/ai/docs/nocobase/calculation-engine/formula.md +323 -0
- package/dist/ai/docs/nocobase/calculation-engine/index.md +30 -0
- package/dist/ai/docs/nocobase/calculation-engine/math.md +298 -0
- package/dist/ai/docs/nocobase/changelog/2.1.0-beta-24.md +134 -0
- package/dist/ai/docs/nocobase/cluster-mode/development.md +141 -0
- package/dist/ai/docs/nocobase/cluster-mode/index.md +36 -0
- package/dist/ai/docs/nocobase/cluster-mode/kubernetes.md +386 -0
- package/dist/ai/docs/nocobase/cluster-mode/operations.md +63 -0
- package/dist/ai/docs/nocobase/cluster-mode/preparations.md +164 -0
- package/dist/ai/docs/nocobase/cluster-mode/services-splitting.md +85 -0
- package/dist/ai/docs/nocobase/data-sources/calendar/calendar-collection.md +14 -0
- package/dist/ai/docs/nocobase/data-sources/calendar/index.md +111 -0
- package/dist/ai/docs/nocobase/data-sources/collection-comment/index.md +66 -0
- package/dist/ai/docs/nocobase/data-sources/collection-expression/collection.md +23 -0
- package/dist/ai/docs/nocobase/data-sources/collection-fdw/enable-federated.md +40 -0
- package/dist/ai/docs/nocobase/data-sources/collection-fdw/index.md +72 -0
- package/dist/ai/docs/nocobase/data-sources/collection-sql/index.md +58 -0
- package/dist/ai/docs/nocobase/data-sources/collection-tree/index.md +18 -0
- package/dist/ai/docs/nocobase/data-sources/collection-view/index.md +12 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/advanced/china-region.md +11 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/advanced/collection-select.md +11 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/advanced/json.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/advanced/nano-id.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/advanced/snowflake-id.md +9 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/advanced/sort.md +21 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/advanced/uuid.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/associations/index.md +12 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/associations/m2m/index.md +54 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/associations/m2o/index.md +42 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/associations/o2m/index.md +46 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/associations/o2o/index.md +70 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/color.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/email.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/icon.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/input.md +22 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/integer.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/number.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/password.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/percent.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/phone.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/textarea.md +22 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/basic/url.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/choices/checkbox-group.md +9 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/choices/checkbox.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/choices/china-region.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/choices/multiple-select.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/choices/radio-group.md +9 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/choices/select.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/datetime/date.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/datetime/datetime-without-tz.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/datetime/datetime.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/datetime/index.md +72 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/datetime/time.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/datetime/unix-timestamp.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/geometric/circle.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/geometric/line.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/geometric/point.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/geometric/polygon.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/index.md +36 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/media/field-attachment.md +21 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/media/markdown.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/media/rich-text.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/system-info/created-at.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/system-info/created-by.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/system-info/space.md +17 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/system-info/table-oid.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/system-info/updated-at.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/system-info/updated-by.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection-fields/validation.md +115 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/collection.md +19 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/data-source.md +1 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/index.md +53 -0
- package/dist/ai/docs/nocobase/data-sources/data-modeling/main-vs-external-data-sources.md +165 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-external-mariadb/index.md +18 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-external-mssql/index.md +18 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-external-mysql/index.md +18 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-external-oracle/index.md +40 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-external-postgres/index.md +18 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-kingbase/index.md +121 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-main/general-collection.md +30 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-main/index.md +100 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-main/inheritance-collection.md +22 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-manager/external-database.md +101 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-manager/index.md +42 -0
- package/dist/ai/docs/nocobase/data-sources/data-source-rest-api/index.md +283 -0
- package/dist/ai/docs/nocobase/data-sources/development/index.md +6 -0
- package/dist/ai/docs/nocobase/data-sources/field-attachment-url/index.md +27 -0
- package/dist/ai/docs/nocobase/data-sources/field-china-region/index.md +19 -0
- package/dist/ai/docs/nocobase/data-sources/field-encryption/index.md +100 -0
- package/dist/ai/docs/nocobase/data-sources/field-formula/index.md +17 -0
- package/dist/ai/docs/nocobase/data-sources/field-m2m-array/index.md +46 -0
- package/dist/ai/docs/nocobase/data-sources/field-markdown-vditor/index.md +13 -0
- package/dist/ai/docs/nocobase/data-sources/field-sequence/index.md +17 -0
- package/dist/ai/docs/nocobase/data-sources/field-signature/index.md +36 -0
- package/dist/ai/docs/nocobase/data-sources/field-sort/index.md +163 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/development/index.md +138 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/field-attachment.md +19 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/file-collection.md +40 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/http-api.md +195 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/index.md +37 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/storage/aliyun-oss.md +33 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/storage/amazon-s3.md +10 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/storage/index.md +61 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/storage/local.md +20 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/storage/s3-pro.md +383 -0
- package/dist/ai/docs/nocobase/data-sources/file-manager/storage/tencent-cos.md +33 -0
- package/dist/ai/docs/nocobase/data-sources/graph-collection-manager/index.md +22 -0
- package/dist/ai/docs/nocobase/data-sources/index.md +53 -0
- package/dist/ai/docs/nocobase/data-visualization/best-practices.md +3 -0
- package/dist/ai/docs/nocobase/data-visualization/faq.md +30 -0
- package/dist/ai/docs/nocobase/data-visualization/guide/chart-events.md +80 -0
- package/dist/ai/docs/nocobase/data-visualization/guide/chart-options.md +100 -0
- package/dist/ai/docs/nocobase/data-visualization/guide/context-variables.md +28 -0
- package/dist/ai/docs/nocobase/data-visualization/guide/custom-chart-options.md +172 -0
- package/dist/ai/docs/nocobase/data-visualization/guide/data-query.md +95 -0
- package/dist/ai/docs/nocobase/data-visualization/guide/filters-and-linkage.md +23 -0
- package/dist/ai/docs/nocobase/data-visualization/guide/preview-and-save.md +36 -0
- package/dist/ai/docs/nocobase/data-visualization/guide/sql-data-query.md +76 -0
- package/dist/ai/docs/nocobase/data-visualization/index.md +26 -0
- package/dist/ai/docs/nocobase/data-visualization/quick-start.md +95 -0
- package/dist/ai/docs/nocobase/database/index.md +5 -0
- package/dist/ai/docs/nocobase/development/index.md +49 -0
- package/dist/ai/docs/nocobase/email-manager/advanced/auto-save-draft.md +17 -0
- package/dist/ai/docs/nocobase/email-manager/advanced/batch-send.md +40 -0
- package/dist/ai/docs/nocobase/email-manager/advanced/label.md +18 -0
- package/dist/ai/docs/nocobase/email-manager/advanced/note.md +14 -0
- package/dist/ai/docs/nocobase/email-manager/advanced/todo.md +13 -0
- package/dist/ai/docs/nocobase/email-manager/configuration/faq.md +39 -0
- package/dist/ai/docs/nocobase/email-manager/configuration/gmail.md +198 -0
- package/dist/ai/docs/nocobase/email-manager/configuration/guide.md +56 -0
- package/dist/ai/docs/nocobase/email-manager/configuration/outlook.md +106 -0
- package/dist/ai/docs/nocobase/email-manager/index.md +11 -0
- package/dist/ai/docs/nocobase/email-manager/usage/alias.md +34 -0
- package/dist/ai/docs/nocobase/email-manager/usage/configuration.md +101 -0
- package/dist/ai/docs/nocobase/email-manager/usage/guide.md +100 -0
- package/dist/ai/docs/nocobase/email-manager/usage/signature.md +25 -0
- package/dist/ai/docs/nocobase/email-manager/usage/template.md +25 -0
- package/dist/ai/docs/nocobase/file-manager/development/index.md +172 -0
- package/dist/ai/docs/nocobase/file-manager/field-attachment.md +21 -0
- package/dist/ai/docs/nocobase/file-manager/file-collection.md +34 -0
- package/dist/ai/docs/nocobase/file-manager/file-preview/index.md +11 -0
- package/dist/ai/docs/nocobase/file-manager/file-preview/ms-office.md +60 -0
- package/dist/ai/docs/nocobase/file-manager/http-api.md +188 -0
- package/dist/ai/docs/nocobase/file-manager/index.md +18 -0
- package/dist/ai/docs/nocobase/file-manager/storage/aliyun-oss.md +37 -0
- package/dist/ai/docs/nocobase/file-manager/storage/amazon-s3.md +33 -0
- package/dist/ai/docs/nocobase/file-manager/storage/index.md +69 -0
- package/dist/ai/docs/nocobase/file-manager/storage/local.md +20 -0
- package/dist/ai/docs/nocobase/file-manager/storage/s3-pro.md +387 -0
- package/dist/ai/docs/nocobase/file-manager/storage/tencent-cos.md +33 -0
- package/dist/ai/docs/nocobase/flow-engine/add-sub-model.md +174 -0
- package/dist/ai/docs/nocobase/flow-engine/create-flow-model.md +89 -0
- package/dist/ai/docs/nocobase/flow-engine/create-mock-client.md +85 -0
- package/dist/ai/docs/nocobase/flow-engine/definitions/action-definition.md +495 -0
- package/dist/ai/docs/nocobase/flow-engine/definitions/event-definition.md +461 -0
- package/dist/ai/docs/nocobase/flow-engine/definitions/flow-definition.md +259 -0
- package/dist/ai/docs/nocobase/flow-engine/definitions/model-definition.md +397 -0
- package/dist/ai/docs/nocobase/flow-engine/definitions/step-definition.md +403 -0
- package/dist/ai/docs/nocobase/flow-engine/event-flow.md +94 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-context.md +90 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-definition.md +5 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-engine-and-plugins.md +80 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-model-lifecycle.md +48 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-model-options.md +1 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-model-renderer.md +200 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-model-repository.md +81 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-model-settings.md +101 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-model-usage.md +1 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-model-vs-react-component.md +74 -0
- package/dist/ai/docs/nocobase/flow-engine/flow-model.md +45 -0
- package/dist/ai/docs/nocobase/flow-engine/index.md +59 -0
- package/dist/ai/docs/nocobase/flow-engine/js-model/js-action.md +1 -0
- package/dist/ai/docs/nocobase/flow-engine/js-model/js-block.md +2 -0
- package/dist/ai/docs/nocobase/flow-engine/js-model/js-column.md +1 -0
- package/dist/ai/docs/nocobase/flow-engine/js-model/js-field.md +1 -0
- package/dist/ai/docs/nocobase/flow-engine/js-model/js-item.md +1 -0
- package/dist/ai/docs/nocobase/flow-engine/learning-roadmap.md +3 -0
- package/dist/ai/docs/nocobase/flow-engine/model-definition.md +63 -0
- package/dist/ai/docs/nocobase/flow-engine/observable.md +50 -0
- package/dist/ai/docs/nocobase/flow-engine/quickstart.md +310 -0
- package/dist/ai/docs/nocobase/flow-engine/register-flow-model.md +42 -0
- package/dist/ai/docs/nocobase/flow-engine/runjs-extension-points.md +249 -0
- package/dist/ai/docs/nocobase/flow-engine/ui-schema.md +272 -0
- package/dist/ai/docs/nocobase/flow-engine/uischema.md +9 -0
- package/dist/ai/docs/nocobase/flow-engine/what-is-flow-engine.md +59 -0
- package/dist/ai/docs/nocobase/get-started/deployment/cluster.md +5 -0
- package/dist/ai/docs/nocobase/get-started/deployment/common-commands/docker-compose.md +1 -0
- package/dist/ai/docs/nocobase/get-started/deployment/common-commands/pm2.md +1 -0
- package/dist/ai/docs/nocobase/get-started/deployment/internal.md +1 -0
- package/dist/ai/docs/nocobase/get-started/deployment/intranet/create-nocobase-app.mdx +386 -0
- package/dist/ai/docs/nocobase/get-started/deployment/intranet/docker.mdx +5 -0
- package/dist/ai/docs/nocobase/get-started/deployment/production.md +42 -0
- package/dist/ai/docs/nocobase/get-started/deployment/static-resource-proxy/caddy.md +1 -0
- package/dist/ai/docs/nocobase/get-started/deployment/static-resource-proxy/cdn.md +1 -0
- package/dist/ai/docs/nocobase/get-started/deployment/static-resource-proxy/nginx.md +1 -0
- package/dist/ai/docs/nocobase/get-started/how-nocobase-works.mdx +6 -0
- package/dist/ai/docs/nocobase/get-started/install-upgrade-plugins.mdx +89 -0
- package/dist/ai/docs/nocobase/get-started/installation/create-nocobase-app.mdx +230 -0
- package/dist/ai/docs/nocobase/get-started/installation/docker.mdx +620 -0
- package/dist/ai/docs/nocobase/get-started/installation/env.md +479 -0
- package/dist/ai/docs/nocobase/get-started/installation/git.mdx +112 -0
- package/dist/ai/docs/nocobase/get-started/quickstart.md +58 -0
- package/dist/ai/docs/nocobase/get-started/system-requirements.md +88 -0
- package/dist/ai/docs/nocobase/get-started/translations.md +329 -0
- package/dist/ai/docs/nocobase/get-started/upgrading/create-nocobase-app.md +53 -0
- package/dist/ai/docs/nocobase/get-started/upgrading/docker.md +76 -0
- package/dist/ai/docs/nocobase/get-started/upgrading/git.md +61 -0
- package/dist/ai/docs/nocobase/guide/index.md +109 -0
- package/dist/ai/docs/nocobase/index.md +75 -0
- package/dist/ai/docs/nocobase/integration/api-doc/index.md +59 -0
- package/dist/ai/docs/nocobase/integration/api-keys/index.md +42 -0
- package/dist/ai/docs/nocobase/integration/api-keys/usage.md +291 -0
- package/dist/ai/docs/nocobase/integration/block-iframe/index.md +291 -0
- package/dist/ai/docs/nocobase/integration/embed/index.md +30 -0
- package/dist/ai/docs/nocobase/integration/fdw/enable-federated.md +39 -0
- package/dist/ai/docs/nocobase/integration/fdw/index.md +66 -0
- package/dist/ai/docs/nocobase/integration/index.md +85 -0
- package/dist/ai/docs/nocobase/integration/sso/index.md +135 -0
- package/dist/ai/docs/nocobase/integration/workflow-http-request/index.md +325 -0
- package/dist/ai/docs/nocobase/integration/workflow-webhook/index.md +248 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/action-settings/assign-values.md +39 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/action-settings/bind-workflow.md +43 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/action-settings/double-check.md +18 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/action-settings/edit-button.md +21 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/action-settings/edit-popup.md +33 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/action-settings/linkage-rule.md +65 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/index.md +43 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/permission.md +79 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/add-child.md +9 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/add-new.md +22 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/ai-employee.md +1 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/bulk-edit.md +54 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/bulk-update.md +40 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/custom-request.md +37 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/delete.md +20 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/duplicate.md +95 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/edit.md +25 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/export-attachments.md +46 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/export-pro.md +93 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/export.md +36 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/filter.md +34 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/import-pro.md +136 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/import.md +237 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/js-action.md +97 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/js-item.md +170 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/link.md +32 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/pop-up.md +25 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/refresh.md +4 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/submit.md +29 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/trigger-workflow.md +1 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/update-record.md +39 -0
- package/dist/ai/docs/nocobase/interface-builder/actions/types/view.md +19 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/block-settings/block-delete.md +8 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/block-settings/block-height.md +41 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/block-settings/block-layout.md +39 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/block-settings/block-linkage-rule.md +37 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/block-settings/block-title.md +8 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/block-settings/data-loading-method.md +15 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/block-settings/data-scope.md +43 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/block-settings/drag-sort.md +45 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/block-settings/field-linkage-rule.md +57 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/block-settings/sorting-rule.md +30 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/data-blocks/calendar.md +129 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/data-blocks/chart.md +17 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/data-blocks/details.md +100 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/data-blocks/form.md +87 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/data-blocks/grid-card.md +87 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/data-blocks/kanban.md +141 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/data-blocks/list.md +91 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/data-blocks/table.md +159 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/filter-blocks/form.md +99 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/filter-blocks/tree.md +57 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/index.md +85 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/other-blocks/action-panel.md +41 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/other-blocks/iframe.md +195 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/other-blocks/js-block.md +113 -0
- package/dist/ai/docs/nocobase/interface-builder/blocks/other-blocks/markdown.md +67 -0
- package/dist/ai/docs/nocobase/interface-builder/event-flow.md +261 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/association-field.md +75 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/data-scope.md +48 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/default-value.md +120 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/edit-description.md +16 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/edit-title.md +12 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/edit-tooltip.md +16 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/field-component.md +27 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/number-format.md +32 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/pattern.md +52 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/required.md +35 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/show-label.md +14 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/title-field.md +28 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/field-settings/validation-rules.md +48 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/generic/detail-form-item.md +68 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/generic/filter-form-item.md +29 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/generic/form-item.md +57 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/generic/table-column.md +92 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/index.md +38 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/cascade-select.md +42 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/date-picker.md +30 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/file-manager.md +14 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/js-column.md +98 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/js-field.md +139 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/js-item.md +91 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/picker.md +35 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/select.md +65 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/sub-detail.md +39 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/sub-form.md +42 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/sub-table-popup.md +64 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/sub-table.md +56 -0
- package/dist/ai/docs/nocobase/interface-builder/fields/specific/title.md +52 -0
- package/dist/ai/docs/nocobase/interface-builder/form-drafts.md +19 -0
- package/dist/ai/docs/nocobase/interface-builder/index.md +58 -0
- package/dist/ai/docs/nocobase/interface-builder/linkage-rule.md +118 -0
- package/dist/ai/docs/nocobase/interface-builder/runjs.md +71 -0
- package/dist/ai/docs/nocobase/interface-builder/ui-templates.md +167 -0
- package/dist/ai/docs/nocobase/interface-builder/variables.md +267 -0
- package/dist/ai/docs/nocobase/log-and-monitor/logger/index.md +152 -0
- package/dist/ai/docs/nocobase/log-and-monitor/logger/overview.md +44 -0
- package/dist/ai/docs/nocobase/log-and-monitor/telemetry/exporter-http.md +23 -0
- package/dist/ai/docs/nocobase/log-and-monitor/telemetry/exporter-prometheus.md +55 -0
- package/dist/ai/docs/nocobase/log-and-monitor/telemetry/index.md +67 -0
- package/dist/ai/docs/nocobase/multi-app/multi-app/index.md +66 -0
- package/dist/ai/docs/nocobase/multi-app/multi-app/local.md +106 -0
- package/dist/ai/docs/nocobase/multi-app/multi-app/remote.md +232 -0
- package/dist/ai/docs/nocobase/multi-app/multi-space/index.md +132 -0
- package/dist/ai/docs/nocobase/notification-manager/development/api.md +152 -0
- package/dist/ai/docs/nocobase/notification-manager/development/extension.md +300 -0
- package/dist/ai/docs/nocobase/notification-manager/index.md +43 -0
- package/dist/ai/docs/nocobase/notification-manager/notification-email/index.md +32 -0
- package/dist/ai/docs/nocobase/notification-manager/notification-in-app-message/index.md +60 -0
- package/dist/ai/docs/nocobase/notification-manager/wecom/index.md +34 -0
- package/dist/ai/docs/nocobase/ops-management/backup-manager/index.mdx +191 -0
- package/dist/ai/docs/nocobase/ops-management/migration-manager/index.md +197 -0
- package/dist/ai/docs/nocobase/ops-management/release-management/index.md +52 -0
- package/dist/ai/docs/nocobase/ops-management/variables-and-secrets/index.md +271 -0
- package/dist/ai/docs/nocobase/plugin-development/ai-development.md +7 -0
- package/dist/ai/docs/nocobase/plugin-development/build.md +86 -0
- package/dist/ai/docs/nocobase/plugin-development/client/acl.md +13 -0
- package/dist/ai/docs/nocobase/plugin-development/client/appendix/cheatsheet.md +108 -0
- package/dist/ai/docs/nocobase/plugin-development/client/appendix/faq.md +297 -0
- package/dist/ai/docs/nocobase/plugin-development/client/component/i18n.md +186 -0
- package/dist/ai/docs/nocobase/plugin-development/client/component/index.md +260 -0
- package/dist/ai/docs/nocobase/plugin-development/client/component/styles-themes.md +279 -0
- package/dist/ai/docs/nocobase/plugin-development/client/component-vs-flow-model.md +135 -0
- package/dist/ai/docs/nocobase/plugin-development/client/context.md +8 -0
- package/dist/ai/docs/nocobase/plugin-development/client/ctx/common-capabilities.md +492 -0
- package/dist/ai/docs/nocobase/plugin-development/client/ctx/index.md +112 -0
- package/dist/ai/docs/nocobase/plugin-development/client/ctx/what-is-context.md +9 -0
- package/dist/ai/docs/nocobase/plugin-development/client/data-source-manager.md +8 -0
- package/dist/ai/docs/nocobase/plugin-development/client/examples/custom-action.md +274 -0
- package/dist/ai/docs/nocobase/plugin-development/client/examples/custom-block.md +201 -0
- package/dist/ai/docs/nocobase/plugin-development/client/examples/custom-field.md +171 -0
- package/dist/ai/docs/nocobase/plugin-development/client/examples/fullstack-plugin.md +514 -0
- package/dist/ai/docs/nocobase/plugin-development/client/examples/index.md +31 -0
- package/dist/ai/docs/nocobase/plugin-development/client/examples/settings-page.md +406 -0
- package/dist/ai/docs/nocobase/plugin-development/client/flow-engine/action.md +134 -0
- package/dist/ai/docs/nocobase/plugin-development/client/flow-engine/block.md +197 -0
- package/dist/ai/docs/nocobase/plugin-development/client/flow-engine/field.md +79 -0
- package/dist/ai/docs/nocobase/plugin-development/client/flow-engine/index.md +245 -0
- package/dist/ai/docs/nocobase/plugin-development/client/i18n.md +57 -0
- package/dist/ai/docs/nocobase/plugin-development/client/index.md +58 -0
- package/dist/ai/docs/nocobase/plugin-development/client/logger.md +128 -0
- package/dist/ai/docs/nocobase/plugin-development/client/plugin.md +133 -0
- package/dist/ai/docs/nocobase/plugin-development/client/request.md +174 -0
- package/dist/ai/docs/nocobase/plugin-development/client/resource.md +8 -0
- package/dist/ai/docs/nocobase/plugin-development/client/router.md +244 -0
- package/dist/ai/docs/nocobase/plugin-development/client/test.md +14 -0
- package/dist/ai/docs/nocobase/plugin-development/common/i18n.md +135 -0
- package/dist/ai/docs/nocobase/plugin-development/dependency-management.md +136 -0
- package/dist/ai/docs/nocobase/plugin-development/index.md +97 -0
- package/dist/ai/docs/nocobase/plugin-development/languages.md +123 -0
- package/dist/ai/docs/nocobase/plugin-development/lifecycle.md +12 -0
- package/dist/ai/docs/nocobase/plugin-development/plugin-upgrade-guide.md +2 -0
- package/dist/ai/docs/nocobase/plugin-development/project-structure.md +122 -0
- package/dist/ai/docs/nocobase/plugin-development/server/acl.md +188 -0
- package/dist/ai/docs/nocobase/plugin-development/server/app.md +15 -0
- package/dist/ai/docs/nocobase/plugin-development/server/cache.md +238 -0
- package/dist/ai/docs/nocobase/plugin-development/server/collection-options.md +1470 -0
- package/dist/ai/docs/nocobase/plugin-development/server/collections.md +230 -0
- package/dist/ai/docs/nocobase/plugin-development/server/command.md +164 -0
- package/dist/ai/docs/nocobase/plugin-development/server/context.md +138 -0
- package/dist/ai/docs/nocobase/plugin-development/server/cron-job-manager.md +101 -0
- package/dist/ai/docs/nocobase/plugin-development/server/data-source-manager.md +83 -0
- package/dist/ai/docs/nocobase/plugin-development/server/database.md +135 -0
- package/dist/ai/docs/nocobase/plugin-development/server/event.md +117 -0
- package/dist/ai/docs/nocobase/plugin-development/server/i18n.md +145 -0
- package/dist/ai/docs/nocobase/plugin-development/server/index.md +37 -0
- package/dist/ai/docs/nocobase/plugin-development/server/logger.md +120 -0
- package/dist/ai/docs/nocobase/plugin-development/server/middleware.md +163 -0
- package/dist/ai/docs/nocobase/plugin-development/server/migration.md +213 -0
- package/dist/ai/docs/nocobase/plugin-development/server/plugin.md +109 -0
- package/dist/ai/docs/nocobase/plugin-development/server/resource-manager.md +236 -0
- package/dist/ai/docs/nocobase/plugin-development/server/telemetry.md +118 -0
- package/dist/ai/docs/nocobase/plugin-development/server/test.md +226 -0
- package/dist/ai/docs/nocobase/plugin-development/write-your-first-plugin.md +161 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-acl/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-action-bulk-edit/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-action-bulk-update/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-action-custom-request/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-action-duplicate/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-action-export/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-action-export-pro/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-action-import/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-action-import-pro/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-action-print/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-action-template-print/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-ai/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-ai-gigachat/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-ai-knowledge-base/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-api-doc/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-api-keys/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-app-supervisor/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-async-task-manager/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-audit-logger/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-audit-logs/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-auth/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-auth-cas/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-auth-dingtalk/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-auth-ldap/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-auth-oidc/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-auth-saml/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-auth-sms/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-auth-wecom/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-backup-restore/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-backups/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-block-grid-card/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-block-iframe/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-block-list/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-block-markdown/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-block-multi-step-form/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-block-template/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-block-tree/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-block-workbench/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-calendar/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-charts/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-client/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-collection-fdw/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-collection-sql/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-collection-tree/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-comments/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-custom-brand/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-custom-variables/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-external-clickhouse/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-external-doris/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-external-mariadb/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-external-mssql/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-external-mysql/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-external-oracle/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-external-postgres/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-kingbase/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-main/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-manager/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-source-rest-api/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-visualization/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-data-visualization-echarts/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-departments/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-email-manager/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-embed/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-environment-variables/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-error-handler/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-attachment-url/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-china-region/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-code/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-component-mask/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-encryption/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-formula/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-m2m-array/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-markdown-vditor/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-sequence/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-signature/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-field-sort/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-file-manager/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-file-previewer-office/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-file-storage-s3-pro/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-flow-engine/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-form-drafts/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-gantt/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-graph-collection-manager/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-ip-restriction/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-kanban/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-license/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-locale-tester/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-localization/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-lock-adapter-redis/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-logger/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-map/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-migration-manager/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-mobile/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-mobile-client/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-multi-app-manager/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-multi-app-share-collection/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-multi-keyword-filter/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-multi-space/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-notification-email/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-notification-in-app-message/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-notification-manager/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-password-policy/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-public-forms/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-pubsub-adapter-redis/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-queue-adapter-rabbitmq/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-queue-adapter-redis/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-record-history/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-request-encryption/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-snapshot-field/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-system-settings/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-telemetry/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-telemetry-prometheus/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-text-copy/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-theme-editor/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-two-factor-authentication/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-ui-schema-storage/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-ui-templates/index.md +14 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-user-data-sync/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-users/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-verification/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-verification-totp-authenticator/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workerid-allocator-redis/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-action-trigger/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-aggregate/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-approval/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-cc/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-custom-action-trigger/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-date-calculation/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-delay/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-dynamic-calculation/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-javascript/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-json-query/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-json-variable-mapping/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-loop/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-mailer/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-manual/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-notification/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-parallel/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-request/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-request-interceptor/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-response-message/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-sql/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-subflow/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-test/index.md +12 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-variable/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/plugin-workflow-webhook/index.md +15 -0
- package/dist/ai/docs/nocobase/plugins/@nocobase/preset-cluster/index.md +16 -0
- package/dist/ai/docs/nocobase/plugins/index.mdx +8 -0
- package/dist/ai/docs/nocobase/record-history/index.md +99 -0
- package/dist/ai/docs/nocobase/routes/index.md +65 -0
- package/dist/ai/docs/nocobase/runjs/context/block-model.md +90 -0
- package/dist/ai/docs/nocobase/runjs/context/collection-field.md +132 -0
- package/dist/ai/docs/nocobase/runjs/context/collection.md +100 -0
- package/dist/ai/docs/nocobase/runjs/context/data-source-manager.md +120 -0
- package/dist/ai/docs/nocobase/runjs/context/data-source.md +136 -0
- package/dist/ai/docs/nocobase/runjs/context/element.md +104 -0
- package/dist/ai/docs/nocobase/runjs/context/exit-all.md +96 -0
- package/dist/ai/docs/nocobase/runjs/context/exit.md +104 -0
- package/dist/ai/docs/nocobase/runjs/context/filter-manager.md +102 -0
- package/dist/ai/docs/nocobase/runjs/context/form.md +169 -0
- package/dist/ai/docs/nocobase/runjs/context/get-model.md +85 -0
- package/dist/ai/docs/nocobase/runjs/context/get-value.md +65 -0
- package/dist/ai/docs/nocobase/runjs/context/get-var.md +157 -0
- package/dist/ai/docs/nocobase/runjs/context/i18n.md +80 -0
- package/dist/ai/docs/nocobase/runjs/context/import-async.md +488 -0
- package/dist/ai/docs/nocobase/runjs/context/init-resource.md +74 -0
- package/dist/ai/docs/nocobase/runjs/context/libs.md +109 -0
- package/dist/ai/docs/nocobase/runjs/context/location.md +88 -0
- package/dist/ai/docs/nocobase/runjs/context/logger.md +85 -0
- package/dist/ai/docs/nocobase/runjs/context/make-resource.md +90 -0
- package/dist/ai/docs/nocobase/runjs/context/message.md +107 -0
- package/dist/ai/docs/nocobase/runjs/context/modal.md +115 -0
- package/dist/ai/docs/nocobase/runjs/context/model.md +85 -0
- package/dist/ai/docs/nocobase/runjs/context/notification.md +106 -0
- package/dist/ai/docs/nocobase/runjs/context/off.md +48 -0
- package/dist/ai/docs/nocobase/runjs/context/on.md +80 -0
- package/dist/ai/docs/nocobase/runjs/context/open-view.md +120 -0
- package/dist/ai/docs/nocobase/runjs/context/render.md +114 -0
- package/dist/ai/docs/nocobase/runjs/context/request.md +163 -0
- package/dist/ai/docs/nocobase/runjs/context/require-async.md +110 -0
- package/dist/ai/docs/nocobase/runjs/context/resource.md +92 -0
- package/dist/ai/docs/nocobase/runjs/context/route.md +76 -0
- package/dist/ai/docs/nocobase/runjs/context/router.md +111 -0
- package/dist/ai/docs/nocobase/runjs/context/set-value.md +73 -0
- package/dist/ai/docs/nocobase/runjs/context/sql.md +200 -0
- package/dist/ai/docs/nocobase/runjs/context/t.md +82 -0
- package/dist/ai/docs/nocobase/runjs/context/view.md +131 -0
- package/dist/ai/docs/nocobase/runjs/document.md +1 -0
- package/dist/ai/docs/nocobase/runjs/import-modules.md +110 -0
- package/dist/ai/docs/nocobase/runjs/index.md +65 -0
- package/dist/ai/docs/nocobase/runjs/jsx.md +84 -0
- package/dist/ai/docs/nocobase/runjs/model/form-block-model.md +1 -0
- package/dist/ai/docs/nocobase/runjs/render.md +64 -0
- package/dist/ai/docs/nocobase/runjs/resource/api-resource.md +155 -0
- package/dist/ai/docs/nocobase/runjs/resource/multi-record-resource.md +188 -0
- package/dist/ai/docs/nocobase/runjs/resource/single-record-resource.md +169 -0
- package/dist/ai/docs/nocobase/runjs/resource/sql-resource.md +170 -0
- package/dist/ai/docs/nocobase/runjs/window.md +20 -0
- package/dist/ai/docs/nocobase/security/audit-logger/index.md +101 -0
- package/dist/ai/docs/nocobase/security/guide.md +296 -0
- package/dist/ai/docs/nocobase/security/ip-restriction/index.md +56 -0
- package/dist/ai/docs/nocobase/security/password-policy/index.md +112 -0
- package/dist/ai/docs/nocobase/security/password-policy/lockout.md +26 -0
- package/dist/ai/docs/nocobase/security/token-policy/index.md +67 -0
- package/dist/ai/docs/nocobase/solution/crm/changelog.md +62 -0
- package/dist/ai/docs/nocobase/solution/crm/design.md +921 -0
- package/dist/ai/docs/nocobase/solution/crm/guide/guide-customers-emails.md +178 -0
- package/dist/ai/docs/nocobase/solution/crm/guide/guide-leads.md +238 -0
- package/dist/ai/docs/nocobase/solution/crm/guide/guide-opportunities.md +248 -0
- package/dist/ai/docs/nocobase/solution/crm/guide/guide-overview.md +210 -0
- package/dist/ai/docs/nocobase/solution/crm/guide/guide-products-orders.md +153 -0
- package/dist/ai/docs/nocobase/solution/crm/guide/guide-roles.md +131 -0
- package/dist/ai/docs/nocobase/solution/crm/guide/index.md +58 -0
- package/dist/ai/docs/nocobase/solution/crm/index.md +142 -0
- package/dist/ai/docs/nocobase/solution/crm/installation.md +160 -0
- package/dist/ai/docs/nocobase/solution/crm/more.md +5 -0
- package/dist/ai/docs/nocobase/solution/crm/v1.md +90 -0
- package/dist/ai/docs/nocobase/solution/ticket-system/changelog.md +30 -0
- package/dist/ai/docs/nocobase/solution/ticket-system/design.md +690 -0
- package/dist/ai/docs/nocobase/solution/ticket-system/index.md +177 -0
- package/dist/ai/docs/nocobase/solution/ticket-system/installation.md +133 -0
- package/dist/ai/docs/nocobase/solution/ticket-system/more.md +3 -0
- package/dist/ai/docs/nocobase/system-management/custom-brand/index.md +34 -0
- package/dist/ai/docs/nocobase/system-management/language-settings/index.md +13 -0
- package/dist/ai/docs/nocobase/system-management/localization/index.md +79 -0
- package/dist/ai/docs/nocobase/system-management/plugin-manager/index.md +14 -0
- package/dist/ai/docs/nocobase/system-management/system-settings/index.md +6 -0
- package/dist/ai/docs/nocobase/system-management/theme-editor/index.md +57 -0
- package/dist/ai/docs/nocobase/template-print/advanced/advanced-features.md +246 -0
- package/dist/ai/docs/nocobase/template-print/advanced/conditionals.md +431 -0
- package/dist/ai/docs/nocobase/template-print/configuration.md +76 -0
- package/dist/ai/docs/nocobase/template-print/faq.md +97 -0
- package/dist/ai/docs/nocobase/template-print/http-api.md +142 -0
- package/dist/ai/docs/nocobase/template-print/index.md +121 -0
- package/dist/ai/docs/nocobase/template-print/install.md +97 -0
- package/dist/ai/docs/nocobase/template-print/scenes.md +378 -0
- package/dist/ai/docs/nocobase/template-print/syntax/basic-usage.md +107 -0
- package/dist/ai/docs/nocobase/template-print/syntax/formatters/array-formatting.md +87 -0
- package/dist/ai/docs/nocobase/template-print/syntax/formatters/currency-formatting.md +47 -0
- package/dist/ai/docs/nocobase/template-print/syntax/formatters/date-formatting.md +187 -0
- package/dist/ai/docs/nocobase/template-print/syntax/formatters/index.md +108 -0
- package/dist/ai/docs/nocobase/template-print/syntax/formatters/media-field-formatting.md +35 -0
- package/dist/ai/docs/nocobase/template-print/syntax/formatters/number-formatting.md +203 -0
- package/dist/ai/docs/nocobase/template-print/syntax/formatters/text-formatting.md +333 -0
- package/dist/ai/docs/nocobase/template-print/syntax/formatters/time-interval-formatting.md +36 -0
- package/dist/ai/docs/nocobase/template-print/syntax/loops.md +451 -0
- package/dist/ai/docs/nocobase/tutorials/index.md +1 -0
- package/dist/ai/docs/nocobase/tutorials/v1/01-getting-started.md +187 -0
- package/dist/ai/docs/nocobase/tutorials/v1/02-designing-system.md +78 -0
- package/dist/ai/docs/nocobase/tutorials/v1/03-task-data.md +152 -0
- package/dist/ai/docs/nocobase/tutorials/v1/04-plugins.md +207 -0
- package/dist/ai/docs/nocobase/tutorials/v1/05-tabs-dynamic-blocks.md +135 -0
- package/dist/ai/docs/nocobase/tutorials/v1/06-user-permissions.md +190 -0
- package/dist/ai/docs/nocobase/tutorials/v1/07-workflow.md +159 -0
- package/dist/ai/docs/nocobase/tutorials/v1/08-project-overview.md +75 -0
- package/dist/ai/docs/nocobase/tutorials/v1/09-knowledge-base.md +198 -0
- package/dist/ai/docs/nocobase/tutorials/v1/10-dashboard-charts.md +234 -0
- package/dist/ai/docs/nocobase/tutorials/v1/11-dashboard-filters.md +176 -0
- package/dist/ai/docs/nocobase/tutorials/v1/12-subtasks-workhours.md +190 -0
- package/dist/ai/docs/nocobase/tutorials/v1/13-meeting-rooms.md +346 -0
- package/dist/ai/docs/nocobase/tutorials/v1/14-user-review.md +208 -0
- package/dist/ai/docs/nocobase/tutorials/v1/15-crm-lead-conversion.md +214 -0
- package/dist/ai/docs/nocobase/tutorials/v1/16-markdown-tips.md +121 -0
- package/dist/ai/docs/nocobase/tutorials/v1/17-crm-overview.md +136 -0
- package/dist/ai/docs/nocobase/tutorials/v1/18-lead-followup.md +253 -0
- package/dist/ai/docs/nocobase/tutorials/v1/19-crm-sales-cloud.md +42 -0
- package/dist/ai/docs/nocobase/tutorials/v1/20-api-keys.md +258 -0
- package/dist/ai/docs/nocobase/tutorials/v1/21-markdown-variables.md +231 -0
- package/dist/ai/docs/nocobase/tutorials/v1/22-deploy-faster.md +378 -0
- package/dist/ai/docs/nocobase/tutorials/v1/23-crm-pipeline.md +220 -0
- package/dist/ai/docs/nocobase/tutorials/v1/24-crm-demo-deploy.md +135 -0
- package/dist/ai/docs/nocobase/tutorials/v1/index.md +50 -0
- package/dist/ai/docs/nocobase/tutorials/v2/01-getting-started.md +176 -0
- package/dist/ai/docs/nocobase/tutorials/v2/02-data-modeling.md +319 -0
- package/dist/ai/docs/nocobase/tutorials/v2/03-building-pages.md +240 -0
- package/dist/ai/docs/nocobase/tutorials/v2/04-forms-and-details.md +279 -0
- package/dist/ai/docs/nocobase/tutorials/v2/05-roles-and-permissions.md +198 -0
- package/dist/ai/docs/nocobase/tutorials/v2/06-workflows.md +326 -0
- package/dist/ai/docs/nocobase/tutorials/v2/07-dashboard.md +270 -0
- package/dist/ai/docs/nocobase/tutorials/v2/index.md +93 -0
- package/dist/ai/docs/nocobase/ui-development-action/index.md +2 -0
- package/dist/ai/docs/nocobase/ui-development-action/write-an-action-plugin.md +0 -0
- package/dist/ai/docs/nocobase/ui-development-block/index.md +69 -0
- package/dist/ai/docs/nocobase/ui-development-block/write-a-block-plugin.md +116 -0
- package/dist/ai/docs/nocobase/ui-development-field/index.md +2 -0
- package/dist/ai/docs/nocobase/ui-development-field/write-a-field-plugin.md +0 -0
- package/dist/ai/docs/nocobase/users-permissions/acl/dev/permission-tab.md +68 -0
- package/dist/ai/docs/nocobase/users-permissions/acl/permissions.md +56 -0
- package/dist/ai/docs/nocobase/users-permissions/acl/role.md +43 -0
- package/dist/ai/docs/nocobase/users-permissions/acl/ui.md +239 -0
- package/dist/ai/docs/nocobase/users-permissions/acl/union.md +171 -0
- package/dist/ai/docs/nocobase/users-permissions/departments/index.md +106 -0
- package/dist/ai/docs/nocobase/users-permissions/departments/role.md +26 -0
- package/dist/ai/docs/nocobase/users-permissions/sync/dev/resource.md +63 -0
- package/dist/ai/docs/nocobase/users-permissions/sync/dev/source.md +146 -0
- package/dist/ai/docs/nocobase/users-permissions/sync/index.md +54 -0
- package/dist/ai/docs/nocobase/users-permissions/sync/sources/api.md +75 -0
- package/dist/ai/docs/nocobase/users-permissions/sync/sources/wecom.md +65 -0
- package/dist/ai/docs/nocobase/users-permissions/user.md +64 -0
- package/dist/ai/docs/nocobase/workflow/advanced/executions.md +66 -0
- package/dist/ai/docs/nocobase/workflow/advanced/options.md +33 -0
- package/dist/ai/docs/nocobase/workflow/advanced/revisions.md +25 -0
- package/dist/ai/docs/nocobase/workflow/advanced/variables.md +66 -0
- package/dist/ai/docs/nocobase/workflow/development/api.md +382 -0
- package/dist/ai/docs/nocobase/workflow/development/index.md +12 -0
- package/dist/ai/docs/nocobase/workflow/development/node.md +413 -0
- package/dist/ai/docs/nocobase/workflow/development/trigger.md +109 -0
- package/dist/ai/docs/nocobase/workflow/getting-started.md +123 -0
- package/dist/ai/docs/nocobase/workflow/index.md +43 -0
- package/dist/ai/docs/nocobase/workflow/nodes/aggregate.md +75 -0
- package/dist/ai/docs/nocobase/workflow/nodes/approval.md +172 -0
- package/dist/ai/docs/nocobase/workflow/nodes/calculation.md +45 -0
- package/dist/ai/docs/nocobase/workflow/nodes/cc.md +81 -0
- package/dist/ai/docs/nocobase/workflow/nodes/condition.md +41 -0
- package/dist/ai/docs/nocobase/workflow/nodes/create.md +49 -0
- package/dist/ai/docs/nocobase/workflow/nodes/date-calculation.md +138 -0
- package/dist/ai/docs/nocobase/workflow/nodes/delay.md +40 -0
- package/dist/ai/docs/nocobase/workflow/nodes/destroy.md +41 -0
- package/dist/ai/docs/nocobase/workflow/nodes/end.md +27 -0
- package/dist/ai/docs/nocobase/workflow/nodes/index.md +45 -0
- package/dist/ai/docs/nocobase/workflow/nodes/javascript.md +165 -0
- package/dist/ai/docs/nocobase/workflow/nodes/json-query.md +147 -0
- package/dist/ai/docs/nocobase/workflow/nodes/json-variable-mapping.md +85 -0
- package/dist/ai/docs/nocobase/workflow/nodes/loop.md +149 -0
- package/dist/ai/docs/nocobase/workflow/nodes/mailer.md +51 -0
- package/dist/ai/docs/nocobase/workflow/nodes/manual.md +247 -0
- package/dist/ai/docs/nocobase/workflow/nodes/multi-conditions.md +95 -0
- package/dist/ai/docs/nocobase/workflow/nodes/output.md +31 -0
- package/dist/ai/docs/nocobase/workflow/nodes/parallel.md +41 -0
- package/dist/ai/docs/nocobase/workflow/nodes/query.md +46 -0
- package/dist/ai/docs/nocobase/workflow/nodes/request.md +117 -0
- package/dist/ai/docs/nocobase/workflow/nodes/response-message.md +63 -0
- package/dist/ai/docs/nocobase/workflow/nodes/response.md +27 -0
- package/dist/ai/docs/nocobase/workflow/nodes/sql.md +94 -0
- package/dist/ai/docs/nocobase/workflow/nodes/subflow.md +67 -0
- package/dist/ai/docs/nocobase/workflow/nodes/update.md +52 -0
- package/dist/ai/docs/nocobase/workflow/nodes/variable.md +104 -0
- package/dist/ai/docs/nocobase/workflow/triggers/approval.md +355 -0
- package/dist/ai/docs/nocobase/workflow/triggers/collection.md +99 -0
- package/dist/ai/docs/nocobase/workflow/triggers/custom-action.md +228 -0
- package/dist/ai/docs/nocobase/workflow/triggers/index.md +26 -0
- package/dist/ai/docs/nocobase/workflow/triggers/post-action.md +213 -0
- package/dist/ai/docs/nocobase/workflow/triggers/pre-action.md +204 -0
- package/dist/ai/docs/nocobase/workflow/triggers/schedule.md +85 -0
- package/dist/ai/docs/nocobase/workflow/triggers/webhook.md +93 -0
- package/dist/ai/skills/document-search/SKILLS.md +95 -41
- package/dist/ai/tools/sub-agents/shared.js +3 -1
- package/dist/client/119.78774f3ad953af49.js +10 -0
- package/dist/client/228.a3df2921c8beb766.js +10 -0
- package/dist/client/343.6f36d97dd122c5b6.js +10 -0
- package/dist/client/559.c119db3f985a695f.js +10 -0
- package/dist/client/646.85a5f27994307223.js +10 -0
- package/dist/client/792.2e48eab4767d662a.js +10 -0
- package/dist/client/ai-employees/ai-coding/tools/context-tools.d.ts +4 -0
- package/dist/client/ai-employees/ai-coding/ui/CodeToolCard.d.ts +17 -0
- package/dist/client/ai-employees/types.d.ts +2 -0
- package/dist/client/index.js +5 -5
- package/dist/client/llm-providers/mimo/ModelSettings.d.ts +10 -0
- package/dist/client/llm-providers/mimo/index.d.ts +10 -0
- package/dist/collections/ai-employees.d.ts +7 -0
- package/dist/collections/ai-employees.js +13 -0
- package/dist/externalVersion.js +15 -15
- package/dist/locale/en-US.json +10 -2
- package/dist/locale/zh-CN.json +10 -2
- package/dist/node_modules/fs-extra/package.json +1 -1
- package/dist/node_modules/jsonrepair/package.json +1 -1
- package/dist/node_modules/just-bash/250.index.cjs.js +30 -0
- package/dist/node_modules/just-bash/417.index.cjs.js +19 -0
- package/dist/node_modules/just-bash/LICENSE +201 -0
- package/dist/node_modules/just-bash/dist/Bash.d.ts +229 -0
- package/dist/node_modules/just-bash/dist/ast/types.d.ts +609 -0
- package/dist/node_modules/just-bash/dist/banned-patterns-test.d.ts +1 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/alias-3GODYSFD.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/awk2-DB6QZAC5.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/base64-43M2R3GA.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/basename-KBUKWB2E.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/bash-6ZHZ6BX7.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/cat-XZIJZXKP.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chmod-N5CQATDW.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-22NDZXS5.js +33 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-26NO42TF.js +14 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-2HVFB2TU.js +287 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-3MBAUIBB.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-3Y32LPNT.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-4CFAYBLV.js +21 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-4OALHZXB.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-4PRVMER6.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-4VDEBYW7.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-54G6AE72.js +32 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-5G2VOPPJ.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-5WFYIUU2.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-6KZRLMG3.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-7ADG3DNO.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-7BORMNPQ.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-7G3MC56B.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-A5UGPLEI.js +21 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-AAW7UMPO.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-ARI4VLCN.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-AXWFPG37.js +10 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-AZ3RUDR2.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-BGGF3ELU.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-BYDV4VEF.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-CGE2EHYP.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-CM4532DS.js +36 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-CQG2HEAL.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-D5WP4CKS.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-DOXYBGNA.js +12 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-DU4S5MUI.js +13 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-EJQKHROT.js +14 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-EONWONZV.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-EPPBDXOG.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-EUXCM6C4.js +12 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-F3LGZXLQ.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-FA2CHD73.js +16 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-FLPVVSN5.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-FSZWFMB4.js +16 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-GO6FXSC4.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-GOJZHH3L.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-GTNBSMZR.js +23 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-IDGH4PGU.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-ITA43A73.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-JBABAK44.js +4 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-JDNI5HBX.js +33 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-JLX6YWGA.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-JQBC3FXE.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-JTF74J6E.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-KCMUAACL.js +19 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-KGOUQS5A.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-L6XUBS6H.js +84 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-LCDPWJBA.js +15 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-LGJM5YFT.js +17 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-LIYVQA3X.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-LJKIWB5F.js +4 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-LMK6G2HH.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-LOJMXC4F.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-LTL632J4.js +140 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-MAVV76T4.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-MO4RPBN2.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-MRP4ZCD7.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-N43DJTSI.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-NAX7MTAR.js +21 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-NSUMEERA.js +12 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-NTW6IA45.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-OBH7XN5N.js +1 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-OBI37ZY4.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-OOJCYVYF.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-ORUYSLP4.js +16 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-OXHVTSNH.js +74 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-PNI5NMXP.js +100 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-PPBQJBC2.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-PQNTKMH3.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-PS4LOXE5.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-PXVBSPBE.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-RA3TG4UK.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-RBQGQWGV.js +10 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-RJSAGJQJ.js +11 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-RLNOQILG.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-ROJPSS6N.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-RT7TRQVZ.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-S3QAKT3R.js +11 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-S7OHMN3F.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-SGA7Y45Z.js +17 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-SXRVLCZ4.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-TEFXEYX3.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-THALLNXT.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-TTNNO45C.js +17 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-UFJFAFSS.js +28 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-V7ZOPVQS.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-VNER2XXL.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-WLBA7L7U.js +23 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-WWZVR5NN.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-WXMBDX4P.js +14 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-XXCTETRW.js +11 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-XY5HGZW5.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-YEKSVVRC.js +11 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-YLE2OYY6.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-YMMJLYIX.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-YTIURC67.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-YU6OGPZR.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-YWZOGBFE.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-ZA4HUKJ3.js +13 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-ZKC5HQYO.js +14 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-ZSVBYEY4.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/chunk-ZUDPEMHG.js +63 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/clear-KRGKPFOI.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/column-XGV32UPN.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/comm-R3F3Z5DX.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/cp-XH2ZB7WT.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/curl-2DCNBIKJ.js +26 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/cut-5EY2XPXX.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/date-WUPBL2TL.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/diff-5NUI5BHG.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/dirname-5FAOMLBL.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/du-LDAPXSGF.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/echo-2MUAOGUE.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/env-NTPN5QYM.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/expand-26XPP5KB.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/expansion-QUT3FT7V.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/expr-G4EF4POQ.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/file-MMSHRWCJ.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/find-7CVMEZBO.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/flag-coverage-QMWFYZRC.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/fold-XSVNTAWH.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/grep-7BJ7HFBM.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/gzip-LHOO65AN.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/head-YMNRW3F3.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/help-DVG4AAGE.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/history-UUKG55YW.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/hostname-WY6RKE32.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/html-to-markdown-V6PK6S5U.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/join-Y4Q5WVVE.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/jq-DVZM2CEN.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/js-exec-RWEELTC2.js +97 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/js-exec-worker.js +4380 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/ln-EGC4HRXZ.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/ls-WONXDVOX.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/md5sum-NCLXV2S3.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/mkdir-Z47OISSR.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/mv-OY7X62QC.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/nl-XH3L75DR.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/od-52FBC34W.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/paste-3UVLMQ2K.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/printf-NA7DYZBO.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/pwd-6VBAPL3Y.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/python3-JUJKPBFB.js +12 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/readlink-BD5VFOC5.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/rev-UHEPS2UL.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/rg-DK6FRF6Q.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/rm-L3NZOLLG.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/rmdir-5KLM4EA6.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/sed-WWXBUNG3.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/seq-V7KBLSQ7.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/sha1sum-BHNJ5ALF.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/sha256sum-HJJ3NJ5L.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/sleep-ND6FZRZ4.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/sort-7GENYU2I.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/split-YWV64TJH.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/sqlite3-CVNFMP3Z.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/stat-XS2LXYS2.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/strings-XXKZCWY5.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/tac-T42SKDDI.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/tail-V537TDFR.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/tar-GTGFEWDS.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/tee-HK2SYCAR.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/time-5R4QWCYF.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/timeout-Z24MNWOP.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/touch-DWKSZGOQ.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/tr-4FPGAEVB.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/tree-HEKABARE.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/true-DP5UZP52.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/unexpand-OYZ7KOYR.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/uniq-TMSAIZM3.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/wc-ZIV3TFVG.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/which-5PO4LAOG.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/whoami-E7PN2UWC.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/worker.js +3136 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/xan-3G6YA5O6.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/xan-view-6J5MMMQB.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/xargs-SCYIFXOW.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/chunks/yq-CWUVVSHY.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/just-bash.js +754 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/alias-3GODYSFD.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/awk2-DB6QZAC5.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/base64-43M2R3GA.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/basename-KBUKWB2E.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/bash-6ZHZ6BX7.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/cat-XZIJZXKP.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chmod-N5CQATDW.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-22NDZXS5.js +33 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-26NO42TF.js +14 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-2HVFB2TU.js +287 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-3MBAUIBB.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-3Y32LPNT.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-4CFAYBLV.js +21 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-4OALHZXB.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-4PRVMER6.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-4VDEBYW7.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-54G6AE72.js +32 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-5G2VOPPJ.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-5WFYIUU2.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-6KZRLMG3.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-7ADG3DNO.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-7BORMNPQ.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-7G3MC56B.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-A5UGPLEI.js +21 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-AAW7UMPO.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-ARI4VLCN.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-AXWFPG37.js +10 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-AZ3RUDR2.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-BGGF3ELU.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-BYDV4VEF.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-CGE2EHYP.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-CM4532DS.js +36 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-CQG2HEAL.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-D5WP4CKS.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-DOXYBGNA.js +12 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-DU4S5MUI.js +13 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-EJQKHROT.js +14 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-EONWONZV.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-EPPBDXOG.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-EUXCM6C4.js +12 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-F3LGZXLQ.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-FA2CHD73.js +16 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-FLPVVSN5.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-FSZWFMB4.js +16 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-GO6FXSC4.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-GOJZHH3L.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-GTNBSMZR.js +23 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-HC7WB764.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-IDGH4PGU.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-ITA43A73.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-JBABAK44.js +4 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-JDNI5HBX.js +33 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-JLX6YWGA.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-JQBC3FXE.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-JTF74J6E.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-KCMUAACL.js +19 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-KGOUQS5A.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-L6XUBS6H.js +84 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-LCDPWJBA.js +15 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-LGJM5YFT.js +17 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-LIYVQA3X.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-LJKIWB5F.js +4 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-LMK6G2HH.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-LOJMXC4F.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-LTL632J4.js +140 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-MAVV76T4.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-MO4RPBN2.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-MRP4ZCD7.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-N43DJTSI.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-NAX7MTAR.js +21 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-NSUMEERA.js +12 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-NTW6IA45.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-OBH7XN5N.js +1 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-OBI37ZY4.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-OOJCYVYF.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-ORUYSLP4.js +16 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-OXHVTSNH.js +74 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-PNI5NMXP.js +100 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-PPBQJBC2.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-PQNTKMH3.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-PS4LOXE5.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-RA3TG4UK.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-RBQGQWGV.js +10 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-RJSAGJQJ.js +11 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-RLNOQILG.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-ROJPSS6N.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-RT7TRQVZ.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-S3QAKT3R.js +11 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-S7OHMN3F.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-SGA7Y45Z.js +17 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-SXRVLCZ4.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-TEFXEYX3.js +3 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-THALLNXT.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-TTNNO45C.js +17 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-UFJFAFSS.js +28 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-V7ZOPVQS.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-VNER2XXL.js +7 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-WLBA7L7U.js +23 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-WWZVR5NN.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-WXMBDX4P.js +14 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-XXCTETRW.js +11 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-XY5HGZW5.js +8 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-YEKSVVRC.js +11 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-YLE2OYY6.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-YMMJLYIX.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-YTIURC67.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-YU6OGPZR.js +5 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-YWZOGBFE.js +9 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-ZA4HUKJ3.js +13 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-ZKC5HQYO.js +14 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-ZSVBYEY4.js +6 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/chunk-ZUDPEMHG.js +63 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/clear-KRGKPFOI.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/column-XGV32UPN.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/comm-R3F3Z5DX.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/cp-XH2ZB7WT.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/curl-2DCNBIKJ.js +26 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/cut-5EY2XPXX.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/date-WUPBL2TL.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/diff-5NUI5BHG.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/dirname-5FAOMLBL.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/du-LDAPXSGF.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/echo-2MUAOGUE.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/env-NTPN5QYM.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/expand-26XPP5KB.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/expansion-QUT3FT7V.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/expr-G4EF4POQ.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/file-MMSHRWCJ.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/find-7CVMEZBO.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/flag-coverage-QMWFYZRC.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/fold-XSVNTAWH.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/grep-7BJ7HFBM.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/gzip-LHOO65AN.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/head-YMNRW3F3.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/help-DVG4AAGE.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/history-UUKG55YW.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/hostname-WY6RKE32.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/html-to-markdown-V6PK6S5U.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/join-Y4Q5WVVE.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/jq-DVZM2CEN.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/js-exec-AKWY6BP5.js +97 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/ln-EGC4HRXZ.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/ls-WONXDVOX.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/md5sum-NCLXV2S3.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/mkdir-Z47OISSR.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/mv-OY7X62QC.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/nl-XH3L75DR.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/od-52FBC34W.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/paste-3UVLMQ2K.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/printf-NA7DYZBO.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/pwd-6VBAPL3Y.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/python3-RRCCYJKA.js +12 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/readlink-BD5VFOC5.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/rev-UHEPS2UL.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/rg-DK6FRF6Q.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/rm-L3NZOLLG.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/rmdir-5KLM4EA6.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/sed-WWXBUNG3.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/seq-V7KBLSQ7.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/sha1sum-BHNJ5ALF.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/sha256sum-HJJ3NJ5L.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/sleep-ND6FZRZ4.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/sort-7GENYU2I.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/split-YWV64TJH.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/sqlite3-CVNFMP3Z.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/stat-XS2LXYS2.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/strings-XXKZCWY5.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/tac-T42SKDDI.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/tail-V537TDFR.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/tar-GTGFEWDS.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/tee-HK2SYCAR.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/time-5R4QWCYF.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/timeout-Z24MNWOP.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/touch-DWKSZGOQ.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/tr-4FPGAEVB.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/tree-HEKABARE.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/true-DP5UZP52.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/unexpand-OYZ7KOYR.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/uniq-TMSAIZM3.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/wc-ZIV3TFVG.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/which-5PO4LAOG.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/whoami-E7PN2UWC.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/xan-3G6YA5O6.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/xan-view-6J5MMMQB.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/xargs-SCYIFXOW.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/chunks/yq-CWUVVSHY.js +2 -0
- package/dist/node_modules/just-bash/dist/bin/shell/shell.js +733 -0
- package/dist/node_modules/just-bash/dist/browser.d.ts +23 -0
- package/dist/node_modules/just-bash/dist/bundle/browser.js +1513 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/alias-JE7RI5QX.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/awk2-RRKCSTJR.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/base64-4YMZCVJ5.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/basename-AA2KJYZQ.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/bash-IJWYRKFO.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/cat-RDUMLXKC.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chmod-SYMGL4JA.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-24IMIIXA.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-3THT3N7L.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-3ZUFRYJ4.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-43RSSTFA.js +73 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-44UOCSGV.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-4GTNDTRF.js +7 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-4HHKTUW3.js +2 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-4Q4SM6WR.js +4 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-55VFSPNA.js +2 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-5PYKJV42.js +4 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-5QMZ5MUS.js +4 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-5QVNJEHU.js +8 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-5V6VZH6T.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-62RKD26F.js +20 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-64BAICW3.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-74CEPOFO.js +22 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-75FNCC7W.js +286 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-7L36YK2X.js +2 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-7TSDKFEO.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-A4HU7SVR.js +2 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-A4JSPFCI.js +6 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-A5O5YHGN.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-A65PWWJC.js +2 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-A7A2DBEE.js +6 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-A7ICOL4V.js +13 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-ALLTKNUZ.js +5 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-APT7OOP2.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-B53Y5JFV.js +8 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-BAQA74XA.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-CWQS3NFK.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-D4J545R4.js +11 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-D6CWQ5DW.js +5 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-D7MEQ3VN.js +4 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-DBKNVD4L.js +9 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-DCAAORBQ.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-DXB73IDG.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-EEXR5ZDP.js +2 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-EIZGF4BS.js +8 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-F23WWYKW.js +16 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-GCTKCWKD.js +3 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-GFQRA5P5.js +7 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-GJTDUJ5Q.js +10 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-GOV5EKKI.js +9 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-GXVXFKBA.js +5 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-HDQ56CKY.js +15 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-HJQJAYMS.js +2 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-HJWBQKYG.js +5 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-HL6NGDO2.js +22 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-HP7NBOKN.js +20 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-HWBSOZZR.js +35 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-HWKDQ44K.js +3 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-I57KEIP3.js +10 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-IPJHKYVM.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-JVPRLUMK.js +7 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-KMEYNNUA.js +15 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-KX3P26DQ.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-LL3S3NLB.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-LTZRCH7N.js +31 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-LWEGUNWT.js +7 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-MDDMCKUK.js +6 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-MDLLFABN.js +4 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-MHTUABJP.js +8 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-MIZPJHVH.js +7 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-MLXIYONF.js +15 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-MYE6AGBJ.js +16 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-NAERJDUW.js +8 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-NCNPKYJZ.js +2 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-NRZWEENR.js +5 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-NUFRM6SI.js +0 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-NUYSJFDK.js +7 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-OCLXQMOG.js +6 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-OCS6LSEM.js +13 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-OJDRYQWQ.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-PBXLG62G.js +8 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-PP6PSHAB.js +4 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-PXTK5WE2.js +20 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-PYDZ2LCK.js +16 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-PYSFUGCK.js +10 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-QCDB2VPH.js +6 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-QJ7O6ZN3.js +5 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-R6QSAL5T.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-R6VWJ2ZL.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-RAFHQYLP.js +139 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-RPNGRAAP.js +7 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-RQ254MFG.js +12 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-SDNKECQQ.js +5 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-T56QNPHK.js +14 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-TLSUDHID.js +6 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-TOMNU26N.js +4 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-TXBZCHCQ.js +5 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-U6NMAV24.js +32 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-V7TAPXDL.js +27 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-VBEY5J6R.js +99 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-VJFXDYWH.js +10 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-VOBGTVA6.js +6 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-VYOJP4TV.js +13 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-WKFATFPP.js +4 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-X2AJGDEF.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-XIZSGUXJ.js +62 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-XKQRETAK.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-XVDPCNWR.js +11 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-YSHZL3MF.js +32 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-YTNYSM6T.js +11 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-Z6LRHWXI.js +13 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/chunk-Z7JVV2SM.js +12 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/clear-5CZ5X4YR.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/column-WLPMMSTS.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/comm-5SLSESQG.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/cp-XOYR4ABJ.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/curl-47BFPSFW.js +25 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/cut-OPC3VAGB.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/date-DD7FVA2V.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/diff-HJF2MPDN.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/dirname-LEMTZZFS.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/du-WO2ENHXQ.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/echo-O45JWWI2.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/env-5EPCWSXR.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/expand-DTNXU4LQ.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/expansion-UGGADTZC.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/expr-DNFUYZGY.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/file-IGDTDPLG.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/find-KNMMLVJD.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/flag-coverage-XLSDDMFQ.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/fold-LDSORVYE.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/grep-2UMHPO7Y.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/gzip-AQXSGOVS.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/head-HT2B6D2J.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/help-VVWX7SA5.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/history-J4QRNGRO.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/hostname-BK6HG2DE.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/html-to-markdown-TFCECAGV.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/join-GG2LDHE5.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/jq-LCDWFF5Y.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/js-exec-VXN6TZ7U.js +96 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/js-exec-worker.js +4380 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/ln-4TRFBYAT.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/ls-KSXFZCWH.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/md5sum-INMIK4DX.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/mkdir-TDEMSB6C.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/mv-Z6MORUFL.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/nl-U5YJDM32.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/od-VJEF2UR5.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/paste-7N6AFSDS.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/printf-CX64KX2P.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/pwd-D4OZ7N27.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/python3-BFV3N3GY.js +11 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/readlink-MI4GCHJF.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/rev-XOSYPP45.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/rg-KYSTAD4Q.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/rm-RTZG23RL.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/rmdir-XTQXT7RK.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/sed-OFX3F4FE.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/seq-RN5ZUASB.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/sha1sum-VJPNLNU6.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/sha256sum-PI32XWXY.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/sleep-VZFPZFWA.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/sort-DCNRDA7U.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/split-SITCSYCZ.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/sqlite3-56UMWEY3.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/stat-BT5A227F.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/strings-7PLOGTPD.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/tac-SJGXQ4T2.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/tail-S5ULNTJU.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/tar-LYLTEJV3.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/tee-O7VXZDCO.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/time-DEUO3QV2.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/timeout-VRKMCG72.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/touch-DX2IJOQ4.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/tr-2HXZRDSW.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/tree-LYXBS7DC.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/true-WHJNXCHG.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/unexpand-RGTMIGZM.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/uniq-SUNANL47.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/wc-TQB3VNOX.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/which-XZHEH76L.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/whoami-DGKU3D2X.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/worker.js +3136 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/xan-EY6QWK2V.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/xan-view-OW2TB7Z3.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/xargs-I6EZUCYF.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/chunks/yq-M7NFNNED.js +1 -0
- package/dist/node_modules/just-bash/dist/bundle/index.cjs +70 -0
- package/dist/node_modules/just-bash/dist/bundle/index.js +709 -0
- package/dist/node_modules/just-bash/dist/commands/alias/alias.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/commands/awk/ast.d.ts +202 -0
- package/dist/node_modules/just-bash/dist/commands/awk/awk2.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/commands/awk/builtins.d.ts +17 -0
- package/dist/node_modules/just-bash/dist/commands/awk/interpreter/context.d.ts +75 -0
- package/dist/node_modules/just-bash/dist/commands/awk/interpreter/expressions.d.ts +17 -0
- package/dist/node_modules/just-bash/dist/commands/awk/interpreter/fields.d.ts +25 -0
- package/dist/node_modules/just-bash/dist/commands/awk/interpreter/index.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/commands/awk/interpreter/interpreter.d.ts +54 -0
- package/dist/node_modules/just-bash/dist/commands/awk/interpreter/statements.d.ts +11 -0
- package/dist/node_modules/just-bash/dist/commands/awk/interpreter/type-coercion.d.ts +32 -0
- package/dist/node_modules/just-bash/dist/commands/awk/interpreter/types.d.ts +13 -0
- package/dist/node_modules/just-bash/dist/commands/awk/interpreter/variables.d.ts +35 -0
- package/dist/node_modules/just-bash/dist/commands/awk/lexer.d.ts +100 -0
- package/dist/node_modules/just-bash/dist/commands/awk/parser2-print.d.ts +35 -0
- package/dist/node_modules/just-bash/dist/commands/awk/parser2.d.ts +81 -0
- package/dist/node_modules/just-bash/dist/commands/base64/base64.d.ts +7 -0
- package/dist/node_modules/just-bash/dist/commands/basename/basename.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/bash/bash.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/commands/browser-excluded.d.ts +16 -0
- package/dist/node_modules/just-bash/dist/commands/cat/cat.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/chmod/chmod.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/clear/clear.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/column/column.d.ts +11 -0
- package/dist/node_modules/just-bash/dist/commands/comm/comm.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/cp/cp.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/curl/curl.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/commands/curl/form.d.ts +21 -0
- package/dist/node_modules/just-bash/dist/commands/curl/help.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/commands/curl/parse.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/commands/curl/response-formatting.d.ts +20 -0
- package/dist/node_modules/just-bash/dist/commands/curl/types.d.ts +31 -0
- package/dist/node_modules/just-bash/dist/commands/cut/cut.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/date/date.d.ts +7 -0
- package/dist/node_modules/just-bash/dist/commands/diff/diff.d.ts +7 -0
- package/dist/node_modules/just-bash/dist/commands/dirname/dirname.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/du/du.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/duration.d.ts +5 -0
- package/dist/node_modules/just-bash/dist/commands/echo/echo.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/env/env.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/commands/expand/expand.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/expand/unexpand.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/expr/expr.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/commands/file/file.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/commands/find/find.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/find/matcher.d.ts +69 -0
- package/dist/node_modules/just-bash/dist/commands/find/parser.d.ts +2 -0
- package/dist/node_modules/just-bash/dist/commands/find/types.d.ts +88 -0
- package/dist/node_modules/just-bash/dist/commands/flag-coverage.d.ts +2 -0
- package/dist/node_modules/just-bash/dist/commands/fold/fold.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/format-mode.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/fuzz-flags-types.d.ts +17 -0
- package/dist/node_modules/just-bash/dist/commands/fuzz-flags.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/commands/grep/grep.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/commands/gzip/gzip.d.ts +13 -0
- package/dist/node_modules/just-bash/dist/commands/head/head-tail-shared.d.ts +38 -0
- package/dist/node_modules/just-bash/dist/commands/head/head.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/help/help.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/help.d.ts +16 -0
- package/dist/node_modules/just-bash/dist/commands/history/history.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/hostname/hostname.d.ts +11 -0
- package/dist/node_modules/just-bash/dist/commands/html-to-markdown/html-to-markdown.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/commands/join/join.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/jq/jq.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/commands/js-exec/fetch-polyfill.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/commands/js-exec/js-exec-worker.d.ts +30 -0
- package/dist/node_modules/just-bash/dist/commands/js-exec/js-exec.d.ts +11 -0
- package/dist/node_modules/just-bash/dist/commands/js-exec/module-shims.d.ts +29 -0
- package/dist/node_modules/just-bash/dist/commands/js-exec/path-polyfill.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/commands/ln/ln.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/ls/ls.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/md5sum/checksum.d.ts +7 -0
- package/dist/node_modules/just-bash/dist/commands/md5sum/md5sum.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/md5sum/sha1sum.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/md5sum/sha256sum.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/mkdir/mkdir.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/mv/mv.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/nl/nl.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/od/od.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/paste/paste.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/printf/escapes.d.ts +25 -0
- package/dist/node_modules/just-bash/dist/commands/printf/printf.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/printf/strftime.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/commands/pwd/pwd.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/python3/python3.d.ts +16 -0
- package/dist/node_modules/just-bash/dist/commands/python3/worker.d.ts +28 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/array-builtins.d.ts +20 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/control-builtins.d.ts +18 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/date-builtins.d.ts +15 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/format-builtins.d.ts +11 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/index-builtins.d.ts +16 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/index.d.ts +17 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/math-builtins.d.ts +15 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/navigation-builtins.d.ts +18 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/object-builtins.d.ts +15 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/path-builtins.d.ts +20 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/sql-builtins.d.ts +16 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/string-builtins.d.ts +15 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/builtins/type-builtins.d.ts +11 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/evaluator.d.ts +40 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/index.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/parser-types.d.ts +171 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/parser.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/path-operations.d.ts +15 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/safe-object.d.ts +83 -0
- package/dist/node_modules/just-bash/dist/commands/query-engine/value-operations.d.ts +41 -0
- package/dist/node_modules/just-bash/dist/commands/readlink/readlink.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/registry.d.ts +56 -0
- package/dist/node_modules/just-bash/dist/commands/rev/rev.d.ts +13 -0
- package/dist/node_modules/just-bash/dist/commands/rg/file-types.d.ts +49 -0
- package/dist/node_modules/just-bash/dist/commands/rg/gitignore.d.ts +98 -0
- package/dist/node_modules/just-bash/dist/commands/rg/rg-options.d.ts +61 -0
- package/dist/node_modules/just-bash/dist/commands/rg/rg-parser.d.ts +20 -0
- package/dist/node_modules/just-bash/dist/commands/rg/rg-search.d.ts +15 -0
- package/dist/node_modules/just-bash/dist/commands/rg/rg.d.ts +14 -0
- package/dist/node_modules/just-bash/dist/commands/rm/rm.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/rmdir/rmdir.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/search-engine/index.d.ts +10 -0
- package/dist/node_modules/just-bash/dist/commands/search-engine/matcher.d.ts +60 -0
- package/dist/node_modules/just-bash/dist/commands/search-engine/regex.d.ts +33 -0
- package/dist/node_modules/just-bash/dist/commands/sed/executor.d.ts +7 -0
- package/dist/node_modules/just-bash/dist/commands/sed/lexer.d.ts +86 -0
- package/dist/node_modules/just-bash/dist/commands/sed/parser.d.ts +18 -0
- package/dist/node_modules/just-bash/dist/commands/sed/sed-regex.d.ts +23 -0
- package/dist/node_modules/just-bash/dist/commands/sed/sed.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/sed/types.d.ts +216 -0
- package/dist/node_modules/just-bash/dist/commands/seq/seq.d.ts +16 -0
- package/dist/node_modules/just-bash/dist/commands/sleep/sleep.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/sort/comparator.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/commands/sort/parser.d.ts +11 -0
- package/dist/node_modules/just-bash/dist/commands/sort/sort.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/sort/types.d.ts +30 -0
- package/dist/node_modules/just-bash/dist/commands/split/split.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/sqlite3/formatters.d.ts +15 -0
- package/dist/node_modules/just-bash/dist/commands/sqlite3/sqlite3.d.ts +22 -0
- package/dist/node_modules/just-bash/dist/commands/sqlite3/worker.d.ts +45 -0
- package/dist/node_modules/just-bash/dist/commands/stat/stat.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/strings/strings.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/tac/tac.d.ts +11 -0
- package/dist/node_modules/just-bash/dist/commands/tail/tail.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/tar/archive.d.ts +135 -0
- package/dist/node_modules/just-bash/dist/commands/tar/bzip2-compress.d.ts +17 -0
- package/dist/node_modules/just-bash/dist/commands/tar/tar-options.d.ts +37 -0
- package/dist/node_modules/just-bash/dist/commands/tar/tar.d.ts +10 -0
- package/dist/node_modules/just-bash/dist/commands/tee/tee.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/time/time.d.ts +27 -0
- package/dist/node_modules/just-bash/dist/commands/timeout/timeout.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/touch/touch.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/tr/tr.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/tree/tree.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/true/true.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/commands/uniq/uniq.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/wc/wc.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/which/which.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/whoami/whoami.d.ts +11 -0
- package/dist/node_modules/just-bash/dist/commands/worker-bridge/bridge-handler.d.ts +71 -0
- package/dist/node_modules/just-bash/dist/commands/worker-bridge/protocol.d.ts +140 -0
- package/dist/node_modules/just-bash/dist/commands/worker-bridge/sync-backend.d.ts +81 -0
- package/dist/node_modules/just-bash/dist/commands/xan/aggregation.d.ts +20 -0
- package/dist/node_modules/just-bash/dist/commands/xan/column-selection.d.ts +19 -0
- package/dist/node_modules/just-bash/dist/commands/xan/csv.d.ts +37 -0
- package/dist/node_modules/just-bash/dist/commands/xan/moonblade-parser.d.ts +80 -0
- package/dist/node_modules/just-bash/dist/commands/xan/moonblade-to-jq.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/xan/moonblade-tokenizer.d.ts +25 -0
- package/dist/node_modules/just-bash/dist/commands/xan/subcommands.d.ts +15 -0
- package/dist/node_modules/just-bash/dist/commands/xan/xan-agg.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/commands/xan/xan-columns.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/commands/xan/xan-core.d.ts +10 -0
- package/dist/node_modules/just-bash/dist/commands/xan/xan-data.d.ts +52 -0
- package/dist/node_modules/just-bash/dist/commands/xan/xan-filter.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/commands/xan/xan-map.d.ts +11 -0
- package/dist/node_modules/just-bash/dist/commands/xan/xan-reshape.d.ts +40 -0
- package/dist/node_modules/just-bash/dist/commands/xan/xan-simple.d.ts +40 -0
- package/dist/node_modules/just-bash/dist/commands/xan/xan-view.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/commands/xan/xan.d.ts +10 -0
- package/dist/node_modules/just-bash/dist/commands/xargs/xargs.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/commands/yq/formats.d.ts +64 -0
- package/dist/node_modules/just-bash/dist/commands/yq/yq.d.ts +13 -0
- package/dist/node_modules/just-bash/dist/custom-commands.d.ts +42 -0
- package/dist/node_modules/just-bash/dist/fs/encoding.d.ts +17 -0
- package/dist/node_modules/just-bash/dist/fs/in-memory-fs/in-memory-fs.d.ts +73 -0
- package/dist/node_modules/just-bash/dist/fs/in-memory-fs/index.d.ts +1 -0
- package/dist/node_modules/just-bash/dist/fs/init.d.ts +22 -0
- package/dist/node_modules/just-bash/dist/fs/interface.d.ts +229 -0
- package/dist/node_modules/just-bash/dist/fs/mountable-fs/index.d.ts +1 -0
- package/dist/node_modules/just-bash/dist/fs/mountable-fs/mountable-fs.d.ts +116 -0
- package/dist/node_modules/just-bash/dist/fs/overlay-fs/index.d.ts +1 -0
- package/dist/node_modules/just-bash/dist/fs/overlay-fs/overlay-fs.d.ts +163 -0
- package/dist/node_modules/just-bash/dist/fs/path-utils.d.ts +46 -0
- package/dist/node_modules/just-bash/dist/fs/read-write-fs/index.d.ts +1 -0
- package/dist/node_modules/just-bash/dist/fs/read-write-fs/read-write-fs.d.ts +96 -0
- package/dist/node_modules/just-bash/dist/fs/real-fs-utils.d.ts +90 -0
- package/dist/node_modules/just-bash/dist/fs/sanitize-error.d.ts +19 -0
- package/dist/node_modules/just-bash/dist/index.d.cts +27 -0
- package/dist/node_modules/just-bash/dist/index.d.ts +27 -0
- package/dist/node_modules/just-bash/dist/interpreter/alias-expansion.d.ts +23 -0
- package/dist/node_modules/just-bash/dist/interpreter/arithmetic.d.ts +24 -0
- package/dist/node_modules/just-bash/dist/interpreter/assignment-expansion.d.ts +24 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtin-dispatch.d.ts +39 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/break.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/cd.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/compgen.d.ts +26 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/complete.d.ts +17 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/compopt.d.ts +28 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/continue.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/declare-array-parsing.d.ts +14 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/declare-print.d.ts +39 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/declare.d.ts +35 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/dirs.d.ts +29 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/eval.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/exit.d.ts +5 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/export.d.ts +14 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/getopts.d.ts +18 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/hash.d.ts +19 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/help.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/index.d.ts +45 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/let.d.ts +18 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/local.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/mapfile.d.ts +17 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/read.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/return.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/set.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/shift.d.ts +15 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/shopt.d.ts +7 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/source.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/unset.d.ts +16 -0
- package/dist/node_modules/just-bash/dist/interpreter/builtins/variable-assignment.d.ts +66 -0
- package/dist/node_modules/just-bash/dist/interpreter/command-resolution.d.ts +43 -0
- package/dist/node_modules/just-bash/dist/interpreter/conditionals.d.ts +17 -0
- package/dist/node_modules/just-bash/dist/interpreter/control-flow.d.ts +21 -0
- package/dist/node_modules/just-bash/dist/interpreter/defense-aware-command-context.d.ts +6 -0
- package/dist/node_modules/just-bash/dist/interpreter/errors.d.ts +158 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/analysis.d.ts +37 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/arith-text-expansion.d.ts +20 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/array-pattern-ops.d.ts +21 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/array-prefix-suffix.d.ts +46 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/array-slice-transform.d.ts +36 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/array-word-expansion.d.ts +39 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/brace-range.d.ts +20 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/command-substitution.d.ts +23 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/glob-escape.d.ts +32 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/indirect-expansion.d.ts +42 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/parameter-ops.d.ts +113 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/pattern-expansion.d.ts +23 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/pattern-removal.d.ts +18 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/pattern.d.ts +23 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/positional-params.d.ts +59 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/prompt.d.ts +39 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/quoting.d.ts +13 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/tilde.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/unquoted-expansion.d.ts +76 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/variable-attrs.d.ts +19 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/variable.d.ts +36 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/word-glob-expansion.d.ts +33 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion/word-split.d.ts +29 -0
- package/dist/node_modules/just-bash/dist/interpreter/expansion.d.ts +53 -0
- package/dist/node_modules/just-bash/dist/interpreter/functions.d.ts +12 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/array.d.ts +43 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/condition.d.ts +22 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/errors.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/file-tests.d.ts +33 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/ifs.d.ts +104 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/loop.d.ts +24 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/nameref.d.ts +65 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/numeric-compare.d.ts +13 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/quoting.d.ts +24 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/readonly.d.ts +45 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/regex.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/result.d.ts +60 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/shell-constants.d.ts +25 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/shellopts.d.ts +28 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/statements.d.ts +20 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/string-compare.d.ts +24 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/string-tests.d.ts +13 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/tilde.d.ts +13 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/variable-tests.d.ts +9 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/word-matching.d.ts +26 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/word-parts.d.ts +22 -0
- package/dist/node_modules/just-bash/dist/interpreter/helpers/xtrace.d.ts +18 -0
- package/dist/node_modules/just-bash/dist/interpreter/index.d.ts +3 -0
- package/dist/node_modules/just-bash/dist/interpreter/interpreter.d.ts +77 -0
- package/dist/node_modules/just-bash/dist/interpreter/pipeline-execution.d.ts +16 -0
- package/dist/node_modules/just-bash/dist/interpreter/redirections.d.ts +51 -0
- package/dist/node_modules/just-bash/dist/interpreter/simple-command-assignments.d.ts +29 -0
- package/dist/node_modules/just-bash/dist/interpreter/subshell-group.d.ts +32 -0
- package/dist/node_modules/just-bash/dist/interpreter/type-command.d.ts +37 -0
- package/dist/node_modules/just-bash/dist/interpreter/types.d.ts +344 -0
- package/dist/node_modules/just-bash/dist/limits.d.ts +52 -0
- package/dist/node_modules/just-bash/dist/network/allow-list/shared.d.ts +57 -0
- package/dist/node_modules/just-bash/dist/network/allow-list.d.ts +59 -0
- package/dist/node_modules/just-bash/dist/network/fetch.d.ts +25 -0
- package/dist/node_modules/just-bash/dist/network/index.d.ts +7 -0
- package/dist/node_modules/just-bash/dist/network/types.d.ts +155 -0
- package/dist/node_modules/just-bash/dist/parser/arithmetic-parser.d.ts +23 -0
- package/dist/node_modules/just-bash/dist/parser/arithmetic-primaries.d.ts +45 -0
- package/dist/node_modules/just-bash/dist/parser/command-parser.d.ts +10 -0
- package/dist/node_modules/just-bash/dist/parser/compound-parser.d.ts +28 -0
- package/dist/node_modules/just-bash/dist/parser/conditional-parser.d.ts +8 -0
- package/dist/node_modules/just-bash/dist/parser/expansion-parser.d.ts +16 -0
- package/dist/node_modules/just-bash/dist/parser/lexer.d.ts +197 -0
- package/dist/node_modules/just-bash/dist/parser/parser-substitution.d.ts +62 -0
- package/dist/node_modules/just-bash/dist/parser/parser.d.ts +135 -0
- package/dist/node_modules/just-bash/dist/parser/types.d.ts +25 -0
- package/dist/node_modules/just-bash/dist/parser/word-parser.d.ts +33 -0
- package/dist/node_modules/just-bash/dist/sandbox/Command.d.ts +35 -0
- package/dist/node_modules/just-bash/dist/sandbox/Sandbox.d.ts +90 -0
- package/dist/node_modules/just-bash/dist/sandbox/index.d.ts +2 -0
- package/dist/node_modules/just-bash/dist/shell-metadata.d.ts +25 -0
- package/dist/node_modules/just-bash/dist/timers.d.ts +4 -0
- package/dist/node_modules/just-bash/dist/types.d.ts +198 -0
- package/dist/node_modules/just-bash/dist/utils/args.d.ts +55 -0
- package/dist/node_modules/just-bash/dist/utils/constants.d.ts +15 -0
- package/dist/node_modules/just-bash/dist/utils/file-reader.d.ts +67 -0
- package/dist/node_modules/just-bash/dist/utils/glob.d.ts +25 -0
- package/dist/node_modules/just-bash/dist/vitest-setup.d.ts +1 -0
- package/dist/node_modules/just-bash/node_modules/@tokenizer/inflate/lib/GzipHandler.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/@tokenizer/inflate/lib/GzipHandler.js +19 -0
- package/dist/node_modules/just-bash/node_modules/@tokenizer/inflate/lib/ZipHandler.d.ts +26 -0
- package/dist/node_modules/just-bash/node_modules/@tokenizer/inflate/lib/ZipHandler.js +233 -0
- package/dist/node_modules/just-bash/node_modules/@tokenizer/inflate/lib/ZipToken.d.ts +94 -0
- package/dist/node_modules/just-bash/node_modules/@tokenizer/inflate/lib/ZipToken.js +117 -0
- package/dist/node_modules/just-bash/node_modules/@tokenizer/inflate/lib/index.d.ts +3 -0
- package/dist/node_modules/just-bash/node_modules/@tokenizer/inflate/lib/index.js +2 -0
- package/dist/node_modules/just-bash/node_modules/@tokenizer/inflate/package.json +76 -0
- package/dist/node_modules/just-bash/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
- package/dist/node_modules/just-bash/node_modules/balanced-match/dist/commonjs/index.js +59 -0
- package/dist/node_modules/just-bash/node_modules/balanced-match/dist/commonjs/package.json +3 -0
- package/dist/node_modules/just-bash/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
- package/dist/node_modules/just-bash/node_modules/balanced-match/dist/esm/index.js +54 -0
- package/dist/node_modules/just-bash/node_modules/balanced-match/dist/esm/package.json +3 -0
- package/dist/node_modules/just-bash/node_modules/balanced-match/package.json +68 -0
- package/dist/node_modules/just-bash/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
- package/dist/node_modules/just-bash/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
- package/dist/node_modules/just-bash/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/brace-expansion/dist/esm/index.js +197 -0
- package/dist/node_modules/just-bash/node_modules/brace-expansion/dist/esm/package.json +3 -0
- package/dist/node_modules/just-bash/node_modules/brace-expansion/package.json +64 -0
- package/dist/node_modules/just-bash/node_modules/debug/package.json +64 -0
- package/dist/node_modules/just-bash/node_modules/debug/src/browser.js +272 -0
- package/dist/node_modules/just-bash/node_modules/debug/src/common.js +292 -0
- package/dist/node_modules/just-bash/node_modules/debug/src/index.js +10 -0
- package/dist/node_modules/just-bash/node_modules/debug/src/node.js +263 -0
- package/dist/node_modules/just-bash/node_modules/diff/dist/diff.js +1782 -0
- package/dist/node_modules/just-bash/node_modules/diff/dist/diff.min.js +1 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/convert/dmp.d.ts +8 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/convert/dmp.js +24 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/convert/xml.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/convert/xml.js +34 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/array.d.ts +19 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/array.js +40 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/base.d.ts +20 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/base.js +265 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/character.d.ts +19 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/character.js +31 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/css.d.ts +18 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/css.js +34 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/json.d.ts +24 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/json.js +105 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/line.d.ts +24 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/line.js +89 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/sentence.d.ts +21 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/sentence.js +67 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/word.d.ts +35 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/diff/word.js +312 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/index.d.ts +20 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/index.js +64 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/package.json +1 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/patch/apply.d.ts +62 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/patch/apply.js +267 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/patch/create.d.ts +122 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/patch/create.js +251 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/patch/line-endings.d.ts +17 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/patch/line-endings.js +61 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/patch/parse.d.ts +8 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/patch/parse.js +150 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/patch/reverse.d.ts +9 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/patch/reverse.js +37 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/types.d.ts +213 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/util/array.d.ts +3 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/util/array.js +21 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/util/distance-iterator.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/util/distance-iterator.js +40 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/util/params.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/util/params.js +17 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/util/string.d.ts +30 -0
- package/dist/node_modules/just-bash/node_modules/diff/libcjs/util/string.js +200 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/convert/dmp.d.ts +8 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/convert/dmp.js +21 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/convert/xml.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/convert/xml.js +31 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/array.d.ts +19 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/array.js +16 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/base.d.ts +20 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/base.js +253 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/character.d.ts +19 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/character.js +7 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/css.d.ts +18 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/css.js +10 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/json.d.ts +24 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/json.js +78 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/line.d.ts +24 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/line.js +65 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/sentence.d.ts +21 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/sentence.js +43 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/word.d.ts +35 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/diff/word.js +281 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/index.d.ts +20 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/index.js +30 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/package.json +1 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/patch/apply.d.ts +62 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/patch/apply.js +257 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/patch/create.d.ts +122 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/patch/create.js +228 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/patch/line-endings.d.ts +17 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/patch/line-endings.js +44 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/patch/parse.d.ts +8 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/patch/parse.js +147 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/patch/reverse.d.ts +9 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/patch/reverse.js +23 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/types.d.ts +213 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/types.js +1 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/util/array.d.ts +3 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/util/array.js +17 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/util/distance-iterator.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/util/distance-iterator.js +37 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/util/params.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/util/params.js +14 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/util/string.d.ts +30 -0
- package/dist/node_modules/just-bash/node_modules/diff/libesm/util/string.js +184 -0
- package/dist/node_modules/just-bash/node_modules/diff/package.json +130 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/lib/fxp.d.cts +458 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/lib/fxvalidator.min.js +2 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/package.json +92 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/cli/cli.js +97 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/cli/man.js +17 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/cli/read.js +43 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/fxp.d.ts +445 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/fxp.js +14 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/ignoreAttributes.js +18 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/util.js +68 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +16 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +104 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +61 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +69 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +103 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +100 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +154 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +94 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/TagPath.js +81 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +13 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/XMLParser.js +83 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +235 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +210 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +111 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +116 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +121 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +105 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +22 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +19 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +38 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +13 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +14 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +6 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/validator.js +425 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +285 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +134 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +379 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +46 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +629 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +71 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/xmlparser/node2json.js +119 -0
- package/dist/node_modules/just-bash/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +40 -0
- package/dist/node_modules/just-bash/node_modules/file-type/core.d.ts +253 -0
- package/dist/node_modules/just-bash/node_modules/file-type/core.js +2899 -0
- package/dist/node_modules/just-bash/node_modules/file-type/index.d.ts +98 -0
- package/dist/node_modules/just-bash/node_modules/file-type/index.js +163 -0
- package/dist/node_modules/just-bash/node_modules/file-type/license +9 -0
- package/dist/node_modules/just-bash/node_modules/file-type/package.json +290 -0
- package/dist/node_modules/just-bash/node_modules/file-type/supported.js +360 -0
- package/dist/node_modules/just-bash/node_modules/file-type/util.js +60 -0
- package/dist/node_modules/just-bash/node_modules/ini/lib/ini.js +280 -0
- package/dist/node_modules/just-bash/node_modules/ini/package.json +45 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/ast.js +845 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/escape.js +30 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/index.js +1127 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/package.json +3 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/ast.js +841 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/escape.js +26 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/index.d.ts +174 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/index.js +1114 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/package.json +3 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/dist/esm/unescape.js +34 -0
- package/dist/node_modules/just-bash/node_modules/minimatch/package.json +73 -0
- package/dist/node_modules/just-bash/node_modules/sprintf-js/dist/.gitattributes +4 -0
- package/dist/node_modules/just-bash/node_modules/sprintf-js/dist/angular-sprintf.min.js +3 -0
- package/dist/node_modules/just-bash/node_modules/sprintf-js/dist/sprintf.min.js +3 -0
- package/dist/node_modules/just-bash/node_modules/sprintf-js/package.json +35 -0
- package/dist/node_modules/just-bash/node_modules/sprintf-js/src/angular-sprintf.js +24 -0
- package/dist/node_modules/just-bash/node_modules/sprintf-js/src/sprintf.js +231 -0
- package/dist/node_modules/just-bash/node_modules/strnum/package.json +31 -0
- package/dist/node_modules/just-bash/node_modules/strnum/strnum.js +161 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/LICENSE.txt +21 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/AbstractTokenizer.d.ts +76 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/AbstractTokenizer.js +111 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/BlobTokenizer.d.ts +29 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/BlobTokenizer.js +53 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/BufferTokenizer.d.ts +29 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/BufferTokenizer.js +52 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/FileTokenizer.d.ts +37 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/FileTokenizer.js +61 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/ReadStreamTokenizer.d.ts +34 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/ReadStreamTokenizer.js +107 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/core.d.ts +40 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/core.js +62 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/index.d.ts +16 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/index.js +22 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/AbstractStreamReader.d.ts +54 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/AbstractStreamReader.js +71 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/Deferred.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/Deferred.js +10 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/Errors.d.ts +10 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/Errors.js +16 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/StreamReader.d.ts +29 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/StreamReader.js +83 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/WebStreamByobReader.d.ts +14 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/WebStreamByobReader.js +27 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/WebStreamDefaultReader.d.ts +19 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/WebStreamDefaultReader.js +62 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/WebStreamReader.d.ts +14 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/WebStreamReader.js +13 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/WebStreamReaderFactory.d.ts +5 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/WebStreamReaderFactory.js +19 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/index.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/stream/index.js +5 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/types.d.ts +139 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/lib/types.js +1 -0
- package/dist/node_modules/just-bash/node_modules/strtok3/package.json +94 -0
- package/dist/node_modules/just-bash/node_modules/token-types/LICENSE.txt +9 -0
- package/dist/node_modules/just-bash/node_modules/token-types/lib/index.d.ts +135 -0
- package/dist/node_modules/just-bash/node_modules/token-types/lib/index.js +401 -0
- package/dist/node_modules/just-bash/node_modules/token-types/package.json +81 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/errors.js +57 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/index.js +17 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/log.js +11 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/nodes/Alias.js +114 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/parse/parser.js +967 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/util.js +11 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/dist/visit.js +233 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/index.js +5 -0
- package/dist/node_modules/just-bash/node_modules/yaml/browser/package.json +3 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/cli.d.ts +8 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/compose-node.js +112 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/composer.d.ts +63 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/composer.js +222 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/resolve-props.js +148 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/doc/Document.js +337 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/doc/anchors.js +76 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/doc/createNode.js +90 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/doc/directives.js +178 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/errors.d.ts +21 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/errors.js +62 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/index.d.ts +25 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/index.js +50 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/log.d.ts +3 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/log.js +19 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/Alias.js +116 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/Scalar.d.ts +43 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/options.d.ts +350 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/cst.d.ts +109 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/cst.js +112 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/lexer.js +719 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/parse/parser.js +972 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/public-api.d.ts +44 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/public-api.js +107 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/tags.js +99 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringify.js +132 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/test-events.js +134 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/util.d.ts +16 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/util.js +28 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/visit.d.ts +102 -0
- package/dist/node_modules/just-bash/node_modules/yaml/dist/visit.js +236 -0
- package/dist/node_modules/just-bash/node_modules/yaml/package.json +97 -0
- package/dist/node_modules/just-bash/node_modules/yaml/util.js +2 -0
- package/dist/node_modules/just-bash/package.json +1 -0
- package/dist/node_modules/just-bash/vendor/cpython-emscripten/python.cjs +2 -0
- package/dist/node_modules/just-bash/vendor/cpython-emscripten/python.wasm +0 -0
- package/dist/node_modules/just-bash/vendor/cpython-emscripten/python313.zip +0 -0
- package/dist/node_modules/nodejs-snowflake/package.json +1 -1
- package/dist/node_modules/openai/package.json +1 -1
- package/dist/node_modules/zod/package.json +1 -1
- package/dist/server/ai-employees/ai-employee.js +9 -3
- package/dist/server/llm-providers/common/reasoning.d.ts +0 -7
- package/dist/server/llm-providers/common/reasoning.js +18 -36
- package/dist/server/llm-providers/mimo.d.ts +37 -0
- package/dist/server/llm-providers/mimo.js +156 -0
- package/dist/server/migrations/20260428175558-update-ai-employee-category.d.ts +14 -0
- package/dist/server/migrations/20260428175558-update-ai-employee-category.js +55 -0
- package/dist/server/migrations/20260429175132-ai-employee-deprecated-orin.d.ts +14 -0
- package/dist/server/migrations/20260429175132-ai-employee-deprecated-orin.js +53 -0
- package/dist/server/plugin.d.ts +2 -0
- package/dist/server/plugin.js +5 -3
- package/dist/server/resource/aiEmployees.js +10 -1
- package/dist/server/tools/docs.d.ts +7 -24
- package/dist/server/tools/docs.js +197 -400
- package/npm-shims/@mongodb-js/zstd/index.d.ts +2 -0
- package/npm-shims/@mongodb-js/zstd/index.js +6 -0
- package/npm-shims/@mongodb-js/zstd/package.json +9 -0
- package/npm-shims/node-liblzma/index.js +10 -0
- package/npm-shims/node-liblzma/package.json +9 -0
- package/package.json +4 -2
- package/dist/client/228.b18148eb1009d2fb.js +0 -10
- package/dist/client/343.83f7d96664e4e038.js +0 -10
- package/dist/client/559.133d286a0a0a1d93.js +0 -10
- package/dist/client/646.cba98d80e9e6ea74.js +0 -10
- package/dist/client/792.ae8ad1fcae9fd974.js +0 -10
- package/dist/node_modules/fast-glob/LICENSE +0 -21
- package/dist/node_modules/fast-glob/out/index.d.ts +0 -40
- package/dist/node_modules/fast-glob/out/index.js +0 -37
- package/dist/node_modules/fast-glob/out/managers/tasks.d.ts +0 -22
- package/dist/node_modules/fast-glob/out/managers/tasks.js +0 -110
- package/dist/node_modules/fast-glob/out/providers/async.d.ts +0 -9
- package/dist/node_modules/fast-glob/out/providers/async.js +0 -23
- package/dist/node_modules/fast-glob/out/providers/filters/deep.d.ts +0 -16
- package/dist/node_modules/fast-glob/out/providers/filters/deep.js +0 -62
- package/dist/node_modules/fast-glob/out/providers/filters/entry.d.ts +0 -16
- package/dist/node_modules/fast-glob/out/providers/filters/entry.js +0 -63
- package/dist/node_modules/fast-glob/out/providers/filters/error.d.ts +0 -8
- package/dist/node_modules/fast-glob/out/providers/filters/error.js +0 -15
- package/dist/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +0 -33
- package/dist/node_modules/fast-glob/out/providers/matchers/matcher.js +0 -45
- package/dist/node_modules/fast-glob/out/providers/matchers/partial.d.ts +0 -4
- package/dist/node_modules/fast-glob/out/providers/matchers/partial.js +0 -38
- package/dist/node_modules/fast-glob/out/providers/provider.d.ts +0 -19
- package/dist/node_modules/fast-glob/out/providers/provider.js +0 -48
- package/dist/node_modules/fast-glob/out/providers/stream.d.ts +0 -11
- package/dist/node_modules/fast-glob/out/providers/stream.js +0 -31
- package/dist/node_modules/fast-glob/out/providers/sync.d.ts +0 -9
- package/dist/node_modules/fast-glob/out/providers/sync.js +0 -23
- package/dist/node_modules/fast-glob/out/providers/transformers/entry.d.ts +0 -8
- package/dist/node_modules/fast-glob/out/providers/transformers/entry.js +0 -26
- package/dist/node_modules/fast-glob/out/readers/async.d.ts +0 -10
- package/dist/node_modules/fast-glob/out/readers/async.js +0 -35
- package/dist/node_modules/fast-glob/out/readers/reader.d.ts +0 -15
- package/dist/node_modules/fast-glob/out/readers/reader.js +0 -33
- package/dist/node_modules/fast-glob/out/readers/stream.d.ts +0 -14
- package/dist/node_modules/fast-glob/out/readers/stream.js +0 -55
- package/dist/node_modules/fast-glob/out/readers/sync.d.ts +0 -12
- package/dist/node_modules/fast-glob/out/readers/sync.js +0 -43
- package/dist/node_modules/fast-glob/out/settings.d.ts +0 -164
- package/dist/node_modules/fast-glob/out/settings.js +0 -59
- package/dist/node_modules/fast-glob/out/types/index.d.ts +0 -31
- package/dist/node_modules/fast-glob/out/utils/array.d.ts +0 -2
- package/dist/node_modules/fast-glob/out/utils/array.js +0 -22
- package/dist/node_modules/fast-glob/out/utils/errno.d.ts +0 -2
- package/dist/node_modules/fast-glob/out/utils/errno.js +0 -7
- package/dist/node_modules/fast-glob/out/utils/fs.d.ts +0 -4
- package/dist/node_modules/fast-glob/out/utils/fs.js +0 -19
- package/dist/node_modules/fast-glob/out/utils/index.d.ts +0 -8
- package/dist/node_modules/fast-glob/out/utils/index.js +0 -17
- package/dist/node_modules/fast-glob/out/utils/path.d.ts +0 -13
- package/dist/node_modules/fast-glob/out/utils/path.js +0 -68
- package/dist/node_modules/fast-glob/out/utils/pattern.d.ts +0 -47
- package/dist/node_modules/fast-glob/out/utils/pattern.js +0 -188
- package/dist/node_modules/fast-glob/out/utils/stream.d.ts +0 -4
- package/dist/node_modules/fast-glob/out/utils/stream.js +0 -17
- package/dist/node_modules/fast-glob/out/utils/string.d.ts +0 -2
- package/dist/node_modules/fast-glob/out/utils/string.js +0 -11
- package/dist/node_modules/fast-glob/package.json +0 -1
- package/dist/node_modules/flexsearch/LICENSE +0 -201
- package/dist/node_modules/flexsearch/dist/db/clickhouse/index.cjs +0 -727
- package/dist/node_modules/flexsearch/dist/db/indexeddb/index.cjs +0 -680
- package/dist/node_modules/flexsearch/dist/db/mongodb/index.cjs +0 -710
- package/dist/node_modules/flexsearch/dist/db/postgres/index.cjs +0 -932
- package/dist/node_modules/flexsearch/dist/db/redis/index.cjs +0 -591
- package/dist/node_modules/flexsearch/dist/db/sqlite/index.cjs +0 -871
- package/dist/node_modules/flexsearch/dist/flexsearch.bundle.debug.js +0 -2926
- package/dist/node_modules/flexsearch/dist/flexsearch.bundle.min.js +0 -8
- package/dist/node_modules/flexsearch/dist/flexsearch.bundle.module.debug.js +0 -2922
- package/dist/node_modules/flexsearch/dist/flexsearch.bundle.module.min.js +0 -108
- package/dist/node_modules/flexsearch/dist/flexsearch.compact.debug.js +0 -1652
- package/dist/node_modules/flexsearch/dist/flexsearch.compact.min.js +0 -58
- package/dist/node_modules/flexsearch/dist/flexsearch.compact.module.debug.js +0 -1648
- package/dist/node_modules/flexsearch/dist/flexsearch.compact.module.min.js +0 -59
- package/dist/node_modules/flexsearch/dist/flexsearch.es5.debug.js +0 -3944
- package/dist/node_modules/flexsearch/dist/flexsearch.es5.min.js +0 -144
- package/dist/node_modules/flexsearch/dist/flexsearch.light.debug.js +0 -651
- package/dist/node_modules/flexsearch/dist/flexsearch.light.min.js +0 -28
- package/dist/node_modules/flexsearch/dist/flexsearch.light.module.debug.js +0 -647
- package/dist/node_modules/flexsearch/dist/flexsearch.light.module.min.js +0 -29
- package/dist/node_modules/flexsearch/dist/lang/de.min.js +0 -2
- package/dist/node_modules/flexsearch/dist/lang/en.min.js +0 -2
- package/dist/node_modules/flexsearch/dist/lang/fr.min.js +0 -3
- package/dist/node_modules/flexsearch/dist/module/async.js +0 -72
- package/dist/node_modules/flexsearch/dist/module/bundle.js +0 -330
- package/dist/node_modules/flexsearch/dist/module/cache.js +0 -118
- package/dist/node_modules/flexsearch/dist/module/charset/cjk.js +0 -8
- package/dist/node_modules/flexsearch/dist/module/charset/exact.js +0 -10
- package/dist/node_modules/flexsearch/dist/module/charset/latin/advanced.js +0 -15
- package/dist/node_modules/flexsearch/dist/module/charset/latin/balance.js +0 -10
- package/dist/node_modules/flexsearch/dist/module/charset/latin/extra.js +0 -14
- package/dist/node_modules/flexsearch/dist/module/charset/latin/soundex.js +0 -53
- package/dist/node_modules/flexsearch/dist/module/charset/normalize.js +0 -5
- package/dist/node_modules/flexsearch/dist/module/charset/polyfill.js +0 -1
- package/dist/node_modules/flexsearch/dist/module/charset.js +0 -40
- package/dist/node_modules/flexsearch/dist/module/common.js +0 -135
- package/dist/node_modules/flexsearch/dist/module/compress.js +0 -64
- package/dist/node_modules/flexsearch/dist/module/db/clickhouse/index.js +0 -569
- package/dist/node_modules/flexsearch/dist/module/db/indexeddb/index.js +0 -516
- package/dist/node_modules/flexsearch/dist/module/db/interface.js +0 -51
- package/dist/node_modules/flexsearch/dist/module/db/mongodb/index.js +0 -571
- package/dist/node_modules/flexsearch/dist/module/db/postgres/index.js +0 -624
- package/dist/node_modules/flexsearch/dist/module/db/redis/index.js +0 -461
- package/dist/node_modules/flexsearch/dist/module/db/sqlite/index.js +0 -707
- package/dist/node_modules/flexsearch/dist/module/document/add.js +0 -228
- package/dist/node_modules/flexsearch/dist/module/document/highlight.js +0 -448
- package/dist/node_modules/flexsearch/dist/module/document/search.js +0 -515
- package/dist/node_modules/flexsearch/dist/module/document.js +0 -485
- package/dist/node_modules/flexsearch/dist/module/encoder.js +0 -453
- package/dist/node_modules/flexsearch/dist/module/index/add.js +0 -229
- package/dist/node_modules/flexsearch/dist/module/index/remove.js +0 -101
- package/dist/node_modules/flexsearch/dist/module/index/search.js +0 -326
- package/dist/node_modules/flexsearch/dist/module/index.js +0 -184
- package/dist/node_modules/flexsearch/dist/module/intersect.js +0 -272
- package/dist/node_modules/flexsearch/dist/module/keystore.js +0 -349
- package/dist/node_modules/flexsearch/dist/module/lang/de.js +0 -43
- package/dist/node_modules/flexsearch/dist/module/lang/en.js +0 -40
- package/dist/node_modules/flexsearch/dist/module/lang/fr.js +0 -27
- package/dist/node_modules/flexsearch/dist/module/preset.js +0 -53
- package/dist/node_modules/flexsearch/dist/module/profiler.js +0 -9
- package/dist/node_modules/flexsearch/dist/module/resolve/and.js +0 -84
- package/dist/node_modules/flexsearch/dist/module/resolve/default.js +0 -76
- package/dist/node_modules/flexsearch/dist/module/resolve/handler.js +0 -216
- package/dist/node_modules/flexsearch/dist/module/resolve/not.js +0 -89
- package/dist/node_modules/flexsearch/dist/module/resolve/or.js +0 -49
- package/dist/node_modules/flexsearch/dist/module/resolve/xor.js +0 -124
- package/dist/node_modules/flexsearch/dist/module/resolver.js +0 -257
- package/dist/node_modules/flexsearch/dist/module/serialize.js +0 -468
- package/dist/node_modules/flexsearch/dist/module/type.js +0 -305
- package/dist/node_modules/flexsearch/dist/module/worker/handler.js +0 -77
- package/dist/node_modules/flexsearch/dist/module/worker/node.js +0 -73
- package/dist/node_modules/flexsearch/dist/module/worker/worker.js +0 -2
- package/dist/node_modules/flexsearch/dist/module/worker.js +0 -146
- package/dist/node_modules/flexsearch/dist/module-debug/async.js +0 -72
- package/dist/node_modules/flexsearch/dist/module-debug/bundle.js +0 -330
- package/dist/node_modules/flexsearch/dist/module-debug/cache.js +0 -118
- package/dist/node_modules/flexsearch/dist/module-debug/charset/cjk.js +0 -8
- package/dist/node_modules/flexsearch/dist/module-debug/charset/exact.js +0 -10
- package/dist/node_modules/flexsearch/dist/module-debug/charset/latin/advanced.js +0 -15
- package/dist/node_modules/flexsearch/dist/module-debug/charset/latin/balance.js +0 -10
- package/dist/node_modules/flexsearch/dist/module-debug/charset/latin/extra.js +0 -14
- package/dist/node_modules/flexsearch/dist/module-debug/charset/latin/soundex.js +0 -53
- package/dist/node_modules/flexsearch/dist/module-debug/charset/normalize.js +0 -5
- package/dist/node_modules/flexsearch/dist/module-debug/charset/polyfill.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-debug/charset.js +0 -40
- package/dist/node_modules/flexsearch/dist/module-debug/common.js +0 -135
- package/dist/node_modules/flexsearch/dist/module-debug/compress.js +0 -64
- package/dist/node_modules/flexsearch/dist/module-debug/db/clickhouse/index.js +0 -569
- package/dist/node_modules/flexsearch/dist/module-debug/db/indexeddb/index.js +0 -516
- package/dist/node_modules/flexsearch/dist/module-debug/db/interface.js +0 -51
- package/dist/node_modules/flexsearch/dist/module-debug/db/mongodb/index.js +0 -571
- package/dist/node_modules/flexsearch/dist/module-debug/db/postgres/index.js +0 -624
- package/dist/node_modules/flexsearch/dist/module-debug/db/redis/index.js +0 -461
- package/dist/node_modules/flexsearch/dist/module-debug/db/sqlite/index.js +0 -707
- package/dist/node_modules/flexsearch/dist/module-debug/document/add.js +0 -229
- package/dist/node_modules/flexsearch/dist/module-debug/document/highlight.js +0 -458
- package/dist/node_modules/flexsearch/dist/module-debug/document/search.js +0 -537
- package/dist/node_modules/flexsearch/dist/module-debug/document.js +0 -489
- package/dist/node_modules/flexsearch/dist/module-debug/encoder.js +0 -457
- package/dist/node_modules/flexsearch/dist/module-debug/index/add.js +0 -229
- package/dist/node_modules/flexsearch/dist/module-debug/index/remove.js +0 -101
- package/dist/node_modules/flexsearch/dist/module-debug/index/search.js +0 -326
- package/dist/node_modules/flexsearch/dist/module-debug/index.js +0 -190
- package/dist/node_modules/flexsearch/dist/module-debug/intersect.js +0 -272
- package/dist/node_modules/flexsearch/dist/module-debug/keystore.js +0 -349
- package/dist/node_modules/flexsearch/dist/module-debug/lang/de.js +0 -43
- package/dist/node_modules/flexsearch/dist/module-debug/lang/en.js +0 -40
- package/dist/node_modules/flexsearch/dist/module-debug/lang/fr.js +0 -27
- package/dist/node_modules/flexsearch/dist/module-debug/preset.js +0 -56
- package/dist/node_modules/flexsearch/dist/module-debug/profiler.js +0 -9
- package/dist/node_modules/flexsearch/dist/module-debug/resolve/and.js +0 -84
- package/dist/node_modules/flexsearch/dist/module-debug/resolve/default.js +0 -76
- package/dist/node_modules/flexsearch/dist/module-debug/resolve/handler.js +0 -228
- package/dist/node_modules/flexsearch/dist/module-debug/resolve/not.js +0 -89
- package/dist/node_modules/flexsearch/dist/module-debug/resolve/or.js +0 -49
- package/dist/node_modules/flexsearch/dist/module-debug/resolve/xor.js +0 -124
- package/dist/node_modules/flexsearch/dist/module-debug/resolver.js +0 -261
- package/dist/node_modules/flexsearch/dist/module-debug/serialize.js +0 -468
- package/dist/node_modules/flexsearch/dist/module-debug/type.js +0 -305
- package/dist/node_modules/flexsearch/dist/module-debug/worker/handler.js +0 -85
- package/dist/node_modules/flexsearch/dist/module-debug/worker/node.js +0 -73
- package/dist/node_modules/flexsearch/dist/module-debug/worker/worker.js +0 -2
- package/dist/node_modules/flexsearch/dist/module-debug/worker.js +0 -148
- package/dist/node_modules/flexsearch/dist/module-min/async.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/bundle.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/cache.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/charset/cjk.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/charset/exact.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/charset/latin/advanced.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/charset/latin/balance.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/charset/latin/extra.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/charset/latin/soundex.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/charset/normalize.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/charset/polyfill.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/charset.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/common.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/compress.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/db/clickhouse/index.js +0 -130
- package/dist/node_modules/flexsearch/dist/module-min/db/indexeddb/index.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/db/interface.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/db/mongodb/index.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/db/postgres/index.js +0 -135
- package/dist/node_modules/flexsearch/dist/module-min/db/redis/index.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/db/sqlite/index.js +0 -119
- package/dist/node_modules/flexsearch/dist/module-min/document/add.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/document/highlight.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/document/search.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/document.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/encoder.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/index/add.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/index/remove.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/index/search.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/index.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/intersect.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/keystore.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/lang/de.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/lang/en.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/lang/fr.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/preset.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/profiler.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/resolve/and.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/resolve/default.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/resolve/handler.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/resolve/not.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/resolve/or.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/resolve/xor.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/resolver.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/serialize.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/type.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/worker/handler.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/worker/node.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/worker/worker.js +0 -1
- package/dist/node_modules/flexsearch/dist/module-min/worker.js +0 -1
- package/dist/node_modules/flexsearch/dist/node/node.js +0 -84
- package/dist/node_modules/flexsearch/index.d.ts +0 -1140
- package/dist/node_modules/flexsearch/node.js +0 -84
- package/dist/node_modules/flexsearch/package.json +0 -1
- package/dist/node_modules/flexsearch/src/async.js +0 -78
- package/dist/node_modules/flexsearch/src/bundle.js +0 -392
- package/dist/node_modules/flexsearch/src/cache.js +0 -125
- package/dist/node_modules/flexsearch/src/charset/cjk.js +0 -14
- package/dist/node_modules/flexsearch/src/charset/exact.js +0 -12
- package/dist/node_modules/flexsearch/src/charset/latin/advanced.js +0 -34
- package/dist/node_modules/flexsearch/src/charset/latin/balance.js +0 -47
- package/dist/node_modules/flexsearch/src/charset/latin/extra.js +0 -17
- package/dist/node_modules/flexsearch/src/charset/latin/soundex.js +0 -55
- package/dist/node_modules/flexsearch/src/charset/normalize.js +0 -11
- package/dist/node_modules/flexsearch/src/charset/old/arabic/default.js +0 -15
- package/dist/node_modules/flexsearch/src/charset/old/cjk/default.js +0 -13
- package/dist/node_modules/flexsearch/src/charset/old/cyrillic/default.js +0 -13
- package/dist/node_modules/flexsearch/src/charset/old/greek/default.js +0 -39
- package/dist/node_modules/flexsearch/src/charset/polyfill.js +0 -233
- package/dist/node_modules/flexsearch/src/charset.js +0 -41
- package/dist/node_modules/flexsearch/src/common.js +0 -142
- package/dist/node_modules/flexsearch/src/compress.js +0 -78
- package/dist/node_modules/flexsearch/src/config.js +0 -56
- package/dist/node_modules/flexsearch/src/db/clickhouse/index.js +0 -704
- package/dist/node_modules/flexsearch/src/db/clickhouse/package.json +0 -10
- package/dist/node_modules/flexsearch/src/db/indexeddb/index.js +0 -709
- package/dist/node_modules/flexsearch/src/db/interface.js +0 -62
- package/dist/node_modules/flexsearch/src/db/mongodb/index.js +0 -714
- package/dist/node_modules/flexsearch/src/db/mongodb/package.json +0 -10
- package/dist/node_modules/flexsearch/src/db/postgres/index.js +0 -1008
- package/dist/node_modules/flexsearch/src/db/postgres/package.json +0 -10
- package/dist/node_modules/flexsearch/src/db/redis/index.js +0 -587
- package/dist/node_modules/flexsearch/src/db/redis/package.json +0 -10
- package/dist/node_modules/flexsearch/src/db/sqlite/index.js +0 -848
- package/dist/node_modules/flexsearch/src/db/sqlite/package.json +0 -10
- package/dist/node_modules/flexsearch/src/document/add.js +0 -267
- package/dist/node_modules/flexsearch/src/document/highlight.js +0 -838
- package/dist/node_modules/flexsearch/src/document/search.js +0 -661
- package/dist/node_modules/flexsearch/src/document.js +0 -581
- package/dist/node_modules/flexsearch/src/encoder.js +0 -637
- package/dist/node_modules/flexsearch/src/index/add.js +0 -330
- package/dist/node_modules/flexsearch/src/index/remove.js +0 -173
- package/dist/node_modules/flexsearch/src/index/search.js +0 -436
- package/dist/node_modules/flexsearch/src/index.js +0 -290
- package/dist/node_modules/flexsearch/src/intersect.js +0 -718
- package/dist/node_modules/flexsearch/src/keystore.js +0 -441
- package/dist/node_modules/flexsearch/src/lang/de.js +0 -207
- package/dist/node_modules/flexsearch/src/lang/en.js +0 -337
- package/dist/node_modules/flexsearch/src/lang/fr.js +0 -233
- package/dist/node_modules/flexsearch/src/preset.js +0 -63
- package/dist/node_modules/flexsearch/src/profiler.js +0 -24
- package/dist/node_modules/flexsearch/src/resolve/and.js +0 -108
- package/dist/node_modules/flexsearch/src/resolve/default.js +0 -91
- package/dist/node_modules/flexsearch/src/resolve/handler.js +0 -287
- package/dist/node_modules/flexsearch/src/resolve/not.js +0 -104
- package/dist/node_modules/flexsearch/src/resolve/or.js +0 -65
- package/dist/node_modules/flexsearch/src/resolve/xor.js +0 -140
- package/dist/node_modules/flexsearch/src/resolver.js +0 -307
- package/dist/node_modules/flexsearch/src/serialize.js +0 -526
- package/dist/node_modules/flexsearch/src/type.js +0 -306
- package/dist/node_modules/flexsearch/src/worker/handler.js +0 -100
- package/dist/node_modules/flexsearch/src/worker/node.js +0 -84
- package/dist/node_modules/flexsearch/src/worker/worker.js +0 -2
- package/dist/node_modules/flexsearch/src/worker.js +0 -207
- package/dist/node_modules/flexsearch/task/babel.bundle.json +0 -47
- package/dist/node_modules/flexsearch/task/babel.debug.json +0 -47
- package/dist/node_modules/flexsearch/task/babel.js +0 -144
- package/dist/node_modules/flexsearch/task/babel.min.json +0 -49
- package/dist/node_modules/flexsearch/task/build.js +0 -513
- /package/dist/node_modules/{fast-glob/out/types/index.js → just-bash/node_modules/diff/libcjs/types.js} +0 -0
|
@@ -1,2926 +0,0 @@
|
|
|
1
|
-
/**!
|
|
2
|
-
* FlexSearch.js v0.8.212 (Bundle/Debug)
|
|
3
|
-
* Author and Copyright: Thomas Wilkerling
|
|
4
|
-
* Licence: Apache-2.0
|
|
5
|
-
* Hosted by Nextapps GmbH
|
|
6
|
-
* https://github.com/nextapps-de/flexsearch
|
|
7
|
-
*/
|
|
8
|
-
(function _f(self){'use strict';if(typeof module!=='undefined')self=module;else if(typeof process !== 'undefined')self=process;self._factory=_f;
|
|
9
|
-
var w;
|
|
10
|
-
function H(a, c, b) {
|
|
11
|
-
const e = typeof b, d = typeof a;
|
|
12
|
-
if (e !== "undefined") {
|
|
13
|
-
if (d !== "undefined") {
|
|
14
|
-
if (b) {
|
|
15
|
-
if (d === "function" && e === d) {
|
|
16
|
-
return function(k) {
|
|
17
|
-
return a(b(k));
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
c = a.constructor;
|
|
21
|
-
if (c === b.constructor) {
|
|
22
|
-
if (c === Array) {
|
|
23
|
-
return b.concat(a);
|
|
24
|
-
}
|
|
25
|
-
if (c === Map) {
|
|
26
|
-
var f = new Map(b);
|
|
27
|
-
for (var g of a) {
|
|
28
|
-
f.set(g[0], g[1]);
|
|
29
|
-
}
|
|
30
|
-
return f;
|
|
31
|
-
}
|
|
32
|
-
if (c === Set) {
|
|
33
|
-
g = new Set(b);
|
|
34
|
-
for (f of a.values()) {
|
|
35
|
-
g.add(f);
|
|
36
|
-
}
|
|
37
|
-
return g;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
return a;
|
|
42
|
-
}
|
|
43
|
-
return b;
|
|
44
|
-
}
|
|
45
|
-
return d === "undefined" ? c : a;
|
|
46
|
-
}
|
|
47
|
-
function aa(a, c) {
|
|
48
|
-
return typeof a === "undefined" ? c : a;
|
|
49
|
-
}
|
|
50
|
-
function I() {
|
|
51
|
-
return Object.create(null);
|
|
52
|
-
}
|
|
53
|
-
function N(a) {
|
|
54
|
-
return typeof a === "string";
|
|
55
|
-
}
|
|
56
|
-
function ba(a) {
|
|
57
|
-
return typeof a === "object";
|
|
58
|
-
}
|
|
59
|
-
function ca(a, c) {
|
|
60
|
-
if (N(c)) {
|
|
61
|
-
a = a[c];
|
|
62
|
-
} else {
|
|
63
|
-
for (let b = 0; a && b < c.length; b++) {
|
|
64
|
-
a = a[c[b]];
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
return a;
|
|
68
|
-
}
|
|
69
|
-
;const da = /[^\p{L}\p{N}]+/u, fa = /(\d{3})/g, ha = /(\D)(\d{3})/g, ia = /(\d{3})(\D)/g, ja = /[\u0300-\u036f]/g;
|
|
70
|
-
function ka(a = {}) {
|
|
71
|
-
if (!this || this.constructor !== ka) {
|
|
72
|
-
return new ka(...arguments);
|
|
73
|
-
}
|
|
74
|
-
if (arguments.length) {
|
|
75
|
-
for (a = 0; a < arguments.length; a++) {
|
|
76
|
-
this.assign(arguments[a]);
|
|
77
|
-
}
|
|
78
|
-
} else {
|
|
79
|
-
this.assign(a);
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
w = ka.prototype;
|
|
83
|
-
w.assign = function(a) {
|
|
84
|
-
this.normalize = H(a.normalize, !0, this.normalize);
|
|
85
|
-
let c = a.include, b = c || a.exclude || a.split, e;
|
|
86
|
-
if (b || b === "") {
|
|
87
|
-
if (typeof b === "object" && b.constructor !== RegExp) {
|
|
88
|
-
let d = "";
|
|
89
|
-
e = !c;
|
|
90
|
-
c || (d += "\\p{Z}");
|
|
91
|
-
b.letter && (d += "\\p{L}");
|
|
92
|
-
b.number && (d += "\\p{N}", e = !!c);
|
|
93
|
-
b.symbol && (d += "\\p{S}");
|
|
94
|
-
b.punctuation && (d += "\\p{P}");
|
|
95
|
-
b.control && (d += "\\p{C}");
|
|
96
|
-
if (b = b.char) {
|
|
97
|
-
d += typeof b === "object" ? b.join("") : b;
|
|
98
|
-
}
|
|
99
|
-
try {
|
|
100
|
-
this.split = new RegExp("[" + (c ? "^" : "") + d + "]+", "u");
|
|
101
|
-
} catch (f) {
|
|
102
|
-
console.error("Your split configuration:", b, "is not supported on this platform. It falls back to using simple whitespace splitter instead: /s+/."), this.split = /\s+/;
|
|
103
|
-
}
|
|
104
|
-
} else {
|
|
105
|
-
this.split = b, e = b === !1 || "a1a".split(b).length < 2;
|
|
106
|
-
}
|
|
107
|
-
this.numeric = H(a.numeric, e);
|
|
108
|
-
} else {
|
|
109
|
-
try {
|
|
110
|
-
this.split = H(this.split, da);
|
|
111
|
-
} catch (d) {
|
|
112
|
-
console.warn("This platform does not support unicode regex. It falls back to using simple whitespace splitter instead: /s+/."), this.split = /\s+/;
|
|
113
|
-
}
|
|
114
|
-
this.numeric = H(a.numeric, H(this.numeric, !0));
|
|
115
|
-
}
|
|
116
|
-
this.prepare = H(a.prepare, null, this.prepare);
|
|
117
|
-
this.finalize = H(a.finalize, null, this.finalize);
|
|
118
|
-
b = a.filter;
|
|
119
|
-
this.filter = typeof b === "function" ? b : H(b && new Set(b), null, this.filter);
|
|
120
|
-
this.dedupe = H(a.dedupe, !0, this.dedupe);
|
|
121
|
-
this.matcher = H((b = a.matcher) && new Map(b), null, this.matcher);
|
|
122
|
-
this.mapper = H((b = a.mapper) && new Map(b), null, this.mapper);
|
|
123
|
-
this.stemmer = H((b = a.stemmer) && new Map(b), null, this.stemmer);
|
|
124
|
-
this.replacer = H(a.replacer, null, this.replacer);
|
|
125
|
-
this.minlength = H(a.minlength, 1, this.minlength);
|
|
126
|
-
this.maxlength = H(a.maxlength, 1024, this.maxlength);
|
|
127
|
-
this.rtl = H(a.rtl, !1, this.rtl);
|
|
128
|
-
if (this.cache = b = H(a.cache, !0, this.cache)) {
|
|
129
|
-
this.F = null, this.L = typeof b === "number" ? b : 2e5, this.B = new Map(), this.D = new Map(), this.I = this.H = 128;
|
|
130
|
-
}
|
|
131
|
-
this.h = "";
|
|
132
|
-
this.J = null;
|
|
133
|
-
this.A = "";
|
|
134
|
-
this.K = null;
|
|
135
|
-
if (this.matcher) {
|
|
136
|
-
for (const d of this.matcher.keys()) {
|
|
137
|
-
this.h += (this.h ? "|" : "") + d;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
if (this.stemmer) {
|
|
141
|
-
for (const d of this.stemmer.keys()) {
|
|
142
|
-
this.A += (this.A ? "|" : "") + d;
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
return this;
|
|
146
|
-
};
|
|
147
|
-
w.addStemmer = function(a, c) {
|
|
148
|
-
this.stemmer || (this.stemmer = new Map());
|
|
149
|
-
this.stemmer.set(a, c);
|
|
150
|
-
this.A += (this.A ? "|" : "") + a;
|
|
151
|
-
this.K = null;
|
|
152
|
-
this.cache && la(this);
|
|
153
|
-
return this;
|
|
154
|
-
};
|
|
155
|
-
w.addFilter = function(a) {
|
|
156
|
-
typeof a === "function" ? this.filter = a : (this.filter || (this.filter = new Set()), this.filter.add(a));
|
|
157
|
-
this.cache && la(this);
|
|
158
|
-
return this;
|
|
159
|
-
};
|
|
160
|
-
w.addMapper = function(a, c) {
|
|
161
|
-
if (typeof a === "object") {
|
|
162
|
-
return this.addReplacer(a, c);
|
|
163
|
-
}
|
|
164
|
-
if (a.length > 1) {
|
|
165
|
-
return this.addMatcher(a, c);
|
|
166
|
-
}
|
|
167
|
-
this.mapper || (this.mapper = new Map());
|
|
168
|
-
this.mapper.set(a, c);
|
|
169
|
-
this.cache && la(this);
|
|
170
|
-
return this;
|
|
171
|
-
};
|
|
172
|
-
w.addMatcher = function(a, c) {
|
|
173
|
-
if (typeof a === "object") {
|
|
174
|
-
return this.addReplacer(a, c);
|
|
175
|
-
}
|
|
176
|
-
if (a.length < 2 && (this.dedupe || this.mapper)) {
|
|
177
|
-
return this.addMapper(a, c);
|
|
178
|
-
}
|
|
179
|
-
this.matcher || (this.matcher = new Map());
|
|
180
|
-
this.matcher.set(a, c);
|
|
181
|
-
this.h += (this.h ? "|" : "") + a;
|
|
182
|
-
this.J = null;
|
|
183
|
-
this.cache && la(this);
|
|
184
|
-
return this;
|
|
185
|
-
};
|
|
186
|
-
w.addReplacer = function(a, c) {
|
|
187
|
-
if (typeof a === "string") {
|
|
188
|
-
return this.addMatcher(a, c);
|
|
189
|
-
}
|
|
190
|
-
this.replacer || (this.replacer = []);
|
|
191
|
-
this.replacer.push(a, c);
|
|
192
|
-
this.cache && la(this);
|
|
193
|
-
return this;
|
|
194
|
-
};
|
|
195
|
-
w.encode = function(a, c) {
|
|
196
|
-
if (this.cache && a.length <= this.H) {
|
|
197
|
-
if (this.F) {
|
|
198
|
-
if (this.B.has(a)) {
|
|
199
|
-
return this.B.get(a);
|
|
200
|
-
}
|
|
201
|
-
} else {
|
|
202
|
-
this.F = setTimeout(la, 50, this);
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
this.normalize && (typeof this.normalize === "function" ? a = this.normalize(a) : a = ja ? a.normalize("NFKD").replace(ja, "").toLowerCase() : a.toLowerCase());
|
|
206
|
-
this.prepare && (a = this.prepare(a));
|
|
207
|
-
this.numeric && a.length > 3 && (a = a.replace(ha, "$1 $2").replace(ia, "$1 $2").replace(fa, "$1 "));
|
|
208
|
-
const b = !(this.dedupe || this.mapper || this.filter || this.matcher || this.stemmer || this.replacer);
|
|
209
|
-
let e = [], d = I(), f, g, k = this.split || this.split === "" ? a.split(this.split) : [a];
|
|
210
|
-
for (let l = 0, m, p; l < k.length; l++) {
|
|
211
|
-
if ((m = p = k[l]) && !(m.length < this.minlength || m.length > this.maxlength)) {
|
|
212
|
-
if (c) {
|
|
213
|
-
if (d[m]) {
|
|
214
|
-
continue;
|
|
215
|
-
}
|
|
216
|
-
d[m] = 1;
|
|
217
|
-
} else {
|
|
218
|
-
if (f === m) {
|
|
219
|
-
continue;
|
|
220
|
-
}
|
|
221
|
-
f = m;
|
|
222
|
-
}
|
|
223
|
-
if (b) {
|
|
224
|
-
e.push(m);
|
|
225
|
-
} else {
|
|
226
|
-
if (!this.filter || (typeof this.filter === "function" ? this.filter(m) : !this.filter.has(m))) {
|
|
227
|
-
if (this.cache && m.length <= this.I) {
|
|
228
|
-
if (this.F) {
|
|
229
|
-
var h = this.D.get(m);
|
|
230
|
-
if (h || h === "") {
|
|
231
|
-
h && e.push(h);
|
|
232
|
-
continue;
|
|
233
|
-
}
|
|
234
|
-
} else {
|
|
235
|
-
this.F = setTimeout(la, 50, this);
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
if (this.stemmer) {
|
|
239
|
-
this.K || (this.K = new RegExp("(?!^)(" + this.A + ")$"));
|
|
240
|
-
let u;
|
|
241
|
-
for (; u !== m && m.length > 2;) {
|
|
242
|
-
u = m, m = m.replace(this.K, r => this.stemmer.get(r));
|
|
243
|
-
}
|
|
244
|
-
}
|
|
245
|
-
if (m && (this.mapper || this.dedupe && m.length > 1)) {
|
|
246
|
-
h = "";
|
|
247
|
-
for (let u = 0, r = "", t, n; u < m.length; u++) {
|
|
248
|
-
t = m.charAt(u), t === r && this.dedupe || ((n = this.mapper && this.mapper.get(t)) || n === "" ? n === r && this.dedupe || !(r = n) || (h += n) : h += r = t);
|
|
249
|
-
}
|
|
250
|
-
m = h;
|
|
251
|
-
}
|
|
252
|
-
this.matcher && m.length > 1 && (this.J || (this.J = new RegExp("(" + this.h + ")", "g")), m = m.replace(this.J, u => this.matcher.get(u)));
|
|
253
|
-
if (m && this.replacer) {
|
|
254
|
-
for (h = 0; m && h < this.replacer.length; h += 2) {
|
|
255
|
-
m = m.replace(this.replacer[h], this.replacer[h + 1]);
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
this.cache && p.length <= this.I && (this.D.set(p, m), this.D.size > this.L && (this.D.clear(), this.I = this.I / 1.1 | 0));
|
|
259
|
-
if (m) {
|
|
260
|
-
if (m !== p) {
|
|
261
|
-
if (c) {
|
|
262
|
-
if (d[m]) {
|
|
263
|
-
continue;
|
|
264
|
-
}
|
|
265
|
-
d[m] = 1;
|
|
266
|
-
} else {
|
|
267
|
-
if (g === m) {
|
|
268
|
-
continue;
|
|
269
|
-
}
|
|
270
|
-
g = m;
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
e.push(m);
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
this.finalize && (e = this.finalize(e) || e);
|
|
280
|
-
this.cache && a.length <= this.H && (this.B.set(a, e), this.B.size > this.L && (this.B.clear(), this.H = this.H / 1.1 | 0));
|
|
281
|
-
return e;
|
|
282
|
-
};
|
|
283
|
-
function la(a) {
|
|
284
|
-
a.F = null;
|
|
285
|
-
a.B.clear();
|
|
286
|
-
a.D.clear();
|
|
287
|
-
}
|
|
288
|
-
;function ma(a, c, b) {
|
|
289
|
-
b || (c || typeof a !== "object" ? typeof c === "object" && (b = c, c = 0) : b = a);
|
|
290
|
-
b && (a = b.query || a, c = b.limit || c);
|
|
291
|
-
let e = "" + (c || 0);
|
|
292
|
-
b && (e += (b.offset || 0) + !!b.context + !!b.suggest + (b.resolve !== !1) + (b.resolution || this.resolution) + (b.boost || 0));
|
|
293
|
-
a = ("" + a).toLowerCase();
|
|
294
|
-
this.cache || (this.cache = new na());
|
|
295
|
-
let d = this.cache.get(a + e);
|
|
296
|
-
if (!d) {
|
|
297
|
-
const f = b && b.cache;
|
|
298
|
-
f && (b.cache = !1);
|
|
299
|
-
d = this.search(a, c, b);
|
|
300
|
-
f && (b.cache = f);
|
|
301
|
-
this.cache.set(a + e, d);
|
|
302
|
-
}
|
|
303
|
-
return d;
|
|
304
|
-
}
|
|
305
|
-
function na(a) {
|
|
306
|
-
this.limit = a && a !== !0 ? a : 1000;
|
|
307
|
-
this.cache = new Map();
|
|
308
|
-
this.h = "";
|
|
309
|
-
}
|
|
310
|
-
na.prototype.set = function(a, c) {
|
|
311
|
-
this.cache.set(this.h = a, c);
|
|
312
|
-
this.cache.size > this.limit && this.cache.delete(this.cache.keys().next().value);
|
|
313
|
-
};
|
|
314
|
-
na.prototype.get = function(a) {
|
|
315
|
-
const c = this.cache.get(a);
|
|
316
|
-
c && this.h !== a && (this.cache.delete(a), this.cache.set(this.h = a, c));
|
|
317
|
-
return c;
|
|
318
|
-
};
|
|
319
|
-
na.prototype.remove = function(a) {
|
|
320
|
-
for (const c of this.cache) {
|
|
321
|
-
const b = c[0];
|
|
322
|
-
c[1].includes(a) && this.cache.delete(b);
|
|
323
|
-
}
|
|
324
|
-
};
|
|
325
|
-
na.prototype.clear = function() {
|
|
326
|
-
this.cache.clear();
|
|
327
|
-
this.h = "";
|
|
328
|
-
};
|
|
329
|
-
const oa = {normalize:!1, numeric:!1, dedupe:!1};
|
|
330
|
-
const ra = {};
|
|
331
|
-
const sa = new Map([["b", "p"], ["v", "f"], ["w", "f"], ["z", "s"], ["x", "s"], ["d", "t"], ["n", "m"], ["c", "k"], ["g", "k"], ["j", "k"], ["q", "k"], ["i", "e"], ["y", "e"], ["u", "o"]]);
|
|
332
|
-
const ta = new Map([["ae", "a"], ["oe", "o"], ["sh", "s"], ["kh", "k"], ["th", "t"], ["ph", "f"], ["pf", "f"]]), ua = [/([^aeo])h(.)/g, "$1$2", /([aeo])h([^aeo]|$)/g, "$1$2", /(.)\1+/g, "$1"];
|
|
333
|
-
const va = {a:"", e:"", i:"", o:"", u:"", y:"", b:1, f:1, p:1, v:1, c:2, g:2, j:2, k:2, q:2, s:2, x:2, z:2, "\u00df":2, d:3, t:3, l:4, m:5, n:5, r:6};
|
|
334
|
-
var wa = {Exact:oa, Default:ra, Normalize:ra, LatinBalance:{mapper:sa}, LatinAdvanced:{mapper:sa, matcher:ta, replacer:ua}, LatinExtra:{mapper:sa, replacer:ua.concat([/(?!^)[aeo]/g, ""]), matcher:ta}, LatinSoundex:{dedupe:!1, include:{letter:!0}, finalize:function(a) {
|
|
335
|
-
for (let b = 0; b < a.length; b++) {
|
|
336
|
-
var c = a[b];
|
|
337
|
-
let e = c.charAt(0), d = va[e];
|
|
338
|
-
for (let f = 1, g; f < c.length && (g = c.charAt(f), g === "h" || g === "w" || !(g = va[g]) || g === d || (e += g, d = g, e.length !== 4)); f++) {
|
|
339
|
-
}
|
|
340
|
-
a[b] = e;
|
|
341
|
-
}
|
|
342
|
-
}}, CJK:{split:""}, LatinExact:oa, LatinDefault:ra, LatinSimple:ra};
|
|
343
|
-
function xa(a, c, b, e) {
|
|
344
|
-
let d = [];
|
|
345
|
-
for (let f = 0, g; f < a.index.length; f++) {
|
|
346
|
-
if (g = a.index[f], c >= g.length) {
|
|
347
|
-
c -= g.length;
|
|
348
|
-
} else {
|
|
349
|
-
c = g[e ? "splice" : "slice"](c, b);
|
|
350
|
-
const k = c.length;
|
|
351
|
-
if (k && (d = d.length ? d.concat(c) : c, b -= k, e && (a.length -= k), !b)) {
|
|
352
|
-
break;
|
|
353
|
-
}
|
|
354
|
-
c = 0;
|
|
355
|
-
}
|
|
356
|
-
}
|
|
357
|
-
return d;
|
|
358
|
-
}
|
|
359
|
-
function Aa(a) {
|
|
360
|
-
if (!this || this.constructor !== Aa) {
|
|
361
|
-
return new Aa(a);
|
|
362
|
-
}
|
|
363
|
-
this.index = a ? [a] : [];
|
|
364
|
-
this.length = a ? a.length : 0;
|
|
365
|
-
const c = this;
|
|
366
|
-
return new Proxy([], {get(b, e) {
|
|
367
|
-
if (e === "length") {
|
|
368
|
-
return c.length;
|
|
369
|
-
}
|
|
370
|
-
if (e === "push") {
|
|
371
|
-
return function(d) {
|
|
372
|
-
c.index[c.index.length - 1].push(d);
|
|
373
|
-
c.length++;
|
|
374
|
-
};
|
|
375
|
-
}
|
|
376
|
-
if (e === "pop") {
|
|
377
|
-
return function() {
|
|
378
|
-
if (c.length) {
|
|
379
|
-
return c.length--, c.index[c.index.length - 1].pop();
|
|
380
|
-
}
|
|
381
|
-
};
|
|
382
|
-
}
|
|
383
|
-
if (e === "indexOf") {
|
|
384
|
-
return function(d) {
|
|
385
|
-
let f = 0;
|
|
386
|
-
for (let g = 0, k, h; g < c.index.length; g++) {
|
|
387
|
-
k = c.index[g];
|
|
388
|
-
h = k.indexOf(d);
|
|
389
|
-
if (h >= 0) {
|
|
390
|
-
return f + h;
|
|
391
|
-
}
|
|
392
|
-
f += k.length;
|
|
393
|
-
}
|
|
394
|
-
return -1;
|
|
395
|
-
};
|
|
396
|
-
}
|
|
397
|
-
if (e === "includes") {
|
|
398
|
-
return function(d) {
|
|
399
|
-
for (let f = 0; f < c.index.length; f++) {
|
|
400
|
-
if (c.index[f].includes(d)) {
|
|
401
|
-
return !0;
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
return !1;
|
|
405
|
-
};
|
|
406
|
-
}
|
|
407
|
-
if (e === "slice") {
|
|
408
|
-
return function(d, f) {
|
|
409
|
-
return xa(c, d || 0, f || c.length, !1);
|
|
410
|
-
};
|
|
411
|
-
}
|
|
412
|
-
if (e === "splice") {
|
|
413
|
-
return function(d, f) {
|
|
414
|
-
return xa(c, d || 0, f || c.length, !0);
|
|
415
|
-
};
|
|
416
|
-
}
|
|
417
|
-
if (e === "constructor") {
|
|
418
|
-
return Array;
|
|
419
|
-
}
|
|
420
|
-
if (typeof e !== "symbol") {
|
|
421
|
-
return (b = c.index[e / 2 ** 31 | 0]) && b[e];
|
|
422
|
-
}
|
|
423
|
-
}, set(b, e, d) {
|
|
424
|
-
b = e / 2 ** 31 | 0;
|
|
425
|
-
(c.index[b] || (c.index[b] = []))[e] = d;
|
|
426
|
-
c.length++;
|
|
427
|
-
return !0;
|
|
428
|
-
}});
|
|
429
|
-
}
|
|
430
|
-
Aa.prototype.clear = function() {
|
|
431
|
-
this.index.length = 0;
|
|
432
|
-
};
|
|
433
|
-
Aa.prototype.push = function() {
|
|
434
|
-
};
|
|
435
|
-
function Q(a = 8) {
|
|
436
|
-
if (!this || this.constructor !== Q) {
|
|
437
|
-
return new Q(a);
|
|
438
|
-
}
|
|
439
|
-
this.index = I();
|
|
440
|
-
this.h = [];
|
|
441
|
-
this.size = 0;
|
|
442
|
-
a > 32 ? (this.B = Ba, this.A = BigInt(a)) : (this.B = Ca, this.A = a);
|
|
443
|
-
}
|
|
444
|
-
Q.prototype.get = function(a) {
|
|
445
|
-
const c = this.index[this.B(a)];
|
|
446
|
-
return c && c.get(a);
|
|
447
|
-
};
|
|
448
|
-
Q.prototype.set = function(a, c) {
|
|
449
|
-
var b = this.B(a);
|
|
450
|
-
let e = this.index[b];
|
|
451
|
-
e ? (b = e.size, e.set(a, c), (b -= e.size) && this.size++) : (this.index[b] = e = new Map([[a, c]]), this.h.push(e), this.size++);
|
|
452
|
-
};
|
|
453
|
-
function R(a = 8) {
|
|
454
|
-
if (!this || this.constructor !== R) {
|
|
455
|
-
return new R(a);
|
|
456
|
-
}
|
|
457
|
-
this.index = I();
|
|
458
|
-
this.h = [];
|
|
459
|
-
this.size = 0;
|
|
460
|
-
a > 32 ? (this.B = Ba, this.A = BigInt(a)) : (this.B = Ca, this.A = a);
|
|
461
|
-
}
|
|
462
|
-
R.prototype.add = function(a) {
|
|
463
|
-
var c = this.B(a);
|
|
464
|
-
let b = this.index[c];
|
|
465
|
-
b ? (c = b.size, b.add(a), (c -= b.size) && this.size++) : (this.index[c] = b = new Set([a]), this.h.push(b), this.size++);
|
|
466
|
-
};
|
|
467
|
-
w = Q.prototype;
|
|
468
|
-
w.has = R.prototype.has = function(a) {
|
|
469
|
-
const c = this.index[this.B(a)];
|
|
470
|
-
return c && c.has(a);
|
|
471
|
-
};
|
|
472
|
-
w.delete = R.prototype.delete = function(a) {
|
|
473
|
-
const c = this.index[this.B(a)];
|
|
474
|
-
c && c.delete(a) && this.size--;
|
|
475
|
-
};
|
|
476
|
-
w.clear = R.prototype.clear = function() {
|
|
477
|
-
this.index = I();
|
|
478
|
-
this.h = [];
|
|
479
|
-
this.size = 0;
|
|
480
|
-
};
|
|
481
|
-
w.values = R.prototype.values = function*() {
|
|
482
|
-
for (let a = 0; a < this.h.length; a++) {
|
|
483
|
-
for (let c of this.h[a].values()) {
|
|
484
|
-
yield c;
|
|
485
|
-
}
|
|
486
|
-
}
|
|
487
|
-
};
|
|
488
|
-
w.keys = R.prototype.keys = function*() {
|
|
489
|
-
for (let a = 0; a < this.h.length; a++) {
|
|
490
|
-
for (let c of this.h[a].keys()) {
|
|
491
|
-
yield c;
|
|
492
|
-
}
|
|
493
|
-
}
|
|
494
|
-
};
|
|
495
|
-
w.entries = R.prototype.entries = function*() {
|
|
496
|
-
for (let a = 0; a < this.h.length; a++) {
|
|
497
|
-
for (let c of this.h[a].entries()) {
|
|
498
|
-
yield c;
|
|
499
|
-
}
|
|
500
|
-
}
|
|
501
|
-
};
|
|
502
|
-
function Ca(a) {
|
|
503
|
-
let c = 2 ** this.A - 1;
|
|
504
|
-
if (typeof a == "number") {
|
|
505
|
-
return a & c;
|
|
506
|
-
}
|
|
507
|
-
let b = 0, e = this.A + 1;
|
|
508
|
-
for (let d = 0; d < a.length; d++) {
|
|
509
|
-
b = (b * e ^ a.charCodeAt(d)) & c;
|
|
510
|
-
}
|
|
511
|
-
return this.A === 32 ? b + 2 ** 31 : b;
|
|
512
|
-
}
|
|
513
|
-
function Ba(a) {
|
|
514
|
-
let c = BigInt(2) ** this.A - BigInt(1);
|
|
515
|
-
var b = typeof a;
|
|
516
|
-
if (b === "bigint") {
|
|
517
|
-
return a & c;
|
|
518
|
-
}
|
|
519
|
-
if (b === "number") {
|
|
520
|
-
return BigInt(a) & c;
|
|
521
|
-
}
|
|
522
|
-
b = BigInt(0);
|
|
523
|
-
let e = this.A + BigInt(1);
|
|
524
|
-
for (let d = 0; d < a.length; d++) {
|
|
525
|
-
b = (b * e ^ BigInt(a.charCodeAt(d))) & c;
|
|
526
|
-
}
|
|
527
|
-
return b;
|
|
528
|
-
}
|
|
529
|
-
;let Da, S;
|
|
530
|
-
async function Ea(a) {
|
|
531
|
-
a = a.data;
|
|
532
|
-
var c = a.task;
|
|
533
|
-
const b = a.id;
|
|
534
|
-
let e = a.args;
|
|
535
|
-
switch(c) {
|
|
536
|
-
case "init":
|
|
537
|
-
S = a.options || {};
|
|
538
|
-
(c = a.factory) ? (Function("return " + c)()(self), Da = new self.FlexSearch.Index(S), delete self.FlexSearch) : Da = new T(S);
|
|
539
|
-
postMessage({id:b});
|
|
540
|
-
break;
|
|
541
|
-
default:
|
|
542
|
-
let d;
|
|
543
|
-
if (c === "export") {
|
|
544
|
-
if (!S.export || typeof S.export !== "function") {
|
|
545
|
-
throw Error('Either no extern configuration provided for the Worker-Index or no method was defined on the config property "export".');
|
|
546
|
-
}
|
|
547
|
-
e[1] ? (e[0] = S.export, e[2] = 0, e[3] = 1) : e = null;
|
|
548
|
-
}
|
|
549
|
-
if (c === "import") {
|
|
550
|
-
if (!S.import || typeof S.import !== "function") {
|
|
551
|
-
throw Error('Either no extern configuration provided for the Worker-Index or no method was defined on the config property "import".');
|
|
552
|
-
}
|
|
553
|
-
e[0] && (a = await S.import.call(Da, e[0]), Da.import(e[0], a));
|
|
554
|
-
} else {
|
|
555
|
-
(d = e && Da[c].apply(Da, e)) && d.then && (d = await d), d && d.await && (d = await d.await), c === "search" && d.result && (d = d.result);
|
|
556
|
-
}
|
|
557
|
-
postMessage(c === "search" ? {id:b, msg:d} : {id:b});
|
|
558
|
-
}
|
|
559
|
-
}
|
|
560
|
-
;function Fa(a) {
|
|
561
|
-
Ga.call(a, "add");
|
|
562
|
-
Ga.call(a, "append");
|
|
563
|
-
Ga.call(a, "search");
|
|
564
|
-
Ga.call(a, "update");
|
|
565
|
-
Ga.call(a, "remove");
|
|
566
|
-
Ga.call(a, "searchCache");
|
|
567
|
-
}
|
|
568
|
-
let Ha, Ia, Ja;
|
|
569
|
-
function Ka() {
|
|
570
|
-
Ha = Ja = 0;
|
|
571
|
-
}
|
|
572
|
-
function Ga(a) {
|
|
573
|
-
this[a + "Async"] = function() {
|
|
574
|
-
const c = arguments;
|
|
575
|
-
var b = c[c.length - 1];
|
|
576
|
-
let e;
|
|
577
|
-
typeof b === "function" && (e = b, delete c[c.length - 1]);
|
|
578
|
-
Ha ? Ja || (Ja = Date.now() - Ia >= this.priority * this.priority * 3) : (Ha = setTimeout(Ka, 0), Ia = Date.now());
|
|
579
|
-
if (Ja) {
|
|
580
|
-
const f = this;
|
|
581
|
-
return new Promise(g => {
|
|
582
|
-
setTimeout(function() {
|
|
583
|
-
g(f[a + "Async"].apply(f, c));
|
|
584
|
-
}, 0);
|
|
585
|
-
});
|
|
586
|
-
}
|
|
587
|
-
const d = this[a].apply(this, c);
|
|
588
|
-
b = d.then ? d : new Promise(f => f(d));
|
|
589
|
-
e && b.then(e);
|
|
590
|
-
return b;
|
|
591
|
-
};
|
|
592
|
-
}
|
|
593
|
-
;let V = 0;
|
|
594
|
-
function La(a = {}, c) {
|
|
595
|
-
function b(k) {
|
|
596
|
-
function h(l) {
|
|
597
|
-
l = l.data || l;
|
|
598
|
-
const m = l.id, p = m && f.h[m];
|
|
599
|
-
p && (p(l.msg), delete f.h[m]);
|
|
600
|
-
}
|
|
601
|
-
this.worker = k;
|
|
602
|
-
this.h = I();
|
|
603
|
-
if (this.worker) {
|
|
604
|
-
d ? this.worker.on("message", h) : this.worker.onmessage = h;
|
|
605
|
-
if (a.config) {
|
|
606
|
-
return new Promise(function(l) {
|
|
607
|
-
V > 1e9 && (V = 0);
|
|
608
|
-
f.h[++V] = function() {
|
|
609
|
-
l(f);
|
|
610
|
-
};
|
|
611
|
-
f.worker.postMessage({id:V, task:"init", factory:e, options:a});
|
|
612
|
-
});
|
|
613
|
-
}
|
|
614
|
-
this.priority = a.priority || 4;
|
|
615
|
-
this.encoder = c || null;
|
|
616
|
-
this.worker.postMessage({task:"init", factory:e, options:a});
|
|
617
|
-
return this;
|
|
618
|
-
}
|
|
619
|
-
console.warn("Worker is not available on this platform. Please report on Github: https://github.com/nextapps-de/flexsearch/issues");
|
|
620
|
-
}
|
|
621
|
-
if (!this || this.constructor !== La) {
|
|
622
|
-
return new La(a);
|
|
623
|
-
}
|
|
624
|
-
let e = typeof self !== "undefined" ? self._factory : typeof window !== "undefined" ? window._factory : null;
|
|
625
|
-
e && (e = e.toString());
|
|
626
|
-
const d = typeof window === "undefined", f = this, g = Ma(e, d, a.worker);
|
|
627
|
-
return g.then ? g.then(function(k) {
|
|
628
|
-
return b.call(f, k);
|
|
629
|
-
}) : b.call(this, g);
|
|
630
|
-
}
|
|
631
|
-
W("add");
|
|
632
|
-
W("append");
|
|
633
|
-
W("search");
|
|
634
|
-
W("update");
|
|
635
|
-
W("remove");
|
|
636
|
-
W("clear");
|
|
637
|
-
W("export");
|
|
638
|
-
W("import");
|
|
639
|
-
La.prototype.searchCache = ma;
|
|
640
|
-
Fa(La.prototype);
|
|
641
|
-
function W(a) {
|
|
642
|
-
La.prototype[a] = function() {
|
|
643
|
-
const c = this, b = [].slice.call(arguments);
|
|
644
|
-
var e = b[b.length - 1];
|
|
645
|
-
let d;
|
|
646
|
-
typeof e === "function" && (d = e, b.pop());
|
|
647
|
-
e = new Promise(function(f) {
|
|
648
|
-
a === "export" && typeof b[0] === "function" && (b[0] = null);
|
|
649
|
-
V > 1e9 && (V = 0);
|
|
650
|
-
c.h[++V] = f;
|
|
651
|
-
c.worker.postMessage({task:a, id:V, args:b});
|
|
652
|
-
});
|
|
653
|
-
return d ? (e.then(d), this) : e;
|
|
654
|
-
};
|
|
655
|
-
}
|
|
656
|
-
function Ma(a, c, b) {
|
|
657
|
-
return c ? typeof module !== "undefined" ? new(require("worker_threads")["Worker"])(__dirname+"/node/node.js") : import("worker_threads").then(function(worker){return new worker["Worker"]((1,eval)("import.meta.dirname")+"/node/node.mjs")}) : a ? new window.Worker(URL.createObjectURL(new Blob(["onmessage=" + Ea.toString()], {type:"text/javascript"}))) : new window.Worker(typeof b === "string" ? b : (0,eval)("import.meta.url").replace("/worker.js", "/worker/worker.js").replace("flexsearch.bundle.module.min.js",
|
|
658
|
-
"module/worker/worker.js").replace("flexsearch.bundle.module.min.mjs", "module/worker/worker.js"), {type:"module"});
|
|
659
|
-
}
|
|
660
|
-
;Na.prototype.add = function(a, c, b) {
|
|
661
|
-
ba(a) && (c = a, a = ca(c, this.key));
|
|
662
|
-
if (c && (a || a === 0)) {
|
|
663
|
-
if (!b && this.reg.has(a)) {
|
|
664
|
-
return this.update(a, c);
|
|
665
|
-
}
|
|
666
|
-
for (let k = 0, h; k < this.field.length; k++) {
|
|
667
|
-
h = this.B[k];
|
|
668
|
-
var e = this.index.get(this.field[k]);
|
|
669
|
-
if (typeof h === "function") {
|
|
670
|
-
var d = h(c);
|
|
671
|
-
d && e.add(a, d, b, !0);
|
|
672
|
-
} else {
|
|
673
|
-
if (d = h.G, !d || d(c)) {
|
|
674
|
-
h.constructor === String ? h = ["" + h] : N(h) && (h = [h]), Oa(c, h, this.D, 0, e, a, h[0], b);
|
|
675
|
-
}
|
|
676
|
-
}
|
|
677
|
-
}
|
|
678
|
-
if (this.tag) {
|
|
679
|
-
for (e = 0; e < this.A.length; e++) {
|
|
680
|
-
var f = this.A[e], g = this.F[e];
|
|
681
|
-
d = this.tag.get(g);
|
|
682
|
-
let k = I();
|
|
683
|
-
if (typeof f === "function") {
|
|
684
|
-
if (f = f(c), !f) {
|
|
685
|
-
continue;
|
|
686
|
-
}
|
|
687
|
-
} else {
|
|
688
|
-
const h = f.G;
|
|
689
|
-
if (h && !h(c)) {
|
|
690
|
-
continue;
|
|
691
|
-
}
|
|
692
|
-
f.constructor === String && (f = "" + f);
|
|
693
|
-
f = ca(c, f);
|
|
694
|
-
}
|
|
695
|
-
if (d && f) {
|
|
696
|
-
N(f) && (f = [f]);
|
|
697
|
-
for (let h = 0, l, m; h < f.length; h++) {
|
|
698
|
-
if (l = f[h], !k[l] && (k[l] = 1, (g = d.get(l)) ? m = g : d.set(l, m = []), !b || !m.includes(a))) {
|
|
699
|
-
if (m.length === 2 ** 31 - 1) {
|
|
700
|
-
g = new Aa(m);
|
|
701
|
-
if (this.fastupdate) {
|
|
702
|
-
for (let p of this.reg.values()) {
|
|
703
|
-
p.includes(m) && (p[p.indexOf(m)] = g);
|
|
704
|
-
}
|
|
705
|
-
}
|
|
706
|
-
d.set(l, m = g);
|
|
707
|
-
}
|
|
708
|
-
m.push(a);
|
|
709
|
-
this.fastupdate && ((g = this.reg.get(a)) ? g.push(m) : this.reg.set(a, [m]));
|
|
710
|
-
}
|
|
711
|
-
}
|
|
712
|
-
} else {
|
|
713
|
-
d || console.warn("Tag '" + g + "' was not found");
|
|
714
|
-
}
|
|
715
|
-
}
|
|
716
|
-
}
|
|
717
|
-
if (this.store && (!b || !this.store.has(a))) {
|
|
718
|
-
let k;
|
|
719
|
-
if (this.h) {
|
|
720
|
-
k = I();
|
|
721
|
-
for (let h = 0, l; h < this.h.length; h++) {
|
|
722
|
-
l = this.h[h];
|
|
723
|
-
if ((b = l.G) && !b(c)) {
|
|
724
|
-
continue;
|
|
725
|
-
}
|
|
726
|
-
let m;
|
|
727
|
-
if (typeof l === "function") {
|
|
728
|
-
m = l(c);
|
|
729
|
-
if (!m) {
|
|
730
|
-
continue;
|
|
731
|
-
}
|
|
732
|
-
l = [l.O];
|
|
733
|
-
} else if (N(l) || l.constructor === String) {
|
|
734
|
-
k[l] = c[l];
|
|
735
|
-
continue;
|
|
736
|
-
}
|
|
737
|
-
Ra(c, k, l, 0, l[0], m);
|
|
738
|
-
}
|
|
739
|
-
}
|
|
740
|
-
this.store.set(a, k || c);
|
|
741
|
-
}
|
|
742
|
-
this.worker && (this.fastupdate || this.reg.add(a));
|
|
743
|
-
}
|
|
744
|
-
return this;
|
|
745
|
-
};
|
|
746
|
-
function Ra(a, c, b, e, d, f) {
|
|
747
|
-
a = a[d];
|
|
748
|
-
if (e === b.length - 1) {
|
|
749
|
-
c[d] = f || a;
|
|
750
|
-
} else if (a) {
|
|
751
|
-
if (a.constructor === Array) {
|
|
752
|
-
for (c = c[d] = Array(a.length), d = 0; d < a.length; d++) {
|
|
753
|
-
Ra(a, c, b, e, d);
|
|
754
|
-
}
|
|
755
|
-
} else {
|
|
756
|
-
c = c[d] || (c[d] = I()), d = b[++e], Ra(a, c, b, e, d);
|
|
757
|
-
}
|
|
758
|
-
}
|
|
759
|
-
}
|
|
760
|
-
function Oa(a, c, b, e, d, f, g, k) {
|
|
761
|
-
if (a = a[g]) {
|
|
762
|
-
if (e === c.length - 1) {
|
|
763
|
-
if (a.constructor === Array) {
|
|
764
|
-
if (b[e]) {
|
|
765
|
-
for (c = 0; c < a.length; c++) {
|
|
766
|
-
d.add(f, a[c], !0, !0);
|
|
767
|
-
}
|
|
768
|
-
return;
|
|
769
|
-
}
|
|
770
|
-
a = a.join(" ");
|
|
771
|
-
}
|
|
772
|
-
d.add(f, a, k, !0);
|
|
773
|
-
} else {
|
|
774
|
-
if (a.constructor === Array) {
|
|
775
|
-
for (g = 0; g < a.length; g++) {
|
|
776
|
-
Oa(a, c, b, e, d, f, g, k);
|
|
777
|
-
}
|
|
778
|
-
} else {
|
|
779
|
-
g = c[++e], Oa(a, c, b, e, d, f, g, k);
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
}
|
|
783
|
-
}
|
|
784
|
-
;function Sa(a, c, b, e) {
|
|
785
|
-
if (!a.length) {
|
|
786
|
-
return a;
|
|
787
|
-
}
|
|
788
|
-
if (a.length === 1) {
|
|
789
|
-
return a = a[0], a = b || a.length > c ? a.slice(b, b + c) : a, e ? Ta.call(this, a) : a;
|
|
790
|
-
}
|
|
791
|
-
let d = [];
|
|
792
|
-
for (let f = 0, g, k; f < a.length; f++) {
|
|
793
|
-
if ((g = a[f]) && (k = g.length)) {
|
|
794
|
-
if (b) {
|
|
795
|
-
if (b >= k) {
|
|
796
|
-
b -= k;
|
|
797
|
-
continue;
|
|
798
|
-
}
|
|
799
|
-
g = g.slice(b, b + c);
|
|
800
|
-
k = g.length;
|
|
801
|
-
b = 0;
|
|
802
|
-
}
|
|
803
|
-
k > c && (g = g.slice(0, c), k = c);
|
|
804
|
-
if (!d.length && k >= c) {
|
|
805
|
-
return e ? Ta.call(this, g) : g;
|
|
806
|
-
}
|
|
807
|
-
d.push(g);
|
|
808
|
-
c -= k;
|
|
809
|
-
if (!c) {
|
|
810
|
-
break;
|
|
811
|
-
}
|
|
812
|
-
}
|
|
813
|
-
}
|
|
814
|
-
d = d.length > 1 ? [].concat.apply([], d) : d[0];
|
|
815
|
-
return e ? Ta.call(this, d) : d;
|
|
816
|
-
}
|
|
817
|
-
;function Ua(a, c, b, e) {
|
|
818
|
-
var d = e[0];
|
|
819
|
-
if (d[0] && d[0].query) {
|
|
820
|
-
return a[c].apply(a, d);
|
|
821
|
-
}
|
|
822
|
-
if (!(c !== "and" && c !== "not" || a.result.length || a.await || d.suggest)) {
|
|
823
|
-
return e.length > 1 && (d = e[e.length - 1]), (e = d.resolve) ? a.await || a.result : a;
|
|
824
|
-
}
|
|
825
|
-
let f = [], g = 0, k = 0, h, l, m, p, u;
|
|
826
|
-
for (c = 0; c < e.length; c++) {
|
|
827
|
-
if (d = e[c]) {
|
|
828
|
-
var r = void 0;
|
|
829
|
-
if (d.constructor === X) {
|
|
830
|
-
r = d.await || d.result;
|
|
831
|
-
} else if (d.then || d.constructor === Array) {
|
|
832
|
-
r = d;
|
|
833
|
-
} else {
|
|
834
|
-
g = d.limit || 0;
|
|
835
|
-
k = d.offset || 0;
|
|
836
|
-
m = d.suggest;
|
|
837
|
-
l = d.resolve;
|
|
838
|
-
h = ((p = d.highlight || a.highlight) || d.enrich) && l;
|
|
839
|
-
r = d.queue;
|
|
840
|
-
let t = d.async || r, n = d.index, q = d.query;
|
|
841
|
-
n ? a.index || (a.index = n) : n = a.index;
|
|
842
|
-
if (q || d.tag) {
|
|
843
|
-
if (!n) {
|
|
844
|
-
throw Error("Resolver can't apply because the corresponding Index was never specified");
|
|
845
|
-
}
|
|
846
|
-
const x = d.field || d.pluck;
|
|
847
|
-
if (x) {
|
|
848
|
-
!q || a.query && !p || (a.query = q, a.field = x, a.highlight = p);
|
|
849
|
-
if (!n.index) {
|
|
850
|
-
throw Error("Resolver can't apply because the corresponding Document Index was not specified");
|
|
851
|
-
}
|
|
852
|
-
n = n.index.get(x);
|
|
853
|
-
if (!n) {
|
|
854
|
-
throw Error("Resolver can't apply because the specified Document Field '" + x + "' was not found");
|
|
855
|
-
}
|
|
856
|
-
}
|
|
857
|
-
if (r && (u || a.await)) {
|
|
858
|
-
u = 1;
|
|
859
|
-
let v;
|
|
860
|
-
const A = a.C.length, D = new Promise(function(F) {
|
|
861
|
-
v = F;
|
|
862
|
-
});
|
|
863
|
-
(function(F, E) {
|
|
864
|
-
D.h = function() {
|
|
865
|
-
E.index = null;
|
|
866
|
-
E.resolve = !1;
|
|
867
|
-
let B = t ? F.searchAsync(E) : F.search(E);
|
|
868
|
-
if (B.then) {
|
|
869
|
-
return B.then(function(z) {
|
|
870
|
-
a.C[A] = z = z.result || z;
|
|
871
|
-
v(z);
|
|
872
|
-
return z;
|
|
873
|
-
});
|
|
874
|
-
}
|
|
875
|
-
B = B.result || B;
|
|
876
|
-
v(B);
|
|
877
|
-
return B;
|
|
878
|
-
};
|
|
879
|
-
})(n, Object.assign({}, d));
|
|
880
|
-
a.C.push(D);
|
|
881
|
-
f[c] = D;
|
|
882
|
-
continue;
|
|
883
|
-
} else {
|
|
884
|
-
d.resolve = !1, d.index = null, r = t ? n.searchAsync(d) : n.search(d), d.resolve = l, d.index = n;
|
|
885
|
-
}
|
|
886
|
-
} else if (d.and) {
|
|
887
|
-
r = Va(d, "and", n);
|
|
888
|
-
} else if (d.or) {
|
|
889
|
-
r = Va(d, "or", n);
|
|
890
|
-
} else if (d.not) {
|
|
891
|
-
r = Va(d, "not", n);
|
|
892
|
-
} else if (d.xor) {
|
|
893
|
-
r = Va(d, "xor", n);
|
|
894
|
-
} else {
|
|
895
|
-
continue;
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
r.await ? (u = 1, r = r.await) : r.then ? (u = 1, r = r.then(function(t) {
|
|
899
|
-
return t.result || t;
|
|
900
|
-
})) : r = r.result || r;
|
|
901
|
-
f[c] = r;
|
|
902
|
-
}
|
|
903
|
-
}
|
|
904
|
-
u && !a.await && (a.await = new Promise(function(t) {
|
|
905
|
-
a.return = t;
|
|
906
|
-
}));
|
|
907
|
-
if (u) {
|
|
908
|
-
const t = Promise.all(f).then(function(n) {
|
|
909
|
-
for (let q = 0; q < a.C.length; q++) {
|
|
910
|
-
if (a.C[q] === t) {
|
|
911
|
-
a.C[q] = function() {
|
|
912
|
-
return b.call(a, n, g, k, h, l, m, p);
|
|
913
|
-
};
|
|
914
|
-
break;
|
|
915
|
-
}
|
|
916
|
-
}
|
|
917
|
-
Wa(a);
|
|
918
|
-
});
|
|
919
|
-
a.C.push(t);
|
|
920
|
-
} else if (a.await) {
|
|
921
|
-
a.C.push(function() {
|
|
922
|
-
return b.call(a, f, g, k, h, l, m, p);
|
|
923
|
-
});
|
|
924
|
-
} else {
|
|
925
|
-
return b.call(a, f, g, k, h, l, m, p);
|
|
926
|
-
}
|
|
927
|
-
return l ? a.await || a.result : a;
|
|
928
|
-
}
|
|
929
|
-
function Va(a, c, b) {
|
|
930
|
-
a = a[c];
|
|
931
|
-
const e = a[0] || a;
|
|
932
|
-
e.index || (e.index = b);
|
|
933
|
-
b = new X(e);
|
|
934
|
-
a.length > 1 && (b = b[c].apply(b, a.slice(1)));
|
|
935
|
-
return b;
|
|
936
|
-
}
|
|
937
|
-
;X.prototype.or = function() {
|
|
938
|
-
return Ua(this, "or", Xa, arguments);
|
|
939
|
-
};
|
|
940
|
-
function Xa(a, c, b, e, d, f, g) {
|
|
941
|
-
a.length && (this.result.length && a.push(this.result), a.length < 2 ? this.result = a[0] : (this.result = Ya(a, c, b, !1, this.h), b = 0));
|
|
942
|
-
d && (this.await = null);
|
|
943
|
-
return d ? this.resolve(c, b, e, g) : this;
|
|
944
|
-
}
|
|
945
|
-
;X.prototype.and = function() {
|
|
946
|
-
return Ua(this, "and", Za, arguments);
|
|
947
|
-
};
|
|
948
|
-
function Za(a, c, b, e, d, f, g) {
|
|
949
|
-
if (!f && !this.result.length) {
|
|
950
|
-
return d ? this.result : this;
|
|
951
|
-
}
|
|
952
|
-
let k;
|
|
953
|
-
if (a.length) {
|
|
954
|
-
if (this.result.length && a.unshift(this.result), a.length < 2) {
|
|
955
|
-
this.result = a[0];
|
|
956
|
-
} else {
|
|
957
|
-
let h = 0;
|
|
958
|
-
for (let l = 0, m, p; l < a.length; l++) {
|
|
959
|
-
if ((m = a[l]) && (p = m.length)) {
|
|
960
|
-
h < p && (h = p);
|
|
961
|
-
} else if (!f) {
|
|
962
|
-
h = 0;
|
|
963
|
-
break;
|
|
964
|
-
}
|
|
965
|
-
}
|
|
966
|
-
h ? (this.result = $a(a, h, c, b, f, this.h, d), k = !0) : this.result = [];
|
|
967
|
-
}
|
|
968
|
-
} else {
|
|
969
|
-
f || (this.result = a);
|
|
970
|
-
}
|
|
971
|
-
d && (this.await = null);
|
|
972
|
-
return d ? this.resolve(c, b, e, g, k) : this;
|
|
973
|
-
}
|
|
974
|
-
;X.prototype.xor = function() {
|
|
975
|
-
return Ua(this, "xor", ab, arguments);
|
|
976
|
-
};
|
|
977
|
-
function ab(a, c, b, e, d, f, g) {
|
|
978
|
-
if (a.length) {
|
|
979
|
-
if (this.result.length && a.unshift(this.result), a.length < 2) {
|
|
980
|
-
this.result = a[0];
|
|
981
|
-
} else {
|
|
982
|
-
a: {
|
|
983
|
-
f = b;
|
|
984
|
-
var k = this.h;
|
|
985
|
-
const h = [], l = I();
|
|
986
|
-
let m = 0;
|
|
987
|
-
for (let p = 0, u; p < a.length; p++) {
|
|
988
|
-
if (u = a[p]) {
|
|
989
|
-
m < u.length && (m = u.length);
|
|
990
|
-
for (let r = 0, t; r < u.length; r++) {
|
|
991
|
-
if (t = u[r]) {
|
|
992
|
-
for (let n = 0, q; n < t.length; n++) {
|
|
993
|
-
q = t[n], l[q] = l[q] ? 2 : 1;
|
|
994
|
-
}
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
}
|
|
998
|
-
}
|
|
999
|
-
for (let p = 0, u, r = 0; p < m; p++) {
|
|
1000
|
-
for (let t = 0, n; t < a.length; t++) {
|
|
1001
|
-
if (n = a[t]) {
|
|
1002
|
-
if (u = n[p]) {
|
|
1003
|
-
for (let q = 0, x; q < u.length; q++) {
|
|
1004
|
-
if (x = u[q], l[x] === 1) {
|
|
1005
|
-
if (f) {
|
|
1006
|
-
f--;
|
|
1007
|
-
} else {
|
|
1008
|
-
if (d) {
|
|
1009
|
-
if (h.push(x), h.length === c) {
|
|
1010
|
-
a = h;
|
|
1011
|
-
break a;
|
|
1012
|
-
}
|
|
1013
|
-
} else {
|
|
1014
|
-
const v = p + (t ? k : 0);
|
|
1015
|
-
h[v] || (h[v] = []);
|
|
1016
|
-
h[v].push(x);
|
|
1017
|
-
if (++r === c) {
|
|
1018
|
-
a = h;
|
|
1019
|
-
break a;
|
|
1020
|
-
}
|
|
1021
|
-
}
|
|
1022
|
-
}
|
|
1023
|
-
}
|
|
1024
|
-
}
|
|
1025
|
-
}
|
|
1026
|
-
}
|
|
1027
|
-
}
|
|
1028
|
-
}
|
|
1029
|
-
a = h;
|
|
1030
|
-
}
|
|
1031
|
-
this.result = a;
|
|
1032
|
-
k = !0;
|
|
1033
|
-
}
|
|
1034
|
-
} else {
|
|
1035
|
-
f || (this.result = a);
|
|
1036
|
-
}
|
|
1037
|
-
d && (this.await = null);
|
|
1038
|
-
return d ? this.resolve(c, b, e, g, k) : this;
|
|
1039
|
-
}
|
|
1040
|
-
;X.prototype.not = function() {
|
|
1041
|
-
return Ua(this, "not", bb, arguments);
|
|
1042
|
-
};
|
|
1043
|
-
function bb(a, c, b, e, d, f, g) {
|
|
1044
|
-
if (!f && !this.result.length) {
|
|
1045
|
-
return d ? this.result : this;
|
|
1046
|
-
}
|
|
1047
|
-
if (a.length && this.result.length) {
|
|
1048
|
-
a: {
|
|
1049
|
-
f = b;
|
|
1050
|
-
var k = [];
|
|
1051
|
-
a = new Set(a.flat().flat());
|
|
1052
|
-
for (let h = 0, l, m = 0; h < this.result.length; h++) {
|
|
1053
|
-
if (l = this.result[h]) {
|
|
1054
|
-
for (let p = 0, u; p < l.length; p++) {
|
|
1055
|
-
if (u = l[p], !a.has(u)) {
|
|
1056
|
-
if (f) {
|
|
1057
|
-
f--;
|
|
1058
|
-
} else {
|
|
1059
|
-
if (d) {
|
|
1060
|
-
if (k.push(u), k.length === c) {
|
|
1061
|
-
a = k;
|
|
1062
|
-
break a;
|
|
1063
|
-
}
|
|
1064
|
-
} else {
|
|
1065
|
-
if (k[h] || (k[h] = []), k[h].push(u), ++m === c) {
|
|
1066
|
-
a = k;
|
|
1067
|
-
break a;
|
|
1068
|
-
}
|
|
1069
|
-
}
|
|
1070
|
-
}
|
|
1071
|
-
}
|
|
1072
|
-
}
|
|
1073
|
-
}
|
|
1074
|
-
}
|
|
1075
|
-
a = k;
|
|
1076
|
-
}
|
|
1077
|
-
this.result = a;
|
|
1078
|
-
k = !0;
|
|
1079
|
-
}
|
|
1080
|
-
d && (this.await = null);
|
|
1081
|
-
return d ? this.resolve(c, b, e, g, k) : this;
|
|
1082
|
-
}
|
|
1083
|
-
;function cb(a, c, b, e, d) {
|
|
1084
|
-
let f, g, k;
|
|
1085
|
-
typeof d === "string" ? (f = d, d = "") : f = d.template;
|
|
1086
|
-
if (!f) {
|
|
1087
|
-
throw Error('No template pattern was specified by the search option "highlight"');
|
|
1088
|
-
}
|
|
1089
|
-
g = f.indexOf("$1");
|
|
1090
|
-
if (g === -1) {
|
|
1091
|
-
throw Error('Invalid highlight template. The replacement pattern "$1" was not found in template: ' + f);
|
|
1092
|
-
}
|
|
1093
|
-
k = f.substring(g + 2);
|
|
1094
|
-
g = f.substring(0, g);
|
|
1095
|
-
let h = d && d.boundary, l = !d || d.clip !== !1, m = d && d.merge && k && g && new RegExp(k + " " + g, "g");
|
|
1096
|
-
d = d && d.ellipsis;
|
|
1097
|
-
var p = 0;
|
|
1098
|
-
if (typeof d === "object") {
|
|
1099
|
-
var u = d.template;
|
|
1100
|
-
p = u.length - 2;
|
|
1101
|
-
d = d.pattern;
|
|
1102
|
-
}
|
|
1103
|
-
typeof d !== "string" && (d = d === !1 ? "" : "...");
|
|
1104
|
-
p && (d = u.replace("$1", d));
|
|
1105
|
-
u = d.length - p;
|
|
1106
|
-
let r, t;
|
|
1107
|
-
typeof h === "object" && (r = h.before, r === 0 && (r = -1), t = h.after, t === 0 && (t = -1), h = h.total || 9e5);
|
|
1108
|
-
p = new Map();
|
|
1109
|
-
for (let Pa = 0, ea, gb, pa; Pa < c.length; Pa++) {
|
|
1110
|
-
let qa;
|
|
1111
|
-
if (e) {
|
|
1112
|
-
qa = c, pa = e;
|
|
1113
|
-
} else {
|
|
1114
|
-
var n = c[Pa];
|
|
1115
|
-
pa = n.field;
|
|
1116
|
-
if (!pa) {
|
|
1117
|
-
continue;
|
|
1118
|
-
}
|
|
1119
|
-
qa = n.result;
|
|
1120
|
-
}
|
|
1121
|
-
gb = b.get(pa);
|
|
1122
|
-
ea = gb.encoder;
|
|
1123
|
-
n = p.get(ea);
|
|
1124
|
-
typeof n !== "string" && (n = ea.encode(a), p.set(ea, n));
|
|
1125
|
-
for (let ya = 0; ya < qa.length; ya++) {
|
|
1126
|
-
var q = qa[ya].doc;
|
|
1127
|
-
if (!q) {
|
|
1128
|
-
continue;
|
|
1129
|
-
}
|
|
1130
|
-
q = ca(q, pa);
|
|
1131
|
-
if (!q) {
|
|
1132
|
-
continue;
|
|
1133
|
-
}
|
|
1134
|
-
var x = q.trim().split(/\s+/);
|
|
1135
|
-
if (!x.length) {
|
|
1136
|
-
continue;
|
|
1137
|
-
}
|
|
1138
|
-
q = "";
|
|
1139
|
-
var v = [];
|
|
1140
|
-
let za = [];
|
|
1141
|
-
var A = -1, D = -1, F = 0;
|
|
1142
|
-
for (var E = 0; E < x.length; E++) {
|
|
1143
|
-
var B = x[E], z = ea.encode(B);
|
|
1144
|
-
z = z.length > 1 ? z.join(" ") : z[0];
|
|
1145
|
-
let y;
|
|
1146
|
-
if (z && B) {
|
|
1147
|
-
var C = B.length, J = (ea.split ? B.replace(ea.split, "") : B).length - z.length, G = "", L = 0;
|
|
1148
|
-
for (var O = 0; O < n.length; O++) {
|
|
1149
|
-
var P = n[O];
|
|
1150
|
-
if (P) {
|
|
1151
|
-
var M = P.length;
|
|
1152
|
-
M += J < 0 ? 0 : J;
|
|
1153
|
-
L && M <= L || (P = z.indexOf(P), P > -1 && (G = (P ? B.substring(0, P) : "") + g + B.substring(P, P + M) + k + (P + M < C ? B.substring(P + M) : ""), L = M, y = !0));
|
|
1154
|
-
}
|
|
1155
|
-
}
|
|
1156
|
-
G && (h && (A < 0 && (A = q.length + (q ? 1 : 0)), D = q.length + (q ? 1 : 0) + G.length, F += C, za.push(v.length), v.push({match:G})), q += (q ? " " : "") + G);
|
|
1157
|
-
}
|
|
1158
|
-
if (!y) {
|
|
1159
|
-
B = x[E], q += (q ? " " : "") + B, h && v.push({text:B});
|
|
1160
|
-
} else if (h && F >= h) {
|
|
1161
|
-
break;
|
|
1162
|
-
}
|
|
1163
|
-
}
|
|
1164
|
-
F = za.length * (f.length - 2);
|
|
1165
|
-
if (r || t || h && q.length - F > h) {
|
|
1166
|
-
if (F = h + F - u * 2, E = D - A, r > 0 && (E += r), t > 0 && (E += t), E <= F) {
|
|
1167
|
-
x = r ? A - (r > 0 ? r : 0) : A - ((F - E) / 2 | 0), v = t ? D + (t > 0 ? t : 0) : x + F, l || (x > 0 && q.charAt(x) !== " " && q.charAt(x - 1) !== " " && (x = q.indexOf(" ", x), x < 0 && (x = 0)), v < q.length && q.charAt(v - 1) !== " " && q.charAt(v) !== " " && (v = q.lastIndexOf(" ", v), v < D ? v = D : ++v)), q = (x ? d : "") + q.substring(x, v) + (v < q.length ? d : "");
|
|
1168
|
-
} else {
|
|
1169
|
-
D = [];
|
|
1170
|
-
A = {};
|
|
1171
|
-
F = {};
|
|
1172
|
-
E = {};
|
|
1173
|
-
B = {};
|
|
1174
|
-
z = {};
|
|
1175
|
-
G = J = C = 0;
|
|
1176
|
-
for (O = L = 1;;) {
|
|
1177
|
-
var U = void 0;
|
|
1178
|
-
for (let y = 0, K; y < za.length; y++) {
|
|
1179
|
-
K = za[y];
|
|
1180
|
-
if (G) {
|
|
1181
|
-
if (J !== G) {
|
|
1182
|
-
if (E[y + 1]) {
|
|
1183
|
-
continue;
|
|
1184
|
-
}
|
|
1185
|
-
K += G;
|
|
1186
|
-
if (A[K]) {
|
|
1187
|
-
C -= u;
|
|
1188
|
-
F[y + 1] = 1;
|
|
1189
|
-
E[y + 1] = 1;
|
|
1190
|
-
continue;
|
|
1191
|
-
}
|
|
1192
|
-
if (K >= v.length - 1) {
|
|
1193
|
-
if (K >= v.length) {
|
|
1194
|
-
E[y + 1] = 1;
|
|
1195
|
-
K >= x.length && (F[y + 1] = 1);
|
|
1196
|
-
continue;
|
|
1197
|
-
}
|
|
1198
|
-
C -= u;
|
|
1199
|
-
}
|
|
1200
|
-
q = v[K].text;
|
|
1201
|
-
if (M = t && z[y]) {
|
|
1202
|
-
if (M > 0) {
|
|
1203
|
-
if (q.length > M) {
|
|
1204
|
-
if (E[y + 1] = 1, l) {
|
|
1205
|
-
q = q.substring(0, M);
|
|
1206
|
-
} else {
|
|
1207
|
-
continue;
|
|
1208
|
-
}
|
|
1209
|
-
}
|
|
1210
|
-
(M -= q.length) || (M = -1);
|
|
1211
|
-
z[y] = M;
|
|
1212
|
-
} else {
|
|
1213
|
-
E[y + 1] = 1;
|
|
1214
|
-
continue;
|
|
1215
|
-
}
|
|
1216
|
-
}
|
|
1217
|
-
if (C + q.length + 1 <= h) {
|
|
1218
|
-
q = " " + q, D[y] += q;
|
|
1219
|
-
} else if (l) {
|
|
1220
|
-
U = h - C - 1, U > 0 && (q = " " + q.substring(0, U), D[y] += q), E[y + 1] = 1;
|
|
1221
|
-
} else {
|
|
1222
|
-
E[y + 1] = 1;
|
|
1223
|
-
continue;
|
|
1224
|
-
}
|
|
1225
|
-
} else {
|
|
1226
|
-
if (E[y]) {
|
|
1227
|
-
continue;
|
|
1228
|
-
}
|
|
1229
|
-
K -= J;
|
|
1230
|
-
if (A[K]) {
|
|
1231
|
-
C -= u;
|
|
1232
|
-
E[y] = 1;
|
|
1233
|
-
F[y] = 1;
|
|
1234
|
-
continue;
|
|
1235
|
-
}
|
|
1236
|
-
if (K <= 0) {
|
|
1237
|
-
if (K < 0) {
|
|
1238
|
-
E[y] = 1;
|
|
1239
|
-
F[y] = 1;
|
|
1240
|
-
continue;
|
|
1241
|
-
}
|
|
1242
|
-
C -= u;
|
|
1243
|
-
}
|
|
1244
|
-
q = v[K].text;
|
|
1245
|
-
if (M = r && B[y]) {
|
|
1246
|
-
if (M > 0) {
|
|
1247
|
-
if (q.length > M) {
|
|
1248
|
-
if (E[y] = 1, l) {
|
|
1249
|
-
q = q.substring(q.length - M);
|
|
1250
|
-
} else {
|
|
1251
|
-
continue;
|
|
1252
|
-
}
|
|
1253
|
-
}
|
|
1254
|
-
(M -= q.length) || (M = -1);
|
|
1255
|
-
B[y] = M;
|
|
1256
|
-
} else {
|
|
1257
|
-
E[y] = 1;
|
|
1258
|
-
continue;
|
|
1259
|
-
}
|
|
1260
|
-
}
|
|
1261
|
-
if (C + q.length + 1 <= h) {
|
|
1262
|
-
q += " ", D[y] = q + D[y];
|
|
1263
|
-
} else if (l) {
|
|
1264
|
-
U = q.length + 1 - (h - C), U >= 0 && U < q.length && (q = q.substring(U) + " ", D[y] = q + D[y]), E[y] = 1;
|
|
1265
|
-
} else {
|
|
1266
|
-
E[y] = 1;
|
|
1267
|
-
continue;
|
|
1268
|
-
}
|
|
1269
|
-
}
|
|
1270
|
-
} else {
|
|
1271
|
-
q = v[K].match;
|
|
1272
|
-
r && (B[y] = r);
|
|
1273
|
-
t && (z[y] = t);
|
|
1274
|
-
y && C++;
|
|
1275
|
-
let Qa;
|
|
1276
|
-
K ? !y && u && (C += u) : (F[y] = 1, E[y] = 1);
|
|
1277
|
-
K >= x.length - 1 ? Qa = 1 : K < v.length - 1 && v[K + 1].match ? Qa = 1 : u && (C += u);
|
|
1278
|
-
C -= f.length - 2;
|
|
1279
|
-
if (!y || C + q.length <= h) {
|
|
1280
|
-
D[y] = q;
|
|
1281
|
-
} else {
|
|
1282
|
-
U = L = O = F[y] = 0;
|
|
1283
|
-
break;
|
|
1284
|
-
}
|
|
1285
|
-
Qa && (F[y + 1] = 1, E[y + 1] = 1);
|
|
1286
|
-
}
|
|
1287
|
-
C += q.length;
|
|
1288
|
-
U = A[K] = 1;
|
|
1289
|
-
}
|
|
1290
|
-
if (U) {
|
|
1291
|
-
J === G ? G++ : J++;
|
|
1292
|
-
} else {
|
|
1293
|
-
J === G ? L = 0 : O = 0;
|
|
1294
|
-
if (!L && !O) {
|
|
1295
|
-
break;
|
|
1296
|
-
}
|
|
1297
|
-
L ? (J++, G = J) : G++;
|
|
1298
|
-
}
|
|
1299
|
-
}
|
|
1300
|
-
q = "";
|
|
1301
|
-
for (let y = 0, K; y < D.length; y++) {
|
|
1302
|
-
K = (F[y] ? y ? " " : "" : (y && !d ? " " : "") + d) + D[y], q += K;
|
|
1303
|
-
}
|
|
1304
|
-
d && !F[D.length] && (q += d);
|
|
1305
|
-
}
|
|
1306
|
-
}
|
|
1307
|
-
m && (q = q.replace(m, " "));
|
|
1308
|
-
qa[ya].highlight = q;
|
|
1309
|
-
}
|
|
1310
|
-
if (e) {
|
|
1311
|
-
break;
|
|
1312
|
-
}
|
|
1313
|
-
}
|
|
1314
|
-
return c;
|
|
1315
|
-
}
|
|
1316
|
-
;function X(a, c) {
|
|
1317
|
-
if (!this || this.constructor !== X) {
|
|
1318
|
-
return new X(a, c);
|
|
1319
|
-
}
|
|
1320
|
-
let b = 0, e, d, f, g, k, h;
|
|
1321
|
-
if (a && a.index) {
|
|
1322
|
-
const l = a;
|
|
1323
|
-
c = l.index;
|
|
1324
|
-
b = l.boost || 0;
|
|
1325
|
-
if (d = l.query) {
|
|
1326
|
-
f = l.field || l.pluck;
|
|
1327
|
-
g = l.highlight;
|
|
1328
|
-
const m = l.resolve;
|
|
1329
|
-
a = l.async || l.queue;
|
|
1330
|
-
l.resolve = !1;
|
|
1331
|
-
l.index = null;
|
|
1332
|
-
a = a ? c.searchAsync(l) : c.search(l);
|
|
1333
|
-
l.resolve = m;
|
|
1334
|
-
l.index = c;
|
|
1335
|
-
a = a.result || a;
|
|
1336
|
-
} else {
|
|
1337
|
-
a = [];
|
|
1338
|
-
}
|
|
1339
|
-
}
|
|
1340
|
-
if (a && a.then) {
|
|
1341
|
-
const l = this;
|
|
1342
|
-
a = a.then(function(m) {
|
|
1343
|
-
l.C[0] = l.result = m.result || m;
|
|
1344
|
-
Wa(l);
|
|
1345
|
-
});
|
|
1346
|
-
e = [a];
|
|
1347
|
-
a = [];
|
|
1348
|
-
k = new Promise(function(m) {
|
|
1349
|
-
h = m;
|
|
1350
|
-
});
|
|
1351
|
-
}
|
|
1352
|
-
this.index = c || null;
|
|
1353
|
-
this.result = a || [];
|
|
1354
|
-
this.h = b;
|
|
1355
|
-
this.C = e || [];
|
|
1356
|
-
this.await = k || null;
|
|
1357
|
-
this.return = h || null;
|
|
1358
|
-
this.highlight = g || null;
|
|
1359
|
-
this.query = d || "";
|
|
1360
|
-
this.field = f || "";
|
|
1361
|
-
}
|
|
1362
|
-
w = X.prototype;
|
|
1363
|
-
w.limit = function(a) {
|
|
1364
|
-
if (this.await) {
|
|
1365
|
-
const c = this;
|
|
1366
|
-
this.C.push(function() {
|
|
1367
|
-
return c.limit(a).result;
|
|
1368
|
-
});
|
|
1369
|
-
} else {
|
|
1370
|
-
if (this.result.length) {
|
|
1371
|
-
const c = [];
|
|
1372
|
-
for (let b = 0, e; b < this.result.length; b++) {
|
|
1373
|
-
if (e = this.result[b]) {
|
|
1374
|
-
if (e.length <= a) {
|
|
1375
|
-
if (c[b] = e, a -= e.length, !a) {
|
|
1376
|
-
break;
|
|
1377
|
-
}
|
|
1378
|
-
} else {
|
|
1379
|
-
c[b] = e.slice(0, a);
|
|
1380
|
-
break;
|
|
1381
|
-
}
|
|
1382
|
-
}
|
|
1383
|
-
}
|
|
1384
|
-
this.result = c;
|
|
1385
|
-
}
|
|
1386
|
-
}
|
|
1387
|
-
return this;
|
|
1388
|
-
};
|
|
1389
|
-
w.offset = function(a) {
|
|
1390
|
-
if (this.await) {
|
|
1391
|
-
const c = this;
|
|
1392
|
-
this.C.push(function() {
|
|
1393
|
-
return c.offset(a).result;
|
|
1394
|
-
});
|
|
1395
|
-
} else {
|
|
1396
|
-
if (this.result.length) {
|
|
1397
|
-
const c = [];
|
|
1398
|
-
for (let b = 0, e; b < this.result.length; b++) {
|
|
1399
|
-
if (e = this.result[b]) {
|
|
1400
|
-
e.length <= a ? a -= e.length : (c[b] = e.slice(a), a = 0);
|
|
1401
|
-
}
|
|
1402
|
-
}
|
|
1403
|
-
this.result = c;
|
|
1404
|
-
}
|
|
1405
|
-
}
|
|
1406
|
-
return this;
|
|
1407
|
-
};
|
|
1408
|
-
w.boost = function(a) {
|
|
1409
|
-
if (this.await) {
|
|
1410
|
-
const c = this;
|
|
1411
|
-
this.C.push(function() {
|
|
1412
|
-
return c.boost(a).result;
|
|
1413
|
-
});
|
|
1414
|
-
} else {
|
|
1415
|
-
this.h += a;
|
|
1416
|
-
}
|
|
1417
|
-
return this;
|
|
1418
|
-
};
|
|
1419
|
-
function Wa(a, c) {
|
|
1420
|
-
let b = a.result;
|
|
1421
|
-
var e = a.await;
|
|
1422
|
-
a.await = null;
|
|
1423
|
-
for (let d = 0, f; d < a.C.length; d++) {
|
|
1424
|
-
if (f = a.C[d]) {
|
|
1425
|
-
if (typeof f === "function") {
|
|
1426
|
-
b = f(), a.C[d] = b = b.result || b, d--;
|
|
1427
|
-
} else if (f.h) {
|
|
1428
|
-
b = f.h(), a.C[d] = b = b.result || b, d--;
|
|
1429
|
-
} else if (f.then) {
|
|
1430
|
-
return a.await = e;
|
|
1431
|
-
}
|
|
1432
|
-
}
|
|
1433
|
-
}
|
|
1434
|
-
e = a.return;
|
|
1435
|
-
a.C = [];
|
|
1436
|
-
a.return = null;
|
|
1437
|
-
c || e(b);
|
|
1438
|
-
return b;
|
|
1439
|
-
}
|
|
1440
|
-
w.resolve = function(a, c, b, e, d) {
|
|
1441
|
-
let f = this.await ? Wa(this, !0) : this.result;
|
|
1442
|
-
if (f.then) {
|
|
1443
|
-
const g = this;
|
|
1444
|
-
return f.then(function() {
|
|
1445
|
-
return g.resolve(a, c, b, e, d);
|
|
1446
|
-
});
|
|
1447
|
-
}
|
|
1448
|
-
f.length && (typeof a === "object" ? (e = a.highlight || this.highlight, b = !!e || a.enrich, c = a.offset, a = a.limit) : (e = e || this.highlight, b = !!e || b), f = d ? b ? Ta.call(this.index, f) : f : Sa.call(this.index, f, a || 100, c, b));
|
|
1449
|
-
return this.finalize(f, e);
|
|
1450
|
-
};
|
|
1451
|
-
w.finalize = function(a, c) {
|
|
1452
|
-
if (a.then) {
|
|
1453
|
-
const e = this;
|
|
1454
|
-
return a.then(function(d) {
|
|
1455
|
-
return e.finalize(d, c);
|
|
1456
|
-
});
|
|
1457
|
-
}
|
|
1458
|
-
c && !this.query && console.warn('There was no query specified for highlighting. Please specify a query within the highlight resolver stage like { query: "...", highlight: ... }.');
|
|
1459
|
-
c && a.length && this.query && (a = cb(this.query, a, this.index.index, this.field, c));
|
|
1460
|
-
const b = this.return;
|
|
1461
|
-
this.highlight = this.index = this.result = this.C = this.await = this.return = null;
|
|
1462
|
-
this.query = this.field = "";
|
|
1463
|
-
b && b(a);
|
|
1464
|
-
return a;
|
|
1465
|
-
};
|
|
1466
|
-
function $a(a, c, b, e, d, f, g) {
|
|
1467
|
-
const k = a.length;
|
|
1468
|
-
let h = [], l, m;
|
|
1469
|
-
l = I();
|
|
1470
|
-
for (let p = 0, u, r, t, n; p < c; p++) {
|
|
1471
|
-
for (let q = 0; q < k; q++) {
|
|
1472
|
-
if (t = a[q], p < t.length && (u = t[p])) {
|
|
1473
|
-
for (let x = 0; x < u.length; x++) {
|
|
1474
|
-
r = u[x];
|
|
1475
|
-
(m = l[r]) ? l[r]++ : (m = 0, l[r] = 1);
|
|
1476
|
-
n = h[m] || (h[m] = []);
|
|
1477
|
-
if (!g) {
|
|
1478
|
-
let v = p + (q || !d ? 0 : f || 0);
|
|
1479
|
-
n = n[v] || (n[v] = []);
|
|
1480
|
-
}
|
|
1481
|
-
n.push(r);
|
|
1482
|
-
if (g && b && m === k - 1 && n.length - e === b) {
|
|
1483
|
-
return e ? n.slice(e) : n;
|
|
1484
|
-
}
|
|
1485
|
-
}
|
|
1486
|
-
}
|
|
1487
|
-
}
|
|
1488
|
-
}
|
|
1489
|
-
if (a = h.length) {
|
|
1490
|
-
if (d) {
|
|
1491
|
-
h = h.length > 1 ? Ya(h, b, e, g, f) : (h = h[0]) && b && h.length > b || e ? h.slice(e, b + e) : h;
|
|
1492
|
-
} else {
|
|
1493
|
-
if (a < k) {
|
|
1494
|
-
return [];
|
|
1495
|
-
}
|
|
1496
|
-
h = h[a - 1];
|
|
1497
|
-
if (b || e) {
|
|
1498
|
-
if (g) {
|
|
1499
|
-
if (h.length > b || e) {
|
|
1500
|
-
h = h.slice(e, b + e);
|
|
1501
|
-
}
|
|
1502
|
-
} else {
|
|
1503
|
-
d = [];
|
|
1504
|
-
for (let p = 0, u; p < h.length; p++) {
|
|
1505
|
-
if (u = h[p]) {
|
|
1506
|
-
if (e && u.length > e) {
|
|
1507
|
-
e -= u.length;
|
|
1508
|
-
} else {
|
|
1509
|
-
if (b && u.length > b || e) {
|
|
1510
|
-
u = u.slice(e, b + e), b -= u.length, e && (e -= u.length);
|
|
1511
|
-
}
|
|
1512
|
-
d.push(u);
|
|
1513
|
-
if (!b) {
|
|
1514
|
-
break;
|
|
1515
|
-
}
|
|
1516
|
-
}
|
|
1517
|
-
}
|
|
1518
|
-
}
|
|
1519
|
-
h = d;
|
|
1520
|
-
}
|
|
1521
|
-
}
|
|
1522
|
-
}
|
|
1523
|
-
}
|
|
1524
|
-
return h;
|
|
1525
|
-
}
|
|
1526
|
-
function Ya(a, c, b, e, d) {
|
|
1527
|
-
const f = [], g = I();
|
|
1528
|
-
let k;
|
|
1529
|
-
var h = a.length;
|
|
1530
|
-
let l;
|
|
1531
|
-
if (e) {
|
|
1532
|
-
for (d = h - 1; d >= 0; d--) {
|
|
1533
|
-
if (l = (e = a[d]) && e.length) {
|
|
1534
|
-
for (h = 0; h < l; h++) {
|
|
1535
|
-
if (k = e[h], !g[k]) {
|
|
1536
|
-
if (g[k] = 1, b) {
|
|
1537
|
-
b--;
|
|
1538
|
-
} else {
|
|
1539
|
-
if (f.push(k), f.length === c) {
|
|
1540
|
-
return f;
|
|
1541
|
-
}
|
|
1542
|
-
}
|
|
1543
|
-
}
|
|
1544
|
-
}
|
|
1545
|
-
}
|
|
1546
|
-
}
|
|
1547
|
-
} else {
|
|
1548
|
-
for (let m = h - 1, p, u = 0; m >= 0; m--) {
|
|
1549
|
-
p = a[m];
|
|
1550
|
-
for (let r = 0; r < p.length; r++) {
|
|
1551
|
-
if (l = (e = p[r]) && e.length) {
|
|
1552
|
-
for (let t = 0; t < l; t++) {
|
|
1553
|
-
if (k = e[t], !g[k]) {
|
|
1554
|
-
if (g[k] = 1, b) {
|
|
1555
|
-
b--;
|
|
1556
|
-
} else {
|
|
1557
|
-
let n = (r + (m < h - 1 ? d || 0 : 0)) / (m + 1) | 0;
|
|
1558
|
-
(f[n] || (f[n] = [])).push(k);
|
|
1559
|
-
if (++u === c) {
|
|
1560
|
-
return f;
|
|
1561
|
-
}
|
|
1562
|
-
}
|
|
1563
|
-
}
|
|
1564
|
-
}
|
|
1565
|
-
}
|
|
1566
|
-
}
|
|
1567
|
-
}
|
|
1568
|
-
}
|
|
1569
|
-
return f;
|
|
1570
|
-
}
|
|
1571
|
-
function db(a, c, b, e, d) {
|
|
1572
|
-
const f = I(), g = [];
|
|
1573
|
-
for (let k = 0, h; k < c.length; k++) {
|
|
1574
|
-
h = c[k];
|
|
1575
|
-
for (let l = 0; l < h.length; l++) {
|
|
1576
|
-
f[h[l]] = 1;
|
|
1577
|
-
}
|
|
1578
|
-
}
|
|
1579
|
-
if (d) {
|
|
1580
|
-
for (let k = 0, h; k < a.length; k++) {
|
|
1581
|
-
if (h = a[k], f[h]) {
|
|
1582
|
-
if (e) {
|
|
1583
|
-
e--;
|
|
1584
|
-
} else {
|
|
1585
|
-
if (g.push(h), f[h] = 0, b && --b === 0) {
|
|
1586
|
-
break;
|
|
1587
|
-
}
|
|
1588
|
-
}
|
|
1589
|
-
}
|
|
1590
|
-
}
|
|
1591
|
-
} else {
|
|
1592
|
-
for (let k = 0, h, l; k < a.result.length; k++) {
|
|
1593
|
-
for (h = a.result[k], c = 0; c < h.length; c++) {
|
|
1594
|
-
l = h[c], f[l] && ((g[k] || (g[k] = [])).push(l), f[l] = 0);
|
|
1595
|
-
}
|
|
1596
|
-
}
|
|
1597
|
-
}
|
|
1598
|
-
return g;
|
|
1599
|
-
}
|
|
1600
|
-
;I();
|
|
1601
|
-
Na.prototype.search = function(a, c, b, e) {
|
|
1602
|
-
b || (!c && ba(a) ? (b = a, a = "") : ba(c) && (b = c, c = 0));
|
|
1603
|
-
let d = [];
|
|
1604
|
-
var f = [];
|
|
1605
|
-
let g;
|
|
1606
|
-
let k, h, l, m, p;
|
|
1607
|
-
let u = 0, r = !0, t;
|
|
1608
|
-
if (b) {
|
|
1609
|
-
b.constructor === Array && (b = {index:b});
|
|
1610
|
-
a = b.query || a;
|
|
1611
|
-
g = b.pluck;
|
|
1612
|
-
k = b.merge;
|
|
1613
|
-
l = b.boost;
|
|
1614
|
-
p = g || b.field || (p = b.index) && (p.index ? null : p);
|
|
1615
|
-
var n = this.tag && b.tag;
|
|
1616
|
-
h = b.suggest;
|
|
1617
|
-
r = b.resolve !== !1;
|
|
1618
|
-
m = b.cache;
|
|
1619
|
-
this.store && b.highlight && !r ? console.warn("Highlighting results can only be done on a final resolver task or when calling .resolve({ highlight: ... })") : this.store && b.enrich && !r && console.warn("Enrich results can only be done on a final resolver task or when calling .resolve({ enrich: true })");
|
|
1620
|
-
t = r && this.store && b.highlight;
|
|
1621
|
-
var q = !!t || r && this.store && b.enrich;
|
|
1622
|
-
c = b.limit || c;
|
|
1623
|
-
var x = b.offset || 0;
|
|
1624
|
-
c || (c = r ? 100 : 0);
|
|
1625
|
-
if (n && (!this.db || !e)) {
|
|
1626
|
-
n.constructor !== Array && (n = [n]);
|
|
1627
|
-
var v = [];
|
|
1628
|
-
for (let B = 0, z; B < n.length; B++) {
|
|
1629
|
-
z = n[B];
|
|
1630
|
-
if (N(z)) {
|
|
1631
|
-
throw Error("A tag option can't be a string, instead it needs a { field: tag } format.");
|
|
1632
|
-
}
|
|
1633
|
-
if (z.field && z.tag) {
|
|
1634
|
-
var A = z.tag;
|
|
1635
|
-
if (A.constructor === Array) {
|
|
1636
|
-
for (var D = 0; D < A.length; D++) {
|
|
1637
|
-
v.push(z.field, A[D]);
|
|
1638
|
-
}
|
|
1639
|
-
} else {
|
|
1640
|
-
v.push(z.field, A);
|
|
1641
|
-
}
|
|
1642
|
-
} else {
|
|
1643
|
-
A = Object.keys(z);
|
|
1644
|
-
for (let C = 0, J, G; C < A.length; C++) {
|
|
1645
|
-
if (J = A[C], G = z[J], G.constructor === Array) {
|
|
1646
|
-
for (D = 0; D < G.length; D++) {
|
|
1647
|
-
v.push(J, G[D]);
|
|
1648
|
-
}
|
|
1649
|
-
} else {
|
|
1650
|
-
v.push(J, G);
|
|
1651
|
-
}
|
|
1652
|
-
}
|
|
1653
|
-
}
|
|
1654
|
-
}
|
|
1655
|
-
if (!v.length) {
|
|
1656
|
-
throw Error("Your tag definition within the search options is probably wrong. No valid tags found.");
|
|
1657
|
-
}
|
|
1658
|
-
n = v;
|
|
1659
|
-
if (!a) {
|
|
1660
|
-
f = [];
|
|
1661
|
-
if (v.length) {
|
|
1662
|
-
for (n = 0; n < v.length; n += 2) {
|
|
1663
|
-
if (this.db) {
|
|
1664
|
-
e = this.index.get(v[n]);
|
|
1665
|
-
if (!e) {
|
|
1666
|
-
console.warn("Tag '" + v[n] + ":" + v[n + 1] + "' will be skipped because there is no field '" + v[n] + "'.");
|
|
1667
|
-
continue;
|
|
1668
|
-
}
|
|
1669
|
-
f.push(e = e.db.tag(v[n + 1], c, x, q));
|
|
1670
|
-
} else {
|
|
1671
|
-
e = eb.call(this, v[n], v[n + 1], c, x, q);
|
|
1672
|
-
}
|
|
1673
|
-
d.push(r ? {field:v[n], tag:v[n + 1], result:e} : [e]);
|
|
1674
|
-
}
|
|
1675
|
-
}
|
|
1676
|
-
if (f.length) {
|
|
1677
|
-
const B = this;
|
|
1678
|
-
return Promise.all(f).then(function(z) {
|
|
1679
|
-
for (let C = 0; C < z.length; C++) {
|
|
1680
|
-
r ? d[C].result = z[C] : d[C] = z[C];
|
|
1681
|
-
}
|
|
1682
|
-
return r ? d : new X(d.length > 1 ? $a(d, 1, 0, 0, h, l) : d[0], B);
|
|
1683
|
-
});
|
|
1684
|
-
}
|
|
1685
|
-
return r ? d : new X(d.length > 1 ? $a(d, 1, 0, 0, h, l) : d[0], this);
|
|
1686
|
-
}
|
|
1687
|
-
}
|
|
1688
|
-
if (!r && !g) {
|
|
1689
|
-
if (p = p || this.field) {
|
|
1690
|
-
N(p) ? g = p : (p.constructor === Array && p.length === 1 && (p = p[0]), g = p.field || p.index);
|
|
1691
|
-
}
|
|
1692
|
-
if (!g) {
|
|
1693
|
-
throw Error("Apply resolver on document search requires either the option 'pluck' to be set or just select a single field name in your query.");
|
|
1694
|
-
}
|
|
1695
|
-
}
|
|
1696
|
-
p && p.constructor !== Array && (p = [p]);
|
|
1697
|
-
}
|
|
1698
|
-
p || (p = this.field);
|
|
1699
|
-
let F;
|
|
1700
|
-
v = (this.worker || this.db) && !e && [];
|
|
1701
|
-
for (let B = 0, z, C, J; B < p.length; B++) {
|
|
1702
|
-
C = p[B];
|
|
1703
|
-
if (this.db && this.tag && !this.B[B]) {
|
|
1704
|
-
continue;
|
|
1705
|
-
}
|
|
1706
|
-
let G;
|
|
1707
|
-
N(C) || (G = C, C = G.field, a = G.query || a, c = aa(G.limit, c), x = aa(G.offset, x), h = aa(G.suggest, h), t = r && this.store && aa(G.highlight, t), q = !!t || r && this.store && aa(G.enrich, q), m = aa(G.cache, m));
|
|
1708
|
-
if (e) {
|
|
1709
|
-
z = e[B];
|
|
1710
|
-
} else {
|
|
1711
|
-
A = G || b || {};
|
|
1712
|
-
D = A.enrich;
|
|
1713
|
-
var E = this.index.get(C);
|
|
1714
|
-
n && (this.db && (A.tag = n, A.field = p, F = E.db.support_tag_search), !F && D && (A.enrich = !1), F || (A.limit = 0, A.offset = 0));
|
|
1715
|
-
z = m ? E.searchCache(a, n && !F ? 0 : c, A) : E.search(a, n && !F ? 0 : c, A);
|
|
1716
|
-
n && !F && (A.limit = c, A.offset = x);
|
|
1717
|
-
D && (A.enrich = D);
|
|
1718
|
-
if (v) {
|
|
1719
|
-
v[B] = z;
|
|
1720
|
-
continue;
|
|
1721
|
-
}
|
|
1722
|
-
}
|
|
1723
|
-
J = (z = z.result || z) && z.length;
|
|
1724
|
-
if (n && J) {
|
|
1725
|
-
A = [];
|
|
1726
|
-
D = 0;
|
|
1727
|
-
if (this.db && e) {
|
|
1728
|
-
if (!F) {
|
|
1729
|
-
for (E = p.length; E < e.length; E++) {
|
|
1730
|
-
let L = e[E];
|
|
1731
|
-
if (L && L.length) {
|
|
1732
|
-
D++, A.push(L);
|
|
1733
|
-
} else if (!h) {
|
|
1734
|
-
return r ? d : new X(d, this);
|
|
1735
|
-
}
|
|
1736
|
-
}
|
|
1737
|
-
}
|
|
1738
|
-
} else {
|
|
1739
|
-
for (let L = 0, O, P; L < n.length; L += 2) {
|
|
1740
|
-
O = this.tag.get(n[L]);
|
|
1741
|
-
if (!O) {
|
|
1742
|
-
if (console.warn("Tag '" + n[L] + ":" + n[L + 1] + "' will be skipped because there is no field '" + n[L] + "'."), h) {
|
|
1743
|
-
continue;
|
|
1744
|
-
} else {
|
|
1745
|
-
return r ? d : new X(d, this);
|
|
1746
|
-
}
|
|
1747
|
-
}
|
|
1748
|
-
if (P = (O = O && O.get(n[L + 1])) && O.length) {
|
|
1749
|
-
D++, A.push(O);
|
|
1750
|
-
} else if (!h) {
|
|
1751
|
-
return r ? d : new X(d, this);
|
|
1752
|
-
}
|
|
1753
|
-
}
|
|
1754
|
-
}
|
|
1755
|
-
if (D) {
|
|
1756
|
-
z = db(z, A, c, x, r);
|
|
1757
|
-
J = z.length;
|
|
1758
|
-
if (!J && !h) {
|
|
1759
|
-
return r ? z : new X(z, this);
|
|
1760
|
-
}
|
|
1761
|
-
D--;
|
|
1762
|
-
}
|
|
1763
|
-
}
|
|
1764
|
-
if (J) {
|
|
1765
|
-
f[u] = C, d.push(z), u++;
|
|
1766
|
-
} else if (p.length === 1) {
|
|
1767
|
-
return r ? d : new X(d, this);
|
|
1768
|
-
}
|
|
1769
|
-
}
|
|
1770
|
-
if (v) {
|
|
1771
|
-
if (this.db && n && n.length && !F) {
|
|
1772
|
-
for (q = 0; q < n.length; q += 2) {
|
|
1773
|
-
f = this.index.get(n[q]);
|
|
1774
|
-
if (!f) {
|
|
1775
|
-
if (console.warn("Tag '" + n[q] + ":" + n[q + 1] + "' was not found because there is no field '" + n[q] + "'."), h) {
|
|
1776
|
-
continue;
|
|
1777
|
-
} else {
|
|
1778
|
-
return r ? d : new X(d, this);
|
|
1779
|
-
}
|
|
1780
|
-
}
|
|
1781
|
-
v.push(f.db.tag(n[q + 1], c, x, !1));
|
|
1782
|
-
}
|
|
1783
|
-
}
|
|
1784
|
-
const B = this;
|
|
1785
|
-
return Promise.all(v).then(function(z) {
|
|
1786
|
-
b && (b.resolve = r);
|
|
1787
|
-
z.length && (z = B.search(a, c, b, z));
|
|
1788
|
-
return z;
|
|
1789
|
-
});
|
|
1790
|
-
}
|
|
1791
|
-
if (!u) {
|
|
1792
|
-
return r ? d : new X(d, this);
|
|
1793
|
-
}
|
|
1794
|
-
if (g && (!q || !this.store)) {
|
|
1795
|
-
return d = d[0], r ? d : new X(d, this);
|
|
1796
|
-
}
|
|
1797
|
-
v = [];
|
|
1798
|
-
for (x = 0; x < f.length; x++) {
|
|
1799
|
-
n = d[x];
|
|
1800
|
-
q && n.length && typeof n[0].doc === "undefined" && (this.db ? v.push(n = this.index.get(this.field[0]).db.enrich(n)) : n = Ta.call(this, n));
|
|
1801
|
-
if (g) {
|
|
1802
|
-
return r ? t ? cb(a, n, this.index, g, t) : n : new X(n, this);
|
|
1803
|
-
}
|
|
1804
|
-
d[x] = {field:f[x], result:n};
|
|
1805
|
-
}
|
|
1806
|
-
if (q && this.db && v.length) {
|
|
1807
|
-
const B = this;
|
|
1808
|
-
return Promise.all(v).then(function(z) {
|
|
1809
|
-
for (let C = 0; C < z.length; C++) {
|
|
1810
|
-
d[C].result = z[C];
|
|
1811
|
-
}
|
|
1812
|
-
t && (d = cb(a, d, B.index, g, t));
|
|
1813
|
-
return k ? fb(d) : d;
|
|
1814
|
-
});
|
|
1815
|
-
}
|
|
1816
|
-
t && (d = cb(a, d, this.index, g, t));
|
|
1817
|
-
return k ? fb(d) : d;
|
|
1818
|
-
};
|
|
1819
|
-
function fb(a) {
|
|
1820
|
-
const c = [], b = I(), e = I();
|
|
1821
|
-
for (let d = 0, f, g, k, h, l, m, p; d < a.length; d++) {
|
|
1822
|
-
f = a[d];
|
|
1823
|
-
g = f.field;
|
|
1824
|
-
k = f.result;
|
|
1825
|
-
for (let u = 0; u < k.length; u++) {
|
|
1826
|
-
if (l = k[u], typeof l !== "object" ? l = {id:h = l} : h = l.id, (m = b[h]) ? m.push(g) : (l.field = b[h] = [g], c.push(l)), p = l.highlight) {
|
|
1827
|
-
m = e[h], m || (e[h] = m = {}, l.highlight = m), m[g] = p;
|
|
1828
|
-
}
|
|
1829
|
-
}
|
|
1830
|
-
}
|
|
1831
|
-
return c;
|
|
1832
|
-
}
|
|
1833
|
-
function eb(a, c, b, e, d) {
|
|
1834
|
-
a = this.tag.get(a);
|
|
1835
|
-
if (!a) {
|
|
1836
|
-
return [];
|
|
1837
|
-
}
|
|
1838
|
-
a = a.get(c);
|
|
1839
|
-
if (!a) {
|
|
1840
|
-
return [];
|
|
1841
|
-
}
|
|
1842
|
-
c = a.length - e;
|
|
1843
|
-
if (c > 0) {
|
|
1844
|
-
if (b && c > b || e) {
|
|
1845
|
-
a = a.slice(e, e + b);
|
|
1846
|
-
}
|
|
1847
|
-
d && (a = Ta.call(this, a));
|
|
1848
|
-
}
|
|
1849
|
-
return a;
|
|
1850
|
-
}
|
|
1851
|
-
function Ta(a) {
|
|
1852
|
-
if (!this || !this.store) {
|
|
1853
|
-
return a;
|
|
1854
|
-
}
|
|
1855
|
-
if (this.db) {
|
|
1856
|
-
return this.index.get(this.field[0]).db.enrich(a);
|
|
1857
|
-
}
|
|
1858
|
-
const c = Array(a.length);
|
|
1859
|
-
for (let b = 0, e; b < a.length; b++) {
|
|
1860
|
-
e = a[b], c[b] = {id:e, doc:this.store.get(e)};
|
|
1861
|
-
}
|
|
1862
|
-
return c;
|
|
1863
|
-
}
|
|
1864
|
-
;function Na(a) {
|
|
1865
|
-
if (!this || this.constructor !== Na) {
|
|
1866
|
-
return new Na(a);
|
|
1867
|
-
}
|
|
1868
|
-
const c = a.document || a.doc || a;
|
|
1869
|
-
let b, e;
|
|
1870
|
-
this.B = [];
|
|
1871
|
-
this.field = [];
|
|
1872
|
-
this.D = [];
|
|
1873
|
-
this.key = (b = c.key || c.id) && hb(b, this.D) || "id";
|
|
1874
|
-
(e = a.keystore || 0) && (this.keystore = e);
|
|
1875
|
-
this.fastupdate = !!a.fastupdate;
|
|
1876
|
-
this.reg = !this.fastupdate || a.worker || a.db ? e ? new R(e) : new Set() : e ? new Q(e) : new Map();
|
|
1877
|
-
this.h = (b = c.store || null) && b && b !== !0 && [];
|
|
1878
|
-
this.store = b ? e ? new Q(e) : new Map() : null;
|
|
1879
|
-
this.cache = (b = a.cache || null) && new na(b);
|
|
1880
|
-
a.cache = !1;
|
|
1881
|
-
this.worker = a.worker || !1;
|
|
1882
|
-
this.priority = a.priority || 4;
|
|
1883
|
-
this.index = ib.call(this, a, c);
|
|
1884
|
-
this.tag = null;
|
|
1885
|
-
if (b = c.tag) {
|
|
1886
|
-
if (typeof b === "string" && (b = [b]), b.length) {
|
|
1887
|
-
this.tag = new Map();
|
|
1888
|
-
this.A = [];
|
|
1889
|
-
this.F = [];
|
|
1890
|
-
for (let d = 0, f, g; d < b.length; d++) {
|
|
1891
|
-
f = b[d];
|
|
1892
|
-
g = f.field || f;
|
|
1893
|
-
if (!g) {
|
|
1894
|
-
throw Error("The tag field from the document descriptor is undefined.");
|
|
1895
|
-
}
|
|
1896
|
-
f.custom ? this.A[d] = f.custom : (this.A[d] = hb(g, this.D), f.filter && (typeof this.A[d] === "string" && (this.A[d] = new String(this.A[d])), this.A[d].G = f.filter));
|
|
1897
|
-
this.F[d] = g;
|
|
1898
|
-
this.tag.set(g, new Map());
|
|
1899
|
-
}
|
|
1900
|
-
}
|
|
1901
|
-
}
|
|
1902
|
-
if (this.worker) {
|
|
1903
|
-
this.fastupdate = !1;
|
|
1904
|
-
a = [];
|
|
1905
|
-
for (const d of this.index.values()) {
|
|
1906
|
-
d.then && a.push(d);
|
|
1907
|
-
}
|
|
1908
|
-
if (a.length) {
|
|
1909
|
-
const d = this;
|
|
1910
|
-
return Promise.all(a).then(function(f) {
|
|
1911
|
-
let g = 0;
|
|
1912
|
-
for (const k of d.index.entries()) {
|
|
1913
|
-
const h = k[0];
|
|
1914
|
-
let l = k[1];
|
|
1915
|
-
l.then && (l = f[g], d.index.set(h, l), g++);
|
|
1916
|
-
}
|
|
1917
|
-
return d;
|
|
1918
|
-
});
|
|
1919
|
-
}
|
|
1920
|
-
} else {
|
|
1921
|
-
a.db && (this.fastupdate = !1, this.mount(a.db));
|
|
1922
|
-
}
|
|
1923
|
-
}
|
|
1924
|
-
w = Na.prototype;
|
|
1925
|
-
w.mount = function(a) {
|
|
1926
|
-
if (this.worker) {
|
|
1927
|
-
throw Error("You can't use Worker-Indexes on a persistent model. That would be useless, since each of the persistent model acts like Worker-Index by default (Master/Slave).");
|
|
1928
|
-
}
|
|
1929
|
-
let c = this.field;
|
|
1930
|
-
if (this.tag) {
|
|
1931
|
-
for (let f = 0, g; f < this.F.length; f++) {
|
|
1932
|
-
g = this.F[f];
|
|
1933
|
-
var b = void 0;
|
|
1934
|
-
this.index.set(g, b = new T({}, this.reg));
|
|
1935
|
-
c === this.field && (c = c.slice(0));
|
|
1936
|
-
c.push(g);
|
|
1937
|
-
b.tag = this.tag.get(g);
|
|
1938
|
-
}
|
|
1939
|
-
}
|
|
1940
|
-
b = [];
|
|
1941
|
-
const e = {db:a.db, type:a.type, fastupdate:a.fastupdate};
|
|
1942
|
-
for (let f = 0, g, k; f < c.length; f++) {
|
|
1943
|
-
e.field = k = c[f];
|
|
1944
|
-
g = this.index.get(k);
|
|
1945
|
-
const h = new a.constructor(a.id, e);
|
|
1946
|
-
h.id = a.id;
|
|
1947
|
-
b[f] = h.mount(g);
|
|
1948
|
-
g.document = !0;
|
|
1949
|
-
f ? g.bypass = !0 : g.store = this.store;
|
|
1950
|
-
}
|
|
1951
|
-
const d = this;
|
|
1952
|
-
return this.db = Promise.all(b).then(function() {
|
|
1953
|
-
d.db = !0;
|
|
1954
|
-
});
|
|
1955
|
-
};
|
|
1956
|
-
w.commit = async function() {
|
|
1957
|
-
const a = [];
|
|
1958
|
-
for (const c of this.index.values()) {
|
|
1959
|
-
a.push(c.commit());
|
|
1960
|
-
}
|
|
1961
|
-
await Promise.all(a);
|
|
1962
|
-
this.reg.clear();
|
|
1963
|
-
};
|
|
1964
|
-
w.destroy = function() {
|
|
1965
|
-
const a = [];
|
|
1966
|
-
for (const c of this.index.values()) {
|
|
1967
|
-
a.push(c.destroy());
|
|
1968
|
-
}
|
|
1969
|
-
return Promise.all(a);
|
|
1970
|
-
};
|
|
1971
|
-
function ib(a, c) {
|
|
1972
|
-
const b = new Map();
|
|
1973
|
-
let e = c.index || c.field || c;
|
|
1974
|
-
N(e) && (e = [e]);
|
|
1975
|
-
for (let f = 0, g, k; f < e.length; f++) {
|
|
1976
|
-
g = e[f];
|
|
1977
|
-
N(g) || (k = g, g = g.field);
|
|
1978
|
-
k = ba(k) ? Object.assign({}, a, k) : a;
|
|
1979
|
-
if (this.worker) {
|
|
1980
|
-
var d = void 0;
|
|
1981
|
-
d = (d = k.encoder) && d.encode ? d : new ka(typeof d === "string" ? wa[d] : d || {});
|
|
1982
|
-
d = new La(k, d);
|
|
1983
|
-
b.set(g, d);
|
|
1984
|
-
}
|
|
1985
|
-
this.worker || b.set(g, new T(k, this.reg));
|
|
1986
|
-
k.custom ? this.B[f] = k.custom : (this.B[f] = hb(g, this.D), k.filter && (typeof this.B[f] === "string" && (this.B[f] = new String(this.B[f])), this.B[f].G = k.filter));
|
|
1987
|
-
this.field[f] = g;
|
|
1988
|
-
}
|
|
1989
|
-
if (this.h) {
|
|
1990
|
-
a = c.store;
|
|
1991
|
-
N(a) && (a = [a]);
|
|
1992
|
-
for (let f = 0, g, k; f < a.length; f++) {
|
|
1993
|
-
g = a[f], k = g.field || g, g.custom ? (this.h[f] = g.custom, g.custom.O = k) : (this.h[f] = hb(k, this.D), g.filter && (typeof this.h[f] === "string" && (this.h[f] = new String(this.h[f])), this.h[f].G = g.filter));
|
|
1994
|
-
}
|
|
1995
|
-
}
|
|
1996
|
-
return b;
|
|
1997
|
-
}
|
|
1998
|
-
function hb(a, c) {
|
|
1999
|
-
const b = a.split(":");
|
|
2000
|
-
let e = 0;
|
|
2001
|
-
for (let d = 0; d < b.length; d++) {
|
|
2002
|
-
a = b[d], a[a.length - 1] === "]" && (a = a.substring(0, a.length - 2)) && (c[e] = !0), a && (b[e++] = a);
|
|
2003
|
-
}
|
|
2004
|
-
e < b.length && (b.length = e);
|
|
2005
|
-
return e > 1 ? b : b[0];
|
|
2006
|
-
}
|
|
2007
|
-
w.append = function(a, c) {
|
|
2008
|
-
return this.add(a, c, !0);
|
|
2009
|
-
};
|
|
2010
|
-
w.update = function(a, c) {
|
|
2011
|
-
return this.remove(a).add(a, c);
|
|
2012
|
-
};
|
|
2013
|
-
w.remove = function(a) {
|
|
2014
|
-
ba(a) && (a = ca(a, this.key));
|
|
2015
|
-
for (var c of this.index.values()) {
|
|
2016
|
-
c.remove(a, !0);
|
|
2017
|
-
}
|
|
2018
|
-
if (this.reg.has(a)) {
|
|
2019
|
-
if (this.tag && !this.fastupdate) {
|
|
2020
|
-
for (let b of this.tag.values()) {
|
|
2021
|
-
for (let e of b) {
|
|
2022
|
-
c = e[0];
|
|
2023
|
-
const d = e[1], f = d.indexOf(a);
|
|
2024
|
-
f > -1 && (d.length > 1 ? d.splice(f, 1) : b.delete(c));
|
|
2025
|
-
}
|
|
2026
|
-
}
|
|
2027
|
-
}
|
|
2028
|
-
this.store && this.store.delete(a);
|
|
2029
|
-
this.reg.delete(a);
|
|
2030
|
-
}
|
|
2031
|
-
this.cache && this.cache.remove(a);
|
|
2032
|
-
return this;
|
|
2033
|
-
};
|
|
2034
|
-
w.clear = function() {
|
|
2035
|
-
const a = [];
|
|
2036
|
-
for (const c of this.index.values()) {
|
|
2037
|
-
const b = c.clear();
|
|
2038
|
-
b.then && a.push(b);
|
|
2039
|
-
}
|
|
2040
|
-
if (this.tag) {
|
|
2041
|
-
for (const c of this.tag.values()) {
|
|
2042
|
-
c.clear();
|
|
2043
|
-
}
|
|
2044
|
-
}
|
|
2045
|
-
this.store && this.store.clear();
|
|
2046
|
-
this.cache && this.cache.clear();
|
|
2047
|
-
return a.length ? Promise.all(a) : this;
|
|
2048
|
-
};
|
|
2049
|
-
w.contain = function(a) {
|
|
2050
|
-
return this.db ? this.index.get(this.field[0]).db.has(a) : this.reg.has(a);
|
|
2051
|
-
};
|
|
2052
|
-
w.cleanup = function() {
|
|
2053
|
-
for (const a of this.index.values()) {
|
|
2054
|
-
a.cleanup();
|
|
2055
|
-
}
|
|
2056
|
-
return this;
|
|
2057
|
-
};
|
|
2058
|
-
w.get = function(a) {
|
|
2059
|
-
return this.db ? this.index.get(this.field[0]).db.enrich(a).then(function(c) {
|
|
2060
|
-
return c[0] && c[0].doc || null;
|
|
2061
|
-
}) : this.store.get(a) || null;
|
|
2062
|
-
};
|
|
2063
|
-
w.set = function(a, c) {
|
|
2064
|
-
typeof a === "object" && (c = a, a = ca(c, this.key));
|
|
2065
|
-
this.store.set(a, c);
|
|
2066
|
-
return this;
|
|
2067
|
-
};
|
|
2068
|
-
w.searchCache = ma;
|
|
2069
|
-
w.export = jb;
|
|
2070
|
-
w.import = kb;
|
|
2071
|
-
Fa(Na.prototype);
|
|
2072
|
-
function lb(a, c = 0) {
|
|
2073
|
-
let b = [], e = [];
|
|
2074
|
-
c && (c = 250000 / c * 5000 | 0);
|
|
2075
|
-
for (const d of a.entries()) {
|
|
2076
|
-
e.push(d), e.length === c && (b.push(e), e = []);
|
|
2077
|
-
}
|
|
2078
|
-
e.length && b.push(e);
|
|
2079
|
-
return b;
|
|
2080
|
-
}
|
|
2081
|
-
function mb(a, c) {
|
|
2082
|
-
c || (c = new Map());
|
|
2083
|
-
for (let b = 0, e; b < a.length; b++) {
|
|
2084
|
-
e = a[b], c.set(e[0], e[1]);
|
|
2085
|
-
}
|
|
2086
|
-
return c;
|
|
2087
|
-
}
|
|
2088
|
-
function nb(a, c = 0) {
|
|
2089
|
-
let b = [], e = [];
|
|
2090
|
-
c && (c = 250000 / c * 1000 | 0);
|
|
2091
|
-
for (const d of a.entries()) {
|
|
2092
|
-
e.push([d[0], lb(d[1])[0] || []]), e.length === c && (b.push(e), e = []);
|
|
2093
|
-
}
|
|
2094
|
-
e.length && b.push(e);
|
|
2095
|
-
return b;
|
|
2096
|
-
}
|
|
2097
|
-
function ob(a, c) {
|
|
2098
|
-
c || (c = new Map());
|
|
2099
|
-
for (let b = 0, e, d; b < a.length; b++) {
|
|
2100
|
-
e = a[b], d = c.get(e[0]), c.set(e[0], mb(e[1], d));
|
|
2101
|
-
}
|
|
2102
|
-
return c;
|
|
2103
|
-
}
|
|
2104
|
-
function pb(a) {
|
|
2105
|
-
let c = [], b = [];
|
|
2106
|
-
for (const e of a.keys()) {
|
|
2107
|
-
b.push(e), b.length === 250000 && (c.push(b), b = []);
|
|
2108
|
-
}
|
|
2109
|
-
b.length && c.push(b);
|
|
2110
|
-
return c;
|
|
2111
|
-
}
|
|
2112
|
-
function qb(a, c) {
|
|
2113
|
-
c || (c = new Set());
|
|
2114
|
-
for (let b = 0; b < a.length; b++) {
|
|
2115
|
-
c.add(a[b]);
|
|
2116
|
-
}
|
|
2117
|
-
return c;
|
|
2118
|
-
}
|
|
2119
|
-
function rb(a, c, b, e, d, f, g = 0) {
|
|
2120
|
-
const k = e && e.constructor === Array;
|
|
2121
|
-
var h = k ? e.shift() : e;
|
|
2122
|
-
if (!h) {
|
|
2123
|
-
return this.export(a, c, d, f + 1);
|
|
2124
|
-
}
|
|
2125
|
-
if ((h = a((c ? c + "." : "") + (g + 1) + "." + b, JSON.stringify(h))) && h.then) {
|
|
2126
|
-
const l = this;
|
|
2127
|
-
return h.then(function() {
|
|
2128
|
-
return rb.call(l, a, c, b, k ? e : null, d, f, g + 1);
|
|
2129
|
-
});
|
|
2130
|
-
}
|
|
2131
|
-
return rb.call(this, a, c, b, k ? e : null, d, f, g + 1);
|
|
2132
|
-
}
|
|
2133
|
-
function jb(a, c, b = 0, e = 0) {
|
|
2134
|
-
if (b < this.field.length) {
|
|
2135
|
-
const g = this.field[b];
|
|
2136
|
-
if ((c = this.index.get(g).export(a, g, b, e = 1)) && c.then) {
|
|
2137
|
-
const k = this;
|
|
2138
|
-
return c.then(function() {
|
|
2139
|
-
return k.export(a, g, b + 1);
|
|
2140
|
-
});
|
|
2141
|
-
}
|
|
2142
|
-
return this.export(a, g, b + 1);
|
|
2143
|
-
}
|
|
2144
|
-
let d, f;
|
|
2145
|
-
switch(e) {
|
|
2146
|
-
case 0:
|
|
2147
|
-
d = "reg";
|
|
2148
|
-
f = pb(this.reg);
|
|
2149
|
-
c = null;
|
|
2150
|
-
break;
|
|
2151
|
-
case 1:
|
|
2152
|
-
d = "tag";
|
|
2153
|
-
f = this.tag && nb(this.tag, this.reg.size);
|
|
2154
|
-
c = null;
|
|
2155
|
-
break;
|
|
2156
|
-
case 2:
|
|
2157
|
-
d = "doc";
|
|
2158
|
-
f = this.store && lb(this.store);
|
|
2159
|
-
c = null;
|
|
2160
|
-
break;
|
|
2161
|
-
default:
|
|
2162
|
-
return;
|
|
2163
|
-
}
|
|
2164
|
-
return rb.call(this, a, c, d, f || null, b, e);
|
|
2165
|
-
}
|
|
2166
|
-
function kb(a, c) {
|
|
2167
|
-
var b = a.split(".");
|
|
2168
|
-
b[b.length - 1] === "json" && b.pop();
|
|
2169
|
-
const e = b.length > 2 ? b[0] : "";
|
|
2170
|
-
b = b.length > 2 ? b[2] : b[1];
|
|
2171
|
-
if (this.worker && e) {
|
|
2172
|
-
return this.index.get(e).import(a);
|
|
2173
|
-
}
|
|
2174
|
-
if (c) {
|
|
2175
|
-
typeof c === "string" && (c = JSON.parse(c));
|
|
2176
|
-
if (e) {
|
|
2177
|
-
return this.index.get(e).import(b, c);
|
|
2178
|
-
}
|
|
2179
|
-
switch(b) {
|
|
2180
|
-
case "reg":
|
|
2181
|
-
this.fastupdate = !1;
|
|
2182
|
-
this.reg = qb(c, this.reg);
|
|
2183
|
-
for (let d = 0, f; d < this.field.length; d++) {
|
|
2184
|
-
f = this.index.get(this.field[d]), f.fastupdate = !1, f.reg = this.reg;
|
|
2185
|
-
}
|
|
2186
|
-
if (this.worker) {
|
|
2187
|
-
c = [];
|
|
2188
|
-
for (const d of this.index.values()) {
|
|
2189
|
-
c.push(d.import(a));
|
|
2190
|
-
}
|
|
2191
|
-
return Promise.all(c);
|
|
2192
|
-
}
|
|
2193
|
-
break;
|
|
2194
|
-
case "tag":
|
|
2195
|
-
this.tag = ob(c, this.tag);
|
|
2196
|
-
break;
|
|
2197
|
-
case "doc":
|
|
2198
|
-
this.store = mb(c, this.store);
|
|
2199
|
-
}
|
|
2200
|
-
}
|
|
2201
|
-
}
|
|
2202
|
-
function sb(a, c) {
|
|
2203
|
-
let b = "";
|
|
2204
|
-
for (const e of a.entries()) {
|
|
2205
|
-
a = e[0];
|
|
2206
|
-
const d = e[1];
|
|
2207
|
-
let f = "";
|
|
2208
|
-
for (let g = 0, k; g < d.length; g++) {
|
|
2209
|
-
k = d[g] || [""];
|
|
2210
|
-
let h = "";
|
|
2211
|
-
for (let l = 0; l < k.length; l++) {
|
|
2212
|
-
h += (h ? "," : "") + (c === "string" ? '"' + k[l] + '"' : k[l]);
|
|
2213
|
-
}
|
|
2214
|
-
h = "[" + h + "]";
|
|
2215
|
-
f += (f ? "," : "") + h;
|
|
2216
|
-
}
|
|
2217
|
-
f = '["' + a + '",[' + f + "]]";
|
|
2218
|
-
b += (b ? "," : "") + f;
|
|
2219
|
-
}
|
|
2220
|
-
return b;
|
|
2221
|
-
}
|
|
2222
|
-
;T.prototype.remove = function(a, c) {
|
|
2223
|
-
const b = this.reg.size && (this.fastupdate ? this.reg.get(a) : this.reg.has(a));
|
|
2224
|
-
if (b) {
|
|
2225
|
-
if (this.fastupdate) {
|
|
2226
|
-
for (let e = 0, d, f; e < b.length; e++) {
|
|
2227
|
-
if ((d = b[e]) && (f = d.length)) {
|
|
2228
|
-
if (d[f - 1] === a) {
|
|
2229
|
-
d.pop();
|
|
2230
|
-
} else {
|
|
2231
|
-
const g = d.indexOf(a);
|
|
2232
|
-
g >= 0 && d.splice(g, 1);
|
|
2233
|
-
}
|
|
2234
|
-
}
|
|
2235
|
-
}
|
|
2236
|
-
} else {
|
|
2237
|
-
tb(this.map, a), this.depth && tb(this.ctx, a);
|
|
2238
|
-
}
|
|
2239
|
-
c || this.reg.delete(a);
|
|
2240
|
-
}
|
|
2241
|
-
this.db && (this.commit_task.push({del:a}), this.M && ub(this));
|
|
2242
|
-
this.cache && this.cache.remove(a);
|
|
2243
|
-
return this;
|
|
2244
|
-
};
|
|
2245
|
-
function tb(a, c) {
|
|
2246
|
-
let b = 0;
|
|
2247
|
-
var e = typeof c === "undefined";
|
|
2248
|
-
if (a.constructor === Array) {
|
|
2249
|
-
for (let d = 0, f, g, k; d < a.length; d++) {
|
|
2250
|
-
if ((f = a[d]) && f.length) {
|
|
2251
|
-
if (e) {
|
|
2252
|
-
return 1;
|
|
2253
|
-
}
|
|
2254
|
-
g = f.indexOf(c);
|
|
2255
|
-
if (g >= 0) {
|
|
2256
|
-
if (f.length > 1) {
|
|
2257
|
-
return f.splice(g, 1), 1;
|
|
2258
|
-
}
|
|
2259
|
-
delete a[d];
|
|
2260
|
-
if (b) {
|
|
2261
|
-
return 1;
|
|
2262
|
-
}
|
|
2263
|
-
k = 1;
|
|
2264
|
-
} else {
|
|
2265
|
-
if (k) {
|
|
2266
|
-
return 1;
|
|
2267
|
-
}
|
|
2268
|
-
b++;
|
|
2269
|
-
}
|
|
2270
|
-
}
|
|
2271
|
-
}
|
|
2272
|
-
} else {
|
|
2273
|
-
for (let d of a.entries()) {
|
|
2274
|
-
e = d[0], tb(d[1], c) ? b++ : a.delete(e);
|
|
2275
|
-
}
|
|
2276
|
-
}
|
|
2277
|
-
return b;
|
|
2278
|
-
}
|
|
2279
|
-
;const vb = {memory:{resolution:1}, performance:{resolution:3, fastupdate:!0, context:{depth:1, resolution:1}}, match:{tokenize:"forward"}, score:{resolution:9, context:{depth:2, resolution:3}}};
|
|
2280
|
-
T.prototype.add = function(a, c, b, e) {
|
|
2281
|
-
if (c && (a || a === 0)) {
|
|
2282
|
-
if (!e && !b && this.reg.has(a)) {
|
|
2283
|
-
return this.update(a, c);
|
|
2284
|
-
}
|
|
2285
|
-
e = this.depth;
|
|
2286
|
-
c = this.encoder.encode(c, !e);
|
|
2287
|
-
const l = c.length;
|
|
2288
|
-
if (l) {
|
|
2289
|
-
const m = I(), p = I(), u = this.resolution;
|
|
2290
|
-
for (let r = 0; r < l; r++) {
|
|
2291
|
-
let t = c[this.rtl ? l - 1 - r : r];
|
|
2292
|
-
var d = t.length;
|
|
2293
|
-
if (d && (e || !p[t])) {
|
|
2294
|
-
var f = this.score ? this.score(c, t, r, null, 0) : wb(u, l, r), g = "";
|
|
2295
|
-
switch(this.tokenize) {
|
|
2296
|
-
case "tolerant":
|
|
2297
|
-
Y(this, p, t, f, a, b);
|
|
2298
|
-
if (d > 2) {
|
|
2299
|
-
for (let n = 1, q, x, v, A; n < d - 1; n++) {
|
|
2300
|
-
q = t.charAt(n), x = t.charAt(n + 1), v = t.substring(0, n) + x, A = t.substring(n + 2), g = v + q + A, Y(this, p, g, f, a, b), g = v + A, Y(this, p, g, f, a, b);
|
|
2301
|
-
}
|
|
2302
|
-
Y(this, p, t.substring(0, t.length - 1), f, a, b);
|
|
2303
|
-
}
|
|
2304
|
-
break;
|
|
2305
|
-
case "full":
|
|
2306
|
-
if (d > 2) {
|
|
2307
|
-
for (let n = 0, q; n < d; n++) {
|
|
2308
|
-
for (f = d; f > n; f--) {
|
|
2309
|
-
g = t.substring(n, f);
|
|
2310
|
-
q = this.rtl ? d - 1 - n : n;
|
|
2311
|
-
var k = this.score ? this.score(c, t, r, g, q) : wb(u, l, r, d, q);
|
|
2312
|
-
Y(this, p, g, k, a, b);
|
|
2313
|
-
}
|
|
2314
|
-
}
|
|
2315
|
-
break;
|
|
2316
|
-
}
|
|
2317
|
-
case "bidirectional":
|
|
2318
|
-
case "reverse":
|
|
2319
|
-
if (d > 1) {
|
|
2320
|
-
for (k = d - 1; k > 0; k--) {
|
|
2321
|
-
g = t[this.rtl ? d - 1 - k : k] + g;
|
|
2322
|
-
var h = this.score ? this.score(c, t, r, g, k) : wb(u, l, r, d, k);
|
|
2323
|
-
Y(this, p, g, h, a, b);
|
|
2324
|
-
}
|
|
2325
|
-
g = "";
|
|
2326
|
-
}
|
|
2327
|
-
case "forward":
|
|
2328
|
-
if (d > 1) {
|
|
2329
|
-
for (k = 0; k < d; k++) {
|
|
2330
|
-
g += t[this.rtl ? d - 1 - k : k], Y(this, p, g, f, a, b);
|
|
2331
|
-
}
|
|
2332
|
-
break;
|
|
2333
|
-
}
|
|
2334
|
-
default:
|
|
2335
|
-
if (Y(this, p, t, f, a, b), e && l > 1 && r < l - 1) {
|
|
2336
|
-
for (d = this.N, g = t, f = Math.min(e + 1, this.rtl ? r + 1 : l - r), k = 1; k < f; k++) {
|
|
2337
|
-
t = c[this.rtl ? l - 1 - r - k : r + k];
|
|
2338
|
-
h = this.bidirectional && t > g;
|
|
2339
|
-
const n = this.score ? this.score(c, g, r, t, k - 1) : wb(d + (l / 2 > d ? 0 : 1), l, r, f - 1, k - 1);
|
|
2340
|
-
Y(this, m, h ? g : t, n, a, b, h ? t : g);
|
|
2341
|
-
}
|
|
2342
|
-
}
|
|
2343
|
-
}
|
|
2344
|
-
}
|
|
2345
|
-
}
|
|
2346
|
-
this.fastupdate || this.reg.add(a);
|
|
2347
|
-
}
|
|
2348
|
-
}
|
|
2349
|
-
this.db && (this.commit_task.push(b ? {ins:a} : {del:a}), this.M && ub(this));
|
|
2350
|
-
return this;
|
|
2351
|
-
};
|
|
2352
|
-
function Y(a, c, b, e, d, f, g) {
|
|
2353
|
-
let k, h;
|
|
2354
|
-
if (!(k = c[b]) || g && !k[g]) {
|
|
2355
|
-
g ? (c = k || (c[b] = I()), c[g] = 1, h = a.ctx, (k = h.get(g)) ? h = k : h.set(g, h = a.keystore ? new Q(a.keystore) : new Map())) : (h = a.map, c[b] = 1);
|
|
2356
|
-
(k = h.get(b)) ? h = k : h.set(b, h = k = []);
|
|
2357
|
-
if (f) {
|
|
2358
|
-
for (let l = 0, m; l < k.length; l++) {
|
|
2359
|
-
if ((m = k[l]) && m.includes(d)) {
|
|
2360
|
-
if (l <= e) {
|
|
2361
|
-
return;
|
|
2362
|
-
}
|
|
2363
|
-
m.splice(m.indexOf(d), 1);
|
|
2364
|
-
a.fastupdate && (c = a.reg.get(d)) && c.splice(c.indexOf(m), 1);
|
|
2365
|
-
break;
|
|
2366
|
-
}
|
|
2367
|
-
}
|
|
2368
|
-
}
|
|
2369
|
-
h = h[e] || (h[e] = []);
|
|
2370
|
-
h.push(d);
|
|
2371
|
-
if (h.length === 2 ** 31 - 1) {
|
|
2372
|
-
c = new Aa(h);
|
|
2373
|
-
if (a.fastupdate) {
|
|
2374
|
-
for (let l of a.reg.values()) {
|
|
2375
|
-
l.includes(h) && (l[l.indexOf(h)] = c);
|
|
2376
|
-
}
|
|
2377
|
-
}
|
|
2378
|
-
k[e] = h = c;
|
|
2379
|
-
}
|
|
2380
|
-
a.fastupdate && ((e = a.reg.get(d)) ? e.push(h) : a.reg.set(d, [h]));
|
|
2381
|
-
}
|
|
2382
|
-
}
|
|
2383
|
-
function wb(a, c, b, e, d) {
|
|
2384
|
-
return b && a > 1 ? c + (e || 0) <= a ? b + (d || 0) : (a - 1) / (c + (e || 0)) * (b + (d || 0)) + 1 | 0 : 0;
|
|
2385
|
-
}
|
|
2386
|
-
;T.prototype.search = function(a, c, b) {
|
|
2387
|
-
b || (c || typeof a !== "object" ? typeof c === "object" && (b = c, c = 0) : (b = a, a = ""));
|
|
2388
|
-
if (b && b.cache) {
|
|
2389
|
-
return b.cache = !1, a = this.searchCache(a, c, b), b.cache = !0, a;
|
|
2390
|
-
}
|
|
2391
|
-
let e = [], d, f, g, k = 0, h, l, m, p, u;
|
|
2392
|
-
b && (a = b.query || a, c = b.limit || c, k = b.offset || 0, f = b.context, g = b.suggest, u = (h = b.resolve) && b.enrich, m = b.boost, p = b.resolution, l = this.db && b.tag);
|
|
2393
|
-
typeof h === "undefined" && (h = this.resolve);
|
|
2394
|
-
f = this.depth && f !== !1;
|
|
2395
|
-
let r = this.encoder.encode(a, !f);
|
|
2396
|
-
d = r.length;
|
|
2397
|
-
c = c || (h ? 100 : 0);
|
|
2398
|
-
if (d === 1) {
|
|
2399
|
-
return xb.call(this, r[0], "", c, k, h, u, l);
|
|
2400
|
-
}
|
|
2401
|
-
if (d === 2 && f && !g) {
|
|
2402
|
-
return xb.call(this, r[1], r[0], c, k, h, u, l);
|
|
2403
|
-
}
|
|
2404
|
-
let t = I(), n = 0, q;
|
|
2405
|
-
f && (q = r[0], n = 1);
|
|
2406
|
-
p || p === 0 || (p = q ? this.N : this.resolution);
|
|
2407
|
-
if (this.db) {
|
|
2408
|
-
if (this.db.search && (b = this.db.search(this, r, c, k, g, h, u, l), b !== !1)) {
|
|
2409
|
-
return b;
|
|
2410
|
-
}
|
|
2411
|
-
const x = this;
|
|
2412
|
-
return async function() {
|
|
2413
|
-
for (let v, A; n < d; n++) {
|
|
2414
|
-
if ((A = r[n]) && !t[A]) {
|
|
2415
|
-
t[A] = 1;
|
|
2416
|
-
v = await yb(x, A, q, 0, 0, !1, !1);
|
|
2417
|
-
if (v = zb(v, e, g, p)) {
|
|
2418
|
-
e = v;
|
|
2419
|
-
break;
|
|
2420
|
-
}
|
|
2421
|
-
q && (g && v && e.length || (q = A));
|
|
2422
|
-
}
|
|
2423
|
-
g && q && n === d - 1 && !e.length && (p = x.resolution, q = "", n = -1, t = I());
|
|
2424
|
-
}
|
|
2425
|
-
return Ab(e, p, c, k, g, m, h);
|
|
2426
|
-
}();
|
|
2427
|
-
}
|
|
2428
|
-
for (let x, v; n < d; n++) {
|
|
2429
|
-
if ((v = r[n]) && !t[v]) {
|
|
2430
|
-
t[v] = 1;
|
|
2431
|
-
x = yb(this, v, q, 0, 0, !1, !1);
|
|
2432
|
-
if (x = zb(x, e, g, p)) {
|
|
2433
|
-
e = x;
|
|
2434
|
-
break;
|
|
2435
|
-
}
|
|
2436
|
-
q && (g && x && e.length || (q = v));
|
|
2437
|
-
}
|
|
2438
|
-
g && q && n === d - 1 && !e.length && (p = this.resolution, q = "", n = -1, t = I());
|
|
2439
|
-
}
|
|
2440
|
-
return Ab(e, p, c, k, g, m, h);
|
|
2441
|
-
};
|
|
2442
|
-
function Ab(a, c, b, e, d, f, g) {
|
|
2443
|
-
let k = a.length, h = a;
|
|
2444
|
-
if (k > 1) {
|
|
2445
|
-
h = $a(a, c, b, e, d, f, g);
|
|
2446
|
-
} else if (k === 1) {
|
|
2447
|
-
return g ? Sa.call(null, a[0], b, e) : new X(a[0], this);
|
|
2448
|
-
}
|
|
2449
|
-
return g ? h : new X(h, this);
|
|
2450
|
-
}
|
|
2451
|
-
function xb(a, c, b, e, d, f, g) {
|
|
2452
|
-
a = yb(this, a, c, b, e, d, f, g);
|
|
2453
|
-
return this.db ? a.then(function(k) {
|
|
2454
|
-
return d ? k || [] : new X(k, this);
|
|
2455
|
-
}) : a && a.length ? d ? Sa.call(this, a, b, e) : new X(a, this) : d ? [] : new X([], this);
|
|
2456
|
-
}
|
|
2457
|
-
function zb(a, c, b, e) {
|
|
2458
|
-
let d = [];
|
|
2459
|
-
if (a && a.length) {
|
|
2460
|
-
if (a.length <= e) {
|
|
2461
|
-
c.push(a);
|
|
2462
|
-
return;
|
|
2463
|
-
}
|
|
2464
|
-
for (let f = 0, g; f < e; f++) {
|
|
2465
|
-
if (g = a[f]) {
|
|
2466
|
-
d[f] = g;
|
|
2467
|
-
}
|
|
2468
|
-
}
|
|
2469
|
-
if (d.length) {
|
|
2470
|
-
c.push(d);
|
|
2471
|
-
return;
|
|
2472
|
-
}
|
|
2473
|
-
}
|
|
2474
|
-
if (!b) {
|
|
2475
|
-
return d;
|
|
2476
|
-
}
|
|
2477
|
-
}
|
|
2478
|
-
function yb(a, c, b, e, d, f, g, k) {
|
|
2479
|
-
let h;
|
|
2480
|
-
b && (h = a.bidirectional && c > b) && (h = b, b = c, c = h);
|
|
2481
|
-
if (a.db) {
|
|
2482
|
-
return a.db.get(c, b, e, d, f, g, k);
|
|
2483
|
-
}
|
|
2484
|
-
a = b ? (a = a.ctx.get(b)) && a.get(c) : a.map.get(c);
|
|
2485
|
-
return a;
|
|
2486
|
-
}
|
|
2487
|
-
;function T(a, c) {
|
|
2488
|
-
if (!this || this.constructor !== T) {
|
|
2489
|
-
return new T(a);
|
|
2490
|
-
}
|
|
2491
|
-
if (a) {
|
|
2492
|
-
var b = N(a) ? a : a.preset;
|
|
2493
|
-
b && (vb[b] || console.warn("Preset not found: " + b), a = Object.assign({}, vb[b], a));
|
|
2494
|
-
} else {
|
|
2495
|
-
a = {};
|
|
2496
|
-
}
|
|
2497
|
-
b = a.context;
|
|
2498
|
-
const e = b === !0 ? {depth:1} : b || {}, d = N(a.encoder) ? wa[a.encoder] : a.encode || a.encoder || {};
|
|
2499
|
-
this.encoder = d.encode ? d : typeof d === "object" ? new ka(d) : {encode:d};
|
|
2500
|
-
this.resolution = a.resolution || 9;
|
|
2501
|
-
this.tokenize = b = (b = a.tokenize) && b !== "default" && b !== "exact" && b || "strict";
|
|
2502
|
-
this.depth = b === "strict" && e.depth || 0;
|
|
2503
|
-
this.bidirectional = e.bidirectional !== !1;
|
|
2504
|
-
this.fastupdate = !!a.fastupdate;
|
|
2505
|
-
this.score = a.score || null;
|
|
2506
|
-
e && e.depth && this.tokenize !== "strict" && console.warn('Context-Search could not applied, because it is just supported when using the tokenizer "strict".');
|
|
2507
|
-
(b = a.keystore || 0) && (this.keystore = b);
|
|
2508
|
-
this.map = b ? new Q(b) : new Map();
|
|
2509
|
-
this.ctx = b ? new Q(b) : new Map();
|
|
2510
|
-
this.reg = c || (this.fastupdate ? b ? new Q(b) : new Map() : b ? new R(b) : new Set());
|
|
2511
|
-
this.N = e.resolution || 3;
|
|
2512
|
-
this.rtl = d.rtl || a.rtl || !1;
|
|
2513
|
-
this.cache = (b = a.cache || null) && new na(b);
|
|
2514
|
-
this.resolve = a.resolve !== !1;
|
|
2515
|
-
if (b = a.db) {
|
|
2516
|
-
this.db = this.mount(b);
|
|
2517
|
-
}
|
|
2518
|
-
this.M = a.commit !== !1;
|
|
2519
|
-
this.commit_task = [];
|
|
2520
|
-
this.commit_timer = null;
|
|
2521
|
-
this.priority = a.priority || 4;
|
|
2522
|
-
}
|
|
2523
|
-
w = T.prototype;
|
|
2524
|
-
w.mount = function(a) {
|
|
2525
|
-
this.commit_timer && (clearTimeout(this.commit_timer), this.commit_timer = null);
|
|
2526
|
-
return a.mount(this);
|
|
2527
|
-
};
|
|
2528
|
-
w.commit = function() {
|
|
2529
|
-
this.commit_timer && (clearTimeout(this.commit_timer), this.commit_timer = null);
|
|
2530
|
-
return this.db.commit(this);
|
|
2531
|
-
};
|
|
2532
|
-
w.destroy = function() {
|
|
2533
|
-
this.commit_timer && (clearTimeout(this.commit_timer), this.commit_timer = null);
|
|
2534
|
-
return this.db.destroy();
|
|
2535
|
-
};
|
|
2536
|
-
function ub(a) {
|
|
2537
|
-
a.commit_timer || (a.commit_timer = setTimeout(function() {
|
|
2538
|
-
a.commit_timer = null;
|
|
2539
|
-
a.db.commit(a);
|
|
2540
|
-
}, 1));
|
|
2541
|
-
}
|
|
2542
|
-
w.clear = function() {
|
|
2543
|
-
this.map.clear();
|
|
2544
|
-
this.ctx.clear();
|
|
2545
|
-
this.reg.clear();
|
|
2546
|
-
this.cache && this.cache.clear();
|
|
2547
|
-
return this.db ? (this.commit_timer && clearTimeout(this.commit_timer), this.commit_timer = null, this.commit_task = [], this.db.clear()) : this;
|
|
2548
|
-
};
|
|
2549
|
-
w.append = function(a, c) {
|
|
2550
|
-
return this.add(a, c, !0);
|
|
2551
|
-
};
|
|
2552
|
-
w.contain = function(a) {
|
|
2553
|
-
return this.db ? this.db.has(a) : this.reg.has(a);
|
|
2554
|
-
};
|
|
2555
|
-
w.update = function(a, c) {
|
|
2556
|
-
const b = this, e = this.remove(a);
|
|
2557
|
-
return e && e.then ? e.then(() => b.add(a, c)) : this.add(a, c);
|
|
2558
|
-
};
|
|
2559
|
-
w.cleanup = function() {
|
|
2560
|
-
if (!this.fastupdate) {
|
|
2561
|
-
return console.info('Cleanup the index isn\'t required when not using "fastupdate".'), this;
|
|
2562
|
-
}
|
|
2563
|
-
tb(this.map);
|
|
2564
|
-
this.depth && tb(this.ctx);
|
|
2565
|
-
return this;
|
|
2566
|
-
};
|
|
2567
|
-
w.searchCache = ma;
|
|
2568
|
-
w.export = function(a, c, b = 0, e = 0) {
|
|
2569
|
-
let d, f;
|
|
2570
|
-
switch(e) {
|
|
2571
|
-
case 0:
|
|
2572
|
-
d = "reg";
|
|
2573
|
-
f = pb(this.reg);
|
|
2574
|
-
break;
|
|
2575
|
-
case 1:
|
|
2576
|
-
d = "cfg";
|
|
2577
|
-
f = null;
|
|
2578
|
-
break;
|
|
2579
|
-
case 2:
|
|
2580
|
-
d = "map";
|
|
2581
|
-
f = lb(this.map, this.reg.size);
|
|
2582
|
-
break;
|
|
2583
|
-
case 3:
|
|
2584
|
-
d = "ctx";
|
|
2585
|
-
f = nb(this.ctx, this.reg.size);
|
|
2586
|
-
break;
|
|
2587
|
-
default:
|
|
2588
|
-
return;
|
|
2589
|
-
}
|
|
2590
|
-
return rb.call(this, a, c, d, f, b, e);
|
|
2591
|
-
};
|
|
2592
|
-
w.import = function(a, c) {
|
|
2593
|
-
if (c) {
|
|
2594
|
-
switch(typeof c === "string" && (c = JSON.parse(c)), a = a.split("."), a[a.length - 1] === "json" && a.pop(), a.length === 3 && a.shift(), a = a.length > 1 ? a[1] : a[0], a) {
|
|
2595
|
-
case "reg":
|
|
2596
|
-
this.fastupdate = !1;
|
|
2597
|
-
this.reg = qb(c, this.reg);
|
|
2598
|
-
break;
|
|
2599
|
-
case "map":
|
|
2600
|
-
this.map = mb(c, this.map);
|
|
2601
|
-
break;
|
|
2602
|
-
case "ctx":
|
|
2603
|
-
this.ctx = ob(c, this.ctx);
|
|
2604
|
-
}
|
|
2605
|
-
}
|
|
2606
|
-
};
|
|
2607
|
-
w.serialize = function(a = !0) {
|
|
2608
|
-
let c = "", b = "", e = "";
|
|
2609
|
-
if (this.reg.size) {
|
|
2610
|
-
let f;
|
|
2611
|
-
for (var d of this.reg.keys()) {
|
|
2612
|
-
f || (f = typeof d), c += (c ? "," : "") + (f === "string" ? '"' + d + '"' : d);
|
|
2613
|
-
}
|
|
2614
|
-
c = "index.reg=new Set([" + c + "]);";
|
|
2615
|
-
b = sb(this.map, f);
|
|
2616
|
-
b = "index.map=new Map([" + b + "]);";
|
|
2617
|
-
for (const g of this.ctx.entries()) {
|
|
2618
|
-
d = g[0];
|
|
2619
|
-
let k = sb(g[1], f);
|
|
2620
|
-
k = "new Map([" + k + "])";
|
|
2621
|
-
k = '["' + d + '",' + k + "]";
|
|
2622
|
-
e += (e ? "," : "") + k;
|
|
2623
|
-
}
|
|
2624
|
-
e = "index.ctx=new Map([" + e + "]);";
|
|
2625
|
-
}
|
|
2626
|
-
return a ? "function inject(index){" + c + b + e + "}" : c + b + e;
|
|
2627
|
-
};
|
|
2628
|
-
Fa(T.prototype);
|
|
2629
|
-
const Bb = typeof window !== "undefined" && (window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB), Cb = ["map", "ctx", "tag", "reg", "cfg"], Db = I();
|
|
2630
|
-
function Eb(a, c = {}) {
|
|
2631
|
-
if (!this || this.constructor !== Eb) {
|
|
2632
|
-
return new Eb(a, c);
|
|
2633
|
-
}
|
|
2634
|
-
typeof a === "object" && (c = a, a = a.name);
|
|
2635
|
-
a || console.info("Default storage space was used, because a name was not passed.");
|
|
2636
|
-
this.id = "flexsearch" + (a ? ":" + a.toLowerCase().replace(/[^a-z0-9_\-]/g, "") : "");
|
|
2637
|
-
this.field = c.field ? c.field.toLowerCase().replace(/[^a-z0-9_\-]/g, "") : "";
|
|
2638
|
-
this.type = c.type;
|
|
2639
|
-
this.fastupdate = this.support_tag_search = !1;
|
|
2640
|
-
this.db = null;
|
|
2641
|
-
this.h = {};
|
|
2642
|
-
}
|
|
2643
|
-
w = Eb.prototype;
|
|
2644
|
-
w.mount = function(a) {
|
|
2645
|
-
if (a.index) {
|
|
2646
|
-
return a.mount(this);
|
|
2647
|
-
}
|
|
2648
|
-
a.db = this;
|
|
2649
|
-
return this.open();
|
|
2650
|
-
};
|
|
2651
|
-
w.open = function() {
|
|
2652
|
-
if (this.db) {
|
|
2653
|
-
return this.db;
|
|
2654
|
-
}
|
|
2655
|
-
let a = this;
|
|
2656
|
-
navigator.storage && navigator.storage.persist && navigator.storage.persist();
|
|
2657
|
-
Db[a.id] || (Db[a.id] = []);
|
|
2658
|
-
Db[a.id].push(a.field);
|
|
2659
|
-
const c = Bb.open(a.id, 1);
|
|
2660
|
-
c.onupgradeneeded = function() {
|
|
2661
|
-
const b = a.db = this.result;
|
|
2662
|
-
for (let e = 0, d; e < Cb.length; e++) {
|
|
2663
|
-
d = Cb[e];
|
|
2664
|
-
for (let f = 0, g; f < Db[a.id].length; f++) {
|
|
2665
|
-
g = Db[a.id][f], b.objectStoreNames.contains(d + (d !== "reg" ? g ? ":" + g : "" : "")) || b.createObjectStore(d + (d !== "reg" ? g ? ":" + g : "" : ""));
|
|
2666
|
-
}
|
|
2667
|
-
}
|
|
2668
|
-
};
|
|
2669
|
-
return a.db = Z(c, function(b) {
|
|
2670
|
-
a.db = b;
|
|
2671
|
-
a.db.onversionchange = function() {
|
|
2672
|
-
a.close();
|
|
2673
|
-
};
|
|
2674
|
-
});
|
|
2675
|
-
};
|
|
2676
|
-
w.close = function() {
|
|
2677
|
-
this.db && this.db.close();
|
|
2678
|
-
this.db = null;
|
|
2679
|
-
};
|
|
2680
|
-
w.destroy = function() {
|
|
2681
|
-
const a = Bb.deleteDatabase(this.id);
|
|
2682
|
-
return Z(a);
|
|
2683
|
-
};
|
|
2684
|
-
w.clear = function() {
|
|
2685
|
-
const a = [];
|
|
2686
|
-
for (let b = 0, e; b < Cb.length; b++) {
|
|
2687
|
-
e = Cb[b];
|
|
2688
|
-
for (let d = 0, f; d < Db[this.id].length; d++) {
|
|
2689
|
-
f = Db[this.id][d], a.push(e + (e !== "reg" ? f ? ":" + f : "" : ""));
|
|
2690
|
-
}
|
|
2691
|
-
}
|
|
2692
|
-
const c = this.db.transaction(a, "readwrite");
|
|
2693
|
-
for (let b = 0; b < a.length; b++) {
|
|
2694
|
-
c.objectStore(a[b]).clear();
|
|
2695
|
-
}
|
|
2696
|
-
return Z(c);
|
|
2697
|
-
};
|
|
2698
|
-
w.get = function(a, c, b = 0, e = 0, d = !0, f = !1) {
|
|
2699
|
-
a = this.db.transaction((c ? "ctx" : "map") + (this.field ? ":" + this.field : ""), "readonly").objectStore((c ? "ctx" : "map") + (this.field ? ":" + this.field : "")).get(c ? c + ":" + a : a);
|
|
2700
|
-
const g = this;
|
|
2701
|
-
return Z(a).then(function(k) {
|
|
2702
|
-
let h = [];
|
|
2703
|
-
if (!k || !k.length) {
|
|
2704
|
-
return h;
|
|
2705
|
-
}
|
|
2706
|
-
if (d) {
|
|
2707
|
-
if (!b && !e && k.length === 1) {
|
|
2708
|
-
return k[0];
|
|
2709
|
-
}
|
|
2710
|
-
for (let l = 0, m; l < k.length; l++) {
|
|
2711
|
-
if ((m = k[l]) && m.length) {
|
|
2712
|
-
if (e >= m.length) {
|
|
2713
|
-
e -= m.length;
|
|
2714
|
-
continue;
|
|
2715
|
-
}
|
|
2716
|
-
const p = b ? e + Math.min(m.length - e, b) : m.length;
|
|
2717
|
-
for (let u = e; u < p; u++) {
|
|
2718
|
-
h.push(m[u]);
|
|
2719
|
-
}
|
|
2720
|
-
e = 0;
|
|
2721
|
-
if (h.length === b) {
|
|
2722
|
-
break;
|
|
2723
|
-
}
|
|
2724
|
-
}
|
|
2725
|
-
}
|
|
2726
|
-
return f ? g.enrich(h) : h;
|
|
2727
|
-
}
|
|
2728
|
-
return k;
|
|
2729
|
-
});
|
|
2730
|
-
};
|
|
2731
|
-
w.tag = function(a, c = 0, b = 0, e = !1) {
|
|
2732
|
-
a = this.db.transaction("tag" + (this.field ? ":" + this.field : ""), "readonly").objectStore("tag" + (this.field ? ":" + this.field : "")).get(a);
|
|
2733
|
-
const d = this;
|
|
2734
|
-
return Z(a).then(function(f) {
|
|
2735
|
-
if (!f || !f.length || b >= f.length) {
|
|
2736
|
-
return [];
|
|
2737
|
-
}
|
|
2738
|
-
if (!c && !b) {
|
|
2739
|
-
return f;
|
|
2740
|
-
}
|
|
2741
|
-
f = f.slice(b, b + c);
|
|
2742
|
-
return e ? d.enrich(f) : f;
|
|
2743
|
-
});
|
|
2744
|
-
};
|
|
2745
|
-
w.enrich = function(a) {
|
|
2746
|
-
typeof a !== "object" && (a = [a]);
|
|
2747
|
-
const c = this.db.transaction("reg", "readonly").objectStore("reg"), b = [];
|
|
2748
|
-
for (let e = 0; e < a.length; e++) {
|
|
2749
|
-
b[e] = Z(c.get(a[e]));
|
|
2750
|
-
}
|
|
2751
|
-
return Promise.all(b).then(function(e) {
|
|
2752
|
-
for (let d = 0; d < e.length; d++) {
|
|
2753
|
-
e[d] = {id:a[d], doc:e[d] ? JSON.parse(e[d]) : null};
|
|
2754
|
-
}
|
|
2755
|
-
return e;
|
|
2756
|
-
});
|
|
2757
|
-
};
|
|
2758
|
-
w.has = function(a) {
|
|
2759
|
-
a = this.db.transaction("reg", "readonly").objectStore("reg").getKey(a);
|
|
2760
|
-
return Z(a).then(function(c) {
|
|
2761
|
-
return !!c;
|
|
2762
|
-
});
|
|
2763
|
-
};
|
|
2764
|
-
w.search = null;
|
|
2765
|
-
w.info = function() {
|
|
2766
|
-
};
|
|
2767
|
-
w.transaction = function(a, c, b) {
|
|
2768
|
-
a += a !== "reg" ? this.field ? ":" + this.field : "" : "";
|
|
2769
|
-
let e = this.h[a + ":" + c];
|
|
2770
|
-
if (e) {
|
|
2771
|
-
return b.call(this, e);
|
|
2772
|
-
}
|
|
2773
|
-
let d = this.db.transaction(a, c);
|
|
2774
|
-
this.h[a + ":" + c] = e = d.objectStore(a);
|
|
2775
|
-
const f = b.call(this, e);
|
|
2776
|
-
this.h[a + ":" + c] = null;
|
|
2777
|
-
return Z(d).finally(function() {
|
|
2778
|
-
return f;
|
|
2779
|
-
});
|
|
2780
|
-
};
|
|
2781
|
-
w.commit = async function(a) {
|
|
2782
|
-
let c = a.commit_task, b = [];
|
|
2783
|
-
a.commit_task = [];
|
|
2784
|
-
for (let e = 0, d; e < c.length; e++) {
|
|
2785
|
-
d = c[e], d.del && b.push(d.del);
|
|
2786
|
-
}
|
|
2787
|
-
b.length && await this.remove(b);
|
|
2788
|
-
a.reg.size && (await this.transaction("map", "readwrite", function(e) {
|
|
2789
|
-
for (const d of a.map) {
|
|
2790
|
-
const f = d[0], g = d[1];
|
|
2791
|
-
g.length && (e.get(f).onsuccess = function() {
|
|
2792
|
-
let k = this.result;
|
|
2793
|
-
var h;
|
|
2794
|
-
if (k && k.length) {
|
|
2795
|
-
const l = Math.max(k.length, g.length);
|
|
2796
|
-
for (let m = 0, p, u; m < l; m++) {
|
|
2797
|
-
if ((u = g[m]) && u.length) {
|
|
2798
|
-
if ((p = k[m]) && p.length) {
|
|
2799
|
-
for (h = 0; h < u.length; h++) {
|
|
2800
|
-
p.push(u[h]);
|
|
2801
|
-
}
|
|
2802
|
-
} else {
|
|
2803
|
-
k[m] = u;
|
|
2804
|
-
}
|
|
2805
|
-
h = 1;
|
|
2806
|
-
}
|
|
2807
|
-
}
|
|
2808
|
-
} else {
|
|
2809
|
-
k = g, h = 1;
|
|
2810
|
-
}
|
|
2811
|
-
h && e.put(k, f);
|
|
2812
|
-
});
|
|
2813
|
-
}
|
|
2814
|
-
}), await this.transaction("ctx", "readwrite", function(e) {
|
|
2815
|
-
for (const d of a.ctx) {
|
|
2816
|
-
const f = d[0], g = d[1];
|
|
2817
|
-
for (const k of g) {
|
|
2818
|
-
const h = k[0], l = k[1];
|
|
2819
|
-
l.length && (e.get(f + ":" + h).onsuccess = function() {
|
|
2820
|
-
let m = this.result;
|
|
2821
|
-
var p;
|
|
2822
|
-
if (m && m.length) {
|
|
2823
|
-
const u = Math.max(m.length, l.length);
|
|
2824
|
-
for (let r = 0, t, n; r < u; r++) {
|
|
2825
|
-
if ((n = l[r]) && n.length) {
|
|
2826
|
-
if ((t = m[r]) && t.length) {
|
|
2827
|
-
for (p = 0; p < n.length; p++) {
|
|
2828
|
-
t.push(n[p]);
|
|
2829
|
-
}
|
|
2830
|
-
} else {
|
|
2831
|
-
m[r] = n;
|
|
2832
|
-
}
|
|
2833
|
-
p = 1;
|
|
2834
|
-
}
|
|
2835
|
-
}
|
|
2836
|
-
} else {
|
|
2837
|
-
m = l, p = 1;
|
|
2838
|
-
}
|
|
2839
|
-
p && e.put(m, f + ":" + h);
|
|
2840
|
-
});
|
|
2841
|
-
}
|
|
2842
|
-
}
|
|
2843
|
-
}), a.store ? await this.transaction("reg", "readwrite", function(e) {
|
|
2844
|
-
for (const d of a.store) {
|
|
2845
|
-
const f = d[0], g = d[1];
|
|
2846
|
-
e.put(typeof g === "object" ? JSON.stringify(g) : 1, f);
|
|
2847
|
-
}
|
|
2848
|
-
}) : a.bypass || await this.transaction("reg", "readwrite", function(e) {
|
|
2849
|
-
for (const d of a.reg.keys()) {
|
|
2850
|
-
e.put(1, d);
|
|
2851
|
-
}
|
|
2852
|
-
}), a.tag && await this.transaction("tag", "readwrite", function(e) {
|
|
2853
|
-
for (const d of a.tag) {
|
|
2854
|
-
const f = d[0], g = d[1];
|
|
2855
|
-
g.length && (e.get(f).onsuccess = function() {
|
|
2856
|
-
let k = this.result;
|
|
2857
|
-
k = k && k.length ? k.concat(g) : g;
|
|
2858
|
-
e.put(k, f);
|
|
2859
|
-
});
|
|
2860
|
-
}
|
|
2861
|
-
}), a.map.clear(), a.ctx.clear(), a.tag && a.tag.clear(), a.store && a.store.clear(), a.document || a.reg.clear());
|
|
2862
|
-
};
|
|
2863
|
-
function Fb(a, c, b) {
|
|
2864
|
-
const e = a.value;
|
|
2865
|
-
let d, f = 0;
|
|
2866
|
-
for (let g = 0, k; g < e.length; g++) {
|
|
2867
|
-
if (k = b ? e : e[g]) {
|
|
2868
|
-
for (let h = 0, l, m; h < c.length; h++) {
|
|
2869
|
-
if (m = c[h], l = k.indexOf(m), l >= 0) {
|
|
2870
|
-
if (d = 1, k.length > 1) {
|
|
2871
|
-
k.splice(l, 1);
|
|
2872
|
-
} else {
|
|
2873
|
-
e[g] = [];
|
|
2874
|
-
break;
|
|
2875
|
-
}
|
|
2876
|
-
}
|
|
2877
|
-
}
|
|
2878
|
-
f += k.length;
|
|
2879
|
-
}
|
|
2880
|
-
if (b) {
|
|
2881
|
-
break;
|
|
2882
|
-
}
|
|
2883
|
-
}
|
|
2884
|
-
f ? d && a.update(e) : a.delete();
|
|
2885
|
-
a.continue();
|
|
2886
|
-
}
|
|
2887
|
-
w.remove = function(a) {
|
|
2888
|
-
typeof a !== "object" && (a = [a]);
|
|
2889
|
-
return Promise.all([this.transaction("map", "readwrite", function(c) {
|
|
2890
|
-
c.openCursor().onsuccess = function() {
|
|
2891
|
-
const b = this.result;
|
|
2892
|
-
b && Fb(b, a);
|
|
2893
|
-
};
|
|
2894
|
-
}), this.transaction("ctx", "readwrite", function(c) {
|
|
2895
|
-
c.openCursor().onsuccess = function() {
|
|
2896
|
-
const b = this.result;
|
|
2897
|
-
b && Fb(b, a);
|
|
2898
|
-
};
|
|
2899
|
-
}), this.transaction("tag", "readwrite", function(c) {
|
|
2900
|
-
c.openCursor().onsuccess = function() {
|
|
2901
|
-
const b = this.result;
|
|
2902
|
-
b && Fb(b, a, !0);
|
|
2903
|
-
};
|
|
2904
|
-
}), this.transaction("reg", "readwrite", function(c) {
|
|
2905
|
-
for (let b = 0; b < a.length; b++) {
|
|
2906
|
-
c.delete(a[b]);
|
|
2907
|
-
}
|
|
2908
|
-
})]);
|
|
2909
|
-
};
|
|
2910
|
-
function Z(a, c) {
|
|
2911
|
-
return new Promise((b, e) => {
|
|
2912
|
-
a.onsuccess = a.oncomplete = function() {
|
|
2913
|
-
c && c(this.result);
|
|
2914
|
-
c = null;
|
|
2915
|
-
b(this.result);
|
|
2916
|
-
};
|
|
2917
|
-
a.onerror = a.onblocked = e;
|
|
2918
|
-
a = null;
|
|
2919
|
-
});
|
|
2920
|
-
}
|
|
2921
|
-
;const Gb = {Index:T, Charset:wa, Encoder:ka, Document:Na, Worker:La, Resolver:X, IndexedDB:Eb, Language:{}}, Hb = typeof self !== "undefined" ? self : typeof global !== "undefined" ? global : self;
|
|
2922
|
-
let Ib;
|
|
2923
|
-
(Ib = Hb.define) && Ib.amd ? Ib([], function() {
|
|
2924
|
-
return Gb;
|
|
2925
|
-
}) : typeof Hb.exports === "object" ? Hb.exports = Gb : Hb.FlexSearch = Gb;
|
|
2926
|
-
}(this||self));
|