@iflow-mcp/attio-mcp 1.3.6
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 +891 -0
- package/LICENSE +236 -0
- package/README.md +817 -0
- package/dist/api/attio-client.d.ts +91 -0
- package/dist/api/attio-client.d.ts.map +1 -0
- package/dist/api/attio-client.js +325 -0
- package/dist/api/attio-client.js.map +1 -0
- package/dist/api/attio-objects.d.ts +3 -0
- package/dist/api/attio-objects.d.ts.map +1 -0
- package/dist/api/attio-objects.js +72 -0
- package/dist/api/attio-objects.js.map +1 -0
- package/dist/api/attribute-types.d.ts +123 -0
- package/dist/api/attribute-types.d.ts.map +1 -0
- package/dist/api/attribute-types.js +479 -0
- package/dist/api/attribute-types.js.map +1 -0
- package/dist/api/client-cache.d.ts +43 -0
- package/dist/api/client-cache.d.ts.map +1 -0
- package/dist/api/client-cache.js +71 -0
- package/dist/api/client-cache.js.map +1 -0
- package/dist/api/client-config.d.ts +53 -0
- package/dist/api/client-config.d.ts.map +1 -0
- package/dist/api/client-config.js +101 -0
- package/dist/api/client-config.js.map +1 -0
- package/dist/api/client-context.d.ts +51 -0
- package/dist/api/client-context.d.ts.map +1 -0
- package/dist/api/client-context.js +174 -0
- package/dist/api/client-context.js.map +1 -0
- package/dist/api/client-interceptors.d.ts +36 -0
- package/dist/api/client-interceptors.d.ts.map +1 -0
- package/dist/api/client-interceptors.js +97 -0
- package/dist/api/client-interceptors.js.map +1 -0
- package/dist/api/client-strategies.d.ts +76 -0
- package/dist/api/client-strategies.d.ts.map +1 -0
- package/dist/api/client-strategies.js +218 -0
- package/dist/api/client-strategies.js.map +1 -0
- package/dist/api/client.d.ts +3 -0
- package/dist/api/client.d.ts.map +1 -0
- package/dist/api/client.js +85 -0
- package/dist/api/client.js.map +1 -0
- package/dist/api/lazy-client.d.ts +11 -0
- package/dist/api/lazy-client.d.ts.map +1 -0
- package/dist/api/lazy-client.js +32 -0
- package/dist/api/lazy-client.js.map +1 -0
- package/dist/api/operations/batch.d.ts +109 -0
- package/dist/api/operations/batch.d.ts.map +1 -0
- package/dist/api/operations/batch.js +426 -0
- package/dist/api/operations/batch.js.map +1 -0
- package/dist/api/operations/crud.d.ts +64 -0
- package/dist/api/operations/crud.d.ts.map +1 -0
- package/dist/api/operations/crud.js +487 -0
- package/dist/api/operations/crud.js.map +1 -0
- package/dist/api/operations/index.d.ts +15 -0
- package/dist/api/operations/index.d.ts.map +1 -0
- package/dist/api/operations/index.js +20 -0
- package/dist/api/operations/index.js.map +1 -0
- package/dist/api/operations/lists.d.ts +66 -0
- package/dist/api/operations/lists.d.ts.map +1 -0
- package/dist/api/operations/lists.js +312 -0
- package/dist/api/operations/lists.js.map +1 -0
- package/dist/api/operations/notes.d.ts +30 -0
- package/dist/api/operations/notes.d.ts.map +1 -0
- package/dist/api/operations/notes.js +52 -0
- package/dist/api/operations/notes.js.map +1 -0
- package/dist/api/operations/query-parser.d.ts +27 -0
- package/dist/api/operations/query-parser.d.ts.map +1 -0
- package/dist/api/operations/query-parser.js +123 -0
- package/dist/api/operations/query-parser.js.map +1 -0
- package/dist/api/operations/retry.d.ts +49 -0
- package/dist/api/operations/retry.d.ts.map +1 -0
- package/dist/api/operations/retry.js +108 -0
- package/dist/api/operations/retry.js.map +1 -0
- package/dist/api/operations/search.d.ts +40 -0
- package/dist/api/operations/search.d.ts.map +1 -0
- package/dist/api/operations/search.js +720 -0
- package/dist/api/operations/search.js.map +1 -0
- package/dist/api/operations/tasks.d.ts +31 -0
- package/dist/api/operations/tasks.d.ts.map +1 -0
- package/dist/api/operations/tasks.js +323 -0
- package/dist/api/operations/tasks.js.map +1 -0
- package/dist/api/operations/types.d.ts +62 -0
- package/dist/api/operations/types.d.ts.map +1 -0
- package/dist/api/operations/types.js +10 -0
- package/dist/api/operations/types.js.map +1 -0
- package/dist/api/operations/workspace-members.d.ts +27 -0
- package/dist/api/operations/workspace-members.d.ts.map +1 -0
- package/dist/api/operations/workspace-members.js +89 -0
- package/dist/api/operations/workspace-members.js.map +1 -0
- package/dist/api/types.d.ts +131 -0
- package/dist/api/types.d.ts.map +1 -0
- package/dist/api/types.js +71 -0
- package/dist/api/types.js.map +1 -0
- package/dist/cli/commands/attributes.d.ts +34 -0
- package/dist/cli/commands/attributes.d.ts.map +1 -0
- package/dist/cli/commands/attributes.js +166 -0
- package/dist/cli/commands/attributes.js.map +1 -0
- package/dist/cli/commands/generate-skill.d.ts +28 -0
- package/dist/cli/commands/generate-skill.d.ts.map +1 -0
- package/dist/cli/commands/generate-skill.js +101 -0
- package/dist/cli/commands/generate-skill.js.map +1 -0
- package/dist/cli/discover.d.ts +3 -0
- package/dist/cli/discover.d.ts.map +1 -0
- package/dist/cli/discover.js +137 -0
- package/dist/cli/discover.js.map +1 -0
- package/dist/cli.d.ts +10 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +149 -0
- package/dist/cli.js.map +1 -0
- package/dist/config/batch-constants.d.ts +8 -0
- package/dist/config/batch-constants.d.ts.map +1 -0
- package/dist/config/batch-constants.js +8 -0
- package/dist/config/batch-constants.js.map +1 -0
- package/dist/config/deal-defaults.d.ts +135 -0
- package/dist/config/deal-defaults.d.ts.map +1 -0
- package/dist/config/deal-defaults.js +539 -0
- package/dist/config/deal-defaults.js.map +1 -0
- package/dist/config/security-limits.d.ts +62 -0
- package/dist/config/security-limits.d.ts.map +1 -0
- package/dist/config/security-limits.js +111 -0
- package/dist/config/security-limits.js.map +1 -0
- package/dist/config/tool-aliases.d.ts +21 -0
- package/dist/config/tool-aliases.d.ts.map +1 -0
- package/dist/config/tool-aliases.js +210 -0
- package/dist/config/tool-aliases.js.map +1 -0
- package/dist/config/tool-mode.d.ts +23 -0
- package/dist/config/tool-mode.d.ts.map +1 -0
- package/dist/config/tool-mode.js +36 -0
- package/dist/config/tool-mode.js.map +1 -0
- package/dist/constants/universal.constants.d.ts +261 -0
- package/dist/constants/universal.constants.d.ts.map +1 -0
- package/dist/constants/universal.constants.js +490 -0
- package/dist/constants/universal.constants.js.map +1 -0
- package/dist/errors/BaseWrappedError.d.ts +16 -0
- package/dist/errors/BaseWrappedError.d.ts.map +1 -0
- package/dist/errors/BaseWrappedError.js +27 -0
- package/dist/errors/BaseWrappedError.js.map +1 -0
- package/dist/errors/api-errors.d.ts +217 -0
- package/dist/errors/api-errors.d.ts.map +1 -0
- package/dist/errors/api-errors.js +406 -0
- package/dist/errors/api-errors.js.map +1 -0
- package/dist/errors/company-errors.d.ts +53 -0
- package/dist/errors/company-errors.d.ts.map +1 -0
- package/dist/errors/company-errors.js +62 -0
- package/dist/errors/company-errors.js.map +1 -0
- package/dist/errors/enhanced-api-errors.d.ts +186 -0
- package/dist/errors/enhanced-api-errors.d.ts.map +1 -0
- package/dist/errors/enhanced-api-errors.js +371 -0
- package/dist/errors/enhanced-api-errors.js.map +1 -0
- package/dist/errors/enhanced-helpers.d.ts +15 -0
- package/dist/errors/enhanced-helpers.d.ts.map +1 -0
- package/dist/errors/enhanced-helpers.js +53 -0
- package/dist/errors/enhanced-helpers.js.map +1 -0
- package/dist/errors/value-match-error.d.ts +15 -0
- package/dist/errors/value-match-error.d.ts.map +1 -0
- package/dist/errors/value-match-error.js +40 -0
- package/dist/errors/value-match-error.js.map +1 -0
- package/dist/handlers/error-interceptor.d.ts +6 -0
- package/dist/handlers/error-interceptor.d.ts.map +1 -0
- package/dist/handlers/error-interceptor.js +23 -0
- package/dist/handlers/error-interceptor.js.map +1 -0
- package/dist/handlers/rate-limited-handler.d.ts +27 -0
- package/dist/handlers/rate-limited-handler.d.ts.map +1 -0
- package/dist/handlers/rate-limited-handler.js +130 -0
- package/dist/handlers/rate-limited-handler.js.map +1 -0
- package/dist/handlers/resources.d.ts +12 -0
- package/dist/handlers/resources.d.ts.map +1 -0
- package/dist/handlers/resources.js +177 -0
- package/dist/handlers/resources.js.map +1 -0
- package/dist/handlers/tool-configs/companies/attributes.d.ts +85 -0
- package/dist/handlers/tool-configs/companies/attributes.d.ts.map +1 -0
- package/dist/handlers/tool-configs/companies/attributes.js +221 -0
- package/dist/handlers/tool-configs/companies/attributes.js.map +1 -0
- package/dist/handlers/tool-configs/companies/batch.d.ts +145 -0
- package/dist/handlers/tool-configs/companies/batch.d.ts.map +1 -0
- package/dist/handlers/tool-configs/companies/batch.js +280 -0
- package/dist/handlers/tool-configs/companies/batch.js.map +1 -0
- package/dist/handlers/tool-configs/companies/crud.d.ts +99 -0
- package/dist/handlers/tool-configs/companies/crud.d.ts.map +1 -0
- package/dist/handlers/tool-configs/companies/crud.js +154 -0
- package/dist/handlers/tool-configs/companies/crud.js.map +1 -0
- package/dist/handlers/tool-configs/companies/definitions.d.ts +5 -0
- package/dist/handlers/tool-configs/companies/definitions.d.ts.map +1 -0
- package/dist/handlers/tool-configs/companies/definitions.js +9 -0
- package/dist/handlers/tool-configs/companies/definitions.js.map +1 -0
- package/dist/handlers/tool-configs/companies/formatters.d.ts +42 -0
- package/dist/handlers/tool-configs/companies/formatters.d.ts.map +1 -0
- package/dist/handlers/tool-configs/companies/formatters.js +223 -0
- package/dist/handlers/tool-configs/companies/formatters.js.map +1 -0
- package/dist/handlers/tool-configs/companies/index.d.ts +637 -0
- package/dist/handlers/tool-configs/companies/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/companies/index.js +86 -0
- package/dist/handlers/tool-configs/companies/index.js.map +1 -0
- package/dist/handlers/tool-configs/companies/notes.d.ts +61 -0
- package/dist/handlers/tool-configs/companies/notes.d.ts.map +1 -0
- package/dist/handlers/tool-configs/companies/notes.js +119 -0
- package/dist/handlers/tool-configs/companies/notes.js.map +1 -0
- package/dist/handlers/tool-configs/companies/relationships.d.ts +137 -0
- package/dist/handlers/tool-configs/companies/relationships.d.ts.map +1 -0
- package/dist/handlers/tool-configs/companies/relationships.js +163 -0
- package/dist/handlers/tool-configs/companies/relationships.js.map +1 -0
- package/dist/handlers/tool-configs/companies/search.d.ts +100 -0
- package/dist/handlers/tool-configs/companies/search.d.ts.map +1 -0
- package/dist/handlers/tool-configs/companies/search.js +141 -0
- package/dist/handlers/tool-configs/companies/search.js.map +1 -0
- package/dist/handlers/tool-configs/companies/types.d.ts +6 -0
- package/dist/handlers/tool-configs/companies/types.d.ts.map +1 -0
- package/dist/handlers/tool-configs/companies/types.js +2 -0
- package/dist/handlers/tool-configs/companies/types.js.map +1 -0
- package/dist/handlers/tool-configs/deals/index.d.ts +52 -0
- package/dist/handlers/tool-configs/deals/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/deals/index.js +11 -0
- package/dist/handlers/tool-configs/deals/index.js.map +1 -0
- package/dist/handlers/tool-configs/deals/notes.d.ts +53 -0
- package/dist/handlers/tool-configs/deals/notes.d.ts.map +1 -0
- package/dist/handlers/tool-configs/deals/notes.js +106 -0
- package/dist/handlers/tool-configs/deals/notes.js.map +1 -0
- package/dist/handlers/tool-configs/general/index.d.ts +65 -0
- package/dist/handlers/tool-configs/general/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/general/index.js +19 -0
- package/dist/handlers/tool-configs/general/index.js.map +1 -0
- package/dist/handlers/tool-configs/index.d.ts +13 -0
- package/dist/handlers/tool-configs/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/index.js +13 -0
- package/dist/handlers/tool-configs/index.js.map +1 -0
- package/dist/handlers/tool-configs/lists.d.ts +507 -0
- package/dist/handlers/tool-configs/lists.d.ts.map +1 -0
- package/dist/handlers/tool-configs/lists.js +617 -0
- package/dist/handlers/tool-configs/lists.js.map +1 -0
- package/dist/handlers/tool-configs/openai/index.d.ts +57 -0
- package/dist/handlers/tool-configs/openai/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/openai/index.js +153 -0
- package/dist/handlers/tool-configs/openai/index.js.map +1 -0
- package/dist/handlers/tool-configs/paginated-people.d.ts +197 -0
- package/dist/handlers/tool-configs/paginated-people.d.ts.map +1 -0
- package/dist/handlers/tool-configs/paginated-people.js +263 -0
- package/dist/handlers/tool-configs/paginated-people.js.map +1 -0
- package/dist/handlers/tool-configs/people/activity-search.d.ts +98 -0
- package/dist/handlers/tool-configs/people/activity-search.d.ts.map +1 -0
- package/dist/handlers/tool-configs/people/activity-search.js +113 -0
- package/dist/handlers/tool-configs/people/activity-search.js.map +1 -0
- package/dist/handlers/tool-configs/people/advanced-search.d.ts +62 -0
- package/dist/handlers/tool-configs/people/advanced-search.d.ts.map +1 -0
- package/dist/handlers/tool-configs/people/advanced-search.js +74 -0
- package/dist/handlers/tool-configs/people/advanced-search.js.map +1 -0
- package/dist/handlers/tool-configs/people/crud.d.ts +68 -0
- package/dist/handlers/tool-configs/people/crud.d.ts.map +1 -0
- package/dist/handlers/tool-configs/people/crud.js +76 -0
- package/dist/handlers/tool-configs/people/crud.js.map +1 -0
- package/dist/handlers/tool-configs/people/date-search.d.ts +42 -0
- package/dist/handlers/tool-configs/people/date-search.d.ts.map +1 -0
- package/dist/handlers/tool-configs/people/date-search.js +93 -0
- package/dist/handlers/tool-configs/people/date-search.js.map +1 -0
- package/dist/handlers/tool-configs/people/formatters.d.ts +19 -0
- package/dist/handlers/tool-configs/people/formatters.d.ts.map +1 -0
- package/dist/handlers/tool-configs/people/formatters.js +111 -0
- package/dist/handlers/tool-configs/people/formatters.js.map +1 -0
- package/dist/handlers/tool-configs/people/index.d.ts +417 -0
- package/dist/handlers/tool-configs/people/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/people/index.js +30 -0
- package/dist/handlers/tool-configs/people/index.js.map +1 -0
- package/dist/handlers/tool-configs/people/notes.d.ts +43 -0
- package/dist/handlers/tool-configs/people/notes.d.ts.map +1 -0
- package/dist/handlers/tool-configs/people/notes.js +99 -0
- package/dist/handlers/tool-configs/people/notes.js.map +1 -0
- package/dist/handlers/tool-configs/people/relationships.d.ts +112 -0
- package/dist/handlers/tool-configs/people/relationships.d.ts.map +1 -0
- package/dist/handlers/tool-configs/people/relationships.js +173 -0
- package/dist/handlers/tool-configs/people/relationships.js.map +1 -0
- package/dist/handlers/tool-configs/people/search.d.ts +53 -0
- package/dist/handlers/tool-configs/people/search.d.ts.map +1 -0
- package/dist/handlers/tool-configs/people/search.js +61 -0
- package/dist/handlers/tool-configs/people/search.js.map +1 -0
- package/dist/handlers/tool-configs/people-types.d.ts +32 -0
- package/dist/handlers/tool-configs/people-types.d.ts.map +1 -0
- package/dist/handlers/tool-configs/people-types.js +5 -0
- package/dist/handlers/tool-configs/people-types.js.map +1 -0
- package/dist/handlers/tool-configs/prompts.d.ts +69 -0
- package/dist/handlers/tool-configs/prompts.d.ts.map +1 -0
- package/dist/handlers/tool-configs/prompts.js +92 -0
- package/dist/handlers/tool-configs/prompts.js.map +1 -0
- package/dist/handlers/tool-configs/rate-limited-people.d.ts +203 -0
- package/dist/handlers/tool-configs/rate-limited-people.d.ts.map +1 -0
- package/dist/handlers/tool-configs/rate-limited-people.js +44 -0
- package/dist/handlers/tool-configs/rate-limited-people.js.map +1 -0
- package/dist/handlers/tool-configs/records/index.d.ts +315 -0
- package/dist/handlers/tool-configs/records/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/records/index.js +277 -0
- package/dist/handlers/tool-configs/records/index.js.map +1 -0
- package/dist/handlers/tool-configs/relationships/inconsistency-handlers.d.ts +22 -0
- package/dist/handlers/tool-configs/relationships/inconsistency-handlers.d.ts.map +1 -0
- package/dist/handlers/tool-configs/relationships/inconsistency-handlers.js +71 -0
- package/dist/handlers/tool-configs/relationships/inconsistency-handlers.js.map +1 -0
- package/dist/handlers/tool-configs/relationships/index.d.ts +90 -0
- package/dist/handlers/tool-configs/relationships/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/relationships/index.js +286 -0
- package/dist/handlers/tool-configs/relationships/index.js.map +1 -0
- package/dist/handlers/tool-configs/relationships/operation-executors.d.ts +23 -0
- package/dist/handlers/tool-configs/relationships/operation-executors.d.ts.map +1 -0
- package/dist/handlers/tool-configs/relationships/operation-executors.js +54 -0
- package/dist/handlers/tool-configs/relationships/operation-executors.js.map +1 -0
- package/dist/handlers/tool-configs/relationships/state-analyzer.d.ts +41 -0
- package/dist/handlers/tool-configs/relationships/state-analyzer.d.ts.map +1 -0
- package/dist/handlers/tool-configs/relationships/state-analyzer.js +100 -0
- package/dist/handlers/tool-configs/relationships/state-analyzer.js.map +1 -0
- package/dist/handlers/tool-configs/relationships/types.d.ts +22 -0
- package/dist/handlers/tool-configs/relationships/types.d.ts.map +1 -0
- package/dist/handlers/tool-configs/relationships/types.js +5 -0
- package/dist/handlers/tool-configs/relationships/types.js.map +1 -0
- package/dist/handlers/tool-configs/relationships/validators.d.ts +37 -0
- package/dist/handlers/tool-configs/relationships/validators.d.ts.map +1 -0
- package/dist/handlers/tool-configs/relationships/validators.js +125 -0
- package/dist/handlers/tool-configs/relationships/validators.js.map +1 -0
- package/dist/handlers/tool-configs/resource-specific-tools.d.ts +15 -0
- package/dist/handlers/tool-configs/resource-specific-tools.d.ts.map +1 -0
- package/dist/handlers/tool-configs/resource-specific-tools.js +33 -0
- package/dist/handlers/tool-configs/resource-specific-tools.js.map +1 -0
- package/dist/handlers/tool-configs/shared/type-utils.d.ts +162 -0
- package/dist/handlers/tool-configs/shared/type-utils.d.ts.map +1 -0
- package/dist/handlers/tool-configs/shared/type-utils.js +312 -0
- package/dist/handlers/tool-configs/shared/type-utils.js.map +1 -0
- package/dist/handlers/tool-configs/tasks.d.ts +221 -0
- package/dist/handlers/tool-configs/tasks.d.ts.map +1 -0
- package/dist/handlers/tool-configs/tasks.js +229 -0
- package/dist/handlers/tool-configs/tasks.js.map +1 -0
- package/dist/handlers/tool-configs/universal/advanced-operations.d.ts +7 -0
- package/dist/handlers/tool-configs/universal/advanced-operations.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/advanced-operations.js +7 -0
- package/dist/handlers/tool-configs/universal/advanced-operations.js.map +1 -0
- package/dist/handlers/tool-configs/universal/batch-search.d.ts +107 -0
- package/dist/handlers/tool-configs/universal/batch-search.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/batch-search.js +167 -0
- package/dist/handlers/tool-configs/universal/batch-search.js.map +1 -0
- package/dist/handlers/tool-configs/universal/config.d.ts +6 -0
- package/dist/handlers/tool-configs/universal/config.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/config.js +12 -0
- package/dist/handlers/tool-configs/universal/config.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/crud-error-handlers.d.ts +30 -0
- package/dist/handlers/tool-configs/universal/core/crud-error-handlers.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/crud-error-handlers.js +757 -0
- package/dist/handlers/tool-configs/universal/core/crud-error-handlers.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/crud-operations.d.ts +116 -0
- package/dist/handlers/tool-configs/universal/core/crud-operations.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/crud-operations.js +220 -0
- package/dist/handlers/tool-configs/universal/core/crud-operations.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/detailed-info-operations.d.ts +31 -0
- package/dist/handlers/tool-configs/universal/core/detailed-info-operations.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/detailed-info-operations.js +75 -0
- package/dist/handlers/tool-configs/universal/core/detailed-info-operations.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/error-utils.d.ts +2 -0
- package/dist/handlers/tool-configs/universal/core/error-utils.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/error-utils.js +4 -0
- package/dist/handlers/tool-configs/universal/core/error-utils.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/index.d.ts +523 -0
- package/dist/handlers/tool-configs/universal/core/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/index.js +34 -0
- package/dist/handlers/tool-configs/universal/core/index.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/metadata-operations.d.ts +126 -0
- package/dist/handlers/tool-configs/universal/core/metadata-operations.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/metadata-operations.js +305 -0
- package/dist/handlers/tool-configs/universal/core/metadata-operations.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/notes-operations.d.ts +82 -0
- package/dist/handlers/tool-configs/universal/core/notes-operations.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/notes-operations.js +130 -0
- package/dist/handlers/tool-configs/universal/core/notes-operations.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/pii-sanitizer.d.ts +41 -0
- package/dist/handlers/tool-configs/universal/core/pii-sanitizer.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/pii-sanitizer.js +235 -0
- package/dist/handlers/tool-configs/universal/core/pii-sanitizer.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/record-details-operations.d.ts +39 -0
- package/dist/handlers/tool-configs/universal/core/record-details-operations.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/record-details-operations.js +133 -0
- package/dist/handlers/tool-configs/universal/core/record-details-operations.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/search-operations.d.ts +137 -0
- package/dist/handlers/tool-configs/universal/core/search-operations.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/search-operations.js +128 -0
- package/dist/handlers/tool-configs/universal/core/search-operations.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/utils/note-formatters.d.ts +14 -0
- package/dist/handlers/tool-configs/universal/core/utils/note-formatters.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/utils/note-formatters.js +92 -0
- package/dist/handlers/tool-configs/universal/core/utils/note-formatters.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/utils.d.ts +13 -0
- package/dist/handlers/tool-configs/universal/core/utils.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/utils.js +68 -0
- package/dist/handlers/tool-configs/universal/core/utils.js.map +1 -0
- package/dist/handlers/tool-configs/universal/core/value-extractors.d.ts +61 -0
- package/dist/handlers/tool-configs/universal/core/value-extractors.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/core/value-extractors.js +212 -0
- package/dist/handlers/tool-configs/universal/core/value-extractors.js.map +1 -0
- package/dist/handlers/tool-configs/universal/errors/validation-errors.d.ts +44 -0
- package/dist/handlers/tool-configs/universal/errors/validation-errors.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/errors/validation-errors.js +61 -0
- package/dist/handlers/tool-configs/universal/errors/validation-errors.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/config.d.ts +18 -0
- package/dist/handlers/tool-configs/universal/field-mapper/config.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/config.js +24 -0
- package/dist/handlers/tool-configs/universal/field-mapper/config.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/companies.d.ts +10 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/companies.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/companies.js +102 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/companies.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/deals.d.ts +10 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/deals.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/deals.js +154 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/deals.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/index.d.ts +20 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/index.js +29 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/index.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/lists.d.ts +10 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/lists.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/lists.js +36 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/lists.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/notes.d.ts +10 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/notes.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/notes.js +40 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/notes.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/people.d.ts +10 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/people.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/people.js +93 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/people.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/records.d.ts +10 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/records.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/records.js +35 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/records.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/tasks.d.ts +10 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/tasks.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/tasks.js +75 -0
- package/dist/handlers/tool-configs/universal/field-mapper/constants/tasks.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/index.d.ts +15 -0
- package/dist/handlers/tool-configs/universal/field-mapper/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/index.js +19 -0
- package/dist/handlers/tool-configs/universal/field-mapper/index.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/field-mapper.d.ts +11 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/field-mapper.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/field-mapper.js +39 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/field-mapper.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/index.d.ts +9 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/index.js +13 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/index.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/record-transformer.d.ts +16 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/record-transformer.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/record-transformer.js +99 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/record-transformer.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/task-transformer.d.ts +12 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/task-transformer.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/task-transformer.js +25 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/task-transformer.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/value-transformer.d.ts +11 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/value-transformer.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/value-transformer.js +187 -0
- package/dist/handlers/tool-configs/universal/field-mapper/transformers/value-transformer.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/types.d.ts +108 -0
- package/dist/handlers/tool-configs/universal/field-mapper/types.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/types.js +8 -0
- package/dist/handlers/tool-configs/universal/field-mapper/types.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/utils/field-mapping-constants.d.ts +33 -0
- package/dist/handlers/tool-configs/universal/field-mapper/utils/field-mapping-constants.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/utils/field-mapping-constants.js +49 -0
- package/dist/handlers/tool-configs/universal/field-mapper/utils/field-mapping-constants.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/category-validator.d.ts +31 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/category-validator.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/category-validator.js +157 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/category-validator.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/collision-detector.d.ts +15 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/collision-detector.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/collision-detector.js +82 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/collision-detector.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/domain-validator.d.ts +16 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/domain-validator.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/domain-validator.js +43 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/domain-validator.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/field-validator.d.ts +26 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/field-validator.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/field-validator.js +134 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/field-validator.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/helpers.d.ts +20 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/helpers.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/helpers.js +42 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/helpers.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/index.d.ts +13 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/index.js +21 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/index.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/resource-validator.d.ts +15 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/resource-validator.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/resource-validator.js +36 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/resource-validator.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/similarity-utils.d.ts +20 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/similarity-utils.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/similarity-utils.js +62 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/similarity-utils.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/uniqueness-validator.d.ts +11 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/uniqueness-validator.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/uniqueness-validator.js +53 -0
- package/dist/handlers/tool-configs/universal/field-mapper/validators/uniqueness-validator.js.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper.d.ts +16 -0
- package/dist/handlers/tool-configs/universal/field-mapper.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/field-mapper.js +17 -0
- package/dist/handlers/tool-configs/universal/field-mapper.js.map +1 -0
- package/dist/handlers/tool-configs/universal/index.d.ts +1091 -0
- package/dist/handlers/tool-configs/universal/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/index.js +396 -0
- package/dist/handlers/tool-configs/universal/index.js.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/advanced-search.d.ts +11 -0
- package/dist/handlers/tool-configs/universal/operations/advanced-search.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/advanced-search.js +155 -0
- package/dist/handlers/tool-configs/universal/operations/advanced-search.js.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/batch-format.d.ts +4 -0
- package/dist/handlers/tool-configs/universal/operations/batch-format.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/batch-format.js +217 -0
- package/dist/handlers/tool-configs/universal/operations/batch-format.js.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/batch-operations.d.ts +6 -0
- package/dist/handlers/tool-configs/universal/operations/batch-operations.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/batch-operations.js +35 -0
- package/dist/handlers/tool-configs/universal/operations/batch-operations.js.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/content-search.d.ts +7 -0
- package/dist/handlers/tool-configs/universal/operations/content-search.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/content-search.js +91 -0
- package/dist/handlers/tool-configs/universal/operations/content-search.js.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/index.d.ts +317 -0
- package/dist/handlers/tool-configs/universal/operations/index.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/index.js +93 -0
- package/dist/handlers/tool-configs/universal/operations/index.js.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/legacy-handlers.d.ts +9 -0
- package/dist/handlers/tool-configs/universal/operations/legacy-handlers.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/legacy-handlers.js +274 -0
- package/dist/handlers/tool-configs/universal/operations/legacy-handlers.js.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/operations-array.d.ts +5 -0
- package/dist/handlers/tool-configs/universal/operations/operations-array.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/operations-array.js +96 -0
- package/dist/handlers/tool-configs/universal/operations/operations-array.js.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/relationship-search.d.ts +7 -0
- package/dist/handlers/tool-configs/universal/operations/relationship-search.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/relationship-search.js +89 -0
- package/dist/handlers/tool-configs/universal/operations/relationship-search.js.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/timeframe-search.d.ts +7 -0
- package/dist/handlers/tool-configs/universal/operations/timeframe-search.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/operations/timeframe-search.js +198 -0
- package/dist/handlers/tool-configs/universal/operations/timeframe-search.js.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/advanced-schemas.d.ts +279 -0
- package/dist/handlers/tool-configs/universal/schemas/advanced-schemas.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/advanced-schemas.js +234 -0
- package/dist/handlers/tool-configs/universal/schemas/advanced-schemas.js.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/common/properties.d.ts +26 -0
- package/dist/handlers/tool-configs/universal/schemas/common/properties.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/common/properties.js +27 -0
- package/dist/handlers/tool-configs/universal/schemas/common/properties.js.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/common/types.d.ts +5 -0
- package/dist/handlers/tool-configs/universal/schemas/common/types.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/common/types.js +2 -0
- package/dist/handlers/tool-configs/universal/schemas/common/types.js.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/core-schemas.d.ts +232 -0
- package/dist/handlers/tool-configs/universal/schemas/core-schemas.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/core-schemas.js +260 -0
- package/dist/handlers/tool-configs/universal/schemas/core-schemas.js.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/utility-schemas.d.ts +140 -0
- package/dist/handlers/tool-configs/universal/schemas/utility-schemas.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/utility-schemas.js +103 -0
- package/dist/handlers/tool-configs/universal/schemas/utility-schemas.js.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/validation-schemas.d.ts +85 -0
- package/dist/handlers/tool-configs/universal/schemas/validation-schemas.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas/validation-schemas.js +77 -0
- package/dist/handlers/tool-configs/universal/schemas/validation-schemas.js.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas.d.ts +9 -0
- package/dist/handlers/tool-configs/universal/schemas.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/schemas.js +14 -0
- package/dist/handlers/tool-configs/universal/schemas.js.map +1 -0
- package/dist/handlers/tool-configs/universal/shared-handlers.d.ts +108 -0
- package/dist/handlers/tool-configs/universal/shared-handlers.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/shared-handlers.js +496 -0
- package/dist/handlers/tool-configs/universal/shared-handlers.js.map +1 -0
- package/dist/handlers/tool-configs/universal/shared-validators.d.ts +57 -0
- package/dist/handlers/tool-configs/universal/shared-validators.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/shared-validators.js +81 -0
- package/dist/handlers/tool-configs/universal/shared-validators.js.map +1 -0
- package/dist/handlers/tool-configs/universal/smithery-diagnostics.d.ts +37 -0
- package/dist/handlers/tool-configs/universal/smithery-diagnostics.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/smithery-diagnostics.js +103 -0
- package/dist/handlers/tool-configs/universal/smithery-diagnostics.js.map +1 -0
- package/dist/handlers/tool-configs/universal/typed-error-handling.d.ts +46 -0
- package/dist/handlers/tool-configs/universal/typed-error-handling.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/typed-error-handling.js +114 -0
- package/dist/handlers/tool-configs/universal/typed-error-handling.js.map +1 -0
- package/dist/handlers/tool-configs/universal/types.d.ts +328 -0
- package/dist/handlers/tool-configs/universal/types.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/types.js +101 -0
- package/dist/handlers/tool-configs/universal/types.js.map +1 -0
- package/dist/handlers/tool-configs/universal/validators/cross-resource-validator.d.ts +14 -0
- package/dist/handlers/tool-configs/universal/validators/cross-resource-validator.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/validators/cross-resource-validator.js +98 -0
- package/dist/handlers/tool-configs/universal/validators/cross-resource-validator.js.map +1 -0
- package/dist/handlers/tool-configs/universal/validators/field-validator.d.ts +5 -0
- package/dist/handlers/tool-configs/universal/validators/field-validator.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/validators/field-validator.js +143 -0
- package/dist/handlers/tool-configs/universal/validators/field-validator.js.map +1 -0
- package/dist/handlers/tool-configs/universal/validators/schema-validator.d.ts +8 -0
- package/dist/handlers/tool-configs/universal/validators/schema-validator.d.ts.map +1 -0
- package/dist/handlers/tool-configs/universal/validators/schema-validator.js +326 -0
- package/dist/handlers/tool-configs/universal/validators/schema-validator.js.map +1 -0
- package/dist/handlers/tool-configs/workspace-members.d.ts +92 -0
- package/dist/handlers/tool-configs/workspace-members.d.ts.map +1 -0
- package/dist/handlers/tool-configs/workspace-members.js +147 -0
- package/dist/handlers/tool-configs/workspace-members.js.map +1 -0
- package/dist/handlers/tool-types.d.ts +56 -0
- package/dist/handlers/tool-types.d.ts.map +1 -0
- package/dist/handlers/tool-types.js +2 -0
- package/dist/handlers/tool-types.js.map +1 -0
- package/dist/handlers/tools/config-verifier.d.ts +19 -0
- package/dist/handlers/tools/config-verifier.d.ts.map +1 -0
- package/dist/handlers/tools/config-verifier.js +116 -0
- package/dist/handlers/tools/config-verifier.js.map +1 -0
- package/dist/handlers/tools/dispatcher/core.d.ts +12 -0
- package/dist/handlers/tools/dispatcher/core.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/core.js +322 -0
- package/dist/handlers/tools/dispatcher/core.js.map +1 -0
- package/dist/handlers/tools/dispatcher/formatting.d.ts +17 -0
- package/dist/handlers/tools/dispatcher/formatting.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/formatting.js +25 -0
- package/dist/handlers/tools/dispatcher/formatting.js.map +1 -0
- package/dist/handlers/tools/dispatcher/logging.d.ts +55 -0
- package/dist/handlers/tools/dispatcher/logging.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/logging.js +133 -0
- package/dist/handlers/tools/dispatcher/logging.js.map +1 -0
- package/dist/handlers/tools/dispatcher/misc-operations.d.ts +32 -0
- package/dist/handlers/tools/dispatcher/misc-operations.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/misc-operations.js +44 -0
- package/dist/handlers/tools/dispatcher/misc-operations.js.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/advanced-search.d.ts +18 -0
- package/dist/handlers/tools/dispatcher/operations/advanced-search.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/advanced-search.js +79 -0
- package/dist/handlers/tools/dispatcher/operations/advanced-search.js.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/batch.d.ts +29 -0
- package/dist/handlers/tools/dispatcher/operations/batch.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/batch.js +137 -0
- package/dist/handlers/tools/dispatcher/operations/batch.js.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/crud.d.ts +25 -0
- package/dist/handlers/tools/dispatcher/operations/crud.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/crud.js +128 -0
- package/dist/handlers/tools/dispatcher/operations/crud.js.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/details.d.ts +13 -0
- package/dist/handlers/tools/dispatcher/operations/details.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/details.js +52 -0
- package/dist/handlers/tools/dispatcher/operations/details.js.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/lists.d.ts +69 -0
- package/dist/handlers/tools/dispatcher/operations/lists.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/lists.js +309 -0
- package/dist/handlers/tools/dispatcher/operations/lists.js.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/notes.d.ts +17 -0
- package/dist/handlers/tools/dispatcher/operations/notes.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/notes.js +130 -0
- package/dist/handlers/tools/dispatcher/operations/notes.js.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/records.d.ts +21 -0
- package/dist/handlers/tools/dispatcher/operations/records.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/records.js +73 -0
- package/dist/handlers/tools/dispatcher/operations/records.js.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/search.d.ts +43 -0
- package/dist/handlers/tools/dispatcher/operations/search.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/operations/search.js +191 -0
- package/dist/handlers/tools/dispatcher/operations/search.js.map +1 -0
- package/dist/handlers/tools/dispatcher/utils.d.ts +16 -0
- package/dist/handlers/tools/dispatcher/utils.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/utils.js +44 -0
- package/dist/handlers/tools/dispatcher/utils.js.map +1 -0
- package/dist/handlers/tools/dispatcher/validation.d.ts +27 -0
- package/dist/handlers/tools/dispatcher/validation.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher/validation.js +49 -0
- package/dist/handlers/tools/dispatcher/validation.js.map +1 -0
- package/dist/handlers/tools/dispatcher.d.ts +11 -0
- package/dist/handlers/tools/dispatcher.d.ts.map +1 -0
- package/dist/handlers/tools/dispatcher.js +15 -0
- package/dist/handlers/tools/dispatcher.js.map +1 -0
- package/dist/handlers/tools/error-types.d.ts +33 -0
- package/dist/handlers/tools/error-types.d.ts.map +1 -0
- package/dist/handlers/tools/error-types.js +23 -0
- package/dist/handlers/tools/error-types.js.map +1 -0
- package/dist/handlers/tools/formatters.d.ts +58 -0
- package/dist/handlers/tools/formatters.d.ts.map +1 -0
- package/dist/handlers/tools/formatters.js +175 -0
- package/dist/handlers/tools/formatters.js.map +1 -0
- package/dist/handlers/tools/index.d.ts +17 -0
- package/dist/handlers/tools/index.d.ts.map +1 -0
- package/dist/handlers/tools/index.js +145 -0
- package/dist/handlers/tools/index.js.map +1 -0
- package/dist/handlers/tools/registry.d.ts +3790 -0
- package/dist/handlers/tools/registry.d.ts.map +1 -0
- package/dist/handlers/tools/registry.js +206 -0
- package/dist/handlers/tools/registry.js.map +1 -0
- package/dist/handlers/tools/standards/index.d.ts +17 -0
- package/dist/handlers/tools/standards/index.d.ts.map +1 -0
- package/dist/handlers/tools/standards/index.js +40 -0
- package/dist/handlers/tools/standards/index.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/http/toMcpResult.d.ts +30 -0
- package/dist/lib/http/toMcpResult.d.ts.map +1 -0
- package/dist/lib/http/toMcpResult.js +62 -0
- package/dist/lib/http/toMcpResult.js.map +1 -0
- package/dist/middleware/performance-compat.d.ts +39 -0
- package/dist/middleware/performance-compat.d.ts.map +1 -0
- package/dist/middleware/performance-compat.js +110 -0
- package/dist/middleware/performance-compat.js.map +1 -0
- package/dist/middleware/performance-enhanced.d.ts +170 -0
- package/dist/middleware/performance-enhanced.d.ts.map +1 -0
- package/dist/middleware/performance-enhanced.js +509 -0
- package/dist/middleware/performance-enhanced.js.map +1 -0
- package/dist/middleware/performance.d.ts +124 -0
- package/dist/middleware/performance.d.ts.map +1 -0
- package/dist/middleware/performance.js +298 -0
- package/dist/middleware/performance.js.map +1 -0
- package/dist/middleware/validation.d.ts +88 -0
- package/dist/middleware/validation.d.ts.map +1 -0
- package/dist/middleware/validation.js +377 -0
- package/dist/middleware/validation.js.map +1 -0
- package/dist/objects/base-operations.d.ts +45 -0
- package/dist/objects/base-operations.d.ts.map +1 -0
- package/dist/objects/base-operations.js +188 -0
- package/dist/objects/base-operations.js.map +1 -0
- package/dist/objects/batch-companies.d.ts +124 -0
- package/dist/objects/batch-companies.d.ts.map +1 -0
- package/dist/objects/batch-companies.js +369 -0
- package/dist/objects/batch-companies.js.map +1 -0
- package/dist/objects/companies/attributes.d.ts +88 -0
- package/dist/objects/companies/attributes.d.ts.map +1 -0
- package/dist/objects/companies/attributes.js +417 -0
- package/dist/objects/companies/attributes.js.map +1 -0
- package/dist/objects/companies/basic.d.ts +115 -0
- package/dist/objects/companies/basic.d.ts.map +1 -0
- package/dist/objects/companies/basic.js +592 -0
- package/dist/objects/companies/basic.js.map +1 -0
- package/dist/objects/companies/batch.d.ts +6 -0
- package/dist/objects/companies/batch.d.ts.map +1 -0
- package/dist/objects/companies/batch.js +6 -0
- package/dist/objects/companies/batch.js.map +1 -0
- package/dist/objects/companies/index.d.ts +13 -0
- package/dist/objects/companies/index.d.ts.map +1 -0
- package/dist/objects/companies/index.js +17 -0
- package/dist/objects/companies/index.js.map +1 -0
- package/dist/objects/companies/notes.d.ts +26 -0
- package/dist/objects/companies/notes.d.ts.map +1 -0
- package/dist/objects/companies/notes.js +228 -0
- package/dist/objects/companies/notes.js.map +1 -0
- package/dist/objects/companies/relationships.d.ts +41 -0
- package/dist/objects/companies/relationships.d.ts.map +1 -0
- package/dist/objects/companies/relationships.js +170 -0
- package/dist/objects/companies/relationships.js.map +1 -0
- package/dist/objects/companies/search.d.ts +46 -0
- package/dist/objects/companies/search.d.ts.map +1 -0
- package/dist/objects/companies/search.js +166 -0
- package/dist/objects/companies/search.js.map +1 -0
- package/dist/objects/companies/types.d.ts +26 -0
- package/dist/objects/companies/types.d.ts.map +1 -0
- package/dist/objects/companies/types.js +3 -0
- package/dist/objects/companies/types.js.map +1 -0
- package/dist/objects/deals/attributes.d.ts +88 -0
- package/dist/objects/deals/attributes.d.ts.map +1 -0
- package/dist/objects/deals/attributes.js +155 -0
- package/dist/objects/deals/attributes.js.map +1 -0
- package/dist/objects/deals/index.d.ts +9 -0
- package/dist/objects/deals/index.d.ts.map +1 -0
- package/dist/objects/deals/index.js +13 -0
- package/dist/objects/deals/index.js.map +1 -0
- package/dist/objects/deals/notes.d.ts +20 -0
- package/dist/objects/deals/notes.d.ts.map +1 -0
- package/dist/objects/deals/notes.js +60 -0
- package/dist/objects/deals/notes.js.map +1 -0
- package/dist/objects/deals/relationships.d.ts +23 -0
- package/dist/objects/deals/relationships.d.ts.map +1 -0
- package/dist/objects/deals/relationships.js +86 -0
- package/dist/objects/deals/relationships.js.map +1 -0
- package/dist/objects/deals/search.d.ts +16 -0
- package/dist/objects/deals/search.d.ts.map +1 -0
- package/dist/objects/deals/search.js +59 -0
- package/dist/objects/deals/search.js.map +1 -0
- package/dist/objects/lists/attributes.d.ts +2 -0
- package/dist/objects/lists/attributes.d.ts.map +1 -0
- package/dist/objects/lists/attributes.js +26 -0
- package/dist/objects/lists/attributes.js.map +1 -0
- package/dist/objects/lists/base.d.ts +22 -0
- package/dist/objects/lists/base.d.ts.map +1 -0
- package/dist/objects/lists/base.js +212 -0
- package/dist/objects/lists/base.js.map +1 -0
- package/dist/objects/lists/batch.d.ts +12 -0
- package/dist/objects/lists/batch.d.ts.map +1 -0
- package/dist/objects/lists/batch.js +21 -0
- package/dist/objects/lists/batch.js.map +1 -0
- package/dist/objects/lists/entries.d.ts +23 -0
- package/dist/objects/lists/entries.d.ts.map +1 -0
- package/dist/objects/lists/entries.js +179 -0
- package/dist/objects/lists/entries.js.map +1 -0
- package/dist/objects/lists/filtering.d.ts +19 -0
- package/dist/objects/lists/filtering.d.ts.map +1 -0
- package/dist/objects/lists/filtering.js +118 -0
- package/dist/objects/lists/filtering.js.map +1 -0
- package/dist/objects/lists/index.d.ts +9 -0
- package/dist/objects/lists/index.d.ts.map +1 -0
- package/dist/objects/lists/index.js +8 -0
- package/dist/objects/lists/index.js.map +1 -0
- package/dist/objects/lists/membership.d.ts +3 -0
- package/dist/objects/lists/membership.d.ts.map +1 -0
- package/dist/objects/lists/membership.js +76 -0
- package/dist/objects/lists/membership.js.map +1 -0
- package/dist/objects/lists/search.d.ts +6 -0
- package/dist/objects/lists/search.d.ts.map +1 -0
- package/dist/objects/lists/search.js +15 -0
- package/dist/objects/lists/search.js.map +1 -0
- package/dist/objects/lists/shared.d.ts +18 -0
- package/dist/objects/lists/shared.d.ts.map +1 -0
- package/dist/objects/lists/shared.js +66 -0
- package/dist/objects/lists/shared.js.map +1 -0
- package/dist/objects/lists.d.ts +8 -0
- package/dist/objects/lists.d.ts.map +1 -0
- package/dist/objects/lists.js +8 -0
- package/dist/objects/lists.js.map +1 -0
- package/dist/objects/notes.d.ts +77 -0
- package/dist/objects/notes.d.ts.map +1 -0
- package/dist/objects/notes.js +180 -0
- package/dist/objects/notes.js.map +1 -0
- package/dist/objects/paginated-people.d.ts +50 -0
- package/dist/objects/paginated-people.d.ts.map +1 -0
- package/dist/objects/paginated-people.js +171 -0
- package/dist/objects/paginated-people.js.map +1 -0
- package/dist/objects/people/attributes.d.ts +88 -0
- package/dist/objects/people/attributes.d.ts.map +1 -0
- package/dist/objects/people/attributes.js +169 -0
- package/dist/objects/people/attributes.js.map +1 -0
- package/dist/objects/people/basic.d.ts +90 -0
- package/dist/objects/people/basic.d.ts.map +1 -0
- package/dist/objects/people/basic.js +168 -0
- package/dist/objects/people/basic.js.map +1 -0
- package/dist/objects/people/batch.d.ts +24 -0
- package/dist/objects/people/batch.d.ts.map +1 -0
- package/dist/objects/people/batch.js +145 -0
- package/dist/objects/people/batch.js.map +1 -0
- package/dist/objects/people/email-validation.d.ts +14 -0
- package/dist/objects/people/email-validation.d.ts.map +1 -0
- package/dist/objects/people/email-validation.js +75 -0
- package/dist/objects/people/email-validation.js.map +1 -0
- package/dist/objects/people/errors.d.ts +18 -0
- package/dist/objects/people/errors.d.ts.map +1 -0
- package/dist/objects/people/errors.js +26 -0
- package/dist/objects/people/errors.js.map +1 -0
- package/dist/objects/people/index.d.ts +12 -0
- package/dist/objects/people/index.d.ts.map +1 -0
- package/dist/objects/people/index.js +19 -0
- package/dist/objects/people/index.js.map +1 -0
- package/dist/objects/people/notes.d.ts +20 -0
- package/dist/objects/people/notes.d.ts.map +1 -0
- package/dist/objects/people/notes.js +60 -0
- package/dist/objects/people/notes.js.map +1 -0
- package/dist/objects/people/relationships.d.ts +23 -0
- package/dist/objects/people/relationships.d.ts.map +1 -0
- package/dist/objects/people/relationships.js +116 -0
- package/dist/objects/people/relationships.js.map +1 -0
- package/dist/objects/people/search.d.ts +83 -0
- package/dist/objects/people/search.d.ts.map +1 -0
- package/dist/objects/people/search.js +280 -0
- package/dist/objects/people/search.js.map +1 -0
- package/dist/objects/people/types.d.ts +58 -0
- package/dist/objects/people/types.d.ts.map +1 -0
- package/dist/objects/people/types.js +149 -0
- package/dist/objects/people/types.js.map +1 -0
- package/dist/objects/people-write.d.ts +60 -0
- package/dist/objects/people-write.d.ts.map +1 -0
- package/dist/objects/people-write.js +250 -0
- package/dist/objects/people-write.js.map +1 -0
- package/dist/objects/records/formatters.d.ts +20 -0
- package/dist/objects/records/formatters.d.ts.map +1 -0
- package/dist/objects/records/formatters.js +50 -0
- package/dist/objects/records/formatters.js.map +1 -0
- package/dist/objects/records/index.d.ts +74 -0
- package/dist/objects/records/index.d.ts.map +1 -0
- package/dist/objects/records/index.js +561 -0
- package/dist/objects/records/index.js.map +1 -0
- package/dist/objects/tasks.d.ts +30 -0
- package/dist/objects/tasks.d.ts.map +1 -0
- package/dist/objects/tasks.js +169 -0
- package/dist/objects/tasks.js.map +1 -0
- package/dist/objects/workspace-members.d.ts +5 -0
- package/dist/objects/workspace-members.d.ts.map +1 -0
- package/dist/objects/workspace-members.js +86 -0
- package/dist/objects/workspace-members.js.map +1 -0
- package/dist/prompts/error-handler.d.ts +34 -0
- package/dist/prompts/error-handler.d.ts.map +1 -0
- package/dist/prompts/error-handler.js +106 -0
- package/dist/prompts/error-handler.js.map +1 -0
- package/dist/prompts/handlers.d.ts +53 -0
- package/dist/prompts/handlers.d.ts.map +1 -0
- package/dist/prompts/handlers.js +455 -0
- package/dist/prompts/handlers.js.map +1 -0
- package/dist/prompts/index.d.ts +11 -0
- package/dist/prompts/index.d.ts.map +1 -0
- package/dist/prompts/index.js +15 -0
- package/dist/prompts/index.js.map +1 -0
- package/dist/prompts/templates/companies.d.ts +10 -0
- package/dist/prompts/templates/companies.d.ts.map +1 -0
- package/dist/prompts/templates/companies.js +115 -0
- package/dist/prompts/templates/companies.js.map +1 -0
- package/dist/prompts/templates/deals.d.ts +7 -0
- package/dist/prompts/templates/deals.d.ts.map +1 -0
- package/dist/prompts/templates/deals.js +140 -0
- package/dist/prompts/templates/deals.js.map +1 -0
- package/dist/prompts/templates/index.d.ts +42 -0
- package/dist/prompts/templates/index.d.ts.map +1 -0
- package/dist/prompts/templates/index.js +60 -0
- package/dist/prompts/templates/index.js.map +1 -0
- package/dist/prompts/templates/lists.d.ts +10 -0
- package/dist/prompts/templates/lists.d.ts.map +1 -0
- package/dist/prompts/templates/lists.js +127 -0
- package/dist/prompts/templates/lists.js.map +1 -0
- package/dist/prompts/templates/notes.d.ts +10 -0
- package/dist/prompts/templates/notes.d.ts.map +1 -0
- package/dist/prompts/templates/notes.js +119 -0
- package/dist/prompts/templates/notes.js.map +1 -0
- package/dist/prompts/templates/people.d.ts +10 -0
- package/dist/prompts/templates/people.d.ts.map +1 -0
- package/dist/prompts/templates/people.js +127 -0
- package/dist/prompts/templates/people.js.map +1 -0
- package/dist/prompts/types.d.ts +52 -0
- package/dist/prompts/types.d.ts.map +1 -0
- package/dist/prompts/types.js +5 -0
- package/dist/prompts/types.js.map +1 -0
- package/dist/prompts/v1/add-to-list.v1.d.ts +38 -0
- package/dist/prompts/v1/add-to-list.v1.d.ts.map +1 -0
- package/dist/prompts/v1/add-to-list.v1.js +91 -0
- package/dist/prompts/v1/add-to-list.v1.js.map +1 -0
- package/dist/prompts/v1/advance-deal.v1.d.ts +41 -0
- package/dist/prompts/v1/advance-deal.v1.d.ts.map +1 -0
- package/dist/prompts/v1/advance-deal.v1.js +100 -0
- package/dist/prompts/v1/advance-deal.v1.js.map +1 -0
- package/dist/prompts/v1/company-search.v1.d.ts +44 -0
- package/dist/prompts/v1/company-search.v1.d.ts.map +1 -0
- package/dist/prompts/v1/company-search.v1.js +114 -0
- package/dist/prompts/v1/company-search.v1.js.map +1 -0
- package/dist/prompts/v1/constants.d.ts +112 -0
- package/dist/prompts/v1/constants.d.ts.map +1 -0
- package/dist/prompts/v1/constants.js +119 -0
- package/dist/prompts/v1/constants.js.map +1 -0
- package/dist/prompts/v1/create-task.v1.d.ts +50 -0
- package/dist/prompts/v1/create-task.v1.d.ts.map +1 -0
- package/dist/prompts/v1/create-task.v1.js +136 -0
- package/dist/prompts/v1/create-task.v1.js.map +1 -0
- package/dist/prompts/v1/deal-search.v1.d.ts +44 -0
- package/dist/prompts/v1/deal-search.v1.d.ts.map +1 -0
- package/dist/prompts/v1/deal-search.v1.js +114 -0
- package/dist/prompts/v1/deal-search.v1.js.map +1 -0
- package/dist/prompts/v1/index.d.ts +56 -0
- package/dist/prompts/v1/index.d.ts.map +1 -0
- package/dist/prompts/v1/index.js +81 -0
- package/dist/prompts/v1/index.js.map +1 -0
- package/dist/prompts/v1/log-activity.v1.d.ts +48 -0
- package/dist/prompts/v1/log-activity.v1.d.ts.map +1 -0
- package/dist/prompts/v1/log-activity.v1.js +124 -0
- package/dist/prompts/v1/log-activity.v1.js.map +1 -0
- package/dist/prompts/v1/meeting-prep.v1.d.ts +42 -0
- package/dist/prompts/v1/meeting-prep.v1.d.ts.map +1 -0
- package/dist/prompts/v1/meeting-prep.v1.js +105 -0
- package/dist/prompts/v1/meeting-prep.v1.js.map +1 -0
- package/dist/prompts/v1/people-search.v1.d.ts +45 -0
- package/dist/prompts/v1/people-search.v1.d.ts.map +1 -0
- package/dist/prompts/v1/people-search.v1.js +115 -0
- package/dist/prompts/v1/people-search.v1.js.map +1 -0
- package/dist/prompts/v1/pipeline-health.v1.d.ts +48 -0
- package/dist/prompts/v1/pipeline-health.v1.d.ts.map +1 -0
- package/dist/prompts/v1/pipeline-health.v1.js +131 -0
- package/dist/prompts/v1/pipeline-health.v1.js.map +1 -0
- package/dist/prompts/v1/qualify-lead.v1.d.ts +51 -0
- package/dist/prompts/v1/qualify-lead.v1.d.ts.map +1 -0
- package/dist/prompts/v1/qualify-lead.v1.js +157 -0
- package/dist/prompts/v1/qualify-lead.v1.js.map +1 -0
- package/dist/prompts/v1/types.d.ts +134 -0
- package/dist/prompts/v1/types.d.ts.map +1 -0
- package/dist/prompts/v1/types.js +36 -0
- package/dist/prompts/v1/types.js.map +1 -0
- package/dist/prompts/v1/utils/telemetry.d.ts +64 -0
- package/dist/prompts/v1/utils/telemetry.d.ts.map +1 -0
- package/dist/prompts/v1/utils/telemetry.js +88 -0
- package/dist/prompts/v1/utils/telemetry.js.map +1 -0
- package/dist/prompts/v1/utils/token-metadata.d.ts +43 -0
- package/dist/prompts/v1/utils/token-metadata.d.ts.map +1 -0
- package/dist/prompts/v1/utils/token-metadata.js +90 -0
- package/dist/prompts/v1/utils/token-metadata.js.map +1 -0
- package/dist/prompts/v1/utils/validation.d.ts +69 -0
- package/dist/prompts/v1/utils/validation.d.ts.map +1 -0
- package/dist/prompts/v1/utils/validation.js +140 -0
- package/dist/prompts/v1/utils/validation.js.map +1 -0
- package/dist/server/createServer.d.ts +81 -0
- package/dist/server/createServer.d.ts.map +1 -0
- package/dist/server/createServer.js +97 -0
- package/dist/server/createServer.js.map +1 -0
- package/dist/services/CachingService.d.ts +258 -0
- package/dist/services/CachingService.d.ts.map +1 -0
- package/dist/services/CachingService.js +533 -0
- package/dist/services/CachingService.js.map +1 -0
- package/dist/services/ErrorService.d.ts +90 -0
- package/dist/services/ErrorService.d.ts.map +1 -0
- package/dist/services/ErrorService.js +479 -0
- package/dist/services/ErrorService.js.map +1 -0
- package/dist/services/MockService.d.ts +67 -0
- package/dist/services/MockService.d.ts.map +1 -0
- package/dist/services/MockService.js +87 -0
- package/dist/services/MockService.js.map +1 -0
- package/dist/services/OpenAiCompatibilityService.d.ts +27 -0
- package/dist/services/OpenAiCompatibilityService.d.ts.map +1 -0
- package/dist/services/OpenAiCompatibilityService.js +171 -0
- package/dist/services/OpenAiCompatibilityService.js.map +1 -0
- package/dist/services/UniversalCreateService.d.ts +57 -0
- package/dist/services/UniversalCreateService.d.ts.map +1 -0
- package/dist/services/UniversalCreateService.js +482 -0
- package/dist/services/UniversalCreateService.js.map +1 -0
- package/dist/services/UniversalDeleteService.d.ts +31 -0
- package/dist/services/UniversalDeleteService.d.ts.map +1 -0
- package/dist/services/UniversalDeleteService.js +184 -0
- package/dist/services/UniversalDeleteService.js.map +1 -0
- package/dist/services/UniversalMetadataService.d.ts +68 -0
- package/dist/services/UniversalMetadataService.d.ts.map +1 -0
- package/dist/services/UniversalMetadataService.js +215 -0
- package/dist/services/UniversalMetadataService.js.map +1 -0
- package/dist/services/UniversalRetrievalService.d.ts +70 -0
- package/dist/services/UniversalRetrievalService.d.ts.map +1 -0
- package/dist/services/UniversalRetrievalService.js +533 -0
- package/dist/services/UniversalRetrievalService.js.map +1 -0
- package/dist/services/UniversalSearchService.d.ts +29 -0
- package/dist/services/UniversalSearchService.d.ts.map +1 -0
- package/dist/services/UniversalSearchService.js +195 -0
- package/dist/services/UniversalSearchService.js.map +1 -0
- package/dist/services/UniversalUpdateService.d.ts +88 -0
- package/dist/services/UniversalUpdateService.d.ts.map +1 -0
- package/dist/services/UniversalUpdateService.js +414 -0
- package/dist/services/UniversalUpdateService.js.map +1 -0
- package/dist/services/UniversalUtilityService.d.ts +92 -0
- package/dist/services/UniversalUtilityService.d.ts.map +1 -0
- package/dist/services/UniversalUtilityService.js +300 -0
- package/dist/services/UniversalUtilityService.js.map +1 -0
- package/dist/services/ValidationService.d.ts +134 -0
- package/dist/services/ValidationService.d.ts.map +1 -0
- package/dist/services/ValidationService.js +365 -0
- package/dist/services/ValidationService.js.map +1 -0
- package/dist/services/_guards.d.ts +29 -0
- package/dist/services/_guards.d.ts.map +1 -0
- package/dist/services/_guards.js +48 -0
- package/dist/services/_guards.js.map +1 -0
- package/dist/services/create/CreateValidation.d.ts +7 -0
- package/dist/services/create/CreateValidation.d.ts.map +1 -0
- package/dist/services/create/CreateValidation.js +66 -0
- package/dist/services/create/CreateValidation.js.map +1 -0
- package/dist/services/create/attio-create.service.d.ts +127 -0
- package/dist/services/create/attio-create.service.d.ts.map +1 -0
- package/dist/services/create/attio-create.service.js +227 -0
- package/dist/services/create/attio-create.service.js.map +1 -0
- package/dist/services/create/creators/base-creator.d.ts +86 -0
- package/dist/services/create/creators/base-creator.d.ts.map +1 -0
- package/dist/services/create/creators/base-creator.js +221 -0
- package/dist/services/create/creators/base-creator.js.map +1 -0
- package/dist/services/create/creators/company-creator.d.ts +58 -0
- package/dist/services/create/creators/company-creator.d.ts.map +1 -0
- package/dist/services/create/creators/company-creator.js +244 -0
- package/dist/services/create/creators/company-creator.js.map +1 -0
- package/dist/services/create/creators/email-strategies.d.ts +62 -0
- package/dist/services/create/creators/email-strategies.d.ts.map +1 -0
- package/dist/services/create/creators/email-strategies.js +94 -0
- package/dist/services/create/creators/email-strategies.js.map +1 -0
- package/dist/services/create/creators/index.d.ts +13 -0
- package/dist/services/create/creators/index.d.ts.map +1 -0
- package/dist/services/create/creators/index.js +12 -0
- package/dist/services/create/creators/index.js.map +1 -0
- package/dist/services/create/creators/note-creator.d.ts +49 -0
- package/dist/services/create/creators/note-creator.d.ts.map +1 -0
- package/dist/services/create/creators/note-creator.js +132 -0
- package/dist/services/create/creators/note-creator.js.map +1 -0
- package/dist/services/create/creators/person-creator.d.ts +64 -0
- package/dist/services/create/creators/person-creator.d.ts.map +1 -0
- package/dist/services/create/creators/person-creator.js +207 -0
- package/dist/services/create/creators/person-creator.js.map +1 -0
- package/dist/services/create/creators/task-creator.d.ts +45 -0
- package/dist/services/create/creators/task-creator.d.ts.map +1 -0
- package/dist/services/create/creators/task-creator.js +129 -0
- package/dist/services/create/creators/task-creator.js.map +1 -0
- package/dist/services/create/creators/types.d.ts +65 -0
- package/dist/services/create/creators/types.d.ts.map +1 -0
- package/dist/services/create/creators/types.js +8 -0
- package/dist/services/create/creators/types.js.map +1 -0
- package/dist/services/create/data-normalizers.d.ts +94 -0
- package/dist/services/create/data-normalizers.d.ts.map +1 -0
- package/dist/services/create/data-normalizers.js +312 -0
- package/dist/services/create/data-normalizers.js.map +1 -0
- package/dist/services/create/extractor.d.ts +35 -0
- package/dist/services/create/extractor.d.ts.map +1 -0
- package/dist/services/create/extractor.js +205 -0
- package/dist/services/create/extractor.js.map +1 -0
- package/dist/services/create/factory.d.ts +31 -0
- package/dist/services/create/factory.d.ts.map +1 -0
- package/dist/services/create/factory.js +73 -0
- package/dist/services/create/factory.js.map +1 -0
- package/dist/services/create/helpers/ErrorHelpers.d.ts +27 -0
- package/dist/services/create/helpers/ErrorHelpers.d.ts.map +1 -0
- package/dist/services/create/helpers/ErrorHelpers.js +37 -0
- package/dist/services/create/helpers/ErrorHelpers.js.map +1 -0
- package/dist/services/create/index.d.ts +12 -0
- package/dist/services/create/index.d.ts.map +1 -0
- package/dist/services/create/index.js +14 -0
- package/dist/services/create/index.js.map +1 -0
- package/dist/services/create/mock-create.service.d.ts +30 -0
- package/dist/services/create/mock-create.service.d.ts.map +1 -0
- package/dist/services/create/mock-create.service.js +298 -0
- package/dist/services/create/mock-create.service.js.map +1 -0
- package/dist/services/create/strategies/BaseCreateStrategy.d.ts +14 -0
- package/dist/services/create/strategies/BaseCreateStrategy.d.ts.map +1 -0
- package/dist/services/create/strategies/BaseCreateStrategy.js +2 -0
- package/dist/services/create/strategies/BaseCreateStrategy.js.map +1 -0
- package/dist/services/create/strategies/CompanyCreateStrategy.d.ts +6 -0
- package/dist/services/create/strategies/CompanyCreateStrategy.d.ts.map +1 -0
- package/dist/services/create/strategies/CompanyCreateStrategy.js +47 -0
- package/dist/services/create/strategies/CompanyCreateStrategy.js.map +1 -0
- package/dist/services/create/strategies/DealCreateStrategy.d.ts +6 -0
- package/dist/services/create/strategies/DealCreateStrategy.d.ts.map +1 -0
- package/dist/services/create/strategies/DealCreateStrategy.js +47 -0
- package/dist/services/create/strategies/DealCreateStrategy.js.map +1 -0
- package/dist/services/create/strategies/ListCreateStrategy.d.ts +6 -0
- package/dist/services/create/strategies/ListCreateStrategy.d.ts.map +1 -0
- package/dist/services/create/strategies/ListCreateStrategy.js +41 -0
- package/dist/services/create/strategies/ListCreateStrategy.js.map +1 -0
- package/dist/services/create/strategies/NoteCreateStrategy.d.ts +6 -0
- package/dist/services/create/strategies/NoteCreateStrategy.d.ts.map +1 -0
- package/dist/services/create/strategies/NoteCreateStrategy.js +35 -0
- package/dist/services/create/strategies/NoteCreateStrategy.js.map +1 -0
- package/dist/services/create/strategies/PersonCreateStrategy.d.ts +6 -0
- package/dist/services/create/strategies/PersonCreateStrategy.d.ts.map +1 -0
- package/dist/services/create/strategies/PersonCreateStrategy.js +50 -0
- package/dist/services/create/strategies/PersonCreateStrategy.js.map +1 -0
- package/dist/services/create/strategies/RecordCreateStrategy.d.ts +6 -0
- package/dist/services/create/strategies/RecordCreateStrategy.d.ts.map +1 -0
- package/dist/services/create/strategies/RecordCreateStrategy.js +16 -0
- package/dist/services/create/strategies/RecordCreateStrategy.js.map +1 -0
- package/dist/services/create/strategies/TaskCreateStrategy.d.ts +6 -0
- package/dist/services/create/strategies/TaskCreateStrategy.d.ts.map +1 -0
- package/dist/services/create/strategies/TaskCreateStrategy.js +100 -0
- package/dist/services/create/strategies/TaskCreateStrategy.js.map +1 -0
- package/dist/services/create/types.d.ts +73 -0
- package/dist/services/create/types.d.ts.map +1 -0
- package/dist/services/create/types.js +8 -0
- package/dist/services/create/types.js.map +1 -0
- package/dist/services/create/validators.d.ts +3 -0
- package/dist/services/create/validators.d.ts.map +1 -0
- package/dist/services/create/validators.js +8 -0
- package/dist/services/create/validators.js.map +1 -0
- package/dist/services/metadata/AttributeOptionsService.d.ts +38 -0
- package/dist/services/metadata/AttributeOptionsService.d.ts.map +1 -0
- package/dist/services/metadata/AttributeOptionsService.js +92 -0
- package/dist/services/metadata/AttributeOptionsService.js.map +1 -0
- package/dist/services/metadata/MetadataCacheService.d.ts +5 -0
- package/dist/services/metadata/MetadataCacheService.d.ts.map +1 -0
- package/dist/services/metadata/MetadataCacheService.js +7 -0
- package/dist/services/metadata/MetadataCacheService.js.map +1 -0
- package/dist/services/metadata/MetadataDiscoveryService.d.ts +15 -0
- package/dist/services/metadata/MetadataDiscoveryService.d.ts.map +1 -0
- package/dist/services/metadata/MetadataDiscoveryService.js +139 -0
- package/dist/services/metadata/MetadataDiscoveryService.js.map +1 -0
- package/dist/services/metadata/MetadataErrorService.d.ts +7 -0
- package/dist/services/metadata/MetadataErrorService.d.ts.map +1 -0
- package/dist/services/metadata/MetadataErrorService.js +34 -0
- package/dist/services/metadata/MetadataErrorService.js.map +1 -0
- package/dist/services/metadata/MetadataMetricsService.d.ts +10 -0
- package/dist/services/metadata/MetadataMetricsService.d.ts.map +1 -0
- package/dist/services/metadata/MetadataMetricsService.js +72 -0
- package/dist/services/metadata/MetadataMetricsService.js.map +1 -0
- package/dist/services/metadata/MetadataRecordService.d.ts +8 -0
- package/dist/services/metadata/MetadataRecordService.d.ts.map +1 -0
- package/dist/services/metadata/MetadataRecordService.js +44 -0
- package/dist/services/metadata/MetadataRecordService.js.map +1 -0
- package/dist/services/metadata/MetadataTransformService.d.ts +7 -0
- package/dist/services/metadata/MetadataTransformService.d.ts.map +1 -0
- package/dist/services/metadata/MetadataTransformService.js +87 -0
- package/dist/services/metadata/MetadataTransformService.js.map +1 -0
- package/dist/services/metadata/discovery-runner.d.ts +25 -0
- package/dist/services/metadata/discovery-runner.d.ts.map +1 -0
- package/dist/services/metadata/discovery-runner.js +66 -0
- package/dist/services/metadata/discovery-runner.js.map +1 -0
- package/dist/services/metadata/index.d.ts +11 -0
- package/dist/services/metadata/index.d.ts.map +1 -0
- package/dist/services/metadata/index.js +30 -0
- package/dist/services/metadata/index.js.map +1 -0
- package/dist/services/metadata/task-metadata.d.ts +13 -0
- package/dist/services/metadata/task-metadata.d.ts.map +1 -0
- package/dist/services/metadata/task-metadata.js +84 -0
- package/dist/services/metadata/task-metadata.js.map +1 -0
- package/dist/services/metadata/types.d.ts +95 -0
- package/dist/services/metadata/types.d.ts.map +1 -0
- package/dist/services/metadata/types.js +2 -0
- package/dist/services/metadata/types.js.map +1 -0
- package/dist/services/normalizers/AttributeAwareNormalizer.d.ts +2 -0
- package/dist/services/normalizers/AttributeAwareNormalizer.d.ts.map +1 -0
- package/dist/services/normalizers/AttributeAwareNormalizer.js +109 -0
- package/dist/services/normalizers/AttributeAwareNormalizer.js.map +1 -0
- package/dist/services/normalizers/PhoneNormalizer.d.ts +3 -0
- package/dist/services/normalizers/PhoneNormalizer.d.ts.map +1 -0
- package/dist/services/normalizers/PhoneNormalizer.js +2 -0
- package/dist/services/normalizers/PhoneNormalizer.js.map +1 -0
- package/dist/services/search/QueryApiService.d.ts +27 -0
- package/dist/services/search/QueryApiService.d.ts.map +1 -0
- package/dist/services/search/QueryApiService.js +144 -0
- package/dist/services/search/QueryApiService.js.map +1 -0
- package/dist/services/search/RecordsSearchService.d.ts +27 -0
- package/dist/services/search/RecordsSearchService.d.ts.map +1 -0
- package/dist/services/search/RecordsSearchService.js +122 -0
- package/dist/services/search/RecordsSearchService.js.map +1 -0
- package/dist/services/search/SearchCoordinator.d.ts +41 -0
- package/dist/services/search/SearchCoordinator.d.ts.map +1 -0
- package/dist/services/search/SearchCoordinator.js +83 -0
- package/dist/services/search/SearchCoordinator.js.map +1 -0
- package/dist/services/search/StrategyFactory.d.ts +31 -0
- package/dist/services/search/StrategyFactory.d.ts.map +1 -0
- package/dist/services/search/StrategyFactory.js +100 -0
- package/dist/services/search/StrategyFactory.js.map +1 -0
- package/dist/services/search-strategies/BaseSearchStrategy.d.ts +47 -0
- package/dist/services/search-strategies/BaseSearchStrategy.d.ts.map +1 -0
- package/dist/services/search-strategies/BaseSearchStrategy.js +100 -0
- package/dist/services/search-strategies/BaseSearchStrategy.js.map +1 -0
- package/dist/services/search-strategies/CompanySearchStrategy.d.ts +42 -0
- package/dist/services/search-strategies/CompanySearchStrategy.d.ts.map +1 -0
- package/dist/services/search-strategies/CompanySearchStrategy.js +139 -0
- package/dist/services/search-strategies/CompanySearchStrategy.js.map +1 -0
- package/dist/services/search-strategies/DealSearchStrategy.d.ts +38 -0
- package/dist/services/search-strategies/DealSearchStrategy.d.ts.map +1 -0
- package/dist/services/search-strategies/DealSearchStrategy.js +119 -0
- package/dist/services/search-strategies/DealSearchStrategy.js.map +1 -0
- package/dist/services/search-strategies/ListSearchStrategy.d.ts +30 -0
- package/dist/services/search-strategies/ListSearchStrategy.d.ts.map +1 -0
- package/dist/services/search-strategies/ListSearchStrategy.js +135 -0
- package/dist/services/search-strategies/ListSearchStrategy.js.map +1 -0
- package/dist/services/search-strategies/NoteSearchStrategy.d.ts +62 -0
- package/dist/services/search-strategies/NoteSearchStrategy.d.ts.map +1 -0
- package/dist/services/search-strategies/NoteSearchStrategy.js +224 -0
- package/dist/services/search-strategies/NoteSearchStrategy.js.map +1 -0
- package/dist/services/search-strategies/PeopleSearchStrategy.d.ts +42 -0
- package/dist/services/search-strategies/PeopleSearchStrategy.d.ts.map +1 -0
- package/dist/services/search-strategies/PeopleSearchStrategy.js +176 -0
- package/dist/services/search-strategies/PeopleSearchStrategy.js.map +1 -0
- package/dist/services/search-strategies/TaskSearchStrategy.d.ts +38 -0
- package/dist/services/search-strategies/TaskSearchStrategy.d.ts.map +1 -0
- package/dist/services/search-strategies/TaskSearchStrategy.js +146 -0
- package/dist/services/search-strategies/TaskSearchStrategy.js.map +1 -0
- package/dist/services/search-strategies/index.d.ts +13 -0
- package/dist/services/search-strategies/index.d.ts.map +1 -0
- package/dist/services/search-strategies/index.js +12 -0
- package/dist/services/search-strategies/index.js.map +1 -0
- package/dist/services/search-strategies/interfaces.d.ts +75 -0
- package/dist/services/search-strategies/interfaces.d.ts.map +1 -0
- package/dist/services/search-strategies/interfaces.js +6 -0
- package/dist/services/search-strategies/interfaces.js.map +1 -0
- package/dist/services/search-strategies/query-filter-builder.d.ts +5 -0
- package/dist/services/search-strategies/query-filter-builder.d.ts.map +1 -0
- package/dist/services/search-strategies/query-filter-builder.js +129 -0
- package/dist/services/search-strategies/query-filter-builder.js.map +1 -0
- package/dist/services/search-utilities/FunctionValidator.d.ts +14 -0
- package/dist/services/search-utilities/FunctionValidator.d.ts.map +1 -0
- package/dist/services/search-utilities/FunctionValidator.js +32 -0
- package/dist/services/search-utilities/FunctionValidator.js.map +1 -0
- package/dist/services/search-utilities/SearchScorer.d.ts +4 -0
- package/dist/services/search-utilities/SearchScorer.d.ts.map +1 -0
- package/dist/services/search-utilities/SearchScorer.js +243 -0
- package/dist/services/search-utilities/SearchScorer.js.map +1 -0
- package/dist/services/search-utilities/SearchUtilities.d.ts +55 -0
- package/dist/services/search-utilities/SearchUtilities.d.ts.map +1 -0
- package/dist/services/search-utilities/SearchUtilities.js +255 -0
- package/dist/services/search-utilities/SearchUtilities.js.map +1 -0
- package/dist/services/skill-generator/OutputWriterService.d.ts +41 -0
- package/dist/services/skill-generator/OutputWriterService.d.ts.map +1 -0
- package/dist/services/skill-generator/OutputWriterService.js +100 -0
- package/dist/services/skill-generator/OutputWriterService.js.map +1 -0
- package/dist/services/skill-generator/SchemaFormatterService.d.ts +61 -0
- package/dist/services/skill-generator/SchemaFormatterService.d.ts.map +1 -0
- package/dist/services/skill-generator/SchemaFormatterService.js +168 -0
- package/dist/services/skill-generator/SchemaFormatterService.js.map +1 -0
- package/dist/services/skill-generator/WorkspaceSchemaService.d.ts +84 -0
- package/dist/services/skill-generator/WorkspaceSchemaService.d.ts.map +1 -0
- package/dist/services/skill-generator/WorkspaceSchemaService.js +292 -0
- package/dist/services/skill-generator/WorkspaceSchemaService.js.map +1 -0
- package/dist/services/skill-generator/index.d.ts +12 -0
- package/dist/services/skill-generator/index.d.ts.map +1 -0
- package/dist/services/skill-generator/index.js +11 -0
- package/dist/services/skill-generator/index.js.map +1 -0
- package/dist/services/skill-generator/types.d.ts +137 -0
- package/dist/services/skill-generator/types.d.ts.map +1 -0
- package/dist/services/skill-generator/types.js +10 -0
- package/dist/services/skill-generator/types.js.map +1 -0
- package/dist/services/update/FieldPersistenceHandler.d.ts +101 -0
- package/dist/services/update/FieldPersistenceHandler.d.ts.map +1 -0
- package/dist/services/update/FieldPersistenceHandler.js +198 -0
- package/dist/services/update/FieldPersistenceHandler.js.map +1 -0
- package/dist/services/update/FieldValidationHandler.d.ts +77 -0
- package/dist/services/update/FieldValidationHandler.d.ts.map +1 -0
- package/dist/services/update/FieldValidationHandler.js +157 -0
- package/dist/services/update/FieldValidationHandler.js.map +1 -0
- package/dist/services/update/MetadataResolver.d.ts +50 -0
- package/dist/services/update/MetadataResolver.d.ts.map +1 -0
- package/dist/services/update/MetadataResolver.js +110 -0
- package/dist/services/update/MetadataResolver.js.map +1 -0
- package/dist/services/update/ResponseNormalizer.d.ts +12 -0
- package/dist/services/update/ResponseNormalizer.d.ts.map +1 -0
- package/dist/services/update/ResponseNormalizer.js +118 -0
- package/dist/services/update/ResponseNormalizer.js.map +1 -0
- package/dist/services/update/UpdateOrchestrator.d.ts +37 -0
- package/dist/services/update/UpdateOrchestrator.d.ts.map +1 -0
- package/dist/services/update/UpdateOrchestrator.js +58 -0
- package/dist/services/update/UpdateOrchestrator.js.map +1 -0
- package/dist/services/update/UpdateValidation.d.ts +62 -0
- package/dist/services/update/UpdateValidation.d.ts.map +1 -0
- package/dist/services/update/UpdateValidation.js +277 -0
- package/dist/services/update/UpdateValidation.js.map +1 -0
- package/dist/services/update/strategies/BaseUpdateStrategy.d.ts +13 -0
- package/dist/services/update/strategies/BaseUpdateStrategy.d.ts.map +1 -0
- package/dist/services/update/strategies/BaseUpdateStrategy.js +9 -0
- package/dist/services/update/strategies/BaseUpdateStrategy.js.map +1 -0
- package/dist/services/update/strategies/CompanyUpdateStrategy.d.ts +10 -0
- package/dist/services/update/strategies/CompanyUpdateStrategy.d.ts.map +1 -0
- package/dist/services/update/strategies/CompanyUpdateStrategy.js +34 -0
- package/dist/services/update/strategies/CompanyUpdateStrategy.js.map +1 -0
- package/dist/services/update/strategies/ListUpdateStrategy.d.ts +13 -0
- package/dist/services/update/strategies/ListUpdateStrategy.d.ts.map +1 -0
- package/dist/services/update/strategies/ListUpdateStrategy.js +49 -0
- package/dist/services/update/strategies/ListUpdateStrategy.js.map +1 -0
- package/dist/services/update/strategies/PersonUpdateStrategy.d.ts +10 -0
- package/dist/services/update/strategies/PersonUpdateStrategy.d.ts.map +1 -0
- package/dist/services/update/strategies/PersonUpdateStrategy.js +32 -0
- package/dist/services/update/strategies/PersonUpdateStrategy.js.map +1 -0
- package/dist/services/update/strategies/RecordUpdateStrategy.d.ts +13 -0
- package/dist/services/update/strategies/RecordUpdateStrategy.d.ts.map +1 -0
- package/dist/services/update/strategies/RecordUpdateStrategy.js +22 -0
- package/dist/services/update/strategies/RecordUpdateStrategy.js.map +1 -0
- package/dist/services/update/strategies/TaskUpdateStrategy.d.ts +9 -0
- package/dist/services/update/strategies/TaskUpdateStrategy.d.ts.map +1 -0
- package/dist/services/update/strategies/TaskUpdateStrategy.js +130 -0
- package/dist/services/update/strategies/TaskUpdateStrategy.js.map +1 -0
- package/dist/services/utils/attribute-metadata.d.ts +7 -0
- package/dist/services/utils/attribute-metadata.d.ts.map +1 -0
- package/dist/services/utils/attribute-metadata.js +84 -0
- package/dist/services/utils/attribute-metadata.js.map +1 -0
- package/dist/services/value-transformer/index.d.ts +57 -0
- package/dist/services/value-transformer/index.d.ts.map +1 -0
- package/dist/services/value-transformer/index.js +326 -0
- package/dist/services/value-transformer/index.js.map +1 -0
- package/dist/services/value-transformer/multi-select-transformer.d.ts +63 -0
- package/dist/services/value-transformer/multi-select-transformer.d.ts.map +1 -0
- package/dist/services/value-transformer/multi-select-transformer.js +144 -0
- package/dist/services/value-transformer/multi-select-transformer.js.map +1 -0
- package/dist/services/value-transformer/record-reference-transformer.d.ts +43 -0
- package/dist/services/value-transformer/record-reference-transformer.d.ts.map +1 -0
- package/dist/services/value-transformer/record-reference-transformer.js +245 -0
- package/dist/services/value-transformer/record-reference-transformer.js.map +1 -0
- package/dist/services/value-transformer/select-transformer.d.ts +48 -0
- package/dist/services/value-transformer/select-transformer.d.ts.map +1 -0
- package/dist/services/value-transformer/select-transformer.js +232 -0
- package/dist/services/value-transformer/select-transformer.js.map +1 -0
- package/dist/services/value-transformer/status-transformer.d.ts +32 -0
- package/dist/services/value-transformer/status-transformer.d.ts.map +1 -0
- package/dist/services/value-transformer/status-transformer.js +294 -0
- package/dist/services/value-transformer/status-transformer.js.map +1 -0
- package/dist/services/value-transformer/types.d.ts +100 -0
- package/dist/services/value-transformer/types.d.ts.map +1 -0
- package/dist/services/value-transformer/types.js +6 -0
- package/dist/services/value-transformer/types.js.map +1 -0
- package/dist/services/workspace-member-resolver.d.ts +55 -0
- package/dist/services/workspace-member-resolver.d.ts.map +1 -0
- package/dist/services/workspace-member-resolver.js +146 -0
- package/dist/services/workspace-member-resolver.js.map +1 -0
- package/dist/smithery.d.ts +79 -0
- package/dist/smithery.d.ts.map +1 -0
- package/dist/smithery.js +109 -0
- package/dist/smithery.js.map +1 -0
- package/dist/templates/skill/SKILL.template.md +78 -0
- package/dist/templates/skill/attribute-reference.template.md +126 -0
- package/dist/templates/skill/complex-types.template.md +255 -0
- package/dist/test-support/mock-alias.d.ts +3 -0
- package/dist/test-support/mock-alias.d.ts.map +1 -0
- package/dist/test-support/mock-alias.js +34 -0
- package/dist/test-support/mock-alias.js.map +1 -0
- package/dist/test-support/test-data-registry.d.ts +19 -0
- package/dist/test-support/test-data-registry.d.ts.map +1 -0
- package/dist/test-support/test-data-registry.js +37 -0
- package/dist/test-support/test-data-registry.js.map +1 -0
- package/dist/types/api-operations.d.ts +138 -0
- package/dist/types/api-operations.d.ts.map +1 -0
- package/dist/types/api-operations.js +6 -0
- package/dist/types/api-operations.js.map +1 -0
- package/dist/types/attio.d.ts +514 -0
- package/dist/types/attio.d.ts.map +1 -0
- package/dist/types/attio.js +117 -0
- package/dist/types/attio.js.map +1 -0
- package/dist/types/batch-types.d.ts +80 -0
- package/dist/types/batch-types.d.ts.map +1 -0
- package/dist/types/batch-types.js +57 -0
- package/dist/types/batch-types.js.map +1 -0
- package/dist/types/company-types.d.ts +52 -0
- package/dist/types/company-types.d.ts.map +1 -0
- package/dist/types/company-types.js +5 -0
- package/dist/types/company-types.js.map +1 -0
- package/dist/types/error-interfaces.d.ts +56 -0
- package/dist/types/error-interfaces.d.ts.map +1 -0
- package/dist/types/error-interfaces.js +60 -0
- package/dist/types/error-interfaces.js.map +1 -0
- package/dist/types/error-types.d.ts +70 -0
- package/dist/types/error-types.d.ts.map +1 -0
- package/dist/types/error-types.js +91 -0
- package/dist/types/error-types.js.map +1 -0
- package/dist/types/list-types.d.ts +121 -0
- package/dist/types/list-types.d.ts.map +1 -0
- package/dist/types/list-types.js +52 -0
- package/dist/types/list-types.js.map +1 -0
- package/dist/types/service-types.d.ts +214 -0
- package/dist/types/service-types.d.ts.map +1 -0
- package/dist/types/service-types.js +28 -0
- package/dist/types/service-types.js.map +1 -0
- package/dist/types/tool-types.d.ts +278 -0
- package/dist/types/tool-types.d.ts.map +1 -0
- package/dist/types/tool-types.js +6 -0
- package/dist/types/tool-types.js.map +1 -0
- package/dist/types/universal-service-types.d.ts +179 -0
- package/dist/types/universal-service-types.d.ts.map +1 -0
- package/dist/types/universal-service-types.js +141 -0
- package/dist/types/universal-service-types.js.map +1 -0
- package/dist/utils/AttioFieldMapper.d.ts +34 -0
- package/dist/utils/AttioFieldMapper.d.ts.map +1 -0
- package/dist/utils/AttioFieldMapper.js +84 -0
- package/dist/utils/AttioFieldMapper.js.map +1 -0
- package/dist/utils/AttioFilterOperators.d.ts +49 -0
- package/dist/utils/AttioFilterOperators.d.ts.map +1 -0
- package/dist/utils/AttioFilterOperators.js +173 -0
- package/dist/utils/AttioFilterOperators.js.map +1 -0
- package/dist/utils/attio-response.d.ts +73 -0
- package/dist/utils/attio-response.d.ts.map +1 -0
- package/dist/utils/attio-response.js +79 -0
- package/dist/utils/attio-response.js.map +1 -0
- package/dist/utils/attribute-format-helpers.d.ts +24 -0
- package/dist/utils/attribute-format-helpers.d.ts.map +1 -0
- package/dist/utils/attribute-format-helpers.js +373 -0
- package/dist/utils/attribute-format-helpers.js.map +1 -0
- package/dist/utils/attribute-mapping/attribute-mappers.d.ts +39 -0
- package/dist/utils/attribute-mapping/attribute-mappers.d.ts.map +1 -0
- package/dist/utils/attribute-mapping/attribute-mappers.js +422 -0
- package/dist/utils/attribute-mapping/attribute-mappers.js.map +1 -0
- package/dist/utils/attribute-mapping/filter-translator.d.ts +9 -0
- package/dist/utils/attribute-mapping/filter-translator.d.ts.map +1 -0
- package/dist/utils/attribute-mapping/filter-translator.js +118 -0
- package/dist/utils/attribute-mapping/filter-translator.js.map +1 -0
- package/dist/utils/attribute-mapping/index.d.ts +10 -0
- package/dist/utils/attribute-mapping/index.d.ts.map +1 -0
- package/dist/utils/attribute-mapping/index.js +12 -0
- package/dist/utils/attribute-mapping/index.js.map +1 -0
- package/dist/utils/attribute-mapping/legacy-maps.d.ts +11 -0
- package/dist/utils/attribute-mapping/legacy-maps.d.ts.map +1 -0
- package/dist/utils/attribute-mapping/legacy-maps.js +15 -0
- package/dist/utils/attribute-mapping/legacy-maps.js.map +1 -0
- package/dist/utils/attribute-mapping/mapping-utils.d.ts +90 -0
- package/dist/utils/attribute-mapping/mapping-utils.d.ts.map +1 -0
- package/dist/utils/attribute-mapping/mapping-utils.js +131 -0
- package/dist/utils/attribute-mapping/mapping-utils.js.map +1 -0
- package/dist/utils/auto-discovery.d.ts +22 -0
- package/dist/utils/auto-discovery.d.ts.map +1 -0
- package/dist/utils/auto-discovery.js +156 -0
- package/dist/utils/auto-discovery.js.map +1 -0
- package/dist/utils/axios-error-mapper.d.ts +62 -0
- package/dist/utils/axios-error-mapper.d.ts.map +1 -0
- package/dist/utils/axios-error-mapper.js +356 -0
- package/dist/utils/axios-error-mapper.js.map +1 -0
- package/dist/utils/batch-validation.d.ts +77 -0
- package/dist/utils/batch-validation.d.ts.map +1 -0
- package/dist/utils/batch-validation.js +220 -0
- package/dist/utils/batch-validation.js.map +1 -0
- package/dist/utils/cli-colors.d.ts +36 -0
- package/dist/utils/cli-colors.d.ts.map +1 -0
- package/dist/utils/cli-colors.js +35 -0
- package/dist/utils/cli-colors.js.map +1 -0
- package/dist/utils/client-resolver.d.ts +23 -0
- package/dist/utils/client-resolver.d.ts.map +1 -0
- package/dist/utils/client-resolver.js +133 -0
- package/dist/utils/client-resolver.js.map +1 -0
- package/dist/utils/complex-type-validation.d.ts +16 -0
- package/dist/utils/complex-type-validation.d.ts.map +1 -0
- package/dist/utils/complex-type-validation.js +196 -0
- package/dist/utils/complex-type-validation.js.map +1 -0
- package/dist/utils/config-loader.d.ts +47 -0
- package/dist/utils/config-loader.d.ts.map +1 -0
- package/dist/utils/config-loader.js +255 -0
- package/dist/utils/config-loader.js.map +1 -0
- package/dist/utils/config-migration.d.ts +140 -0
- package/dist/utils/config-migration.d.ts.map +1 -0
- package/dist/utils/config-migration.js +310 -0
- package/dist/utils/config-migration.js.map +1 -0
- package/dist/utils/date-parser.d.ts +53 -0
- package/dist/utils/date-parser.d.ts.map +1 -0
- package/dist/utils/date-parser.js +239 -0
- package/dist/utils/date-parser.js.map +1 -0
- package/dist/utils/date-utils.d.ts +76 -0
- package/dist/utils/date-utils.d.ts.map +1 -0
- package/dist/utils/date-utils.js +422 -0
- package/dist/utils/date-utils.js.map +1 -0
- package/dist/utils/domain-utils.d.ts +46 -0
- package/dist/utils/domain-utils.d.ts.map +1 -0
- package/dist/utils/domain-utils.js +143 -0
- package/dist/utils/domain-utils.js.map +1 -0
- package/dist/utils/dynamic-import.d.ts +33 -0
- package/dist/utils/dynamic-import.d.ts.map +1 -0
- package/dist/utils/dynamic-import.js +42 -0
- package/dist/utils/dynamic-import.js.map +1 -0
- package/dist/utils/enhanced-validation.d.ts +47 -0
- package/dist/utils/enhanced-validation.d.ts.map +1 -0
- package/dist/utils/enhanced-validation.js +254 -0
- package/dist/utils/enhanced-validation.js.map +1 -0
- package/dist/utils/error-detection.d.ts +37 -0
- package/dist/utils/error-detection.d.ts.map +1 -0
- package/dist/utils/error-detection.js +157 -0
- package/dist/utils/error-detection.js.map +1 -0
- package/dist/utils/error-enhancer.d.ts +24 -0
- package/dist/utils/error-enhancer.d.ts.map +1 -0
- package/dist/utils/error-enhancer.js +204 -0
- package/dist/utils/error-enhancer.js.map +1 -0
- package/dist/utils/error-examples.d.ts +40 -0
- package/dist/utils/error-examples.d.ts.map +1 -0
- package/dist/utils/error-examples.js +163 -0
- package/dist/utils/error-examples.js.map +1 -0
- package/dist/utils/error-handler.d.ts +92 -0
- package/dist/utils/error-handler.d.ts.map +1 -0
- package/dist/utils/error-handler.js +368 -0
- package/dist/utils/error-handler.js.map +1 -0
- package/dist/utils/error-response-utils.d.ts +68 -0
- package/dist/utils/error-response-utils.d.ts.map +1 -0
- package/dist/utils/error-response-utils.js +223 -0
- package/dist/utils/error-response-utils.js.map +1 -0
- package/dist/utils/error-sanitizer.d.ts +82 -0
- package/dist/utils/error-sanitizer.d.ts.map +1 -0
- package/dist/utils/error-sanitizer.js +366 -0
- package/dist/utils/error-sanitizer.js.map +1 -0
- package/dist/utils/error-utilities.d.ts +189 -0
- package/dist/utils/error-utilities.d.ts.map +1 -0
- package/dist/utils/error-utilities.js +310 -0
- package/dist/utils/error-utilities.js.map +1 -0
- package/dist/utils/field-suggestions.d.ts +77 -0
- package/dist/utils/field-suggestions.d.ts.map +1 -0
- package/dist/utils/field-suggestions.js +252 -0
- package/dist/utils/field-suggestions.js.map +1 -0
- package/dist/utils/filters/builders/activity.d.ts +13 -0
- package/dist/utils/filters/builders/activity.d.ts.map +1 -0
- package/dist/utils/filters/builders/activity.js +65 -0
- package/dist/utils/filters/builders/activity.js.map +1 -0
- package/dist/utils/filters/builders/basic.d.ts +13 -0
- package/dist/utils/filters/builders/basic.d.ts.map +1 -0
- package/dist/utils/filters/builders/basic.js +36 -0
- package/dist/utils/filters/builders/basic.js.map +1 -0
- package/dist/utils/filters/builders/complex.d.ts +31 -0
- package/dist/utils/filters/builders/complex.d.ts.map +1 -0
- package/dist/utils/filters/builders/complex.js +92 -0
- package/dist/utils/filters/builders/complex.js.map +1 -0
- package/dist/utils/filters/builders/date.d.ts +17 -0
- package/dist/utils/filters/builders/date.d.ts.map +1 -0
- package/dist/utils/filters/builders/date.js +51 -0
- package/dist/utils/filters/builders/date.js.map +1 -0
- package/dist/utils/filters/builders/index.d.ts +9 -0
- package/dist/utils/filters/builders/index.d.ts.map +1 -0
- package/dist/utils/filters/builders/index.js +9 -0
- package/dist/utils/filters/builders/index.js.map +1 -0
- package/dist/utils/filters/builders/numeric.d.ts +17 -0
- package/dist/utils/filters/builders/numeric.d.ts.map +1 -0
- package/dist/utils/filters/builders/numeric.js +61 -0
- package/dist/utils/filters/builders/numeric.js.map +1 -0
- package/dist/utils/filters/builders/query-api.d.ts +71 -0
- package/dist/utils/filters/builders/query-api.d.ts.map +1 -0
- package/dist/utils/filters/builders/query-api.js +229 -0
- package/dist/utils/filters/builders/query-api.js.map +1 -0
- package/dist/utils/filters/builders/text.d.ts +17 -0
- package/dist/utils/filters/builders/text.d.ts.map +1 -0
- package/dist/utils/filters/builders/text.js +45 -0
- package/dist/utils/filters/builders/text.js.map +1 -0
- package/dist/utils/filters/builders/types.d.ts +2 -0
- package/dist/utils/filters/builders/types.d.ts.map +1 -0
- package/dist/utils/filters/builders/types.js +2 -0
- package/dist/utils/filters/builders/types.js.map +1 -0
- package/dist/utils/filters/builders.d.ts +2 -0
- package/dist/utils/filters/builders.d.ts.map +1 -0
- package/dist/utils/filters/builders.js +2 -0
- package/dist/utils/filters/builders.js.map +1 -0
- package/dist/utils/filters/cache.d.ts +80 -0
- package/dist/utils/filters/cache.d.ts.map +1 -0
- package/dist/utils/filters/cache.js +212 -0
- package/dist/utils/filters/cache.js.map +1 -0
- package/dist/utils/filters/index.d.ts +52 -0
- package/dist/utils/filters/index.d.ts.map +1 -0
- package/dist/utils/filters/index.js +71 -0
- package/dist/utils/filters/index.js.map +1 -0
- package/dist/utils/filters/operators.d.ts +65 -0
- package/dist/utils/filters/operators.d.ts.map +1 -0
- package/dist/utils/filters/operators.js +214 -0
- package/dist/utils/filters/operators.js.map +1 -0
- package/dist/utils/filters/reference-attribute-helper.d.ts +69 -0
- package/dist/utils/filters/reference-attribute-helper.d.ts.map +1 -0
- package/dist/utils/filters/reference-attribute-helper.js +262 -0
- package/dist/utils/filters/reference-attribute-helper.js.map +1 -0
- package/dist/utils/filters/relationship.d.ts +81 -0
- package/dist/utils/filters/relationship.d.ts.map +1 -0
- package/dist/utils/filters/relationship.js +399 -0
- package/dist/utils/filters/relationship.js.map +1 -0
- package/dist/utils/filters/timeframe-utils.d.ts +135 -0
- package/dist/utils/filters/timeframe-utils.d.ts.map +1 -0
- package/dist/utils/filters/timeframe-utils.js +429 -0
- package/dist/utils/filters/timeframe-utils.js.map +1 -0
- package/dist/utils/filters/translators.d.ts +68 -0
- package/dist/utils/filters/translators.d.ts.map +1 -0
- package/dist/utils/filters/translators.js +714 -0
- package/dist/utils/filters/translators.js.map +1 -0
- package/dist/utils/filters/types.d.ts +138 -0
- package/dist/utils/filters/types.d.ts.map +1 -0
- package/dist/utils/filters/types.js +78 -0
- package/dist/utils/filters/types.js.map +1 -0
- package/dist/utils/filters/utils.d.ts +78 -0
- package/dist/utils/filters/utils.d.ts.map +1 -0
- package/dist/utils/filters/utils.js +174 -0
- package/dist/utils/filters/utils.js.map +1 -0
- package/dist/utils/filters/validation-utils.d.ts +123 -0
- package/dist/utils/filters/validation-utils.d.ts.map +1 -0
- package/dist/utils/filters/validation-utils.js +303 -0
- package/dist/utils/filters/validation-utils.js.map +1 -0
- package/dist/utils/filters/validators.d.ts +73 -0
- package/dist/utils/filters/validators.d.ts.map +1 -0
- package/dist/utils/filters/validators.js +325 -0
- package/dist/utils/filters/validators.js.map +1 -0
- package/dist/utils/filters/value-validators.d.ts +37 -0
- package/dist/utils/filters/value-validators.d.ts.map +1 -0
- package/dist/utils/filters/value-validators.js +107 -0
- package/dist/utils/filters/value-validators.js.map +1 -0
- package/dist/utils/json-serializer.d.ts +68 -0
- package/dist/utils/json-serializer.d.ts.map +1 -0
- package/dist/utils/json-serializer.js +287 -0
- package/dist/utils/json-serializer.js.map +1 -0
- package/dist/utils/location-normalizer.d.ts +26 -0
- package/dist/utils/location-normalizer.d.ts.map +1 -0
- package/dist/utils/location-normalizer.js +39 -0
- package/dist/utils/location-normalizer.js.map +1 -0
- package/dist/utils/log-sanitizer.d.ts +14 -0
- package/dist/utils/log-sanitizer.d.ts.map +1 -0
- package/dist/utils/log-sanitizer.js +248 -0
- package/dist/utils/log-sanitizer.js.map +1 -0
- package/dist/utils/logger.d.ts +227 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +401 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/markdown-formatter.d.ts +47 -0
- package/dist/utils/markdown-formatter.d.ts.map +1 -0
- package/dist/utils/markdown-formatter.js +145 -0
- package/dist/utils/markdown-formatter.js.map +1 -0
- package/dist/utils/mcp-discovery.d.ts +16 -0
- package/dist/utils/mcp-discovery.d.ts.map +1 -0
- package/dist/utils/mcp-discovery.js +54 -0
- package/dist/utils/mcp-discovery.js.map +1 -0
- package/dist/utils/metadata-utils.d.ts +27 -0
- package/dist/utils/metadata-utils.d.ts.map +1 -0
- package/dist/utils/metadata-utils.js +59 -0
- package/dist/utils/metadata-utils.js.map +1 -0
- package/dist/utils/mock-state.d.ts +50 -0
- package/dist/utils/mock-state.d.ts.map +1 -0
- package/dist/utils/mock-state.js +192 -0
- package/dist/utils/mock-state.js.map +1 -0
- package/dist/utils/normalization/email-validation-config.d.ts +42 -0
- package/dist/utils/normalization/email-validation-config.d.ts.map +1 -0
- package/dist/utils/normalization/email-validation-config.js +107 -0
- package/dist/utils/normalization/email-validation-config.js.map +1 -0
- package/dist/utils/normalization/people-normalization.d.ts +100 -0
- package/dist/utils/normalization/people-normalization.d.ts.map +1 -0
- package/dist/utils/normalization/people-normalization.js +508 -0
- package/dist/utils/normalization/people-normalization.js.map +1 -0
- package/dist/utils/numeric-utils.d.ts +27 -0
- package/dist/utils/numeric-utils.d.ts.map +1 -0
- package/dist/utils/numeric-utils.js +83 -0
- package/dist/utils/numeric-utils.js.map +1 -0
- package/dist/utils/pagination.d.ts +85 -0
- package/dist/utils/pagination.d.ts.map +1 -0
- package/dist/utils/pagination.js +172 -0
- package/dist/utils/pagination.js.map +1 -0
- package/dist/utils/person-lookup.d.ts +35 -0
- package/dist/utils/person-lookup.d.ts.map +1 -0
- package/dist/utils/person-lookup.js +67 -0
- package/dist/utils/person-lookup.js.map +1 -0
- package/dist/utils/personal-name-parser.d.ts +37 -0
- package/dist/utils/personal-name-parser.d.ts.map +1 -0
- package/dist/utils/personal-name-parser.js +115 -0
- package/dist/utils/personal-name-parser.js.map +1 -0
- package/dist/utils/rate-limiter.d.ts +101 -0
- package/dist/utils/rate-limiter.d.ts.map +1 -0
- package/dist/utils/rate-limiter.js +160 -0
- package/dist/utils/rate-limiter.js.map +1 -0
- package/dist/utils/record-utils.d.ts +74 -0
- package/dist/utils/record-utils.d.ts.map +1 -0
- package/dist/utils/record-utils.js +312 -0
- package/dist/utils/record-utils.js.map +1 -0
- package/dist/utils/relationship-helpers.d.ts +55 -0
- package/dist/utils/relationship-helpers.d.ts.map +1 -0
- package/dist/utils/relationship-helpers.js +113 -0
- package/dist/utils/relationship-helpers.js.map +1 -0
- package/dist/utils/relationship-utils.d.ts +61 -0
- package/dist/utils/relationship-utils.d.ts.map +1 -0
- package/dist/utils/relationship-utils.js +242 -0
- package/dist/utils/relationship-utils.js.map +1 -0
- package/dist/utils/resource-mapping.d.ts +97 -0
- package/dist/utils/resource-mapping.d.ts.map +1 -0
- package/dist/utils/resource-mapping.js +277 -0
- package/dist/utils/resource-mapping.js.map +1 -0
- package/dist/utils/response-formatter.d.ts +121 -0
- package/dist/utils/response-formatter.d.ts.map +1 -0
- package/dist/utils/response-formatter.js +185 -0
- package/dist/utils/response-formatter.js.map +1 -0
- package/dist/utils/schema-pre-validation.d.ts +95 -0
- package/dist/utils/schema-pre-validation.d.ts.map +1 -0
- package/dist/utils/schema-pre-validation.js +683 -0
- package/dist/utils/schema-pre-validation.js.map +1 -0
- package/dist/utils/secure-error-handler.d.ts +231 -0
- package/dist/utils/secure-error-handler.d.ts.map +1 -0
- package/dist/utils/secure-error-handler.js +478 -0
- package/dist/utils/secure-error-handler.js.map +1 -0
- package/dist/utils/security-constants.d.ts +18 -0
- package/dist/utils/security-constants.d.ts.map +1 -0
- package/dist/utils/security-constants.js +22 -0
- package/dist/utils/security-constants.js.map +1 -0
- package/dist/utils/task-debug.d.ts +9 -0
- package/dist/utils/task-debug.d.ts.map +1 -0
- package/dist/utils/task-debug.js +72 -0
- package/dist/utils/task-debug.js.map +1 -0
- package/dist/utils/test-impact-analyzer.d.ts +65 -0
- package/dist/utils/test-impact-analyzer.d.ts.map +1 -0
- package/dist/utils/test-impact-analyzer.js +339 -0
- package/dist/utils/test-impact-analyzer.js.map +1 -0
- package/dist/utils/token-count.d.ts +5 -0
- package/dist/utils/token-count.d.ts.map +1 -0
- package/dist/utils/token-count.js +97 -0
- package/dist/utils/token-count.js.map +1 -0
- package/dist/utils/token-footprint-analyzer.d.ts +46 -0
- package/dist/utils/token-footprint-analyzer.d.ts.map +1 -0
- package/dist/utils/token-footprint-analyzer.js +221 -0
- package/dist/utils/token-footprint-analyzer.js.map +1 -0
- package/dist/utils/ttl-cache.d.ts +69 -0
- package/dist/utils/ttl-cache.d.ts.map +1 -0
- package/dist/utils/ttl-cache.js +113 -0
- package/dist/utils/ttl-cache.js.map +1 -0
- package/dist/utils/type-extraction.d.ts +252 -0
- package/dist/utils/type-extraction.d.ts.map +1 -0
- package/dist/utils/type-extraction.js +358 -0
- package/dist/utils/type-extraction.js.map +1 -0
- package/dist/utils/types/common.d.ts +39 -0
- package/dist/utils/types/common.d.ts.map +1 -0
- package/dist/utils/types/common.js +5 -0
- package/dist/utils/types/common.js.map +1 -0
- package/dist/utils/uri-parser.d.ts +18 -0
- package/dist/utils/uri-parser.d.ts.map +1 -0
- package/dist/utils/uri-parser.js +31 -0
- package/dist/utils/uri-parser.js.map +1 -0
- package/dist/utils/validation/email-validation.d.ts +49 -0
- package/dist/utils/validation/email-validation.d.ts.map +1 -0
- package/dist/utils/validation/email-validation.js +122 -0
- package/dist/utils/validation/email-validation.js.map +1 -0
- package/dist/utils/validation/field-validation.d.ts +79 -0
- package/dist/utils/validation/field-validation.d.ts.map +1 -0
- package/dist/utils/validation/field-validation.js +586 -0
- package/dist/utils/validation/field-validation.js.map +1 -0
- package/dist/utils/validation/id-validation.d.ts +81 -0
- package/dist/utils/validation/id-validation.d.ts.map +1 -0
- package/dist/utils/validation/id-validation.js +222 -0
- package/dist/utils/validation/id-validation.js.map +1 -0
- package/dist/utils/validation/phone-validation.d.ts +25 -0
- package/dist/utils/validation/phone-validation.d.ts.map +1 -0
- package/dist/utils/validation/phone-validation.js +132 -0
- package/dist/utils/validation/phone-validation.js.map +1 -0
- package/dist/utils/validation/uuid-validation.d.ts +96 -0
- package/dist/utils/validation/uuid-validation.d.ts.map +1 -0
- package/dist/utils/validation/uuid-validation.js +228 -0
- package/dist/utils/validation/uuid-validation.js.map +1 -0
- package/dist/utils/validation-utils.d.ts +57 -0
- package/dist/utils/validation-utils.d.ts.map +1 -0
- package/dist/utils/validation-utils.js +275 -0
- package/dist/utils/validation-utils.js.map +1 -0
- package/dist/utils/validation.d.ts +59 -0
- package/dist/utils/validation.d.ts.map +1 -0
- package/dist/utils/validation.js +287 -0
- package/dist/utils/validation.js.map +1 -0
- package/dist/utils/value-matcher.d.ts +58 -0
- package/dist/utils/value-matcher.d.ts.map +1 -0
- package/dist/utils/value-matcher.js +119 -0
- package/dist/utils/value-matcher.js.map +1 -0
- package/dist/validators/attribute-validator.d.ts +59 -0
- package/dist/validators/attribute-validator.d.ts.map +1 -0
- package/dist/validators/attribute-validator.js +531 -0
- package/dist/validators/attribute-validator.js.map +1 -0
- package/dist/validators/company/error-handler.d.ts +2 -0
- package/dist/validators/company/error-handler.d.ts.map +1 -0
- package/dist/validators/company/error-handler.js +10 -0
- package/dist/validators/company/error-handler.js.map +1 -0
- package/dist/validators/company/field_detector.d.ts +5 -0
- package/dist/validators/company/field_detector.d.ts.map +1 -0
- package/dist/validators/company/field_detector.js +120 -0
- package/dist/validators/company/field_detector.js.map +1 -0
- package/dist/validators/company/index.d.ts +26 -0
- package/dist/validators/company/index.d.ts.map +1 -0
- package/dist/validators/company/index.js +451 -0
- package/dist/validators/company/index.js.map +1 -0
- package/dist/validators/company/type_cache.d.ts +14 -0
- package/dist/validators/company/type_cache.d.ts.map +1 -0
- package/dist/validators/company/type_cache.js +28 -0
- package/dist/validators/company/type_cache.js.map +1 -0
- package/dist/validators/company/types.d.ts +8 -0
- package/dist/validators/company/types.d.ts.map +1 -0
- package/dist/validators/company/types.js +2 -0
- package/dist/validators/company/types.js.map +1 -0
- package/dist/validators/company-validator.d.ts +2 -0
- package/dist/validators/company-validator.d.ts.map +1 -0
- package/dist/validators/company-validator.js +2 -0
- package/dist/validators/company-validator.js.map +1 -0
- package/dist/validators/url/linkedin-validator.d.ts +5 -0
- package/dist/validators/url/linkedin-validator.d.ts.map +1 -0
- package/dist/validators/url/linkedin-validator.js +24 -0
- package/dist/validators/url/linkedin-validator.js.map +1 -0
- package/package.json +333 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,891 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
## [2025-12-24] - Daily Update
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- **Select field persistence** (#1045) - Fixed silent API failures where select field updates returned 200 OK but didn't persist
|
|
17
|
+
- Fixed `detectFieldType()` to return `'array'` for all select fields (single and multi-select)
|
|
18
|
+
- Fixed select-transformer to use `["title"]` format instead of `["uuid"]` format (Attio silently rejects UUID arrays)
|
|
19
|
+
|
|
20
|
+
## [2025-12-17] - Daily Update
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- **MCP-compliant tool naming** (#1039) - All universal tools now use `snake_case`, verb-first naming
|
|
25
|
+
- Universal search/metadata tools: `records_search` → `search_records`, `records_get_details` → `get_record_details`, etc. (12 tools)
|
|
26
|
+
- CRUD tools: `create-record` → `create_record`, `update-record` → `update_record`, `delete-record` → `delete_record`
|
|
27
|
+
- Note tools: `create-note` → `create_note`, `list-notes` → `list_notes`
|
|
28
|
+
- Debug tool: `smithery-debug-config` → `smithery_debug_config`
|
|
29
|
+
- Tool descriptions now use natural language sentences instead of pipe-separated labels
|
|
30
|
+
- Aligns with MCP ecosystem standards (Desktop Commander, SEP-986, official MCP docs)
|
|
31
|
+
- Old names continue to work via dual alias support (both old `noun_verb` and `kebab-case` formats)
|
|
32
|
+
- See `docs/MIGRATION-GUIDE.md` for complete migration table
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
- **Select field persistence** (#1045) - Fixed silent API failures where select field updates returned 200 OK but didn't persist
|
|
37
|
+
- Fixed `detectFieldType()` to return `'array'` for all select fields (single and multi-select)
|
|
38
|
+
- Fixed select-transformer to use `["title"]` format instead of `["uuid"]` format (Attio silently rejects UUID arrays)
|
|
39
|
+
- Added E2E test validating real API persistence with select fields
|
|
40
|
+
- Resolves type mismatch validation errors and false-positive update confirmations
|
|
41
|
+
- Deal creation: accept stage titles + UTM fields and improve validation/error surfacing (#1043)
|
|
42
|
+
|
|
43
|
+
### Deprecated
|
|
44
|
+
|
|
45
|
+
- **Old universal tool names** (#1039) - Removal: v2.0.0 (Q1 2026)
|
|
46
|
+
- Old noun-verb snake_case format (e.g., `records_search`, `records_get_details`)
|
|
47
|
+
- Old kebab-case format (e.g., `create-record`, `update-record`, `create-note`)
|
|
48
|
+
- Use new verb-first snake_case names (e.g., `search_records`, `create_record`, `create_note`)
|
|
49
|
+
- Dual aliases provide backward compatibility with deprecation warnings
|
|
50
|
+
- Migration guide available in `docs/MIGRATION-GUIDE.md`
|
|
51
|
+
|
|
52
|
+
- **Legacy resource-specific tools** (#1022) - Removal: v2.0.0 (Q1 2026)
|
|
53
|
+
- All resource-specific tools (`search-companies`, `create-person`, etc.) are deprecated
|
|
54
|
+
- Use universal tools instead (`search_records`, `create_record`, etc.)
|
|
55
|
+
- Legacy tools accessible via `DISABLE_UNIVERSAL_TOOLS=true` but emit deprecation warnings
|
|
56
|
+
- See `docs/MIGRATION-GUIDE.md` for migration guide
|
|
57
|
+
|
|
58
|
+
## [2025-12-17] - Daily Update
|
|
59
|
+
|
|
60
|
+
### Changed
|
|
61
|
+
|
|
62
|
+
- **Refactored select array handling** (#1030) - Normalized select array data structures for consistency
|
|
63
|
+
- **Removed unused normalizeLocation function** (#1030) - Cleaned up unused code to reduce technical debt
|
|
64
|
+
|
|
65
|
+
## [2025-12-16] - Daily Update
|
|
66
|
+
|
|
67
|
+
### Added
|
|
68
|
+
|
|
69
|
+
- **Configurable option fetch delay** - New `--option-fetch-delay` flag to tune rate limiting between option fetches
|
|
70
|
+
- **Select-field transformer** (#1019, #1029) - Quality-of-life enhancement for select field values with case-insensitive title matching, partial matching support, and UUID pass-through
|
|
71
|
+
- **Attio skill generator meta-skill** (#1020, #1024) - Meta-skill for generating workspace schema documentation
|
|
72
|
+
|
|
73
|
+
### Fixed
|
|
74
|
+
|
|
75
|
+
- **SDK dependency pinning** (#1025, #1026) - Pinned @modelcontextprotocol/sdk to ~1.24.0 to ensure stability
|
|
76
|
+
|
|
77
|
+
### Breaking Changes
|
|
78
|
+
|
|
79
|
+
### Added
|
|
80
|
+
|
|
81
|
+
- **Select-field Transformer** (#1019) - Quality-of-life enhancement for select field values
|
|
82
|
+
- Case-insensitive title matching: `"potential customer"` → `"Potential Customer"`
|
|
83
|
+
- Partial matching support: `"Potential"` → `"Potential Customer"`
|
|
84
|
+
- Better error messages listing valid options with suggestions
|
|
85
|
+
- UUID pass-through support (no API lookup needed)
|
|
86
|
+
- 5-minute TTL caching to minimize API calls
|
|
87
|
+
- Consistent UX with existing status-transformer
|
|
88
|
+
|
|
89
|
+
- **Configurable skill generator option fetch delay** (#1015) - New `--option-fetch-delay` flag to tune rate limiting between option fetches
|
|
90
|
+
|
|
91
|
+
- **Universal Usage Guide Skill** (#1018) - Hand-crafted skill for workflow patterns and error prevention
|
|
92
|
+
- Universal workflow patterns (Find or Create, Batch Update, Pipeline Movement, Data Enrichment)
|
|
93
|
+
- Golden Rules error prevention system (read-only fields, multi-select arrays, data types, UUID validation)
|
|
94
|
+
- Complete MCP tool reference with signatures and examples for all tools
|
|
95
|
+
- Integration patterns for deals pipeline, list-based organization, lead qualification, bulk import
|
|
96
|
+
- Object-agnostic design supporting companies, deals, people, lists, and custom objects
|
|
97
|
+
- Cross-references to attio-workspace-schema skill for workspace-specific details
|
|
98
|
+
- Two-skill architecture: Schema skill (WHAT) + Usage skill (HOW)
|
|
99
|
+
|
|
100
|
+
- **Workspace Schema Skill Generator** (#983) - Auto-generate Claude Skills from Attio workspace schemas
|
|
101
|
+
- New CLI command `attio-discover generate-skill` for generating workspace schema documentation
|
|
102
|
+
- Supports companies, people, and deals (Phase 1 objects) with experimental support for custom objects
|
|
103
|
+
- Three output formats: Claude Skill (SKILL.md + resources/), Markdown (single file), and JSON
|
|
104
|
+
- Prominent Display Name ↔ API Slug mapping tables to address #1 LLM error source
|
|
105
|
+
- Select/status option values with 20-item truncation and "(+N more)" indicators
|
|
106
|
+
- Complex type structure documentation (location, personal-name, phone-number, email-address)
|
|
107
|
+
- Multi-select, unique, and required field indicators for accurate attribute usage
|
|
108
|
+
- ZIP packaging support (--zip flag) for easy Claude desktop upload
|
|
109
|
+
- Graceful error handling with partial data generation when individual objects fail
|
|
110
|
+
- Handlebars-based templating for clean separation of logic and presentation
|
|
111
|
+
- Security validation prevents directory traversal attacks
|
|
112
|
+
- Comprehensive unit tests for all services (45 tests total)
|
|
113
|
+
|
|
114
|
+
### Fixed
|
|
115
|
+
|
|
116
|
+
- **Field persistence warnings no longer show false positives for status field updates** (#995)
|
|
117
|
+
- Enhanced `unwrapArrayValue` to handle both `status` and `title` properties in API responses
|
|
118
|
+
- Improved `isStatusField` detection to recognize both "stage" and "status" field variations
|
|
119
|
+
- Added comprehensive test coverage for status field persistence scenarios
|
|
120
|
+
- Resolves confusing warnings after successful updates (e.g., "Sales Qualified" stage updates)
|
|
121
|
+
|
|
122
|
+
## [2025-12-13] - Daily Update
|
|
123
|
+
|
|
124
|
+
### Fixed
|
|
125
|
+
|
|
126
|
+
- **Field persistence false warnings for status fields** (#995, #1011) - Resolved spurious warnings when updating status field values
|
|
127
|
+
- Fixed unwrapArrayValue to properly handle both status and title field properties
|
|
128
|
+
- Improved isStatusField detection to recognize stage and status field variations
|
|
129
|
+
- Enhanced test coverage for status field update scenarios
|
|
130
|
+
|
|
131
|
+
### Changed
|
|
132
|
+
|
|
133
|
+
- **Consolidated metadata fetching and modularized UniversalUpdateService** (#984, #1006)
|
|
134
|
+
- Refactored metadata operations for improved maintainability
|
|
135
|
+
- Modularized UniversalUpdateService to separate concerns
|
|
136
|
+
- Unified metadata fetching approach across service
|
|
137
|
+
|
|
138
|
+
## [2025-12-12] - Daily Update
|
|
139
|
+
|
|
140
|
+
### Fixed
|
|
141
|
+
|
|
142
|
+
- **Daily changelog workflow authentication** (#1005) - Added claude_args with required tool permissions
|
|
143
|
+
- Explicitly permits Read, Edit, Write for file operations
|
|
144
|
+
- Allows Bash(git:\*) for branch/commit/push operations
|
|
145
|
+
- Allows Bash(gh pr list:_), Bash(gh pr create:_) for PR operations
|
|
146
|
+
- Allows Bash(date:\*) for branch naming
|
|
147
|
+
- Ensures gh CLI has authentication inside Claude's Bash environment
|
|
148
|
+
|
|
149
|
+
- **Claude PR Review false positives from missing dynamic import detection** (#1002, #1003) - Ring 1 scope now includes dynamically imported modules
|
|
150
|
+
- Adds regex patterns for dynamic imports (`await import(...)`) in scope generator
|
|
151
|
+
- Captures both relative (`../../path`) and `@/` alias dynamic imports
|
|
152
|
+
- Pre-computes alias paths from full repo and outputs alias-resolutions.json
|
|
153
|
+
- Adds prompt hardening to prevent "missing file" claims from sparse checkout limitations
|
|
154
|
+
|
|
155
|
+
- **Enhance uniqueness constraint violation errors** (#990, #1000) - Better error messages for duplicate records
|
|
156
|
+
- Searches for conflicting records and shows field name, conflicting value, and existing record ID
|
|
157
|
+
- Provides actionable options: update existing, view details, or use different value
|
|
158
|
+
- Integrated into handleCreateError() for companies and people records
|
|
159
|
+
|
|
160
|
+
- **Changelog and personal-name field validation** (#991) - Clearer validation and error handling
|
|
161
|
+
- Pre-validates complex types with actionable errors and examples before API calls
|
|
162
|
+
- Auto-fills missing location fields with nulls
|
|
163
|
+
- Enforces phone_number/original_phone_number requirements and non-empty names
|
|
164
|
+
|
|
165
|
+
### Added
|
|
166
|
+
|
|
167
|
+
- **`records_get_attribute_options` tool** (#975) - Get valid options for select, status, and multi-select attributes
|
|
168
|
+
- Prevents "Cannot find select option" errors by showing available options upfront
|
|
169
|
+
- Works with companies, people, deals, and custom objects
|
|
170
|
+
- Returns option titles, IDs, and active/archived status
|
|
171
|
+
|
|
172
|
+
- **Comprehensive FieldPersistenceHandler tests** (#984 extension) - 50 new unit tests
|
|
173
|
+
- Optional actualRecord parameter behavior (10 tests)
|
|
174
|
+
- Verification modes: disabled, warn-only, strict (15 tests)
|
|
175
|
+
- Semantic vs cosmetic mismatch filtering (15 tests)
|
|
176
|
+
- Integration with UpdateValidation (10 tests)
|
|
177
|
+
- Increases total test count from 2973 to 3026 (+53 tests)
|
|
178
|
+
|
|
179
|
+
### Changed
|
|
180
|
+
|
|
181
|
+
- **Refactored UniversalUpdateService** (#984) - Reduced from 831 to 691 lines (-17%) by extracting focused modules
|
|
182
|
+
- Created MetadataResolver for centralized metadata fetching (eliminates 40-60% duplicate API calls)
|
|
183
|
+
- Created UpdateOrchestrator for clean strategy dispatch separation
|
|
184
|
+
- Created FieldValidationHandler for validation with display name resolution
|
|
185
|
+
- Created FieldPersistenceHandler for post-update verification
|
|
186
|
+
|
|
187
|
+
- **Unified verification API** (#984 extension) - Single entry point for field persistence verification
|
|
188
|
+
- UniversalUpdateService now routes through FieldPersistenceHandler.verifyPersistence
|
|
189
|
+
- Eliminates duplicate semantic filtering logic (47 lines removed)
|
|
190
|
+
- FieldPersistenceHandler.verifyPersistence now accepts optional actualRecord parameter
|
|
191
|
+
- Verification results surfaced in UpdateMetadata.fieldVerification (verified status + discrepancies)
|
|
192
|
+
- Renamed ValidationResult → UpdateMetadata for clarity (3 competing interfaces reduced to distinct purposes)
|
|
193
|
+
|
|
194
|
+
- **Standardized environment variables** (#984 extension) - Consistent verification configuration
|
|
195
|
+
- UpdateValidation now uses ENABLE_FIELD_VERIFICATION (deprecated SKIP_FIELD_VERIFICATION)
|
|
196
|
+
- Both variables supported for backward compatibility with deprecation notice
|
|
197
|
+
|
|
198
|
+
- **Improved MetadataResolver error handling** (#984 extension - PR #1006 review feedback)
|
|
199
|
+
- Re-throws critical authentication errors (401, 403, Unauthorized, Forbidden)
|
|
200
|
+
- Re-throws schema validation errors for immediate failure visibility
|
|
201
|
+
- Graceful degradation with empty metadata for non-critical transient errors
|
|
202
|
+
- Prevents silent masking of authentication and validation failures
|
|
203
|
+
|
|
204
|
+
- **Consolidated metadata fetching** (#984) - Single API call per resource type per request
|
|
205
|
+
- MetadataResolver provides single source of truth for attribute metadata
|
|
206
|
+
- Value transformer receives metadata via context to avoid duplicate fetch
|
|
207
|
+
- Reduces API calls and improves performance
|
|
208
|
+
|
|
209
|
+
- **Extended display name resolution** (#984) - User-friendly field names now work in create/update operations
|
|
210
|
+
- Can use "Deal stage" instead of "stage" in all operations (not just attribute_options)
|
|
211
|
+
- FieldValidationHandler automatically resolves display names before validation
|
|
212
|
+
- Integrated into both UniversalCreateService and UniversalUpdateService
|
|
213
|
+
|
|
214
|
+
- **Added TTL to metadata caches** (#984) - All metadata caches now expire after 5 minutes
|
|
215
|
+
- Value transformer migrated to CachingService with DEFAULT_ATTRIBUTES_CACHE_TTL
|
|
216
|
+
- Status transformer uses timestamp-based expiration with lazy eviction
|
|
217
|
+
- Prevents stale data while maintaining performance benefits
|
|
218
|
+
|
|
219
|
+
- **Enhanced attribute error messages** (#975) - Better guidance when API requests fail
|
|
220
|
+
- Levenshtein distance suggestions for misspelled attribute names (threshold ≤3 edits)
|
|
221
|
+
- Field alias mapping converts common mistakes automatically (`linkedin_url` → `linkedin`)
|
|
222
|
+
- Select/status errors now show valid workspace-specific options
|
|
223
|
+
- Error messages include `records_discover_attributes` hint for discovery
|
|
224
|
+
|
|
225
|
+
- **Expanded valid field lists** (#975) - Validators now accept more standard Attio attributes
|
|
226
|
+
- Companies: `team_size`, `founded_at`, `headquarters`, `crunchbase`, `instagram`, `angellist`, etc.
|
|
227
|
+
- People: `primary_email_address`, `primary_phone_number`, `avatar_url`, `timezone`, `instagram`, etc.
|
|
228
|
+
|
|
229
|
+
- **Location field auto-normalization** (#987) - Incomplete location objects now auto-fill missing fields
|
|
230
|
+
- Attio requires all 10 location fields (`line_1`-`line_4`, `locality`, `region`, `postcode`, `country_code`, `latitude`, `longitude`) even if null
|
|
231
|
+
- Transformer auto-fills missing fields with `null` to prevent validation errors
|
|
232
|
+
- Common aliases supported: `street`→`line_1`, `city`→`locality`, `state`→`region`, `zip`→`postcode`, `lat`→`latitude`
|
|
233
|
+
|
|
234
|
+
### Fixed
|
|
235
|
+
|
|
236
|
+
- **Claude PR review dynamic import detection** (#1002) - Ring 1 scope now includes dynamically imported modules
|
|
237
|
+
- Fixes false positive "missing dependency" errors when PR files use `await import('@/...')` or `await import('./...')`
|
|
238
|
+
- Adds prompt hardening to prevent "missing file" claims from sparse checkout limitations
|
|
239
|
+
- Pre-computes alias resolutions from full repo and passes them to Claude
|
|
240
|
+
|
|
241
|
+
- **Complex attribute validation** (#991) - clearer validation and error messages for location, personal-name, and phone-number fields
|
|
242
|
+
- Pre-validates complex types with actionable errors and examples before Attio API calls
|
|
243
|
+
- Auto-fills missing location fields with nulls; enforces phone_number/original_phone_number and non-empty names
|
|
244
|
+
- Enhanced CRUD error handling surfaces Attio validation_errors and select/status option hints
|
|
245
|
+
|
|
246
|
+
- **Record-reference fields now auto-format** (#997) - Automatic transformation to Attio's required format
|
|
247
|
+
- String IDs like `company: "uuid"` are auto-converted to `[{target_object: "companies", target_record_id: "uuid"}]`
|
|
248
|
+
- Fixes 400 errors when linking people to companies or associating people with deals
|
|
249
|
+
- Supports legacy formats: `{record_id: "uuid"}`, `{id: "uuid"}`, incomplete objects
|
|
250
|
+
- Target object inferred from field name (`company`→`companies`, `associated_people`→`people`)
|
|
251
|
+
|
|
252
|
+
- **Multi-select fields now accept single values** (#992) - Automatic array wrapping for multi-select attributes
|
|
253
|
+
- Single values like `lead_type: "Inbound"` are now auto-converted to `["Inbound"]`
|
|
254
|
+
- Works for all custom multi-select fields (e.g., `categories`, `inbound_outbound`, `regions`)
|
|
255
|
+
- Fixes "Multi-select attribute expects an array" errors when using natural input format
|
|
256
|
+
- Detects multi-select via Attio's `is_multiselect` flag (not just type name)
|
|
257
|
+
|
|
258
|
+
- **`records_get_attribute_options` now returns status options** (#987) - Fixed empty results for status attributes
|
|
259
|
+
- Select endpoint returning empty `[]` now falls back to status endpoint
|
|
260
|
+
- `deals.stage` and similar status attributes now return correct options
|
|
261
|
+
- `attributeType` correctly identifies `'status'` vs `'select'` based on successful endpoint
|
|
262
|
+
- Error messages include both select and status error details when both fail
|
|
263
|
+
|
|
264
|
+
- **Company location updates now work correctly** (#987) - Fixed "Expected an object, but got string" error
|
|
265
|
+
- `processFieldValue` now preserves object-type fields (like `primary_location`) instead of converting to `[object Object]`
|
|
266
|
+
- `formatAttributeValue` normalizes location objects with all 10 required Attio fields (nulls where missing)
|
|
267
|
+
- Both company-specific (`updateCompany`) and universal (`update-record`) flows now work
|
|
268
|
+
|
|
269
|
+
- **PR review workflow path alias detection** (#977) - Fixed false positive "missing file" errors
|
|
270
|
+
- Ring scope generator now detects `@/...` path alias imports (not just relative imports)
|
|
271
|
+
- Resolves `@/services/utils/foo.js` to `src/services/utils/foo.ts` for Ring 1 inclusion
|
|
272
|
+
|
|
273
|
+
### Security
|
|
274
|
+
|
|
275
|
+
### Deprecated
|
|
276
|
+
|
|
277
|
+
## [1.3.6] - 2025-12-03
|
|
278
|
+
|
|
279
|
+
Documentation and testing infrastructure improvements for remote deployment support.
|
|
280
|
+
|
|
281
|
+
### Added
|
|
282
|
+
|
|
283
|
+
- **Install Script Test Suite** (#958) - Automated testing for bash install scripts
|
|
284
|
+
- Tests for `install-claude-desktop.sh`, `install-cursor.sh`, `install-claude-code.sh`
|
|
285
|
+
- Validates API key sanitization, config merging, prerequisite checks
|
|
286
|
+
- Security tests for command injection prevention
|
|
287
|
+
- Uses Vitest + Node.js child_process for bash function testing
|
|
288
|
+
|
|
289
|
+
- **E2E Remote Mode Troubleshooting Guide** (#958) - Remote-specific debugging documentation
|
|
290
|
+
- Smithery deployment troubleshooting (scanner, OAuth, session issues)
|
|
291
|
+
- Cloudflare Worker debugging (Error 1042, KV namespace, token encryption)
|
|
292
|
+
- Network debugging tools and commands (`wrangler tail`, curl examples)
|
|
293
|
+
- Local vs remote comparison table for common issues
|
|
294
|
+
|
|
295
|
+
### Changed
|
|
296
|
+
|
|
297
|
+
- **Remote Deployment Production Checklist** (#958) - Expanded from 12 to 28+ items
|
|
298
|
+
- Added Cloudflare Worker-specific checklist with validation commands
|
|
299
|
+
- Added Smithery-specific validation steps
|
|
300
|
+
- Added rollback procedures for all deployment types
|
|
301
|
+
- Added health check monitoring setup examples (Datadog, UptimeRobot, Prometheus)
|
|
302
|
+
|
|
303
|
+
## [1.3.5] - 2025-12-02
|
|
304
|
+
|
|
305
|
+
**Self-host your own remote MCP server** - Use Attio from Claude.ai, ChatGPT, or any remote MCP client without relying on third-party platforms.
|
|
306
|
+
|
|
307
|
+
This release addresses [Issue #928](https://github.com/kesslerio/attio-mcp-server/issues/928) by providing a **free, self-hosted alternative to Smithery** for remote OAuth MCP deployment. Deploy once to Cloudflare Workers (free tier) and access your Attio data from anywhere.
|
|
308
|
+
|
|
309
|
+
### Why This Matters
|
|
310
|
+
|
|
311
|
+
- **No third-party dependencies** - Your credentials stay on infrastructure you control
|
|
312
|
+
- **Works with any remote MCP client** - Claude.ai, ChatGPT, custom integrations
|
|
313
|
+
- **Completely free** - Cloudflare Workers free tier is more than sufficient
|
|
314
|
+
- **Global edge deployment** - Low latency from anywhere in the world
|
|
315
|
+
|
|
316
|
+
### Added
|
|
317
|
+
|
|
318
|
+
- **Self-hosted Remote MCP Server** ([docs](https://github.com/kesslerio/attio-mcp-server/tree/main/examples/cloudflare-mcp-server))
|
|
319
|
+
- Full MCP protocol over HTTP - all 40+ Attio tools work remotely
|
|
320
|
+
- OAuth 2.1 with PKCE for secure authentication
|
|
321
|
+
- Encrypted token storage in Cloudflare Workers KV
|
|
322
|
+
- Dynamic client registration for Claude.ai and ChatGPT
|
|
323
|
+
- One-time deploy, works forever
|
|
324
|
+
|
|
325
|
+
- **`@attio-mcp/core` package** - Edge-compatible core library for custom deployments
|
|
326
|
+
|
|
327
|
+
### Security
|
|
328
|
+
|
|
329
|
+
- **OAuth security hardening**
|
|
330
|
+
- Exact hostname validation prevents redirect attacks
|
|
331
|
+
- One-time authorization codes (deleted after use)
|
|
332
|
+
- Session token separation from auth codes
|
|
333
|
+
|
|
334
|
+
## [1.3.0] - 2025-12-02
|
|
335
|
+
|
|
336
|
+
OAuth access token support - enables delegated authentication for third-party integrations and Claude Desktop users who prefer OAuth over API keys.
|
|
337
|
+
|
|
338
|
+
### Added
|
|
339
|
+
|
|
340
|
+
- **OAuth access token support** (#928) - New `ATTIO_ACCESS_TOKEN` environment variable as alternative to `ATTIO_API_KEY`
|
|
341
|
+
- Both authentication methods use identical Bearer token auth under the hood
|
|
342
|
+
- Resolution order: `ATTIO_API_KEY` (config) → `ATTIO_ACCESS_TOKEN` (config) → `ATTIO_API_KEY` (env) → `ATTIO_ACCESS_TOKEN` (env)
|
|
343
|
+
|
|
344
|
+
- **Local OAuth helper script** (#928) - Interactive PKCE flow for obtaining tokens without hosted infrastructure
|
|
345
|
+
- Run `npm run oauth:setup` to complete OAuth authorization flow
|
|
346
|
+
- Run `npm run oauth:refresh` to refresh expired tokens
|
|
347
|
+
- Tokens saved to `.env.local` for easy configuration
|
|
348
|
+
|
|
349
|
+
- **Cloudflare Worker OAuth template** (#928) - Self-hostable OAuth broker for teams
|
|
350
|
+
- Full OAuth 2.1 + PKCE implementation at `examples/cloudflare-mcp-server/`
|
|
351
|
+
- OAuth discovery endpoint, CORS support for Claude.ai
|
|
352
|
+
- Deploy with `wrangler deploy`
|
|
353
|
+
|
|
354
|
+
- **OAuth documentation** (#928) - Comprehensive guide at `docs/guides/oauth-authentication.md`
|
|
355
|
+
- Step-by-step OAuth app creation at build.attio.com
|
|
356
|
+
- Token lifecycle and refresh guidance
|
|
357
|
+
- Claude Desktop and Smithery configuration examples
|
|
358
|
+
|
|
359
|
+
### Changed
|
|
360
|
+
|
|
361
|
+
- **Improved 401 error messages** (#928) - Now includes OAuth-specific guidance for token expiration
|
|
362
|
+
|
|
363
|
+
## [1.2.2] - 2025-12-01
|
|
364
|
+
|
|
365
|
+
### Fixed
|
|
366
|
+
|
|
367
|
+
- **Critical: Added axios to production dependencies** (#917, #919) - Package failed on startup with `ERR_MODULE_NOT_FOUND` because axios was incorrectly placed in devDependencies instead of dependencies. This caused 100% failure rate for all users installing via npm.
|
|
368
|
+
|
|
369
|
+
- **CLI binary symlink resolution** (#916, #920) - `attio-mcp --help` and `--version` now work correctly when installed via npm global. The `isMain` check now resolves symlinks before path comparison, handling npm's symlink-based binary wrappers.
|
|
370
|
+
|
|
371
|
+
## [1.2.1] - 2025-11-28
|
|
372
|
+
|
|
373
|
+
### Changed
|
|
374
|
+
|
|
375
|
+
- **Clarified npm package name confusion** (#903) - Updated all documentation to clearly indicate correct package name
|
|
376
|
+
- **Problem**: GitHub repository is named `attio-mcp-server`, but npm package is named `attio-mcp` (renamed in June 2025)
|
|
377
|
+
- **Old package**: `attio-mcp-server@0.0.2` (abandoned, February 2025) - only 4 legacy tools
|
|
378
|
+
- **Current package**: `attio-mcp@1.2.0` (actively maintained) - 34 universal tools
|
|
379
|
+
- **Impact**: Users installing `npm install attio-mcp-server` got outdated v0.0.2 instead of current v1.2.0
|
|
380
|
+
- **Solution**: Added prominent warnings in README and documentation about correct package name
|
|
381
|
+
- **Note**: Old package owned by different npm user, cannot be deprecated by maintainers
|
|
382
|
+
- **Result**: Clear installation instructions prevent users from installing wrong package
|
|
383
|
+
|
|
384
|
+
## [1.2.0] - 2025-11-03
|
|
385
|
+
|
|
386
|
+
This release introduces intelligent workspace member auto-resolution for actor-reference filtering, enabling natural filtering syntax with emails and names instead of requiring manual UUID lookups. The update includes critical fixes for filter transformation, client initialization, and exact matching behavior.
|
|
387
|
+
|
|
388
|
+
### Breaking Changes
|
|
389
|
+
|
|
390
|
+
- **Array equals operator rejected for reference attributes** (#904 Phase 2) - Arrays with `equals` operator (e.g., `{owner: {$eq: ["uuid1", "uuid2"]}}`) now throw `FilterValidationError`. This addresses PR feedback [HIGH] issue where translator allowed arrays to pass through generating invalid `$eq: [...]` structure. Use 'in' operator instead (coming soon) or filter by single value.
|
|
391
|
+
|
|
392
|
+
- **Mixed-type arrays rejected in reference filters** (#904) - Arrays combining UUIDs and names (e.g., `["uuid-123", "John Doe"]`) now throw `FilterValidationError`. This prevents silent failures where UUIDs would never match when using the `name` field. Use separate filters or ensure all array elements are the same type.
|
|
393
|
+
|
|
394
|
+
### Added
|
|
395
|
+
|
|
396
|
+
- **Auto-resolution of workspace member emails/names to UUIDs** (#904 Phase 2) - Owner/assignee filters now transparently convert email addresses and names to workspace member UUIDs
|
|
397
|
+
- **Problem**: Attio API requires workspace member UUIDs for actor-reference filters, but users naturally want to filter by email or name
|
|
398
|
+
- **Solution**: Automatically resolve email/name values to UUIDs via workspace members search API before building filter structure
|
|
399
|
+
- **User Experience**:
|
|
400
|
+
- **BEFORE**: User must manually search workspace members by email, extract UUID, then use UUID in filter
|
|
401
|
+
- **AFTER**: User filters by email/name directly (e.g., `owner="martin@shapescale.com"` or `owner="Martin Kessler"`), auto-resolved to UUID transparently
|
|
402
|
+
- **Input Flexibility**:
|
|
403
|
+
- **User Input**: Accepts UUID, email address, or full name
|
|
404
|
+
- **API Payload**: Always uses `referenced_actor_id` (workspace member UUID) after resolution
|
|
405
|
+
- **Examples**: `owner="uuid-123"` OR `owner="martin@shapescale.com"` OR `owner="Martin Kessler"` all work
|
|
406
|
+
- **Features**:
|
|
407
|
+
- Per-request caching prevents duplicate API calls for same email/name within single filter transformation
|
|
408
|
+
- Exact matching: Post-filters Attio's fuzzy search results to ensure exact email/name matches only
|
|
409
|
+
- Clear error messages when member not found or multiple matches (with member list)
|
|
410
|
+
- Works in both AND and OR filter logic, and with/without resourceType (slug-based fallback)
|
|
411
|
+
- Comprehensive unit test coverage (14 resolver tests + 7 integration tests)
|
|
412
|
+
- **Result**: Natural filtering syntax like `owner="martin@shapescale.com"` or `owner="Martin Kessler"` just works, no manual UUID lookup required
|
|
413
|
+
|
|
414
|
+
- **Deal filtering documentation** (#904) - Enhanced `records_search` tool discoverability with deal-specific examples
|
|
415
|
+
- Added "deals" to `records_search` tool description (was missing from capability list)
|
|
416
|
+
- Documented `filters` parameter structure with format examples and deal-specific use cases
|
|
417
|
+
- Added schema examples for filtering deals by stage, owner, and value (single and multi-condition)
|
|
418
|
+
- Improves LLM's ability to discover and correctly use deal filtering capabilities
|
|
419
|
+
|
|
420
|
+
### Changed
|
|
421
|
+
|
|
422
|
+
### Fixed
|
|
423
|
+
|
|
424
|
+
- **Auto-resolution: Exact email and name matching** (#904 Phase 2) - Fixed auto-resolver returning "ambiguous match" errors for exact email/name searches
|
|
425
|
+
- **Problem**: Attio `/workspace_members?search=` API does fuzzy matching, returning all members from same domain or with similar names
|
|
426
|
+
- Email search: `martin@shapescale.com` returned all 5 `@shapescale.com` members
|
|
427
|
+
- Name search: `Martin Kessler` returned all 5 workspace members (extreme fuzzy matching)
|
|
428
|
+
- **Impact**: Auto-resolution threw "Ambiguous workspace member" errors even for exact email addresses and unique names
|
|
429
|
+
- **Solution**: Added post-filtering logic to extract exact matches from fuzzy search results
|
|
430
|
+
- Email filtering: Exact case-insensitive email match (e.g., `martin@shapescale.com`)
|
|
431
|
+
- Name filtering: Exact case-insensitive full name match constructed from `first_name + last_name` (e.g., `Martin Kessler`)
|
|
432
|
+
- **Result**: `owner="martin@shapescale.com"` and `owner="Martin Kessler"` now correctly resolve to single member, not ambiguous match error
|
|
433
|
+
- Added unit tests covering both email and name fuzzy result filtering scenarios
|
|
434
|
+
|
|
435
|
+
- **Client initialization validation failures** (#904 Phase 2) - Eliminated repeated client validation errors in logs
|
|
436
|
+
- **Problem**: `resolveAttioClient()` attempted `createAttioClient(apiKey)` first, which failed `assertAxiosInstance` validation, then fell back to `getAttioClient()` which succeeded
|
|
437
|
+
- **Impact**: Repeated errors in logs (`createAttioClient failed: returned invalid Axios client instance`) despite API calls working correctly via cached client fallback
|
|
438
|
+
- **Solution**: Reordered resolution priority to use `getAttioClient()` first (proven code path handling caching, environment detection, and strategy pattern)
|
|
439
|
+
- **Result**: Clean logs with no validation failures, immediate success on first attempt, uses battle-tested code path from rest of codebase
|
|
440
|
+
|
|
441
|
+
- **Critical: Filter transformation bug** (#904) - Fixed `condition: "equals"` incorrectly mapping to `$equals` instead of Attio's required `$eq` operator
|
|
442
|
+
- **Problem**: Filter transformer converted `equals` condition to `$equals` operator, but Attio API requires `$eq` (verified in search.ts:189-191)
|
|
443
|
+
- **Impact**: ALL resource types affected (companies, people, deals, tasks, records) - filtering with `equals` condition failed with "Invalid operator: $equals" error
|
|
444
|
+
- **Solution**: Updated 3 locations in `src/utils/filters/translators.ts` (lines 382, 400, 499) to generate `$eq` instead of `$equals`
|
|
445
|
+
- **Result**: Filtering now works correctly for all resource types with `equals` condition
|
|
446
|
+
- Updated test suites to expect correct `$eq` operator
|
|
447
|
+
- **CRITICAL FIX: Actor-reference filtering** (#904 Phase 2) - Fixed actor-reference attributes to use correct Attio API filter structure
|
|
448
|
+
- **Production Issue**: API rejected all filters for actor-reference attributes (owner, assignee, created_by, modified_by):
|
|
449
|
+
- `{"owner": {"name": {"$eq": "..."}}}` → "Invalid field 'name' for attribute of type 'actor-reference'"
|
|
450
|
+
- `{"owner": {"email": {"$eq": "..."}}}` → "Invalid field 'email' for attribute of type 'actor-reference'"
|
|
451
|
+
- `{"owner": {"record_id": {"$eq": "..."}}}` → "Invalid field 'record_id' for attribute of type 'actor-reference'"
|
|
452
|
+
- **Root Cause**: Actor-reference attributes require a completely different filter structure per Attio API documentation
|
|
453
|
+
- **Impact**: ALL filtering by owner, assignee, created_by, modified_by was completely broken
|
|
454
|
+
- **Solution** (discovered via Context7 API documentation search):
|
|
455
|
+
- Actor-reference attributes use direct property matching, not operator nesting
|
|
456
|
+
- **API Payload Structure**: `{owner: {referenced_actor_type: "workspace-member", referenced_actor_id: "uuid"}}`
|
|
457
|
+
- **NOT**: `{owner: {name: {$eq: "..."}}}` or `{owner: {email: {$eq: "..."}}}` or `{owner: {record_id: {$eq: "..."}}}`
|
|
458
|
+
- Updated filter translator to detect actor-reference types and build special structure (3 locations in translators.ts)
|
|
459
|
+
- Applied to both AND and OR logic, and list-entry contexts
|
|
460
|
+
- **User Input Flexibility** (with auto-resolution): Users can provide UUID, email address, or full name - all are automatically resolved to workspace member UUID before building API payload
|
|
461
|
+
- Added `assignee_id` to KNOWN_REFERENCE_SLUGS for proper detection without resourceType
|
|
462
|
+
- Updated 22 unit tests to expect correct actor-reference structure
|
|
463
|
+
- **Slug-based Fallback Behavior** (when resourceType unavailable):
|
|
464
|
+
- `assignee_id` and `workspace_member` slugs always require email field (workspace-member type)
|
|
465
|
+
- Other reference slugs (owner, assignee, company, person) use heuristic detection: UUID → record_id, otherwise → name
|
|
466
|
+
- Cannot detect actor-reference type without resourceType, so uses standard nested structure
|
|
467
|
+
- **Result**:
|
|
468
|
+
- **User Input**: `owner="Martin Kessler"` OR `owner="martin@shapescale.com"` OR `owner="uuid-123"`
|
|
469
|
+
- **API Payload**: `{"owner": {"referenced_actor_type": "workspace-member", "referenced_actor_id": "d28a35f1-..."}}` → ✅ SUCCESS
|
|
470
|
+
- E2E test passed 100% (TC-AO03)
|
|
471
|
+
- All 147 filter tests passing (no regressions)
|
|
472
|
+
- Enhanced error messages to guide users when invalid value types provided
|
|
473
|
+
|
|
474
|
+
### Security
|
|
475
|
+
|
|
476
|
+
### Deprecated
|
|
477
|
+
|
|
478
|
+
## [1.1.10] - 2025-10-23
|
|
479
|
+
|
|
480
|
+
### Fixed
|
|
481
|
+
|
|
482
|
+
- **Release pipeline wireit configuration** (#898) - Fixed build configuration blocking NPM releases
|
|
483
|
+
- **Problem**: `lint:tools` script used direct command instead of wireit, causing Release Pipeline validation failures
|
|
484
|
+
- **Solution**: Updated package.json to use `"lint:tools": "wireit"` as required by wireit configuration
|
|
485
|
+
- **Result**: Release Pipeline can now complete successfully and publish to NPM
|
|
486
|
+
- **Person creation now supports optional email addresses** (#895) - Removed unnecessary validation requiring `email_addresses` for person records
|
|
487
|
+
- **Problem**: MCP server enforced `email_addresses` as required when Attio API only requires `name`
|
|
488
|
+
- **Solution**: Updated `PersonCreator` to validate only `name` field (actual API requirement)
|
|
489
|
+
- **Result**: Users can now create person records without email addresses (e.g., contacts without digital presence)
|
|
490
|
+
- Updated data normalizer to handle cases where neither name nor email is provided
|
|
491
|
+
- Added comprehensive unit tests for person creation without email
|
|
492
|
+
- Updated E2E fixtures to include truly minimal person (name only)
|
|
493
|
+
- Modified `PersonMockFactory` to support optional email addresses
|
|
494
|
+
|
|
495
|
+
## [1.1.2] - 2025-10-08
|
|
496
|
+
|
|
497
|
+
### Fixed
|
|
498
|
+
|
|
499
|
+
- **Multi-token search query logic** - Fixed fallback search to require ALL tokens in multi-word queries instead of ANY token
|
|
500
|
+
- **Problem**: Multi-word searches (e.g., "Alpha Beta Company") returned 100+ records matching ANY token ("Alpha" OR "Beta" OR "Company"), pushing exact matches out of results
|
|
501
|
+
- **Solution**: Multi-token queries now use AND-of-OR structure - each token must match somewhere (in name OR domains), but all tokens must match (cross-field flexibility with precision)
|
|
502
|
+
- **Result**: Multi-word name searches now return exact matches in top results instead of being buried at position #101+
|
|
503
|
+
- Single-token queries unchanged (still use simple `$contains`)
|
|
504
|
+
- This improves precision for company/people searches with multi-word names
|
|
505
|
+
- **records_search relevance** (#885) - Added client-side scoring with uFuzzy and LRU caching so exact domain/name/email matches rank first while repeated queries stay within the 3 s budget
|
|
506
|
+
- **Deal search fast path optimization** (#885) - Extended fast path optimization to deals with 72-80% performance improvement
|
|
507
|
+
- Sequential candidate execution: exact match ($eq) → substring match ($contains)
|
|
508
|
+
- LRU caching with 5-minute TTL delivers 8ms cached responses (99.9% faster than ~2.8s cold searches)
|
|
509
|
+
- Created `DealSearchStrategy` following same pattern as companies/people
|
|
510
|
+
- Removed obsolete `searchDeals()` and `queryDealRecords()` methods (100+ lines)
|
|
511
|
+
- Fixed original bug where deals only supported exact name matches
|
|
512
|
+
- **Notes search functionality - Partial fix with API limitation** (#888)
|
|
513
|
+
- Created `NoteSearchStrategy` following established search strategy pattern
|
|
514
|
+
- **API Limitation Discovered**: Attio Notes API `/v2/notes` endpoint returns empty array when called without filters
|
|
515
|
+
- Confirmed via direct API testing: `GET /v2/notes` returns `{"data": []}`
|
|
516
|
+
- API requires `parent_object` and/or `parent_record_id` filters to return notes
|
|
517
|
+
- This prevents searching across all notes in a workspace
|
|
518
|
+
- **What Works**: `list-notes` tool with parent record filtering (e.g., list all notes on a specific company)
|
|
519
|
+
- **What Doesn't Work**: Global note search without parent filters (e.g., "find all notes containing 'demo'")
|
|
520
|
+
- **Workaround**: Use `list-notes` with explicit parent filters to search within a specific record's notes
|
|
521
|
+
- Implemented client-side filtering for title/content when parent filters are provided
|
|
522
|
+
- Added smart caching (30s TTL) with parent-aware cache keys to prevent cross-contamination
|
|
523
|
+
- Removed obsolete `searchNotes()` fallback method (85 lines)
|
|
524
|
+
- **Recommendation**: Request Attio to add workspace-wide notes endpoint or search capability
|
|
525
|
+
|
|
526
|
+
## [1.1.0] - 2025-10-06
|
|
527
|
+
|
|
528
|
+
This release enhances developer experience with intelligent prompts, comprehensive tool standardization, and strengthens enterprise readiness with security hardening and validation improvements.
|
|
529
|
+
|
|
530
|
+
### Added
|
|
531
|
+
|
|
532
|
+
- **10 Pre-Built MCP Prompts for Common CRM Tasks** (#774) - Intelligent shortcuts that help Claude work faster and more efficiently with your Attio data
|
|
533
|
+
- **Search & Find** (5 prompts): `people_search.v1`, `company_search.v1`, `deal_search.v1`, `meeting_prep.v1`, `pipeline_health.v1`
|
|
534
|
+
- Natural language search with automatic formatting (table, JSON, or IDs)
|
|
535
|
+
- Meeting preparation summaries with recent activity context
|
|
536
|
+
- Pipeline analysis with bottleneck detection and conversion metrics
|
|
537
|
+
- **Take Actions** (4 prompts): `log_activity.v1`, `create_task.v1`, `advance_deal.v1`, `add_to_list.v1`
|
|
538
|
+
- Dry-run mode for safe preview before executing changes
|
|
539
|
+
- Consistent formatting across all write operations
|
|
540
|
+
- **Research & Qualify** (1 prompt): `qualify_lead.v1`
|
|
541
|
+
- Automated web research with BANT/CHAMP qualification frameworks
|
|
542
|
+
- Lead scoring and actionable recommendations
|
|
543
|
+
- **Key Features**:
|
|
544
|
+
- Token-efficient design (300-700 tokens per prompt)
|
|
545
|
+
- Server-side validation with helpful error messages
|
|
546
|
+
- Discoverable by Claude for smart suggestions
|
|
547
|
+
- Universal arguments for consistent behavior (format, fields_preset, verbosity)
|
|
548
|
+
- Optional telemetry and dev metadata modes for monitoring
|
|
549
|
+
- **Comprehensive Tool Standardization** (#776) - Complete audit and optimization of all 33 MCP tools
|
|
550
|
+
- **Phase 0+1** (PR #785): Infrastructure and core universal tools
|
|
551
|
+
- Fixed critical MCP naming compliance (`records.search` → `records_search`) across 89 files
|
|
552
|
+
- Created `formatToolDescription` template for consistent tool documentation
|
|
553
|
+
- Built schema linter with 300-character description limit and quality checks
|
|
554
|
+
- Token baseline established: 188 tokens/tool (60% better than industry average)
|
|
555
|
+
- Standardized 19 universal tools (search, create, update, delete, get-details, etc.)
|
|
556
|
+
- **Phase 2** (PR #792): List and note tools
|
|
557
|
+
- Standardized 11 list management tools with consistent patterns
|
|
558
|
+
- Standardized 2 note operation tools (create-note, list-notes)
|
|
559
|
+
- Added `additionalProperties: false` to all schemas for strict validation
|
|
560
|
+
- Enhanced with property-level examples throughout
|
|
561
|
+
- **Phase 3** (PR #796): Workspace member tools
|
|
562
|
+
- Standardized final 3 tools (list/search/get workspace members)
|
|
563
|
+
- Completed tool discovery snapshot baseline for regression prevention
|
|
564
|
+
- **Quality Improvements**:
|
|
565
|
+
- All tools follow verb-first naming with clear boundaries
|
|
566
|
+
- Enhanced JSON schemas with proper validation and examples
|
|
567
|
+
- Token-efficient descriptions optimized for LLM routing
|
|
568
|
+
- Automated quality gates prevent future regressions
|
|
569
|
+
- **Markdown Note Support** (#854, #862) - `create-note` tool now supports markdown formatting via optional `format` parameter ('plaintext' | 'markdown')
|
|
570
|
+
- Rich formatted notes with headers, lists, and emphasis
|
|
571
|
+
- Backward compatible with default plaintext format
|
|
572
|
+
- Full E2E test coverage for markdown creation
|
|
573
|
+
- **Enhanced Phone Validation** (#837, #863) - Structured validation with libphonenumber-js integration
|
|
574
|
+
- Central validation helpers (`validatePhoneNumber`, `isValidPhoneNumber`, `isPossiblePhoneNumber`)
|
|
575
|
+
- Actionable `PhoneValidationError` metadata with length/country/format guidance
|
|
576
|
+
- CLI auto-configures `libphonenumber-js` to use `min` metadata bundle
|
|
577
|
+
- Server runtime exposes `PHONE_METADATA_SOURCE` for diagnostics
|
|
578
|
+
- Phone normalization failures include aggregated issue counts and newline-delimited details
|
|
579
|
+
- **Intelligent Search Query Parsing** (#781) - Enhanced search capabilities for people and company resources
|
|
580
|
+
- International phone format support with multi-level domain extraction
|
|
581
|
+
- Consistent empty-filter handling across search strategies
|
|
582
|
+
- Stopword filtering and large query input protection
|
|
583
|
+
- **Phone Number UX Improvements** (#798) - Comprehensive enhancements for phone number handling
|
|
584
|
+
- Inline tool help with phone format examples and E.164 normalization guidance
|
|
585
|
+
- Common update patterns documentation (`docs/examples/common-update-patterns.md`)
|
|
586
|
+
- Field verification configuration guide (`docs/configuration/field-verification.md`)
|
|
587
|
+
- Enhanced error messages for phone number validation with format examples
|
|
588
|
+
- Pre-update field validation with automatic normalization
|
|
589
|
+
- Debug documentation for anonymized production placeholders used in diagnostic suites
|
|
590
|
+
|
|
591
|
+
### Changed
|
|
592
|
+
|
|
593
|
+
- **Phone Number Normalization** (#798, #837) - Automatic transformation from user-friendly `phone_number` to Attio's `original_phone_number` format
|
|
594
|
+
- Additional fields (label, type, extension, is_primary) preserved during normalization
|
|
595
|
+
- `AttributeAwareNormalizer` now rejects invalid phone inputs with `UniversalValidationError`
|
|
596
|
+
- Precise length/country/format guidance instead of silent pass-through
|
|
597
|
+
- **Warning Suppression** (#798) - Update verification now filters out cosmetic formatting differences (e.g., `"Demo"` vs `Demo`)
|
|
598
|
+
- **Search Query Parsing** (#781) - Updated `parseQuery` to support international phone formats and robust multi-level domain extraction
|
|
599
|
+
- Enhanced people/company search strategies leverage parsed tokens and phone variants
|
|
600
|
+
- Swapped unit test fixtures/docs to anonymized examples (Alex Rivera / Example Medical Group / +1 555 010 4477)
|
|
601
|
+
|
|
602
|
+
### Fixed
|
|
603
|
+
|
|
604
|
+
- **Query Builder Issues** (#781) - Eliminated redundant `$or` filters and US-only phone assumptions in query filter builders
|
|
605
|
+
- **Token Processing** (#781) - Hardened token processing to ignore stopwords and guard against large query inputs
|
|
606
|
+
- **Phone Number Field Confusion** (#798) - Users can now use `phone_number` (user-friendly) which auto-converts to `original_phone_number` (Attio API format)
|
|
607
|
+
|
|
608
|
+
### Security
|
|
609
|
+
|
|
610
|
+
- **XSS Prevention** (#840, #841, #845) - Comprehensive protection against reflected XSS attacks
|
|
611
|
+
- Replaced regex-based HTML sanitization with `sanitize-html` library (CodeQL alert #121)
|
|
612
|
+
- URL scheme filtering (javascript:, data:, vbscript:, file:)
|
|
613
|
+
- Hardened prompt handlers against XSS injection
|
|
614
|
+
- Security test suite with 11 test cases covering XSS, protocol injection, double-encoding, and edge cases
|
|
615
|
+
- **Stack Trace Protection** (#841, #844) - Enhanced error handling to prevent sensitive information exposure
|
|
616
|
+
- Stack traces no longer exposed in client-facing errors
|
|
617
|
+
- File paths and system information sanitized
|
|
618
|
+
- Correlation IDs for debugging without exposing internals
|
|
619
|
+
- **Enhanced Error Context** (#844) - Safe metadata enrichment without information leakage
|
|
620
|
+
- Field type metadata preserved in error responses
|
|
621
|
+
- Network information (localhost, ports, connection strings) sanitized
|
|
622
|
+
- Error type consistency across all response formats
|
|
623
|
+
|
|
624
|
+
## [1.0.0] - 2025-09-27
|
|
625
|
+
|
|
626
|
+
🎉 **MAJOR RELEASE** - Complete Attio CRM Coverage + ChatGPT Integration
|
|
627
|
+
|
|
628
|
+
This milestone release transforms the MCP server from partial Attio coverage to **complete CRM surface spanning**. Users can now manage their entire Attio workspace—Deals, Tasks, Lists, People, Companies, Records, and Notes—through natural language, without falling back to raw API calls.
|
|
629
|
+
|
|
630
|
+
### Added
|
|
631
|
+
|
|
632
|
+
- **Complete CRM Resource Coverage** - Full support for all Attio resource types including deals, lists, people, companies, tasks and notes (previously limited to companies/people/lists)
|
|
633
|
+
- **Advanced Relationship Navigation** - Walk complete pipeline hierarchies with bidirectional company↔person↔deal relationships (#747)
|
|
634
|
+
- **Intelligent Field Mapping** - Smart field validation with synonym handling (value/value_in_cents, company_id/associated_company) and typo suggestions
|
|
635
|
+
- **Multi-Assignee Task Support** (#684) - Enhanced task operations with richer metadata and assignment handling
|
|
636
|
+
- **Content Search Across Resources** (#474, #507, #573) - Universal search capabilities across notes, tasks, and lists
|
|
637
|
+
- **ChatGPT Developer Mode Integration** (#766) - Full Attio toolset access for ChatGPT Pro/Plus users via Smithery marketplace
|
|
638
|
+
- MCP safety annotations with built-in approval flows
|
|
639
|
+
- OAuth authentication via `https://server.smithery.ai/@kesslerio/attio-mcp-server/mcp`
|
|
640
|
+
- Natural language CRM management through conversational AI
|
|
641
|
+
- **Advanced Search & Filtering** (#475, #578) - Sophisticated query capabilities with pagination and timeframe support
|
|
642
|
+
- **List Management Parity** (#470, #499) - Lists now have feature parity with other Attio resources
|
|
643
|
+
|
|
644
|
+
### Changed
|
|
645
|
+
|
|
646
|
+
- **Services Architecture** - Complete rebuild with dedicated create/update/search/delete/metadata services for improved maintainability
|
|
647
|
+
- **Field Mapping System** (#529, #732, #483) - Rebuilt with deterministic normalization and intelligent field suggestions
|
|
648
|
+
- **Error Handling** (#413, #728, #732) - Context-aware error messages with field-specific guidance and typo suggestions
|
|
649
|
+
- **Test Infrastructure** - Comprehensive test pyramid with P0/P1/P2 suites covering all universal tool pathways
|
|
650
|
+
- **Performance** - 68% tool reduction (40+ → 14 universal tools) with 89.7% speed improvement in response handling
|
|
651
|
+
- **FormatResult Functions** - Guaranteed stable string output with zero environment branching for predictable behavior
|
|
652
|
+
|
|
653
|
+
### Fixed
|
|
654
|
+
|
|
655
|
+
- **Data Integrity** - Bidirectional relationship consistency validation with automatic repair
|
|
656
|
+
- **Field Validation** - Real-time detection of invalid field names with intelligent suggestions
|
|
657
|
+
- **Test Data Contamination** (#581, #587) - Enhanced test data filters preventing production workspace pollution
|
|
658
|
+
- **Cleanup Operations** - Automated scripts ensuring Attio workspaces stay clean after bulk operations
|
|
659
|
+
|
|
660
|
+
### Security
|
|
661
|
+
|
|
662
|
+
- **Prototype Pollution** (#751) - Fixed config loader vulnerability
|
|
663
|
+
- **Input Validation** (#752, #753) - Tightened LinkedIn and URL validation for secure data handling
|
|
664
|
+
- **Credential Protection** (#42 series) - CodeQL-driven log scrubbing to protect Attio API credentials
|
|
665
|
+
- **Injection Prevention** (#752, #753) - Enhanced input validation across all Attio operations
|
|
666
|
+
|
|
667
|
+
## [0.2.0] - 2025-08-04
|
|
668
|
+
|
|
669
|
+
This is a major release featuring the Universal Tool Consolidation, which dramatically simplifies the MCP interface by replacing 50+ resource-specific tools with a unified set of universal tools that work across all resource types.
|
|
670
|
+
|
|
671
|
+
### Added
|
|
672
|
+
|
|
673
|
+
#### Universal Tool System (#352, #358)
|
|
674
|
+
|
|
675
|
+
- **Universal Tools**: New consolidated tools that work across all resource types (companies, people, deals, tasks, records)
|
|
676
|
+
- `search-records`: Search any resource type with consistent interface
|
|
677
|
+
- `get-record-details`: Get details for any record type
|
|
678
|
+
- `create-record`: Create records of any type
|
|
679
|
+
- `update-record`: Update records of any type
|
|
680
|
+
- `delete-record`: Delete records of any type
|
|
681
|
+
- `discover-attributes`: Discover attributes for any resource type
|
|
682
|
+
- `get-detailed-info`: Get categorized information (basic, contact, business, social)
|
|
683
|
+
- **Advanced Operations**: New tools for complex operations
|
|
684
|
+
- `advanced-search`: Multi-attribute search with complex filters
|
|
685
|
+
- `search-by-relationship`: Find records by their relationships
|
|
686
|
+
- `search-by-content`: Search by notes or interaction content
|
|
687
|
+
- `search-by-timeframe`: Search by creation/update dates
|
|
688
|
+
- `batch-operations`: Perform bulk operations efficiently
|
|
689
|
+
- **Resource Type Support**: Full support for companies, people, deals, tasks, and generic records
|
|
690
|
+
- **Backwards Compatibility**: All existing tool names continue to work via intelligent routing
|
|
691
|
+
|
|
692
|
+
#### Enhanced Error Handling System (#362)
|
|
693
|
+
|
|
694
|
+
- Comprehensive error categorization (USER_ERROR, SYSTEM_ERROR, API_ERROR)
|
|
695
|
+
- Detailed error messages with examples and suggestions
|
|
696
|
+
- Field-specific guidance for common mistakes
|
|
697
|
+
- HTTP status code mapping for better API integration
|
|
698
|
+
- Structured error responses with actionable feedback
|
|
699
|
+
|
|
700
|
+
#### Deal Management Improvements
|
|
701
|
+
|
|
702
|
+
- Comprehensive deal field error messages for common mistakes (description, probability, source, close_date, tags, etc.)
|
|
703
|
+
- Deal field documentation showing available vs non-existent fields
|
|
704
|
+
- Currency handling guidance - Attio automatically formats currency based on workspace settings
|
|
705
|
+
- Field name conversions for backwards compatibility:
|
|
706
|
+
- `company_id` → `associated_company`
|
|
707
|
+
- `deal_stage` → `stage`
|
|
708
|
+
- `deal_value` → `value`
|
|
709
|
+
- `deal_name` → `name`
|
|
710
|
+
|
|
711
|
+
#### Documentation & Testing (#360, #359)
|
|
712
|
+
|
|
713
|
+
- Complete universal tools documentation with examples
|
|
714
|
+
- Comprehensive integration test suite for all universal operations
|
|
715
|
+
- Performance benchmarks for batch operations
|
|
716
|
+
- Migration guide from resource-specific to universal tools
|
|
717
|
+
|
|
718
|
+
#### Developer Experience
|
|
719
|
+
|
|
720
|
+
- Config migration tool for postal code mapping fix (#330)
|
|
721
|
+
- Enhanced validation pipeline with mandatory pre-commit checks
|
|
722
|
+
- Systematic lint reduction plan (targeting <100 warnings from ~800)
|
|
723
|
+
- Improved environment setup for API integration testing
|
|
724
|
+
|
|
725
|
+
### Changed
|
|
726
|
+
|
|
727
|
+
#### API & Tool Behavior
|
|
728
|
+
|
|
729
|
+
- **Simplified Currency Handling**: Deal values now accept plain numbers (e.g., `value: 9780`) instead of complex objects
|
|
730
|
+
- **Consistent Search Interface**: All search operations now use the same filter structure
|
|
731
|
+
- **Unified Response Format**: All tools return consistent response structures
|
|
732
|
+
- **Better Field Validation**: Proactive validation with helpful suggestions before API calls
|
|
733
|
+
- **Improved Error Messages**: Context-aware error messages that guide users to solutions
|
|
734
|
+
|
|
735
|
+
#### Infrastructure & Performance
|
|
736
|
+
|
|
737
|
+
- Consolidated 50+ individual tool handlers into modular universal handlers
|
|
738
|
+
- Reduced code duplication by ~70% through shared implementations
|
|
739
|
+
- Improved response times through optimized routing
|
|
740
|
+
- Better memory usage with streamlined tool definitions
|
|
741
|
+
- Enhanced TypeScript type safety throughout the codebase
|
|
742
|
+
|
|
743
|
+
### Fixed
|
|
744
|
+
|
|
745
|
+
#### Critical Fixes
|
|
746
|
+
|
|
747
|
+
- Fixed deal currency format errors by accepting simple numeric values (#352)
|
|
748
|
+
- Fixed company domain search regression - now correctly uses `domains` field instead of `website` (#334, #353)
|
|
749
|
+
- Fixed "Format Error: An invalid value was passed to attribute with slug 'value'" issue
|
|
750
|
+
- Fixed missing generic record operation handlers (#343, #349)
|
|
751
|
+
- Fixed people search phone field regression (P0 hotfix)
|
|
752
|
+
- Fixed list filtering for list-specific attributes (#341)
|
|
753
|
+
|
|
754
|
+
#### Search & Filter Fixes
|
|
755
|
+
|
|
756
|
+
- Fixed date filter operators to match Attio API requirements
|
|
757
|
+
- Fixed domain search implementation by removing over-engineering
|
|
758
|
+
- Fixed company search validation and enhanced error handling
|
|
759
|
+
- Fixed filter condition type enum values for API compatibility
|
|
760
|
+
|
|
761
|
+
#### API Integration Fixes
|
|
762
|
+
|
|
763
|
+
- Fixed MCP tool calls failing with missing arguments wrapper (#344, #345)
|
|
764
|
+
- Fixed relationship helper tools and type conversion issues (#347)
|
|
765
|
+
- Fixed note formatting and content extraction (#338, #347)
|
|
766
|
+
- Fixed schema alignment for add-record-to-list tool (#332)
|
|
767
|
+
|
|
768
|
+
#### Testing & CI/CD Fixes
|
|
769
|
+
|
|
770
|
+
- Fixed integration test failures with proper mock management
|
|
771
|
+
- Fixed CI test compatibility with simplified mocks
|
|
772
|
+
- Fixed flaky date tests for Node v22.x
|
|
773
|
+
- Fixed TypeScript type issues and unnecessary try/catch warnings
|
|
774
|
+
|
|
775
|
+
### Security
|
|
776
|
+
|
|
777
|
+
- Updated form-data dependency from 4.0.1 to 4.0.4 for security patches (#346)
|
|
778
|
+
|
|
779
|
+
### Deprecated
|
|
780
|
+
|
|
781
|
+
- Resource-specific tool names (e.g., `search-companies`, `create-person`) are deprecated but still functional
|
|
782
|
+
- Legacy field names for deals are deprecated but automatically converted
|
|
783
|
+
- Individual resource type handlers are deprecated in favor of universal handlers
|
|
784
|
+
|
|
785
|
+
### Migration Guide
|
|
786
|
+
|
|
787
|
+
Users upgrading from v0.1.x should note:
|
|
788
|
+
|
|
789
|
+
1. All existing tools continue to work - no breaking changes
|
|
790
|
+
2. Consider migrating to universal tools for new implementations
|
|
791
|
+
3. Deal currency values should now be simple numbers
|
|
792
|
+
4. Use `associated_company` instead of `company_id` for deals
|
|
793
|
+
5. Check error messages for field name guidance when creating records
|
|
794
|
+
|
|
795
|
+
## [0.1.2] - 2025-01-23
|
|
796
|
+
|
|
797
|
+
### Fixed
|
|
798
|
+
|
|
799
|
+
- Fixed MCP tool calls failing with missing arguments wrapper (#344, #345)
|
|
800
|
+
- Fixed list filtering for list-specific attributes (#341)
|
|
801
|
+
- Fixed MCP stdio communication for Smithery deployment
|
|
802
|
+
- Fixed TypeScript type issues and improved type safety
|
|
803
|
+
- Fixed unnecessary try/catch warnings
|
|
804
|
+
- Fixed lexical declaration in case block
|
|
805
|
+
- Fixed flaky date test for Node v22.x
|
|
806
|
+
|
|
807
|
+
### Changed
|
|
808
|
+
|
|
809
|
+
- Updated form-data dependency from 4.0.1 to 4.0.4 for security
|
|
810
|
+
- Improved error handling and logging for tool dispatch
|
|
811
|
+
- Enhanced list filtering with proper attribute type handling
|
|
812
|
+
- Better CI/CD with prettier formatting and type checking
|
|
813
|
+
|
|
814
|
+
### Added
|
|
815
|
+
|
|
816
|
+
- Claude PR Assistant workflow for automated PR reviews (#342)
|
|
817
|
+
- Enhanced MCP tool argument handling with automatic wrapper
|
|
818
|
+
- Improved documentation for list filtering and attribute types
|
|
819
|
+
|
|
820
|
+
## [0.1.1] - 2025-01-06
|
|
821
|
+
|
|
822
|
+
### Fixed
|
|
823
|
+
|
|
824
|
+
- Fixed npm installation failing due to postinstall script trying to setup git hooks in non-git environments
|
|
825
|
+
- Postinstall script now only runs git hooks setup when .git directory exists
|
|
826
|
+
|
|
827
|
+
### Changed
|
|
828
|
+
|
|
829
|
+
- Updated LICENSE from BSD-3-Clause to Apache-2.0 while preserving original BSD license attribution
|
|
830
|
+
- Updated package.json author field to @kesslerio
|
|
831
|
+
|
|
832
|
+
## [0.1.0] - 2025-01-06
|
|
833
|
+
|
|
834
|
+
### Added
|
|
835
|
+
|
|
836
|
+
- Initial release of Attio MCP Server
|
|
837
|
+
- Model Context Protocol integration for Attio CRM platform
|
|
838
|
+
- Company management tools (create, read, update, search, batch operations)
|
|
839
|
+
- People management tools (create, read, update, search, relationships)
|
|
840
|
+
- Lists management (get details, add/remove records)
|
|
841
|
+
- Notes management (create, read for companies and people)
|
|
842
|
+
- Tasks management (create, read, update, complete)
|
|
843
|
+
- Records management (read operations)
|
|
844
|
+
- Advanced search and filtering capabilities
|
|
845
|
+
- Batch operations support for companies and people
|
|
846
|
+
- Relationship management between entities
|
|
847
|
+
- Comprehensive error handling and validation
|
|
848
|
+
- Rate limiting and API resilience
|
|
849
|
+
- TypeScript implementation with strict typing
|
|
850
|
+
- Comprehensive test suite with Vitest
|
|
851
|
+
- Docker support for containerized deployment
|
|
852
|
+
- CLI tools for attribute discovery and development
|
|
853
|
+
- Structured logging and debugging utilities
|
|
854
|
+
- Configuration management with environment variables
|
|
855
|
+
- Auto-discovery of Attio workspace attributes
|
|
856
|
+
|
|
857
|
+
### Features
|
|
858
|
+
|
|
859
|
+
- **MCP Integration**: Fully compatible with Model Context Protocol v1.4.1
|
|
860
|
+
- **CRM Operations**: Complete CRUD operations for all major Attio entities
|
|
861
|
+
- **Advanced Search**: Complex filtering with date ranges, numeric comparisons, and text matching
|
|
862
|
+
- **Batch Processing**: Efficient bulk operations for high-volume data management
|
|
863
|
+
- **Relationship Mapping**: Handle complex relationships between companies and people
|
|
864
|
+
- **Error Recovery**: Robust error handling with detailed error messages
|
|
865
|
+
- **Development Tools**: CLI utilities for workspace exploration and debugging
|
|
866
|
+
- **Container Ready**: Docker support for easy deployment and scaling
|
|
867
|
+
|
|
868
|
+
### Dependencies
|
|
869
|
+
|
|
870
|
+
- @modelcontextprotocol/sdk: ^1.4.1 (MCP protocol support)
|
|
871
|
+
- TypeScript: ^5.8.3 (Type safety and modern JavaScript features)
|
|
872
|
+
- Vitest: ^3.1.4 (Testing framework)
|
|
873
|
+
- And other quality assurance and utility tools
|
|
874
|
+
|
|
875
|
+
### Documentation
|
|
876
|
+
|
|
877
|
+
- Comprehensive API documentation
|
|
878
|
+
- Setup and configuration guides
|
|
879
|
+
- Integration examples and workflows
|
|
880
|
+
- Troubleshooting guides
|
|
881
|
+
- Development and contribution guidelines
|
|
882
|
+
|
|
883
|
+
[Unreleased]: https://github.com/kesslerio/attio-mcp-server/compare/v1.2.0...HEAD
|
|
884
|
+
[1.2.0]: https://github.com/kesslerio/attio-mcp-server/compare/v1.1.10...v1.2.0
|
|
885
|
+
[1.1.10]: https://github.com/kesslerio/attio-mcp-server/compare/v1.1.0...v1.1.10
|
|
886
|
+
[1.1.0]: https://github.com/kesslerio/attio-mcp-server/compare/v1.0.0...v1.1.0
|
|
887
|
+
[1.0.0]: https://github.com/kesslerio/attio-mcp-server/compare/v0.2.0...v1.0.0
|
|
888
|
+
[0.2.0]: https://github.com/kesslerio/attio-mcp-server/compare/v0.1.2...v0.2.0
|
|
889
|
+
[0.1.2]: https://github.com/kesslerio/attio-mcp-server/compare/v0.1.1...v0.1.2
|
|
890
|
+
[0.1.1]: https://github.com/kesslerio/attio-mcp-server/compare/v0.1.0...v0.1.1
|
|
891
|
+
[0.1.0]: https://github.com/kesslerio/attio-mcp-server/releases/tag/v0.1.0
|