@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,476 @@
|
|
|
1
|
+
export interface DollarAmountValue {
|
|
2
|
+
type: 'dollarAmount';
|
|
3
|
+
amount: number;
|
|
4
|
+
}
|
|
5
|
+
export interface DollarAmountAllowanceValue {
|
|
6
|
+
type: 'dollarAmountAllowance';
|
|
7
|
+
allowanceAmount: number;
|
|
8
|
+
}
|
|
9
|
+
export interface PercentageAmountValue {
|
|
10
|
+
type: 'percentageAmount';
|
|
11
|
+
amount: number;
|
|
12
|
+
}
|
|
13
|
+
export interface PercentageOfSalaryValue {
|
|
14
|
+
type: 'percentageOfSalary';
|
|
15
|
+
amount: number;
|
|
16
|
+
}
|
|
17
|
+
export interface CoveredInFullValue {
|
|
18
|
+
type: 'coveredInFull';
|
|
19
|
+
}
|
|
20
|
+
export interface NotIncludedValue {
|
|
21
|
+
type: 'notIncluded';
|
|
22
|
+
}
|
|
23
|
+
export interface DaysValue {
|
|
24
|
+
type: 'days';
|
|
25
|
+
amount: number;
|
|
26
|
+
}
|
|
27
|
+
export interface WeeksValue {
|
|
28
|
+
type: 'weeks';
|
|
29
|
+
amount: number;
|
|
30
|
+
}
|
|
31
|
+
export interface MonthsValue {
|
|
32
|
+
type: 'months';
|
|
33
|
+
timeframe: number;
|
|
34
|
+
}
|
|
35
|
+
export interface UpToDollarAmountValue {
|
|
36
|
+
type: 'upToDollarAmount';
|
|
37
|
+
amount: number;
|
|
38
|
+
}
|
|
39
|
+
export interface RateEntry {
|
|
40
|
+
rate: number;
|
|
41
|
+
unit: 'usd' | 'volumePer10' | 'volumePer100' | 'volumePer1000';
|
|
42
|
+
coverageTierCode: 'employee' | 'employeeSpouse' | 'employeeChildren' | 'employeeFamily' | 'childOnly';
|
|
43
|
+
ageBandLower?: number;
|
|
44
|
+
ageBandUpper?: number;
|
|
45
|
+
}
|
|
46
|
+
export interface RateSchedule {
|
|
47
|
+
rates: RateEntry[];
|
|
48
|
+
rateDesign: 'composite' | 'flatRate' | 'ageRated';
|
|
49
|
+
rateCoverageIndicator?: 'life' | 'adnd';
|
|
50
|
+
}
|
|
51
|
+
export type DentalServiceCategory = 'preventive' | 'basic' | 'major';
|
|
52
|
+
export interface DentalOrthoAgeLimit {
|
|
53
|
+
type: 'childrenOnlyToAge' | 'adultsAndChildren' | 'notIncluded';
|
|
54
|
+
age?: number;
|
|
55
|
+
}
|
|
56
|
+
export interface DentalNetworkBenefits {
|
|
57
|
+
network: 'inNetwork' | 'outOfNetwork';
|
|
58
|
+
preventativeType1: PercentageAmountValue;
|
|
59
|
+
basicType2: PercentageAmountValue;
|
|
60
|
+
majorType3: PercentageAmountValue;
|
|
61
|
+
orthoType4?: PercentageAmountValue;
|
|
62
|
+
annualMaximum: DollarAmountValue;
|
|
63
|
+
orthoMaximum?: DollarAmountValue;
|
|
64
|
+
individualDeductible: DollarAmountValue;
|
|
65
|
+
familyDeductible: DollarAmountValue;
|
|
66
|
+
orthoAgeLimit?: DentalOrthoAgeLimit;
|
|
67
|
+
implants?: DentalServiceCategory;
|
|
68
|
+
sealants?: DentalServiceCategory;
|
|
69
|
+
endodontics?: DentalServiceCategory;
|
|
70
|
+
periodonticsSurgical?: DentalServiceCategory;
|
|
71
|
+
periodonticsNonSurgical?: DentalServiceCategory;
|
|
72
|
+
spaceMaintainers?: DentalServiceCategory;
|
|
73
|
+
generalAnesthesia?: DentalServiceCategory;
|
|
74
|
+
compositeWhiteFillings?: DentalServiceCategory;
|
|
75
|
+
}
|
|
76
|
+
export interface DentalBenefits {
|
|
77
|
+
objectType: 'dental';
|
|
78
|
+
maximumRollover: 'included' | 'notIncluded';
|
|
79
|
+
networkBenefits: DentalNetworkBenefits[];
|
|
80
|
+
annualOpenEnrollment?: string;
|
|
81
|
+
employerContribution: EmployerContributionType;
|
|
82
|
+
missingToothExclusion: 'included' | 'notIncluded';
|
|
83
|
+
dependentAgeLimitYears?: number;
|
|
84
|
+
outOfNetworkReimbursement?: '90thUcr' | '80thUcr' | 'mac' | 'schedule';
|
|
85
|
+
}
|
|
86
|
+
export interface DentalBenefitPlan {
|
|
87
|
+
type: 'ppo' | 'dhmo' | 'indemnity' | 'notApplicable';
|
|
88
|
+
benefits: DentalBenefits;
|
|
89
|
+
identifier: string;
|
|
90
|
+
policyPeriod: 'current' | 'renewal';
|
|
91
|
+
rateSchedule: RateSchedule[];
|
|
92
|
+
currentCarrierName?: string;
|
|
93
|
+
benefitClassAvailability?: string[];
|
|
94
|
+
}
|
|
95
|
+
export type VisionFrequency = 'twelveTwelveTwelve' | 'twelveTwelveTwentyFour' | 'twentyFourTwentyFourTwentyFour';
|
|
96
|
+
export type VisionCoverageValue = CoveredInFullValue | DollarAmountAllowanceValue | NotIncludedValue | DollarAmountValue;
|
|
97
|
+
export interface VisionNetworkBenefits {
|
|
98
|
+
network: 'inNetwork' | 'outOfNetwork';
|
|
99
|
+
examCopay: DollarAmountValue;
|
|
100
|
+
singleLenses: VisionCoverageValue;
|
|
101
|
+
bifocalLenses: VisionCoverageValue;
|
|
102
|
+
trifocalLenses: VisionCoverageValue;
|
|
103
|
+
lenticularLenses?: VisionCoverageValue;
|
|
104
|
+
standardProgressive?: DollarAmountAllowanceValue;
|
|
105
|
+
standardFrames: DollarAmountAllowanceValue;
|
|
106
|
+
additionalDiscountsOnFrames?: NotIncludedValue | {
|
|
107
|
+
type: 'percentage';
|
|
108
|
+
amount: number;
|
|
109
|
+
};
|
|
110
|
+
contactsElective: DollarAmountAllowanceValue;
|
|
111
|
+
contactLensExam?: VisionCoverageValue;
|
|
112
|
+
}
|
|
113
|
+
export interface VisionBenefits {
|
|
114
|
+
objectType: 'vision';
|
|
115
|
+
examFrequency: VisionFrequency;
|
|
116
|
+
framesFrequency: VisionFrequency;
|
|
117
|
+
lensesFrequency: VisionFrequency;
|
|
118
|
+
networkBenefits: VisionNetworkBenefits[];
|
|
119
|
+
annualOpenEnrollment?: string;
|
|
120
|
+
employerContribution: EmployerContributionType;
|
|
121
|
+
}
|
|
122
|
+
export interface VisionBenefitPlan {
|
|
123
|
+
type: 'ppo' | 'notApplicable';
|
|
124
|
+
benefits: VisionBenefits;
|
|
125
|
+
identifier: string;
|
|
126
|
+
policyPeriod: 'current' | 'renewal';
|
|
127
|
+
rateSchedule: RateSchedule[];
|
|
128
|
+
currentCarrierName?: string;
|
|
129
|
+
benefitClassAvailability?: string[];
|
|
130
|
+
}
|
|
131
|
+
export interface BenefitAmountFlat {
|
|
132
|
+
type: 'dollarAmount';
|
|
133
|
+
dollarAmount: number;
|
|
134
|
+
}
|
|
135
|
+
export interface BenefitAmountMultiple {
|
|
136
|
+
type: 'multipleOfSalary';
|
|
137
|
+
multiple: number;
|
|
138
|
+
}
|
|
139
|
+
export interface BasicLifeBenefits {
|
|
140
|
+
objectType: 'basicLifeAdnd';
|
|
141
|
+
benefitAmount: BenefitAmountFlat | BenefitAmountMultiple;
|
|
142
|
+
conversion: 'included' | 'notIncluded';
|
|
143
|
+
portability: 'included' | 'notIncluded';
|
|
144
|
+
adnd?: 'included' | 'notIncluded';
|
|
145
|
+
waiverOfPremium?: 'included' | 'notIncluded';
|
|
146
|
+
acceleratedDeathBenefit?: 'included' | 'notIncluded';
|
|
147
|
+
ageReduction?: AgeReductionSchedule;
|
|
148
|
+
guaranteeIssue?: DollarAmountValue;
|
|
149
|
+
employerContribution: EmployerContributionType;
|
|
150
|
+
}
|
|
151
|
+
export interface BasicLifeBenefitPlan {
|
|
152
|
+
type: 'notApplicable';
|
|
153
|
+
benefits: BasicLifeBenefits;
|
|
154
|
+
identifier: string;
|
|
155
|
+
policyPeriod: 'current' | 'renewal';
|
|
156
|
+
rateSchedule: RateSchedule[];
|
|
157
|
+
currentCarrierName?: string;
|
|
158
|
+
benefitClassAvailability?: string[];
|
|
159
|
+
}
|
|
160
|
+
export interface STDBenefits {
|
|
161
|
+
objectType: 'std';
|
|
162
|
+
benefitAmount: PercentageOfSalaryValue;
|
|
163
|
+
maximumAmount: {
|
|
164
|
+
type: 'dollarAmount';
|
|
165
|
+
dollarAmount: number;
|
|
166
|
+
};
|
|
167
|
+
benefitDuration: WeeksValue;
|
|
168
|
+
eliminationPeriodIllness: DaysValue;
|
|
169
|
+
eliminationPeriodAccident: DaysValue;
|
|
170
|
+
definitionOfEarnings: {
|
|
171
|
+
type: 'salary' | 'w2Earnings' | 'baseWithBonus';
|
|
172
|
+
};
|
|
173
|
+
definitionOfDisability?: 'lossOfDuties' | 'lossOfEarnings';
|
|
174
|
+
employerContribution: EmployerContributionType;
|
|
175
|
+
ficaMatch?: 'included' | 'notIncluded';
|
|
176
|
+
billableType?: 'nonBillable' | 'billable';
|
|
177
|
+
}
|
|
178
|
+
export interface STDBenefitPlan {
|
|
179
|
+
type: 'notApplicable';
|
|
180
|
+
benefits: STDBenefits;
|
|
181
|
+
identifier: string;
|
|
182
|
+
policyPeriod: 'current' | 'renewal';
|
|
183
|
+
rateSchedule: RateSchedule[];
|
|
184
|
+
currentCarrierName?: string;
|
|
185
|
+
benefitClassAvailability?: string[];
|
|
186
|
+
}
|
|
187
|
+
export type LTDBenefitDuration = {
|
|
188
|
+
type: 'ssnra';
|
|
189
|
+
} | {
|
|
190
|
+
type: 'toAge';
|
|
191
|
+
age: number;
|
|
192
|
+
} | {
|
|
193
|
+
type: 'years';
|
|
194
|
+
years: number;
|
|
195
|
+
};
|
|
196
|
+
export interface LTDBenefits {
|
|
197
|
+
objectType: 'ltd';
|
|
198
|
+
benefitAmount: PercentageOfSalaryValue;
|
|
199
|
+
maximumAmount: {
|
|
200
|
+
type: 'dollarAmount';
|
|
201
|
+
dollarAmount: number;
|
|
202
|
+
};
|
|
203
|
+
benefitDuration: LTDBenefitDuration;
|
|
204
|
+
eliminationPeriod: DaysValue;
|
|
205
|
+
ownOccupationPeriod?: MonthsValue;
|
|
206
|
+
mentalIllness?: MonthsValue;
|
|
207
|
+
substanceAbuse?: MonthsValue;
|
|
208
|
+
definitionOfEarnings: {
|
|
209
|
+
type: 'salary' | 'w2Earnings' | 'baseWithBonus';
|
|
210
|
+
};
|
|
211
|
+
employerContribution: EmployerContributionType;
|
|
212
|
+
cola?: 'included' | 'notIncluded';
|
|
213
|
+
rehab?: 'mandatoryWithEnhanced' | 'mandatory' | 'notIncluded';
|
|
214
|
+
conversion?: 'included' | 'notIncluded';
|
|
215
|
+
waiverOfPremium?: 'included' | 'notIncluded';
|
|
216
|
+
guaranteedIssue?: DollarAmountValue;
|
|
217
|
+
specialConditionsLimitations?: MonthsValue;
|
|
218
|
+
gainfulEarningsTestAnyOccupation?: {
|
|
219
|
+
type: 'percentage';
|
|
220
|
+
amount: number;
|
|
221
|
+
};
|
|
222
|
+
gainfulEarningsTestOwnOccupation?: {
|
|
223
|
+
type: 'percentage';
|
|
224
|
+
amount: number;
|
|
225
|
+
};
|
|
226
|
+
}
|
|
227
|
+
export interface LTDBenefitPlan {
|
|
228
|
+
type: 'notApplicable';
|
|
229
|
+
benefits: LTDBenefits;
|
|
230
|
+
identifier: string;
|
|
231
|
+
policyPeriod: 'current' | 'renewal';
|
|
232
|
+
rateSchedule: RateSchedule[];
|
|
233
|
+
currentCarrierName?: string;
|
|
234
|
+
benefitClassAvailability?: string[];
|
|
235
|
+
}
|
|
236
|
+
export interface VoluntaryLifeBenefits {
|
|
237
|
+
objectType: 'voluntaryLifeAdnd';
|
|
238
|
+
employee: {
|
|
239
|
+
benefitMaximum: BenefitAmountFlat;
|
|
240
|
+
guaranteeIssue: {
|
|
241
|
+
type: 'flatAmount';
|
|
242
|
+
amount: number;
|
|
243
|
+
};
|
|
244
|
+
benefitDescription: {
|
|
245
|
+
type: 'increments' | 'flatAmount';
|
|
246
|
+
amounts: number[];
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
spouse?: {
|
|
250
|
+
benefitMaximum: BenefitAmountFlat;
|
|
251
|
+
guaranteeIssue: {
|
|
252
|
+
type: 'flatAmount';
|
|
253
|
+
amount: number;
|
|
254
|
+
};
|
|
255
|
+
benefitDescription: {
|
|
256
|
+
type: 'increments' | 'flatAmount';
|
|
257
|
+
amounts: number[];
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
child?: {
|
|
261
|
+
benefitMaximum: BenefitAmountFlat;
|
|
262
|
+
amountNotToExceed?: {
|
|
263
|
+
type: 'percentageOfEmployeeElection';
|
|
264
|
+
amount: number;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
portability?: 'included' | 'notIncluded';
|
|
268
|
+
conversion?: 'included' | 'notIncluded';
|
|
269
|
+
ageReduction?: AgeReductionSchedule;
|
|
270
|
+
}
|
|
271
|
+
export interface VoluntaryLifeBenefitPlan {
|
|
272
|
+
type: 'notApplicable';
|
|
273
|
+
benefits: VoluntaryLifeBenefits;
|
|
274
|
+
identifier: string;
|
|
275
|
+
policyPeriod: 'current' | 'renewal';
|
|
276
|
+
rateSchedule: RateSchedule[];
|
|
277
|
+
currentCarrierName?: string;
|
|
278
|
+
benefitClassAvailability?: string[];
|
|
279
|
+
}
|
|
280
|
+
export interface AccidentBenefits {
|
|
281
|
+
objectType: 'accident';
|
|
282
|
+
coverageType: 'onAndOffJob' | 'offJobOnly';
|
|
283
|
+
portability: 'included' | 'notIncluded';
|
|
284
|
+
wellnessBenefit?: DollarAmountValue | NotIncludedValue;
|
|
285
|
+
urgentCare?: DollarAmountValue;
|
|
286
|
+
ambulanceAir?: DollarAmountValue;
|
|
287
|
+
ambulanceGround?: DollarAmountValue;
|
|
288
|
+
icuAdmission?: DollarAmountValue;
|
|
289
|
+
hospitalAdmission?: DollarAmountValue;
|
|
290
|
+
hospitalConfinement?: DollarAmountValue;
|
|
291
|
+
coma?: UpToDollarAmountValue;
|
|
292
|
+
annualOpenEnrollment?: string;
|
|
293
|
+
}
|
|
294
|
+
export interface AccidentBenefitPlan {
|
|
295
|
+
type: 'notApplicable';
|
|
296
|
+
benefits: AccidentBenefits;
|
|
297
|
+
identifier: string;
|
|
298
|
+
policyPeriod: 'current' | 'renewal';
|
|
299
|
+
rateSchedule: RateSchedule[];
|
|
300
|
+
currentCarrierName?: string;
|
|
301
|
+
benefitClassAvailability?: string[];
|
|
302
|
+
}
|
|
303
|
+
export interface CriticalIllnessBenefits {
|
|
304
|
+
objectType: 'criticalIllness';
|
|
305
|
+
employee: {
|
|
306
|
+
benefitMaximum: BenefitAmountFlat;
|
|
307
|
+
guaranteeIssue: {
|
|
308
|
+
type: 'flatAmount';
|
|
309
|
+
amount: number;
|
|
310
|
+
};
|
|
311
|
+
benefitDescription: {
|
|
312
|
+
type: 'increments' | 'flatAmount';
|
|
313
|
+
amounts: number[];
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
spouse?: {
|
|
317
|
+
benefitMaximum: BenefitAmountFlat;
|
|
318
|
+
guaranteeIssue: {
|
|
319
|
+
type: 'flatAmount';
|
|
320
|
+
amount: number;
|
|
321
|
+
};
|
|
322
|
+
benefitDescription: {
|
|
323
|
+
type: 'increments' | 'flatAmount';
|
|
324
|
+
amounts: number[];
|
|
325
|
+
};
|
|
326
|
+
};
|
|
327
|
+
child?: {
|
|
328
|
+
benefitMaximum: BenefitAmountFlat;
|
|
329
|
+
benefitDescription: {
|
|
330
|
+
type: 'flatAmount';
|
|
331
|
+
amounts: number[];
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
ageBasis: 'attainedAge' | 'issueAge';
|
|
335
|
+
portability?: 'included' | 'notIncluded';
|
|
336
|
+
wellnessBenefit?: DollarAmountValue | NotIncludedValue;
|
|
337
|
+
ageReduction?: AgeReductionSchedule;
|
|
338
|
+
maximumPayout?: {
|
|
339
|
+
type: 'percentage';
|
|
340
|
+
amount: number;
|
|
341
|
+
};
|
|
342
|
+
preExistingCondition?: {
|
|
343
|
+
type: 'waived' | 'months';
|
|
344
|
+
monthsDiagnosisFreeAfterEffDate?: number;
|
|
345
|
+
};
|
|
346
|
+
occurrenceOfDifferentIllness?: {
|
|
347
|
+
type: 'included' | 'notIncluded';
|
|
348
|
+
};
|
|
349
|
+
additionalOccurrenceOfSameIllness?: {
|
|
350
|
+
type: 'included' | 'notIncluded';
|
|
351
|
+
};
|
|
352
|
+
annualOpenEnrollment?: string;
|
|
353
|
+
}
|
|
354
|
+
export interface CriticalIllnessBenefitPlan {
|
|
355
|
+
type: 'notApplicable';
|
|
356
|
+
benefits: CriticalIllnessBenefits;
|
|
357
|
+
identifier: string;
|
|
358
|
+
policyPeriod: 'current' | 'renewal';
|
|
359
|
+
rateSchedule: RateSchedule[];
|
|
360
|
+
currentCarrierName?: string;
|
|
361
|
+
benefitClassAvailability?: string[];
|
|
362
|
+
}
|
|
363
|
+
export interface HospitalIndemnityBenefits {
|
|
364
|
+
objectType: 'hospitalIndemnity';
|
|
365
|
+
portability: 'included' | 'notIncluded';
|
|
366
|
+
hospitalAdmission: DollarAmountValue;
|
|
367
|
+
hospitalConfinement: DollarAmountValue;
|
|
368
|
+
icuAdmission: DollarAmountValue;
|
|
369
|
+
icuConfinement: DollarAmountValue;
|
|
370
|
+
wellness?: DollarAmountValue | NotIncludedValue;
|
|
371
|
+
preExistingCondition?: {
|
|
372
|
+
type: 'months';
|
|
373
|
+
monthsDiagnosisFreeAfterEffDate: number;
|
|
374
|
+
monthsBeforeEffDate: number;
|
|
375
|
+
};
|
|
376
|
+
annualOpenEnrollment?: string;
|
|
377
|
+
}
|
|
378
|
+
export interface HospitalIndemnityBenefitPlan {
|
|
379
|
+
type: 'notApplicable';
|
|
380
|
+
benefits: HospitalIndemnityBenefits;
|
|
381
|
+
identifier: string;
|
|
382
|
+
policyPeriod: 'current' | 'renewal';
|
|
383
|
+
rateSchedule: RateSchedule[];
|
|
384
|
+
currentCarrierName?: string;
|
|
385
|
+
benefitClassAvailability?: string[];
|
|
386
|
+
}
|
|
387
|
+
export type EmployerContributionType = 'oneHundredPercentEmployerPaid' | 'employerContributes' | 'oneHundredPercentEmployeePaid' | 'voluntary';
|
|
388
|
+
export interface AgeReductionSchedule {
|
|
389
|
+
type: 'percentageAtAge';
|
|
390
|
+
schedules: Array<{
|
|
391
|
+
percent: number;
|
|
392
|
+
ageBandLower: number;
|
|
393
|
+
}>;
|
|
394
|
+
}
|
|
395
|
+
export interface TechCredit {
|
|
396
|
+
type: 'pepm' | 'percentage';
|
|
397
|
+
amount: number;
|
|
398
|
+
}
|
|
399
|
+
export type CoverageType = 'dental' | 'vision' | 'basicLifeAdnd' | 'voluntaryLifeAdnd' | 'std' | 'ltd' | 'accident' | 'criticalIllness' | 'hospitalIndemnity';
|
|
400
|
+
export type BenefitPlanUnion = DentalBenefitPlan | VisionBenefitPlan | BasicLifeBenefitPlan | STDBenefitPlan | LTDBenefitPlan | VoluntaryLifeBenefitPlan | AccidentBenefitPlan | CriticalIllnessBenefitPlan | HospitalIndemnityBenefitPlan;
|
|
401
|
+
export interface Coverage {
|
|
402
|
+
type: CoverageType;
|
|
403
|
+
status: 'quoteNeeded' | 'quoted' | 'sold' | 'declined';
|
|
404
|
+
benefitPlans: BenefitPlanUnion[];
|
|
405
|
+
techCredit?: TechCredit;
|
|
406
|
+
}
|
|
407
|
+
export interface Employer {
|
|
408
|
+
name: string;
|
|
409
|
+
naicsCode?: string;
|
|
410
|
+
sicCode?: string;
|
|
411
|
+
ein?: string;
|
|
412
|
+
situsState: string;
|
|
413
|
+
numberOfEligibleEmployees: number;
|
|
414
|
+
hasEmployeeOutsideUS?: boolean;
|
|
415
|
+
benAdminPlatform?: {
|
|
416
|
+
name: string;
|
|
417
|
+
};
|
|
418
|
+
}
|
|
419
|
+
export interface Broker {
|
|
420
|
+
name: string;
|
|
421
|
+
address: {
|
|
422
|
+
firstLine: string;
|
|
423
|
+
secondLine?: string;
|
|
424
|
+
thirdLine?: string;
|
|
425
|
+
cityName: string;
|
|
426
|
+
stateProvinceCode: string;
|
|
427
|
+
postalCode: string;
|
|
428
|
+
countryCode: string;
|
|
429
|
+
};
|
|
430
|
+
producer?: {
|
|
431
|
+
firstName: string;
|
|
432
|
+
lastName: string;
|
|
433
|
+
email: string;
|
|
434
|
+
};
|
|
435
|
+
accountManager?: {
|
|
436
|
+
firstName: string;
|
|
437
|
+
lastName: string;
|
|
438
|
+
};
|
|
439
|
+
commissions?: Array<{
|
|
440
|
+
coverageType: CoverageType;
|
|
441
|
+
currentType: 'percentage' | 'pepm';
|
|
442
|
+
currentAmount: number;
|
|
443
|
+
requestedType: 'percentage' | 'pepm';
|
|
444
|
+
requestedAmount: number;
|
|
445
|
+
benefitPlanIdentifier: string;
|
|
446
|
+
}>;
|
|
447
|
+
}
|
|
448
|
+
export interface CensusEntry {
|
|
449
|
+
employeeCode: string;
|
|
450
|
+
gender: 'male' | 'female';
|
|
451
|
+
birthDate: string;
|
|
452
|
+
postalCode: string;
|
|
453
|
+
annualIncome: number;
|
|
454
|
+
employmentStatus: 'active' | 'terminated';
|
|
455
|
+
employeeJobTitle?: string;
|
|
456
|
+
coverage: Array<{
|
|
457
|
+
coverageType: CoverageType;
|
|
458
|
+
isWaived: boolean;
|
|
459
|
+
coverageAmount: number;
|
|
460
|
+
coverageAmountType: 'flatAmount' | 'multiple';
|
|
461
|
+
benefitPlanName?: string;
|
|
462
|
+
coverageTierCode?: string;
|
|
463
|
+
}>;
|
|
464
|
+
}
|
|
465
|
+
export interface QuoteAPIResponse {
|
|
466
|
+
files?: Array<{
|
|
467
|
+
uri: string;
|
|
468
|
+
identifier: string;
|
|
469
|
+
}>;
|
|
470
|
+
notes?: string;
|
|
471
|
+
broker: Broker;
|
|
472
|
+
census: CensusEntry[];
|
|
473
|
+
employer: Employer;
|
|
474
|
+
coverages: Coverage[];
|
|
475
|
+
}
|
|
476
|
+
//# sourceMappingURL=api-schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api-schema.d.ts","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/types/api-schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api-schema.js","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/types/api-schema.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { CostSharingType, FundingType } from './common';
|
|
2
|
+
export interface BasicLifePlanData {
|
|
3
|
+
isOffered: boolean;
|
|
4
|
+
benefitType: 'flat' | 'multiple' | 'both';
|
|
5
|
+
flatBenefitAmount: number;
|
|
6
|
+
incomeMultiple: number;
|
|
7
|
+
hasAdnd: boolean;
|
|
8
|
+
benefitsVaryByClass: boolean;
|
|
9
|
+
hasSpouseLife: boolean;
|
|
10
|
+
hasChildLife: boolean;
|
|
11
|
+
hasRetireeLife: boolean;
|
|
12
|
+
hasAgeReductions: boolean;
|
|
13
|
+
ageReductionSchedule: string;
|
|
14
|
+
guaranteeIssue: number;
|
|
15
|
+
waitingPeriod: number;
|
|
16
|
+
costSharing: CostSharingType;
|
|
17
|
+
funding: FundingType;
|
|
18
|
+
hasPortability: boolean;
|
|
19
|
+
hasConversion: boolean;
|
|
20
|
+
hasWaiverOfPremium: boolean;
|
|
21
|
+
hasAcceleratedDeathBenefit: boolean;
|
|
22
|
+
}
|
|
23
|
+
export declare const defaultBasicLifePlan: BasicLifePlanData;
|
|
24
|
+
export declare const basicLifeFieldMetadata: Record<keyof BasicLifePlanData, {
|
|
25
|
+
label: string;
|
|
26
|
+
description?: string;
|
|
27
|
+
priority: 1 | 2 | 3;
|
|
28
|
+
unit?: 'currency' | 'percentage' | 'days' | 'count' | 'boolean' | 'text' | 'multiple';
|
|
29
|
+
}>;
|
|
30
|
+
//# sourceMappingURL=basic-life.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"basic-life.d.ts","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/types/basic-life.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAG7D,MAAM,WAAW,iBAAiB;IAEhC,SAAS,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,MAAM,GAAG,UAAU,GAAG,MAAM,CAAC;IAC1C,iBAAiB,EAAE,MAAM,CAAC;IAC1B,cAAc,EAAE,MAAM,CAAC;IACvB,OAAO,EAAE,OAAO,CAAC;IAGjB,mBAAmB,EAAE,OAAO,CAAC;IAC7B,aAAa,EAAE,OAAO,CAAC;IACvB,YAAY,EAAE,OAAO,CAAC;IACtB,cAAc,EAAE,OAAO,CAAC;IACxB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,eAAe,CAAC;IAC7B,OAAO,EAAE,WAAW,CAAC;IACrB,cAAc,EAAE,OAAO,CAAC;IACxB,aAAa,EAAE,OAAO,CAAC;IACvB,kBAAkB,EAAE,OAAO,CAAC;IAC5B,0BAA0B,EAAE,OAAO,CAAC;CACrC;AAGD,eAAO,MAAM,oBAAoB,EAAE,iBAoBlC,CAAC;AAGF,eAAO,MAAM,sBAAsB,EAAE,MAAM,CACzC,MAAM,iBAAiB,EACvB;IACE,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACpB,IAAI,CAAC,EAAE,UAAU,GAAG,YAAY,GAAG,MAAM,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,CAAC;CACvF,CAmHF,CAAC"}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
export const defaultBasicLifePlan = {
|
|
2
|
+
isOffered: true,
|
|
3
|
+
benefitType: 'multiple',
|
|
4
|
+
flatBenefitAmount: 50000,
|
|
5
|
+
incomeMultiple: 1,
|
|
6
|
+
hasAdnd: true,
|
|
7
|
+
benefitsVaryByClass: false,
|
|
8
|
+
hasSpouseLife: false,
|
|
9
|
+
hasChildLife: false,
|
|
10
|
+
hasRetireeLife: false,
|
|
11
|
+
hasAgeReductions: true,
|
|
12
|
+
ageReductionSchedule: '35% at 65, 50% at 70',
|
|
13
|
+
guaranteeIssue: 50000,
|
|
14
|
+
waitingPeriod: 0,
|
|
15
|
+
costSharing: 'employer_paid',
|
|
16
|
+
funding: 'fully_insured',
|
|
17
|
+
hasPortability: true,
|
|
18
|
+
hasConversion: true,
|
|
19
|
+
hasWaiverOfPremium: true,
|
|
20
|
+
hasAcceleratedDeathBenefit: true,
|
|
21
|
+
};
|
|
22
|
+
export const basicLifeFieldMetadata = {
|
|
23
|
+
isOffered: {
|
|
24
|
+
label: 'Basic Life Benefit Offered',
|
|
25
|
+
description: 'Most employers offer basic life insurance as a core benefit',
|
|
26
|
+
priority: 1,
|
|
27
|
+
unit: 'boolean',
|
|
28
|
+
},
|
|
29
|
+
benefitType: {
|
|
30
|
+
label: 'Benefit Calculation Type',
|
|
31
|
+
description: 'How is the benefit amount determined - flat dollar amount or multiple of salary?',
|
|
32
|
+
priority: 1,
|
|
33
|
+
unit: 'text',
|
|
34
|
+
},
|
|
35
|
+
flatBenefitAmount: {
|
|
36
|
+
label: 'Flat Benefit Amount',
|
|
37
|
+
description: 'Fixed dollar amount if using flat benefit structure',
|
|
38
|
+
priority: 1,
|
|
39
|
+
unit: 'currency',
|
|
40
|
+
},
|
|
41
|
+
incomeMultiple: {
|
|
42
|
+
label: 'Income Multiple',
|
|
43
|
+
description: 'Multiple of annual salary (e.g., 1x, 2x)',
|
|
44
|
+
priority: 1,
|
|
45
|
+
unit: 'multiple',
|
|
46
|
+
},
|
|
47
|
+
hasAdnd: {
|
|
48
|
+
label: 'AD&D Included',
|
|
49
|
+
description: 'Accidental Death & Dismemberment coverage included with basic life',
|
|
50
|
+
priority: 1,
|
|
51
|
+
unit: 'boolean',
|
|
52
|
+
},
|
|
53
|
+
benefitsVaryByClass: {
|
|
54
|
+
label: 'Benefits Vary by Class',
|
|
55
|
+
description: 'Do benefit amounts differ based on employee class/tier?',
|
|
56
|
+
priority: 2,
|
|
57
|
+
unit: 'boolean',
|
|
58
|
+
},
|
|
59
|
+
hasSpouseLife: {
|
|
60
|
+
label: 'Spouse Life Included',
|
|
61
|
+
description: 'Basic life coverage available for spouses',
|
|
62
|
+
priority: 2,
|
|
63
|
+
unit: 'boolean',
|
|
64
|
+
},
|
|
65
|
+
hasChildLife: {
|
|
66
|
+
label: 'Child Life Included',
|
|
67
|
+
description: 'Basic life coverage available for dependent children',
|
|
68
|
+
priority: 2,
|
|
69
|
+
unit: 'boolean',
|
|
70
|
+
},
|
|
71
|
+
hasRetireeLife: {
|
|
72
|
+
label: 'Retiree Life Available',
|
|
73
|
+
description: 'Life coverage continues for retirees',
|
|
74
|
+
priority: 2,
|
|
75
|
+
unit: 'boolean',
|
|
76
|
+
},
|
|
77
|
+
hasAgeReductions: {
|
|
78
|
+
label: 'Age Reductions Apply',
|
|
79
|
+
description: 'Benefit amounts reduce at certain ages',
|
|
80
|
+
priority: 2,
|
|
81
|
+
unit: 'boolean',
|
|
82
|
+
},
|
|
83
|
+
ageReductionSchedule: {
|
|
84
|
+
label: 'Age Reduction Schedule',
|
|
85
|
+
description: 'When and by how much benefits reduce',
|
|
86
|
+
priority: 2,
|
|
87
|
+
unit: 'text',
|
|
88
|
+
},
|
|
89
|
+
guaranteeIssue: {
|
|
90
|
+
label: 'Guarantee Issue Amount',
|
|
91
|
+
description: 'Maximum amount issued without medical underwriting',
|
|
92
|
+
priority: 2,
|
|
93
|
+
unit: 'currency',
|
|
94
|
+
},
|
|
95
|
+
waitingPeriod: {
|
|
96
|
+
label: 'Waiting Period',
|
|
97
|
+
description: 'Days before new hire is eligible',
|
|
98
|
+
priority: 2,
|
|
99
|
+
unit: 'days',
|
|
100
|
+
},
|
|
101
|
+
costSharing: {
|
|
102
|
+
label: 'Cost Sharing',
|
|
103
|
+
description: 'Who pays for the coverage',
|
|
104
|
+
priority: 2,
|
|
105
|
+
unit: 'text',
|
|
106
|
+
},
|
|
107
|
+
funding: {
|
|
108
|
+
label: 'Funding Type',
|
|
109
|
+
priority: 2,
|
|
110
|
+
unit: 'text',
|
|
111
|
+
},
|
|
112
|
+
hasPortability: {
|
|
113
|
+
label: 'Portability',
|
|
114
|
+
description: 'Can coverage be taken when leaving employment',
|
|
115
|
+
priority: 2,
|
|
116
|
+
unit: 'boolean',
|
|
117
|
+
},
|
|
118
|
+
hasConversion: {
|
|
119
|
+
label: 'Conversion',
|
|
120
|
+
description: 'Can coverage be converted to individual policy',
|
|
121
|
+
priority: 2,
|
|
122
|
+
unit: 'boolean',
|
|
123
|
+
},
|
|
124
|
+
hasWaiverOfPremium: {
|
|
125
|
+
label: 'Waiver of Premium',
|
|
126
|
+
description: 'Premiums waived if employee becomes disabled',
|
|
127
|
+
priority: 2,
|
|
128
|
+
unit: 'boolean',
|
|
129
|
+
},
|
|
130
|
+
hasAcceleratedDeathBenefit: {
|
|
131
|
+
label: 'Accelerated Death Benefit',
|
|
132
|
+
description: 'Portion of benefit available for terminal illness',
|
|
133
|
+
priority: 2,
|
|
134
|
+
unit: 'boolean',
|
|
135
|
+
},
|
|
136
|
+
};
|
|
137
|
+
//# sourceMappingURL=basic-life.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"basic-life.js","sourceRoot":"","sources":["../../../../../../../../teams/istudio/apps/ancillary-benchmarking/src/lib/types/basic-life.ts"],"names":[],"mappings":"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"}
|