@od-oneapp/config 2026.2.2001-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/README.md +830 -0
- package/eslint/__tests__/config-structure.test.mjs +61 -0
- package/eslint/base.mjs +350 -0
- package/eslint/expo.mjs +97 -0
- package/eslint/next-test.mjs +43 -0
- package/eslint/next.mjs +74 -0
- package/eslint/node.mjs +106 -0
- package/eslint/react.mjs +313 -0
- package/eslint/rules/__tests__/no-used-underscore-vars.test.mjs +147 -0
- package/eslint/rules/no-used-underscore-vars.mjs +297 -0
- package/eslint/shared/__tests__/common-ignores.test.mjs +19 -0
- package/eslint/shared/common-ignores.mjs +172 -0
- package/eslint/shared/disabled-type-aware-rules.mjs +35 -0
- package/eslint/shared/file-patterns.mjs +124 -0
- package/eslint/shared/node-globals.mjs +50 -0
- package/eslint/storybook.mjs +81 -0
- package/eslint/test.mjs +298 -0
- package/eslint/utils/__tests__/create-validated-config.test.mjs +42 -0
- package/eslint/utils/__tests__/filter-ts-eslint-configs.test.mjs +57 -0
- package/eslint/utils/__tests__/validate-config.test.mjs +104 -0
- package/eslint/utils/create-validated-config.mjs +69 -0
- package/eslint/utils/filter-ts-eslint-configs.mjs +129 -0
- package/eslint/utils/validate-config.mjs +88 -0
- package/package.json +37 -0
- package/prettier/index.mjs +15 -0
- package/stylelint/index.mjs +129 -0
- package/tsdown/README.md +287 -0
- package/tsdown/base.mjs +77 -0
- package/tsdown/browser.mjs +34 -0
- package/tsdown/client.mjs +32 -0
- package/tsdown/dist.mjs +179 -0
- package/tsdown/index.mjs +53 -0
- package/tsdown/node.mjs +39 -0
- package/tsdown/react.mjs +30 -0
- package/typescript/base.json +52 -0
- package/typescript/dist/__tests__/browser-stub.test.d.ts +2 -0
- package/typescript/dist/__tests__/browser-stub.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/browser-stub.test.js +40 -0
- package/typescript/dist/__tests__/browser-stub.test.js.map +1 -0
- package/typescript/dist/__tests__/runtime/lifecycle.test.d.ts +2 -0
- package/typescript/dist/__tests__/runtime/lifecycle.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/runtime/lifecycle.test.js +149 -0
- package/typescript/dist/__tests__/runtime/lifecycle.test.js.map +1 -0
- package/typescript/dist/__tests__/server/abort-support.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/abort-support.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/abort-support.test.js +333 -0
- package/typescript/dist/__tests__/server/abort-support.test.js.map +1 -0
- package/typescript/dist/__tests__/server/batch-processor.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/batch-processor.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/batch-processor.test.js +173 -0
- package/typescript/dist/__tests__/server/batch-processor.test.js.map +1 -0
- package/typescript/dist/__tests__/server/cache.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/cache.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/cache.test.js +343 -0
- package/typescript/dist/__tests__/server/cache.test.js.map +1 -0
- package/typescript/dist/__tests__/server/circular-deps.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/circular-deps.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/circular-deps.test.js +412 -0
- package/typescript/dist/__tests__/server/circular-deps.test.js.map +1 -0
- package/typescript/dist/__tests__/server/claude-code-env.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/claude-code-env.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/claude-code-env.test.js +387 -0
- package/typescript/dist/__tests__/server/claude-code-env.test.js.map +1 -0
- package/typescript/dist/__tests__/server/code-analysis-tool.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/code-analysis-tool.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/code-analysis-tool.test.js +430 -0
- package/typescript/dist/__tests__/server/code-analysis-tool.test.js.map +1 -0
- package/typescript/dist/__tests__/server/code-transformation.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/code-transformation.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/code-transformation.test.js +173 -0
- package/typescript/dist/__tests__/server/code-transformation.test.js.map +1 -0
- package/typescript/dist/__tests__/server/concurrency.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/concurrency.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/concurrency.test.js +31 -0
- package/typescript/dist/__tests__/server/concurrency.test.js.map +1 -0
- package/typescript/dist/__tests__/server/context.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/context.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/context.test.js +483 -0
- package/typescript/dist/__tests__/server/context.test.js.map +1 -0
- package/typescript/dist/__tests__/server/error-handling.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/error-handling.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/error-handling.test.js +68 -0
- package/typescript/dist/__tests__/server/error-handling.test.js.map +1 -0
- package/typescript/dist/__tests__/server/error-utils.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/error-utils.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/error-utils.test.js +268 -0
- package/typescript/dist/__tests__/server/error-utils.test.js.map +1 -0
- package/typescript/dist/__tests__/server/files.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/files.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/files.test.js +160 -0
- package/typescript/dist/__tests__/server/files.test.js.map +1 -0
- package/typescript/dist/__tests__/server/logger.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/logger.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/logger.test.js +412 -0
- package/typescript/dist/__tests__/server/logger.test.js.map +1 -0
- package/typescript/dist/__tests__/server/path-manager.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/path-manager.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/path-manager.test.js +406 -0
- package/typescript/dist/__tests__/server/path-manager.test.js.map +1 -0
- package/typescript/dist/__tests__/server/retry-operations.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/retry-operations.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/retry-operations.test.js +119 -0
- package/typescript/dist/__tests__/server/retry-operations.test.js.map +1 -0
- package/typescript/dist/__tests__/server/retry.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/retry.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/retry.test.js +70 -0
- package/typescript/dist/__tests__/server/retry.test.js.map +1 -0
- package/typescript/dist/__tests__/server/retryable.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/retryable.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/retryable.test.js +23 -0
- package/typescript/dist/__tests__/server/retryable.test.js.map +1 -0
- package/typescript/dist/__tests__/server/scheduler.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/scheduler.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/scheduler.test.js +14 -0
- package/typescript/dist/__tests__/server/scheduler.test.js.map +1 -0
- package/typescript/dist/__tests__/server/security.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/security.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/security.test.js +286 -0
- package/typescript/dist/__tests__/server/security.test.js.map +1 -0
- package/typescript/dist/__tests__/server/session-management.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/session-management.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/session-management.test.js +399 -0
- package/typescript/dist/__tests__/server/session-management.test.js.map +1 -0
- package/typescript/dist/__tests__/server/session-recovery.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/session-recovery.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/session-recovery.test.js +417 -0
- package/typescript/dist/__tests__/server/session-recovery.test.js.map +1 -0
- package/typescript/dist/__tests__/server/session.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/session.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/session.test.js +102 -0
- package/typescript/dist/__tests__/server/session.test.js.map +1 -0
- package/typescript/dist/__tests__/server/simple-tools.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/simple-tools.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/simple-tools.test.js +56 -0
- package/typescript/dist/__tests__/server/simple-tools.test.js.map +1 -0
- package/typescript/dist/__tests__/server/streaming-utilities.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/streaming-utilities.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/streaming-utilities.test.js +338 -0
- package/typescript/dist/__tests__/server/streaming-utilities.test.js.map +1 -0
- package/typescript/dist/__tests__/server/streams.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/streams.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/streams.test.js +282 -0
- package/typescript/dist/__tests__/server/streams.test.js.map +1 -0
- package/typescript/dist/__tests__/server/stringify-advanced.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/stringify-advanced.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/stringify-advanced.test.js +152 -0
- package/typescript/dist/__tests__/server/stringify-advanced.test.js.map +1 -0
- package/typescript/dist/__tests__/server/structured-clone-tool.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/structured-clone-tool.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/structured-clone-tool.test.js +751 -0
- package/typescript/dist/__tests__/server/structured-clone-tool.test.js.map +1 -0
- package/typescript/dist/__tests__/server/structured-clone.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/structured-clone.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/structured-clone.test.js +305 -0
- package/typescript/dist/__tests__/server/structured-clone.test.js.map +1 -0
- package/typescript/dist/__tests__/server/tool-helpers.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/tool-helpers.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/tool-helpers.test.js +51 -0
- package/typescript/dist/__tests__/server/tool-helpers.test.js.map +1 -0
- package/typescript/dist/__tests__/server/validation.test.d.ts +2 -0
- package/typescript/dist/__tests__/server/validation.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/server/validation.test.js +585 -0
- package/typescript/dist/__tests__/server/validation.test.js.map +1 -0
- package/typescript/dist/__tests__/shared/constants.test.d.ts +2 -0
- package/typescript/dist/__tests__/shared/constants.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/shared/constants.test.js +11 -0
- package/typescript/dist/__tests__/shared/constants.test.js.map +1 -0
- package/typescript/dist/__tests__/shared/environment.test.d.ts +2 -0
- package/typescript/dist/__tests__/shared/environment.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/shared/environment.test.js +279 -0
- package/typescript/dist/__tests__/shared/environment.test.js.map +1 -0
- package/typescript/dist/__tests__/shared/stringify.test.d.ts +2 -0
- package/typescript/dist/__tests__/shared/stringify.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/shared/stringify.test.js +171 -0
- package/typescript/dist/__tests__/shared/stringify.test.js.map +1 -0
- package/typescript/dist/__tests__/shared/timeout.test.d.ts +2 -0
- package/typescript/dist/__tests__/shared/timeout.test.d.ts.map +1 -0
- package/typescript/dist/__tests__/shared/timeout.test.js +262 -0
- package/typescript/dist/__tests__/shared/timeout.test.js.map +1 -0
- package/typescript/dist/src/App.d.ts +3 -0
- package/typescript/dist/src/App.d.ts.map +1 -0
- package/typescript/dist/src/App.js +27 -0
- package/typescript/dist/src/App.js.map +1 -0
- package/typescript/dist/src/components/charts/BenchmarkCard.d.ts +12 -0
- package/typescript/dist/src/components/charts/BenchmarkCard.d.ts.map +1 -0
- package/typescript/dist/src/components/charts/BenchmarkCard.js +23 -0
- package/typescript/dist/src/components/charts/BenchmarkCard.js.map +1 -0
- package/typescript/dist/src/components/charts/ComparisonBar.d.ts +11 -0
- package/typescript/dist/src/components/charts/ComparisonBar.d.ts.map +1 -0
- package/typescript/dist/src/components/charts/ComparisonBar.js +34 -0
- package/typescript/dist/src/components/charts/ComparisonBar.js.map +1 -0
- package/typescript/dist/src/components/charts/PercentileGauge.d.ts +10 -0
- package/typescript/dist/src/components/charts/PercentileGauge.d.ts.map +1 -0
- package/typescript/dist/src/components/charts/PercentileGauge.js +68 -0
- package/typescript/dist/src/components/charts/PercentileGauge.js.map +1 -0
- package/typescript/dist/src/components/charts/index.d.ts +4 -0
- package/typescript/dist/src/components/charts/index.d.ts.map +1 -0
- package/typescript/dist/src/components/charts/index.js +4 -0
- package/typescript/dist/src/components/charts/index.js.map +1 -0
- package/typescript/dist/src/components/filters/FilterPanel.d.ts +9 -0
- package/typescript/dist/src/components/filters/FilterPanel.d.ts.map +1 -0
- package/typescript/dist/src/components/filters/FilterPanel.js +42 -0
- package/typescript/dist/src/components/filters/FilterPanel.js.map +1 -0
- package/typescript/dist/src/components/filters/index.d.ts +2 -0
- package/typescript/dist/src/components/filters/index.d.ts.map +1 -0
- package/typescript/dist/src/components/filters/index.js +2 -0
- package/typescript/dist/src/components/filters/index.js.map +1 -0
- package/typescript/dist/src/components/ui/Button.d.ts +8 -0
- package/typescript/dist/src/components/ui/Button.d.ts.map +1 -0
- package/typescript/dist/src/components/ui/Button.js +16 -0
- package/typescript/dist/src/components/ui/Button.js.map +1 -0
- package/typescript/dist/src/components/ui/Card.d.ts +14 -0
- package/typescript/dist/src/components/ui/Card.d.ts.map +1 -0
- package/typescript/dist/src/components/ui/Card.js +27 -0
- package/typescript/dist/src/components/ui/Card.js.map +1 -0
- package/typescript/dist/src/components/ui/Input.d.ts +9 -0
- package/typescript/dist/src/components/ui/Input.d.ts.map +1 -0
- package/typescript/dist/src/components/ui/Input.js +13 -0
- package/typescript/dist/src/components/ui/Input.js.map +1 -0
- package/typescript/dist/src/components/ui/Select.d.ts +14 -0
- package/typescript/dist/src/components/ui/Select.d.ts.map +1 -0
- package/typescript/dist/src/components/ui/Select.js +13 -0
- package/typescript/dist/src/components/ui/Select.js.map +1 -0
- package/typescript/dist/src/components/ui/index.d.ts +5 -0
- package/typescript/dist/src/components/ui/index.d.ts.map +1 -0
- package/typescript/dist/src/components/ui/index.js +5 -0
- package/typescript/dist/src/components/ui/index.js.map +1 -0
- package/typescript/dist/src/index.d.ts +4 -0
- package/typescript/dist/src/index.d.ts.map +1 -0
- package/typescript/dist/src/index.js +4 -0
- package/typescript/dist/src/index.js.map +1 -0
- package/typescript/dist/src/layouts/MainLayout.d.ts +2 -0
- package/typescript/dist/src/layouts/MainLayout.d.ts.map +1 -0
- package/typescript/dist/src/layouts/MainLayout.js +45 -0
- package/typescript/dist/src/layouts/MainLayout.js.map +1 -0
- package/typescript/dist/src/lib/api/benchmarks.d.ts +87 -0
- package/typescript/dist/src/lib/api/benchmarks.d.ts.map +1 -0
- package/typescript/dist/src/lib/api/benchmarks.js +274 -0
- package/typescript/dist/src/lib/api/benchmarks.js.map +1 -0
- package/typescript/dist/src/lib/api/index.d.ts +2 -0
- package/typescript/dist/src/lib/api/index.d.ts.map +1 -0
- package/typescript/dist/src/lib/api/index.js +2 -0
- package/typescript/dist/src/lib/api/index.js.map +1 -0
- package/typescript/dist/src/lib/mock-data/accident-benchmarks.d.ts +33 -0
- package/typescript/dist/src/lib/mock-data/accident-benchmarks.d.ts.map +1 -0
- package/typescript/dist/src/lib/mock-data/accident-benchmarks.js +124 -0
- package/typescript/dist/src/lib/mock-data/accident-benchmarks.js.map +1 -0
- package/typescript/dist/src/lib/mock-data/basic-life-benchmarks.d.ts +47 -0
- package/typescript/dist/src/lib/mock-data/basic-life-benchmarks.d.ts.map +1 -0
- package/typescript/dist/src/lib/mock-data/basic-life-benchmarks.js +83 -0
- package/typescript/dist/src/lib/mock-data/basic-life-benchmarks.js.map +1 -0
- package/typescript/dist/src/lib/mock-data/critical-illness-benchmarks.d.ts +39 -0
- package/typescript/dist/src/lib/mock-data/critical-illness-benchmarks.d.ts.map +1 -0
- package/typescript/dist/src/lib/mock-data/critical-illness-benchmarks.js +130 -0
- package/typescript/dist/src/lib/mock-data/critical-illness-benchmarks.js.map +1 -0
- package/typescript/dist/src/lib/mock-data/dental-benchmarks.d.ts +42 -0
- package/typescript/dist/src/lib/mock-data/dental-benchmarks.d.ts.map +1 -0
- package/typescript/dist/src/lib/mock-data/dental-benchmarks.js +137 -0
- package/typescript/dist/src/lib/mock-data/dental-benchmarks.js.map +1 -0
- package/typescript/dist/src/lib/mock-data/hospital-indemnity-benchmarks.d.ts +37 -0
- package/typescript/dist/src/lib/mock-data/hospital-indemnity-benchmarks.d.ts.map +1 -0
- package/typescript/dist/src/lib/mock-data/hospital-indemnity-benchmarks.js +128 -0
- package/typescript/dist/src/lib/mock-data/hospital-indemnity-benchmarks.js.map +1 -0
- package/typescript/dist/src/lib/mock-data/index.d.ts +3 -0
- package/typescript/dist/src/lib/mock-data/index.d.ts.map +1 -0
- package/typescript/dist/src/lib/mock-data/index.js +3 -0
- package/typescript/dist/src/lib/mock-data/index.js.map +1 -0
- package/typescript/dist/src/lib/mock-data/ltd-benchmarks.d.ts +59 -0
- package/typescript/dist/src/lib/mock-data/ltd-benchmarks.d.ts.map +1 -0
- package/typescript/dist/src/lib/mock-data/ltd-benchmarks.js +127 -0
- package/typescript/dist/src/lib/mock-data/ltd-benchmarks.js.map +1 -0
- package/typescript/dist/src/lib/mock-data/std-benchmarks.d.ts +51 -0
- package/typescript/dist/src/lib/mock-data/std-benchmarks.d.ts.map +1 -0
- package/typescript/dist/src/lib/mock-data/std-benchmarks.js +111 -0
- package/typescript/dist/src/lib/mock-data/std-benchmarks.js.map +1 -0
- package/typescript/dist/src/lib/mock-data/vision-benchmarks.d.ts +32 -0
- package/typescript/dist/src/lib/mock-data/vision-benchmarks.d.ts.map +1 -0
- package/typescript/dist/src/lib/mock-data/vision-benchmarks.js +151 -0
- package/typescript/dist/src/lib/mock-data/vision-benchmarks.js.map +1 -0
- package/typescript/dist/src/lib/mock-data/voluntary-life-benchmarks.d.ts +39 -0
- package/typescript/dist/src/lib/mock-data/voluntary-life-benchmarks.d.ts.map +1 -0
- package/typescript/dist/src/lib/mock-data/voluntary-life-benchmarks.js +97 -0
- package/typescript/dist/src/lib/mock-data/voluntary-life-benchmarks.js.map +1 -0
- package/typescript/dist/src/lib/transformers/api-to-internal.d.ts +42 -0
- package/typescript/dist/src/lib/transformers/api-to-internal.d.ts.map +1 -0
- package/typescript/dist/src/lib/transformers/api-to-internal.js +206 -0
- package/typescript/dist/src/lib/transformers/api-to-internal.js.map +1 -0
- package/typescript/dist/src/lib/transformers/index.d.ts +2 -0
- package/typescript/dist/src/lib/transformers/index.d.ts.map +1 -0
- package/typescript/dist/src/lib/transformers/index.js +2 -0
- package/typescript/dist/src/lib/transformers/index.js.map +1 -0
- package/typescript/dist/src/lib/types/accident.d.ts +46 -0
- package/typescript/dist/src/lib/types/accident.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/accident.js +223 -0
- package/typescript/dist/src/lib/types/accident.js.map +1 -0
- package/typescript/dist/src/lib/types/api-schema.d.ts +476 -0
- package/typescript/dist/src/lib/types/api-schema.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/api-schema.js +2 -0
- package/typescript/dist/src/lib/types/api-schema.js.map +1 -0
- package/typescript/dist/src/lib/types/basic-life.d.ts +30 -0
- package/typescript/dist/src/lib/types/basic-life.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/basic-life.js +137 -0
- package/typescript/dist/src/lib/types/basic-life.js.map +1 -0
- package/typescript/dist/src/lib/types/common.d.ts +99 -0
- package/typescript/dist/src/lib/types/common.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/common.js +29 -0
- package/typescript/dist/src/lib/types/common.js.map +1 -0
- package/typescript/dist/src/lib/types/critical-illness.d.ts +52 -0
- package/typescript/dist/src/lib/types/critical-illness.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/critical-illness.js +254 -0
- package/typescript/dist/src/lib/types/critical-illness.js.map +1 -0
- package/typescript/dist/src/lib/types/dental.d.ts +41 -0
- package/typescript/dist/src/lib/types/dental.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/dental.js +188 -0
- package/typescript/dist/src/lib/types/dental.js.map +1 -0
- package/typescript/dist/src/lib/types/hospital-indemnity.d.ts +41 -0
- package/typescript/dist/src/lib/types/hospital-indemnity.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/hospital-indemnity.js +191 -0
- package/typescript/dist/src/lib/types/hospital-indemnity.js.map +1 -0
- package/typescript/dist/src/lib/types/index.d.ts +12 -0
- package/typescript/dist/src/lib/types/index.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/index.js +12 -0
- package/typescript/dist/src/lib/types/index.js.map +1 -0
- package/typescript/dist/src/lib/types/ltd.d.ts +42 -0
- package/typescript/dist/src/lib/types/ltd.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/ltd.js +200 -0
- package/typescript/dist/src/lib/types/ltd.js.map +1 -0
- package/typescript/dist/src/lib/types/std.d.ts +31 -0
- package/typescript/dist/src/lib/types/std.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/std.js +144 -0
- package/typescript/dist/src/lib/types/std.js.map +1 -0
- package/typescript/dist/src/lib/types/vision.d.ts +31 -0
- package/typescript/dist/src/lib/types/vision.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/vision.js +129 -0
- package/typescript/dist/src/lib/types/vision.js.map +1 -0
- package/typescript/dist/src/lib/types/voluntary-life.d.ts +33 -0
- package/typescript/dist/src/lib/types/voluntary-life.d.ts.map +1 -0
- package/typescript/dist/src/lib/types/voluntary-life.js +144 -0
- package/typescript/dist/src/lib/types/voluntary-life.js.map +1 -0
- package/typescript/dist/src/lib/utils/format.d.ts +11 -0
- package/typescript/dist/src/lib/utils/format.d.ts.map +1 -0
- package/typescript/dist/src/lib/utils/format.js +95 -0
- package/typescript/dist/src/lib/utils/format.js.map +1 -0
- package/typescript/dist/src/lib/utils/index.d.ts +2 -0
- package/typescript/dist/src/lib/utils/index.d.ts.map +1 -0
- package/typescript/dist/src/lib/utils/index.js +2 -0
- package/typescript/dist/src/lib/utils/index.js.map +1 -0
- package/typescript/dist/src/main.d.ts +2 -0
- package/typescript/dist/src/main.d.ts.map +1 -0
- package/typescript/dist/src/main.js +20 -0
- package/typescript/dist/src/main.js.map +1 -0
- package/typescript/dist/src/pages/AccidentComparison.d.ts +2 -0
- package/typescript/dist/src/pages/AccidentComparison.d.ts.map +1 -0
- package/typescript/dist/src/pages/AccidentComparison.js +56 -0
- package/typescript/dist/src/pages/AccidentComparison.js.map +1 -0
- package/typescript/dist/src/pages/AccidentExplorer.d.ts +2 -0
- package/typescript/dist/src/pages/AccidentExplorer.d.ts.map +1 -0
- package/typescript/dist/src/pages/AccidentExplorer.js +29 -0
- package/typescript/dist/src/pages/AccidentExplorer.js.map +1 -0
- package/typescript/dist/src/pages/BasicLifeComparison.d.ts +2 -0
- package/typescript/dist/src/pages/BasicLifeComparison.d.ts.map +1 -0
- package/typescript/dist/src/pages/BasicLifeComparison.js +59 -0
- package/typescript/dist/src/pages/BasicLifeComparison.js.map +1 -0
- package/typescript/dist/src/pages/BasicLifeExplorer.d.ts +2 -0
- package/typescript/dist/src/pages/BasicLifeExplorer.d.ts.map +1 -0
- package/typescript/dist/src/pages/BasicLifeExplorer.js +29 -0
- package/typescript/dist/src/pages/BasicLifeExplorer.js.map +1 -0
- package/typescript/dist/src/pages/CriticalIllnessComparison.d.ts +2 -0
- package/typescript/dist/src/pages/CriticalIllnessComparison.d.ts.map +1 -0
- package/typescript/dist/src/pages/CriticalIllnessComparison.js +56 -0
- package/typescript/dist/src/pages/CriticalIllnessComparison.js.map +1 -0
- package/typescript/dist/src/pages/CriticalIllnessExplorer.d.ts +2 -0
- package/typescript/dist/src/pages/CriticalIllnessExplorer.d.ts.map +1 -0
- package/typescript/dist/src/pages/CriticalIllnessExplorer.js +29 -0
- package/typescript/dist/src/pages/CriticalIllnessExplorer.js.map +1 -0
- package/typescript/dist/src/pages/Dashboard.d.ts +2 -0
- package/typescript/dist/src/pages/Dashboard.d.ts.map +1 -0
- package/typescript/dist/src/pages/Dashboard.js +8 -0
- package/typescript/dist/src/pages/Dashboard.js.map +1 -0
- package/typescript/dist/src/pages/DentalComparison.d.ts +2 -0
- package/typescript/dist/src/pages/DentalComparison.d.ts.map +1 -0
- package/typescript/dist/src/pages/DentalComparison.js +64 -0
- package/typescript/dist/src/pages/DentalComparison.js.map +1 -0
- package/typescript/dist/src/pages/DentalExplorer.d.ts +2 -0
- package/typescript/dist/src/pages/DentalExplorer.d.ts.map +1 -0
- package/typescript/dist/src/pages/DentalExplorer.js +29 -0
- package/typescript/dist/src/pages/DentalExplorer.js.map +1 -0
- package/typescript/dist/src/pages/HospitalIndemnityComparison.d.ts +2 -0
- package/typescript/dist/src/pages/HospitalIndemnityComparison.d.ts.map +1 -0
- package/typescript/dist/src/pages/HospitalIndemnityComparison.js +53 -0
- package/typescript/dist/src/pages/HospitalIndemnityComparison.js.map +1 -0
- package/typescript/dist/src/pages/HospitalIndemnityExplorer.d.ts +2 -0
- package/typescript/dist/src/pages/HospitalIndemnityExplorer.d.ts.map +1 -0
- package/typescript/dist/src/pages/HospitalIndemnityExplorer.js +29 -0
- package/typescript/dist/src/pages/HospitalIndemnityExplorer.js.map +1 -0
- package/typescript/dist/src/pages/LTDComparison.d.ts +2 -0
- package/typescript/dist/src/pages/LTDComparison.d.ts.map +1 -0
- package/typescript/dist/src/pages/LTDComparison.js +64 -0
- package/typescript/dist/src/pages/LTDComparison.js.map +1 -0
- package/typescript/dist/src/pages/LTDExplorer.d.ts +2 -0
- package/typescript/dist/src/pages/LTDExplorer.d.ts.map +1 -0
- package/typescript/dist/src/pages/LTDExplorer.js +29 -0
- package/typescript/dist/src/pages/LTDExplorer.js.map +1 -0
- package/typescript/dist/src/pages/STDComparison.d.ts +2 -0
- package/typescript/dist/src/pages/STDComparison.d.ts.map +1 -0
- package/typescript/dist/src/pages/STDComparison.js +58 -0
- package/typescript/dist/src/pages/STDComparison.js.map +1 -0
- package/typescript/dist/src/pages/STDExplorer.d.ts +2 -0
- package/typescript/dist/src/pages/STDExplorer.d.ts.map +1 -0
- package/typescript/dist/src/pages/STDExplorer.js +29 -0
- package/typescript/dist/src/pages/STDExplorer.js.map +1 -0
- package/typescript/dist/src/pages/VisionComparison.d.ts +2 -0
- package/typescript/dist/src/pages/VisionComparison.d.ts.map +1 -0
- package/typescript/dist/src/pages/VisionComparison.js +64 -0
- package/typescript/dist/src/pages/VisionComparison.js.map +1 -0
- package/typescript/dist/src/pages/VisionExplorer.d.ts +2 -0
- package/typescript/dist/src/pages/VisionExplorer.d.ts.map +1 -0
- package/typescript/dist/src/pages/VisionExplorer.js +29 -0
- package/typescript/dist/src/pages/VisionExplorer.js.map +1 -0
- package/typescript/dist/src/pages/VoluntaryLifeComparison.d.ts +2 -0
- package/typescript/dist/src/pages/VoluntaryLifeComparison.d.ts.map +1 -0
- package/typescript/dist/src/pages/VoluntaryLifeComparison.js +51 -0
- package/typescript/dist/src/pages/VoluntaryLifeComparison.js.map +1 -0
- package/typescript/dist/src/pages/VoluntaryLifeExplorer.d.ts +2 -0
- package/typescript/dist/src/pages/VoluntaryLifeExplorer.d.ts.map +1 -0
- package/typescript/dist/src/pages/VoluntaryLifeExplorer.js +29 -0
- package/typescript/dist/src/pages/VoluntaryLifeExplorer.js.map +1 -0
- package/typescript/dist/src/runtime/index.d.ts +2 -0
- package/typescript/dist/src/runtime/index.d.ts.map +1 -0
- package/typescript/dist/src/runtime/index.js +2 -0
- package/typescript/dist/src/runtime/index.js.map +1 -0
- package/typescript/dist/src/runtime/lifecycle.d.ts +16 -0
- package/typescript/dist/src/runtime/lifecycle.d.ts.map +1 -0
- package/typescript/dist/src/runtime/lifecycle.js +50 -0
- package/typescript/dist/src/runtime/lifecycle.js.map +1 -0
- package/typescript/dist/src/server/abort-support.d.ts +20 -0
- package/typescript/dist/src/server/abort-support.d.ts.map +1 -0
- package/typescript/dist/src/server/abort-support.js +101 -0
- package/typescript/dist/src/server/abort-support.js.map +1 -0
- package/typescript/dist/src/server/advanced-memory-monitor.d.ts +189 -0
- package/typescript/dist/src/server/advanced-memory-monitor.d.ts.map +1 -0
- package/typescript/dist/src/server/advanced-memory-monitor.js +718 -0
- package/typescript/dist/src/server/advanced-memory-monitor.js.map +1 -0
- package/typescript/dist/src/server/architecture-detector.d.ts +72 -0
- package/typescript/dist/src/server/architecture-detector.d.ts.map +1 -0
- package/typescript/dist/src/server/architecture-detector.js +282 -0
- package/typescript/dist/src/server/architecture-detector.js.map +1 -0
- package/typescript/dist/src/server/batch-processor-tool.d.ts +69 -0
- package/typescript/dist/src/server/batch-processor-tool.d.ts.map +1 -0
- package/typescript/dist/src/server/batch-processor-tool.js +651 -0
- package/typescript/dist/src/server/batch-processor-tool.js.map +1 -0
- package/typescript/dist/src/server/batch-processor.d.ts +73 -0
- package/typescript/dist/src/server/batch-processor.d.ts.map +1 -0
- package/typescript/dist/src/server/batch-processor.js +264 -0
- package/typescript/dist/src/server/batch-processor.js.map +1 -0
- package/typescript/dist/src/server/browser-stub.d.ts +18 -0
- package/typescript/dist/src/server/browser-stub.d.ts.map +1 -0
- package/typescript/dist/src/server/browser-stub.js +21 -0
- package/typescript/dist/src/server/browser-stub.js.map +1 -0
- package/typescript/dist/src/server/cache.d.ts +92 -0
- package/typescript/dist/src/server/cache.d.ts.map +1 -0
- package/typescript/dist/src/server/cache.js +217 -0
- package/typescript/dist/src/server/cache.js.map +1 -0
- package/typescript/dist/src/server/circular-deps.d.ts +85 -0
- package/typescript/dist/src/server/circular-deps.d.ts.map +1 -0
- package/typescript/dist/src/server/circular-deps.js +331 -0
- package/typescript/dist/src/server/circular-deps.js.map +1 -0
- package/typescript/dist/src/server/claude-code-env.d.ts +50 -0
- package/typescript/dist/src/server/claude-code-env.d.ts.map +1 -0
- package/typescript/dist/src/server/claude-code-env.js +116 -0
- package/typescript/dist/src/server/claude-code-env.js.map +1 -0
- package/typescript/dist/src/server/code-analysis-tool.d.ts +79 -0
- package/typescript/dist/src/server/code-analysis-tool.d.ts.map +1 -0
- package/typescript/dist/src/server/code-analysis-tool.js +94 -0
- package/typescript/dist/src/server/code-analysis-tool.js.map +1 -0
- package/typescript/dist/src/server/code-analysis.d.ts +16 -0
- package/typescript/dist/src/server/code-analysis.d.ts.map +1 -0
- package/typescript/dist/src/server/code-analysis.js +462 -0
- package/typescript/dist/src/server/code-analysis.js.map +1 -0
- package/typescript/dist/src/server/code-transformation.d.ts +141 -0
- package/typescript/dist/src/server/code-transformation.d.ts.map +1 -0
- package/typescript/dist/src/server/code-transformation.js +918 -0
- package/typescript/dist/src/server/code-transformation.js.map +1 -0
- package/typescript/dist/src/server/comprehensive-code-analysis.d.ts +77 -0
- package/typescript/dist/src/server/comprehensive-code-analysis.d.ts.map +1 -0
- package/typescript/dist/src/server/comprehensive-code-analysis.js +613 -0
- package/typescript/dist/src/server/comprehensive-code-analysis.js.map +1 -0
- package/typescript/dist/src/server/concurrency.d.ts +5 -0
- package/typescript/dist/src/server/concurrency.d.ts.map +1 -0
- package/typescript/dist/src/server/concurrency.js +20 -0
- package/typescript/dist/src/server/concurrency.js.map +1 -0
- package/typescript/dist/src/server/context-manager.d.ts +97 -0
- package/typescript/dist/src/server/context-manager.d.ts.map +1 -0
- package/typescript/dist/src/server/context-manager.js +410 -0
- package/typescript/dist/src/server/context-manager.js.map +1 -0
- package/typescript/dist/src/server/context-session-manager.d.ts +47 -0
- package/typescript/dist/src/server/context-session-manager.d.ts.map +1 -0
- package/typescript/dist/src/server/context-session-manager.js +594 -0
- package/typescript/dist/src/server/context-session-manager.js.map +1 -0
- package/typescript/dist/src/server/context.d.ts +66 -0
- package/typescript/dist/src/server/context.d.ts.map +1 -0
- package/typescript/dist/src/server/context.js +275 -0
- package/typescript/dist/src/server/context.js.map +1 -0
- package/typescript/dist/src/server/dependency-analyzer.d.ts +100 -0
- package/typescript/dist/src/server/dependency-analyzer.d.ts.map +1 -0
- package/typescript/dist/src/server/dependency-analyzer.js +1117 -0
- package/typescript/dist/src/server/dependency-analyzer.js.map +1 -0
- package/typescript/dist/src/server/error-handling.d.ts +106 -0
- package/typescript/dist/src/server/error-handling.d.ts.map +1 -0
- package/typescript/dist/src/server/error-handling.js +363 -0
- package/typescript/dist/src/server/error-handling.js.map +1 -0
- package/typescript/dist/src/server/file-discovery.d.ts +60 -0
- package/typescript/dist/src/server/file-discovery.d.ts.map +1 -0
- package/typescript/dist/src/server/file-discovery.js +282 -0
- package/typescript/dist/src/server/file-discovery.js.map +1 -0
- package/typescript/dist/src/server/file-streaming.d.ts +152 -0
- package/typescript/dist/src/server/file-streaming.d.ts.map +1 -0
- package/typescript/dist/src/server/file-streaming.js +627 -0
- package/typescript/dist/src/server/file-streaming.js.map +1 -0
- package/typescript/dist/src/server/files.d.ts +100 -0
- package/typescript/dist/src/server/files.d.ts.map +1 -0
- package/typescript/dist/src/server/files.js +609 -0
- package/typescript/dist/src/server/files.js.map +1 -0
- package/typescript/dist/src/server/index.d.ts +54 -0
- package/typescript/dist/src/server/index.d.ts.map +1 -0
- package/typescript/dist/src/server/index.js +54 -0
- package/typescript/dist/src/server/index.js.map +1 -0
- package/typescript/dist/src/server/logger.d.ts +95 -0
- package/typescript/dist/src/server/logger.d.ts.map +1 -0
- package/typescript/dist/src/server/logger.js +271 -0
- package/typescript/dist/src/server/logger.js.map +1 -0
- package/typescript/dist/src/server/memory-aware-cache.d.ts +169 -0
- package/typescript/dist/src/server/memory-aware-cache.d.ts.map +1 -0
- package/typescript/dist/src/server/memory-aware-cache.js +655 -0
- package/typescript/dist/src/server/memory-aware-cache.js.map +1 -0
- package/typescript/dist/src/server/memory-monitor-tool.d.ts +46 -0
- package/typescript/dist/src/server/memory-monitor-tool.d.ts.map +1 -0
- package/typescript/dist/src/server/memory-monitor-tool.js +381 -0
- package/typescript/dist/src/server/memory-monitor-tool.js.map +1 -0
- package/typescript/dist/src/server/memory-monitor.d.ts +79 -0
- package/typescript/dist/src/server/memory-monitor.d.ts.map +1 -0
- package/typescript/dist/src/server/memory-monitor.js +333 -0
- package/typescript/dist/src/server/memory-monitor.js.map +1 -0
- package/typescript/dist/src/server/optimization-engine.d.ts +68 -0
- package/typescript/dist/src/server/optimization-engine.d.ts.map +1 -0
- package/typescript/dist/src/server/optimization-engine.js +728 -0
- package/typescript/dist/src/server/optimization-engine.js.map +1 -0
- package/typescript/dist/src/server/path-manager.d.ts +46 -0
- package/typescript/dist/src/server/path-manager.d.ts.map +1 -0
- package/typescript/dist/src/server/path-manager.js +155 -0
- package/typescript/dist/src/server/path-manager.js.map +1 -0
- package/typescript/dist/src/server/pattern-analyzer.d.ts +69 -0
- package/typescript/dist/src/server/pattern-analyzer.d.ts.map +1 -0
- package/typescript/dist/src/server/pattern-analyzer.js +497 -0
- package/typescript/dist/src/server/pattern-analyzer.js.map +1 -0
- package/typescript/dist/src/server/performance-observer.d.ts +61 -0
- package/typescript/dist/src/server/performance-observer.d.ts.map +1 -0
- package/typescript/dist/src/server/performance-observer.js +394 -0
- package/typescript/dist/src/server/performance-observer.js.map +1 -0
- package/typescript/dist/src/server/performance.d.ts +121 -0
- package/typescript/dist/src/server/performance.d.ts.map +1 -0
- package/typescript/dist/src/server/performance.js +520 -0
- package/typescript/dist/src/server/performance.js.map +1 -0
- package/typescript/dist/src/server/report-generator.d.ts +131 -0
- package/typescript/dist/src/server/report-generator.d.ts.map +1 -0
- package/typescript/dist/src/server/report-generator.js +1158 -0
- package/typescript/dist/src/server/report-generator.js.map +1 -0
- package/typescript/dist/src/server/resource-lifecycle-manager.d.ts +231 -0
- package/typescript/dist/src/server/resource-lifecycle-manager.d.ts.map +1 -0
- package/typescript/dist/src/server/resource-lifecycle-manager.js +839 -0
- package/typescript/dist/src/server/resource-lifecycle-manager.js.map +1 -0
- package/typescript/dist/src/server/retry-operations.d.ts +59 -0
- package/typescript/dist/src/server/retry-operations.d.ts.map +1 -0
- package/typescript/dist/src/server/retry-operations.js +68 -0
- package/typescript/dist/src/server/retry-operations.js.map +1 -0
- package/typescript/dist/src/server/retry.d.ts +18 -0
- package/typescript/dist/src/server/retry.d.ts.map +1 -0
- package/typescript/dist/src/server/retry.js +44 -0
- package/typescript/dist/src/server/retry.js.map +1 -0
- package/typescript/dist/src/server/retryable.d.ts +2 -0
- package/typescript/dist/src/server/retryable.d.ts.map +1 -0
- package/typescript/dist/src/server/retryable.js +21 -0
- package/typescript/dist/src/server/retryable.js.map +1 -0
- package/typescript/dist/src/server/scheduler.d.ts +4 -0
- package/typescript/dist/src/server/scheduler.d.ts.map +1 -0
- package/typescript/dist/src/server/scheduler.js +21 -0
- package/typescript/dist/src/server/scheduler.js.map +1 -0
- package/typescript/dist/src/server/security-scanner.d.ts +59 -0
- package/typescript/dist/src/server/security-scanner.d.ts.map +1 -0
- package/typescript/dist/src/server/security-scanner.js +915 -0
- package/typescript/dist/src/server/security-scanner.js.map +1 -0
- package/typescript/dist/src/server/security.d.ts +25 -0
- package/typescript/dist/src/server/security.d.ts.map +1 -0
- package/typescript/dist/src/server/security.js +298 -0
- package/typescript/dist/src/server/security.js.map +1 -0
- package/typescript/dist/src/server/session-management.d.ts +103 -0
- package/typescript/dist/src/server/session-management.d.ts.map +1 -0
- package/typescript/dist/src/server/session-management.js +149 -0
- package/typescript/dist/src/server/session-management.js.map +1 -0
- package/typescript/dist/src/server/session-recovery.d.ts +91 -0
- package/typescript/dist/src/server/session-recovery.d.ts.map +1 -0
- package/typescript/dist/src/server/session-recovery.js +384 -0
- package/typescript/dist/src/server/session-recovery.js.map +1 -0
- package/typescript/dist/src/server/session.d.ts +18 -0
- package/typescript/dist/src/server/session.d.ts.map +1 -0
- package/typescript/dist/src/server/session.js +46 -0
- package/typescript/dist/src/server/session.js.map +1 -0
- package/typescript/dist/src/server/simple-tools.d.ts +15 -0
- package/typescript/dist/src/server/simple-tools.d.ts.map +1 -0
- package/typescript/dist/src/server/simple-tools.js +15 -0
- package/typescript/dist/src/server/simple-tools.js.map +1 -0
- package/typescript/dist/src/server/streaming-utilities.d.ts +107 -0
- package/typescript/dist/src/server/streaming-utilities.d.ts.map +1 -0
- package/typescript/dist/src/server/streaming-utilities.js +822 -0
- package/typescript/dist/src/server/streaming-utilities.js.map +1 -0
- package/typescript/dist/src/server/streams.d.ts +48 -0
- package/typescript/dist/src/server/streams.d.ts.map +1 -0
- package/typescript/dist/src/server/streams.js +489 -0
- package/typescript/dist/src/server/streams.js.map +1 -0
- package/typescript/dist/src/server/stringify-advanced.d.ts +31 -0
- package/typescript/dist/src/server/stringify-advanced.d.ts.map +1 -0
- package/typescript/dist/src/server/stringify-advanced.js +183 -0
- package/typescript/dist/src/server/stringify-advanced.js.map +1 -0
- package/typescript/dist/src/server/structured-clone-tool.d.ts +101 -0
- package/typescript/dist/src/server/structured-clone-tool.d.ts.map +1 -0
- package/typescript/dist/src/server/structured-clone-tool.js +450 -0
- package/typescript/dist/src/server/structured-clone-tool.js.map +1 -0
- package/typescript/dist/src/server/structured-clone.d.ts +59 -0
- package/typescript/dist/src/server/structured-clone.d.ts.map +1 -0
- package/typescript/dist/src/server/structured-clone.js +307 -0
- package/typescript/dist/src/server/structured-clone.js.map +1 -0
- package/typescript/dist/src/server/test-runner.d.ts +78 -0
- package/typescript/dist/src/server/test-runner.d.ts.map +1 -0
- package/typescript/dist/src/server/test-runner.js +1024 -0
- package/typescript/dist/src/server/test-runner.js.map +1 -0
- package/typescript/dist/src/server/tool-helpers.d.ts +6 -0
- package/typescript/dist/src/server/tool-helpers.d.ts.map +1 -0
- package/typescript/dist/src/server/tool-helpers.js +27 -0
- package/typescript/dist/src/server/tool-helpers.js.map +1 -0
- package/typescript/dist/src/server/validation.d.ts +79 -0
- package/typescript/dist/src/server/validation.d.ts.map +1 -0
- package/typescript/dist/src/server/validation.js +613 -0
- package/typescript/dist/src/server/validation.js.map +1 -0
- package/typescript/dist/src/server/worker-pool.d.ts +87 -0
- package/typescript/dist/src/server/worker-pool.d.ts.map +1 -0
- package/typescript/dist/src/server/worker-pool.js +586 -0
- package/typescript/dist/src/server/worker-pool.js.map +1 -0
- package/typescript/dist/src/server/worker-threads.d.ts +95 -0
- package/typescript/dist/src/server/worker-threads.d.ts.map +1 -0
- package/typescript/dist/src/server/worker-threads.js +1074 -0
- package/typescript/dist/src/server/worker-threads.js.map +1 -0
- package/typescript/dist/src/server/workflow-orchestrator.d.ts +122 -0
- package/typescript/dist/src/server/workflow-orchestrator.d.ts.map +1 -0
- package/typescript/dist/src/server/workflow-orchestrator.js +2131 -0
- package/typescript/dist/src/server/workflow-orchestrator.js.map +1 -0
- package/typescript/dist/src/server/worktree-manager.d.ts +70 -0
- package/typescript/dist/src/server/worktree-manager.d.ts.map +1 -0
- package/typescript/dist/src/server/worktree-manager.js +741 -0
- package/typescript/dist/src/server/worktree-manager.js.map +1 -0
- package/typescript/dist/src/shared/constants.d.ts +5 -0
- package/typescript/dist/src/shared/constants.d.ts.map +1 -0
- package/typescript/dist/src/shared/constants.js +5 -0
- package/typescript/dist/src/shared/constants.js.map +1 -0
- package/typescript/dist/src/shared/entity-config.d.ts +76 -0
- package/typescript/dist/src/shared/entity-config.d.ts.map +1 -0
- package/typescript/dist/src/shared/entity-config.js +2 -0
- package/typescript/dist/src/shared/entity-config.js.map +1 -0
- package/typescript/dist/src/shared/environment.d.ts +18 -0
- package/typescript/dist/src/shared/environment.d.ts.map +1 -0
- package/typescript/dist/src/shared/environment.js +39 -0
- package/typescript/dist/src/shared/environment.js.map +1 -0
- package/typescript/dist/src/shared/index.d.ts +6 -0
- package/typescript/dist/src/shared/index.d.ts.map +1 -0
- package/typescript/dist/src/shared/index.js +6 -0
- package/typescript/dist/src/shared/index.js.map +1 -0
- package/typescript/dist/src/shared/stringify.d.ts +16 -0
- package/typescript/dist/src/shared/stringify.d.ts.map +1 -0
- package/typescript/dist/src/shared/stringify.js +195 -0
- package/typescript/dist/src/shared/stringify.js.map +1 -0
- package/typescript/dist/src/shared/timeout.d.ts +27 -0
- package/typescript/dist/src/shared/timeout.d.ts.map +1 -0
- package/typescript/dist/src/shared/timeout.js +196 -0
- package/typescript/dist/src/shared/timeout.js.map +1 -0
- package/typescript/dist/src/types/mcp.d.ts +23 -0
- package/typescript/dist/src/types/mcp.d.ts.map +1 -0
- package/typescript/dist/src/types/mcp.js +2 -0
- package/typescript/dist/src/types/mcp.js.map +1 -0
- package/typescript/dist/tsconfig.tsbuildinfo +1 -0
- package/typescript/dist/vite.config.d.ts +3 -0
- package/typescript/dist/vite.config.d.ts.map +1 -0
- package/typescript/dist/vite.config.js +12 -0
- package/typescript/dist/vite.config.js.map +1 -0
- package/typescript/nextjs.json +17 -0
- package/typescript/node.json +10 -0
- package/typescript/react-native.json +8 -0
- package/typescript/react.json +12 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
export const ltdBenchmarks = [
|
|
2
|
+
{
|
|
3
|
+
field: 'benefitPercentage',
|
|
4
|
+
label: 'Benefit Percentage',
|
|
5
|
+
priority: 1,
|
|
6
|
+
percentiles: { p10: 50, p25: 60, p50: 60, p75: 66.67, p90: 70 },
|
|
7
|
+
unit: 'percentage',
|
|
8
|
+
sampleSize: 4200,
|
|
9
|
+
description: 'Percentage of salary replaced',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
field: 'monthlyMaximum',
|
|
13
|
+
label: 'Monthly Maximum',
|
|
14
|
+
priority: 1,
|
|
15
|
+
percentiles: { p10: 5000, p25: 6000, p50: 10000, p75: 15000, p90: 20000 },
|
|
16
|
+
unit: 'currency',
|
|
17
|
+
sampleSize: 4200,
|
|
18
|
+
description: 'Maximum monthly benefit amount',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
field: 'eliminationPeriod',
|
|
22
|
+
label: 'Elimination Period',
|
|
23
|
+
priority: 1,
|
|
24
|
+
percentiles: { p10: 90, p25: 90, p50: 90, p75: 180, p90: 180 },
|
|
25
|
+
unit: 'days',
|
|
26
|
+
sampleSize: 4200,
|
|
27
|
+
description: 'Days before LTD benefits begin',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
field: 'ownOccupationPeriod',
|
|
31
|
+
label: 'Own Occupation Period',
|
|
32
|
+
priority: 2,
|
|
33
|
+
percentiles: { p10: 12, p25: 24, p50: 24, p75: 60, p90: 120 },
|
|
34
|
+
unit: 'months',
|
|
35
|
+
sampleSize: 4200,
|
|
36
|
+
description: 'Months of own-occupation definition',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
field: 'mentalIllnessLimitMonths',
|
|
40
|
+
label: 'Mental Illness Limitation',
|
|
41
|
+
priority: 2,
|
|
42
|
+
percentiles: { p10: 12, p25: 24, p50: 24, p75: 24, p90: 60 },
|
|
43
|
+
unit: 'months',
|
|
44
|
+
sampleSize: 3800,
|
|
45
|
+
description: 'Maximum months for mental illness claims',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
field: 'substanceAbuseLimitMonths',
|
|
49
|
+
label: 'Substance Abuse Limitation',
|
|
50
|
+
priority: 2,
|
|
51
|
+
percentiles: { p10: 12, p25: 24, p50: 24, p75: 24, p90: 60 },
|
|
52
|
+
unit: 'months',
|
|
53
|
+
sampleSize: 3800,
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
field: 'guaranteeIssue',
|
|
57
|
+
label: 'Guarantee Issue Amount',
|
|
58
|
+
priority: 2,
|
|
59
|
+
percentiles: { p10: 150000, p25: 200000, p50: 300000, p75: 500000, p90: 750000 },
|
|
60
|
+
unit: 'currency',
|
|
61
|
+
sampleSize: 3500,
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
field: 'waitingPeriod',
|
|
65
|
+
label: 'Eligibility Waiting Period',
|
|
66
|
+
priority: 2,
|
|
67
|
+
percentiles: { p10: 0, p25: 0, p50: 0, p75: 30, p90: 60 },
|
|
68
|
+
unit: 'days',
|
|
69
|
+
sampleSize: 4200,
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
field: 'survivorBenefitMonths',
|
|
73
|
+
label: 'Survivor Benefit Duration',
|
|
74
|
+
priority: 2,
|
|
75
|
+
percentiles: { p10: 0, p25: 3, p50: 3, p75: 6, p90: 12 },
|
|
76
|
+
unit: 'months',
|
|
77
|
+
sampleSize: 3200,
|
|
78
|
+
},
|
|
79
|
+
];
|
|
80
|
+
export const ltdPrevalenceData = {
|
|
81
|
+
isOffered: 78,
|
|
82
|
+
benefitDuration: {
|
|
83
|
+
ssnra: 70,
|
|
84
|
+
age_65: 15,
|
|
85
|
+
age_67: 8,
|
|
86
|
+
'5_years': 5,
|
|
87
|
+
'2_years': 2,
|
|
88
|
+
},
|
|
89
|
+
definitionOfEarnings: {
|
|
90
|
+
salary: 60,
|
|
91
|
+
w2: 25,
|
|
92
|
+
base_with_bonus: 15,
|
|
93
|
+
},
|
|
94
|
+
hasPreExistingConditionExclusion: 85,
|
|
95
|
+
benefitsVaryByClass: 30,
|
|
96
|
+
hasCola: 15,
|
|
97
|
+
hasMentalIllnessLimit: 92,
|
|
98
|
+
hasSubstanceAbuseLimit: 90,
|
|
99
|
+
hasSelfReportedConditionLimit: 65,
|
|
100
|
+
hasRehabilitation: 88,
|
|
101
|
+
rehabilitationType: {
|
|
102
|
+
mandatory: 60,
|
|
103
|
+
mandatory_enhanced: 30,
|
|
104
|
+
none: 10,
|
|
105
|
+
},
|
|
106
|
+
hasConversion: 55,
|
|
107
|
+
hasWaiverOfPremium: 95,
|
|
108
|
+
hasSurvivorBenefit: 72,
|
|
109
|
+
costSharing: {
|
|
110
|
+
employer_paid: 75,
|
|
111
|
+
shared: 12,
|
|
112
|
+
employee_paid: 8,
|
|
113
|
+
voluntary: 5,
|
|
114
|
+
},
|
|
115
|
+
funding: {
|
|
116
|
+
fully_insured: 70,
|
|
117
|
+
self_funded: 22,
|
|
118
|
+
level_funded: 5,
|
|
119
|
+
aso: 3,
|
|
120
|
+
},
|
|
121
|
+
};
|
|
122
|
+
export const ltdMetadata = {
|
|
123
|
+
lastUpdated: '2024-01-15',
|
|
124
|
+
totalSampleSize: 4200,
|
|
125
|
+
dataSource: 'Mock Data - For POC Only',
|
|
126
|
+
};
|
|
127
|
+
//# sourceMappingURL=ltd-benchmarks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ltd-benchmarks.js","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/mock-data/ltd-benchmarks.ts"],"names":[],"mappings":"AAcA,MAAM,CAAC,MAAM,aAAa,GAAuB;IAE/C;QACE,KAAK,EAAE,mBAAmB;QAC1B,KAAK,EAAE,oBAAoB;QAC3B,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,EAAE;QAC/D,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,IAAI;QAChB,WAAW,EAAE,+BAA+B;KAC7C;IACD;QACE,KAAK,EAAE,gBAAgB;QACvB,KAAK,EAAE,iBAAiB;QACxB,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE;QACzE,IAAI,EAAE,UAAU;QAChB,UAAU,EAAE,IAAI;QAChB,WAAW,EAAE,gCAAgC;KAC9C;IACD;QACE,KAAK,EAAE,mBAAmB;QAC1B,KAAK,EAAE,oBAAoB;QAC3B,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;QAC9D,IAAI,EAAE,MAAM;QACZ,UAAU,EAAE,IAAI;QAChB,WAAW,EAAE,gCAAgC;KAC9C;IAGD;QACE,KAAK,EAAE,qBAAqB;QAC5B,KAAK,EAAE,uBAAuB;QAC9B,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE;QAC7D,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE,IAAI;QAChB,WAAW,EAAE,qCAAqC;KACnD;IACD;QACE,KAAK,EAAE,0BAA0B;QACjC,KAAK,EAAE,2BAA2B;QAClC,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;QAC5D,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE,IAAI;QAChB,WAAW,EAAE,0CAA0C;KACxD;IACD;QACE,KAAK,EAAE,2BAA2B;QAClC,KAAK,EAAE,4BAA4B;QACnC,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;QAC5D,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE,IAAI;KACjB;IACD;QACE,KAAK,EAAE,gBAAgB;QACvB,KAAK,EAAE,wBAAwB;QAC/B,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE;QAChF,IAAI,EAAE,UAAU;QAChB,UAAU,EAAE,IAAI;KACjB;IACD;QACE,KAAK,EAAE,eAAe;QACtB,KAAK,EAAE,4BAA4B;QACnC,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;QACzD,IAAI,EAAE,MAAM;QACZ,UAAU,EAAE,IAAI;KACjB;IACD;QACE,KAAK,EAAE,uBAAuB;QAC9B,KAAK,EAAE,2BAA2B;QAClC,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE;QACxD,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE,IAAI;KACjB;CACF,CAAC;AAGF,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,SAAS,EAAE,EAAE;IACb,eAAe,EAAE;QACf,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,MAAM,EAAE,CAAC;QACT,SAAS,EAAE,CAAC;QACZ,SAAS,EAAE,CAAC;KACb;IACD,oBAAoB,EAAE;QACpB,MAAM,EAAE,EAAE;QACV,EAAE,EAAE,EAAE;QACN,eAAe,EAAE,EAAE;KACpB;IACD,gCAAgC,EAAE,EAAE;IACpC,mBAAmB,EAAE,EAAE;IACvB,OAAO,EAAE,EAAE;IACX,qBAAqB,EAAE,EAAE;IACzB,sBAAsB,EAAE,EAAE;IAC1B,6BAA6B,EAAE,EAAE;IACjC,iBAAiB,EAAE,EAAE;IACrB,kBAAkB,EAAE;QAClB,SAAS,EAAE,EAAE;QACb,kBAAkB,EAAE,EAAE;QACtB,IAAI,EAAE,EAAE;KACT;IACD,aAAa,EAAE,EAAE;IACjB,kBAAkB,EAAE,EAAE;IACtB,kBAAkB,EAAE,EAAE;IACtB,WAAW,EAAE;QACX,aAAa,EAAE,EAAE;QACjB,MAAM,EAAE,EAAE;QACV,aAAa,EAAE,CAAC;QAChB,SAAS,EAAE,CAAC;KACb;IACD,OAAO,EAAE;QACP,aAAa,EAAE,EAAE;QACjB,WAAW,EAAE,EAAE;QACf,YAAY,EAAE,CAAC;QACf,GAAG,EAAE,CAAC;KACP;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,WAAW,EAAE,YAAY;IACzB,eAAe,EAAE,IAAI;IACrB,UAAU,EAAE,0BAA0B;CACvC,CAAC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import type { PercentileData } from '../types/common';
|
|
2
|
+
export interface STDBenchmarkData {
|
|
3
|
+
field: string;
|
|
4
|
+
label: string;
|
|
5
|
+
priority: 1 | 2 | 3;
|
|
6
|
+
percentiles: PercentileData;
|
|
7
|
+
unit: 'currency' | 'percentage' | 'days' | 'weeks' | 'months' | 'count' | 'boolean';
|
|
8
|
+
sampleSize: number;
|
|
9
|
+
description?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const stdBenchmarks: STDBenchmarkData[];
|
|
12
|
+
export declare const stdPrevalenceData: {
|
|
13
|
+
isOffered: number;
|
|
14
|
+
benefitsVaryByClass: number;
|
|
15
|
+
definitionOfEarnings: {
|
|
16
|
+
salary: number;
|
|
17
|
+
w2: number;
|
|
18
|
+
base_with_bonus: number;
|
|
19
|
+
};
|
|
20
|
+
definitionOfDisability: {
|
|
21
|
+
loss_of_duties: number;
|
|
22
|
+
loss_of_earnings: number;
|
|
23
|
+
};
|
|
24
|
+
hasPreExistingConditionExclusion: number;
|
|
25
|
+
hasSicknessOnly: number;
|
|
26
|
+
hasAccidentOnly: number;
|
|
27
|
+
has24HourCoverage: number;
|
|
28
|
+
hasFicaMatch: number;
|
|
29
|
+
costSharing: {
|
|
30
|
+
employer_paid: number;
|
|
31
|
+
shared: number;
|
|
32
|
+
employee_paid: number;
|
|
33
|
+
voluntary: number;
|
|
34
|
+
};
|
|
35
|
+
funding: {
|
|
36
|
+
fully_insured: number;
|
|
37
|
+
self_funded: number;
|
|
38
|
+
level_funded: number;
|
|
39
|
+
aso: number;
|
|
40
|
+
};
|
|
41
|
+
taxStatus: {
|
|
42
|
+
pre_tax: number;
|
|
43
|
+
post_tax: number;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export declare const stdMetadata: {
|
|
47
|
+
lastUpdated: string;
|
|
48
|
+
totalSampleSize: number;
|
|
49
|
+
dataSource: string;
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=std-benchmarks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"std-benchmarks.d.ts","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/mock-data/std-benchmarks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAItD,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACpB,WAAW,EAAE,cAAc,CAAC;IAC5B,IAAI,EAAE,UAAU,GAAG,YAAY,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;IACpF,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,eAAO,MAAM,aAAa,EAAE,gBAAgB,EAyE3C,CAAC;AAGF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiC7B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;CAIvB,CAAC"}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
export const stdBenchmarks = [
|
|
2
|
+
{
|
|
3
|
+
field: 'benefitPercentage',
|
|
4
|
+
label: 'Benefit Percentage',
|
|
5
|
+
priority: 1,
|
|
6
|
+
percentiles: { p10: 50, p25: 60, p50: 60, p75: 66.67, p90: 70 },
|
|
7
|
+
unit: 'percentage',
|
|
8
|
+
sampleSize: 3850,
|
|
9
|
+
description: 'Percentage of salary replaced',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
field: 'weeklyMaximum',
|
|
13
|
+
label: 'Weekly Maximum',
|
|
14
|
+
priority: 1,
|
|
15
|
+
percentiles: { p10: 750, p25: 1000, p50: 1500, p75: 2000, p90: 2500 },
|
|
16
|
+
unit: 'currency',
|
|
17
|
+
sampleSize: 3850,
|
|
18
|
+
description: 'Maximum weekly benefit amount',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
field: 'benefitDurationWeeks',
|
|
22
|
+
label: 'Benefit Duration',
|
|
23
|
+
priority: 1,
|
|
24
|
+
percentiles: { p10: 12, p25: 13, p50: 26, p75: 26, p90: 52 },
|
|
25
|
+
unit: 'weeks',
|
|
26
|
+
sampleSize: 3850,
|
|
27
|
+
description: 'Maximum weeks of benefits',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
field: 'eliminationPeriodAccident',
|
|
31
|
+
label: 'Elimination Period - Accident',
|
|
32
|
+
priority: 1,
|
|
33
|
+
percentiles: { p10: 0, p25: 0, p50: 0, p75: 7, p90: 7 },
|
|
34
|
+
unit: 'days',
|
|
35
|
+
sampleSize: 3850,
|
|
36
|
+
description: 'Days before accident benefits begin',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
field: 'eliminationPeriodIllness',
|
|
40
|
+
label: 'Elimination Period - Illness',
|
|
41
|
+
priority: 1,
|
|
42
|
+
percentiles: { p10: 0, p25: 7, p50: 7, p75: 14, p90: 14 },
|
|
43
|
+
unit: 'days',
|
|
44
|
+
sampleSize: 3850,
|
|
45
|
+
description: 'Days before illness benefits begin',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
field: 'waitingPeriod',
|
|
49
|
+
label: 'Eligibility Waiting Period',
|
|
50
|
+
priority: 2,
|
|
51
|
+
percentiles: { p10: 0, p25: 0, p50: 0, p75: 30, p90: 60 },
|
|
52
|
+
unit: 'days',
|
|
53
|
+
sampleSize: 3850,
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
field: 'preExistingLookback',
|
|
57
|
+
label: 'Pre-Existing Lookback',
|
|
58
|
+
priority: 2,
|
|
59
|
+
percentiles: { p10: 3, p25: 3, p50: 3, p75: 6, p90: 12 },
|
|
60
|
+
unit: 'months',
|
|
61
|
+
sampleSize: 3200,
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
field: 'preExistingWaitingPeriod',
|
|
65
|
+
label: 'Pre-Existing Waiting Period',
|
|
66
|
+
priority: 2,
|
|
67
|
+
percentiles: { p10: 6, p25: 12, p50: 12, p75: 12, p90: 24 },
|
|
68
|
+
unit: 'months',
|
|
69
|
+
sampleSize: 3200,
|
|
70
|
+
},
|
|
71
|
+
];
|
|
72
|
+
export const stdPrevalenceData = {
|
|
73
|
+
isOffered: 72,
|
|
74
|
+
benefitsVaryByClass: 25,
|
|
75
|
+
definitionOfEarnings: {
|
|
76
|
+
salary: 65,
|
|
77
|
+
w2: 20,
|
|
78
|
+
base_with_bonus: 15,
|
|
79
|
+
},
|
|
80
|
+
definitionOfDisability: {
|
|
81
|
+
loss_of_duties: 78,
|
|
82
|
+
loss_of_earnings: 22,
|
|
83
|
+
},
|
|
84
|
+
hasPreExistingConditionExclusion: 82,
|
|
85
|
+
hasSicknessOnly: 2,
|
|
86
|
+
hasAccidentOnly: 3,
|
|
87
|
+
has24HourCoverage: 95,
|
|
88
|
+
hasFicaMatch: 18,
|
|
89
|
+
costSharing: {
|
|
90
|
+
employer_paid: 68,
|
|
91
|
+
shared: 15,
|
|
92
|
+
employee_paid: 10,
|
|
93
|
+
voluntary: 7,
|
|
94
|
+
},
|
|
95
|
+
funding: {
|
|
96
|
+
fully_insured: 72,
|
|
97
|
+
self_funded: 20,
|
|
98
|
+
level_funded: 5,
|
|
99
|
+
aso: 3,
|
|
100
|
+
},
|
|
101
|
+
taxStatus: {
|
|
102
|
+
pre_tax: 60,
|
|
103
|
+
post_tax: 40,
|
|
104
|
+
},
|
|
105
|
+
};
|
|
106
|
+
export const stdMetadata = {
|
|
107
|
+
lastUpdated: '2024-01-15',
|
|
108
|
+
totalSampleSize: 3850,
|
|
109
|
+
dataSource: 'Mock Data - For POC Only',
|
|
110
|
+
};
|
|
111
|
+
//# sourceMappingURL=std-benchmarks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"std-benchmarks.js","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/mock-data/std-benchmarks.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { PercentileData } from '../types/common';
|
|
2
|
+
export interface VisionBenchmarkData {
|
|
3
|
+
field: string;
|
|
4
|
+
label: string;
|
|
5
|
+
priority: 1 | 2 | 3;
|
|
6
|
+
percentiles: PercentileData;
|
|
7
|
+
unit: 'currency' | 'percentage' | 'days' | 'months' | 'count' | 'boolean';
|
|
8
|
+
sampleSize: number;
|
|
9
|
+
description?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const visionBenchmarks: VisionBenchmarkData[];
|
|
12
|
+
export declare const visionPrevalenceData: {
|
|
13
|
+
isOffered: number;
|
|
14
|
+
costSharing: {
|
|
15
|
+
employer_paid: number;
|
|
16
|
+
shared: number;
|
|
17
|
+
employee_paid: number;
|
|
18
|
+
voluntary: number;
|
|
19
|
+
};
|
|
20
|
+
funding: {
|
|
21
|
+
fully_insured: number;
|
|
22
|
+
self_funded: number;
|
|
23
|
+
level_funded: number;
|
|
24
|
+
aso: number;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
export declare const visionMetadata: {
|
|
28
|
+
lastUpdated: string;
|
|
29
|
+
totalSampleSize: number;
|
|
30
|
+
dataSource: string;
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=vision-benchmarks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vision-benchmarks.d.ts","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/mock-data/vision-benchmarks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAKtD,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACpB,WAAW,EAAE,cAAc,CAAC;IAC5B,IAAI,EAAE,UAAU,GAAG,YAAY,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;IAC1E,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,eAAO,MAAM,gBAAgB,EAAE,mBAAmB,EAsIjD,CAAC;AAGF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;CAchC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;CAI1B,CAAC"}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
export const visionBenchmarks = [
|
|
2
|
+
{
|
|
3
|
+
field: 'examCopay',
|
|
4
|
+
label: 'Exam Copay',
|
|
5
|
+
priority: 1,
|
|
6
|
+
percentiles: { p10: 0, p25: 10, p50: 10, p75: 15, p90: 25 },
|
|
7
|
+
unit: 'currency',
|
|
8
|
+
sampleSize: 4620,
|
|
9
|
+
description: 'Employee copay for eye exam',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
field: 'materialsCopay',
|
|
13
|
+
label: 'Materials Copay',
|
|
14
|
+
priority: 1,
|
|
15
|
+
percentiles: { p10: 0, p25: 20, p50: 25, p75: 25, p90: 35 },
|
|
16
|
+
unit: 'currency',
|
|
17
|
+
sampleSize: 4620,
|
|
18
|
+
description: 'Employee copay for materials (lenses/frames)',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
field: 'inNetworkFramesAllowance',
|
|
22
|
+
label: 'In-Network Frames Allowance',
|
|
23
|
+
priority: 1,
|
|
24
|
+
percentiles: { p10: 130, p25: 150, p50: 175, p75: 200, p90: 250 },
|
|
25
|
+
unit: 'currency',
|
|
26
|
+
sampleSize: 4620,
|
|
27
|
+
description: 'Maximum allowance for frames',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
field: 'inNetworkContactLensAllowance',
|
|
31
|
+
label: 'In-Network Contact Lens Allowance',
|
|
32
|
+
priority: 1,
|
|
33
|
+
percentiles: { p10: 130, p25: 150, p50: 150, p75: 200, p90: 250 },
|
|
34
|
+
unit: 'currency',
|
|
35
|
+
sampleSize: 4620,
|
|
36
|
+
description: 'Maximum allowance for contact lenses',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
field: 'planDesignsOffered',
|
|
40
|
+
label: 'Plan Designs Offered',
|
|
41
|
+
priority: 2,
|
|
42
|
+
percentiles: { p10: 1, p25: 1, p50: 1, p75: 2, p90: 2 },
|
|
43
|
+
unit: 'count',
|
|
44
|
+
sampleSize: 4620,
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
field: 'examFrequency',
|
|
48
|
+
label: 'Exam Frequency',
|
|
49
|
+
priority: 2,
|
|
50
|
+
percentiles: { p10: 12, p25: 12, p50: 12, p75: 12, p90: 24 },
|
|
51
|
+
unit: 'months',
|
|
52
|
+
sampleSize: 4620,
|
|
53
|
+
description: 'How often exams are covered (in months)',
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
field: 'lensesFrequency',
|
|
57
|
+
label: 'Lenses Frequency',
|
|
58
|
+
priority: 2,
|
|
59
|
+
percentiles: { p10: 12, p25: 12, p50: 12, p75: 12, p90: 24 },
|
|
60
|
+
unit: 'months',
|
|
61
|
+
sampleSize: 4620,
|
|
62
|
+
description: 'How often lenses are covered (in months)',
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
field: 'framesFrequency',
|
|
66
|
+
label: 'Frames Frequency',
|
|
67
|
+
priority: 2,
|
|
68
|
+
percentiles: { p10: 12, p25: 12, p50: 24, p75: 24, p90: 24 },
|
|
69
|
+
unit: 'months',
|
|
70
|
+
sampleSize: 4620,
|
|
71
|
+
description: 'How often frames are covered (in months)',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
field: 'newHireWaitingPeriod',
|
|
75
|
+
label: 'New Hire Waiting Period',
|
|
76
|
+
priority: 2,
|
|
77
|
+
percentiles: { p10: 0, p25: 0, p50: 0, p75: 30, p90: 90 },
|
|
78
|
+
unit: 'days',
|
|
79
|
+
sampleSize: 4620,
|
|
80
|
+
description: 'Days before new hire is eligible',
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
field: 'oonExamAllowance',
|
|
84
|
+
label: 'OON Exam Allowance',
|
|
85
|
+
priority: 3,
|
|
86
|
+
percentiles: { p10: 35, p25: 45, p50: 50, p75: 60, p90: 75 },
|
|
87
|
+
unit: 'currency',
|
|
88
|
+
sampleSize: 4200,
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
field: 'oonSingleLensAllowance',
|
|
92
|
+
label: 'OON Single Lens Allowance',
|
|
93
|
+
priority: 3,
|
|
94
|
+
percentiles: { p10: 25, p25: 30, p50: 40, p75: 50, p90: 60 },
|
|
95
|
+
unit: 'currency',
|
|
96
|
+
sampleSize: 4200,
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
field: 'oonBifocalLensAllowance',
|
|
100
|
+
label: 'OON Bifocal Lens Allowance',
|
|
101
|
+
priority: 3,
|
|
102
|
+
percentiles: { p10: 40, p25: 50, p50: 60, p75: 75, p90: 90 },
|
|
103
|
+
unit: 'currency',
|
|
104
|
+
sampleSize: 4200,
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
field: 'oonTrifocalLensAllowance',
|
|
108
|
+
label: 'OON Trifocal Lens Allowance',
|
|
109
|
+
priority: 3,
|
|
110
|
+
percentiles: { p10: 55, p25: 65, p50: 80, p75: 95, p90: 110 },
|
|
111
|
+
unit: 'currency',
|
|
112
|
+
sampleSize: 4200,
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
field: 'oonFramesAllowance',
|
|
116
|
+
label: 'OON Frames Allowance',
|
|
117
|
+
priority: 3,
|
|
118
|
+
percentiles: { p10: 45, p25: 60, p50: 70, p75: 90, p90: 120 },
|
|
119
|
+
unit: 'currency',
|
|
120
|
+
sampleSize: 4200,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
field: 'oonContactLensAllowance',
|
|
124
|
+
label: 'OON Contact Lens Allowance',
|
|
125
|
+
priority: 3,
|
|
126
|
+
percentiles: { p10: 80, p25: 100, p50: 105, p75: 130, p90: 175 },
|
|
127
|
+
unit: 'currency',
|
|
128
|
+
sampleSize: 4200,
|
|
129
|
+
},
|
|
130
|
+
];
|
|
131
|
+
export const visionPrevalenceData = {
|
|
132
|
+
isOffered: 92,
|
|
133
|
+
costSharing: {
|
|
134
|
+
employer_paid: 20,
|
|
135
|
+
shared: 60,
|
|
136
|
+
employee_paid: 15,
|
|
137
|
+
voluntary: 5,
|
|
138
|
+
},
|
|
139
|
+
funding: {
|
|
140
|
+
fully_insured: 85,
|
|
141
|
+
self_funded: 10,
|
|
142
|
+
level_funded: 3,
|
|
143
|
+
aso: 2,
|
|
144
|
+
},
|
|
145
|
+
};
|
|
146
|
+
export const visionMetadata = {
|
|
147
|
+
lastUpdated: '2024-01-15',
|
|
148
|
+
totalSampleSize: 4620,
|
|
149
|
+
dataSource: 'Mock Data - For POC Only',
|
|
150
|
+
};
|
|
151
|
+
//# sourceMappingURL=vision-benchmarks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vision-benchmarks.js","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/mock-data/vision-benchmarks.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { PercentileData } from '../types/common';
|
|
2
|
+
export interface VoluntaryLifeBenchmarkData {
|
|
3
|
+
field: string;
|
|
4
|
+
label: string;
|
|
5
|
+
priority: 1 | 2 | 3;
|
|
6
|
+
percentiles: PercentileData;
|
|
7
|
+
unit: 'currency' | 'percentage' | 'days' | 'count' | 'boolean';
|
|
8
|
+
sampleSize: number;
|
|
9
|
+
description?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const voluntaryLifeBenchmarks: VoluntaryLifeBenchmarkData[];
|
|
12
|
+
export declare const voluntaryLifePrevalenceData: {
|
|
13
|
+
isOffered: number;
|
|
14
|
+
hasSpouseCoverage: number;
|
|
15
|
+
hasChildCoverage: number;
|
|
16
|
+
hasAdnd: number;
|
|
17
|
+
hasPortability: number;
|
|
18
|
+
hasConversion: number;
|
|
19
|
+
hasAgeReductions: number;
|
|
20
|
+
hasAcceleratedDeathBenefit: number;
|
|
21
|
+
hasWaiverOfPremium: number;
|
|
22
|
+
rateStructure: {
|
|
23
|
+
age_banded: number;
|
|
24
|
+
composite: number;
|
|
25
|
+
smoker_nonsmoker: number;
|
|
26
|
+
};
|
|
27
|
+
funding: {
|
|
28
|
+
fully_insured: number;
|
|
29
|
+
self_funded: number;
|
|
30
|
+
level_funded: number;
|
|
31
|
+
aso: number;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare const voluntaryLifeMetadata: {
|
|
35
|
+
lastUpdated: string;
|
|
36
|
+
totalSampleSize: number;
|
|
37
|
+
dataSource: string;
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=voluntary-life-benchmarks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"voluntary-life-benchmarks.d.ts","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/mock-data/voluntary-life-benchmarks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAItD,MAAM,WAAW,0BAA0B;IACzC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACpB,WAAW,EAAE,cAAc,CAAC;IAC5B,IAAI,EAAE,UAAU,GAAG,YAAY,GAAG,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;IAC/D,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,eAAO,MAAM,uBAAuB,EAAE,0BAA0B,EAuE/D,CAAC;AAGF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;CAqBvC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;CAIjC,CAAC"}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
export const voluntaryLifeBenchmarks = [
|
|
2
|
+
{
|
|
3
|
+
field: 'employeeMaximum',
|
|
4
|
+
label: 'Employee Maximum',
|
|
5
|
+
priority: 1,
|
|
6
|
+
percentiles: { p10: 200000, p25: 300000, p50: 500000, p75: 750000, p90: 1000000 },
|
|
7
|
+
unit: 'currency',
|
|
8
|
+
sampleSize: 4100,
|
|
9
|
+
description: 'Maximum coverage for employees',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
field: 'employeeGuaranteeIssue',
|
|
13
|
+
label: 'Employee Guarantee Issue',
|
|
14
|
+
priority: 1,
|
|
15
|
+
percentiles: { p10: 50000, p25: 75000, p50: 100000, p75: 150000, p90: 200000 },
|
|
16
|
+
unit: 'currency',
|
|
17
|
+
sampleSize: 4100,
|
|
18
|
+
description: 'Employee coverage without medical underwriting',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
field: 'employeeIncrements',
|
|
22
|
+
label: 'Employee Increments',
|
|
23
|
+
priority: 1,
|
|
24
|
+
percentiles: { p10: 5000, p25: 10000, p50: 10000, p75: 25000, p90: 25000 },
|
|
25
|
+
unit: 'currency',
|
|
26
|
+
sampleSize: 4100,
|
|
27
|
+
description: 'Coverage purchase increments',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
field: 'spouseMaximum',
|
|
31
|
+
label: 'Spouse Maximum',
|
|
32
|
+
priority: 2,
|
|
33
|
+
percentiles: { p10: 50000, p25: 100000, p50: 250000, p75: 300000, p90: 500000 },
|
|
34
|
+
unit: 'currency',
|
|
35
|
+
sampleSize: 3800,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
field: 'spouseGuaranteeIssue',
|
|
39
|
+
label: 'Spouse Guarantee Issue',
|
|
40
|
+
priority: 2,
|
|
41
|
+
percentiles: { p10: 10000, p25: 20000, p50: 25000, p75: 50000, p90: 75000 },
|
|
42
|
+
unit: 'currency',
|
|
43
|
+
sampleSize: 3800,
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
field: 'spouseNotToExceedPercent',
|
|
47
|
+
label: 'Spouse Max % of Employee',
|
|
48
|
+
priority: 2,
|
|
49
|
+
percentiles: { p10: 50, p25: 50, p50: 50, p75: 100, p90: 100 },
|
|
50
|
+
unit: 'percentage',
|
|
51
|
+
sampleSize: 3800,
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
field: 'childMaximum',
|
|
55
|
+
label: 'Child Maximum',
|
|
56
|
+
priority: 2,
|
|
57
|
+
percentiles: { p10: 5000, p25: 10000, p50: 10000, p75: 20000, p90: 25000 },
|
|
58
|
+
unit: 'currency',
|
|
59
|
+
sampleSize: 3500,
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
field: 'waitingPeriod',
|
|
63
|
+
label: 'Eligibility Waiting Period',
|
|
64
|
+
priority: 2,
|
|
65
|
+
percentiles: { p10: 0, p25: 0, p50: 0, p75: 30, p90: 60 },
|
|
66
|
+
unit: 'days',
|
|
67
|
+
sampleSize: 4100,
|
|
68
|
+
},
|
|
69
|
+
];
|
|
70
|
+
export const voluntaryLifePrevalenceData = {
|
|
71
|
+
isOffered: 88,
|
|
72
|
+
hasSpouseCoverage: 92,
|
|
73
|
+
hasChildCoverage: 88,
|
|
74
|
+
hasAdnd: 85,
|
|
75
|
+
hasPortability: 80,
|
|
76
|
+
hasConversion: 85,
|
|
77
|
+
hasAgeReductions: 78,
|
|
78
|
+
hasAcceleratedDeathBenefit: 75,
|
|
79
|
+
hasWaiverOfPremium: 72,
|
|
80
|
+
rateStructure: {
|
|
81
|
+
age_banded: 75,
|
|
82
|
+
composite: 15,
|
|
83
|
+
smoker_nonsmoker: 10,
|
|
84
|
+
},
|
|
85
|
+
funding: {
|
|
86
|
+
fully_insured: 92,
|
|
87
|
+
self_funded: 5,
|
|
88
|
+
level_funded: 2,
|
|
89
|
+
aso: 1,
|
|
90
|
+
},
|
|
91
|
+
};
|
|
92
|
+
export const voluntaryLifeMetadata = {
|
|
93
|
+
lastUpdated: '2024-01-15',
|
|
94
|
+
totalSampleSize: 4100,
|
|
95
|
+
dataSource: 'Mock Data - For POC Only',
|
|
96
|
+
};
|
|
97
|
+
//# sourceMappingURL=voluntary-life-benchmarks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"voluntary-life-benchmarks.js","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/mock-data/voluntary-life-benchmarks.ts"],"names":[],"mappings":"AAcA,MAAM,CAAC,MAAM,uBAAuB,GAAiC;IAEnE;QACE,KAAK,EAAE,iBAAiB;QACxB,KAAK,EAAE,kBAAkB;QACzB,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,OAAO,EAAE;QACjF,IAAI,EAAE,UAAU;QAChB,UAAU,EAAE,IAAI;QAChB,WAAW,EAAE,gCAAgC;KAC9C;IACD;QACE,KAAK,EAAE,wBAAwB;QAC/B,KAAK,EAAE,0BAA0B;QACjC,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE;QAC9E,IAAI,EAAE,UAAU;QAChB,UAAU,EAAE,IAAI;QAChB,WAAW,EAAE,gDAAgD;KAC9D;IACD;QACE,KAAK,EAAE,oBAAoB;QAC3B,KAAK,EAAE,qBAAqB;QAC5B,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE;QAC1E,IAAI,EAAE,UAAU;QAChB,UAAU,EAAE,IAAI;QAChB,WAAW,EAAE,8BAA8B;KAC5C;IAGD;QACE,KAAK,EAAE,eAAe;QACtB,KAAK,EAAE,gBAAgB;QACvB,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE;QAC/E,IAAI,EAAE,UAAU;QAChB,UAAU,EAAE,IAAI;KACjB;IACD;QACE,KAAK,EAAE,sBAAsB;QAC7B,KAAK,EAAE,wBAAwB;QAC/B,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE;QAC3E,IAAI,EAAE,UAAU;QAChB,UAAU,EAAE,IAAI;KACjB;IACD;QACE,KAAK,EAAE,0BAA0B;QACjC,KAAK,EAAE,0BAA0B;QACjC,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;QAC9D,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,IAAI;KACjB;IACD;QACE,KAAK,EAAE,cAAc;QACrB,KAAK,EAAE,eAAe;QACtB,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE;QAC1E,IAAI,EAAE,UAAU;QAChB,UAAU,EAAE,IAAI;KACjB;IACD;QACE,KAAK,EAAE,eAAe;QACtB,KAAK,EAAE,4BAA4B;QACnC,QAAQ,EAAE,CAAC;QACX,WAAW,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;QACzD,IAAI,EAAE,MAAM;QACZ,UAAU,EAAE,IAAI;KACjB;CACF,CAAC;AAGF,MAAM,CAAC,MAAM,2BAA2B,GAAG;IACzC,SAAS,EAAE,EAAE;IACb,iBAAiB,EAAE,EAAE;IACrB,gBAAgB,EAAE,EAAE;IACpB,OAAO,EAAE,EAAE;IACX,cAAc,EAAE,EAAE;IAClB,aAAa,EAAE,EAAE;IACjB,gBAAgB,EAAE,EAAE;IACpB,0BAA0B,EAAE,EAAE;IAC9B,kBAAkB,EAAE,EAAE;IACtB,aAAa,EAAE;QACb,UAAU,EAAE,EAAE;QACd,SAAS,EAAE,EAAE;QACb,gBAAgB,EAAE,EAAE;KACrB;IACD,OAAO,EAAE;QACP,aAAa,EAAE,EAAE;QACjB,WAAW,EAAE,CAAC;QACd,YAAY,EAAE,CAAC;QACf,GAAG,EAAE,CAAC;KACP;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,WAAW,EAAE,YAAY;IACzB,eAAe,EAAE,IAAI;IACrB,UAAU,EAAE,0BAA0B;CACvC,CAAC"}
|