@peernova/cuneiform-sf 1.0.2 → 1.0.4-beta.8
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/LICENSE +81 -30
- package/README.md +59 -95
- package/lib/adapters/connection-facade.d.ts +458 -0
- package/lib/adapters/connection-facade.js +379 -0
- package/lib/adapters/connection-facade.js.map +1 -0
- package/lib/adapters/errors.d.ts +547 -0
- package/lib/adapters/errors.js +937 -0
- package/lib/adapters/errors.js.map +1 -0
- package/lib/adapters/index.d.ts +33 -0
- package/lib/adapters/index.js +50 -0
- package/lib/adapters/index.js.map +1 -0
- package/lib/adapters/lifecycle.d.ts +119 -0
- package/lib/adapters/lifecycle.js +94 -0
- package/lib/adapters/lifecycle.js.map +1 -0
- package/lib/adapters/rest/cache.d.ts +69 -0
- package/lib/adapters/rest/cache.js +133 -0
- package/lib/adapters/rest/cache.js.map +1 -0
- package/lib/adapters/rest/index.d.ts +11 -0
- package/lib/adapters/rest/index.js +18 -0
- package/lib/adapters/rest/index.js.map +1 -0
- package/lib/adapters/rest/profiling-rest-client.d.ts +137 -0
- package/lib/adapters/rest/profiling-rest-client.js +115 -0
- package/lib/adapters/rest/profiling-rest-client.js.map +1 -0
- package/lib/adapters/rest/rest-api-adapter.d.ts +389 -0
- package/lib/adapters/rest/rest-api-adapter.js +747 -0
- package/lib/adapters/rest/rest-api-adapter.js.map +1 -0
- package/lib/adapters/rest/types.d.ts +34 -0
- package/lib/adapters/rest/types.js +9 -0
- package/lib/adapters/rest/types.js.map +1 -0
- package/lib/adapters/retry.d.ts +91 -0
- package/lib/adapters/retry.js +215 -0
- package/lib/adapters/retry.js.map +1 -0
- package/lib/adapters/soql/cuneiform-query-builder.d.ts +391 -0
- package/lib/adapters/soql/cuneiform-query-builder.js +559 -0
- package/lib/adapters/soql/cuneiform-query-builder.js.map +1 -0
- package/lib/adapters/soql/index.d.ts +13 -0
- package/lib/adapters/soql/index.js +21 -0
- package/lib/adapters/soql/index.js.map +1 -0
- package/lib/adapters/soql/soql-query-adapter.d.ts +141 -0
- package/lib/adapters/soql/soql-query-adapter.js +259 -0
- package/lib/adapters/soql/soql-query-adapter.js.map +1 -0
- package/lib/adapters/soql/types.d.ts +37 -0
- package/lib/adapters/soql/types.js +19 -0
- package/lib/adapters/soql/types.js.map +1 -0
- package/lib/adapters/testing/index.d.ts +37 -0
- package/lib/adapters/testing/index.js +20 -0
- package/lib/adapters/testing/index.js.map +1 -0
- package/lib/adapters/testing/mock-connection.d.ts +77 -0
- package/lib/adapters/testing/mock-connection.js +207 -0
- package/lib/adapters/testing/mock-connection.js.map +1 -0
- package/lib/adapters/testing/mock-logger.d.ts +29 -0
- package/lib/adapters/testing/mock-logger.js +57 -0
- package/lib/adapters/testing/mock-logger.js.map +1 -0
- package/lib/adapters/testing/mock-mcp-adapters.d.ts +32 -0
- package/lib/adapters/testing/mock-mcp-adapters.js +52 -0
- package/lib/adapters/testing/mock-mcp-adapters.js.map +1 -0
- package/lib/adapters/testing/mock-oclif-config.d.ts +22 -0
- package/lib/adapters/testing/mock-oclif-config.js +90 -0
- package/lib/adapters/testing/mock-oclif-config.js.map +1 -0
- package/lib/adapters/testing/mock-rest-adapter.d.ts +26 -0
- package/lib/adapters/testing/mock-rest-adapter.js +243 -0
- package/lib/adapters/testing/mock-rest-adapter.js.map +1 -0
- package/lib/adapters/testing/mock-salesforce-connection.d.ts +40 -0
- package/lib/adapters/testing/mock-salesforce-connection.js +61 -0
- package/lib/adapters/testing/mock-salesforce-connection.js.map +1 -0
- package/lib/adapters/testing/mock-soql-adapter.d.ts +30 -0
- package/lib/adapters/testing/mock-soql-adapter.js +120 -0
- package/lib/adapters/testing/mock-soql-adapter.js.map +1 -0
- package/lib/adapters/testing/mock-tooling-adapter.d.ts +24 -0
- package/lib/adapters/testing/mock-tooling-adapter.js +163 -0
- package/lib/adapters/testing/mock-tooling-adapter.js.map +1 -0
- package/lib/adapters/testing/stub-connection.d.ts +93 -0
- package/lib/adapters/testing/stub-connection.js +97 -0
- package/lib/adapters/testing/stub-connection.js.map +1 -0
- package/lib/adapters/testing/stub-rest-adapter.d.ts +52 -0
- package/lib/adapters/testing/stub-rest-adapter.js +58 -0
- package/lib/adapters/testing/stub-rest-adapter.js.map +1 -0
- package/lib/adapters/testing/stub-soql-adapter.d.ts +56 -0
- package/lib/adapters/testing/stub-soql-adapter.js +50 -0
- package/lib/adapters/testing/stub-soql-adapter.js.map +1 -0
- package/lib/adapters/testing/types.d.ts +71 -0
- package/lib/adapters/testing/types.js +9 -0
- package/lib/adapters/testing/types.js.map +1 -0
- package/lib/adapters/tooling/index.d.ts +10 -0
- package/lib/adapters/tooling/index.js +17 -0
- package/lib/adapters/tooling/index.js.map +1 -0
- package/lib/adapters/tooling/tooling-api-adapter.d.ts +157 -0
- package/lib/adapters/tooling/tooling-api-adapter.js +339 -0
- package/lib/adapters/tooling/tooling-api-adapter.js.map +1 -0
- package/lib/adapters/tooling/types.d.ts +81 -0
- package/lib/adapters/tooling/types.js +9 -0
- package/lib/adapters/tooling/types.js.map +1 -0
- package/lib/adapters/types.d.ts +112 -0
- package/lib/adapters/types.js +169 -0
- package/lib/adapters/types.js.map +1 -0
- package/lib/base/cuneiform-command.d.ts +152 -0
- package/lib/base/cuneiform-command.js +243 -0
- package/lib/base/cuneiform-command.js.map +1 -0
- package/lib/commands/cuneiform/compatibility/check.d.ts +43 -0
- package/lib/commands/cuneiform/compatibility/check.js +114 -0
- package/lib/commands/cuneiform/compatibility/check.js.map +1 -0
- package/lib/commands/cuneiform/definition/create.d.ts +119 -0
- package/lib/commands/cuneiform/definition/create.js +693 -0
- package/lib/commands/cuneiform/definition/create.js.map +1 -0
- package/lib/commands/cuneiform/definition/export.d.ts +57 -0
- package/lib/commands/cuneiform/definition/export.js +133 -0
- package/lib/commands/cuneiform/definition/export.js.map +1 -0
- package/lib/commands/cuneiform/definition/get.d.ts +86 -0
- package/lib/commands/cuneiform/definition/get.js +270 -0
- package/lib/commands/cuneiform/definition/get.js.map +1 -0
- package/lib/commands/cuneiform/definition/import.d.ts +54 -0
- package/lib/commands/cuneiform/definition/import.js +118 -0
- package/lib/commands/cuneiform/definition/import.js.map +1 -0
- package/lib/commands/cuneiform/definition/list.d.ts +110 -0
- package/lib/commands/cuneiform/definition/list.js +344 -0
- package/lib/commands/cuneiform/definition/list.js.map +1 -0
- package/lib/commands/cuneiform/definition/purge.d.ts +105 -0
- package/lib/commands/cuneiform/definition/purge.js +533 -0
- package/lib/commands/cuneiform/definition/purge.js.map +1 -0
- package/lib/commands/cuneiform/definition/update.d.ts +58 -0
- package/lib/commands/cuneiform/definition/update.js +206 -0
- package/lib/commands/cuneiform/definition/update.js.map +1 -0
- package/lib/commands/cuneiform/mcp/serve.d.ts +56 -0
- package/lib/commands/cuneiform/mcp/serve.js +109 -0
- package/lib/commands/cuneiform/mcp/serve.js.map +1 -0
- package/lib/commands/cuneiform/object/describe.d.ts +61 -0
- package/lib/commands/cuneiform/object/describe.js +461 -0
- package/lib/commands/cuneiform/object/describe.js.map +1 -0
- package/lib/commands/cuneiform/object/list.d.ts +111 -0
- package/lib/commands/cuneiform/object/list.js +239 -0
- package/lib/commands/cuneiform/object/list.js.map +1 -0
- package/lib/commands/cuneiform/org/details.d.ts +99 -0
- package/lib/commands/cuneiform/org/details.js +521 -0
- package/lib/commands/cuneiform/org/details.js.map +1 -0
- package/lib/commands/cuneiform/org/reset.d.ts +46 -0
- package/lib/commands/cuneiform/org/reset.js +135 -0
- package/lib/commands/cuneiform/org/reset.js.map +1 -0
- package/lib/commands/cuneiform/profile/request/cancel.d.ts +59 -0
- package/lib/commands/cuneiform/profile/request/cancel.js +202 -0
- package/lib/commands/cuneiform/profile/request/cancel.js.map +1 -0
- package/lib/commands/cuneiform/profile/request/delete.d.ts +59 -0
- package/lib/commands/cuneiform/profile/request/delete.js +223 -0
- package/lib/commands/cuneiform/profile/request/delete.js.map +1 -0
- package/lib/commands/cuneiform/profile/request/list.d.ts +35 -0
- package/lib/commands/cuneiform/profile/request/list.js +102 -0
- package/lib/commands/cuneiform/profile/request/list.js.map +1 -0
- package/lib/commands/cuneiform/profile.d.ts +90 -0
- package/lib/commands/cuneiform/profile.js +322 -0
- package/lib/commands/cuneiform/profile.js.map +1 -0
- package/lib/commands/cuneiform/summary/purge.d.ts +77 -0
- package/lib/commands/cuneiform/summary/purge.js +429 -0
- package/lib/commands/cuneiform/summary/purge.js.map +1 -0
- package/lib/commands/cuneiform/summary/reprofile.d.ts +60 -0
- package/lib/commands/cuneiform/summary/reprofile.js +236 -0
- package/lib/commands/cuneiform/summary/reprofile.js.map +1 -0
- package/lib/commands/cuneiform/summary/stop.d.ts +59 -0
- package/lib/commands/cuneiform/summary/stop.js +234 -0
- package/lib/commands/cuneiform/summary/stop.js.map +1 -0
- package/lib/commands/cuneiform/user/details.d.ts +73 -0
- package/lib/commands/cuneiform/user/details.js +391 -0
- package/lib/commands/cuneiform/user/details.js.map +1 -0
- package/lib/constants/index.d.ts +8 -0
- package/lib/constants/index.js +16 -0
- package/lib/constants/index.js.map +1 -0
- package/lib/constants/namespace-constants.d.ts +91 -0
- package/lib/constants/namespace-constants.js +211 -0
- package/lib/constants/namespace-constants.js.map +1 -0
- package/lib/debug/command-debug-proxy.d.ts +101 -0
- package/lib/debug/command-debug-proxy.js +171 -0
- package/lib/debug/command-debug-proxy.js.map +1 -0
- package/lib/debug/debug-logger.d.ts +85 -0
- package/lib/debug/debug-logger.js +133 -0
- package/lib/debug/debug-logger.js.map +1 -0
- package/lib/debug/index.d.ts +12 -0
- package/lib/debug/index.js +20 -0
- package/lib/debug/index.js.map +1 -0
- package/lib/debug/service-debug-proxy.d.ts +30 -0
- package/lib/debug/service-debug-proxy.js +102 -0
- package/lib/debug/service-debug-proxy.js.map +1 -0
- package/lib/hooks/prerun.d.ts +25 -0
- package/lib/hooks/prerun.js +47 -0
- package/lib/hooks/prerun.js.map +1 -0
- package/lib/mcp/config/mcp-config.d.ts +55 -0
- package/lib/mcp/config/mcp-config.js +51 -0
- package/lib/mcp/config/mcp-config.js.map +1 -0
- package/lib/mcp/config/pagination.d.ts +96 -0
- package/lib/mcp/config/pagination.js +108 -0
- package/lib/mcp/config/pagination.js.map +1 -0
- package/lib/mcp/config/system-prompts.d.ts +18 -0
- package/lib/mcp/config/system-prompts.js +92 -0
- package/lib/mcp/config/system-prompts.js.map +1 -0
- package/lib/mcp/errors.d.ts +23 -0
- package/lib/mcp/errors.js +27 -0
- package/lib/mcp/errors.js.map +1 -0
- package/lib/mcp/schemas/input-schemas.d.ts +327 -0
- package/lib/mcp/schemas/input-schemas.js +302 -0
- package/lib/mcp/schemas/input-schemas.js.map +1 -0
- package/lib/mcp/server.d.ts +40 -0
- package/lib/mcp/server.js +316 -0
- package/lib/mcp/server.js.map +1 -0
- package/lib/mcp/tools/contactpoint-tools.d.ts +14 -0
- package/lib/mcp/tools/contactpoint-tools.js +34 -0
- package/lib/mcp/tools/contactpoint-tools.js.map +1 -0
- package/lib/mcp/tools/definition-io-tools.d.ts +19 -0
- package/lib/mcp/tools/definition-io-tools.js +152 -0
- package/lib/mcp/tools/definition-io-tools.js.map +1 -0
- package/lib/mcp/tools/definition-tools.d.ts +51 -0
- package/lib/mcp/tools/definition-tools.js +199 -0
- package/lib/mcp/tools/definition-tools.js.map +1 -0
- package/lib/mcp/tools/index.d.ts +37 -0
- package/lib/mcp/tools/index.js +88 -0
- package/lib/mcp/tools/index.js.map +1 -0
- package/lib/mcp/tools/object-tools.d.ts +22 -0
- package/lib/mcp/tools/object-tools.js +306 -0
- package/lib/mcp/tools/object-tools.js.map +1 -0
- package/lib/mcp/tools/org-tools.d.ts +14 -0
- package/lib/mcp/tools/org-tools.js +177 -0
- package/lib/mcp/tools/org-tools.js.map +1 -0
- package/lib/mcp/tools/profile-tools.d.ts +59 -0
- package/lib/mcp/tools/profile-tools.js +213 -0
- package/lib/mcp/tools/profile-tools.js.map +1 -0
- package/lib/mcp/tools/summary-tools.d.ts +14 -0
- package/lib/mcp/tools/summary-tools.js +38 -0
- package/lib/mcp/tools/summary-tools.js.map +1 -0
- package/lib/mcp/tools/tool-factory.d.ts +63 -0
- package/lib/mcp/tools/tool-factory.js +146 -0
- package/lib/mcp/tools/tool-factory.js.map +1 -0
- package/lib/mcp/tools/user-tools.d.ts +25 -0
- package/lib/mcp/tools/user-tools.js +167 -0
- package/lib/mcp/tools/user-tools.js.map +1 -0
- package/lib/models/date-literal.d.ts +211 -0
- package/lib/models/date-literal.js +615 -0
- package/lib/models/date-literal.js.map +1 -0
- package/lib/models/object-describe-types.d.ts +173 -0
- package/lib/models/object-describe-types.js +9 -0
- package/lib/models/object-describe-types.js.map +1 -0
- package/lib/models/profile-request-types.d.ts +118 -0
- package/lib/models/profile-request-types.js +23 -0
- package/lib/models/profile-request-types.js.map +1 -0
- package/lib/models/profiling-execution-types.d.ts +154 -0
- package/lib/models/profiling-execution-types.js +14 -0
- package/lib/models/profiling-execution-types.js.map +1 -0
- package/lib/models/service-result.d.ts +114 -0
- package/lib/models/service-result.js +81 -0
- package/lib/models/service-result.js.map +1 -0
- package/lib/models/sfdmu-types.d.ts +53 -0
- package/lib/models/sfdmu-types.js +23 -0
- package/lib/models/sfdmu-types.js.map +1 -0
- package/lib/models/status-types.d.ts +38 -0
- package/lib/models/status-types.js +12 -0
- package/lib/models/status-types.js.map +1 -0
- package/lib/models/summary-bulk-types.d.ts +61 -0
- package/lib/models/summary-bulk-types.js +23 -0
- package/lib/models/summary-bulk-types.js.map +1 -0
- package/lib/models/user-details-types.d.ts +163 -0
- package/lib/models/user-details-types.js +9 -0
- package/lib/models/user-details-types.js.map +1 -0
- package/lib/models/year-range.d.ts +78 -0
- package/lib/models/year-range.js +153 -0
- package/lib/models/year-range.js.map +1 -0
- package/lib/operations/CompatibilityCheckOperation.d.ts +62 -0
- package/lib/operations/CompatibilityCheckOperation.js +102 -0
- package/lib/operations/CompatibilityCheckOperation.js.map +1 -0
- package/lib/operations/DefinitionCreateOperation.d.ts +411 -0
- package/lib/operations/DefinitionCreateOperation.js +1121 -0
- package/lib/operations/DefinitionCreateOperation.js.map +1 -0
- package/lib/operations/DefinitionExportOperation.d.ts +155 -0
- package/lib/operations/DefinitionExportOperation.js +281 -0
- package/lib/operations/DefinitionExportOperation.js.map +1 -0
- package/lib/operations/DefinitionImportOperation.d.ts +144 -0
- package/lib/operations/DefinitionImportOperation.js +357 -0
- package/lib/operations/DefinitionImportOperation.js.map +1 -0
- package/lib/operations/DefinitionListOperation.d.ts +66 -0
- package/lib/operations/DefinitionListOperation.js +108 -0
- package/lib/operations/DefinitionListOperation.js.map +1 -0
- package/lib/operations/DefinitionPurgeOperation.d.ts +199 -0
- package/lib/operations/DefinitionPurgeOperation.js +465 -0
- package/lib/operations/DefinitionPurgeOperation.js.map +1 -0
- package/lib/operations/DefinitionUpdateOperation.d.ts +78 -0
- package/lib/operations/DefinitionUpdateOperation.js +142 -0
- package/lib/operations/DefinitionUpdateOperation.js.map +1 -0
- package/lib/operations/OrgDetailsOperation.d.ts +253 -0
- package/lib/operations/OrgDetailsOperation.js +456 -0
- package/lib/operations/OrgDetailsOperation.js.map +1 -0
- package/lib/operations/OrgResetOperation.d.ts +114 -0
- package/lib/operations/OrgResetOperation.js +209 -0
- package/lib/operations/OrgResetOperation.js.map +1 -0
- package/lib/operations/ProfileOperation.d.ts +187 -0
- package/lib/operations/ProfileOperation.js +373 -0
- package/lib/operations/ProfileOperation.js.map +1 -0
- package/lib/operations/ProfileRequestCancelOperation.d.ts +59 -0
- package/lib/operations/ProfileRequestCancelOperation.js +137 -0
- package/lib/operations/ProfileRequestCancelOperation.js.map +1 -0
- package/lib/operations/ProfileRequestDeleteOperation.d.ts +64 -0
- package/lib/operations/ProfileRequestDeleteOperation.js +134 -0
- package/lib/operations/ProfileRequestDeleteOperation.js.map +1 -0
- package/lib/operations/ProfileRequestListOperation.d.ts +39 -0
- package/lib/operations/ProfileRequestListOperation.js +61 -0
- package/lib/operations/ProfileRequestListOperation.js.map +1 -0
- package/lib/operations/SummaryPurgeOperation.d.ts +134 -0
- package/lib/operations/SummaryPurgeOperation.js +257 -0
- package/lib/operations/SummaryPurgeOperation.js.map +1 -0
- package/lib/operations/SummaryReprofileOperation.d.ts +88 -0
- package/lib/operations/SummaryReprofileOperation.js +174 -0
- package/lib/operations/SummaryReprofileOperation.js.map +1 -0
- package/lib/operations/SummaryStopOperation.d.ts +87 -0
- package/lib/operations/SummaryStopOperation.js +175 -0
- package/lib/operations/SummaryStopOperation.js.map +1 -0
- package/lib/services/BulkExecutionService.d.ts +120 -0
- package/lib/services/BulkExecutionService.js +535 -0
- package/lib/services/BulkExecutionService.js.map +1 -0
- package/lib/services/CompatibilityService.d.ts +81 -0
- package/lib/services/CompatibilityService.js +118 -0
- package/lib/services/CompatibilityService.js.map +1 -0
- package/lib/services/ConfigureMode.d.ts +85 -0
- package/lib/services/ConfigureMode.js +390 -0
- package/lib/services/ConfigureMode.js.map +1 -0
- package/lib/services/ContactPointService.d.ts +111 -0
- package/lib/services/ContactPointService.js +286 -0
- package/lib/services/ContactPointService.js.map +1 -0
- package/lib/services/DataAvailabilityService.d.ts +81 -0
- package/lib/services/DataAvailabilityService.js +128 -0
- package/lib/services/DataAvailabilityService.js.map +1 -0
- package/lib/services/DefinitionFieldGenerationService.d.ts +309 -0
- package/lib/services/DefinitionFieldGenerationService.js +795 -0
- package/lib/services/DefinitionFieldGenerationService.js.map +1 -0
- package/lib/services/DefinitionQueryBuilder.d.ts +59 -0
- package/lib/services/DefinitionQueryBuilder.js +234 -0
- package/lib/services/DefinitionQueryBuilder.js.map +1 -0
- package/lib/services/ObjectDescribeService.d.ts +436 -0
- package/lib/services/ObjectDescribeService.js +869 -0
- package/lib/services/ObjectDescribeService.js.map +1 -0
- package/lib/services/ObjectFilteringService.d.ts +400 -0
- package/lib/services/ObjectFilteringService.js +878 -0
- package/lib/services/ObjectFilteringService.js.map +1 -0
- package/lib/services/ObjectListCommandService.d.ts +429 -0
- package/lib/services/ObjectListCommandService.js +873 -0
- package/lib/services/ObjectListCommandService.js.map +1 -0
- package/lib/services/ObjectListService.d.ts +201 -0
- package/lib/services/ObjectListService.js +345 -0
- package/lib/services/ObjectListService.js.map +1 -0
- package/lib/services/OrgInfoService.d.ts +485 -0
- package/lib/services/OrgInfoService.js +1122 -0
- package/lib/services/OrgInfoService.js.map +1 -0
- package/lib/services/PollingService.d.ts +105 -0
- package/lib/services/PollingService.js +117 -0
- package/lib/services/PollingService.js.map +1 -0
- package/lib/services/ProfileRequestService.d.ts +186 -0
- package/lib/services/ProfileRequestService.js +555 -0
- package/lib/services/ProfileRequestService.js.map +1 -0
- package/lib/services/ProfilingDefinitionService.d.ts +535 -0
- package/lib/services/ProfilingDefinitionService.js +981 -0
- package/lib/services/ProfilingDefinitionService.js.map +1 -0
- package/lib/services/ProfilingExecutionService.d.ts +122 -0
- package/lib/services/ProfilingExecutionService.js +320 -0
- package/lib/services/ProfilingExecutionService.js.map +1 -0
- package/lib/services/ProfilingSummaryService.d.ts +292 -0
- package/lib/services/ProfilingSummaryService.js +685 -0
- package/lib/services/ProfilingSummaryService.js.map +1 -0
- package/lib/services/RecordTypeService.d.ts +129 -0
- package/lib/services/RecordTypeService.js +284 -0
- package/lib/services/RecordTypeService.js.map +1 -0
- package/lib/services/SFDMUService.d.ts +133 -0
- package/lib/services/SFDMUService.js +295 -0
- package/lib/services/SFDMUService.js.map +1 -0
- package/lib/services/TabDetectionService.d.ts +105 -0
- package/lib/services/TabDetectionService.js +206 -0
- package/lib/services/TabDetectionService.js.map +1 -0
- package/lib/services/UnconfigureMode.d.ts +74 -0
- package/lib/services/UnconfigureMode.js +378 -0
- package/lib/services/UnconfigureMode.js.map +1 -0
- package/lib/services/UserConfigurationService.d.ts +155 -0
- package/lib/services/UserConfigurationService.js +573 -0
- package/lib/services/UserConfigurationService.js.map +1 -0
- package/lib/services/UserConfigurationTypes.d.ts +181 -0
- package/lib/services/UserConfigurationTypes.js +14 -0
- package/lib/services/UserConfigurationTypes.js.map +1 -0
- package/lib/services/UserReadinessService.d.ts +330 -0
- package/lib/services/UserReadinessService.js +831 -0
- package/lib/services/UserReadinessService.js.map +1 -0
- package/lib/services/constants.d.ts +53 -0
- package/lib/services/constants.js +71 -0
- package/lib/services/constants.js.map +1 -0
- package/lib/services/namespace-constants.d.ts +1 -0
- package/lib/services/namespace-constants.js +11 -0
- package/lib/services/namespace-constants.js.map +1 -0
- package/lib/services/validation.d.ts +47 -0
- package/lib/services/validation.js +119 -0
- package/lib/services/validation.js.map +1 -0
- package/lib/utils/batch-processor.d.ts +13 -0
- package/lib/utils/batch-processor.js +39 -0
- package/lib/utils/batch-processor.js.map +1 -0
- package/lib/utils/formatting/availability-grid.d.ts +81 -0
- package/lib/utils/formatting/availability-grid.js +94 -0
- package/lib/utils/formatting/availability-grid.js.map +1 -0
- package/lib/utils/formatting/business-process-grid.d.ts +51 -0
- package/lib/utils/formatting/business-process-grid.js +58 -0
- package/lib/utils/formatting/business-process-grid.js.map +1 -0
- package/lib/utils/formatting/command-display.d.ts +154 -0
- package/lib/utils/formatting/command-display.js +154 -0
- package/lib/utils/formatting/command-display.js.map +1 -0
- package/lib/utils/formatting/definition-create-display.d.ts +118 -0
- package/lib/utils/formatting/definition-create-display.js +231 -0
- package/lib/utils/formatting/definition-create-display.js.map +1 -0
- package/lib/utils/formatting/empty-states.d.ts +35 -0
- package/lib/utils/formatting/empty-states.js +70 -0
- package/lib/utils/formatting/empty-states.js.map +1 -0
- package/lib/utils/formatting/errors.d.ts +33 -0
- package/lib/utils/formatting/errors.js +72 -0
- package/lib/utils/formatting/errors.js.map +1 -0
- package/lib/utils/formatting/field-types.d.ts +32 -0
- package/lib/utils/formatting/field-types.js +88 -0
- package/lib/utils/formatting/field-types.js.map +1 -0
- package/lib/utils/formatting/index.d.ts +29 -0
- package/lib/utils/formatting/index.js +28 -0
- package/lib/utils/formatting/index.js.map +1 -0
- package/lib/utils/formatting/indicators.d.ts +113 -0
- package/lib/utils/formatting/indicators.js +161 -0
- package/lib/utils/formatting/indicators.js.map +1 -0
- package/lib/utils/formatting/loading-messages.d.ts +37 -0
- package/lib/utils/formatting/loading-messages.js +50 -0
- package/lib/utils/formatting/loading-messages.js.map +1 -0
- package/lib/utils/formatting/namespace-display.d.ts +31 -0
- package/lib/utils/formatting/namespace-display.js +64 -0
- package/lib/utils/formatting/namespace-display.js.map +1 -0
- package/lib/utils/formatting/numbers.d.ts +73 -0
- package/lib/utils/formatting/numbers.js +187 -0
- package/lib/utils/formatting/numbers.js.map +1 -0
- package/lib/utils/formatting/object-describe-display.d.ts +114 -0
- package/lib/utils/formatting/object-describe-display.js +440 -0
- package/lib/utils/formatting/object-describe-display.js.map +1 -0
- package/lib/utils/formatting/object-list-display.d.ts +213 -0
- package/lib/utils/formatting/object-list-display.js +672 -0
- package/lib/utils/formatting/object-list-display.js.map +1 -0
- package/lib/utils/formatting/org-identity.d.ts +15 -0
- package/lib/utils/formatting/org-identity.js +28 -0
- package/lib/utils/formatting/org-identity.js.map +1 -0
- package/lib/utils/formatting/record-age-grid.d.ts +41 -0
- package/lib/utils/formatting/record-age-grid.js +56 -0
- package/lib/utils/formatting/record-age-grid.js.map +1 -0
- package/lib/utils/formatting/sections.d.ts +108 -0
- package/lib/utils/formatting/sections.js +150 -0
- package/lib/utils/formatting/sections.js.map +1 -0
- package/lib/utils/formatting/tables.d.ts +90 -0
- package/lib/utils/formatting/tables.js +113 -0
- package/lib/utils/formatting/tables.js.map +1 -0
- package/lib/utils/formatting/user-details-display.d.ts +101 -0
- package/lib/utils/formatting/user-details-display.js +425 -0
- package/lib/utils/formatting/user-details-display.js.map +1 -0
- package/lib/utils/pagination/index.d.ts +11 -0
- package/lib/utils/pagination/index.js +18 -0
- package/lib/utils/pagination/index.js.map +1 -0
- package/lib/utils/pagination/keypress-reader.d.ts +20 -0
- package/lib/utils/pagination/keypress-reader.js +63 -0
- package/lib/utils/pagination/keypress-reader.js.map +1 -0
- package/lib/utils/pagination/paginate-output.d.ts +48 -0
- package/lib/utils/pagination/paginate-output.js +136 -0
- package/lib/utils/pagination/paginate-output.js.map +1 -0
- package/messages/compatibility.check.md +71 -0
- package/messages/cuneiform.access.md +138 -0
- package/messages/definition.create.md +511 -0
- package/messages/definition.export.md +84 -0
- package/messages/definition.get.md +147 -0
- package/messages/definition.import.md +65 -0
- package/messages/definition.list.md +264 -0
- package/messages/definition.purge.md +318 -0
- package/messages/definition.update.md +118 -0
- package/messages/mcp.serve.md +66 -0
- package/messages/object.describe.md +201 -0
- package/messages/object.list.md +443 -0
- package/messages/org.details.md +386 -0
- package/messages/org.reset.md +71 -0
- package/messages/profile.md +231 -0
- package/messages/profile.request.cancel.md +143 -0
- package/messages/profile.request.delete.md +139 -0
- package/messages/profile.request.list.md +89 -0
- package/messages/summary.purge.md +218 -0
- package/messages/summary.reprofile.md +150 -0
- package/messages/summary.stop.md +157 -0
- package/messages/user.details.md +501 -0
- package/oclif.lock +2887 -2149
- package/oclif.manifest.json +2813 -31
- package/package.json +94 -19
- package/lib/commands/cuneiform/about.d.ts +0 -13
- package/lib/commands/cuneiform/about.js +0 -26
- package/lib/commands/cuneiform/about.js.map +0 -1
- package/lib/commands/hello/world.d.ts +0 -14
- package/lib/commands/hello/world.js +0 -27
- package/lib/commands/hello/world.js.map +0 -1
- package/lib/index.d.ts +0 -2
- package/lib/index.js +0 -2
- package/lib/index.js.map +0 -1
- package/messages/cuneiform.about.md +0 -19
- package/messages/hello.world.md +0 -29
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2026, PeerNova, Inc. All Rights Reserved.
|
|
3
|
+
* PROPRIETARY AND CONFIDENTIAL. Unauthorized copying, modification,
|
|
4
|
+
* or distribution is strictly prohibited. Use is governed by the
|
|
5
|
+
* Master Subscription Agreement (MSA) between PeerNova, Inc. and the
|
|
6
|
+
* licensee. See LICENSE file in the repo root.
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Pagination infrastructure for MCP tool responses.
|
|
10
|
+
*
|
|
11
|
+
* Provides cursor-based pagination with server-side page size clamping
|
|
12
|
+
* to keep responses within LLM context budgets (~5 KB per response).
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Page size defaults and maximums for each paginated resource type.
|
|
16
|
+
*/
|
|
17
|
+
export const PAGE_SIZE_DEFAULTS = {
|
|
18
|
+
OBJECT_LIST: { default: 25, max: 50 },
|
|
19
|
+
FIELD_LIST: { default: 25, max: 50 },
|
|
20
|
+
RELATIONSHIP_LIST: { default: 10, max: 25 },
|
|
21
|
+
NAMESPACE_LIST: { default: 10, max: 25 },
|
|
22
|
+
RECORD_TYPE_LIST: { default: 10, max: 25 },
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Encodes a numeric offset into an opaque base64 cursor string.
|
|
26
|
+
*
|
|
27
|
+
* @param offset - The zero-based offset to encode
|
|
28
|
+
* @returns Opaque cursor string
|
|
29
|
+
*/
|
|
30
|
+
export function encodeCursor(offset) {
|
|
31
|
+
return Buffer.from(JSON.stringify({ offset })).toString('base64');
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Decodes an opaque cursor string back to a numeric offset.
|
|
35
|
+
*
|
|
36
|
+
* Returns 0 for undefined or empty cursors (start from beginning).
|
|
37
|
+
* Throws for malformed cursors to prevent silent pagination loops.
|
|
38
|
+
*
|
|
39
|
+
* @param cursor - Opaque cursor string from a previous response
|
|
40
|
+
* @returns The decoded offset, or 0 if cursor is undefined/empty
|
|
41
|
+
* @throws Error if the cursor is present but malformed
|
|
42
|
+
*/
|
|
43
|
+
export function decodeCursor(cursor) {
|
|
44
|
+
if (!cursor)
|
|
45
|
+
return 0;
|
|
46
|
+
try {
|
|
47
|
+
const decoded = JSON.parse(Buffer.from(cursor, 'base64').toString('utf-8'));
|
|
48
|
+
const offset = decoded.offset;
|
|
49
|
+
if (typeof offset === 'number' && offset >= 0) {
|
|
50
|
+
return offset;
|
|
51
|
+
}
|
|
52
|
+
throw new Error(`invalid cursor payload: offset is ${typeof offset}`);
|
|
53
|
+
}
|
|
54
|
+
catch (error) {
|
|
55
|
+
if (error instanceof Error && error.message.startsWith('invalid cursor payload')) {
|
|
56
|
+
throw error;
|
|
57
|
+
}
|
|
58
|
+
throw new Error('Malformed pagination cursor. Pass the exact nextCursor value from a previous response, or omit to start from the beginning.');
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Clamps a requested page size to within [1, max], defaulting if undefined.
|
|
63
|
+
*
|
|
64
|
+
* @param requested - The page size requested by the client (may be undefined)
|
|
65
|
+
* @param defaultSize - Default page size when not specified
|
|
66
|
+
* @param maxSize - Maximum allowed page size
|
|
67
|
+
* @returns Clamped page size
|
|
68
|
+
*/
|
|
69
|
+
export function clampPageSize(requested, defaultSize, maxSize) {
|
|
70
|
+
if (requested === undefined)
|
|
71
|
+
return defaultSize;
|
|
72
|
+
if (requested <= 0)
|
|
73
|
+
return 1;
|
|
74
|
+
return Math.min(requested, maxSize);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Creates pagination metadata for a response envelope.
|
|
78
|
+
*
|
|
79
|
+
* @param input - Pagination parameters
|
|
80
|
+
* @returns Pagination metadata with cursor and status message
|
|
81
|
+
*/
|
|
82
|
+
export function createPaginationMetadata(input) {
|
|
83
|
+
const { offset, pageSize, totalItems, returnedItems } = input;
|
|
84
|
+
if (totalItems === 0) {
|
|
85
|
+
return {
|
|
86
|
+
returned: 0,
|
|
87
|
+
total: 0,
|
|
88
|
+
hasMore: false,
|
|
89
|
+
pageSize,
|
|
90
|
+
message: 'No results found.',
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
const nextOffset = offset + returnedItems;
|
|
94
|
+
const hasMore = nextOffset < totalItems;
|
|
95
|
+
const startItem = offset + 1;
|
|
96
|
+
const endItem = offset + returnedItems;
|
|
97
|
+
return {
|
|
98
|
+
returned: returnedItems,
|
|
99
|
+
total: totalItems,
|
|
100
|
+
hasMore,
|
|
101
|
+
nextCursor: hasMore ? encodeCursor(nextOffset) : undefined,
|
|
102
|
+
pageSize,
|
|
103
|
+
message: hasMore
|
|
104
|
+
? `Showing ${startItem}-${endItem} of ${totalItems}. Use nextCursor to retrieve more.`
|
|
105
|
+
: `Showing ${startItem}-${endItem} of ${totalItems}. All results displayed.`,
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
//# sourceMappingURL=pagination.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pagination.js","sourceRoot":"","sources":["../../../src/mcp/config/pagination.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH;;;;;GAKG;AAEH;;GAEG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,WAAW,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;IACrC,UAAU,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;IACpC,iBAAiB,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;IAC3C,cAAc,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;IACxC,gBAAgB,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;CAClC,CAAC;AAoBX;;;;;GAKG;AACH,MAAM,UAAU,YAAY,CAAC,MAAc;IACzC,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;AACpE,CAAC;AAED;;;;;;;;;GASG;AACH,MAAM,UAAU,YAAY,CAAC,MAA0B;IACrD,IAAI,CAAC,MAAM;QAAE,OAAO,CAAC,CAAC;IAEtB,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAA4B,CAAC;QACvG,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QAC9B,IAAI,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,IAAI,CAAC,EAAE,CAAC;YAC9C,OAAO,MAAM,CAAC;QAChB,CAAC;QACD,MAAM,IAAI,KAAK,CAAC,qCAAqC,OAAO,MAAM,EAAE,CAAC,CAAC;IACxE,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,IAAI,KAAK,YAAY,KAAK,IAAI,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,wBAAwB,CAAC,EAAE,CAAC;YACjF,MAAM,KAAK,CAAC;QACd,CAAC;QACD,MAAM,IAAI,KAAK,CACb,6HAA6H,CAC9H,CAAC;IACJ,CAAC;AACH,CAAC;AAED;;;;;;;GAOG;AACH,MAAM,UAAU,aAAa,CAAC,SAA6B,EAAE,WAAmB,EAAE,OAAe;IAC/F,IAAI,SAAS,KAAK,SAAS;QAAE,OAAO,WAAW,CAAC;IAChD,IAAI,SAAS,IAAI,CAAC;QAAE,OAAO,CAAC,CAAC;IAC7B,OAAO,IAAI,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;AACtC,CAAC;AAgBD;;;;;GAKG;AACH,MAAM,UAAU,wBAAwB,CAAC,KAA8B;IACrE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,UAAU,EAAE,aAAa,EAAE,GAAG,KAAK,CAAC;IAE9D,IAAI,UAAU,KAAK,CAAC,EAAE,CAAC;QACrB,OAAO;YACL,QAAQ,EAAE,CAAC;YACX,KAAK,EAAE,CAAC;YACR,OAAO,EAAE,KAAK;YACd,QAAQ;YACR,OAAO,EAAE,mBAAmB;SAC7B,CAAC;IACJ,CAAC;IAED,MAAM,UAAU,GAAG,MAAM,GAAG,aAAa,CAAC;IAC1C,MAAM,OAAO,GAAG,UAAU,GAAG,UAAU,CAAC;IACxC,MAAM,SAAS,GAAG,MAAM,GAAG,CAAC,CAAC;IAC7B,MAAM,OAAO,GAAG,MAAM,GAAG,aAAa,CAAC;IAEvC,OAAO;QACL,QAAQ,EAAE,aAAa;QACvB,KAAK,EAAE,UAAU;QACjB,OAAO;QACP,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC,YAAY,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,SAAS;QAC1D,QAAQ;QACR,OAAO,EAAE,OAAO;YACd,CAAC,CAAC,WAAW,SAAS,IAAI,OAAO,OAAO,UAAU,oCAAoC;YACtF,CAAC,CAAC,WAAW,SAAS,IAAI,OAAO,OAAO,UAAU,0BAA0B;KAC/E,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* System prompt for Cuneiform MCP Server.
|
|
3
|
+
*
|
|
4
|
+
* This prompt is injected into the LLM's context when the MCP server is active,
|
|
5
|
+
* providing guidance on available tools, incremental processing rules, and
|
|
6
|
+
* exploration workflows.
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import { CUNEIFORM_SYSTEM_PROMPT } from './config/system-prompts.js';
|
|
11
|
+
*
|
|
12
|
+
* server.setRequestHandler(GetPromptRequestSchema, async () => ({
|
|
13
|
+
* description: 'Cuneiform CLI system prompt',
|
|
14
|
+
* messages: [{ role: 'user', content: { type: 'text', text: CUNEIFORM_SYSTEM_PROMPT } }],
|
|
15
|
+
* }));
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare const CUNEIFORM_SYSTEM_PROMPT: string;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2026, PeerNova, Inc. All Rights Reserved.
|
|
3
|
+
* PROPRIETARY AND CONFIDENTIAL. Unauthorized copying, modification,
|
|
4
|
+
* or distribution is strictly prohibited. Use is governed by the
|
|
5
|
+
* Master Subscription Agreement (MSA) between PeerNova, Inc. and the
|
|
6
|
+
* licensee. See LICENSE file in the repo root.
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* System prompt for Cuneiform MCP Server.
|
|
10
|
+
*
|
|
11
|
+
* This prompt is injected into the LLM's context when the MCP server is active,
|
|
12
|
+
* providing guidance on available tools, incremental processing rules, and
|
|
13
|
+
* exploration workflows.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```typescript
|
|
17
|
+
* import { CUNEIFORM_SYSTEM_PROMPT } from './config/system-prompts.js';
|
|
18
|
+
*
|
|
19
|
+
* server.setRequestHandler(GetPromptRequestSchema, async () => ({
|
|
20
|
+
* description: 'Cuneiform CLI system prompt',
|
|
21
|
+
* messages: [{ role: 'user', content: { type: 'text', text: CUNEIFORM_SYSTEM_PROMPT } }],
|
|
22
|
+
* }));
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
export const CUNEIFORM_SYSTEM_PROMPT = `
|
|
26
|
+
[CUNEIFORM MCP SERVER ACTIVE]
|
|
27
|
+
|
|
28
|
+
You are connected to the Cuneiform MCP server — an enterprise-grade Salesforce CLI plugin
|
|
29
|
+
for data profiling, field analysis, and metadata governance.
|
|
30
|
+
|
|
31
|
+
## Exploration Workflow
|
|
32
|
+
|
|
33
|
+
Follow this incremental workflow. Do not skip steps.
|
|
34
|
+
|
|
35
|
+
1. **Verify readiness** — Call cuneiform_user_details to confirm Cuneiform is installed
|
|
36
|
+
and the current user has the required permissions. Stop here if not ready.
|
|
37
|
+
2. **Get org identity** — Call cuneiform_org_details with section=identity to understand
|
|
38
|
+
the connected org (edition, API version, installed packages).
|
|
39
|
+
3. **List objects** — Call cuneiform_object_list with filters (e.g., filter=custom,
|
|
40
|
+
pattern, namespace) to find relevant objects. Do not request all objects at once.
|
|
41
|
+
4. **Describe one object** — Call cuneiform_object_describe with section=summary for
|
|
42
|
+
a single object. Then request specific sections (fields, relationships) as needed.
|
|
43
|
+
5. **Profile** — Create definitions, execute profiling, and review summaries.
|
|
44
|
+
|
|
45
|
+
## Incremental Processing Rules
|
|
46
|
+
|
|
47
|
+
- **One section per call.** Tools like cuneiform_org_details and cuneiform_object_describe
|
|
48
|
+
return one section at a time. Start with the summary/identity section, then drill down.
|
|
49
|
+
- **Filter before paginating.** Apply type filters, namespace filters, or pattern matches
|
|
50
|
+
before requesting paginated results.
|
|
51
|
+
- **Do not request all pages at once.** Each response is approximately 3-5 KB. Retrieve
|
|
52
|
+
the first page, check if more data is needed, then paginate using nextCursor.
|
|
53
|
+
- **Do not loop through all objects.** Only describe objects the user is interested in.
|
|
54
|
+
Never iterate cuneiform_object_describe over every result from cuneiform_object_list.
|
|
55
|
+
- **Prefer read-only operations first.** Use dry-run mode (dryRun=true, simulation=true)
|
|
56
|
+
before any write operation (create, update, configure, import).
|
|
57
|
+
|
|
58
|
+
## Available Tools
|
|
59
|
+
|
|
60
|
+
### Org & Metadata
|
|
61
|
+
- cuneiform_org_details — Get org configuration by section (identity, cuneiform, features, clouds, namespaces, limits)
|
|
62
|
+
- cuneiform_object_list — List objects with filtering by type, namespace, pattern, and record count
|
|
63
|
+
- cuneiform_object_describe — Describe a single object by section (summary, fields, fieldDistribution, recordTypes, relationships)
|
|
64
|
+
|
|
65
|
+
### User Management
|
|
66
|
+
- cuneiform_user_details — Check user permissions, prerequisites, and readiness
|
|
67
|
+
- cuneiform_user_configure — Configure user for profiling access (use dryRun=true first)
|
|
68
|
+
|
|
69
|
+
### Definition Lifecycle
|
|
70
|
+
- cuneiform_definition_list — List profiling definitions with filtering
|
|
71
|
+
- cuneiform_definition_get — Get definition by Salesforce ID
|
|
72
|
+
- cuneiform_definition_get_by_key — Get definitions by human-readable key (e.g., PD-0001)
|
|
73
|
+
- cuneiform_definition_create — Create profiling definitions (use dryRun=true first)
|
|
74
|
+
- cuneiform_definition_update — Update definition metadata attributes (name, category, timeCategory, segmentCategory, description)
|
|
75
|
+
- cuneiform_definition_purge — Delete unused definitions
|
|
76
|
+
|
|
77
|
+
### Definition I/O
|
|
78
|
+
- cuneiform_definition_export — Export definitions as VCS-friendly files
|
|
79
|
+
- cuneiform_definition_import — Import definitions from export (use simulation=true first)
|
|
80
|
+
|
|
81
|
+
### Analysis
|
|
82
|
+
- cuneiform_contactpoint_analyze — Detect email, phone, address, and social fields in an object
|
|
83
|
+
|
|
84
|
+
### Results
|
|
85
|
+
- cuneiform_summary_list — List profiling summaries (field-level statistics) for a definition
|
|
86
|
+
|
|
87
|
+
### Profiling Execution
|
|
88
|
+
- cuneiform_profile_execute — Execute a profiling definition (triggers Apex analysis)
|
|
89
|
+
- cuneiform_profile_status — Check profiling execution status
|
|
90
|
+
- cuneiform_profile_cancel — Cancel an active profiling execution
|
|
91
|
+
`.trim();
|
|
92
|
+
//# sourceMappingURL=system-prompts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"system-prompts.js","sourceRoot":"","sources":["../../../src/mcp/config/system-prompts.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkEtC,CAAC,IAAI,EAAE,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Error codes for MCP server operations.
|
|
3
|
+
*
|
|
4
|
+
* Range: E6000-E6099 (MCP Layer)
|
|
5
|
+
*/
|
|
6
|
+
export declare const McpErrorCodes: {
|
|
7
|
+
/** MCP server initialization failed */
|
|
8
|
+
readonly SERVER_INIT_FAILED: "E6000";
|
|
9
|
+
/** MCP tool invocation failed */
|
|
10
|
+
readonly TOOL_INVOCATION_FAILED: "E6001";
|
|
11
|
+
/** Invalid tool input */
|
|
12
|
+
readonly INVALID_TOOL_INPUT: "E6002";
|
|
13
|
+
/** Tool not found */
|
|
14
|
+
readonly TOOL_NOT_FOUND: "E6003";
|
|
15
|
+
/** Salesforce org connection failed */
|
|
16
|
+
readonly ORG_CONNECTION_FAILED: "E6004";
|
|
17
|
+
/** Service call failed */
|
|
18
|
+
readonly SERVICE_CALL_FAILED: "E6005";
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Type representing all MCP error codes.
|
|
22
|
+
*/
|
|
23
|
+
export type McpErrorCode = (typeof McpErrorCodes)[keyof typeof McpErrorCodes];
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2026, PeerNova, Inc. All Rights Reserved.
|
|
3
|
+
* PROPRIETARY AND CONFIDENTIAL. Unauthorized copying, modification,
|
|
4
|
+
* or distribution is strictly prohibited. Use is governed by the
|
|
5
|
+
* Master Subscription Agreement (MSA) between PeerNova, Inc. and the
|
|
6
|
+
* licensee. See LICENSE file in the repo root.
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Error codes for MCP server operations.
|
|
10
|
+
*
|
|
11
|
+
* Range: E6000-E6099 (MCP Layer)
|
|
12
|
+
*/
|
|
13
|
+
export const McpErrorCodes = {
|
|
14
|
+
/** MCP server initialization failed */
|
|
15
|
+
SERVER_INIT_FAILED: 'E6000',
|
|
16
|
+
/** MCP tool invocation failed */
|
|
17
|
+
TOOL_INVOCATION_FAILED: 'E6001',
|
|
18
|
+
/** Invalid tool input */
|
|
19
|
+
INVALID_TOOL_INPUT: 'E6002',
|
|
20
|
+
/** Tool not found */
|
|
21
|
+
TOOL_NOT_FOUND: 'E6003',
|
|
22
|
+
/** Salesforce org connection failed */
|
|
23
|
+
ORG_CONNECTION_FAILED: 'E6004',
|
|
24
|
+
/** Service call failed */
|
|
25
|
+
SERVICE_CALL_FAILED: 'E6005',
|
|
26
|
+
};
|
|
27
|
+
//# sourceMappingURL=errors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"errors.js","sourceRoot":"","sources":["../../src/mcp/errors.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH;;;;GAIG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,uCAAuC;IACvC,kBAAkB,EAAE,OAAO;IAE3B,iCAAiC;IACjC,sBAAsB,EAAE,OAAO;IAE/B,yBAAyB;IACzB,kBAAkB,EAAE,OAAO;IAE3B,qBAAqB;IACrB,cAAc,EAAE,OAAO;IAEvB,uCAAuC;IACvC,qBAAqB,EAAE,OAAO;IAE9B,0BAA0B;IAC1B,mBAAmB,EAAE,OAAO;CACpB,CAAC"}
|
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
/**
|
|
3
|
+
* Available sections for the org details tool.
|
|
4
|
+
*/
|
|
5
|
+
export declare const ORG_DETAILS_SECTIONS: readonly ["identity", "cuneiform", "features", "clouds", "namespaces", "limits"];
|
|
6
|
+
/**
|
|
7
|
+
* Input schema for cuneiform_org_details tool.
|
|
8
|
+
*/
|
|
9
|
+
export declare const OrgDetailsInputSchema: z.ZodObject<{
|
|
10
|
+
section: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
11
|
+
identity: "identity";
|
|
12
|
+
cuneiform: "cuneiform";
|
|
13
|
+
features: "features";
|
|
14
|
+
clouds: "clouds";
|
|
15
|
+
namespaces: "namespaces";
|
|
16
|
+
limits: "limits";
|
|
17
|
+
}>>>;
|
|
18
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
19
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
/**
|
|
22
|
+
* Type representing validated input for org_details tool.
|
|
23
|
+
*/
|
|
24
|
+
export type OrgDetailsInput = z.infer<typeof OrgDetailsInputSchema>;
|
|
25
|
+
/**
|
|
26
|
+
* Input schema for cuneiform_object_list tool.
|
|
27
|
+
*/
|
|
28
|
+
export declare const ObjectListInputSchema: z.ZodObject<{
|
|
29
|
+
filter: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
30
|
+
standard: "standard";
|
|
31
|
+
custom: "custom";
|
|
32
|
+
all: "all";
|
|
33
|
+
}>>>;
|
|
34
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
35
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
36
|
+
withRecords: z.ZodOptional<z.ZodBoolean>;
|
|
37
|
+
withoutRecords: z.ZodOptional<z.ZodBoolean>;
|
|
38
|
+
contactPoints: z.ZodOptional<z.ZodBoolean>;
|
|
39
|
+
minRecords: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
40
|
+
sort: z.ZodOptional<z.ZodEnum<{
|
|
41
|
+
name: "name";
|
|
42
|
+
recordCount: "recordCount";
|
|
43
|
+
label: "label";
|
|
44
|
+
}>>;
|
|
45
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
46
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
47
|
+
}, z.core.$strip>;
|
|
48
|
+
/**
|
|
49
|
+
* Type representing validated input for object_list tool.
|
|
50
|
+
*/
|
|
51
|
+
export type ObjectListInput = z.infer<typeof ObjectListInputSchema>;
|
|
52
|
+
/**
|
|
53
|
+
* Input schema for cuneiform_user_details tool.
|
|
54
|
+
*/
|
|
55
|
+
export declare const UserDetailsInputSchema: z.ZodObject<{}, z.core.$strip>;
|
|
56
|
+
/**
|
|
57
|
+
* Type representing validated input for user_details tool.
|
|
58
|
+
*/
|
|
59
|
+
export type UserDetailsInput = z.infer<typeof UserDetailsInputSchema>;
|
|
60
|
+
/**
|
|
61
|
+
* Available sections for the object describe tool.
|
|
62
|
+
*/
|
|
63
|
+
export declare const OBJECT_DESCRIBE_SECTIONS: readonly ["summary", "fields", "fieldDistribution", "recordTypes", "relationships"];
|
|
64
|
+
/**
|
|
65
|
+
* Input schema for cuneiform_object_describe tool.
|
|
66
|
+
*/
|
|
67
|
+
export declare const ObjectDescribeInputSchema: z.ZodObject<{
|
|
68
|
+
objectName: z.ZodString;
|
|
69
|
+
section: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
70
|
+
summary: "summary";
|
|
71
|
+
recordTypes: "recordTypes";
|
|
72
|
+
relationships: "relationships";
|
|
73
|
+
fields: "fields";
|
|
74
|
+
fieldDistribution: "fieldDistribution";
|
|
75
|
+
}>>>;
|
|
76
|
+
fieldType: z.ZodOptional<z.ZodEnum<{
|
|
77
|
+
number: "number";
|
|
78
|
+
picklist: "picklist";
|
|
79
|
+
date: "date";
|
|
80
|
+
id: "id";
|
|
81
|
+
address: "address";
|
|
82
|
+
lookup: "lookup";
|
|
83
|
+
text: "text";
|
|
84
|
+
formula: "formula";
|
|
85
|
+
checkbox: "checkbox";
|
|
86
|
+
}>>;
|
|
87
|
+
fieldPattern: z.ZodOptional<z.ZodString>;
|
|
88
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
89
|
+
name: "name";
|
|
90
|
+
label: "label";
|
|
91
|
+
type: "type";
|
|
92
|
+
}>>>;
|
|
93
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
94
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
95
|
+
}, z.core.$strip>;
|
|
96
|
+
/**
|
|
97
|
+
* Type representing validated input for object_describe tool.
|
|
98
|
+
*/
|
|
99
|
+
export type ObjectDescribeInput = z.infer<typeof ObjectDescribeInputSchema>;
|
|
100
|
+
/**
|
|
101
|
+
* Input schema for cuneiform_user_configure tool.
|
|
102
|
+
*/
|
|
103
|
+
export declare const UserConfigureInputSchema: z.ZodObject<{
|
|
104
|
+
dryRun: z.ZodBoolean;
|
|
105
|
+
}, z.core.$strip>;
|
|
106
|
+
/**
|
|
107
|
+
* Type representing validated input for user_configure tool.
|
|
108
|
+
*/
|
|
109
|
+
export type UserConfigureInput = z.infer<typeof UserConfigureInputSchema>;
|
|
110
|
+
/**
|
|
111
|
+
* Input schema for cuneiform_definition_list tool.
|
|
112
|
+
*/
|
|
113
|
+
export declare const DefinitionListInputSchema: z.ZodObject<{
|
|
114
|
+
objectName: z.ZodOptional<z.ZodString>;
|
|
115
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
116
|
+
ERROR: "ERROR";
|
|
117
|
+
"NOT PROFILED": "NOT PROFILED";
|
|
118
|
+
"IN PROGRESS": "IN PROGRESS";
|
|
119
|
+
SUCCESS: "SUCCESS";
|
|
120
|
+
}>>;
|
|
121
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
122
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
123
|
+
}, z.core.$strip>;
|
|
124
|
+
/**
|
|
125
|
+
* Type representing validated input for definition_list tool.
|
|
126
|
+
*/
|
|
127
|
+
export type DefinitionListInput = z.infer<typeof DefinitionListInputSchema>;
|
|
128
|
+
/**
|
|
129
|
+
* Input schema for cuneiform_definition_get tool.
|
|
130
|
+
*/
|
|
131
|
+
export declare const DefinitionGetInputSchema: z.ZodObject<{
|
|
132
|
+
definitionId: z.ZodString;
|
|
133
|
+
}, z.core.$strip>;
|
|
134
|
+
/**
|
|
135
|
+
* Type representing validated input for definition_get tool.
|
|
136
|
+
*/
|
|
137
|
+
export type DefinitionGetInput = z.infer<typeof DefinitionGetInputSchema>;
|
|
138
|
+
/**
|
|
139
|
+
* Input schema for cuneiform_definition_get_by_key tool.
|
|
140
|
+
* Mirrors the CLI command sf cuneiform definition get.
|
|
141
|
+
*/
|
|
142
|
+
export declare const DefinitionGetByKeyInputSchema: z.ZodObject<{
|
|
143
|
+
keys: z.ZodArray<z.ZodString>;
|
|
144
|
+
}, z.core.$strip>;
|
|
145
|
+
/**
|
|
146
|
+
* Type representing validated input for definition_get_by_key tool.
|
|
147
|
+
*/
|
|
148
|
+
export type DefinitionGetByKeyInput = z.infer<typeof DefinitionGetByKeyInputSchema>;
|
|
149
|
+
/**
|
|
150
|
+
* Input schema for cuneiform_definition_update tool.
|
|
151
|
+
*/
|
|
152
|
+
export declare const DefinitionUpdateInputSchema: z.ZodObject<{
|
|
153
|
+
definitionId: z.ZodString;
|
|
154
|
+
name: z.ZodOptional<z.ZodString>;
|
|
155
|
+
category: z.ZodOptional<z.ZodString>;
|
|
156
|
+
timeCategory: z.ZodOptional<z.ZodString>;
|
|
157
|
+
segmentCategory: z.ZodOptional<z.ZodString>;
|
|
158
|
+
description: z.ZodOptional<z.ZodString>;
|
|
159
|
+
}, z.core.$strip>;
|
|
160
|
+
/**
|
|
161
|
+
* Type representing validated input for definition_update tool.
|
|
162
|
+
*/
|
|
163
|
+
export type DefinitionUpdateInput = z.infer<typeof DefinitionUpdateInputSchema>;
|
|
164
|
+
/**
|
|
165
|
+
* Input schema for cuneiform_definition_export tool.
|
|
166
|
+
*/
|
|
167
|
+
export declare const DefinitionExportInputSchema: z.ZodObject<{
|
|
168
|
+
excludeIds: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
169
|
+
}, z.core.$strip>;
|
|
170
|
+
/**
|
|
171
|
+
* Type representing validated input for definition_export tool.
|
|
172
|
+
*/
|
|
173
|
+
export type DefinitionExportInput = z.infer<typeof DefinitionExportInputSchema>;
|
|
174
|
+
/**
|
|
175
|
+
* Input schema for cuneiform_definition_import tool.
|
|
176
|
+
*/
|
|
177
|
+
export declare const DefinitionImportInputSchema: z.ZodObject<{
|
|
178
|
+
fileContents: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
179
|
+
operation: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
180
|
+
Insert: "Insert";
|
|
181
|
+
Upsert: "Upsert";
|
|
182
|
+
}>>>;
|
|
183
|
+
simulation: z.ZodDefault<z.ZodBoolean>;
|
|
184
|
+
}, z.core.$strip>;
|
|
185
|
+
/**
|
|
186
|
+
* Type representing validated input for definition_import tool.
|
|
187
|
+
*/
|
|
188
|
+
export type DefinitionImportInput = z.infer<typeof DefinitionImportInputSchema>;
|
|
189
|
+
/**
|
|
190
|
+
* Input schema for cuneiform_contactpoint_analyze tool.
|
|
191
|
+
*/
|
|
192
|
+
export declare const ContactPointAnalyzeInputSchema: z.ZodObject<{
|
|
193
|
+
objectName: z.ZodString;
|
|
194
|
+
}, z.core.$strip>;
|
|
195
|
+
/**
|
|
196
|
+
* Type representing validated input for contactpoint_analyze tool.
|
|
197
|
+
*/
|
|
198
|
+
export type ContactPointAnalyzeInput = z.infer<typeof ContactPointAnalyzeInputSchema>;
|
|
199
|
+
/**
|
|
200
|
+
* Input schema for cuneiform_definition_create tool.
|
|
201
|
+
* Mirrors the CLI command sf cuneiform definition create.
|
|
202
|
+
*/
|
|
203
|
+
export declare const DefinitionCreateInputSchema: z.ZodObject<{
|
|
204
|
+
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
205
|
+
standard: "standard";
|
|
206
|
+
custom: "custom";
|
|
207
|
+
all: "all";
|
|
208
|
+
}>>>;
|
|
209
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
210
|
+
classification: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
211
|
+
all: "all";
|
|
212
|
+
customer: "customer";
|
|
213
|
+
internal: "internal";
|
|
214
|
+
}>>>;
|
|
215
|
+
withRecords: z.ZodOptional<z.ZodBoolean>;
|
|
216
|
+
withoutRecords: z.ZodOptional<z.ZodBoolean>;
|
|
217
|
+
objects: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
218
|
+
category: z.ZodOptional<z.ZodString>;
|
|
219
|
+
description: z.ZodOptional<z.ZodString>;
|
|
220
|
+
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
221
|
+
}, z.core.$strip>;
|
|
222
|
+
/**
|
|
223
|
+
* Type representing validated input for definition_create tool.
|
|
224
|
+
*/
|
|
225
|
+
export type DefinitionCreateInput = z.infer<typeof DefinitionCreateInputSchema>;
|
|
226
|
+
/**
|
|
227
|
+
* Input schema for cuneiform_definition_purge tool.
|
|
228
|
+
* Mirrors the CLI command sf cuneiform definition purge.
|
|
229
|
+
*/
|
|
230
|
+
export declare const DefinitionPurgeInputSchema: z.ZodObject<{
|
|
231
|
+
objectName: z.ZodOptional<z.ZodString>;
|
|
232
|
+
category: z.ZodOptional<z.ZodString>;
|
|
233
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
234
|
+
}, z.core.$strip>;
|
|
235
|
+
/**
|
|
236
|
+
* Type representing validated input for definition_purge tool.
|
|
237
|
+
*/
|
|
238
|
+
export type DefinitionPurgeInput = z.infer<typeof DefinitionPurgeInputSchema>;
|
|
239
|
+
/**
|
|
240
|
+
* Input schema for cuneiform_summary_list tool.
|
|
241
|
+
*/
|
|
242
|
+
export declare const SummaryListInputSchema: z.ZodObject<{
|
|
243
|
+
definitionId: z.ZodString;
|
|
244
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
245
|
+
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
246
|
+
}, z.core.$strip>;
|
|
247
|
+
/**
|
|
248
|
+
* Type representing validated input for summary_list tool.
|
|
249
|
+
*/
|
|
250
|
+
export type SummaryListInput = z.infer<typeof SummaryListInputSchema>;
|
|
251
|
+
/**
|
|
252
|
+
* Input schema for cuneiform_request_list tool.
|
|
253
|
+
*/
|
|
254
|
+
export declare const RequestListInputSchema: z.ZodObject<{
|
|
255
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
256
|
+
Queued: "Queued";
|
|
257
|
+
Canceled: "Canceled";
|
|
258
|
+
Completed: "Completed";
|
|
259
|
+
Rejected: "Rejected";
|
|
260
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
261
|
+
Queued: "Queued";
|
|
262
|
+
Canceled: "Canceled";
|
|
263
|
+
Completed: "Completed";
|
|
264
|
+
Rejected: "Rejected";
|
|
265
|
+
}>>]>>;
|
|
266
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
267
|
+
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
268
|
+
}, z.core.$strip>;
|
|
269
|
+
/**
|
|
270
|
+
* Type representing validated input for request_list tool.
|
|
271
|
+
*/
|
|
272
|
+
export type RequestListInput = z.infer<typeof RequestListInputSchema>;
|
|
273
|
+
/**
|
|
274
|
+
* Input schema for cuneiform_profile_execute tool.
|
|
275
|
+
*/
|
|
276
|
+
export declare const ProfileExecuteInputSchema: z.ZodObject<{
|
|
277
|
+
definitionId: z.ZodString;
|
|
278
|
+
wait: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
279
|
+
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
280
|
+
}, z.core.$strip>;
|
|
281
|
+
/**
|
|
282
|
+
* Type representing validated input for profile_execute tool.
|
|
283
|
+
*/
|
|
284
|
+
export type ProfileExecuteInput = z.infer<typeof ProfileExecuteInputSchema>;
|
|
285
|
+
/**
|
|
286
|
+
* Input schema for cuneiform_profile_status tool.
|
|
287
|
+
*
|
|
288
|
+
* Accepts one or more request IDs for batch status checks.
|
|
289
|
+
* Pass a single ID in the array for single-request status (backwards-compatible).
|
|
290
|
+
*/
|
|
291
|
+
export declare const ProfileStatusInputSchema: z.ZodObject<{
|
|
292
|
+
requestIds: z.ZodArray<z.ZodString>;
|
|
293
|
+
}, z.core.$strip>;
|
|
294
|
+
/**
|
|
295
|
+
* Type representing validated input for profile_status tool.
|
|
296
|
+
*/
|
|
297
|
+
export type ProfileStatusInput = z.infer<typeof ProfileStatusInputSchema>;
|
|
298
|
+
/**
|
|
299
|
+
* Input schema for cuneiform_profile_cancel tool.
|
|
300
|
+
*
|
|
301
|
+
* Supports two mutually exclusive modes:
|
|
302
|
+
* - requestId: Cancel a single profiling request
|
|
303
|
+
* - definitionId: Cancel all active requests for a definition
|
|
304
|
+
*
|
|
305
|
+
* Exactly one of requestId or definitionId must be provided.
|
|
306
|
+
*/
|
|
307
|
+
export declare const ProfileCancelInputSchema: z.ZodObject<{
|
|
308
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
309
|
+
definitionId: z.ZodOptional<z.ZodString>;
|
|
310
|
+
}, z.core.$strip>;
|
|
311
|
+
/**
|
|
312
|
+
* Type representing validated input for profile_cancel tool.
|
|
313
|
+
*/
|
|
314
|
+
export type ProfileCancelInput = z.infer<typeof ProfileCancelInputSchema>;
|
|
315
|
+
/**
|
|
316
|
+
* Input schema for cuneiform_profile_delete tool.
|
|
317
|
+
*
|
|
318
|
+
* Only Canceled requests can be deleted — the service enforces this constraint.
|
|
319
|
+
* Maximum of 200 IDs per call matches the service-layer bulk limit.
|
|
320
|
+
*/
|
|
321
|
+
export declare const ProfileDeleteInputSchema: z.ZodObject<{
|
|
322
|
+
requestIds: z.ZodArray<z.ZodString>;
|
|
323
|
+
}, z.core.$strip>;
|
|
324
|
+
/**
|
|
325
|
+
* Type representing validated input for profile_delete tool.
|
|
326
|
+
*/
|
|
327
|
+
export type ProfileDeleteInput = z.infer<typeof ProfileDeleteInputSchema>;
|