@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,3944 +0,0 @@
|
|
|
1
|
-
/**!
|
|
2
|
-
* FlexSearch.js v0.8.212 (ES5/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 aa(a) {
|
|
11
|
-
var b = 0;
|
|
12
|
-
return function() {
|
|
13
|
-
return b < a.length ? {done:!1, value:a[b++]} : {done:!0};
|
|
14
|
-
};
|
|
15
|
-
}
|
|
16
|
-
function D(a) {
|
|
17
|
-
var b = typeof Symbol != "undefined" && Symbol.iterator && a[Symbol.iterator];
|
|
18
|
-
if (b) {
|
|
19
|
-
return b.call(a);
|
|
20
|
-
}
|
|
21
|
-
if (typeof a.length == "number") {
|
|
22
|
-
return {next:aa(a)};
|
|
23
|
-
}
|
|
24
|
-
throw Error(String(a) + " is not an iterable or ArrayLike");
|
|
25
|
-
}
|
|
26
|
-
var ca = typeof Object.defineProperties == "function" ? Object.defineProperty : function(a, b, c) {
|
|
27
|
-
if (a == Array.prototype || a == Object.prototype) {
|
|
28
|
-
return a;
|
|
29
|
-
}
|
|
30
|
-
a[b] = c.value;
|
|
31
|
-
return a;
|
|
32
|
-
};
|
|
33
|
-
function da(a) {
|
|
34
|
-
a = ["object" == typeof globalThis && globalThis, a, "object" == typeof window && window, "object" == typeof self && self, "object" == typeof global && global];
|
|
35
|
-
for (var b = 0; b < a.length; ++b) {
|
|
36
|
-
var c = a[b];
|
|
37
|
-
if (c && c.Math == Math) {
|
|
38
|
-
return c;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
throw Error("Cannot find global object");
|
|
42
|
-
}
|
|
43
|
-
var ea = da(this);
|
|
44
|
-
function H(a, b) {
|
|
45
|
-
if (b) {
|
|
46
|
-
a: {
|
|
47
|
-
var c = ea;
|
|
48
|
-
a = a.split(".");
|
|
49
|
-
for (var d = 0; d < a.length - 1; d++) {
|
|
50
|
-
var e = a[d];
|
|
51
|
-
if (!(e in c)) {
|
|
52
|
-
break a;
|
|
53
|
-
}
|
|
54
|
-
c = c[e];
|
|
55
|
-
}
|
|
56
|
-
a = a[a.length - 1];
|
|
57
|
-
d = c[a];
|
|
58
|
-
b = b(d);
|
|
59
|
-
b != d && b != null && ca(c, a, {configurable:!0, writable:!0, value:b});
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
var fa;
|
|
64
|
-
if (typeof Object.setPrototypeOf == "function") {
|
|
65
|
-
fa = Object.setPrototypeOf;
|
|
66
|
-
} else {
|
|
67
|
-
var ha;
|
|
68
|
-
a: {
|
|
69
|
-
var ia = {a:!0}, ja = {};
|
|
70
|
-
try {
|
|
71
|
-
ja.__proto__ = ia;
|
|
72
|
-
ha = ja.a;
|
|
73
|
-
break a;
|
|
74
|
-
} catch (a) {
|
|
75
|
-
}
|
|
76
|
-
ha = !1;
|
|
77
|
-
}
|
|
78
|
-
fa = ha ? function(a, b) {
|
|
79
|
-
a.__proto__ = b;
|
|
80
|
-
if (a.__proto__ !== b) {
|
|
81
|
-
throw new TypeError(a + " is not extensible");
|
|
82
|
-
}
|
|
83
|
-
return a;
|
|
84
|
-
} : null;
|
|
85
|
-
}
|
|
86
|
-
var ka = fa;
|
|
87
|
-
function la() {
|
|
88
|
-
this.D = !1;
|
|
89
|
-
this.A = null;
|
|
90
|
-
this.B = void 0;
|
|
91
|
-
this.h = 1;
|
|
92
|
-
this.I = 0;
|
|
93
|
-
this.C = null;
|
|
94
|
-
}
|
|
95
|
-
function ma(a) {
|
|
96
|
-
if (a.D) {
|
|
97
|
-
throw new TypeError("Generator is already running");
|
|
98
|
-
}
|
|
99
|
-
a.D = !0;
|
|
100
|
-
}
|
|
101
|
-
la.prototype.H = function(a) {
|
|
102
|
-
this.B = a;
|
|
103
|
-
};
|
|
104
|
-
function na(a, b) {
|
|
105
|
-
a.C = {ja:b, ka:!0};
|
|
106
|
-
a.h = a.I;
|
|
107
|
-
}
|
|
108
|
-
la.prototype.return = function(a) {
|
|
109
|
-
this.C = {return:a};
|
|
110
|
-
this.h = this.I;
|
|
111
|
-
};
|
|
112
|
-
function L(a, b, c) {
|
|
113
|
-
a.h = c;
|
|
114
|
-
return {value:b};
|
|
115
|
-
}
|
|
116
|
-
function pa(a) {
|
|
117
|
-
this.h = new la();
|
|
118
|
-
this.A = a;
|
|
119
|
-
}
|
|
120
|
-
function qa(a, b) {
|
|
121
|
-
ma(a.h);
|
|
122
|
-
var c = a.h.A;
|
|
123
|
-
if (c) {
|
|
124
|
-
return ra(a, "return" in c ? c["return"] : function(d) {
|
|
125
|
-
return {value:d, done:!0};
|
|
126
|
-
}, b, a.h.return);
|
|
127
|
-
}
|
|
128
|
-
a.h.return(b);
|
|
129
|
-
return sa(a);
|
|
130
|
-
}
|
|
131
|
-
function ra(a, b, c, d) {
|
|
132
|
-
try {
|
|
133
|
-
var e = b.call(a.h.A, c);
|
|
134
|
-
if (!(e instanceof Object)) {
|
|
135
|
-
throw new TypeError("Iterator result " + e + " is not an object");
|
|
136
|
-
}
|
|
137
|
-
if (!e.done) {
|
|
138
|
-
return a.h.D = !1, e;
|
|
139
|
-
}
|
|
140
|
-
var f = e.value;
|
|
141
|
-
} catch (g) {
|
|
142
|
-
return a.h.A = null, na(a.h, g), sa(a);
|
|
143
|
-
}
|
|
144
|
-
a.h.A = null;
|
|
145
|
-
d.call(a.h, f);
|
|
146
|
-
return sa(a);
|
|
147
|
-
}
|
|
148
|
-
function sa(a) {
|
|
149
|
-
for (; a.h.h;) {
|
|
150
|
-
try {
|
|
151
|
-
var b = a.A(a.h);
|
|
152
|
-
if (b) {
|
|
153
|
-
return a.h.D = !1, {value:b.value, done:!1};
|
|
154
|
-
}
|
|
155
|
-
} catch (c) {
|
|
156
|
-
a.h.B = void 0, na(a.h, c);
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
a.h.D = !1;
|
|
160
|
-
if (a.h.C) {
|
|
161
|
-
b = a.h.C;
|
|
162
|
-
a.h.C = null;
|
|
163
|
-
if (b.ka) {
|
|
164
|
-
throw b.ja;
|
|
165
|
-
}
|
|
166
|
-
return {value:b.return, done:!0};
|
|
167
|
-
}
|
|
168
|
-
return {value:void 0, done:!0};
|
|
169
|
-
}
|
|
170
|
-
function ta(a) {
|
|
171
|
-
this.next = function(b) {
|
|
172
|
-
ma(a.h);
|
|
173
|
-
a.h.A ? b = ra(a, a.h.A.next, b, a.h.H) : (a.h.H(b), b = sa(a));
|
|
174
|
-
return b;
|
|
175
|
-
};
|
|
176
|
-
this.throw = function(b) {
|
|
177
|
-
ma(a.h);
|
|
178
|
-
a.h.A ? b = ra(a, a.h.A["throw"], b, a.h.H) : (na(a.h, b), b = sa(a));
|
|
179
|
-
return b;
|
|
180
|
-
};
|
|
181
|
-
this.return = function(b) {
|
|
182
|
-
return qa(a, b);
|
|
183
|
-
};
|
|
184
|
-
this[Symbol.iterator] = function() {
|
|
185
|
-
return this;
|
|
186
|
-
};
|
|
187
|
-
}
|
|
188
|
-
function ua(a, b) {
|
|
189
|
-
b = new ta(new pa(b));
|
|
190
|
-
ka && a.prototype && ka(b, a.prototype);
|
|
191
|
-
return b;
|
|
192
|
-
}
|
|
193
|
-
function va(a) {
|
|
194
|
-
function b(d) {
|
|
195
|
-
return a.next(d);
|
|
196
|
-
}
|
|
197
|
-
function c(d) {
|
|
198
|
-
return a.throw(d);
|
|
199
|
-
}
|
|
200
|
-
return new Promise(function(d, e) {
|
|
201
|
-
function f(g) {
|
|
202
|
-
g.done ? d(g.value) : Promise.resolve(g.value).then(b, c).then(f, e);
|
|
203
|
-
}
|
|
204
|
-
f(a.next());
|
|
205
|
-
});
|
|
206
|
-
}
|
|
207
|
-
function wa(a) {
|
|
208
|
-
return va(new ta(new pa(a)));
|
|
209
|
-
}
|
|
210
|
-
H("Symbol", function(a) {
|
|
211
|
-
function b(f) {
|
|
212
|
-
if (this instanceof b) {
|
|
213
|
-
throw new TypeError("Symbol is not a constructor");
|
|
214
|
-
}
|
|
215
|
-
return new c(d + (f || "") + "_" + e++, f);
|
|
216
|
-
}
|
|
217
|
-
function c(f, g) {
|
|
218
|
-
this.h = f;
|
|
219
|
-
ca(this, "description", {configurable:!0, writable:!0, value:g});
|
|
220
|
-
}
|
|
221
|
-
if (a) {
|
|
222
|
-
return a;
|
|
223
|
-
}
|
|
224
|
-
c.prototype.toString = function() {
|
|
225
|
-
return this.h;
|
|
226
|
-
};
|
|
227
|
-
var d = "jscomp_symbol_" + (Math.random() * 1E9 >>> 0) + "_", e = 0;
|
|
228
|
-
return b;
|
|
229
|
-
});
|
|
230
|
-
H("Symbol.iterator", function(a) {
|
|
231
|
-
if (a) {
|
|
232
|
-
return a;
|
|
233
|
-
}
|
|
234
|
-
a = Symbol("Symbol.iterator");
|
|
235
|
-
for (var b = "Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "), c = 0; c < b.length; c++) {
|
|
236
|
-
var d = ea[b[c]];
|
|
237
|
-
typeof d === "function" && typeof d.prototype[a] != "function" && ca(d.prototype, a, {configurable:!0, writable:!0, value:function() {
|
|
238
|
-
return xa(aa(this));
|
|
239
|
-
}});
|
|
240
|
-
}
|
|
241
|
-
return a;
|
|
242
|
-
});
|
|
243
|
-
function xa(a) {
|
|
244
|
-
a = {next:a};
|
|
245
|
-
a[Symbol.iterator] = function() {
|
|
246
|
-
return this;
|
|
247
|
-
};
|
|
248
|
-
return a;
|
|
249
|
-
}
|
|
250
|
-
H("Promise", function(a) {
|
|
251
|
-
function b(g) {
|
|
252
|
-
this.A = 0;
|
|
253
|
-
this.B = void 0;
|
|
254
|
-
this.h = [];
|
|
255
|
-
this.K = !1;
|
|
256
|
-
var h = this.C();
|
|
257
|
-
try {
|
|
258
|
-
g(h.resolve, h.reject);
|
|
259
|
-
} catch (k) {
|
|
260
|
-
h.reject(k);
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
function c() {
|
|
264
|
-
this.h = null;
|
|
265
|
-
}
|
|
266
|
-
function d(g) {
|
|
267
|
-
return g instanceof b ? g : new b(function(h) {
|
|
268
|
-
h(g);
|
|
269
|
-
});
|
|
270
|
-
}
|
|
271
|
-
if (a) {
|
|
272
|
-
return a;
|
|
273
|
-
}
|
|
274
|
-
c.prototype.A = function(g) {
|
|
275
|
-
if (this.h == null) {
|
|
276
|
-
this.h = [];
|
|
277
|
-
var h = this;
|
|
278
|
-
this.B(function() {
|
|
279
|
-
h.D();
|
|
280
|
-
});
|
|
281
|
-
}
|
|
282
|
-
this.h.push(g);
|
|
283
|
-
};
|
|
284
|
-
var e = ea.setTimeout;
|
|
285
|
-
c.prototype.B = function(g) {
|
|
286
|
-
e(g, 0);
|
|
287
|
-
};
|
|
288
|
-
c.prototype.D = function() {
|
|
289
|
-
for (; this.h && this.h.length;) {
|
|
290
|
-
var g = this.h;
|
|
291
|
-
this.h = [];
|
|
292
|
-
for (var h = 0; h < g.length; ++h) {
|
|
293
|
-
var k = g[h];
|
|
294
|
-
g[h] = null;
|
|
295
|
-
try {
|
|
296
|
-
k();
|
|
297
|
-
} catch (l) {
|
|
298
|
-
this.C(l);
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
this.h = null;
|
|
303
|
-
};
|
|
304
|
-
c.prototype.C = function(g) {
|
|
305
|
-
this.B(function() {
|
|
306
|
-
throw g;
|
|
307
|
-
});
|
|
308
|
-
};
|
|
309
|
-
b.prototype.C = function() {
|
|
310
|
-
function g(l) {
|
|
311
|
-
return function(m) {
|
|
312
|
-
k || (k = !0, l.call(h, m));
|
|
313
|
-
};
|
|
314
|
-
}
|
|
315
|
-
var h = this, k = !1;
|
|
316
|
-
return {resolve:g(this.ea), reject:g(this.D)};
|
|
317
|
-
};
|
|
318
|
-
b.prototype.ea = function(g) {
|
|
319
|
-
if (g === this) {
|
|
320
|
-
this.D(new TypeError("A Promise cannot resolve to itself"));
|
|
321
|
-
} else {
|
|
322
|
-
if (g instanceof b) {
|
|
323
|
-
this.ga(g);
|
|
324
|
-
} else {
|
|
325
|
-
a: {
|
|
326
|
-
switch(typeof g) {
|
|
327
|
-
case "object":
|
|
328
|
-
var h = g != null;
|
|
329
|
-
break a;
|
|
330
|
-
case "function":
|
|
331
|
-
h = !0;
|
|
332
|
-
break a;
|
|
333
|
-
default:
|
|
334
|
-
h = !1;
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
h ? this.da(g) : this.I(g);
|
|
338
|
-
}
|
|
339
|
-
}
|
|
340
|
-
};
|
|
341
|
-
b.prototype.da = function(g) {
|
|
342
|
-
var h = void 0;
|
|
343
|
-
try {
|
|
344
|
-
h = g.then;
|
|
345
|
-
} catch (k) {
|
|
346
|
-
this.D(k);
|
|
347
|
-
return;
|
|
348
|
-
}
|
|
349
|
-
typeof h == "function" ? this.ha(h, g) : this.I(g);
|
|
350
|
-
};
|
|
351
|
-
b.prototype.D = function(g) {
|
|
352
|
-
this.L(2, g);
|
|
353
|
-
};
|
|
354
|
-
b.prototype.I = function(g) {
|
|
355
|
-
this.L(1, g);
|
|
356
|
-
};
|
|
357
|
-
b.prototype.L = function(g, h) {
|
|
358
|
-
if (this.A != 0) {
|
|
359
|
-
throw Error("Cannot settle(" + g + ", " + h + "): Promise already settled in state" + this.A);
|
|
360
|
-
}
|
|
361
|
-
this.A = g;
|
|
362
|
-
this.B = h;
|
|
363
|
-
this.A === 2 && this.fa();
|
|
364
|
-
this.P();
|
|
365
|
-
};
|
|
366
|
-
b.prototype.fa = function() {
|
|
367
|
-
var g = this;
|
|
368
|
-
e(function() {
|
|
369
|
-
if (g.ca()) {
|
|
370
|
-
var h = ea.console;
|
|
371
|
-
typeof h !== "undefined" && h.error(g.B);
|
|
372
|
-
}
|
|
373
|
-
}, 1);
|
|
374
|
-
};
|
|
375
|
-
b.prototype.ca = function() {
|
|
376
|
-
if (this.K) {
|
|
377
|
-
return !1;
|
|
378
|
-
}
|
|
379
|
-
var g = ea.CustomEvent, h = ea.Event, k = ea.dispatchEvent;
|
|
380
|
-
if (typeof k === "undefined") {
|
|
381
|
-
return !0;
|
|
382
|
-
}
|
|
383
|
-
typeof g === "function" ? g = new g("unhandledrejection", {cancelable:!0}) : typeof h === "function" ? g = new h("unhandledrejection", {cancelable:!0}) : (g = ea.document.createEvent("CustomEvent"), g.initCustomEvent("unhandledrejection", !1, !0, g));
|
|
384
|
-
g.promise = this;
|
|
385
|
-
g.reason = this.B;
|
|
386
|
-
return k(g);
|
|
387
|
-
};
|
|
388
|
-
b.prototype.P = function() {
|
|
389
|
-
if (this.h != null) {
|
|
390
|
-
for (var g = 0; g < this.h.length; ++g) {
|
|
391
|
-
f.A(this.h[g]);
|
|
392
|
-
}
|
|
393
|
-
this.h = null;
|
|
394
|
-
}
|
|
395
|
-
};
|
|
396
|
-
var f = new c();
|
|
397
|
-
b.prototype.ga = function(g) {
|
|
398
|
-
var h = this.C();
|
|
399
|
-
g.R(h.resolve, h.reject);
|
|
400
|
-
};
|
|
401
|
-
b.prototype.ha = function(g, h) {
|
|
402
|
-
var k = this.C();
|
|
403
|
-
try {
|
|
404
|
-
g.call(h, k.resolve, k.reject);
|
|
405
|
-
} catch (l) {
|
|
406
|
-
k.reject(l);
|
|
407
|
-
}
|
|
408
|
-
};
|
|
409
|
-
b.prototype.then = function(g, h) {
|
|
410
|
-
function k(n, q) {
|
|
411
|
-
return typeof n == "function" ? function(t) {
|
|
412
|
-
try {
|
|
413
|
-
l(n(t));
|
|
414
|
-
} catch (u) {
|
|
415
|
-
m(u);
|
|
416
|
-
}
|
|
417
|
-
} : q;
|
|
418
|
-
}
|
|
419
|
-
var l, m, p = new b(function(n, q) {
|
|
420
|
-
l = n;
|
|
421
|
-
m = q;
|
|
422
|
-
});
|
|
423
|
-
this.R(k(g, l), k(h, m));
|
|
424
|
-
return p;
|
|
425
|
-
};
|
|
426
|
-
b.prototype.catch = function(g) {
|
|
427
|
-
return this.then(void 0, g);
|
|
428
|
-
};
|
|
429
|
-
b.prototype.R = function(g, h) {
|
|
430
|
-
function k() {
|
|
431
|
-
switch(l.A) {
|
|
432
|
-
case 1:
|
|
433
|
-
g(l.B);
|
|
434
|
-
break;
|
|
435
|
-
case 2:
|
|
436
|
-
h(l.B);
|
|
437
|
-
break;
|
|
438
|
-
default:
|
|
439
|
-
throw Error("Unexpected state: " + l.A);
|
|
440
|
-
}
|
|
441
|
-
}
|
|
442
|
-
var l = this;
|
|
443
|
-
this.h == null ? f.A(k) : this.h.push(k);
|
|
444
|
-
this.K = !0;
|
|
445
|
-
};
|
|
446
|
-
b.resolve = d;
|
|
447
|
-
b.reject = function(g) {
|
|
448
|
-
return new b(function(h, k) {
|
|
449
|
-
k(g);
|
|
450
|
-
});
|
|
451
|
-
};
|
|
452
|
-
b.race = function(g) {
|
|
453
|
-
return new b(function(h, k) {
|
|
454
|
-
for (var l = D(g), m = l.next(); !m.done; m = l.next()) {
|
|
455
|
-
d(m.value).R(h, k);
|
|
456
|
-
}
|
|
457
|
-
});
|
|
458
|
-
};
|
|
459
|
-
b.all = function(g) {
|
|
460
|
-
var h = D(g), k = h.next();
|
|
461
|
-
return k.done ? d([]) : new b(function(l, m) {
|
|
462
|
-
function p(t) {
|
|
463
|
-
return function(u) {
|
|
464
|
-
n[t] = u;
|
|
465
|
-
q--;
|
|
466
|
-
q == 0 && l(n);
|
|
467
|
-
};
|
|
468
|
-
}
|
|
469
|
-
var n = [], q = 0;
|
|
470
|
-
do {
|
|
471
|
-
n.push(void 0), q++, d(k.value).R(p(n.length - 1), m), k = h.next();
|
|
472
|
-
} while (!k.done);
|
|
473
|
-
});
|
|
474
|
-
};
|
|
475
|
-
return b;
|
|
476
|
-
});
|
|
477
|
-
function ya(a, b) {
|
|
478
|
-
a instanceof String && (a += "");
|
|
479
|
-
var c = 0, d = !1, e = {next:function() {
|
|
480
|
-
if (!d && c < a.length) {
|
|
481
|
-
var f = c++;
|
|
482
|
-
return {value:b(f, a[f]), done:!1};
|
|
483
|
-
}
|
|
484
|
-
d = !0;
|
|
485
|
-
return {done:!0, value:void 0};
|
|
486
|
-
}};
|
|
487
|
-
e[Symbol.iterator] = function() {
|
|
488
|
-
return e;
|
|
489
|
-
};
|
|
490
|
-
return e;
|
|
491
|
-
}
|
|
492
|
-
H("Array.prototype.values", function(a) {
|
|
493
|
-
return a ? a : function() {
|
|
494
|
-
return ya(this, function(b, c) {
|
|
495
|
-
return c;
|
|
496
|
-
});
|
|
497
|
-
};
|
|
498
|
-
});
|
|
499
|
-
H("Array.prototype.keys", function(a) {
|
|
500
|
-
return a ? a : function() {
|
|
501
|
-
return ya(this, function(b) {
|
|
502
|
-
return b;
|
|
503
|
-
});
|
|
504
|
-
};
|
|
505
|
-
});
|
|
506
|
-
function za(a, b) {
|
|
507
|
-
return Object.prototype.hasOwnProperty.call(a, b);
|
|
508
|
-
}
|
|
509
|
-
H("WeakMap", function(a) {
|
|
510
|
-
function b(k) {
|
|
511
|
-
this.h = (h += Math.random() + 1).toString();
|
|
512
|
-
if (k) {
|
|
513
|
-
k = D(k);
|
|
514
|
-
for (var l; !(l = k.next()).done;) {
|
|
515
|
-
l = l.value, this.set(l[0], l[1]);
|
|
516
|
-
}
|
|
517
|
-
}
|
|
518
|
-
}
|
|
519
|
-
function c() {
|
|
520
|
-
}
|
|
521
|
-
function d(k) {
|
|
522
|
-
var l = typeof k;
|
|
523
|
-
return l === "object" && k !== null || l === "function";
|
|
524
|
-
}
|
|
525
|
-
function e(k) {
|
|
526
|
-
if (!za(k, g)) {
|
|
527
|
-
var l = new c();
|
|
528
|
-
ca(k, g, {value:l});
|
|
529
|
-
}
|
|
530
|
-
}
|
|
531
|
-
function f(k) {
|
|
532
|
-
var l = Object[k];
|
|
533
|
-
l && (Object[k] = function(m) {
|
|
534
|
-
if (m instanceof c) {
|
|
535
|
-
return m;
|
|
536
|
-
}
|
|
537
|
-
Object.isExtensible(m) && e(m);
|
|
538
|
-
return l(m);
|
|
539
|
-
});
|
|
540
|
-
}
|
|
541
|
-
if (function() {
|
|
542
|
-
if (!a || !Object.seal) {
|
|
543
|
-
return !1;
|
|
544
|
-
}
|
|
545
|
-
try {
|
|
546
|
-
var k = Object.seal({}), l = Object.seal({}), m = new a([[k, 2], [l, 3]]);
|
|
547
|
-
if (m.get(k) != 2 || m.get(l) != 3) {
|
|
548
|
-
return !1;
|
|
549
|
-
}
|
|
550
|
-
m.delete(k);
|
|
551
|
-
m.set(l, 4);
|
|
552
|
-
return !m.has(k) && m.get(l) == 4;
|
|
553
|
-
} catch (p) {
|
|
554
|
-
return !1;
|
|
555
|
-
}
|
|
556
|
-
}()) {
|
|
557
|
-
return a;
|
|
558
|
-
}
|
|
559
|
-
var g = "$jscomp_hidden_" + Math.random();
|
|
560
|
-
f("freeze");
|
|
561
|
-
f("preventExtensions");
|
|
562
|
-
f("seal");
|
|
563
|
-
var h = 0;
|
|
564
|
-
b.prototype.set = function(k, l) {
|
|
565
|
-
if (!d(k)) {
|
|
566
|
-
throw Error("Invalid WeakMap key");
|
|
567
|
-
}
|
|
568
|
-
e(k);
|
|
569
|
-
if (!za(k, g)) {
|
|
570
|
-
throw Error("WeakMap key fail: " + k);
|
|
571
|
-
}
|
|
572
|
-
k[g][this.h] = l;
|
|
573
|
-
return this;
|
|
574
|
-
};
|
|
575
|
-
b.prototype.get = function(k) {
|
|
576
|
-
return d(k) && za(k, g) ? k[g][this.h] : void 0;
|
|
577
|
-
};
|
|
578
|
-
b.prototype.has = function(k) {
|
|
579
|
-
return d(k) && za(k, g) && za(k[g], this.h);
|
|
580
|
-
};
|
|
581
|
-
b.prototype.delete = function(k) {
|
|
582
|
-
return d(k) && za(k, g) && za(k[g], this.h) ? delete k[g][this.h] : !1;
|
|
583
|
-
};
|
|
584
|
-
return b;
|
|
585
|
-
});
|
|
586
|
-
H("Map", function(a) {
|
|
587
|
-
function b() {
|
|
588
|
-
var h = {};
|
|
589
|
-
return h.J = h.next = h.head = h;
|
|
590
|
-
}
|
|
591
|
-
function c(h, k) {
|
|
592
|
-
var l = h[1];
|
|
593
|
-
return xa(function() {
|
|
594
|
-
if (l) {
|
|
595
|
-
for (; l.head != h[1];) {
|
|
596
|
-
l = l.J;
|
|
597
|
-
}
|
|
598
|
-
for (; l.next != l.head;) {
|
|
599
|
-
return l = l.next, {done:!1, value:k(l)};
|
|
600
|
-
}
|
|
601
|
-
l = null;
|
|
602
|
-
}
|
|
603
|
-
return {done:!0, value:void 0};
|
|
604
|
-
});
|
|
605
|
-
}
|
|
606
|
-
function d(h, k) {
|
|
607
|
-
var l = k && typeof k;
|
|
608
|
-
l == "object" || l == "function" ? f.has(k) ? l = f.get(k) : (l = "" + ++g, f.set(k, l)) : l = "p_" + k;
|
|
609
|
-
var m = h[0][l];
|
|
610
|
-
if (m && za(h[0], l)) {
|
|
611
|
-
for (h = 0; h < m.length; h++) {
|
|
612
|
-
var p = m[h];
|
|
613
|
-
if (k !== k && p.key !== p.key || k === p.key) {
|
|
614
|
-
return {id:l, list:m, index:h, G:p};
|
|
615
|
-
}
|
|
616
|
-
}
|
|
617
|
-
}
|
|
618
|
-
return {id:l, list:m, index:-1, G:void 0};
|
|
619
|
-
}
|
|
620
|
-
function e(h) {
|
|
621
|
-
this[0] = {};
|
|
622
|
-
this[1] = b();
|
|
623
|
-
this.size = 0;
|
|
624
|
-
if (h) {
|
|
625
|
-
h = D(h);
|
|
626
|
-
for (var k; !(k = h.next()).done;) {
|
|
627
|
-
k = k.value, this.set(k[0], k[1]);
|
|
628
|
-
}
|
|
629
|
-
}
|
|
630
|
-
}
|
|
631
|
-
if (function() {
|
|
632
|
-
if (!a || typeof a != "function" || !a.prototype.entries || typeof Object.seal != "function") {
|
|
633
|
-
return !1;
|
|
634
|
-
}
|
|
635
|
-
try {
|
|
636
|
-
var h = Object.seal({x:4}), k = new a(D([[h, "s"]]));
|
|
637
|
-
if (k.get(h) != "s" || k.size != 1 || k.get({x:4}) || k.set({x:4}, "t") != k || k.size != 2) {
|
|
638
|
-
return !1;
|
|
639
|
-
}
|
|
640
|
-
var l = k.entries(), m = l.next();
|
|
641
|
-
if (m.done || m.value[0] != h || m.value[1] != "s") {
|
|
642
|
-
return !1;
|
|
643
|
-
}
|
|
644
|
-
m = l.next();
|
|
645
|
-
return m.done || m.value[0].x != 4 || m.value[1] != "t" || !l.next().done ? !1 : !0;
|
|
646
|
-
} catch (p) {
|
|
647
|
-
return !1;
|
|
648
|
-
}
|
|
649
|
-
}()) {
|
|
650
|
-
return a;
|
|
651
|
-
}
|
|
652
|
-
var f = new WeakMap();
|
|
653
|
-
e.prototype.set = function(h, k) {
|
|
654
|
-
h = h === 0 ? 0 : h;
|
|
655
|
-
var l = d(this, h);
|
|
656
|
-
l.list || (l.list = this[0][l.id] = []);
|
|
657
|
-
l.G ? l.G.value = k : (l.G = {next:this[1], J:this[1].J, head:this[1], key:h, value:k}, l.list.push(l.G), this[1].J.next = l.G, this[1].J = l.G, this.size++);
|
|
658
|
-
return this;
|
|
659
|
-
};
|
|
660
|
-
e.prototype.delete = function(h) {
|
|
661
|
-
h = d(this, h);
|
|
662
|
-
return h.G && h.list ? (h.list.splice(h.index, 1), h.list.length || delete this[0][h.id], h.G.J.next = h.G.next, h.G.next.J = h.G.J, h.G.head = null, this.size--, !0) : !1;
|
|
663
|
-
};
|
|
664
|
-
e.prototype.clear = function() {
|
|
665
|
-
this[0] = {};
|
|
666
|
-
this[1] = this[1].J = b();
|
|
667
|
-
this.size = 0;
|
|
668
|
-
};
|
|
669
|
-
e.prototype.has = function(h) {
|
|
670
|
-
return !!d(this, h).G;
|
|
671
|
-
};
|
|
672
|
-
e.prototype.get = function(h) {
|
|
673
|
-
return (h = d(this, h).G) && h.value;
|
|
674
|
-
};
|
|
675
|
-
e.prototype.entries = function() {
|
|
676
|
-
return c(this, function(h) {
|
|
677
|
-
return [h.key, h.value];
|
|
678
|
-
});
|
|
679
|
-
};
|
|
680
|
-
e.prototype.keys = function() {
|
|
681
|
-
return c(this, function(h) {
|
|
682
|
-
return h.key;
|
|
683
|
-
});
|
|
684
|
-
};
|
|
685
|
-
e.prototype.values = function() {
|
|
686
|
-
return c(this, function(h) {
|
|
687
|
-
return h.value;
|
|
688
|
-
});
|
|
689
|
-
};
|
|
690
|
-
e.prototype.forEach = function(h, k) {
|
|
691
|
-
for (var l = this.entries(), m; !(m = l.next()).done;) {
|
|
692
|
-
m = m.value, h.call(k, m[1], m[0], this);
|
|
693
|
-
}
|
|
694
|
-
};
|
|
695
|
-
e.prototype[Symbol.iterator] = e.prototype.entries;
|
|
696
|
-
var g = 0;
|
|
697
|
-
return e;
|
|
698
|
-
});
|
|
699
|
-
H("Set", function(a) {
|
|
700
|
-
function b(c) {
|
|
701
|
-
this.h = new Map();
|
|
702
|
-
if (c) {
|
|
703
|
-
c = D(c);
|
|
704
|
-
for (var d; !(d = c.next()).done;) {
|
|
705
|
-
this.add(d.value);
|
|
706
|
-
}
|
|
707
|
-
}
|
|
708
|
-
this.size = this.h.size;
|
|
709
|
-
}
|
|
710
|
-
if (function() {
|
|
711
|
-
if (!a || typeof a != "function" || !a.prototype.entries || typeof Object.seal != "function") {
|
|
712
|
-
return !1;
|
|
713
|
-
}
|
|
714
|
-
try {
|
|
715
|
-
var c = Object.seal({x:4}), d = new a(D([c]));
|
|
716
|
-
if (!d.has(c) || d.size != 1 || d.add(c) != d || d.size != 1 || d.add({x:4}) != d || d.size != 2) {
|
|
717
|
-
return !1;
|
|
718
|
-
}
|
|
719
|
-
var e = d.entries(), f = e.next();
|
|
720
|
-
if (f.done || f.value[0] != c || f.value[1] != c) {
|
|
721
|
-
return !1;
|
|
722
|
-
}
|
|
723
|
-
f = e.next();
|
|
724
|
-
return f.done || f.value[0] == c || f.value[0].x != 4 || f.value[1] != f.value[0] ? !1 : e.next().done;
|
|
725
|
-
} catch (g) {
|
|
726
|
-
return !1;
|
|
727
|
-
}
|
|
728
|
-
}()) {
|
|
729
|
-
return a;
|
|
730
|
-
}
|
|
731
|
-
b.prototype.add = function(c) {
|
|
732
|
-
c = c === 0 ? 0 : c;
|
|
733
|
-
this.h.set(c, c);
|
|
734
|
-
this.size = this.h.size;
|
|
735
|
-
return this;
|
|
736
|
-
};
|
|
737
|
-
b.prototype.delete = function(c) {
|
|
738
|
-
c = this.h.delete(c);
|
|
739
|
-
this.size = this.h.size;
|
|
740
|
-
return c;
|
|
741
|
-
};
|
|
742
|
-
b.prototype.clear = function() {
|
|
743
|
-
this.h.clear();
|
|
744
|
-
this.size = 0;
|
|
745
|
-
};
|
|
746
|
-
b.prototype.has = function(c) {
|
|
747
|
-
return this.h.has(c);
|
|
748
|
-
};
|
|
749
|
-
b.prototype.entries = function() {
|
|
750
|
-
return this.h.entries();
|
|
751
|
-
};
|
|
752
|
-
b.prototype.values = function() {
|
|
753
|
-
return this.h.values();
|
|
754
|
-
};
|
|
755
|
-
b.prototype.keys = b.prototype.values;
|
|
756
|
-
b.prototype[Symbol.iterator] = b.prototype.values;
|
|
757
|
-
b.prototype.forEach = function(c, d) {
|
|
758
|
-
var e = this;
|
|
759
|
-
this.h.forEach(function(f) {
|
|
760
|
-
return c.call(d, f, f, e);
|
|
761
|
-
});
|
|
762
|
-
};
|
|
763
|
-
return b;
|
|
764
|
-
});
|
|
765
|
-
H("Object.is", function(a) {
|
|
766
|
-
return a ? a : function(b, c) {
|
|
767
|
-
return b === c ? b !== 0 || 1 / b === 1 / c : b !== b && c !== c;
|
|
768
|
-
};
|
|
769
|
-
});
|
|
770
|
-
H("Array.prototype.includes", function(a) {
|
|
771
|
-
return a ? a : function(b, c) {
|
|
772
|
-
var d = this;
|
|
773
|
-
d instanceof String && (d = String(d));
|
|
774
|
-
var e = d.length;
|
|
775
|
-
c = c || 0;
|
|
776
|
-
for (c < 0 && (c = Math.max(c + e, 0)); c < e; c++) {
|
|
777
|
-
var f = d[c];
|
|
778
|
-
if (f === b || Object.is(f, b)) {
|
|
779
|
-
return !0;
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
return !1;
|
|
783
|
-
};
|
|
784
|
-
});
|
|
785
|
-
H("String.prototype.includes", function(a) {
|
|
786
|
-
return a ? a : function(b, c) {
|
|
787
|
-
if (this == null) {
|
|
788
|
-
throw new TypeError("The 'this' value for String.prototype.includes must not be null or undefined");
|
|
789
|
-
}
|
|
790
|
-
if (b instanceof RegExp) {
|
|
791
|
-
throw new TypeError("First argument to String.prototype.includes must not be a regular expression");
|
|
792
|
-
}
|
|
793
|
-
return this.indexOf(b, c || 0) !== -1;
|
|
794
|
-
};
|
|
795
|
-
});
|
|
796
|
-
H("Array.prototype.entries", function(a) {
|
|
797
|
-
return a ? a : function() {
|
|
798
|
-
return ya(this, function(b, c) {
|
|
799
|
-
return [b, c];
|
|
800
|
-
});
|
|
801
|
-
};
|
|
802
|
-
});
|
|
803
|
-
var Aa = typeof Object.assign == "function" ? Object.assign : function(a, b) {
|
|
804
|
-
for (var c = 1; c < arguments.length; c++) {
|
|
805
|
-
var d = arguments[c];
|
|
806
|
-
if (d) {
|
|
807
|
-
for (var e in d) {
|
|
808
|
-
za(d, e) && (a[e] = d[e]);
|
|
809
|
-
}
|
|
810
|
-
}
|
|
811
|
-
}
|
|
812
|
-
return a;
|
|
813
|
-
};
|
|
814
|
-
H("Object.assign", function(a) {
|
|
815
|
-
return a || Aa;
|
|
816
|
-
});
|
|
817
|
-
H("Array.prototype.flat", function(a) {
|
|
818
|
-
return a ? a : function(b) {
|
|
819
|
-
b = b === void 0 ? 1 : b;
|
|
820
|
-
var c = [];
|
|
821
|
-
Array.prototype.forEach.call(this, function(d) {
|
|
822
|
-
Array.isArray(d) && b > 0 ? (d = Array.prototype.flat.call(d, b - 1), c.push.apply(c, d)) : c.push(d);
|
|
823
|
-
});
|
|
824
|
-
return c;
|
|
825
|
-
};
|
|
826
|
-
});
|
|
827
|
-
H("Promise.prototype.finally", function(a) {
|
|
828
|
-
return a ? a : function(b) {
|
|
829
|
-
return this.then(function(c) {
|
|
830
|
-
return Promise.resolve(b()).then(function() {
|
|
831
|
-
return c;
|
|
832
|
-
});
|
|
833
|
-
}, function(c) {
|
|
834
|
-
return Promise.resolve(b()).then(function() {
|
|
835
|
-
throw c;
|
|
836
|
-
});
|
|
837
|
-
});
|
|
838
|
-
};
|
|
839
|
-
});
|
|
840
|
-
function Q(a, b, c) {
|
|
841
|
-
var d = typeof c, e = typeof a;
|
|
842
|
-
if (d !== "undefined") {
|
|
843
|
-
if (e !== "undefined") {
|
|
844
|
-
if (c) {
|
|
845
|
-
if (e === "function" && d === e) {
|
|
846
|
-
return function(f) {
|
|
847
|
-
return a(c(f));
|
|
848
|
-
};
|
|
849
|
-
}
|
|
850
|
-
b = a.constructor;
|
|
851
|
-
if (b === c.constructor) {
|
|
852
|
-
if (b === Array) {
|
|
853
|
-
return c.concat(a);
|
|
854
|
-
}
|
|
855
|
-
if (b === Map) {
|
|
856
|
-
b = new Map(c);
|
|
857
|
-
d = D(a);
|
|
858
|
-
for (e = d.next(); !e.done; e = d.next()) {
|
|
859
|
-
e = e.value, b.set(e[0], e[1]);
|
|
860
|
-
}
|
|
861
|
-
return b;
|
|
862
|
-
}
|
|
863
|
-
if (b === Set) {
|
|
864
|
-
b = new Set(c);
|
|
865
|
-
d = D(a.values());
|
|
866
|
-
for (e = d.next(); !e.done; e = d.next()) {
|
|
867
|
-
b.add(e.value);
|
|
868
|
-
}
|
|
869
|
-
return b;
|
|
870
|
-
}
|
|
871
|
-
}
|
|
872
|
-
}
|
|
873
|
-
return a;
|
|
874
|
-
}
|
|
875
|
-
return c;
|
|
876
|
-
}
|
|
877
|
-
return e === "undefined" ? b : a;
|
|
878
|
-
}
|
|
879
|
-
function Ba(a, b) {
|
|
880
|
-
return typeof a === "undefined" ? b : a;
|
|
881
|
-
}
|
|
882
|
-
function S() {
|
|
883
|
-
return Object.create(null);
|
|
884
|
-
}
|
|
885
|
-
function U(a) {
|
|
886
|
-
return typeof a === "string";
|
|
887
|
-
}
|
|
888
|
-
function Ca(a) {
|
|
889
|
-
return typeof a === "object";
|
|
890
|
-
}
|
|
891
|
-
function Da(a, b) {
|
|
892
|
-
if (U(b)) {
|
|
893
|
-
a = a[b];
|
|
894
|
-
} else {
|
|
895
|
-
for (var c = 0; a && c < b.length; c++) {
|
|
896
|
-
a = a[b[c]];
|
|
897
|
-
}
|
|
898
|
-
}
|
|
899
|
-
return a;
|
|
900
|
-
}
|
|
901
|
-
;var Ea = /[^\p{L}\p{N}]+/u, Fa = /(\d{3})/g, Ga = /(\D)(\d{3})/g, Ha = /(\d{3})(\D)/g, Ia = /[\u0300-\u036f]/g;
|
|
902
|
-
function Ja(a) {
|
|
903
|
-
a = a === void 0 ? {} : a;
|
|
904
|
-
if (!this || this.constructor !== Ja) {
|
|
905
|
-
var b = Function.prototype.bind, c = b.apply, d = [null], e = d.concat;
|
|
906
|
-
if (arguments instanceof Array) {
|
|
907
|
-
var f = arguments;
|
|
908
|
-
} else {
|
|
909
|
-
f = D(arguments);
|
|
910
|
-
for (var g, h = []; !(g = f.next()).done;) {
|
|
911
|
-
h.push(g.value);
|
|
912
|
-
}
|
|
913
|
-
f = h;
|
|
914
|
-
}
|
|
915
|
-
return new (c.call(b, Ja, e.call(d, f)))();
|
|
916
|
-
}
|
|
917
|
-
if (arguments.length) {
|
|
918
|
-
for (b = 0; b < arguments.length; b++) {
|
|
919
|
-
this.assign(arguments[b]);
|
|
920
|
-
}
|
|
921
|
-
} else {
|
|
922
|
-
this.assign(a);
|
|
923
|
-
}
|
|
924
|
-
}
|
|
925
|
-
w = Ja.prototype;
|
|
926
|
-
w.assign = function(a) {
|
|
927
|
-
this.normalize = Q(a.normalize, !0, this.normalize);
|
|
928
|
-
var b = a.include, c = b || a.exclude || a.split;
|
|
929
|
-
if (c || c === "") {
|
|
930
|
-
if (typeof c === "object" && c.constructor !== RegExp) {
|
|
931
|
-
var d = "";
|
|
932
|
-
var e = !b;
|
|
933
|
-
b || (d += "\\p{Z}");
|
|
934
|
-
c.letter && (d += "\\p{L}");
|
|
935
|
-
c.number && (d += "\\p{N}", e = !!b);
|
|
936
|
-
c.symbol && (d += "\\p{S}");
|
|
937
|
-
c.punctuation && (d += "\\p{P}");
|
|
938
|
-
c.control && (d += "\\p{C}");
|
|
939
|
-
if (c = c.char) {
|
|
940
|
-
d += typeof c === "object" ? c.join("") : c;
|
|
941
|
-
}
|
|
942
|
-
try {
|
|
943
|
-
this.split = new RegExp("[" + (b ? "^" : "") + d + "]+", "u");
|
|
944
|
-
} catch (f) {
|
|
945
|
-
console.error("Your split configuration:", c, "is not supported on this platform. It falls back to using simple whitespace splitter instead: /s+/."), this.split = /\s+/;
|
|
946
|
-
}
|
|
947
|
-
} else {
|
|
948
|
-
this.split = c, e = c === !1 || "a1a".split(c).length < 2;
|
|
949
|
-
}
|
|
950
|
-
this.numeric = Q(a.numeric, e);
|
|
951
|
-
} else {
|
|
952
|
-
try {
|
|
953
|
-
this.split = Q(this.split, Ea);
|
|
954
|
-
} catch (f) {
|
|
955
|
-
console.warn("This platform does not support unicode regex. It falls back to using simple whitespace splitter instead: /s+/."), this.split = /\s+/;
|
|
956
|
-
}
|
|
957
|
-
this.numeric = Q(a.numeric, Q(this.numeric, !0));
|
|
958
|
-
}
|
|
959
|
-
this.prepare = Q(a.prepare, null, this.prepare);
|
|
960
|
-
this.finalize = Q(a.finalize, null, this.finalize);
|
|
961
|
-
c = a.filter;
|
|
962
|
-
this.filter = typeof c === "function" ? c : Q(c && new Set(c), null, this.filter);
|
|
963
|
-
this.dedupe = Q(a.dedupe, !0, this.dedupe);
|
|
964
|
-
this.matcher = Q((c = a.matcher) && new Map(c), null, this.matcher);
|
|
965
|
-
this.mapper = Q((c = a.mapper) && new Map(c), null, this.mapper);
|
|
966
|
-
this.stemmer = Q((c = a.stemmer) && new Map(c), null, this.stemmer);
|
|
967
|
-
this.replacer = Q(a.replacer, null, this.replacer);
|
|
968
|
-
this.minlength = Q(a.minlength, 1, this.minlength);
|
|
969
|
-
this.maxlength = Q(a.maxlength, 1024, this.maxlength);
|
|
970
|
-
this.rtl = Q(a.rtl, !1, this.rtl);
|
|
971
|
-
if (this.cache = c = Q(a.cache, !0, this.cache)) {
|
|
972
|
-
this.D = null, this.P = typeof c === "number" ? c : 2e5, this.B = new Map(), this.C = new Map(), this.I = this.H = 128;
|
|
973
|
-
}
|
|
974
|
-
this.h = "";
|
|
975
|
-
this.K = null;
|
|
976
|
-
this.A = "";
|
|
977
|
-
this.L = null;
|
|
978
|
-
if (this.matcher) {
|
|
979
|
-
for (a = D(this.matcher.keys()), b = a.next(); !b.done; b = a.next()) {
|
|
980
|
-
this.h += (this.h ? "|" : "") + b.value;
|
|
981
|
-
}
|
|
982
|
-
}
|
|
983
|
-
if (this.stemmer) {
|
|
984
|
-
for (a = D(this.stemmer.keys()), b = a.next(); !b.done; b = a.next()) {
|
|
985
|
-
this.A += (this.A ? "|" : "") + b.value;
|
|
986
|
-
}
|
|
987
|
-
}
|
|
988
|
-
return this;
|
|
989
|
-
};
|
|
990
|
-
w.addStemmer = function(a, b) {
|
|
991
|
-
this.stemmer || (this.stemmer = new Map());
|
|
992
|
-
this.stemmer.set(a, b);
|
|
993
|
-
this.A += (this.A ? "|" : "") + a;
|
|
994
|
-
this.L = null;
|
|
995
|
-
this.cache && Ka(this);
|
|
996
|
-
return this;
|
|
997
|
-
};
|
|
998
|
-
w.addFilter = function(a) {
|
|
999
|
-
typeof a === "function" ? this.filter = a : (this.filter || (this.filter = new Set()), this.filter.add(a));
|
|
1000
|
-
this.cache && Ka(this);
|
|
1001
|
-
return this;
|
|
1002
|
-
};
|
|
1003
|
-
w.addMapper = function(a, b) {
|
|
1004
|
-
if (typeof a === "object") {
|
|
1005
|
-
return this.addReplacer(a, b);
|
|
1006
|
-
}
|
|
1007
|
-
if (a.length > 1) {
|
|
1008
|
-
return this.addMatcher(a, b);
|
|
1009
|
-
}
|
|
1010
|
-
this.mapper || (this.mapper = new Map());
|
|
1011
|
-
this.mapper.set(a, b);
|
|
1012
|
-
this.cache && Ka(this);
|
|
1013
|
-
return this;
|
|
1014
|
-
};
|
|
1015
|
-
w.addMatcher = function(a, b) {
|
|
1016
|
-
if (typeof a === "object") {
|
|
1017
|
-
return this.addReplacer(a, b);
|
|
1018
|
-
}
|
|
1019
|
-
if (a.length < 2 && (this.dedupe || this.mapper)) {
|
|
1020
|
-
return this.addMapper(a, b);
|
|
1021
|
-
}
|
|
1022
|
-
this.matcher || (this.matcher = new Map());
|
|
1023
|
-
this.matcher.set(a, b);
|
|
1024
|
-
this.h += (this.h ? "|" : "") + a;
|
|
1025
|
-
this.K = null;
|
|
1026
|
-
this.cache && Ka(this);
|
|
1027
|
-
return this;
|
|
1028
|
-
};
|
|
1029
|
-
w.addReplacer = function(a, b) {
|
|
1030
|
-
if (typeof a === "string") {
|
|
1031
|
-
return this.addMatcher(a, b);
|
|
1032
|
-
}
|
|
1033
|
-
this.replacer || (this.replacer = []);
|
|
1034
|
-
this.replacer.push(a, b);
|
|
1035
|
-
this.cache && Ka(this);
|
|
1036
|
-
return this;
|
|
1037
|
-
};
|
|
1038
|
-
w.encode = function(a, b) {
|
|
1039
|
-
var c = this;
|
|
1040
|
-
if (this.cache && a.length <= this.H) {
|
|
1041
|
-
if (this.D) {
|
|
1042
|
-
if (this.B.has(a)) {
|
|
1043
|
-
return this.B.get(a);
|
|
1044
|
-
}
|
|
1045
|
-
} else {
|
|
1046
|
-
this.D = setTimeout(Ka, 50, this);
|
|
1047
|
-
}
|
|
1048
|
-
}
|
|
1049
|
-
this.normalize && (typeof this.normalize === "function" ? a = this.normalize(a) : a = Ia ? a.normalize("NFKD").replace(Ia, "").toLowerCase() : a.toLowerCase());
|
|
1050
|
-
this.prepare && (a = this.prepare(a));
|
|
1051
|
-
this.numeric && a.length > 3 && (a = a.replace(Ga, "$1 $2").replace(Ha, "$1 $2").replace(Fa, "$1 "));
|
|
1052
|
-
for (var d = !(this.dedupe || this.mapper || this.filter || this.matcher || this.stemmer || this.replacer), e = [], f = S(), g, h, k = this.split || this.split === "" ? a.split(this.split) : [a], l = 0, m = void 0, p = void 0; l < k.length; l++) {
|
|
1053
|
-
if ((m = p = k[l]) && !(m.length < this.minlength || m.length > this.maxlength)) {
|
|
1054
|
-
if (b) {
|
|
1055
|
-
if (f[m]) {
|
|
1056
|
-
continue;
|
|
1057
|
-
}
|
|
1058
|
-
f[m] = 1;
|
|
1059
|
-
} else {
|
|
1060
|
-
if (g === m) {
|
|
1061
|
-
continue;
|
|
1062
|
-
}
|
|
1063
|
-
g = m;
|
|
1064
|
-
}
|
|
1065
|
-
if (d) {
|
|
1066
|
-
e.push(m);
|
|
1067
|
-
} else {
|
|
1068
|
-
if (!this.filter || (typeof this.filter === "function" ? this.filter(m) : !this.filter.has(m))) {
|
|
1069
|
-
if (this.cache && m.length <= this.I) {
|
|
1070
|
-
if (this.D) {
|
|
1071
|
-
var n = this.C.get(m);
|
|
1072
|
-
if (n || n === "") {
|
|
1073
|
-
n && e.push(n);
|
|
1074
|
-
continue;
|
|
1075
|
-
}
|
|
1076
|
-
} else {
|
|
1077
|
-
this.D = setTimeout(Ka, 50, this);
|
|
1078
|
-
}
|
|
1079
|
-
}
|
|
1080
|
-
if (this.stemmer) {
|
|
1081
|
-
for (this.L || (this.L = new RegExp("(?!^)(" + this.A + ")$")), n = void 0; n !== m && m.length > 2;) {
|
|
1082
|
-
n = m, m = m.replace(this.L, function(A) {
|
|
1083
|
-
return c.stemmer.get(A);
|
|
1084
|
-
});
|
|
1085
|
-
}
|
|
1086
|
-
}
|
|
1087
|
-
if (m && (this.mapper || this.dedupe && m.length > 1)) {
|
|
1088
|
-
n = "";
|
|
1089
|
-
for (var q = 0, t = "", u = void 0, v = void 0; q < m.length; q++) {
|
|
1090
|
-
u = m.charAt(q), u === t && this.dedupe || ((v = this.mapper && this.mapper.get(u)) || v === "" ? v === t && this.dedupe || !(t = v) || (n += v) : n += t = u);
|
|
1091
|
-
}
|
|
1092
|
-
m = n;
|
|
1093
|
-
}
|
|
1094
|
-
this.matcher && m.length > 1 && (this.K || (this.K = new RegExp("(" + this.h + ")", "g")), m = m.replace(this.K, function(A) {
|
|
1095
|
-
return c.matcher.get(A);
|
|
1096
|
-
}));
|
|
1097
|
-
if (m && this.replacer) {
|
|
1098
|
-
for (n = 0; m && n < this.replacer.length; n += 2) {
|
|
1099
|
-
m = m.replace(this.replacer[n], this.replacer[n + 1]);
|
|
1100
|
-
}
|
|
1101
|
-
}
|
|
1102
|
-
this.cache && p.length <= this.I && (this.C.set(p, m), this.C.size > this.P && (this.C.clear(), this.I = this.I / 1.1 | 0));
|
|
1103
|
-
if (m) {
|
|
1104
|
-
if (m !== p) {
|
|
1105
|
-
if (b) {
|
|
1106
|
-
if (f[m]) {
|
|
1107
|
-
continue;
|
|
1108
|
-
}
|
|
1109
|
-
f[m] = 1;
|
|
1110
|
-
} else {
|
|
1111
|
-
if (h === m) {
|
|
1112
|
-
continue;
|
|
1113
|
-
}
|
|
1114
|
-
h = m;
|
|
1115
|
-
}
|
|
1116
|
-
}
|
|
1117
|
-
e.push(m);
|
|
1118
|
-
}
|
|
1119
|
-
}
|
|
1120
|
-
}
|
|
1121
|
-
}
|
|
1122
|
-
}
|
|
1123
|
-
this.finalize && (e = this.finalize(e) || e);
|
|
1124
|
-
this.cache && a.length <= this.H && (this.B.set(a, e), this.B.size > this.P && (this.B.clear(), this.H = this.H / 1.1 | 0));
|
|
1125
|
-
return e;
|
|
1126
|
-
};
|
|
1127
|
-
function Ka(a) {
|
|
1128
|
-
a.D = null;
|
|
1129
|
-
a.B.clear();
|
|
1130
|
-
a.C.clear();
|
|
1131
|
-
}
|
|
1132
|
-
;function La(a, b, c) {
|
|
1133
|
-
c || (b || typeof a !== "object" ? typeof b === "object" && (c = b, b = 0) : c = a);
|
|
1134
|
-
c && (a = c.query || a, b = c.limit || b);
|
|
1135
|
-
var d = "" + (b || 0);
|
|
1136
|
-
if (c) {
|
|
1137
|
-
var e = c;
|
|
1138
|
-
d += (e.offset || 0) + !!e.context + !!e.suggest + (e.resolve !== !1) + (e.resolution || this.resolution) + (e.boost || 0);
|
|
1139
|
-
}
|
|
1140
|
-
a = ("" + a).toLowerCase();
|
|
1141
|
-
this.cache || (this.cache = new Ma());
|
|
1142
|
-
e = this.cache.get(a + d);
|
|
1143
|
-
if (!e) {
|
|
1144
|
-
var f = c && c.cache;
|
|
1145
|
-
f && (c.cache = !1);
|
|
1146
|
-
e = this.search(a, b, c);
|
|
1147
|
-
f && (c.cache = f);
|
|
1148
|
-
this.cache.set(a + d, e);
|
|
1149
|
-
}
|
|
1150
|
-
return e;
|
|
1151
|
-
}
|
|
1152
|
-
function Ma(a) {
|
|
1153
|
-
this.limit = a && a !== !0 ? a : 1000;
|
|
1154
|
-
this.cache = new Map();
|
|
1155
|
-
this.h = "";
|
|
1156
|
-
}
|
|
1157
|
-
Ma.prototype.set = function(a, b) {
|
|
1158
|
-
this.cache.set(this.h = a, b);
|
|
1159
|
-
this.cache.size > this.limit && this.cache.delete(this.cache.keys().next().value);
|
|
1160
|
-
};
|
|
1161
|
-
Ma.prototype.get = function(a) {
|
|
1162
|
-
var b = this.cache.get(a);
|
|
1163
|
-
b && this.h !== a && (this.cache.delete(a), this.cache.set(this.h = a, b));
|
|
1164
|
-
return b;
|
|
1165
|
-
};
|
|
1166
|
-
Ma.prototype.remove = function(a) {
|
|
1167
|
-
for (var b = D(this.cache), c = b.next(); !c.done; c = b.next()) {
|
|
1168
|
-
c = c.value;
|
|
1169
|
-
var d = c[0];
|
|
1170
|
-
c[1].includes(a) && this.cache.delete(d);
|
|
1171
|
-
}
|
|
1172
|
-
};
|
|
1173
|
-
Ma.prototype.clear = function() {
|
|
1174
|
-
this.cache.clear();
|
|
1175
|
-
this.h = "";
|
|
1176
|
-
};
|
|
1177
|
-
var Na = {normalize:!1, numeric:!1, dedupe:!1};
|
|
1178
|
-
var Oa = {};
|
|
1179
|
-
var Pa = 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"]]);
|
|
1180
|
-
var Qa = new Map([["ae", "a"], ["oe", "o"], ["sh", "s"], ["kh", "k"], ["th", "t"], ["ph", "f"], ["pf", "f"]]), Ra = [/([^aeo])h(.)/g, "$1$2", /([aeo])h([^aeo]|$)/g, "$1$2", /(.)\1+/g, "$1"];
|
|
1181
|
-
var Sa = {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};
|
|
1182
|
-
var Ta = {Exact:Na, Default:Oa, Normalize:Oa, LatinBalance:{mapper:Pa}, LatinAdvanced:{mapper:Pa, matcher:Qa, replacer:Ra}, LatinExtra:{mapper:Pa, replacer:Ra.concat([/(?!^)[aeo]/g, ""]), matcher:Qa}, LatinSoundex:{dedupe:!1, include:{letter:!0}, finalize:function(a) {
|
|
1183
|
-
for (var b = 0; b < a.length; b++) {
|
|
1184
|
-
for (var c = a[b], d = c.charAt(0), e = Sa[d], f = 1, g; f < c.length && (g = c.charAt(f), g === "h" || g === "w" || !(g = Sa[g]) || g === e || (d += g, e = g, d.length !== 4)); f++) {
|
|
1185
|
-
}
|
|
1186
|
-
a[b] = d;
|
|
1187
|
-
}
|
|
1188
|
-
}}, CJK:{split:""}, LatinExact:Na, LatinDefault:Oa, LatinSimple:Oa};
|
|
1189
|
-
function Ua(a, b, c, d) {
|
|
1190
|
-
for (var e = [], f = 0, g; f < a.index.length; f++) {
|
|
1191
|
-
if (g = a.index[f], b >= g.length) {
|
|
1192
|
-
b -= g.length;
|
|
1193
|
-
} else {
|
|
1194
|
-
b = g[d ? "splice" : "slice"](b, c);
|
|
1195
|
-
if (g = b.length) {
|
|
1196
|
-
if (e = e.length ? e.concat(b) : b, c -= g, d && (a.length -= g), !c) {
|
|
1197
|
-
break;
|
|
1198
|
-
}
|
|
1199
|
-
}
|
|
1200
|
-
b = 0;
|
|
1201
|
-
}
|
|
1202
|
-
}
|
|
1203
|
-
return e;
|
|
1204
|
-
}
|
|
1205
|
-
function Va(a) {
|
|
1206
|
-
if (!this || this.constructor !== Va) {
|
|
1207
|
-
return new Va(a);
|
|
1208
|
-
}
|
|
1209
|
-
this.index = a ? [a] : [];
|
|
1210
|
-
this.length = a ? a.length : 0;
|
|
1211
|
-
var b = this;
|
|
1212
|
-
return new Proxy([], {get:function(c, d) {
|
|
1213
|
-
if (d === "length") {
|
|
1214
|
-
return b.length;
|
|
1215
|
-
}
|
|
1216
|
-
if (d === "push") {
|
|
1217
|
-
return function(e) {
|
|
1218
|
-
b.index[b.index.length - 1].push(e);
|
|
1219
|
-
b.length++;
|
|
1220
|
-
};
|
|
1221
|
-
}
|
|
1222
|
-
if (d === "pop") {
|
|
1223
|
-
return function() {
|
|
1224
|
-
if (b.length) {
|
|
1225
|
-
return b.length--, b.index[b.index.length - 1].pop();
|
|
1226
|
-
}
|
|
1227
|
-
};
|
|
1228
|
-
}
|
|
1229
|
-
if (d === "indexOf") {
|
|
1230
|
-
return function(e) {
|
|
1231
|
-
for (var f = 0, g = 0, h, k; g < b.index.length; g++) {
|
|
1232
|
-
h = b.index[g];
|
|
1233
|
-
k = h.indexOf(e);
|
|
1234
|
-
if (k >= 0) {
|
|
1235
|
-
return f + k;
|
|
1236
|
-
}
|
|
1237
|
-
f += h.length;
|
|
1238
|
-
}
|
|
1239
|
-
return -1;
|
|
1240
|
-
};
|
|
1241
|
-
}
|
|
1242
|
-
if (d === "includes") {
|
|
1243
|
-
return function(e) {
|
|
1244
|
-
for (var f = 0; f < b.index.length; f++) {
|
|
1245
|
-
if (b.index[f].includes(e)) {
|
|
1246
|
-
return !0;
|
|
1247
|
-
}
|
|
1248
|
-
}
|
|
1249
|
-
return !1;
|
|
1250
|
-
};
|
|
1251
|
-
}
|
|
1252
|
-
if (d === "slice") {
|
|
1253
|
-
return function(e, f) {
|
|
1254
|
-
return Ua(b, e || 0, f || b.length, !1);
|
|
1255
|
-
};
|
|
1256
|
-
}
|
|
1257
|
-
if (d === "splice") {
|
|
1258
|
-
return function(e, f) {
|
|
1259
|
-
return Ua(b, e || 0, f || b.length, !0);
|
|
1260
|
-
};
|
|
1261
|
-
}
|
|
1262
|
-
if (d === "constructor") {
|
|
1263
|
-
return Array;
|
|
1264
|
-
}
|
|
1265
|
-
if (typeof d !== "symbol") {
|
|
1266
|
-
return (c = b.index[d / 2147483648 | 0]) && c[d];
|
|
1267
|
-
}
|
|
1268
|
-
}, set:function(c, d, e) {
|
|
1269
|
-
c = d / 2147483648 | 0;
|
|
1270
|
-
(b.index[c] || (b.index[c] = []))[d] = e;
|
|
1271
|
-
b.length++;
|
|
1272
|
-
return !0;
|
|
1273
|
-
}});
|
|
1274
|
-
}
|
|
1275
|
-
Va.prototype.clear = function() {
|
|
1276
|
-
this.index.length = 0;
|
|
1277
|
-
};
|
|
1278
|
-
Va.prototype.push = function() {
|
|
1279
|
-
};
|
|
1280
|
-
function X(a) {
|
|
1281
|
-
a = a === void 0 ? 8 : a;
|
|
1282
|
-
if (!this || this.constructor !== X) {
|
|
1283
|
-
return new X(a);
|
|
1284
|
-
}
|
|
1285
|
-
this.index = S();
|
|
1286
|
-
this.h = [];
|
|
1287
|
-
this.size = 0;
|
|
1288
|
-
a > 32 ? (this.A = Wa, this.B = BigInt(a)) : (this.A = Xa, this.B = a);
|
|
1289
|
-
}
|
|
1290
|
-
X.prototype.get = function(a) {
|
|
1291
|
-
var b = this.A(a);
|
|
1292
|
-
return (b = this.index[b]) && b.get(a);
|
|
1293
|
-
};
|
|
1294
|
-
X.prototype.set = function(a, b) {
|
|
1295
|
-
var c = this.A(a), d = this.index[c];
|
|
1296
|
-
d ? (c = d.size, d.set(a, b), (c -= d.size) && this.size++) : (this.index[c] = d = new Map([[a, b]]), this.h.push(d), this.size++);
|
|
1297
|
-
};
|
|
1298
|
-
function Y(a) {
|
|
1299
|
-
a = a === void 0 ? 8 : a;
|
|
1300
|
-
if (!this || this.constructor !== Y) {
|
|
1301
|
-
return new Y(a);
|
|
1302
|
-
}
|
|
1303
|
-
this.index = S();
|
|
1304
|
-
this.h = [];
|
|
1305
|
-
this.size = 0;
|
|
1306
|
-
a > 32 ? (this.A = Wa, this.B = BigInt(a)) : (this.A = Xa, this.B = a);
|
|
1307
|
-
}
|
|
1308
|
-
Y.prototype.add = function(a) {
|
|
1309
|
-
var b = this.A(a), c = this.index[b];
|
|
1310
|
-
c ? (b = c.size, c.add(a), (b -= c.size) && this.size++) : (this.index[b] = c = new Set([a]), this.h.push(c), this.size++);
|
|
1311
|
-
};
|
|
1312
|
-
w = X.prototype;
|
|
1313
|
-
w.has = Y.prototype.has = function(a) {
|
|
1314
|
-
var b = this.A(a);
|
|
1315
|
-
return (b = this.index[b]) && b.has(a);
|
|
1316
|
-
};
|
|
1317
|
-
w.delete = Y.prototype.delete = function(a) {
|
|
1318
|
-
var b = this.A(a);
|
|
1319
|
-
(b = this.index[b]) && b.delete(a) && this.size--;
|
|
1320
|
-
};
|
|
1321
|
-
w.clear = Y.prototype.clear = function() {
|
|
1322
|
-
this.index = S();
|
|
1323
|
-
this.h = [];
|
|
1324
|
-
this.size = 0;
|
|
1325
|
-
};
|
|
1326
|
-
w.values = Y.prototype.values = function Ya() {
|
|
1327
|
-
var b, c = this, d, e, f;
|
|
1328
|
-
return ua(Ya, function(g) {
|
|
1329
|
-
switch(g.h) {
|
|
1330
|
-
case 1:
|
|
1331
|
-
b = 0;
|
|
1332
|
-
case 2:
|
|
1333
|
-
if (!(b < c.h.length)) {
|
|
1334
|
-
g.h = 0;
|
|
1335
|
-
break;
|
|
1336
|
-
}
|
|
1337
|
-
d = D(c.h[b].values());
|
|
1338
|
-
e = d.next();
|
|
1339
|
-
case 5:
|
|
1340
|
-
if (e.done) {
|
|
1341
|
-
b++;
|
|
1342
|
-
g.h = 2;
|
|
1343
|
-
break;
|
|
1344
|
-
}
|
|
1345
|
-
f = e.value;
|
|
1346
|
-
return L(g, f, 6);
|
|
1347
|
-
case 6:
|
|
1348
|
-
e = d.next(), g.h = 5;
|
|
1349
|
-
}
|
|
1350
|
-
});
|
|
1351
|
-
};
|
|
1352
|
-
w.keys = Y.prototype.keys = function Za() {
|
|
1353
|
-
var b, c = this, d, e, f;
|
|
1354
|
-
return ua(Za, function(g) {
|
|
1355
|
-
switch(g.h) {
|
|
1356
|
-
case 1:
|
|
1357
|
-
b = 0;
|
|
1358
|
-
case 2:
|
|
1359
|
-
if (!(b < c.h.length)) {
|
|
1360
|
-
g.h = 0;
|
|
1361
|
-
break;
|
|
1362
|
-
}
|
|
1363
|
-
d = D(c.h[b].keys());
|
|
1364
|
-
e = d.next();
|
|
1365
|
-
case 5:
|
|
1366
|
-
if (e.done) {
|
|
1367
|
-
b++;
|
|
1368
|
-
g.h = 2;
|
|
1369
|
-
break;
|
|
1370
|
-
}
|
|
1371
|
-
f = e.value;
|
|
1372
|
-
return L(g, f, 6);
|
|
1373
|
-
case 6:
|
|
1374
|
-
e = d.next(), g.h = 5;
|
|
1375
|
-
}
|
|
1376
|
-
});
|
|
1377
|
-
};
|
|
1378
|
-
w.entries = Y.prototype.entries = function $a() {
|
|
1379
|
-
var b, c = this, d, e, f;
|
|
1380
|
-
return ua($a, function(g) {
|
|
1381
|
-
switch(g.h) {
|
|
1382
|
-
case 1:
|
|
1383
|
-
b = 0;
|
|
1384
|
-
case 2:
|
|
1385
|
-
if (!(b < c.h.length)) {
|
|
1386
|
-
g.h = 0;
|
|
1387
|
-
break;
|
|
1388
|
-
}
|
|
1389
|
-
d = D(c.h[b].entries());
|
|
1390
|
-
e = d.next();
|
|
1391
|
-
case 5:
|
|
1392
|
-
if (e.done) {
|
|
1393
|
-
b++;
|
|
1394
|
-
g.h = 2;
|
|
1395
|
-
break;
|
|
1396
|
-
}
|
|
1397
|
-
f = e.value;
|
|
1398
|
-
return L(g, f, 6);
|
|
1399
|
-
case 6:
|
|
1400
|
-
e = d.next(), g.h = 5;
|
|
1401
|
-
}
|
|
1402
|
-
});
|
|
1403
|
-
};
|
|
1404
|
-
function Xa(a) {
|
|
1405
|
-
var b = Math.pow(2, this.B) - 1;
|
|
1406
|
-
if (typeof a == "number") {
|
|
1407
|
-
return a & b;
|
|
1408
|
-
}
|
|
1409
|
-
for (var c = 0, d = this.B + 1, e = 0; e < a.length; e++) {
|
|
1410
|
-
c = (c * d ^ a.charCodeAt(e)) & b;
|
|
1411
|
-
}
|
|
1412
|
-
return this.B === 32 ? c + 2147483648 : c;
|
|
1413
|
-
}
|
|
1414
|
-
function Wa() {
|
|
1415
|
-
throw Error("The keystore is limited to 32 for EcmaScript5");
|
|
1416
|
-
}
|
|
1417
|
-
;var ab, bb;
|
|
1418
|
-
function cb(a) {
|
|
1419
|
-
var b, c, d, e, f, g;
|
|
1420
|
-
return wa(function(h) {
|
|
1421
|
-
switch(h.h) {
|
|
1422
|
-
case 1:
|
|
1423
|
-
a = a.data;
|
|
1424
|
-
b = a.task;
|
|
1425
|
-
c = a.id;
|
|
1426
|
-
d = a.args;
|
|
1427
|
-
switch(b) {
|
|
1428
|
-
case "init":
|
|
1429
|
-
bb = a.options || {};
|
|
1430
|
-
(e = a.factory) ? (Function("return " + e)()(self), ab = new self.FlexSearch.Index(bb), delete self.FlexSearch) : ab = new db(bb);
|
|
1431
|
-
postMessage({id:c});
|
|
1432
|
-
break;
|
|
1433
|
-
default:
|
|
1434
|
-
h.h = 2;
|
|
1435
|
-
return;
|
|
1436
|
-
}h.h = 0;
|
|
1437
|
-
break;
|
|
1438
|
-
case 2:
|
|
1439
|
-
if (b === "export") {
|
|
1440
|
-
if (!bb.export || typeof bb.export !== "function") {
|
|
1441
|
-
throw Error('Either no extern configuration provided for the Worker-Index or no method was defined on the config property "export".');
|
|
1442
|
-
}
|
|
1443
|
-
d[1] ? (d[0] = bb.export, d[2] = 0, d[3] = 1) : d = null;
|
|
1444
|
-
}
|
|
1445
|
-
if (b === "import") {
|
|
1446
|
-
if (!bb.import || typeof bb.import !== "function") {
|
|
1447
|
-
throw Error('Either no extern configuration provided for the Worker-Index or no method was defined on the config property "import".');
|
|
1448
|
-
}
|
|
1449
|
-
if (!d[0]) {
|
|
1450
|
-
h.h = 5;
|
|
1451
|
-
break;
|
|
1452
|
-
}
|
|
1453
|
-
return L(h, bb.import.call(ab, d[0]), 11);
|
|
1454
|
-
}
|
|
1455
|
-
f = d && ab[b].apply(ab, d);
|
|
1456
|
-
if (!f || !f.then) {
|
|
1457
|
-
h.h = 6;
|
|
1458
|
-
break;
|
|
1459
|
-
}
|
|
1460
|
-
return L(h, f, 7);
|
|
1461
|
-
case 7:
|
|
1462
|
-
f = h.B;
|
|
1463
|
-
case 6:
|
|
1464
|
-
if (!f || !f.await) {
|
|
1465
|
-
h.h = 8;
|
|
1466
|
-
break;
|
|
1467
|
-
}
|
|
1468
|
-
return L(h, f.await, 9);
|
|
1469
|
-
case 9:
|
|
1470
|
-
f = h.B;
|
|
1471
|
-
case 8:
|
|
1472
|
-
b === "search" && f.result && (f = f.result);
|
|
1473
|
-
h.h = 5;
|
|
1474
|
-
break;
|
|
1475
|
-
case 11:
|
|
1476
|
-
g = h.B, ab.import(d[0], g);
|
|
1477
|
-
case 5:
|
|
1478
|
-
postMessage(b === "search" ? {id:c, msg:f} : {id:c}), h.h = 0;
|
|
1479
|
-
}
|
|
1480
|
-
});
|
|
1481
|
-
}
|
|
1482
|
-
;function eb(a) {
|
|
1483
|
-
fb.call(a, "add");
|
|
1484
|
-
fb.call(a, "append");
|
|
1485
|
-
fb.call(a, "search");
|
|
1486
|
-
fb.call(a, "update");
|
|
1487
|
-
fb.call(a, "remove");
|
|
1488
|
-
fb.call(a, "searchCache");
|
|
1489
|
-
}
|
|
1490
|
-
var gb, hb, ib;
|
|
1491
|
-
function jb() {
|
|
1492
|
-
gb = ib = 0;
|
|
1493
|
-
}
|
|
1494
|
-
function fb(a) {
|
|
1495
|
-
this[a + "Async"] = function() {
|
|
1496
|
-
var b = arguments, c = b[b.length - 1];
|
|
1497
|
-
if (typeof c === "function") {
|
|
1498
|
-
var d = c;
|
|
1499
|
-
delete b[b.length - 1];
|
|
1500
|
-
}
|
|
1501
|
-
gb ? ib || (ib = Date.now() - hb >= this.priority * this.priority * 3) : (gb = setTimeout(jb, 0), hb = Date.now());
|
|
1502
|
-
if (ib) {
|
|
1503
|
-
var e = this;
|
|
1504
|
-
return new Promise(function(g) {
|
|
1505
|
-
setTimeout(function() {
|
|
1506
|
-
g(e[a + "Async"].apply(e, b));
|
|
1507
|
-
}, 0);
|
|
1508
|
-
});
|
|
1509
|
-
}
|
|
1510
|
-
var f = this[a].apply(this, b);
|
|
1511
|
-
c = f.then ? f : new Promise(function(g) {
|
|
1512
|
-
return g(f);
|
|
1513
|
-
});
|
|
1514
|
-
d && c.then(d);
|
|
1515
|
-
return c;
|
|
1516
|
-
};
|
|
1517
|
-
}
|
|
1518
|
-
;var kb = 0;
|
|
1519
|
-
function lb(a, b) {
|
|
1520
|
-
function c(h) {
|
|
1521
|
-
function k(l) {
|
|
1522
|
-
l = l.data || l;
|
|
1523
|
-
var m = l.id, p = m && f.h[m];
|
|
1524
|
-
p && (p(l.msg), delete f.h[m]);
|
|
1525
|
-
}
|
|
1526
|
-
this.worker = h;
|
|
1527
|
-
this.h = S();
|
|
1528
|
-
if (this.worker) {
|
|
1529
|
-
e ? this.worker.on("message", k) : this.worker.onmessage = k;
|
|
1530
|
-
if (a.config) {
|
|
1531
|
-
return new Promise(function(l) {
|
|
1532
|
-
kb > 1e9 && (kb = 0);
|
|
1533
|
-
f.h[++kb] = function() {
|
|
1534
|
-
l(f);
|
|
1535
|
-
};
|
|
1536
|
-
f.worker.postMessage({id:kb, task:"init", factory:d, options:a});
|
|
1537
|
-
});
|
|
1538
|
-
}
|
|
1539
|
-
this.priority = a.priority || 4;
|
|
1540
|
-
this.encoder = b || null;
|
|
1541
|
-
this.worker.postMessage({task:"init", factory:d, options:a});
|
|
1542
|
-
return this;
|
|
1543
|
-
}
|
|
1544
|
-
console.warn("Worker is not available on this platform. Please report on Github: https://github.com/nextapps-de/flexsearch/issues");
|
|
1545
|
-
}
|
|
1546
|
-
a = a === void 0 ? {} : a;
|
|
1547
|
-
if (!this || this.constructor !== lb) {
|
|
1548
|
-
return new lb(a);
|
|
1549
|
-
}
|
|
1550
|
-
var d = typeof self !== "undefined" ? self._factory : typeof window !== "undefined" ? window._factory : null;
|
|
1551
|
-
d && (d = d.toString());
|
|
1552
|
-
var e = typeof window === "undefined", f = this, g = mb(d, e, a.worker);
|
|
1553
|
-
return g.then ? g.then(function(h) {
|
|
1554
|
-
return c.call(f, h);
|
|
1555
|
-
}) : c.call(this, g);
|
|
1556
|
-
}
|
|
1557
|
-
nb("add");
|
|
1558
|
-
nb("append");
|
|
1559
|
-
nb("search");
|
|
1560
|
-
nb("update");
|
|
1561
|
-
nb("remove");
|
|
1562
|
-
nb("clear");
|
|
1563
|
-
nb("export");
|
|
1564
|
-
nb("import");
|
|
1565
|
-
lb.prototype.searchCache = La;
|
|
1566
|
-
eb(lb.prototype);
|
|
1567
|
-
function nb(a) {
|
|
1568
|
-
lb.prototype[a] = function() {
|
|
1569
|
-
var b = this, c = [].slice.call(arguments), d = c[c.length - 1];
|
|
1570
|
-
if (typeof d === "function") {
|
|
1571
|
-
var e = d;
|
|
1572
|
-
c.pop();
|
|
1573
|
-
}
|
|
1574
|
-
d = new Promise(function(f) {
|
|
1575
|
-
a === "export" && typeof c[0] === "function" && (c[0] = null);
|
|
1576
|
-
kb > 1e9 && (kb = 0);
|
|
1577
|
-
b.h[++kb] = f;
|
|
1578
|
-
b.worker.postMessage({task:a, id:kb, args:c});
|
|
1579
|
-
});
|
|
1580
|
-
return e ? (d.then(e), this) : d;
|
|
1581
|
-
};
|
|
1582
|
-
}
|
|
1583
|
-
function mb(a, b, c) {
|
|
1584
|
-
return b ? 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=" + cb.toString()], {type:"text/javascript"}))) : new window.Worker(typeof c === "string" ? c : (0,eval)("import.meta.url").replace("/worker.js", "/worker/worker.js").replace("flexsearch.bundle.module.min.js",
|
|
1585
|
-
"module/worker/worker.js").replace("flexsearch.bundle.module.min.mjs", "module/worker/worker.js"), {type:"module"});
|
|
1586
|
-
}
|
|
1587
|
-
;ob.prototype.add = function(a, b, c) {
|
|
1588
|
-
Ca(a) && (b = a, a = Da(b, this.key));
|
|
1589
|
-
if (b && (a || a === 0)) {
|
|
1590
|
-
if (!c && this.reg.has(a)) {
|
|
1591
|
-
return this.update(a, b);
|
|
1592
|
-
}
|
|
1593
|
-
for (var d = 0, e; d < this.field.length; d++) {
|
|
1594
|
-
e = this.B[d];
|
|
1595
|
-
var f = this.index.get(this.field[d]);
|
|
1596
|
-
if (typeof e === "function") {
|
|
1597
|
-
(e = e(b)) && f.add(a, e, c, !0);
|
|
1598
|
-
} else {
|
|
1599
|
-
var g = e.M;
|
|
1600
|
-
if (!g || g(b)) {
|
|
1601
|
-
e.constructor === String ? e = ["" + e] : U(e) && (e = [e]), pb(b, e, this.C, 0, f, a, e[0], c);
|
|
1602
|
-
}
|
|
1603
|
-
}
|
|
1604
|
-
}
|
|
1605
|
-
if (this.tag) {
|
|
1606
|
-
for (d = 0; d < this.A.length; d++) {
|
|
1607
|
-
g = this.A[d];
|
|
1608
|
-
var h = this.D[d];
|
|
1609
|
-
f = this.tag.get(h);
|
|
1610
|
-
e = S();
|
|
1611
|
-
if (typeof g === "function") {
|
|
1612
|
-
if (g = g(b), !g) {
|
|
1613
|
-
continue;
|
|
1614
|
-
}
|
|
1615
|
-
} else {
|
|
1616
|
-
var k = g.M;
|
|
1617
|
-
if (k && !k(b)) {
|
|
1618
|
-
continue;
|
|
1619
|
-
}
|
|
1620
|
-
g.constructor === String && (g = "" + g);
|
|
1621
|
-
g = Da(b, g);
|
|
1622
|
-
}
|
|
1623
|
-
if (f && g) {
|
|
1624
|
-
for (U(g) && (g = [g]), h = 0, k = void 0; h < g.length; h++) {
|
|
1625
|
-
var l = g[h];
|
|
1626
|
-
if (!e[l]) {
|
|
1627
|
-
e[l] = 1;
|
|
1628
|
-
var m;
|
|
1629
|
-
(m = f.get(l)) ? k = m : f.set(l, k = []);
|
|
1630
|
-
if (!c || !k.includes(a)) {
|
|
1631
|
-
if (k.length === 2147483647) {
|
|
1632
|
-
m = new Va(k);
|
|
1633
|
-
if (this.fastupdate) {
|
|
1634
|
-
for (var p = D(this.reg.values()), n = p.next(); !n.done; n = p.next()) {
|
|
1635
|
-
n = n.value, n.includes(k) && (n[n.indexOf(k)] = m);
|
|
1636
|
-
}
|
|
1637
|
-
}
|
|
1638
|
-
f.set(l, k = m);
|
|
1639
|
-
}
|
|
1640
|
-
k.push(a);
|
|
1641
|
-
this.fastupdate && ((l = this.reg.get(a)) ? l.push(k) : this.reg.set(a, [k]));
|
|
1642
|
-
}
|
|
1643
|
-
}
|
|
1644
|
-
}
|
|
1645
|
-
} else {
|
|
1646
|
-
f || console.warn("Tag '" + h + "' was not found");
|
|
1647
|
-
}
|
|
1648
|
-
}
|
|
1649
|
-
}
|
|
1650
|
-
if (this.store && (!c || !this.store.has(a))) {
|
|
1651
|
-
if (this.h) {
|
|
1652
|
-
var q = S();
|
|
1653
|
-
for (c = 0; c < this.h.length; c++) {
|
|
1654
|
-
if (d = this.h[c], f = d.M, !f || f(b)) {
|
|
1655
|
-
f = void 0;
|
|
1656
|
-
if (typeof d === "function") {
|
|
1657
|
-
f = d(b);
|
|
1658
|
-
if (!f) {
|
|
1659
|
-
continue;
|
|
1660
|
-
}
|
|
1661
|
-
d = [d.ia];
|
|
1662
|
-
} else if (U(d) || d.constructor === String) {
|
|
1663
|
-
q[d] = b[d];
|
|
1664
|
-
continue;
|
|
1665
|
-
}
|
|
1666
|
-
qb(b, q, d, 0, d[0], f);
|
|
1667
|
-
}
|
|
1668
|
-
}
|
|
1669
|
-
}
|
|
1670
|
-
this.store.set(a, q || b);
|
|
1671
|
-
}
|
|
1672
|
-
this.worker && (this.fastupdate || this.reg.add(a));
|
|
1673
|
-
}
|
|
1674
|
-
return this;
|
|
1675
|
-
};
|
|
1676
|
-
function qb(a, b, c, d, e, f) {
|
|
1677
|
-
a = a[e];
|
|
1678
|
-
if (d === c.length - 1) {
|
|
1679
|
-
b[e] = f || a;
|
|
1680
|
-
} else if (a) {
|
|
1681
|
-
if (a.constructor === Array) {
|
|
1682
|
-
for (b = b[e] = Array(a.length), e = 0; e < a.length; e++) {
|
|
1683
|
-
qb(a, b, c, d, e);
|
|
1684
|
-
}
|
|
1685
|
-
} else {
|
|
1686
|
-
b = b[e] || (b[e] = S()), e = c[++d], qb(a, b, c, d, e);
|
|
1687
|
-
}
|
|
1688
|
-
}
|
|
1689
|
-
}
|
|
1690
|
-
function pb(a, b, c, d, e, f, g, h) {
|
|
1691
|
-
if (a = a[g]) {
|
|
1692
|
-
if (d === b.length - 1) {
|
|
1693
|
-
if (a.constructor === Array) {
|
|
1694
|
-
if (c[d]) {
|
|
1695
|
-
for (b = 0; b < a.length; b++) {
|
|
1696
|
-
e.add(f, a[b], !0, !0);
|
|
1697
|
-
}
|
|
1698
|
-
return;
|
|
1699
|
-
}
|
|
1700
|
-
a = a.join(" ");
|
|
1701
|
-
}
|
|
1702
|
-
e.add(f, a, h, !0);
|
|
1703
|
-
} else {
|
|
1704
|
-
if (a.constructor === Array) {
|
|
1705
|
-
for (g = 0; g < a.length; g++) {
|
|
1706
|
-
pb(a, b, c, d, e, f, g, h);
|
|
1707
|
-
}
|
|
1708
|
-
} else {
|
|
1709
|
-
g = b[++d], pb(a, b, c, d, e, f, g, h);
|
|
1710
|
-
}
|
|
1711
|
-
}
|
|
1712
|
-
}
|
|
1713
|
-
}
|
|
1714
|
-
;function rb(a, b, c, d) {
|
|
1715
|
-
if (!a.length) {
|
|
1716
|
-
return a;
|
|
1717
|
-
}
|
|
1718
|
-
if (a.length === 1) {
|
|
1719
|
-
return a = a[0], a = c || a.length > b ? a.slice(c, c + b) : a, d ? sb.call(this, a) : a;
|
|
1720
|
-
}
|
|
1721
|
-
for (var e = [], f = 0, g = void 0, h = void 0; f < a.length; f++) {
|
|
1722
|
-
if ((g = a[f]) && (h = g.length)) {
|
|
1723
|
-
if (c) {
|
|
1724
|
-
if (c >= h) {
|
|
1725
|
-
c -= h;
|
|
1726
|
-
continue;
|
|
1727
|
-
}
|
|
1728
|
-
g = g.slice(c, c + b);
|
|
1729
|
-
h = g.length;
|
|
1730
|
-
c = 0;
|
|
1731
|
-
}
|
|
1732
|
-
h > b && (g = g.slice(0, b), h = b);
|
|
1733
|
-
if (!e.length && h >= b) {
|
|
1734
|
-
return d ? sb.call(this, g) : g;
|
|
1735
|
-
}
|
|
1736
|
-
e.push(g);
|
|
1737
|
-
b -= h;
|
|
1738
|
-
if (!b) {
|
|
1739
|
-
break;
|
|
1740
|
-
}
|
|
1741
|
-
}
|
|
1742
|
-
}
|
|
1743
|
-
e = e.length > 1 ? [].concat.apply([], e) : e[0];
|
|
1744
|
-
return d ? sb.call(this, e) : e;
|
|
1745
|
-
}
|
|
1746
|
-
;function tb(a, b, c, d) {
|
|
1747
|
-
var e = d[0];
|
|
1748
|
-
if (e[0] && e[0].query) {
|
|
1749
|
-
return a[b].apply(a, e);
|
|
1750
|
-
}
|
|
1751
|
-
if (!(b !== "and" && b !== "not" || a.result.length || a.await || e.suggest)) {
|
|
1752
|
-
return d.length > 1 && (e = d[d.length - 1]), (d = e.resolve) ? a.await || a.result : a;
|
|
1753
|
-
}
|
|
1754
|
-
var f = [], g = 0, h = 0, k;
|
|
1755
|
-
b = {};
|
|
1756
|
-
for (e = 0; e < d.length; b = {U:void 0, T:void 0, Y:void 0, aa:void 0}, e++) {
|
|
1757
|
-
var l = d[e];
|
|
1758
|
-
if (l) {
|
|
1759
|
-
var m = void 0;
|
|
1760
|
-
if (l.constructor === Z) {
|
|
1761
|
-
m = l.await || l.result;
|
|
1762
|
-
} else if (l.then || l.constructor === Array) {
|
|
1763
|
-
m = l;
|
|
1764
|
-
} else {
|
|
1765
|
-
g = l.limit || 0;
|
|
1766
|
-
h = l.offset || 0;
|
|
1767
|
-
var p = l.suggest;
|
|
1768
|
-
var n = l.resolve;
|
|
1769
|
-
var q = ((k = l.highlight || a.highlight) || l.enrich) && n;
|
|
1770
|
-
m = l.queue;
|
|
1771
|
-
b.Y = l.async || m;
|
|
1772
|
-
var t = l.index, u = l.query;
|
|
1773
|
-
t ? a.index || (a.index = t) : t = a.index;
|
|
1774
|
-
if (u || l.tag) {
|
|
1775
|
-
if (!t) {
|
|
1776
|
-
throw Error("Resolver can't apply because the corresponding Index was never specified");
|
|
1777
|
-
}
|
|
1778
|
-
var v = l.field || l.pluck;
|
|
1779
|
-
if (v) {
|
|
1780
|
-
!u || a.query && !k || (a.query = u, a.field = v, a.highlight = k);
|
|
1781
|
-
if (!t.index) {
|
|
1782
|
-
throw Error("Resolver can't apply because the corresponding Document Index was not specified");
|
|
1783
|
-
}
|
|
1784
|
-
t = t.index.get(v);
|
|
1785
|
-
if (!t) {
|
|
1786
|
-
throw Error("Resolver can't apply because the specified Document Field '" + v + "' was not found");
|
|
1787
|
-
}
|
|
1788
|
-
}
|
|
1789
|
-
if (m && (A || a.await)) {
|
|
1790
|
-
var A = 1;
|
|
1791
|
-
b.U = void 0;
|
|
1792
|
-
b.aa = a.F.length;
|
|
1793
|
-
b.T = new Promise(function(B) {
|
|
1794
|
-
return function(C) {
|
|
1795
|
-
B.U = C;
|
|
1796
|
-
};
|
|
1797
|
-
}(b));
|
|
1798
|
-
(function(B) {
|
|
1799
|
-
return function(C, r) {
|
|
1800
|
-
B.T.H = function() {
|
|
1801
|
-
r.index = null;
|
|
1802
|
-
r.resolve = !1;
|
|
1803
|
-
var x = B.Y ? C.searchAsync(r) : C.search(r);
|
|
1804
|
-
if (x.then) {
|
|
1805
|
-
return x.then(function(E) {
|
|
1806
|
-
a.F[B.aa] = E = E.result || E;
|
|
1807
|
-
(0,B.U)(E);
|
|
1808
|
-
return E;
|
|
1809
|
-
});
|
|
1810
|
-
}
|
|
1811
|
-
x = x.result || x;
|
|
1812
|
-
(0,B.U)(x);
|
|
1813
|
-
return x;
|
|
1814
|
-
};
|
|
1815
|
-
};
|
|
1816
|
-
})(b)(t, Object.assign({}, l));
|
|
1817
|
-
a.F.push(b.T);
|
|
1818
|
-
f[e] = b.T;
|
|
1819
|
-
continue;
|
|
1820
|
-
} else {
|
|
1821
|
-
l.resolve = !1, l.index = null, m = b.Y ? t.searchAsync(l) : t.search(l), l.resolve = n, l.index = t;
|
|
1822
|
-
}
|
|
1823
|
-
} else if (l.and) {
|
|
1824
|
-
m = ub(l, "and", t);
|
|
1825
|
-
} else if (l.or) {
|
|
1826
|
-
m = ub(l, "or", t);
|
|
1827
|
-
} else if (l.not) {
|
|
1828
|
-
m = ub(l, "not", t);
|
|
1829
|
-
} else if (l.xor) {
|
|
1830
|
-
m = ub(l, "xor", t);
|
|
1831
|
-
} else {
|
|
1832
|
-
continue;
|
|
1833
|
-
}
|
|
1834
|
-
}
|
|
1835
|
-
m.await ? (A = 1, m = m.await) : m.then ? (A = 1, m = m.then(function(B) {
|
|
1836
|
-
return B.result || B;
|
|
1837
|
-
})) : m = m.result || m;
|
|
1838
|
-
f[e] = m;
|
|
1839
|
-
}
|
|
1840
|
-
}
|
|
1841
|
-
A && !a.await && (a.await = new Promise(function(B) {
|
|
1842
|
-
a.return = B;
|
|
1843
|
-
}));
|
|
1844
|
-
if (A) {
|
|
1845
|
-
var y = Promise.all(f).then(function(B) {
|
|
1846
|
-
for (var C = 0; C < a.F.length; C++) {
|
|
1847
|
-
if (a.F[C] === y) {
|
|
1848
|
-
a.F[C] = function() {
|
|
1849
|
-
return c.call(a, B, g, h, q, n, p, k);
|
|
1850
|
-
};
|
|
1851
|
-
break;
|
|
1852
|
-
}
|
|
1853
|
-
}
|
|
1854
|
-
vb(a);
|
|
1855
|
-
});
|
|
1856
|
-
a.F.push(y);
|
|
1857
|
-
} else if (a.await) {
|
|
1858
|
-
a.F.push(function() {
|
|
1859
|
-
return c.call(a, f, g, h, q, n, p, k);
|
|
1860
|
-
});
|
|
1861
|
-
} else {
|
|
1862
|
-
return c.call(a, f, g, h, q, n, p, k);
|
|
1863
|
-
}
|
|
1864
|
-
return n ? a.await || a.result : a;
|
|
1865
|
-
}
|
|
1866
|
-
function ub(a, b, c) {
|
|
1867
|
-
a = a[b];
|
|
1868
|
-
var d = a[0] || a;
|
|
1869
|
-
d.index || (d.index = c);
|
|
1870
|
-
c = new Z(d);
|
|
1871
|
-
a.length > 1 && (c = c[b].apply(c, a.slice(1)));
|
|
1872
|
-
return c;
|
|
1873
|
-
}
|
|
1874
|
-
;Z.prototype.or = function() {
|
|
1875
|
-
return tb(this, "or", wb, arguments);
|
|
1876
|
-
};
|
|
1877
|
-
function wb(a, b, c, d, e, f, g) {
|
|
1878
|
-
a.length && (this.result.length && a.push(this.result), a.length < 2 ? this.result = a[0] : (this.result = xb(a, b, c, !1, this.h), c = 0));
|
|
1879
|
-
e && (this.await = null);
|
|
1880
|
-
return e ? this.resolve(b, c, d, g) : this;
|
|
1881
|
-
}
|
|
1882
|
-
;Z.prototype.and = function() {
|
|
1883
|
-
return tb(this, "and", yb, arguments);
|
|
1884
|
-
};
|
|
1885
|
-
function yb(a, b, c, d, e, f, g) {
|
|
1886
|
-
if (!f && !this.result.length) {
|
|
1887
|
-
return e ? this.result : this;
|
|
1888
|
-
}
|
|
1889
|
-
if (a.length) {
|
|
1890
|
-
if (this.result.length && a.unshift(this.result), a.length < 2) {
|
|
1891
|
-
this.result = a[0];
|
|
1892
|
-
} else {
|
|
1893
|
-
for (var h = 0, k = 0, l = void 0, m = void 0; k < a.length; k++) {
|
|
1894
|
-
if ((l = a[k]) && (m = l.length)) {
|
|
1895
|
-
h < m && (h = m);
|
|
1896
|
-
} else if (!f) {
|
|
1897
|
-
h = 0;
|
|
1898
|
-
break;
|
|
1899
|
-
}
|
|
1900
|
-
}
|
|
1901
|
-
if (h) {
|
|
1902
|
-
this.result = zb(a, h, b, c, f, this.h, e);
|
|
1903
|
-
var p = !0;
|
|
1904
|
-
} else {
|
|
1905
|
-
this.result = [];
|
|
1906
|
-
}
|
|
1907
|
-
}
|
|
1908
|
-
} else {
|
|
1909
|
-
f || (this.result = a);
|
|
1910
|
-
}
|
|
1911
|
-
e && (this.await = null);
|
|
1912
|
-
return e ? this.resolve(b, c, d, g, p) : this;
|
|
1913
|
-
}
|
|
1914
|
-
;Z.prototype.xor = function() {
|
|
1915
|
-
return tb(this, "xor", Ab, arguments);
|
|
1916
|
-
};
|
|
1917
|
-
function Ab(a, b, c, d, e, f, g) {
|
|
1918
|
-
if (a.length) {
|
|
1919
|
-
if (this.result.length && a.unshift(this.result), a.length < 2) {
|
|
1920
|
-
this.result = a[0];
|
|
1921
|
-
} else {
|
|
1922
|
-
a: {
|
|
1923
|
-
f = c;
|
|
1924
|
-
var h = this.h;
|
|
1925
|
-
for (var k = [], l = S(), m = 0, p = 0, n; p < a.length; p++) {
|
|
1926
|
-
if (n = a[p]) {
|
|
1927
|
-
m < n.length && (m = n.length);
|
|
1928
|
-
for (var q = 0, t; q < n.length; q++) {
|
|
1929
|
-
if (t = n[q]) {
|
|
1930
|
-
for (var u = 0, v; u < t.length; u++) {
|
|
1931
|
-
v = t[u], l[v] = l[v] ? 2 : 1;
|
|
1932
|
-
}
|
|
1933
|
-
}
|
|
1934
|
-
}
|
|
1935
|
-
}
|
|
1936
|
-
}
|
|
1937
|
-
for (n = p = 0; p < m; p++) {
|
|
1938
|
-
for (q = 0; q < a.length; q++) {
|
|
1939
|
-
if (t = a[q]) {
|
|
1940
|
-
if (t = t[p]) {
|
|
1941
|
-
for (u = 0; u < t.length; u++) {
|
|
1942
|
-
if (v = t[u], l[v] === 1) {
|
|
1943
|
-
if (f) {
|
|
1944
|
-
f--;
|
|
1945
|
-
} else {
|
|
1946
|
-
if (e) {
|
|
1947
|
-
if (k.push(v), k.length === b) {
|
|
1948
|
-
a = k;
|
|
1949
|
-
break a;
|
|
1950
|
-
}
|
|
1951
|
-
} else {
|
|
1952
|
-
var A = p + (q ? h : 0);
|
|
1953
|
-
k[A] || (k[A] = []);
|
|
1954
|
-
k[A].push(v);
|
|
1955
|
-
if (++n === b) {
|
|
1956
|
-
a = k;
|
|
1957
|
-
break a;
|
|
1958
|
-
}
|
|
1959
|
-
}
|
|
1960
|
-
}
|
|
1961
|
-
}
|
|
1962
|
-
}
|
|
1963
|
-
}
|
|
1964
|
-
}
|
|
1965
|
-
}
|
|
1966
|
-
}
|
|
1967
|
-
a = k;
|
|
1968
|
-
}
|
|
1969
|
-
this.result = a;
|
|
1970
|
-
h = !0;
|
|
1971
|
-
}
|
|
1972
|
-
} else {
|
|
1973
|
-
f || (this.result = a);
|
|
1974
|
-
}
|
|
1975
|
-
e && (this.await = null);
|
|
1976
|
-
return e ? this.resolve(b, c, d, g, h) : this;
|
|
1977
|
-
}
|
|
1978
|
-
;Z.prototype.not = function() {
|
|
1979
|
-
return tb(this, "not", Bb, arguments);
|
|
1980
|
-
};
|
|
1981
|
-
function Bb(a, b, c, d, e, f, g) {
|
|
1982
|
-
if (!f && !this.result.length) {
|
|
1983
|
-
return e ? this.result : this;
|
|
1984
|
-
}
|
|
1985
|
-
if (a.length && this.result.length) {
|
|
1986
|
-
a: {
|
|
1987
|
-
f = c;
|
|
1988
|
-
var h = [];
|
|
1989
|
-
a = new Set(a.flat().flat());
|
|
1990
|
-
for (var k = 0, l, m = 0; k < this.result.length; k++) {
|
|
1991
|
-
if (l = this.result[k]) {
|
|
1992
|
-
for (var p = 0, n; p < l.length; p++) {
|
|
1993
|
-
if (n = l[p], !a.has(n)) {
|
|
1994
|
-
if (f) {
|
|
1995
|
-
f--;
|
|
1996
|
-
} else {
|
|
1997
|
-
if (e) {
|
|
1998
|
-
if (h.push(n), h.length === b) {
|
|
1999
|
-
f = h;
|
|
2000
|
-
break a;
|
|
2001
|
-
}
|
|
2002
|
-
} else {
|
|
2003
|
-
if (h[k] || (h[k] = []), h[k].push(n), ++m === b) {
|
|
2004
|
-
f = h;
|
|
2005
|
-
break a;
|
|
2006
|
-
}
|
|
2007
|
-
}
|
|
2008
|
-
}
|
|
2009
|
-
}
|
|
2010
|
-
}
|
|
2011
|
-
}
|
|
2012
|
-
}
|
|
2013
|
-
f = h;
|
|
2014
|
-
}
|
|
2015
|
-
this.result = f;
|
|
2016
|
-
h = !0;
|
|
2017
|
-
}
|
|
2018
|
-
e && (this.await = null);
|
|
2019
|
-
return e ? this.resolve(b, c, d, g, h) : this;
|
|
2020
|
-
}
|
|
2021
|
-
;function Cb(a, b, c, d, e) {
|
|
2022
|
-
if (typeof e === "string") {
|
|
2023
|
-
var f = e;
|
|
2024
|
-
e = "";
|
|
2025
|
-
} else {
|
|
2026
|
-
f = e.template;
|
|
2027
|
-
}
|
|
2028
|
-
if (!f) {
|
|
2029
|
-
throw Error('No template pattern was specified by the search option "highlight"');
|
|
2030
|
-
}
|
|
2031
|
-
var g = f.indexOf("$1");
|
|
2032
|
-
if (g === -1) {
|
|
2033
|
-
throw Error('Invalid highlight template. The replacement pattern "$1" was not found in template: ' + f);
|
|
2034
|
-
}
|
|
2035
|
-
var h = f.substring(g + 2);
|
|
2036
|
-
g = f.substring(0, g);
|
|
2037
|
-
var k = e && e.boundary, l = !e || e.clip !== !1, m = e && e.merge && h && g && new RegExp(h + " " + g, "g");
|
|
2038
|
-
e = e && e.ellipsis;
|
|
2039
|
-
var p = 0;
|
|
2040
|
-
if (typeof e === "object") {
|
|
2041
|
-
var n = e.template;
|
|
2042
|
-
p = n.length - 2;
|
|
2043
|
-
e = e.pattern;
|
|
2044
|
-
}
|
|
2045
|
-
typeof e !== "string" && (e = e === !1 ? "" : "...");
|
|
2046
|
-
p && (e = n.replace("$1", e));
|
|
2047
|
-
n = e.length - p;
|
|
2048
|
-
if (typeof k === "object") {
|
|
2049
|
-
var q = k.before;
|
|
2050
|
-
q === 0 && (q = -1);
|
|
2051
|
-
var t = k.after;
|
|
2052
|
-
t === 0 && (t = -1);
|
|
2053
|
-
k = k.total || 9e5;
|
|
2054
|
-
}
|
|
2055
|
-
p = new Map();
|
|
2056
|
-
for (var u, v = 0, A, y; v < b.length; v++) {
|
|
2057
|
-
if (d) {
|
|
2058
|
-
var B = b;
|
|
2059
|
-
y = d;
|
|
2060
|
-
} else {
|
|
2061
|
-
B = b[v];
|
|
2062
|
-
y = B.field;
|
|
2063
|
-
if (!y) {
|
|
2064
|
-
continue;
|
|
2065
|
-
}
|
|
2066
|
-
B = B.result;
|
|
2067
|
-
}
|
|
2068
|
-
u = c.get(y);
|
|
2069
|
-
A = u.encoder;
|
|
2070
|
-
u = p.get(A);
|
|
2071
|
-
typeof u !== "string" && (u = A.encode(a), p.set(A, u));
|
|
2072
|
-
for (var C = 0; C < B.length; C++) {
|
|
2073
|
-
var r = B[C].doc;
|
|
2074
|
-
if (r && (r = Da(r, y))) {
|
|
2075
|
-
var x = r.trim().split(/\s+/);
|
|
2076
|
-
if (x.length) {
|
|
2077
|
-
r = "";
|
|
2078
|
-
for (var E = [], T = [], G = -1, O = -1, N = 0, F = 0; F < x.length; F++) {
|
|
2079
|
-
var R = x[F], W = A.encode(R);
|
|
2080
|
-
W = W.length > 1 ? W.join(" ") : W[0];
|
|
2081
|
-
var P = void 0;
|
|
2082
|
-
if (W && R) {
|
|
2083
|
-
for (var M = R.length, K = (A.split ? R.replace(A.split, "") : R).length - W.length, ba = "", oa = 0, z = 0; z < u.length; z++) {
|
|
2084
|
-
var I = u[z];
|
|
2085
|
-
if (I) {
|
|
2086
|
-
var J = I.length;
|
|
2087
|
-
J += K < 0 ? 0 : K;
|
|
2088
|
-
oa && J <= oa || (I = W.indexOf(I), I > -1 && (ba = (I ? R.substring(0, I) : "") + g + R.substring(I, I + J) + h + (I + J < M ? R.substring(I + J) : ""), oa = J, P = !0));
|
|
2089
|
-
}
|
|
2090
|
-
}
|
|
2091
|
-
ba && (k && (G < 0 && (G = r.length + (r ? 1 : 0)), O = r.length + (r ? 1 : 0) + ba.length, N += M, T.push(E.length), E.push({match:ba})), r += (r ? " " : "") + ba);
|
|
2092
|
-
}
|
|
2093
|
-
if (!P) {
|
|
2094
|
-
R = x[F], r += (r ? " " : "") + R, k && E.push({text:R});
|
|
2095
|
-
} else if (k && N >= k) {
|
|
2096
|
-
break;
|
|
2097
|
-
}
|
|
2098
|
-
}
|
|
2099
|
-
N = T.length * (f.length - 2);
|
|
2100
|
-
if (q || t || k && r.length - N > k) {
|
|
2101
|
-
if (N = k + N - n * 2, F = O - G, q > 0 && (F += q), t > 0 && (F += t), F <= N) {
|
|
2102
|
-
x = q ? G - (q > 0 ? q : 0) : G - ((N - F) / 2 | 0), E = t ? O + (t > 0 ? t : 0) : x + N, l || (x > 0 && r.charAt(x) !== " " && r.charAt(x - 1) !== " " && (x = r.indexOf(" ", x), x < 0 && (x = 0)), E < r.length && r.charAt(E - 1) !== " " && r.charAt(E) !== " " && (E = r.lastIndexOf(" ", E), E < O ? E = O : ++E)), r = (x ? e : "") + r.substring(x, E) + (E < r.length ? e : "");
|
|
2103
|
-
} else {
|
|
2104
|
-
O = [];
|
|
2105
|
-
N = {};
|
|
2106
|
-
G = {};
|
|
2107
|
-
F = {};
|
|
2108
|
-
R = {};
|
|
2109
|
-
W = {};
|
|
2110
|
-
K = M = P = 0;
|
|
2111
|
-
for (oa = ba = 1;;) {
|
|
2112
|
-
I = void 0;
|
|
2113
|
-
for (z = 0; z < T.length; z++) {
|
|
2114
|
-
J = T[z];
|
|
2115
|
-
if (K) {
|
|
2116
|
-
if (M !== K) {
|
|
2117
|
-
if (F[z + 1]) {
|
|
2118
|
-
continue;
|
|
2119
|
-
}
|
|
2120
|
-
J += K;
|
|
2121
|
-
if (N[J]) {
|
|
2122
|
-
P -= n;
|
|
2123
|
-
G[z + 1] = 1;
|
|
2124
|
-
F[z + 1] = 1;
|
|
2125
|
-
continue;
|
|
2126
|
-
}
|
|
2127
|
-
if (J >= E.length - 1) {
|
|
2128
|
-
if (J >= E.length) {
|
|
2129
|
-
F[z + 1] = 1;
|
|
2130
|
-
J >= x.length && (G[z + 1] = 1);
|
|
2131
|
-
continue;
|
|
2132
|
-
}
|
|
2133
|
-
P -= n;
|
|
2134
|
-
}
|
|
2135
|
-
r = E[J].text;
|
|
2136
|
-
var V = t && W[z];
|
|
2137
|
-
if (V) {
|
|
2138
|
-
if (V > 0) {
|
|
2139
|
-
if (r.length > V) {
|
|
2140
|
-
if (F[z + 1] = 1, l) {
|
|
2141
|
-
r = r.substring(0, V);
|
|
2142
|
-
} else {
|
|
2143
|
-
continue;
|
|
2144
|
-
}
|
|
2145
|
-
}
|
|
2146
|
-
(V -= r.length) || (V = -1);
|
|
2147
|
-
W[z] = V;
|
|
2148
|
-
} else {
|
|
2149
|
-
F[z + 1] = 1;
|
|
2150
|
-
continue;
|
|
2151
|
-
}
|
|
2152
|
-
}
|
|
2153
|
-
if (P + r.length + 1 <= k) {
|
|
2154
|
-
r = " " + r, O[z] += r;
|
|
2155
|
-
} else if (l) {
|
|
2156
|
-
I = k - P - 1, I > 0 && (r = " " + r.substring(0, I), O[z] += r), F[z + 1] = 1;
|
|
2157
|
-
} else {
|
|
2158
|
-
F[z + 1] = 1;
|
|
2159
|
-
continue;
|
|
2160
|
-
}
|
|
2161
|
-
} else {
|
|
2162
|
-
if (F[z]) {
|
|
2163
|
-
continue;
|
|
2164
|
-
}
|
|
2165
|
-
J -= M;
|
|
2166
|
-
if (N[J]) {
|
|
2167
|
-
P -= n;
|
|
2168
|
-
F[z] = 1;
|
|
2169
|
-
G[z] = 1;
|
|
2170
|
-
continue;
|
|
2171
|
-
}
|
|
2172
|
-
if (J <= 0) {
|
|
2173
|
-
if (J < 0) {
|
|
2174
|
-
F[z] = 1;
|
|
2175
|
-
G[z] = 1;
|
|
2176
|
-
continue;
|
|
2177
|
-
}
|
|
2178
|
-
P -= n;
|
|
2179
|
-
}
|
|
2180
|
-
r = E[J].text;
|
|
2181
|
-
if (V = q && R[z]) {
|
|
2182
|
-
if (V > 0) {
|
|
2183
|
-
if (r.length > V) {
|
|
2184
|
-
if (F[z] = 1, l) {
|
|
2185
|
-
r = r.substring(r.length - V);
|
|
2186
|
-
} else {
|
|
2187
|
-
continue;
|
|
2188
|
-
}
|
|
2189
|
-
}
|
|
2190
|
-
(V -= r.length) || (V = -1);
|
|
2191
|
-
R[z] = V;
|
|
2192
|
-
} else {
|
|
2193
|
-
F[z] = 1;
|
|
2194
|
-
continue;
|
|
2195
|
-
}
|
|
2196
|
-
}
|
|
2197
|
-
if (P + r.length + 1 <= k) {
|
|
2198
|
-
r += " ", O[z] = r + O[z];
|
|
2199
|
-
} else if (l) {
|
|
2200
|
-
I = r.length + 1 - (k - P), I >= 0 && I < r.length && (r = r.substring(I) + " ", O[z] = r + O[z]), F[z] = 1;
|
|
2201
|
-
} else {
|
|
2202
|
-
F[z] = 1;
|
|
2203
|
-
continue;
|
|
2204
|
-
}
|
|
2205
|
-
}
|
|
2206
|
-
} else {
|
|
2207
|
-
r = E[J].match;
|
|
2208
|
-
q && (R[z] = q);
|
|
2209
|
-
t && (W[z] = t);
|
|
2210
|
-
z && P++;
|
|
2211
|
-
I = void 0;
|
|
2212
|
-
J ? !z && n && (P += n) : (G[z] = 1, F[z] = 1);
|
|
2213
|
-
J >= x.length - 1 ? I = 1 : J < E.length - 1 && E[J + 1].match ? I = 1 : n && (P += n);
|
|
2214
|
-
P -= f.length - 2;
|
|
2215
|
-
if (!z || P + r.length <= k) {
|
|
2216
|
-
O[z] = r;
|
|
2217
|
-
} else {
|
|
2218
|
-
I = ba = oa = G[z] = 0;
|
|
2219
|
-
break;
|
|
2220
|
-
}
|
|
2221
|
-
I && (G[z + 1] = 1, F[z + 1] = 1);
|
|
2222
|
-
}
|
|
2223
|
-
P += r.length;
|
|
2224
|
-
I = N[J] = 1;
|
|
2225
|
-
}
|
|
2226
|
-
if (I) {
|
|
2227
|
-
M === K ? K++ : M++;
|
|
2228
|
-
} else {
|
|
2229
|
-
M === K ? ba = 0 : oa = 0;
|
|
2230
|
-
if (!ba && !oa) {
|
|
2231
|
-
break;
|
|
2232
|
-
}
|
|
2233
|
-
ba ? (M++, K = M) : K++;
|
|
2234
|
-
}
|
|
2235
|
-
}
|
|
2236
|
-
r = "";
|
|
2237
|
-
for (x = 0; x < O.length; x++) {
|
|
2238
|
-
E = (G[x] ? x ? " " : "" : (x && !e ? " " : "") + e) + O[x], r += E;
|
|
2239
|
-
}
|
|
2240
|
-
e && !G[O.length] && (r += e);
|
|
2241
|
-
}
|
|
2242
|
-
}
|
|
2243
|
-
m && (r = r.replace(m, " "));
|
|
2244
|
-
B[C].highlight = r;
|
|
2245
|
-
}
|
|
2246
|
-
}
|
|
2247
|
-
}
|
|
2248
|
-
if (d) {
|
|
2249
|
-
break;
|
|
2250
|
-
}
|
|
2251
|
-
}
|
|
2252
|
-
return b;
|
|
2253
|
-
}
|
|
2254
|
-
;function Z(a, b) {
|
|
2255
|
-
if (!this || this.constructor !== Z) {
|
|
2256
|
-
return new Z(a, b);
|
|
2257
|
-
}
|
|
2258
|
-
var c = 0, d, e;
|
|
2259
|
-
if (a && a.index) {
|
|
2260
|
-
var f = a;
|
|
2261
|
-
b = f.index;
|
|
2262
|
-
c = f.boost || 0;
|
|
2263
|
-
if (d = f.query) {
|
|
2264
|
-
var g = f.field || f.pluck;
|
|
2265
|
-
var h = f.highlight;
|
|
2266
|
-
var k = f.resolve;
|
|
2267
|
-
a = f.async || f.queue;
|
|
2268
|
-
f.resolve = !1;
|
|
2269
|
-
f.index = null;
|
|
2270
|
-
a = a ? b.searchAsync(f) : b.search(f);
|
|
2271
|
-
f.resolve = k;
|
|
2272
|
-
f.index = b;
|
|
2273
|
-
a = a.result || a;
|
|
2274
|
-
} else {
|
|
2275
|
-
a = [];
|
|
2276
|
-
}
|
|
2277
|
-
}
|
|
2278
|
-
if (a && a.then) {
|
|
2279
|
-
var l = this;
|
|
2280
|
-
a = a.then(function(n) {
|
|
2281
|
-
l.F[0] = l.result = n.result || n;
|
|
2282
|
-
vb(l);
|
|
2283
|
-
});
|
|
2284
|
-
var m = [a];
|
|
2285
|
-
a = [];
|
|
2286
|
-
var p = new Promise(function(n) {
|
|
2287
|
-
e = n;
|
|
2288
|
-
});
|
|
2289
|
-
}
|
|
2290
|
-
this.index = b || null;
|
|
2291
|
-
this.result = a || [];
|
|
2292
|
-
this.h = c;
|
|
2293
|
-
this.F = m || [];
|
|
2294
|
-
this.await = p || null;
|
|
2295
|
-
this.return = e || null;
|
|
2296
|
-
this.highlight = h || null;
|
|
2297
|
-
this.query = d || "";
|
|
2298
|
-
this.field = g || "";
|
|
2299
|
-
}
|
|
2300
|
-
w = Z.prototype;
|
|
2301
|
-
w.limit = function(a) {
|
|
2302
|
-
if (this.await) {
|
|
2303
|
-
var b = this;
|
|
2304
|
-
this.F.push(function() {
|
|
2305
|
-
return b.limit(a).result;
|
|
2306
|
-
});
|
|
2307
|
-
} else {
|
|
2308
|
-
if (this.result.length) {
|
|
2309
|
-
for (var c = [], d = 0, e = void 0; d < this.result.length; d++) {
|
|
2310
|
-
if (e = this.result[d]) {
|
|
2311
|
-
if (e.length <= a) {
|
|
2312
|
-
if (c[d] = e, a -= e.length, !a) {
|
|
2313
|
-
break;
|
|
2314
|
-
}
|
|
2315
|
-
} else {
|
|
2316
|
-
c[d] = e.slice(0, a);
|
|
2317
|
-
break;
|
|
2318
|
-
}
|
|
2319
|
-
}
|
|
2320
|
-
}
|
|
2321
|
-
this.result = c;
|
|
2322
|
-
}
|
|
2323
|
-
}
|
|
2324
|
-
return this;
|
|
2325
|
-
};
|
|
2326
|
-
w.offset = function(a) {
|
|
2327
|
-
if (this.await) {
|
|
2328
|
-
var b = this;
|
|
2329
|
-
this.F.push(function() {
|
|
2330
|
-
return b.offset(a).result;
|
|
2331
|
-
});
|
|
2332
|
-
} else {
|
|
2333
|
-
if (this.result.length) {
|
|
2334
|
-
for (var c = [], d = 0, e = void 0; d < this.result.length; d++) {
|
|
2335
|
-
if (e = this.result[d]) {
|
|
2336
|
-
e.length <= a ? a -= e.length : (c[d] = e.slice(a), a = 0);
|
|
2337
|
-
}
|
|
2338
|
-
}
|
|
2339
|
-
this.result = c;
|
|
2340
|
-
}
|
|
2341
|
-
}
|
|
2342
|
-
return this;
|
|
2343
|
-
};
|
|
2344
|
-
w.boost = function(a) {
|
|
2345
|
-
if (this.await) {
|
|
2346
|
-
var b = this;
|
|
2347
|
-
this.F.push(function() {
|
|
2348
|
-
return b.boost(a).result;
|
|
2349
|
-
});
|
|
2350
|
-
} else {
|
|
2351
|
-
this.h += a;
|
|
2352
|
-
}
|
|
2353
|
-
return this;
|
|
2354
|
-
};
|
|
2355
|
-
function vb(a, b) {
|
|
2356
|
-
var c = a.result, d = a.await;
|
|
2357
|
-
a.await = null;
|
|
2358
|
-
for (var e = 0, f; e < a.F.length; e++) {
|
|
2359
|
-
if (f = a.F[e]) {
|
|
2360
|
-
if (typeof f === "function") {
|
|
2361
|
-
c = f(), a.F[e] = c = c.result || c, e--;
|
|
2362
|
-
} else if (f.H) {
|
|
2363
|
-
c = f.H(), a.F[e] = c = c.result || c, e--;
|
|
2364
|
-
} else if (f.then) {
|
|
2365
|
-
return a.await = d;
|
|
2366
|
-
}
|
|
2367
|
-
}
|
|
2368
|
-
}
|
|
2369
|
-
d = a.return;
|
|
2370
|
-
a.F = [];
|
|
2371
|
-
a.return = null;
|
|
2372
|
-
b || d(c);
|
|
2373
|
-
return c;
|
|
2374
|
-
}
|
|
2375
|
-
w.resolve = function(a, b, c, d, e) {
|
|
2376
|
-
var f = this.await ? vb(this, !0) : this.result;
|
|
2377
|
-
if (f.then) {
|
|
2378
|
-
var g = this;
|
|
2379
|
-
return f.then(function() {
|
|
2380
|
-
return g.resolve(a, b, c, d, e);
|
|
2381
|
-
});
|
|
2382
|
-
}
|
|
2383
|
-
f.length && (typeof a === "object" ? (d = a.highlight || this.highlight, c = !!d || a.enrich, b = a.offset, a = a.limit) : (d = d || this.highlight, c = !!d || c), f = e ? c ? sb.call(this.index, f) : f : rb.call(this.index, f, a || 100, b, c));
|
|
2384
|
-
return this.finalize(f, d);
|
|
2385
|
-
};
|
|
2386
|
-
w.finalize = function(a, b) {
|
|
2387
|
-
if (a.then) {
|
|
2388
|
-
var c = this;
|
|
2389
|
-
return a.then(function(e) {
|
|
2390
|
-
return c.finalize(e, b);
|
|
2391
|
-
});
|
|
2392
|
-
}
|
|
2393
|
-
b && !this.query && console.warn('There was no query specified for highlighting. Please specify a query within the highlight resolver stage like { query: "...", highlight: ... }.');
|
|
2394
|
-
b && a.length && this.query && (a = Cb(this.query, a, this.index.index, this.field, b));
|
|
2395
|
-
var d = this.return;
|
|
2396
|
-
this.highlight = this.index = this.result = this.F = this.await = this.return = null;
|
|
2397
|
-
this.query = this.field = "";
|
|
2398
|
-
d && d(a);
|
|
2399
|
-
return a;
|
|
2400
|
-
};
|
|
2401
|
-
function zb(a, b, c, d, e, f, g) {
|
|
2402
|
-
var h = a.length, k = [];
|
|
2403
|
-
var l = S();
|
|
2404
|
-
for (var m = 0, p = void 0, n, q; m < b; m++) {
|
|
2405
|
-
for (var t = 0; t < h; t++) {
|
|
2406
|
-
var u = a[t];
|
|
2407
|
-
if (m < u.length && (p = u[m])) {
|
|
2408
|
-
for (var v = 0; v < p.length; v++) {
|
|
2409
|
-
n = p[v];
|
|
2410
|
-
(u = l[n]) ? l[n]++ : (u = 0, l[n] = 1);
|
|
2411
|
-
q = k[u] || (k[u] = []);
|
|
2412
|
-
if (!g) {
|
|
2413
|
-
var A = m + (t || !e ? 0 : f || 0);
|
|
2414
|
-
q = q[A] || (q[A] = []);
|
|
2415
|
-
}
|
|
2416
|
-
q.push(n);
|
|
2417
|
-
if (g && c && u === h - 1 && q.length - d === c) {
|
|
2418
|
-
return d ? q.slice(d) : q;
|
|
2419
|
-
}
|
|
2420
|
-
}
|
|
2421
|
-
}
|
|
2422
|
-
}
|
|
2423
|
-
}
|
|
2424
|
-
if (a = k.length) {
|
|
2425
|
-
if (e) {
|
|
2426
|
-
k = k.length > 1 ? xb(k, c, d, g, f) : (k = k[0]) && c && k.length > c || d ? k.slice(d, c + d) : k;
|
|
2427
|
-
} else {
|
|
2428
|
-
if (a < h) {
|
|
2429
|
-
return [];
|
|
2430
|
-
}
|
|
2431
|
-
k = k[a - 1];
|
|
2432
|
-
if (c || d) {
|
|
2433
|
-
if (g) {
|
|
2434
|
-
if (k.length > c || d) {
|
|
2435
|
-
k = k.slice(d, c + d);
|
|
2436
|
-
}
|
|
2437
|
-
} else {
|
|
2438
|
-
e = [];
|
|
2439
|
-
for (f = 0; f < k.length; f++) {
|
|
2440
|
-
if (g = k[f]) {
|
|
2441
|
-
if (d && g.length > d) {
|
|
2442
|
-
d -= g.length;
|
|
2443
|
-
} else {
|
|
2444
|
-
if (c && g.length > c || d) {
|
|
2445
|
-
g = g.slice(d, c + d), c -= g.length, d && (d -= g.length);
|
|
2446
|
-
}
|
|
2447
|
-
e.push(g);
|
|
2448
|
-
if (!c) {
|
|
2449
|
-
break;
|
|
2450
|
-
}
|
|
2451
|
-
}
|
|
2452
|
-
}
|
|
2453
|
-
}
|
|
2454
|
-
k = e;
|
|
2455
|
-
}
|
|
2456
|
-
}
|
|
2457
|
-
}
|
|
2458
|
-
}
|
|
2459
|
-
return k;
|
|
2460
|
-
}
|
|
2461
|
-
function xb(a, b, c, d, e) {
|
|
2462
|
-
var f = [], g = S(), h = a.length, k;
|
|
2463
|
-
if (d) {
|
|
2464
|
-
for (e = h - 1; e >= 0; e--) {
|
|
2465
|
-
if (k = (d = a[e]) && d.length) {
|
|
2466
|
-
for (h = 0; h < k; h++) {
|
|
2467
|
-
var l = d[h];
|
|
2468
|
-
if (!g[l]) {
|
|
2469
|
-
if (g[l] = 1, c) {
|
|
2470
|
-
c--;
|
|
2471
|
-
} else {
|
|
2472
|
-
if (f.push(l), f.length === b) {
|
|
2473
|
-
return f;
|
|
2474
|
-
}
|
|
2475
|
-
}
|
|
2476
|
-
}
|
|
2477
|
-
}
|
|
2478
|
-
}
|
|
2479
|
-
}
|
|
2480
|
-
} else {
|
|
2481
|
-
for (var m = h - 1, p, n = 0; m >= 0; m--) {
|
|
2482
|
-
p = a[m];
|
|
2483
|
-
for (var q = 0; q < p.length; q++) {
|
|
2484
|
-
if (k = (d = p[q]) && d.length) {
|
|
2485
|
-
for (var t = 0; t < k; t++) {
|
|
2486
|
-
if (l = d[t], !g[l]) {
|
|
2487
|
-
if (g[l] = 1, c) {
|
|
2488
|
-
c--;
|
|
2489
|
-
} else {
|
|
2490
|
-
var u = (q + (m < h - 1 ? e || 0 : 0)) / (m + 1) | 0;
|
|
2491
|
-
(f[u] || (f[u] = [])).push(l);
|
|
2492
|
-
if (++n === b) {
|
|
2493
|
-
return f;
|
|
2494
|
-
}
|
|
2495
|
-
}
|
|
2496
|
-
}
|
|
2497
|
-
}
|
|
2498
|
-
}
|
|
2499
|
-
}
|
|
2500
|
-
}
|
|
2501
|
-
}
|
|
2502
|
-
return f;
|
|
2503
|
-
}
|
|
2504
|
-
function Db(a, b, c, d, e) {
|
|
2505
|
-
for (var f = S(), g = [], h = 0, k; h < b.length; h++) {
|
|
2506
|
-
k = b[h];
|
|
2507
|
-
for (var l = 0; l < k.length; l++) {
|
|
2508
|
-
f[k[l]] = 1;
|
|
2509
|
-
}
|
|
2510
|
-
}
|
|
2511
|
-
if (e) {
|
|
2512
|
-
for (b = 0; b < a.length; b++) {
|
|
2513
|
-
if (e = a[b], f[e]) {
|
|
2514
|
-
if (d) {
|
|
2515
|
-
d--;
|
|
2516
|
-
} else {
|
|
2517
|
-
if (g.push(e), f[e] = 0, c && --c === 0) {
|
|
2518
|
-
break;
|
|
2519
|
-
}
|
|
2520
|
-
}
|
|
2521
|
-
}
|
|
2522
|
-
}
|
|
2523
|
-
} else {
|
|
2524
|
-
for (c = 0; c < a.result.length; c++) {
|
|
2525
|
-
for (d = a.result[c], e = 0; e < d.length; e++) {
|
|
2526
|
-
b = d[e], f[b] && ((g[c] || (g[c] = [])).push(b), f[b] = 0);
|
|
2527
|
-
}
|
|
2528
|
-
}
|
|
2529
|
-
}
|
|
2530
|
-
return g;
|
|
2531
|
-
}
|
|
2532
|
-
;S();
|
|
2533
|
-
ob.prototype.search = function(a, b, c, d) {
|
|
2534
|
-
c || (!b && Ca(a) ? (c = a, a = "") : Ca(b) && (c = b, b = 0));
|
|
2535
|
-
var e = [], f = [], g = 0, h = !0;
|
|
2536
|
-
if (c) {
|
|
2537
|
-
c.constructor === Array && (c = {index:c});
|
|
2538
|
-
a = c.query || a;
|
|
2539
|
-
var k = c.pluck;
|
|
2540
|
-
var l = c.merge;
|
|
2541
|
-
var m = c.boost;
|
|
2542
|
-
var p = k || c.field || (p = c.index) && (p.index ? null : p);
|
|
2543
|
-
var n = this.tag && c.tag;
|
|
2544
|
-
var q = c.suggest;
|
|
2545
|
-
h = c.resolve !== !1;
|
|
2546
|
-
var t = c.cache;
|
|
2547
|
-
this.store && c.highlight && !h ? console.warn("Highlighting results can only be done on a final resolver task or when calling .resolve({ highlight: ... })") : this.store && c.enrich && !h && console.warn("Enrich results can only be done on a final resolver task or when calling .resolve({ enrich: true })");
|
|
2548
|
-
var u = h && this.store && c.highlight;
|
|
2549
|
-
var v = !!u || h && this.store && c.enrich;
|
|
2550
|
-
b = c.limit || b;
|
|
2551
|
-
var A = c.offset || 0;
|
|
2552
|
-
b || (b = h ? 100 : 0);
|
|
2553
|
-
if (n && (!this.db || !d)) {
|
|
2554
|
-
n.constructor !== Array && (n = [n]);
|
|
2555
|
-
for (var y = [], B = 0, C = void 0; B < n.length; B++) {
|
|
2556
|
-
C = n[B];
|
|
2557
|
-
if (U(C)) {
|
|
2558
|
-
throw Error("A tag option can't be a string, instead it needs a { field: tag } format.");
|
|
2559
|
-
}
|
|
2560
|
-
if (C.field && C.tag) {
|
|
2561
|
-
var r = C.tag;
|
|
2562
|
-
if (r.constructor === Array) {
|
|
2563
|
-
for (var x = 0; x < r.length; x++) {
|
|
2564
|
-
y.push(C.field, r[x]);
|
|
2565
|
-
}
|
|
2566
|
-
} else {
|
|
2567
|
-
y.push(C.field, r);
|
|
2568
|
-
}
|
|
2569
|
-
} else {
|
|
2570
|
-
r = Object.keys(C);
|
|
2571
|
-
x = 0;
|
|
2572
|
-
for (var E = void 0, T = void 0; x < r.length; x++) {
|
|
2573
|
-
if (E = r[x], T = C[E], T.constructor === Array) {
|
|
2574
|
-
for (var G = 0; G < T.length; G++) {
|
|
2575
|
-
y.push(E, T[G]);
|
|
2576
|
-
}
|
|
2577
|
-
} else {
|
|
2578
|
-
y.push(E, T);
|
|
2579
|
-
}
|
|
2580
|
-
}
|
|
2581
|
-
}
|
|
2582
|
-
}
|
|
2583
|
-
if (!y.length) {
|
|
2584
|
-
throw Error("Your tag definition within the search options is probably wrong. No valid tags found.");
|
|
2585
|
-
}
|
|
2586
|
-
n = y;
|
|
2587
|
-
if (!a) {
|
|
2588
|
-
f = [];
|
|
2589
|
-
if (y.length) {
|
|
2590
|
-
for (n = 0; n < y.length; n += 2) {
|
|
2591
|
-
d = void 0;
|
|
2592
|
-
if (this.db) {
|
|
2593
|
-
d = this.index.get(y[n]);
|
|
2594
|
-
if (!d) {
|
|
2595
|
-
console.warn("Tag '" + y[n] + ":" + y[n + 1] + "' will be skipped because there is no field '" + y[n] + "'.");
|
|
2596
|
-
continue;
|
|
2597
|
-
}
|
|
2598
|
-
f.push(d = d.db.tag(y[n + 1], b, A, v));
|
|
2599
|
-
} else {
|
|
2600
|
-
d = Eb.call(this, y[n], y[n + 1], b, A, v);
|
|
2601
|
-
}
|
|
2602
|
-
e.push(h ? {field:y[n], tag:y[n + 1], result:d} : [d]);
|
|
2603
|
-
}
|
|
2604
|
-
}
|
|
2605
|
-
if (f.length) {
|
|
2606
|
-
var O = this;
|
|
2607
|
-
return Promise.all(f).then(function(M) {
|
|
2608
|
-
for (var K = 0; K < M.length; K++) {
|
|
2609
|
-
h ? e[K].result = M[K] : e[K] = M[K];
|
|
2610
|
-
}
|
|
2611
|
-
return h ? e : new Z(e.length > 1 ? zb(e, 1, 0, 0, q, m) : e[0], O);
|
|
2612
|
-
});
|
|
2613
|
-
}
|
|
2614
|
-
return h ? e : new Z(e.length > 1 ? zb(e, 1, 0, 0, q, m) : e[0], this);
|
|
2615
|
-
}
|
|
2616
|
-
}
|
|
2617
|
-
if (!h && !k) {
|
|
2618
|
-
if (p = p || this.field) {
|
|
2619
|
-
U(p) ? k = p : (p.constructor === Array && p.length === 1 && (p = p[0]), k = p.field || p.index);
|
|
2620
|
-
}
|
|
2621
|
-
if (!k) {
|
|
2622
|
-
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.");
|
|
2623
|
-
}
|
|
2624
|
-
}
|
|
2625
|
-
p && p.constructor !== Array && (p = [p]);
|
|
2626
|
-
}
|
|
2627
|
-
p || (p = this.field);
|
|
2628
|
-
y = (this.worker || this.db) && !d && [];
|
|
2629
|
-
B = 0;
|
|
2630
|
-
for (x = C = r = void 0; B < p.length; B++) {
|
|
2631
|
-
if (C = p[B], !this.db || !this.tag || this.B[B]) {
|
|
2632
|
-
r = void 0;
|
|
2633
|
-
U(C) || (r = C, C = r.field, a = r.query || a, b = Ba(r.limit, b), A = Ba(r.offset, A), q = Ba(r.suggest, q), u = h && this.store && Ba(r.highlight, u), v = !!u || h && this.store && Ba(r.enrich, v), t = Ba(r.cache, t));
|
|
2634
|
-
if (d) {
|
|
2635
|
-
r = d[B];
|
|
2636
|
-
} else {
|
|
2637
|
-
x = r || c || {};
|
|
2638
|
-
E = x.enrich;
|
|
2639
|
-
r = this.index.get(C);
|
|
2640
|
-
if (n) {
|
|
2641
|
-
if (this.db) {
|
|
2642
|
-
x.tag = n;
|
|
2643
|
-
x.field = p;
|
|
2644
|
-
var N = r.db.support_tag_search;
|
|
2645
|
-
}
|
|
2646
|
-
!N && E && (x.enrich = !1);
|
|
2647
|
-
N || (x.limit = 0, x.offset = 0);
|
|
2648
|
-
}
|
|
2649
|
-
r = t ? r.searchCache(a, n && !N ? 0 : b, x) : r.search(a, n && !N ? 0 : b, x);
|
|
2650
|
-
n && !N && (x.limit = b, x.offset = A);
|
|
2651
|
-
E && (x.enrich = E);
|
|
2652
|
-
if (y) {
|
|
2653
|
-
y[B] = r;
|
|
2654
|
-
continue;
|
|
2655
|
-
}
|
|
2656
|
-
}
|
|
2657
|
-
x = (r = r.result || r) && r.length;
|
|
2658
|
-
if (n && x) {
|
|
2659
|
-
E = [];
|
|
2660
|
-
T = 0;
|
|
2661
|
-
if (this.db && d) {
|
|
2662
|
-
if (!N) {
|
|
2663
|
-
for (G = p.length; G < d.length; G++) {
|
|
2664
|
-
var F = d[G];
|
|
2665
|
-
if (F && F.length) {
|
|
2666
|
-
T++, E.push(F);
|
|
2667
|
-
} else if (!q) {
|
|
2668
|
-
return h ? e : new Z(e, this);
|
|
2669
|
-
}
|
|
2670
|
-
}
|
|
2671
|
-
}
|
|
2672
|
-
} else {
|
|
2673
|
-
G = 0;
|
|
2674
|
-
for (var R = F = void 0; G < n.length; G += 2) {
|
|
2675
|
-
F = this.tag.get(n[G]);
|
|
2676
|
-
if (!F) {
|
|
2677
|
-
if (console.warn("Tag '" + n[G] + ":" + n[G + 1] + "' will be skipped because there is no field '" + n[G] + "'."), q) {
|
|
2678
|
-
continue;
|
|
2679
|
-
} else {
|
|
2680
|
-
return h ? e : new Z(e, this);
|
|
2681
|
-
}
|
|
2682
|
-
}
|
|
2683
|
-
if (R = (F = F && F.get(n[G + 1])) && F.length) {
|
|
2684
|
-
T++, E.push(F);
|
|
2685
|
-
} else if (!q) {
|
|
2686
|
-
return h ? e : new Z(e, this);
|
|
2687
|
-
}
|
|
2688
|
-
}
|
|
2689
|
-
}
|
|
2690
|
-
if (T) {
|
|
2691
|
-
r = Db(r, E, b, A, h);
|
|
2692
|
-
x = r.length;
|
|
2693
|
-
if (!x && !q) {
|
|
2694
|
-
return h ? r : new Z(r, this);
|
|
2695
|
-
}
|
|
2696
|
-
T--;
|
|
2697
|
-
}
|
|
2698
|
-
}
|
|
2699
|
-
if (x) {
|
|
2700
|
-
f[g] = C, e.push(r), g++;
|
|
2701
|
-
} else if (p.length === 1) {
|
|
2702
|
-
return h ? e : new Z(e, this);
|
|
2703
|
-
}
|
|
2704
|
-
}
|
|
2705
|
-
}
|
|
2706
|
-
if (y) {
|
|
2707
|
-
if (this.db && n && n.length && !N) {
|
|
2708
|
-
for (v = 0; v < n.length; v += 2) {
|
|
2709
|
-
f = this.index.get(n[v]);
|
|
2710
|
-
if (!f) {
|
|
2711
|
-
if (console.warn("Tag '" + n[v] + ":" + n[v + 1] + "' was not found because there is no field '" + n[v] + "'."), q) {
|
|
2712
|
-
continue;
|
|
2713
|
-
} else {
|
|
2714
|
-
return h ? e : new Z(e, this);
|
|
2715
|
-
}
|
|
2716
|
-
}
|
|
2717
|
-
y.push(f.db.tag(n[v + 1], b, A, !1));
|
|
2718
|
-
}
|
|
2719
|
-
}
|
|
2720
|
-
var W = this;
|
|
2721
|
-
return Promise.all(y).then(function(M) {
|
|
2722
|
-
c && (c.resolve = h);
|
|
2723
|
-
M.length && (M = W.search(a, b, c, M));
|
|
2724
|
-
return M;
|
|
2725
|
-
});
|
|
2726
|
-
}
|
|
2727
|
-
if (!g) {
|
|
2728
|
-
return h ? e : new Z(e, this);
|
|
2729
|
-
}
|
|
2730
|
-
if (k && (!v || !this.store)) {
|
|
2731
|
-
return e = e[0], h ? e : new Z(e, this);
|
|
2732
|
-
}
|
|
2733
|
-
y = [];
|
|
2734
|
-
for (A = 0; A < f.length; A++) {
|
|
2735
|
-
n = e[A];
|
|
2736
|
-
v && n.length && typeof n[0].doc === "undefined" && (this.db ? y.push(n = this.index.get(this.field[0]).db.enrich(n)) : n = sb.call(this, n));
|
|
2737
|
-
if (k) {
|
|
2738
|
-
return h ? u ? Cb(a, n, this.index, k, u) : n : new Z(n, this);
|
|
2739
|
-
}
|
|
2740
|
-
e[A] = {field:f[A], result:n};
|
|
2741
|
-
}
|
|
2742
|
-
if (v && this.db && y.length) {
|
|
2743
|
-
var P = this;
|
|
2744
|
-
return Promise.all(y).then(function(M) {
|
|
2745
|
-
for (var K = 0; K < M.length; K++) {
|
|
2746
|
-
e[K].result = M[K];
|
|
2747
|
-
}
|
|
2748
|
-
u && (e = Cb(a, e, P.index, k, u));
|
|
2749
|
-
return l ? Fb(e) : e;
|
|
2750
|
-
});
|
|
2751
|
-
}
|
|
2752
|
-
u && (e = Cb(a, e, this.index, k, u));
|
|
2753
|
-
return l ? Fb(e) : e;
|
|
2754
|
-
};
|
|
2755
|
-
function Fb(a) {
|
|
2756
|
-
for (var b = [], c = S(), d = S(), e = 0, f, g, h = void 0, k, l, m; e < a.length; e++) {
|
|
2757
|
-
f = a[e];
|
|
2758
|
-
g = f.field;
|
|
2759
|
-
f = f.result;
|
|
2760
|
-
for (var p = 0; p < f.length; p++) {
|
|
2761
|
-
if (k = f[p], typeof k !== "object" ? k = {id:h = k} : h = k.id, (l = c[h]) ? l.push(g) : (k.field = c[h] = [g], b.push(k)), m = k.highlight) {
|
|
2762
|
-
l = d[h], l || (d[h] = l = {}, k.highlight = l), l[g] = m;
|
|
2763
|
-
}
|
|
2764
|
-
}
|
|
2765
|
-
}
|
|
2766
|
-
return b;
|
|
2767
|
-
}
|
|
2768
|
-
function Eb(a, b, c, d, e) {
|
|
2769
|
-
a = this.tag.get(a);
|
|
2770
|
-
if (!a) {
|
|
2771
|
-
return [];
|
|
2772
|
-
}
|
|
2773
|
-
a = a.get(b);
|
|
2774
|
-
if (!a) {
|
|
2775
|
-
return [];
|
|
2776
|
-
}
|
|
2777
|
-
b = a.length - d;
|
|
2778
|
-
if (b > 0) {
|
|
2779
|
-
if (c && b > c || d) {
|
|
2780
|
-
a = a.slice(d, d + c);
|
|
2781
|
-
}
|
|
2782
|
-
e && (a = sb.call(this, a));
|
|
2783
|
-
}
|
|
2784
|
-
return a;
|
|
2785
|
-
}
|
|
2786
|
-
function sb(a) {
|
|
2787
|
-
if (!this || !this.store) {
|
|
2788
|
-
return a;
|
|
2789
|
-
}
|
|
2790
|
-
if (this.db) {
|
|
2791
|
-
return this.index.get(this.field[0]).db.enrich(a);
|
|
2792
|
-
}
|
|
2793
|
-
for (var b = Array(a.length), c = 0, d; c < a.length; c++) {
|
|
2794
|
-
d = a[c], b[c] = {id:d, doc:this.store.get(d)};
|
|
2795
|
-
}
|
|
2796
|
-
return b;
|
|
2797
|
-
}
|
|
2798
|
-
;function ob(a) {
|
|
2799
|
-
if (!this || this.constructor !== ob) {
|
|
2800
|
-
return new ob(a);
|
|
2801
|
-
}
|
|
2802
|
-
var b = a.document || a.doc || a, c, d;
|
|
2803
|
-
this.B = [];
|
|
2804
|
-
this.field = [];
|
|
2805
|
-
this.C = [];
|
|
2806
|
-
this.key = (c = b.key || b.id) && Gb(c, this.C) || "id";
|
|
2807
|
-
(d = a.keystore || 0) && (this.keystore = d);
|
|
2808
|
-
this.fastupdate = !!a.fastupdate;
|
|
2809
|
-
this.reg = !this.fastupdate || a.worker || a.db ? d ? new Y(d) : new Set() : d ? new X(d) : new Map();
|
|
2810
|
-
this.h = (c = b.store || null) && c && c !== !0 && [];
|
|
2811
|
-
this.store = c ? d ? new X(d) : new Map() : null;
|
|
2812
|
-
this.cache = (c = a.cache || null) && new Ma(c);
|
|
2813
|
-
a.cache = !1;
|
|
2814
|
-
this.worker = a.worker || !1;
|
|
2815
|
-
this.priority = a.priority || 4;
|
|
2816
|
-
this.index = Hb.call(this, a, b);
|
|
2817
|
-
this.tag = null;
|
|
2818
|
-
if (c = b.tag) {
|
|
2819
|
-
if (typeof c === "string" && (c = [c]), c.length) {
|
|
2820
|
-
this.tag = new Map();
|
|
2821
|
-
this.A = [];
|
|
2822
|
-
this.D = [];
|
|
2823
|
-
b = 0;
|
|
2824
|
-
for (var e = d = void 0; b < c.length; b++) {
|
|
2825
|
-
d = c[b];
|
|
2826
|
-
e = d.field || d;
|
|
2827
|
-
if (!e) {
|
|
2828
|
-
throw Error("The tag field from the document descriptor is undefined.");
|
|
2829
|
-
}
|
|
2830
|
-
d.custom ? this.A[b] = d.custom : (this.A[b] = Gb(e, this.C), d.filter && (typeof this.A[b] === "string" && (this.A[b] = new String(this.A[b])), this.A[b].M = d.filter));
|
|
2831
|
-
this.D[b] = e;
|
|
2832
|
-
this.tag.set(e, new Map());
|
|
2833
|
-
}
|
|
2834
|
-
}
|
|
2835
|
-
}
|
|
2836
|
-
if (this.worker) {
|
|
2837
|
-
this.fastupdate = !1;
|
|
2838
|
-
a = [];
|
|
2839
|
-
c = D(this.index.values());
|
|
2840
|
-
for (b = c.next(); !b.done; b = c.next()) {
|
|
2841
|
-
b = b.value, b.then && a.push(b);
|
|
2842
|
-
}
|
|
2843
|
-
if (a.length) {
|
|
2844
|
-
var f = this;
|
|
2845
|
-
return Promise.all(a).then(function(g) {
|
|
2846
|
-
for (var h = 0, k = D(f.index.entries()), l = k.next(); !l.done; l = k.next()) {
|
|
2847
|
-
var m = l.value;
|
|
2848
|
-
l = m[0];
|
|
2849
|
-
m = m[1];
|
|
2850
|
-
m.then && (m = g[h], f.index.set(l, m), h++);
|
|
2851
|
-
}
|
|
2852
|
-
return f;
|
|
2853
|
-
});
|
|
2854
|
-
}
|
|
2855
|
-
} else {
|
|
2856
|
-
a.db && (this.fastupdate = !1, this.mount(a.db));
|
|
2857
|
-
}
|
|
2858
|
-
}
|
|
2859
|
-
w = ob.prototype;
|
|
2860
|
-
w.mount = function(a) {
|
|
2861
|
-
if (this.worker) {
|
|
2862
|
-
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).");
|
|
2863
|
-
}
|
|
2864
|
-
var b = this.field;
|
|
2865
|
-
if (this.tag) {
|
|
2866
|
-
for (var c = 0, d = void 0; c < this.D.length; c++) {
|
|
2867
|
-
d = this.D[c];
|
|
2868
|
-
var e = void 0;
|
|
2869
|
-
this.index.set(d, e = new db({}, this.reg));
|
|
2870
|
-
b === this.field && (b = b.slice(0));
|
|
2871
|
-
b.push(d);
|
|
2872
|
-
e.tag = this.tag.get(d);
|
|
2873
|
-
}
|
|
2874
|
-
}
|
|
2875
|
-
c = [];
|
|
2876
|
-
d = {db:a.db, type:a.type, fastupdate:a.fastupdate};
|
|
2877
|
-
e = 0;
|
|
2878
|
-
var f = void 0;
|
|
2879
|
-
for (f = void 0; e < b.length; e++) {
|
|
2880
|
-
d.field = f = b[e];
|
|
2881
|
-
f = this.index.get(f);
|
|
2882
|
-
var g = new a.constructor(a.id, d);
|
|
2883
|
-
g.id = a.id;
|
|
2884
|
-
c[e] = g.mount(f);
|
|
2885
|
-
f.document = !0;
|
|
2886
|
-
e ? f.bypass = !0 : f.store = this.store;
|
|
2887
|
-
}
|
|
2888
|
-
var h = this;
|
|
2889
|
-
return this.db = Promise.all(c).then(function() {
|
|
2890
|
-
h.db = !0;
|
|
2891
|
-
});
|
|
2892
|
-
};
|
|
2893
|
-
w.commit = function() {
|
|
2894
|
-
var a = this, b, c, d, e;
|
|
2895
|
-
return wa(function(f) {
|
|
2896
|
-
if (f.h == 1) {
|
|
2897
|
-
b = [];
|
|
2898
|
-
c = D(a.index.values());
|
|
2899
|
-
for (d = c.next(); !d.done; d = c.next()) {
|
|
2900
|
-
e = d.value, b.push(e.commit());
|
|
2901
|
-
}
|
|
2902
|
-
return L(f, Promise.all(b), 2);
|
|
2903
|
-
}
|
|
2904
|
-
a.reg.clear();
|
|
2905
|
-
f.h = 0;
|
|
2906
|
-
});
|
|
2907
|
-
};
|
|
2908
|
-
w.destroy = function() {
|
|
2909
|
-
for (var a = [], b = D(this.index.values()), c = b.next(); !c.done; c = b.next()) {
|
|
2910
|
-
a.push(c.value.destroy());
|
|
2911
|
-
}
|
|
2912
|
-
return Promise.all(a);
|
|
2913
|
-
};
|
|
2914
|
-
function Hb(a, b) {
|
|
2915
|
-
var c = new Map(), d = b.index || b.field || b;
|
|
2916
|
-
U(d) && (d = [d]);
|
|
2917
|
-
for (var e = 0, f, g = void 0; e < d.length; e++) {
|
|
2918
|
-
f = d[e];
|
|
2919
|
-
U(f) || (g = f, f = f.field);
|
|
2920
|
-
g = Ca(g) ? Object.assign({}, a, g) : a;
|
|
2921
|
-
if (this.worker) {
|
|
2922
|
-
var h = (h = g.encoder) && h.encode ? h : new Ja(typeof h === "string" ? Ta[h] : h || {});
|
|
2923
|
-
h = new lb(g, h);
|
|
2924
|
-
c.set(f, h);
|
|
2925
|
-
}
|
|
2926
|
-
this.worker || c.set(f, new db(g, this.reg));
|
|
2927
|
-
g.custom ? this.B[e] = g.custom : (this.B[e] = Gb(f, this.C), g.filter && (typeof this.B[e] === "string" && (this.B[e] = new String(this.B[e])), this.B[e].M = g.filter));
|
|
2928
|
-
this.field[e] = f;
|
|
2929
|
-
}
|
|
2930
|
-
if (this.h) {
|
|
2931
|
-
for (a = b.store, U(a) && (a = [a]), b = 0; b < a.length; b++) {
|
|
2932
|
-
d = a[b], e = d.field || d, d.custom ? (this.h[b] = d.custom, d.custom.ia = e) : (this.h[b] = Gb(e, this.C), d.filter && (typeof this.h[b] === "string" && (this.h[b] = new String(this.h[b])), this.h[b].M = d.filter));
|
|
2933
|
-
}
|
|
2934
|
-
}
|
|
2935
|
-
return c;
|
|
2936
|
-
}
|
|
2937
|
-
function Gb(a, b) {
|
|
2938
|
-
for (var c = a.split(":"), d = 0, e = 0; e < c.length; e++) {
|
|
2939
|
-
a = c[e], a[a.length - 1] === "]" && (a = a.substring(0, a.length - 2)) && (b[d] = !0), a && (c[d++] = a);
|
|
2940
|
-
}
|
|
2941
|
-
d < c.length && (c.length = d);
|
|
2942
|
-
return d > 1 ? c : c[0];
|
|
2943
|
-
}
|
|
2944
|
-
w.append = function(a, b) {
|
|
2945
|
-
return this.add(a, b, !0);
|
|
2946
|
-
};
|
|
2947
|
-
w.update = function(a, b) {
|
|
2948
|
-
return this.remove(a).add(a, b);
|
|
2949
|
-
};
|
|
2950
|
-
w.remove = function(a) {
|
|
2951
|
-
Ca(a) && (a = Da(a, this.key));
|
|
2952
|
-
for (var b = D(this.index.values()), c = b.next(); !c.done; c = b.next()) {
|
|
2953
|
-
c.value.remove(a, !0);
|
|
2954
|
-
}
|
|
2955
|
-
if (this.reg.has(a)) {
|
|
2956
|
-
if (this.tag && !this.fastupdate) {
|
|
2957
|
-
for (b = D(this.tag.values()), c = b.next(); !c.done; c = b.next()) {
|
|
2958
|
-
c = c.value;
|
|
2959
|
-
for (var d = D(c), e = d.next(); !e.done; e = d.next()) {
|
|
2960
|
-
var f = e.value;
|
|
2961
|
-
e = f[0];
|
|
2962
|
-
f = f[1];
|
|
2963
|
-
var g = f.indexOf(a);
|
|
2964
|
-
g > -1 && (f.length > 1 ? f.splice(g, 1) : c.delete(e));
|
|
2965
|
-
}
|
|
2966
|
-
}
|
|
2967
|
-
}
|
|
2968
|
-
this.store && this.store.delete(a);
|
|
2969
|
-
this.reg.delete(a);
|
|
2970
|
-
}
|
|
2971
|
-
this.cache && this.cache.remove(a);
|
|
2972
|
-
return this;
|
|
2973
|
-
};
|
|
2974
|
-
w.clear = function() {
|
|
2975
|
-
for (var a = [], b = D(this.index.values()), c = b.next(); !c.done; c = b.next()) {
|
|
2976
|
-
c = c.value.clear(), c.then && a.push(c);
|
|
2977
|
-
}
|
|
2978
|
-
if (this.tag) {
|
|
2979
|
-
for (b = D(this.tag.values()), c = b.next(); !c.done; c = b.next()) {
|
|
2980
|
-
c.value.clear();
|
|
2981
|
-
}
|
|
2982
|
-
}
|
|
2983
|
-
this.store && this.store.clear();
|
|
2984
|
-
this.cache && this.cache.clear();
|
|
2985
|
-
return a.length ? Promise.all(a) : this;
|
|
2986
|
-
};
|
|
2987
|
-
w.contain = function(a) {
|
|
2988
|
-
return this.db ? this.index.get(this.field[0]).db.has(a) : this.reg.has(a);
|
|
2989
|
-
};
|
|
2990
|
-
w.cleanup = function() {
|
|
2991
|
-
for (var a = D(this.index.values()), b = a.next(); !b.done; b = a.next()) {
|
|
2992
|
-
b.value.cleanup();
|
|
2993
|
-
}
|
|
2994
|
-
return this;
|
|
2995
|
-
};
|
|
2996
|
-
w.get = function(a) {
|
|
2997
|
-
return this.db ? this.index.get(this.field[0]).db.enrich(a).then(function(b) {
|
|
2998
|
-
return b[0] && b[0].doc || null;
|
|
2999
|
-
}) : this.store.get(a) || null;
|
|
3000
|
-
};
|
|
3001
|
-
w.set = function(a, b) {
|
|
3002
|
-
typeof a === "object" && (b = a, a = Da(b, this.key));
|
|
3003
|
-
this.store.set(a, b);
|
|
3004
|
-
return this;
|
|
3005
|
-
};
|
|
3006
|
-
w.searchCache = La;
|
|
3007
|
-
w.export = Ib;
|
|
3008
|
-
w.import = Jb;
|
|
3009
|
-
eb(ob.prototype);
|
|
3010
|
-
function Kb(a, b) {
|
|
3011
|
-
b = b === void 0 ? 0 : b;
|
|
3012
|
-
var c = [], d = [];
|
|
3013
|
-
b && (b = 250000 / b * 5000 | 0);
|
|
3014
|
-
a = D(a.entries());
|
|
3015
|
-
for (var e = a.next(); !e.done; e = a.next()) {
|
|
3016
|
-
d.push(e.value), d.length === b && (c.push(d), d = []);
|
|
3017
|
-
}
|
|
3018
|
-
d.length && c.push(d);
|
|
3019
|
-
return c;
|
|
3020
|
-
}
|
|
3021
|
-
function Lb(a, b) {
|
|
3022
|
-
b || (b = new Map());
|
|
3023
|
-
for (var c = 0, d; c < a.length; c++) {
|
|
3024
|
-
d = a[c], b.set(d[0], d[1]);
|
|
3025
|
-
}
|
|
3026
|
-
return b;
|
|
3027
|
-
}
|
|
3028
|
-
function Mb(a, b) {
|
|
3029
|
-
b = b === void 0 ? 0 : b;
|
|
3030
|
-
var c = [], d = [];
|
|
3031
|
-
b && (b = 250000 / b * 1000 | 0);
|
|
3032
|
-
a = D(a.entries());
|
|
3033
|
-
for (var e = a.next(); !e.done; e = a.next()) {
|
|
3034
|
-
e = e.value, d.push([e[0], Kb(e[1])[0] || []]), d.length === b && (c.push(d), d = []);
|
|
3035
|
-
}
|
|
3036
|
-
d.length && c.push(d);
|
|
3037
|
-
return c;
|
|
3038
|
-
}
|
|
3039
|
-
function Nb(a, b) {
|
|
3040
|
-
b || (b = new Map());
|
|
3041
|
-
for (var c = 0, d, e; c < a.length; c++) {
|
|
3042
|
-
d = a[c], e = b.get(d[0]), b.set(d[0], Lb(d[1], e));
|
|
3043
|
-
}
|
|
3044
|
-
return b;
|
|
3045
|
-
}
|
|
3046
|
-
function Ob(a) {
|
|
3047
|
-
var b = [], c = [];
|
|
3048
|
-
a = D(a.keys());
|
|
3049
|
-
for (var d = a.next(); !d.done; d = a.next()) {
|
|
3050
|
-
c.push(d.value), c.length === 250000 && (b.push(c), c = []);
|
|
3051
|
-
}
|
|
3052
|
-
c.length && b.push(c);
|
|
3053
|
-
return b;
|
|
3054
|
-
}
|
|
3055
|
-
function Pb(a, b) {
|
|
3056
|
-
b || (b = new Set());
|
|
3057
|
-
for (var c = 0; c < a.length; c++) {
|
|
3058
|
-
b.add(a[c]);
|
|
3059
|
-
}
|
|
3060
|
-
return b;
|
|
3061
|
-
}
|
|
3062
|
-
function Qb(a, b, c, d, e, f, g) {
|
|
3063
|
-
g = g === void 0 ? 0 : g;
|
|
3064
|
-
var h = d && d.constructor === Array, k = h ? d.shift() : d;
|
|
3065
|
-
if (!k) {
|
|
3066
|
-
return this.export(a, b, e, f + 1);
|
|
3067
|
-
}
|
|
3068
|
-
if ((k = a((b ? b + "." : "") + (g + 1) + "." + c, JSON.stringify(k))) && k.then) {
|
|
3069
|
-
var l = this;
|
|
3070
|
-
return k.then(function() {
|
|
3071
|
-
return Qb.call(l, a, b, c, h ? d : null, e, f, g + 1);
|
|
3072
|
-
});
|
|
3073
|
-
}
|
|
3074
|
-
return Qb.call(this, a, b, c, h ? d : null, e, f, g + 1);
|
|
3075
|
-
}
|
|
3076
|
-
function Ib(a, b, c, d) {
|
|
3077
|
-
c = c === void 0 ? 0 : c;
|
|
3078
|
-
d = d === void 0 ? 0 : d;
|
|
3079
|
-
if (c < this.field.length) {
|
|
3080
|
-
var e = this.field[c];
|
|
3081
|
-
if ((b = this.index.get(e).export(a, e, c, d = 1)) && b.then) {
|
|
3082
|
-
var f = this;
|
|
3083
|
-
return b.then(function() {
|
|
3084
|
-
return f.export(a, e, c + 1);
|
|
3085
|
-
});
|
|
3086
|
-
}
|
|
3087
|
-
return this.export(a, e, c + 1);
|
|
3088
|
-
}
|
|
3089
|
-
switch(d) {
|
|
3090
|
-
case 0:
|
|
3091
|
-
var g = "reg";
|
|
3092
|
-
var h = Ob(this.reg);
|
|
3093
|
-
b = null;
|
|
3094
|
-
break;
|
|
3095
|
-
case 1:
|
|
3096
|
-
g = "tag";
|
|
3097
|
-
h = this.tag && Mb(this.tag, this.reg.size);
|
|
3098
|
-
b = null;
|
|
3099
|
-
break;
|
|
3100
|
-
case 2:
|
|
3101
|
-
g = "doc";
|
|
3102
|
-
h = this.store && Kb(this.store);
|
|
3103
|
-
b = null;
|
|
3104
|
-
break;
|
|
3105
|
-
default:
|
|
3106
|
-
return;
|
|
3107
|
-
}
|
|
3108
|
-
return Qb.call(this, a, b, g, h || null, c, d);
|
|
3109
|
-
}
|
|
3110
|
-
function Jb(a, b) {
|
|
3111
|
-
var c = a.split(".");
|
|
3112
|
-
c[c.length - 1] === "json" && c.pop();
|
|
3113
|
-
var d = c.length > 2 ? c[0] : "";
|
|
3114
|
-
c = c.length > 2 ? c[2] : c[1];
|
|
3115
|
-
if (this.worker && d) {
|
|
3116
|
-
return this.index.get(d).import(a);
|
|
3117
|
-
}
|
|
3118
|
-
if (b) {
|
|
3119
|
-
typeof b === "string" && (b = JSON.parse(b));
|
|
3120
|
-
if (d) {
|
|
3121
|
-
return this.index.get(d).import(c, b);
|
|
3122
|
-
}
|
|
3123
|
-
switch(c) {
|
|
3124
|
-
case "reg":
|
|
3125
|
-
this.fastupdate = !1;
|
|
3126
|
-
this.reg = Pb(b, this.reg);
|
|
3127
|
-
for (b = 0; b < this.field.length; b++) {
|
|
3128
|
-
d = this.index.get(this.field[b]), d.fastupdate = !1, d.reg = this.reg;
|
|
3129
|
-
}
|
|
3130
|
-
if (this.worker) {
|
|
3131
|
-
b = [];
|
|
3132
|
-
d = D(this.index.values());
|
|
3133
|
-
for (c = d.next(); !c.done; c = d.next()) {
|
|
3134
|
-
b.push(c.value.import(a));
|
|
3135
|
-
}
|
|
3136
|
-
return Promise.all(b);
|
|
3137
|
-
}
|
|
3138
|
-
break;
|
|
3139
|
-
case "tag":
|
|
3140
|
-
this.tag = Nb(b, this.tag);
|
|
3141
|
-
break;
|
|
3142
|
-
case "doc":
|
|
3143
|
-
this.store = Lb(b, this.store);
|
|
3144
|
-
}
|
|
3145
|
-
}
|
|
3146
|
-
}
|
|
3147
|
-
function Rb(a, b) {
|
|
3148
|
-
var c = "";
|
|
3149
|
-
a = D(a.entries());
|
|
3150
|
-
for (var d = a.next(); !d.done; d = a.next()) {
|
|
3151
|
-
var e = d.value;
|
|
3152
|
-
d = e[0];
|
|
3153
|
-
e = e[1];
|
|
3154
|
-
for (var f = "", g = 0, h; g < e.length; g++) {
|
|
3155
|
-
h = e[g] || [""];
|
|
3156
|
-
for (var k = "", l = 0; l < h.length; l++) {
|
|
3157
|
-
k += (k ? "," : "") + (b === "string" ? '"' + h[l] + '"' : h[l]);
|
|
3158
|
-
}
|
|
3159
|
-
k = "[" + k + "]";
|
|
3160
|
-
f += (f ? "," : "") + k;
|
|
3161
|
-
}
|
|
3162
|
-
f = '["' + d + '",[' + f + "]]";
|
|
3163
|
-
c += (c ? "," : "") + f;
|
|
3164
|
-
}
|
|
3165
|
-
return c;
|
|
3166
|
-
}
|
|
3167
|
-
;db.prototype.remove = function(a, b) {
|
|
3168
|
-
var c = this.reg.size && (this.fastupdate ? this.reg.get(a) : this.reg.has(a));
|
|
3169
|
-
if (c) {
|
|
3170
|
-
if (this.fastupdate) {
|
|
3171
|
-
for (var d = 0, e = void 0, f = void 0; d < c.length; d++) {
|
|
3172
|
-
if ((e = c[d]) && (f = e.length)) {
|
|
3173
|
-
if (e[f - 1] === a) {
|
|
3174
|
-
e.pop();
|
|
3175
|
-
} else {
|
|
3176
|
-
var g = e.indexOf(a);
|
|
3177
|
-
g >= 0 && e.splice(g, 1);
|
|
3178
|
-
}
|
|
3179
|
-
}
|
|
3180
|
-
}
|
|
3181
|
-
} else {
|
|
3182
|
-
Sb(this.map, a), this.depth && Sb(this.ctx, a);
|
|
3183
|
-
}
|
|
3184
|
-
b || this.reg.delete(a);
|
|
3185
|
-
}
|
|
3186
|
-
this.db && (this.commit_task.push({del:a}), this.$ && Tb(this));
|
|
3187
|
-
this.cache && this.cache.remove(a);
|
|
3188
|
-
return this;
|
|
3189
|
-
};
|
|
3190
|
-
function Sb(a, b) {
|
|
3191
|
-
var c = 0, d = typeof b === "undefined";
|
|
3192
|
-
if (a.constructor === Array) {
|
|
3193
|
-
for (var e = 0, f = void 0, g, h = void 0; e < a.length; e++) {
|
|
3194
|
-
if ((f = a[e]) && f.length) {
|
|
3195
|
-
if (d) {
|
|
3196
|
-
return 1;
|
|
3197
|
-
}
|
|
3198
|
-
g = f.indexOf(b);
|
|
3199
|
-
if (g >= 0) {
|
|
3200
|
-
if (f.length > 1) {
|
|
3201
|
-
return f.splice(g, 1), 1;
|
|
3202
|
-
}
|
|
3203
|
-
delete a[e];
|
|
3204
|
-
if (c) {
|
|
3205
|
-
return 1;
|
|
3206
|
-
}
|
|
3207
|
-
h = 1;
|
|
3208
|
-
} else {
|
|
3209
|
-
if (h) {
|
|
3210
|
-
return 1;
|
|
3211
|
-
}
|
|
3212
|
-
c++;
|
|
3213
|
-
}
|
|
3214
|
-
}
|
|
3215
|
-
}
|
|
3216
|
-
} else {
|
|
3217
|
-
for (d = D(a.entries()), e = d.next(); !e.done; e = d.next()) {
|
|
3218
|
-
e = e.value, f = e[0], Sb(e[1], b) ? c++ : a.delete(f);
|
|
3219
|
-
}
|
|
3220
|
-
}
|
|
3221
|
-
return c;
|
|
3222
|
-
}
|
|
3223
|
-
;var Ub = {memory:{resolution:1}, performance:{resolution:3, fastupdate:!0, context:{depth:1, resolution:1}}, match:{tokenize:"forward"}, score:{resolution:9, context:{depth:2, resolution:3}}};
|
|
3224
|
-
db.prototype.add = function(a, b, c, d) {
|
|
3225
|
-
if (b && (a || a === 0)) {
|
|
3226
|
-
if (!d && !c && this.reg.has(a)) {
|
|
3227
|
-
return this.update(a, b);
|
|
3228
|
-
}
|
|
3229
|
-
d = this.depth;
|
|
3230
|
-
b = this.encoder.encode(b, !d);
|
|
3231
|
-
var e = b.length;
|
|
3232
|
-
if (e) {
|
|
3233
|
-
for (var f = S(), g = S(), h = this.resolution, k = 0; k < e; k++) {
|
|
3234
|
-
var l = b[this.rtl ? e - 1 - k : k], m = l.length;
|
|
3235
|
-
if (m && (d || !g[l])) {
|
|
3236
|
-
var p = this.score ? this.score(b, l, k, null, 0) : Vb(h, e, k), n = "";
|
|
3237
|
-
switch(this.tokenize) {
|
|
3238
|
-
case "tolerant":
|
|
3239
|
-
Wb(this, g, l, p, a, c);
|
|
3240
|
-
if (m > 2) {
|
|
3241
|
-
for (var q = 1, t, u; q < m - 1; q++) {
|
|
3242
|
-
n = l.charAt(q), t = l.charAt(q + 1), t = l.substring(0, q) + t, u = l.substring(q + 2), n = t + n + u, Wb(this, g, n, p, a, c), n = t + u, Wb(this, g, n, p, a, c);
|
|
3243
|
-
}
|
|
3244
|
-
Wb(this, g, l.substring(0, l.length - 1), p, a, c);
|
|
3245
|
-
}
|
|
3246
|
-
break;
|
|
3247
|
-
case "full":
|
|
3248
|
-
if (m > 2) {
|
|
3249
|
-
for (p = 0; p < m; p++) {
|
|
3250
|
-
for (q = m; q > p; q--) {
|
|
3251
|
-
n = l.substring(p, q), t = this.rtl ? m - 1 - p : p, t = this.score ? this.score(b, l, k, n, t) : Vb(h, e, k, m, t), Wb(this, g, n, t, a, c);
|
|
3252
|
-
}
|
|
3253
|
-
}
|
|
3254
|
-
break;
|
|
3255
|
-
}
|
|
3256
|
-
case "bidirectional":
|
|
3257
|
-
case "reverse":
|
|
3258
|
-
if (m > 1) {
|
|
3259
|
-
for (q = m - 1; q > 0; q--) {
|
|
3260
|
-
n = l[this.rtl ? m - 1 - q : q] + n, t = this.score ? this.score(b, l, k, n, q) : Vb(h, e, k, m, q), Wb(this, g, n, t, a, c);
|
|
3261
|
-
}
|
|
3262
|
-
n = "";
|
|
3263
|
-
}
|
|
3264
|
-
case "forward":
|
|
3265
|
-
if (m > 1) {
|
|
3266
|
-
for (q = 0; q < m; q++) {
|
|
3267
|
-
n += l[this.rtl ? m - 1 - q : q], Wb(this, g, n, p, a, c);
|
|
3268
|
-
}
|
|
3269
|
-
break;
|
|
3270
|
-
}
|
|
3271
|
-
default:
|
|
3272
|
-
if (Wb(this, g, l, p, a, c), d && e > 1 && k < e - 1) {
|
|
3273
|
-
for (m = this.ba, n = l, p = Math.min(d + 1, this.rtl ? k + 1 : e - k), q = 1; q < p; q++) {
|
|
3274
|
-
l = b[this.rtl ? e - 1 - k - q : k + q], t = this.bidirectional && l > n, u = this.score ? this.score(b, n, k, l, q - 1) : Vb(m + (e / 2 > m ? 0 : 1), e, k, p - 1, q - 1), Wb(this, f, t ? n : l, u, a, c, t ? l : n);
|
|
3275
|
-
}
|
|
3276
|
-
}
|
|
3277
|
-
}
|
|
3278
|
-
}
|
|
3279
|
-
}
|
|
3280
|
-
this.fastupdate || this.reg.add(a);
|
|
3281
|
-
}
|
|
3282
|
-
}
|
|
3283
|
-
this.db && (this.commit_task.push(c ? {ins:a} : {del:a}), this.$ && Tb(this));
|
|
3284
|
-
return this;
|
|
3285
|
-
};
|
|
3286
|
-
function Wb(a, b, c, d, e, f, g) {
|
|
3287
|
-
var h;
|
|
3288
|
-
if (!(h = b[c]) || g && !h[g]) {
|
|
3289
|
-
if (g) {
|
|
3290
|
-
b = h || (b[c] = S());
|
|
3291
|
-
b[g] = 1;
|
|
3292
|
-
var k = a.ctx;
|
|
3293
|
-
(h = k.get(g)) ? k = h : k.set(g, k = a.keystore ? new X(a.keystore) : new Map());
|
|
3294
|
-
} else {
|
|
3295
|
-
k = a.map, b[c] = 1;
|
|
3296
|
-
}
|
|
3297
|
-
(h = k.get(c)) ? k = h : k.set(c, k = h = []);
|
|
3298
|
-
if (f) {
|
|
3299
|
-
for (c = 0; c < h.length; c++) {
|
|
3300
|
-
if ((b = h[c]) && b.includes(e)) {
|
|
3301
|
-
if (c <= d) {
|
|
3302
|
-
return;
|
|
3303
|
-
}
|
|
3304
|
-
b.splice(b.indexOf(e), 1);
|
|
3305
|
-
a.fastupdate && (c = a.reg.get(e)) && c.splice(c.indexOf(b), 1);
|
|
3306
|
-
break;
|
|
3307
|
-
}
|
|
3308
|
-
}
|
|
3309
|
-
}
|
|
3310
|
-
k = k[d] || (k[d] = []);
|
|
3311
|
-
k.push(e);
|
|
3312
|
-
if (k.length === 2147483647) {
|
|
3313
|
-
b = new Va(k);
|
|
3314
|
-
if (a.fastupdate) {
|
|
3315
|
-
for (c = D(a.reg.values()), f = c.next(); !f.done; f = c.next()) {
|
|
3316
|
-
f = f.value, f.includes(k) && (f[f.indexOf(k)] = b);
|
|
3317
|
-
}
|
|
3318
|
-
}
|
|
3319
|
-
h[d] = k = b;
|
|
3320
|
-
}
|
|
3321
|
-
a.fastupdate && ((d = a.reg.get(e)) ? d.push(k) : a.reg.set(e, [k]));
|
|
3322
|
-
}
|
|
3323
|
-
}
|
|
3324
|
-
function Vb(a, b, c, d, e) {
|
|
3325
|
-
return c && a > 1 ? b + (d || 0) <= a ? c + (e || 0) : (a - 1) / (b + (d || 0)) * (c + (e || 0)) + 1 | 0 : 0;
|
|
3326
|
-
}
|
|
3327
|
-
;db.prototype.search = function(a, b, c) {
|
|
3328
|
-
c || (b || typeof a !== "object" ? typeof b === "object" && (c = b, b = 0) : (c = a, a = ""));
|
|
3329
|
-
if (c && c.cache) {
|
|
3330
|
-
return c.cache = !1, a = this.searchCache(a, b, c), c.cache = !0, a;
|
|
3331
|
-
}
|
|
3332
|
-
var d = [], e = 0, f;
|
|
3333
|
-
if (c) {
|
|
3334
|
-
a = c.query || a;
|
|
3335
|
-
b = c.limit || b;
|
|
3336
|
-
e = c.offset || 0;
|
|
3337
|
-
var g = c.context;
|
|
3338
|
-
var h = c.suggest;
|
|
3339
|
-
var k = (f = c.resolve) && c.enrich;
|
|
3340
|
-
var l = c.boost;
|
|
3341
|
-
var m = c.resolution;
|
|
3342
|
-
var p = this.db && c.tag;
|
|
3343
|
-
}
|
|
3344
|
-
typeof f === "undefined" && (f = this.resolve);
|
|
3345
|
-
g = this.depth && g !== !1;
|
|
3346
|
-
var n = this.encoder.encode(a, !g);
|
|
3347
|
-
var q = n.length;
|
|
3348
|
-
b = b || (f ? 100 : 0);
|
|
3349
|
-
if (q === 1) {
|
|
3350
|
-
return Xb.call(this, n[0], "", b, e, f, k, p);
|
|
3351
|
-
}
|
|
3352
|
-
if (q === 2 && g && !h) {
|
|
3353
|
-
return Xb.call(this, n[1], n[0], b, e, f, k, p);
|
|
3354
|
-
}
|
|
3355
|
-
var t = S(), u = 0;
|
|
3356
|
-
if (g) {
|
|
3357
|
-
var v = n[0];
|
|
3358
|
-
u = 1;
|
|
3359
|
-
}
|
|
3360
|
-
m || m === 0 || (m = v ? this.ba : this.resolution);
|
|
3361
|
-
if (this.db) {
|
|
3362
|
-
if (this.db.search && (c = this.db.search(this, n, b, e, h, f, k, p), c !== !1)) {
|
|
3363
|
-
return c;
|
|
3364
|
-
}
|
|
3365
|
-
var A = this;
|
|
3366
|
-
return function() {
|
|
3367
|
-
var y, B;
|
|
3368
|
-
return wa(function(C) {
|
|
3369
|
-
switch(C.h) {
|
|
3370
|
-
case 1:
|
|
3371
|
-
B = y = void 0;
|
|
3372
|
-
case 2:
|
|
3373
|
-
if (!(u < q)) {
|
|
3374
|
-
C.h = 4;
|
|
3375
|
-
break;
|
|
3376
|
-
}
|
|
3377
|
-
B = n[u];
|
|
3378
|
-
if (!B || t[B]) {
|
|
3379
|
-
C.h = 5;
|
|
3380
|
-
break;
|
|
3381
|
-
}
|
|
3382
|
-
t[B] = 1;
|
|
3383
|
-
return L(C, Yb(A, B, v, 0, 0, !1, !1), 6);
|
|
3384
|
-
case 6:
|
|
3385
|
-
y = C.B;
|
|
3386
|
-
if (y = Zb(y, d, h, m)) {
|
|
3387
|
-
d = y;
|
|
3388
|
-
C.h = 4;
|
|
3389
|
-
break;
|
|
3390
|
-
}
|
|
3391
|
-
v && (h && y && d.length || (v = B));
|
|
3392
|
-
case 5:
|
|
3393
|
-
h && v && u === q - 1 && !d.length && (m = A.resolution, v = "", u = -1, t = S());
|
|
3394
|
-
u++;
|
|
3395
|
-
C.h = 2;
|
|
3396
|
-
break;
|
|
3397
|
-
case 4:
|
|
3398
|
-
return C.return($b(d, m, b, e, h, l, f));
|
|
3399
|
-
}
|
|
3400
|
-
});
|
|
3401
|
-
}();
|
|
3402
|
-
}
|
|
3403
|
-
for (a = c = void 0; u < q; u++) {
|
|
3404
|
-
if ((a = n[u]) && !t[a]) {
|
|
3405
|
-
t[a] = 1;
|
|
3406
|
-
c = Yb(this, a, v, 0, 0, !1, !1);
|
|
3407
|
-
if (c = Zb(c, d, h, m)) {
|
|
3408
|
-
d = c;
|
|
3409
|
-
break;
|
|
3410
|
-
}
|
|
3411
|
-
v && (h && c && d.length || (v = a));
|
|
3412
|
-
}
|
|
3413
|
-
h && v && u === q - 1 && !d.length && (m = this.resolution, v = "", u = -1, t = S());
|
|
3414
|
-
}
|
|
3415
|
-
return $b(d, m, b, e, h, l, f);
|
|
3416
|
-
};
|
|
3417
|
-
function $b(a, b, c, d, e, f, g) {
|
|
3418
|
-
var h = a.length, k = a;
|
|
3419
|
-
if (h > 1) {
|
|
3420
|
-
k = zb(a, b, c, d, e, f, g);
|
|
3421
|
-
} else if (h === 1) {
|
|
3422
|
-
return g ? rb.call(null, a[0], c, d) : new Z(a[0], this);
|
|
3423
|
-
}
|
|
3424
|
-
return g ? k : new Z(k, this);
|
|
3425
|
-
}
|
|
3426
|
-
function Xb(a, b, c, d, e, f, g) {
|
|
3427
|
-
a = Yb(this, a, b, c, d, e, f, g);
|
|
3428
|
-
return this.db ? a.then(function(h) {
|
|
3429
|
-
return e ? h || [] : new Z(h, this);
|
|
3430
|
-
}) : a && a.length ? e ? rb.call(this, a, c, d) : new Z(a, this) : e ? [] : new Z([], this);
|
|
3431
|
-
}
|
|
3432
|
-
function Zb(a, b, c, d) {
|
|
3433
|
-
var e = [];
|
|
3434
|
-
if (a && a.length) {
|
|
3435
|
-
if (a.length <= d) {
|
|
3436
|
-
b.push(a);
|
|
3437
|
-
return;
|
|
3438
|
-
}
|
|
3439
|
-
for (var f = 0, g; f < d; f++) {
|
|
3440
|
-
if (g = a[f]) {
|
|
3441
|
-
e[f] = g;
|
|
3442
|
-
}
|
|
3443
|
-
}
|
|
3444
|
-
if (e.length) {
|
|
3445
|
-
b.push(e);
|
|
3446
|
-
return;
|
|
3447
|
-
}
|
|
3448
|
-
}
|
|
3449
|
-
if (!c) {
|
|
3450
|
-
return e;
|
|
3451
|
-
}
|
|
3452
|
-
}
|
|
3453
|
-
function Yb(a, b, c, d, e, f, g, h) {
|
|
3454
|
-
var k;
|
|
3455
|
-
c && (k = a.bidirectional && b > c) && (k = c, c = b, b = k);
|
|
3456
|
-
if (a.db) {
|
|
3457
|
-
return a.db.get(b, c, d, e, f, g, h);
|
|
3458
|
-
}
|
|
3459
|
-
a = c ? (a = a.ctx.get(c)) && a.get(b) : a.map.get(b);
|
|
3460
|
-
return a;
|
|
3461
|
-
}
|
|
3462
|
-
;function db(a, b) {
|
|
3463
|
-
if (!this || this.constructor !== db) {
|
|
3464
|
-
return new db(a);
|
|
3465
|
-
}
|
|
3466
|
-
if (a) {
|
|
3467
|
-
var c = U(a) ? a : a.preset;
|
|
3468
|
-
c && (Ub[c] || console.warn("Preset not found: " + c), a = Object.assign({}, Ub[c], a));
|
|
3469
|
-
} else {
|
|
3470
|
-
a = {};
|
|
3471
|
-
}
|
|
3472
|
-
c = a.context;
|
|
3473
|
-
var d = c === !0 ? {depth:1} : c || {}, e = U(a.encoder) ? Ta[a.encoder] : a.encode || a.encoder || {};
|
|
3474
|
-
this.encoder = e.encode ? e : typeof e === "object" ? new Ja(e) : {encode:e};
|
|
3475
|
-
this.resolution = a.resolution || 9;
|
|
3476
|
-
this.tokenize = c = (c = a.tokenize) && c !== "default" && c !== "exact" && c || "strict";
|
|
3477
|
-
this.depth = c === "strict" && d.depth || 0;
|
|
3478
|
-
this.bidirectional = d.bidirectional !== !1;
|
|
3479
|
-
this.fastupdate = !!a.fastupdate;
|
|
3480
|
-
this.score = a.score || null;
|
|
3481
|
-
d && d.depth && this.tokenize !== "strict" && console.warn('Context-Search could not applied, because it is just supported when using the tokenizer "strict".');
|
|
3482
|
-
(c = a.keystore || 0) && (this.keystore = c);
|
|
3483
|
-
this.map = c ? new X(c) : new Map();
|
|
3484
|
-
this.ctx = c ? new X(c) : new Map();
|
|
3485
|
-
this.reg = b || (this.fastupdate ? c ? new X(c) : new Map() : c ? new Y(c) : new Set());
|
|
3486
|
-
this.ba = d.resolution || 3;
|
|
3487
|
-
this.rtl = e.rtl || a.rtl || !1;
|
|
3488
|
-
this.cache = (c = a.cache || null) && new Ma(c);
|
|
3489
|
-
this.resolve = a.resolve !== !1;
|
|
3490
|
-
if (c = a.db) {
|
|
3491
|
-
this.db = this.mount(c);
|
|
3492
|
-
}
|
|
3493
|
-
this.$ = a.commit !== !1;
|
|
3494
|
-
this.commit_task = [];
|
|
3495
|
-
this.commit_timer = null;
|
|
3496
|
-
this.priority = a.priority || 4;
|
|
3497
|
-
}
|
|
3498
|
-
w = db.prototype;
|
|
3499
|
-
w.mount = function(a) {
|
|
3500
|
-
this.commit_timer && (clearTimeout(this.commit_timer), this.commit_timer = null);
|
|
3501
|
-
return a.mount(this);
|
|
3502
|
-
};
|
|
3503
|
-
w.commit = function() {
|
|
3504
|
-
this.commit_timer && (clearTimeout(this.commit_timer), this.commit_timer = null);
|
|
3505
|
-
return this.db.commit(this);
|
|
3506
|
-
};
|
|
3507
|
-
w.destroy = function() {
|
|
3508
|
-
this.commit_timer && (clearTimeout(this.commit_timer), this.commit_timer = null);
|
|
3509
|
-
return this.db.destroy();
|
|
3510
|
-
};
|
|
3511
|
-
function Tb(a) {
|
|
3512
|
-
a.commit_timer || (a.commit_timer = setTimeout(function() {
|
|
3513
|
-
a.commit_timer = null;
|
|
3514
|
-
a.db.commit(a);
|
|
3515
|
-
}, 1));
|
|
3516
|
-
}
|
|
3517
|
-
w.clear = function() {
|
|
3518
|
-
this.map.clear();
|
|
3519
|
-
this.ctx.clear();
|
|
3520
|
-
this.reg.clear();
|
|
3521
|
-
this.cache && this.cache.clear();
|
|
3522
|
-
return this.db ? (this.commit_timer && clearTimeout(this.commit_timer), this.commit_timer = null, this.commit_task = [], this.db.clear()) : this;
|
|
3523
|
-
};
|
|
3524
|
-
w.append = function(a, b) {
|
|
3525
|
-
return this.add(a, b, !0);
|
|
3526
|
-
};
|
|
3527
|
-
w.contain = function(a) {
|
|
3528
|
-
return this.db ? this.db.has(a) : this.reg.has(a);
|
|
3529
|
-
};
|
|
3530
|
-
w.update = function(a, b) {
|
|
3531
|
-
var c = this, d = this.remove(a);
|
|
3532
|
-
return d && d.then ? d.then(function() {
|
|
3533
|
-
return c.add(a, b);
|
|
3534
|
-
}) : this.add(a, b);
|
|
3535
|
-
};
|
|
3536
|
-
w.cleanup = function() {
|
|
3537
|
-
if (!this.fastupdate) {
|
|
3538
|
-
return console.info('Cleanup the index isn\'t required when not using "fastupdate".'), this;
|
|
3539
|
-
}
|
|
3540
|
-
Sb(this.map);
|
|
3541
|
-
this.depth && Sb(this.ctx);
|
|
3542
|
-
return this;
|
|
3543
|
-
};
|
|
3544
|
-
w.searchCache = La;
|
|
3545
|
-
w.export = function(a, b, c, d) {
|
|
3546
|
-
c = c === void 0 ? 0 : c;
|
|
3547
|
-
d = d === void 0 ? 0 : d;
|
|
3548
|
-
switch(d) {
|
|
3549
|
-
case 0:
|
|
3550
|
-
var e = "reg";
|
|
3551
|
-
var f = Ob(this.reg);
|
|
3552
|
-
break;
|
|
3553
|
-
case 1:
|
|
3554
|
-
e = "cfg";
|
|
3555
|
-
f = null;
|
|
3556
|
-
break;
|
|
3557
|
-
case 2:
|
|
3558
|
-
e = "map";
|
|
3559
|
-
f = Kb(this.map, this.reg.size);
|
|
3560
|
-
break;
|
|
3561
|
-
case 3:
|
|
3562
|
-
e = "ctx";
|
|
3563
|
-
f = Mb(this.ctx, this.reg.size);
|
|
3564
|
-
break;
|
|
3565
|
-
default:
|
|
3566
|
-
return;
|
|
3567
|
-
}
|
|
3568
|
-
return Qb.call(this, a, b, e, f, c, d);
|
|
3569
|
-
};
|
|
3570
|
-
w.import = function(a, b) {
|
|
3571
|
-
if (b) {
|
|
3572
|
-
switch(typeof b === "string" && (b = JSON.parse(b)), a = a.split("."), a[a.length - 1] === "json" && a.pop(), a.length === 3 && a.shift(), a = a.length > 1 ? a[1] : a[0], a) {
|
|
3573
|
-
case "reg":
|
|
3574
|
-
this.fastupdate = !1;
|
|
3575
|
-
this.reg = Pb(b, this.reg);
|
|
3576
|
-
break;
|
|
3577
|
-
case "map":
|
|
3578
|
-
this.map = Lb(b, this.map);
|
|
3579
|
-
break;
|
|
3580
|
-
case "ctx":
|
|
3581
|
-
this.ctx = Nb(b, this.ctx);
|
|
3582
|
-
}
|
|
3583
|
-
}
|
|
3584
|
-
};
|
|
3585
|
-
w.serialize = function(a) {
|
|
3586
|
-
a = a === void 0 ? !0 : a;
|
|
3587
|
-
var b = "", c = "", d = "";
|
|
3588
|
-
if (this.reg.size) {
|
|
3589
|
-
var e;
|
|
3590
|
-
c = D(this.reg.keys());
|
|
3591
|
-
for (var f = c.next(); !f.done; f = c.next()) {
|
|
3592
|
-
f = f.value, e || (e = typeof f), b += (b ? "," : "") + (e === "string" ? '"' + f + '"' : f);
|
|
3593
|
-
}
|
|
3594
|
-
b = "index.reg=new Set([" + b + "]);";
|
|
3595
|
-
c = Rb(this.map, e);
|
|
3596
|
-
c = "index.map=new Map([" + c + "]);";
|
|
3597
|
-
f = D(this.ctx.entries());
|
|
3598
|
-
for (var g = f.next(); !g.done; g = f.next()) {
|
|
3599
|
-
var h = g.value;
|
|
3600
|
-
g = h[0];
|
|
3601
|
-
h = Rb(h[1], e);
|
|
3602
|
-
h = "new Map([" + h + "])";
|
|
3603
|
-
h = '["' + g + '",' + h + "]";
|
|
3604
|
-
d += (d ? "," : "") + h;
|
|
3605
|
-
}
|
|
3606
|
-
d = "index.ctx=new Map([" + d + "]);";
|
|
3607
|
-
}
|
|
3608
|
-
return a ? "function inject(index){" + b + c + d + "}" : b + c + d;
|
|
3609
|
-
};
|
|
3610
|
-
eb(db.prototype);
|
|
3611
|
-
var ac = typeof window !== "undefined" && (window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB), bc = ["map", "ctx", "tag", "reg", "cfg"], cc = S();
|
|
3612
|
-
function dc(a, b) {
|
|
3613
|
-
b = b === void 0 ? {} : b;
|
|
3614
|
-
if (!this || this.constructor !== dc) {
|
|
3615
|
-
return new dc(a, b);
|
|
3616
|
-
}
|
|
3617
|
-
typeof a === "object" && (b = a, a = a.name);
|
|
3618
|
-
a || console.info("Default storage space was used, because a name was not passed.");
|
|
3619
|
-
this.id = "flexsearch" + (a ? ":" + a.toLowerCase().replace(/[^a-z0-9_\-]/g, "") : "");
|
|
3620
|
-
this.field = b.field ? b.field.toLowerCase().replace(/[^a-z0-9_\-]/g, "") : "";
|
|
3621
|
-
this.type = b.type;
|
|
3622
|
-
this.fastupdate = this.support_tag_search = !1;
|
|
3623
|
-
this.db = null;
|
|
3624
|
-
this.h = {};
|
|
3625
|
-
}
|
|
3626
|
-
w = dc.prototype;
|
|
3627
|
-
w.mount = function(a) {
|
|
3628
|
-
if (a.index) {
|
|
3629
|
-
return a.mount(this);
|
|
3630
|
-
}
|
|
3631
|
-
a.db = this;
|
|
3632
|
-
return this.open();
|
|
3633
|
-
};
|
|
3634
|
-
w.open = function() {
|
|
3635
|
-
if (this.db) {
|
|
3636
|
-
return this.db;
|
|
3637
|
-
}
|
|
3638
|
-
var a = this;
|
|
3639
|
-
navigator.storage && navigator.storage.persist && navigator.storage.persist();
|
|
3640
|
-
cc[a.id] || (cc[a.id] = []);
|
|
3641
|
-
cc[a.id].push(a.field);
|
|
3642
|
-
var b = ac.open(a.id, 1);
|
|
3643
|
-
b.onupgradeneeded = function() {
|
|
3644
|
-
for (var c = a.db = this.result, d = 0, e; d < bc.length; d++) {
|
|
3645
|
-
e = bc[d];
|
|
3646
|
-
for (var f = 0, g; f < cc[a.id].length; f++) {
|
|
3647
|
-
g = cc[a.id][f], c.objectStoreNames.contains(e + (e !== "reg" ? g ? ":" + g : "" : "")) || c.createObjectStore(e + (e !== "reg" ? g ? ":" + g : "" : ""));
|
|
3648
|
-
}
|
|
3649
|
-
}
|
|
3650
|
-
};
|
|
3651
|
-
return a.db = ec(b, function(c) {
|
|
3652
|
-
a.db = c;
|
|
3653
|
-
a.db.onversionchange = function() {
|
|
3654
|
-
a.close();
|
|
3655
|
-
};
|
|
3656
|
-
});
|
|
3657
|
-
};
|
|
3658
|
-
w.close = function() {
|
|
3659
|
-
this.db && this.db.close();
|
|
3660
|
-
this.db = null;
|
|
3661
|
-
};
|
|
3662
|
-
w.destroy = function() {
|
|
3663
|
-
var a = ac.deleteDatabase(this.id);
|
|
3664
|
-
return ec(a);
|
|
3665
|
-
};
|
|
3666
|
-
w.clear = function() {
|
|
3667
|
-
for (var a = [], b = 0, c; b < bc.length; b++) {
|
|
3668
|
-
c = bc[b];
|
|
3669
|
-
for (var d = 0, e; d < cc[this.id].length; d++) {
|
|
3670
|
-
e = cc[this.id][d], a.push(c + (c !== "reg" ? e ? ":" + e : "" : ""));
|
|
3671
|
-
}
|
|
3672
|
-
}
|
|
3673
|
-
b = this.db.transaction(a, "readwrite");
|
|
3674
|
-
for (c = 0; c < a.length; c++) {
|
|
3675
|
-
b.objectStore(a[c]).clear();
|
|
3676
|
-
}
|
|
3677
|
-
return ec(b);
|
|
3678
|
-
};
|
|
3679
|
-
w.get = function(a, b, c, d, e, f) {
|
|
3680
|
-
c = c === void 0 ? 0 : c;
|
|
3681
|
-
d = d === void 0 ? 0 : d;
|
|
3682
|
-
e = e === void 0 ? !0 : e;
|
|
3683
|
-
f = f === void 0 ? !1 : f;
|
|
3684
|
-
a = this.db.transaction((b ? "ctx" : "map") + (this.field ? ":" + this.field : ""), "readonly").objectStore((b ? "ctx" : "map") + (this.field ? ":" + this.field : "")).get(b ? b + ":" + a : a);
|
|
3685
|
-
var g = this;
|
|
3686
|
-
return ec(a).then(function(h) {
|
|
3687
|
-
var k = [];
|
|
3688
|
-
if (!h || !h.length) {
|
|
3689
|
-
return k;
|
|
3690
|
-
}
|
|
3691
|
-
if (e) {
|
|
3692
|
-
if (!c && !d && h.length === 1) {
|
|
3693
|
-
return h[0];
|
|
3694
|
-
}
|
|
3695
|
-
for (var l = 0, m = void 0; l < h.length; l++) {
|
|
3696
|
-
if ((m = h[l]) && m.length) {
|
|
3697
|
-
if (d >= m.length) {
|
|
3698
|
-
d -= m.length;
|
|
3699
|
-
} else {
|
|
3700
|
-
for (var p = c ? d + Math.min(m.length - d, c) : m.length, n = d; n < p; n++) {
|
|
3701
|
-
k.push(m[n]);
|
|
3702
|
-
}
|
|
3703
|
-
d = 0;
|
|
3704
|
-
if (k.length === c) {
|
|
3705
|
-
break;
|
|
3706
|
-
}
|
|
3707
|
-
}
|
|
3708
|
-
}
|
|
3709
|
-
}
|
|
3710
|
-
return f ? g.enrich(k) : k;
|
|
3711
|
-
}
|
|
3712
|
-
return h;
|
|
3713
|
-
});
|
|
3714
|
-
};
|
|
3715
|
-
w.tag = function(a, b, c, d) {
|
|
3716
|
-
b = b === void 0 ? 0 : b;
|
|
3717
|
-
c = c === void 0 ? 0 : c;
|
|
3718
|
-
d = d === void 0 ? !1 : d;
|
|
3719
|
-
a = this.db.transaction("tag" + (this.field ? ":" + this.field : ""), "readonly").objectStore("tag" + (this.field ? ":" + this.field : "")).get(a);
|
|
3720
|
-
var e = this;
|
|
3721
|
-
return ec(a).then(function(f) {
|
|
3722
|
-
if (!f || !f.length || c >= f.length) {
|
|
3723
|
-
return [];
|
|
3724
|
-
}
|
|
3725
|
-
if (!b && !c) {
|
|
3726
|
-
return f;
|
|
3727
|
-
}
|
|
3728
|
-
f = f.slice(c, c + b);
|
|
3729
|
-
return d ? e.enrich(f) : f;
|
|
3730
|
-
});
|
|
3731
|
-
};
|
|
3732
|
-
w.enrich = function(a) {
|
|
3733
|
-
typeof a !== "object" && (a = [a]);
|
|
3734
|
-
for (var b = this.db.transaction("reg", "readonly").objectStore("reg"), c = [], d = 0; d < a.length; d++) {
|
|
3735
|
-
c[d] = ec(b.get(a[d]));
|
|
3736
|
-
}
|
|
3737
|
-
return Promise.all(c).then(function(e) {
|
|
3738
|
-
for (var f = 0; f < e.length; f++) {
|
|
3739
|
-
e[f] = {id:a[f], doc:e[f] ? JSON.parse(e[f]) : null};
|
|
3740
|
-
}
|
|
3741
|
-
return e;
|
|
3742
|
-
});
|
|
3743
|
-
};
|
|
3744
|
-
w.has = function(a) {
|
|
3745
|
-
a = this.db.transaction("reg", "readonly").objectStore("reg").getKey(a);
|
|
3746
|
-
return ec(a).then(function(b) {
|
|
3747
|
-
return !!b;
|
|
3748
|
-
});
|
|
3749
|
-
};
|
|
3750
|
-
w.search = null;
|
|
3751
|
-
w.info = function() {
|
|
3752
|
-
};
|
|
3753
|
-
w.transaction = function(a, b, c) {
|
|
3754
|
-
a += a !== "reg" ? this.field ? ":" + this.field : "" : "";
|
|
3755
|
-
var d = this.h[a + ":" + b];
|
|
3756
|
-
if (d) {
|
|
3757
|
-
return c.call(this, d);
|
|
3758
|
-
}
|
|
3759
|
-
var e = this.db.transaction(a, b);
|
|
3760
|
-
this.h[a + ":" + b] = d = e.objectStore(a);
|
|
3761
|
-
var f = c.call(this, d);
|
|
3762
|
-
this.h[a + ":" + b] = null;
|
|
3763
|
-
return ec(e).finally(function() {
|
|
3764
|
-
return f;
|
|
3765
|
-
});
|
|
3766
|
-
};
|
|
3767
|
-
w.commit = function(a) {
|
|
3768
|
-
var b = this, c, d, e, f;
|
|
3769
|
-
return wa(function(g) {
|
|
3770
|
-
switch(g.h) {
|
|
3771
|
-
case 1:
|
|
3772
|
-
c = a.commit_task;
|
|
3773
|
-
d = [];
|
|
3774
|
-
a.commit_task = [];
|
|
3775
|
-
e = 0;
|
|
3776
|
-
for (f = void 0; e < c.length; e++) {
|
|
3777
|
-
f = c[e], f.del && d.push(f.del);
|
|
3778
|
-
}
|
|
3779
|
-
if (!d.length) {
|
|
3780
|
-
g.h = 2;
|
|
3781
|
-
break;
|
|
3782
|
-
}
|
|
3783
|
-
return L(g, b.remove(d), 2);
|
|
3784
|
-
case 2:
|
|
3785
|
-
return a.reg.size ? L(g, b.transaction("map", "readwrite", function(h) {
|
|
3786
|
-
for (var k = D(a.map), l = k.next(), m = {}; !l.done; m = {N:void 0, W:void 0}, l = k.next()) {
|
|
3787
|
-
l = l.value, m.W = l[0], m.N = l[1], m.N.length && (h.get(m.W).onsuccess = function(p) {
|
|
3788
|
-
return function() {
|
|
3789
|
-
var n = this.result, q;
|
|
3790
|
-
if (n && n.length) {
|
|
3791
|
-
for (var t = Math.max(n.length, p.N.length), u = 0, v; u < t; u++) {
|
|
3792
|
-
if ((v = p.N[u]) && v.length) {
|
|
3793
|
-
if ((q = n[u]) && q.length) {
|
|
3794
|
-
for (var A = 0; A < v.length; A++) {
|
|
3795
|
-
q.push(v[A]);
|
|
3796
|
-
}
|
|
3797
|
-
} else {
|
|
3798
|
-
n[u] = v;
|
|
3799
|
-
}
|
|
3800
|
-
q = 1;
|
|
3801
|
-
}
|
|
3802
|
-
}
|
|
3803
|
-
} else {
|
|
3804
|
-
n = p.N, q = 1;
|
|
3805
|
-
}
|
|
3806
|
-
q && h.put(n, p.W);
|
|
3807
|
-
};
|
|
3808
|
-
}(m));
|
|
3809
|
-
}
|
|
3810
|
-
}), 4) : g.return();
|
|
3811
|
-
case 4:
|
|
3812
|
-
return L(g, b.transaction("ctx", "readwrite", function(h) {
|
|
3813
|
-
for (var k = D(a.ctx), l = k.next(), m = {}; !l.done; m = {V:void 0}, l = k.next()) {
|
|
3814
|
-
l = l.value;
|
|
3815
|
-
m.V = l[0];
|
|
3816
|
-
l = D(l[1]);
|
|
3817
|
-
for (var p = l.next(), n = {}; !p.done; n = {O:void 0, X:void 0}, p = l.next()) {
|
|
3818
|
-
p = p.value, n.X = p[0], n.O = p[1], n.O.length && (h.get(m.V + ":" + n.X).onsuccess = function(q, t) {
|
|
3819
|
-
return function() {
|
|
3820
|
-
var u = this.result, v;
|
|
3821
|
-
if (u && u.length) {
|
|
3822
|
-
for (var A = Math.max(u.length, q.O.length), y = 0, B; y < A; y++) {
|
|
3823
|
-
if ((B = q.O[y]) && B.length) {
|
|
3824
|
-
if ((v = u[y]) && v.length) {
|
|
3825
|
-
for (var C = 0; C < B.length; C++) {
|
|
3826
|
-
v.push(B[C]);
|
|
3827
|
-
}
|
|
3828
|
-
} else {
|
|
3829
|
-
u[y] = B;
|
|
3830
|
-
}
|
|
3831
|
-
v = 1;
|
|
3832
|
-
}
|
|
3833
|
-
}
|
|
3834
|
-
} else {
|
|
3835
|
-
u = q.O, v = 1;
|
|
3836
|
-
}
|
|
3837
|
-
v && h.put(u, t.V + ":" + q.X);
|
|
3838
|
-
};
|
|
3839
|
-
}(n, m));
|
|
3840
|
-
}
|
|
3841
|
-
}
|
|
3842
|
-
}), 5);
|
|
3843
|
-
case 5:
|
|
3844
|
-
if (a.store) {
|
|
3845
|
-
return L(g, b.transaction("reg", "readwrite", function(h) {
|
|
3846
|
-
for (var k = D(a.store), l = k.next(); !l.done; l = k.next()) {
|
|
3847
|
-
var m = l.value;
|
|
3848
|
-
l = m[0];
|
|
3849
|
-
m = m[1];
|
|
3850
|
-
h.put(typeof m === "object" ? JSON.stringify(m) : 1, l);
|
|
3851
|
-
}
|
|
3852
|
-
}), 7);
|
|
3853
|
-
}
|
|
3854
|
-
if (a.bypass) {
|
|
3855
|
-
g.h = 7;
|
|
3856
|
-
break;
|
|
3857
|
-
}
|
|
3858
|
-
return L(g, b.transaction("reg", "readwrite", function(h) {
|
|
3859
|
-
for (var k = D(a.reg.keys()), l = k.next(); !l.done; l = k.next()) {
|
|
3860
|
-
h.put(1, l.value);
|
|
3861
|
-
}
|
|
3862
|
-
}), 7);
|
|
3863
|
-
case 7:
|
|
3864
|
-
if (!a.tag) {
|
|
3865
|
-
g.h = 11;
|
|
3866
|
-
break;
|
|
3867
|
-
}
|
|
3868
|
-
return L(g, b.transaction("tag", "readwrite", function(h) {
|
|
3869
|
-
for (var k = D(a.tag), l = k.next(), m = {}; !l.done; m = {S:void 0, Z:void 0}, l = k.next()) {
|
|
3870
|
-
l = l.value, m.Z = l[0], m.S = l[1], m.S.length && (h.get(m.Z).onsuccess = function(p) {
|
|
3871
|
-
return function() {
|
|
3872
|
-
var n = this.result;
|
|
3873
|
-
n = n && n.length ? n.concat(p.S) : p.S;
|
|
3874
|
-
h.put(n, p.Z);
|
|
3875
|
-
};
|
|
3876
|
-
}(m));
|
|
3877
|
-
}
|
|
3878
|
-
}), 11);
|
|
3879
|
-
case 11:
|
|
3880
|
-
a.map.clear(), a.ctx.clear(), a.tag && a.tag.clear(), a.store && a.store.clear(), a.document || a.reg.clear(), g.h = 0;
|
|
3881
|
-
}
|
|
3882
|
-
});
|
|
3883
|
-
};
|
|
3884
|
-
function fc(a, b, c) {
|
|
3885
|
-
for (var d = a.value, e, f = 0, g = 0, h; g < d.length; g++) {
|
|
3886
|
-
if (h = c ? d : d[g]) {
|
|
3887
|
-
for (var k = 0, l; k < b.length; k++) {
|
|
3888
|
-
if (l = b[k], l = h.indexOf(l), l >= 0) {
|
|
3889
|
-
if (e = 1, h.length > 1) {
|
|
3890
|
-
h.splice(l, 1);
|
|
3891
|
-
} else {
|
|
3892
|
-
d[g] = [];
|
|
3893
|
-
break;
|
|
3894
|
-
}
|
|
3895
|
-
}
|
|
3896
|
-
}
|
|
3897
|
-
f += h.length;
|
|
3898
|
-
}
|
|
3899
|
-
if (c) {
|
|
3900
|
-
break;
|
|
3901
|
-
}
|
|
3902
|
-
}
|
|
3903
|
-
f ? e && a.update(d) : a.delete();
|
|
3904
|
-
a.continue();
|
|
3905
|
-
}
|
|
3906
|
-
w.remove = function(a) {
|
|
3907
|
-
typeof a !== "object" && (a = [a]);
|
|
3908
|
-
return Promise.all([this.transaction("map", "readwrite", function(b) {
|
|
3909
|
-
b.openCursor().onsuccess = function() {
|
|
3910
|
-
var c = this.result;
|
|
3911
|
-
c && fc(c, a);
|
|
3912
|
-
};
|
|
3913
|
-
}), this.transaction("ctx", "readwrite", function(b) {
|
|
3914
|
-
b.openCursor().onsuccess = function() {
|
|
3915
|
-
var c = this.result;
|
|
3916
|
-
c && fc(c, a);
|
|
3917
|
-
};
|
|
3918
|
-
}), this.transaction("tag", "readwrite", function(b) {
|
|
3919
|
-
b.openCursor().onsuccess = function() {
|
|
3920
|
-
var c = this.result;
|
|
3921
|
-
c && fc(c, a, !0);
|
|
3922
|
-
};
|
|
3923
|
-
}), this.transaction("reg", "readwrite", function(b) {
|
|
3924
|
-
for (var c = 0; c < a.length; c++) {
|
|
3925
|
-
b.delete(a[c]);
|
|
3926
|
-
}
|
|
3927
|
-
})]);
|
|
3928
|
-
};
|
|
3929
|
-
function ec(a, b) {
|
|
3930
|
-
return new Promise(function(c, d) {
|
|
3931
|
-
a.onsuccess = a.oncomplete = function() {
|
|
3932
|
-
b && b(this.result);
|
|
3933
|
-
b = null;
|
|
3934
|
-
c(this.result);
|
|
3935
|
-
};
|
|
3936
|
-
a.onerror = a.onblocked = d;
|
|
3937
|
-
a = null;
|
|
3938
|
-
});
|
|
3939
|
-
}
|
|
3940
|
-
;var hc = {Index:db, Charset:Ta, Encoder:Ja, Document:ob, Worker:lb, Resolver:Z, IndexedDB:dc, Language:{}}, ic = typeof self !== "undefined" ? self : typeof global !== "undefined" ? global : self, jc;
|
|
3941
|
-
(jc = ic.define) && jc.amd ? jc([], function() {
|
|
3942
|
-
return hc;
|
|
3943
|
-
}) : typeof ic.exports === "object" ? ic.exports = hc : ic.FlexSearch = hc;
|
|
3944
|
-
}(this||self));
|