@peernova/cuneiform-sf 1.0.2 → 1.0.4-beta.10
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 +168 -134
- 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/lifecycle.d.ts +112 -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 +393 -0
- package/lib/adapters/rest/rest-api-adapter.js +764 -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 +418 -0
- package/lib/adapters/soql/cuneiform-query-builder.js +606 -0
- package/lib/adapters/soql/cuneiform-query-builder.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 +175 -0
- package/lib/base/cuneiform-command.js +326 -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 +120 -0
- package/lib/commands/cuneiform/definition/create.js +737 -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 +277 -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 +351 -0
- package/lib/commands/cuneiform/definition/list.js.map +1 -0
- package/lib/commands/cuneiform/definition/purge.d.ts +109 -0
- package/lib/commands/cuneiform/definition/purge.js +578 -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 +209 -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 +123 -0
- package/lib/commands/cuneiform/object/list.js +264 -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 +93 -0
- package/lib/commands/cuneiform/profile.js +353 -0
- package/lib/commands/cuneiform/profile.js.map +1 -0
- package/lib/commands/cuneiform/summary/purge.d.ts +80 -0
- package/lib/commands/cuneiform/summary/purge.js +467 -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 +77 -0
- package/lib/commands/cuneiform/user/details.js +414 -0
- package/lib/commands/cuneiform/user/details.js.map +1 -0
- package/lib/constants/namespace-constants.d.ts +102 -0
- package/lib/constants/namespace-constants.js +225 -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/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 +310 -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 +220 -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 +327 -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/cascade-skip-accumulator.d.ts +25 -0
- package/lib/models/cascade-skip-accumulator.js +9 -0
- package/lib/models/cascade-skip-accumulator.js.map +1 -0
- package/lib/models/date-literal.d.ts +280 -0
- package/lib/models/date-literal.js +1164 -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/portability-recipe.d.ts +35 -0
- package/lib/models/portability-recipe.js +113 -0
- package/lib/models/portability-recipe.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 +49 -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 +188 -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 +427 -0
- package/lib/operations/DefinitionCreateOperation.js +1270 -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 +203 -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 +192 -0
- package/lib/operations/ProfileOperation.js +371 -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 +98 -0
- package/lib/services/ConfigureMode.js +413 -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 +357 -0
- package/lib/services/DefinitionFieldGenerationService.js +899 -0
- package/lib/services/DefinitionFieldGenerationService.js.map +1 -0
- package/lib/services/DefinitionQueryBuilder.d.ts +92 -0
- package/lib/services/DefinitionQueryBuilder.js +328 -0
- package/lib/services/DefinitionQueryBuilder.js.map +1 -0
- package/lib/services/ObjectDescribeService.d.ts +436 -0
- package/lib/services/ObjectDescribeService.js +881 -0
- package/lib/services/ObjectDescribeService.js.map +1 -0
- package/lib/services/ObjectFilteringService.d.ts +484 -0
- package/lib/services/ObjectFilteringService.js +1080 -0
- package/lib/services/ObjectFilteringService.js.map +1 -0
- package/lib/services/ObjectListCommandService.d.ts +467 -0
- package/lib/services/ObjectListCommandService.js +904 -0
- package/lib/services/ObjectListCommandService.js.map +1 -0
- package/lib/services/ObjectListService.d.ts +201 -0
- package/lib/services/ObjectListService.js +350 -0
- package/lib/services/ObjectListService.js.map +1 -0
- package/lib/services/OrgInfoService.d.ts +493 -0
- package/lib/services/OrgInfoService.js +1142 -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 +575 -0
- package/lib/services/ProfilingDefinitionService.js +1029 -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 +688 -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 +146 -0
- package/lib/services/SFDMUService.js +323 -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 +158 -0
- package/lib/services/UserConfigurationService.js +574 -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 +347 -0
- package/lib/services/UserReadinessService.js +891 -0
- package/lib/services/UserReadinessService.js.map +1 -0
- package/lib/services/constants.d.ts +54 -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/namespace-filter.d.ts +36 -0
- package/lib/services/namespace-filter.js +109 -0
- package/lib/services/namespace-filter.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 +230 -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 +117 -0
- package/lib/utils/formatting/object-describe-display.js +447 -0
- package/lib/utils/formatting/object-describe-display.js.map +1 -0
- package/lib/utils/formatting/object-list-display.d.ts +225 -0
- package/lib/utils/formatting/object-list-display.js +718 -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/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 +525 -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 +330 -0
- package/messages/definition.update.md +118 -0
- package/messages/mcp.serve.md +66 -0
- package/messages/object.describe.md +205 -0
- package/messages/object.list.md +463 -0
- package/messages/org.details.md +386 -0
- package/messages/org.reset.md +71 -0
- package/messages/profile.md +243 -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 +3267 -2148
- package/oclif.manifest.json +2829 -31
- package/package.json +104 -18
- 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,205 @@
|
|
|
1
|
+
# summary
|
|
2
|
+
|
|
3
|
+
Retrieve comprehensive object metadata — fields, record types, data age distribution, relationships, and profiling status — to make informed decisions about what and how to profile.
|
|
4
|
+
|
|
5
|
+
# description
|
|
6
|
+
|
|
7
|
+
Understanding an object before profiling it is the difference between a targeted assessment and a fishing expedition. Salesforce scatters object metadata across Object Manager, Schema Builder, and Setup. This command consolidates everything into structured sections from a single call:
|
|
8
|
+
|
|
9
|
+
- **Object Summary** — record count, field totals, type
|
|
10
|
+
- **Record Age Distribution** — year-by-year grid showing when records were created (Cuneiform-exclusive), revealing whether data is actively growing, historical, or stagnant
|
|
11
|
+
- **Record Types** — name, developer name, active status, default flag
|
|
12
|
+
- **Business Processes** — active processes with record type associations and per-process record age grids
|
|
13
|
+
- **Field Summary** — total, standard, custom, formula, lookup counts
|
|
14
|
+
- **Field Type Distribution** — type counts with percentages
|
|
15
|
+
- **Namespace Breakdown** — fields grouped by namespace prefix showing which managed packages contribute fields
|
|
16
|
+
- **External References** — other objects that reference this one via lookups or master-detail
|
|
17
|
+
- **Outbound Lookups** — this object's lookup fields and their target objects
|
|
18
|
+
- **Profiling Status** — existing definitions, summary counts, last profiled date
|
|
19
|
+
- **Field Listing** (opt-in via `--with-fields`) — individual field detail with filtering and sorting
|
|
20
|
+
|
|
21
|
+
The record age distribution and per-business-process age grids directly inform the choice between metadata, historical, and comparative profiling methods. The profiling status section shows whether definitions already exist, preventing duplicate work.
|
|
22
|
+
|
|
23
|
+
NATURAL LANGUAGE → FLAG MAPPING:
|
|
24
|
+
|
|
25
|
+
"Show me the fields" → `--with-fields`
|
|
26
|
+
"Just the lookup fields" → `--with-fields --field-type lookup`
|
|
27
|
+
"Just custom fields" → `--with-fields --field-pattern "*__c"`
|
|
28
|
+
"Sort fields by type" → `--with-fields --sort type`
|
|
29
|
+
"Compare multiple objects" → `--object Account,Contact,Opportunity`
|
|
30
|
+
|
|
31
|
+
For multiple objects (comma-separated), describes run in parallel with aggregate totals across all objects. Big Objects (**b) and External Objects (**x) are not supported — they lack standard SOQL support.
|
|
32
|
+
|
|
33
|
+
Read-only. Does not modify objects, fields, or metadata. The access gate validates Cuneiform installation and permissions before queries execute.
|
|
34
|
+
|
|
35
|
+
COMMAND SEQUENCE: `object list` (identify objects of interest) → `object describe` (deep dive on specific objects) → `definition create` (define profiling scope based on what you learned)
|
|
36
|
+
|
|
37
|
+
# flags.target-org.summary
|
|
38
|
+
|
|
39
|
+
Describe objects from this Salesforce org. Specify the org alias or username when you have multiple authenticated orgs.
|
|
40
|
+
|
|
41
|
+
# flags.object.summary
|
|
42
|
+
|
|
43
|
+
Object API name(s), comma-separated. Use one name for a complete deep dive or multiple for side-by-side comparison with aggregate totals (e.g., `Account,Contact,Opportunity`).
|
|
44
|
+
|
|
45
|
+
# flags.with-fields.summary
|
|
46
|
+
|
|
47
|
+
Include a detailed field listing and expand the Relationships and Lookups tables to show all rows (no truncation). Use with `--field-type`, `--field-pattern`, and `--sort` to filter and organize the field listing.
|
|
48
|
+
|
|
49
|
+
# flags.field-type.summary
|
|
50
|
+
|
|
51
|
+
Filter the field listing to a specific type (requires `--with-fields`). Valid types: text, picklist, lookup, number, date, formula, checkbox, id, address. Use `lookup` to map the object's relationship network.
|
|
52
|
+
|
|
53
|
+
# flags.field-pattern.summary
|
|
54
|
+
|
|
55
|
+
Filter the field listing by API name pattern with wildcard support (requires `--with-fields`). Examples: `*__c` for custom fields, `pnova__*` for Cuneiform namespace fields.
|
|
56
|
+
|
|
57
|
+
# flags.sort.summary
|
|
58
|
+
|
|
59
|
+
Sort the field listing by: `name` (alphabetical, the default), `type` (grouped by field type), or `label`. Requires `--with-fields`.
|
|
60
|
+
|
|
61
|
+
# examples
|
|
62
|
+
|
|
63
|
+
- Assess an object before building profiling definitions — see all 11 metadata sections:
|
|
64
|
+
|
|
65
|
+
<%= config.bin %> <%= command.id %> --object Account --target-org myOrg
|
|
66
|
+
|
|
67
|
+
- Compare multiple objects in parallel with aggregate totals for profiling scope decisions:
|
|
68
|
+
|
|
69
|
+
<%= config.bin %> <%= command.id %> --object Account,Contact,Opportunity --target-org myOrg
|
|
70
|
+
|
|
71
|
+
- Full field inventory — add detailed field listings to see every field on the object:
|
|
72
|
+
|
|
73
|
+
<%= config.bin %> <%= command.id %> --object Account --with-fields --target-org myOrg
|
|
74
|
+
|
|
75
|
+
- Full relationship listing — expand the Relationships and Lookups tables to show all rows (suppresses the "... (N more)" truncation):
|
|
76
|
+
|
|
77
|
+
<%= config.bin %> <%= command.id %> --object Case --with-fields --target-org myOrg
|
|
78
|
+
|
|
79
|
+
- Relationship mapping — isolate lookup fields to understand the object's position in the data model:
|
|
80
|
+
|
|
81
|
+
<%= config.bin %> <%= command.id %> --object Account --with-fields --field-type lookup --sort type --target-org myOrg
|
|
82
|
+
|
|
83
|
+
- Custom field audit — filter to custom fields for a managed package or customization review:
|
|
84
|
+
|
|
85
|
+
<%= config.bin %> <%= command.id %> --object Account --with-fields --field-pattern "\*\_\_c" --target-org myOrg
|
|
86
|
+
|
|
87
|
+
- JSON for automation — pipe structured metadata to assessment pipelines or architecture documentation:
|
|
88
|
+
|
|
89
|
+
<%= config.bin %> <%= command.id %> --object Account --json --target-org myOrg
|
|
90
|
+
|
|
91
|
+
# output.identity.header
|
|
92
|
+
|
|
93
|
+
Org Identity
|
|
94
|
+
|
|
95
|
+
# output.identity.orgName
|
|
96
|
+
|
|
97
|
+
Org Name
|
|
98
|
+
|
|
99
|
+
# output.identity.orgId
|
|
100
|
+
|
|
101
|
+
Org ID
|
|
102
|
+
|
|
103
|
+
# output.identity.instanceUrl
|
|
104
|
+
|
|
105
|
+
Instance URL
|
|
106
|
+
|
|
107
|
+
# output.identity.orgType
|
|
108
|
+
|
|
109
|
+
Org Type
|
|
110
|
+
|
|
111
|
+
# output.identity.edition
|
|
112
|
+
|
|
113
|
+
Edition
|
|
114
|
+
|
|
115
|
+
# output.identity.namespace
|
|
116
|
+
|
|
117
|
+
Namespace
|
|
118
|
+
|
|
119
|
+
# output.identity.username
|
|
120
|
+
|
|
121
|
+
Username
|
|
122
|
+
|
|
123
|
+
# errors.orgIdentityFailed
|
|
124
|
+
|
|
125
|
+
Could not retrieve org identity information. Continuing without org context.
|
|
126
|
+
|
|
127
|
+
# output.table.recordTypes.name
|
|
128
|
+
|
|
129
|
+
Name
|
|
130
|
+
|
|
131
|
+
# output.table.recordTypes.developerName
|
|
132
|
+
|
|
133
|
+
Developer Name
|
|
134
|
+
|
|
135
|
+
# output.table.recordTypes.active
|
|
136
|
+
|
|
137
|
+
Active
|
|
138
|
+
|
|
139
|
+
# output.table.recordTypes.default
|
|
140
|
+
|
|
141
|
+
Default
|
|
142
|
+
|
|
143
|
+
# output.table.fieldTypes.type
|
|
144
|
+
|
|
145
|
+
Type
|
|
146
|
+
|
|
147
|
+
# output.table.fieldTypes.count
|
|
148
|
+
|
|
149
|
+
Count
|
|
150
|
+
|
|
151
|
+
# output.table.fieldTypes.percent
|
|
152
|
+
|
|
153
|
+
Percent
|
|
154
|
+
|
|
155
|
+
# output.table.namespaces.namespace
|
|
156
|
+
|
|
157
|
+
Namespace
|
|
158
|
+
|
|
159
|
+
# output.table.namespaces.fieldCount
|
|
160
|
+
|
|
161
|
+
Field Count
|
|
162
|
+
|
|
163
|
+
# output.table.fields.apiName
|
|
164
|
+
|
|
165
|
+
API Name
|
|
166
|
+
|
|
167
|
+
# output.table.fields.label
|
|
168
|
+
|
|
169
|
+
Label
|
|
170
|
+
|
|
171
|
+
# output.table.fields.type
|
|
172
|
+
|
|
173
|
+
Type
|
|
174
|
+
|
|
175
|
+
# output.table.fields.custom
|
|
176
|
+
|
|
177
|
+
Custom
|
|
178
|
+
|
|
179
|
+
# output.table.fields.namespace
|
|
180
|
+
|
|
181
|
+
Namespace
|
|
182
|
+
|
|
183
|
+
# output.table.relationships.relatedObject
|
|
184
|
+
|
|
185
|
+
Related Object
|
|
186
|
+
|
|
187
|
+
# output.table.relationships.field
|
|
188
|
+
|
|
189
|
+
Field
|
|
190
|
+
|
|
191
|
+
# output.table.lookups.lookupField
|
|
192
|
+
|
|
193
|
+
Lookup Field
|
|
194
|
+
|
|
195
|
+
# output.table.lookups.targetObject
|
|
196
|
+
|
|
197
|
+
Target Object
|
|
198
|
+
|
|
199
|
+
# output.table.profilingStatus.name
|
|
200
|
+
|
|
201
|
+
Definition
|
|
202
|
+
|
|
203
|
+
# output.table.profilingStatus.lastProfiled
|
|
204
|
+
|
|
205
|
+
Last Profiled
|
|
@@ -0,0 +1,463 @@
|
|
|
1
|
+
# summary
|
|
2
|
+
|
|
3
|
+
Enumerate Salesforce objects with record counts, type classifications, and namespace distribution — so you can identify which objects hold customer data and focus profiling on what matters.
|
|
4
|
+
|
|
5
|
+
# description
|
|
6
|
+
|
|
7
|
+
A typical Salesforce org contains 500 to 2,000 objects. Most are empty platform objects, managed package internals, or system metadata. Finding the objects that actually hold customer data — the ones worth profiling — requires navigating Object Manager, running SOQL counts, and cross-referencing namespace prefixes. This command transforms that exploration into a single call with filter flags and enrichment options.
|
|
8
|
+
|
|
9
|
+
The default customer-facing classification filter focuses attention on objects most likely relevant for profiling scope decisions. Record counts distinguish populated objects from empty shells. Namespace distribution reveals how the org's data is partitioned across standard Salesforce, industry clouds, managed packages, and custom development.
|
|
10
|
+
|
|
11
|
+
**Six output sections:**
|
|
12
|
+
|
|
13
|
+
- **Org Identity** — org name, edition, instance URL
|
|
14
|
+
- **Summary Statistics** — total objects, objects with records, standard/custom/external counts, namespace distribution
|
|
15
|
+
- **Namespace Distribution** — objects grouped by standard, industry, managed, and custom categories
|
|
16
|
+
- **Objects Table** — name, label, record count, type, namespace — plus optional enrichment columns
|
|
17
|
+
- **Contact Points** — email, phone, and URL field details (when `--with-contact-points` is specified)
|
|
18
|
+
- **Next Steps** — `object describe` for field-level deep dives, `definition create` for profiling scope
|
|
19
|
+
|
|
20
|
+
NATURAL LANGUAGE → FLAG MAPPING:
|
|
21
|
+
|
|
22
|
+
"Which objects have data?" → `--with-records`
|
|
23
|
+
"What custom objects exist?" → `--filter custom`
|
|
24
|
+
"What did CPQ add to this org?" → `--namespace SBQQ`
|
|
25
|
+
"Which objects match a name?" → `--pattern Account*`
|
|
26
|
+
"Which objects have meaningful volume?" → `--min-records 1000`
|
|
27
|
+
"Which objects can be assigned to users?" → `--with-owner`
|
|
28
|
+
"Which objects have record type segmentation?" → `--with-record-types`
|
|
29
|
+
"Where are email, phone, and address fields?" → `--with-contact-points`
|
|
30
|
+
"How complex is each object?" → `--with-fields`
|
|
31
|
+
"Which objects reference other objects?" → `--with-references`
|
|
32
|
+
|
|
33
|
+
**How this differs from `object describe`:** This command shows the broad inventory across many objects. Use `object describe` when you need the deep dive on a specific object's fields, record types, relationships, and data age.
|
|
34
|
+
|
|
35
|
+
Read-only. Does not create, modify, or delete records or metadata. Results default to customer-facing classification, sorted by record count descending, paginated at 50 with a visible notice when more exist.
|
|
36
|
+
|
|
37
|
+
COMMAND SEQUENCE: `org details` (understand the org landscape) → `object list` (identify objects of interest) → `object describe` (deep dive on specific objects) → `definition create` (define profiling scope)
|
|
38
|
+
|
|
39
|
+
# flags.target-org.summary
|
|
40
|
+
|
|
41
|
+
List objects from this Salesforce org. Specify the org alias or username when you have multiple authenticated orgs.
|
|
42
|
+
|
|
43
|
+
# flags.object.summary
|
|
44
|
+
|
|
45
|
+
Fetch a single object by API name — bypasses all filters and the limit cap, and always returns the real record count. Use this when you know the exact object you need (e.g., `--object Lead`). Mutually exclusive with --filter (non-default), --namespace, --pattern, --without-records, and --min-records.
|
|
46
|
+
|
|
47
|
+
# flags.filter.summary
|
|
48
|
+
|
|
49
|
+
Filter by object type: `standard`, `custom`, or `all`. Use `custom` to audit custom data model objects or `standard` to focus on platform objects. Defaults to `all`.
|
|
50
|
+
|
|
51
|
+
# flags.namespace.summary
|
|
52
|
+
|
|
53
|
+
Filter by namespace prefix (case-insensitive). Accepts a single namespace (`SBQQ`), a comma-separated list (`SBQQ,FinServ`), or the `all` sentinel to disable namespace filtering. Use an empty string for unmanaged objects only.
|
|
54
|
+
|
|
55
|
+
# flags.pattern.summary
|
|
56
|
+
|
|
57
|
+
Filter by API name pattern with wildcard support. Examples: `Account*` matches Account and AccountContactRelation; `*__c` matches custom objects.
|
|
58
|
+
|
|
59
|
+
# flags.with-records.summary
|
|
60
|
+
|
|
61
|
+
Show only objects that contain data (record count > 0). Filters out empty platform infrastructure and focuses on populated objects worth profiling.
|
|
62
|
+
|
|
63
|
+
# flags.without-records.summary
|
|
64
|
+
|
|
65
|
+
Show only empty objects (record count = 0). Identifies unused objects during org cleanup or newly provisioned objects awaiting data.
|
|
66
|
+
|
|
67
|
+
# flags.with-owner.summary
|
|
68
|
+
|
|
69
|
+
Show only objects with an OwnerId field — objects whose records can be assigned to users. Identifies ownership-trackable data for profiling scope.
|
|
70
|
+
|
|
71
|
+
# flags.with-record-types.summary
|
|
72
|
+
|
|
73
|
+
Show only objects with record types defined. Record types indicate segmented data entry or business processes — relevant for deciding whether to use record-type-based profiling.
|
|
74
|
+
|
|
75
|
+
# flags.with-business-process.summary
|
|
76
|
+
|
|
77
|
+
Add a business process count column showing lifecycle processes (Lead, Opportunity, Case, Solution). Identifies objects with stage-based workflows before profiling.
|
|
78
|
+
|
|
79
|
+
# flags.with-fields.summary
|
|
80
|
+
|
|
81
|
+
Add field count columns (total fields and custom fields) to gauge object complexity. Identifies objects with large field inventories before running `object describe`.
|
|
82
|
+
|
|
83
|
+
# flags.with-references.summary
|
|
84
|
+
|
|
85
|
+
Add a reference/lookup field count column. High reference counts indicate hub objects in the data model with dense relationship networks.
|
|
86
|
+
|
|
87
|
+
# flags.classification.summary
|
|
88
|
+
|
|
89
|
+
Object classification filter: `customer` (customer-facing objects most relevant to profiling, the default), `internal` (system/platform objects), or `all`. The customer-facing filter uses heuristics based on object type, namespace, and naming patterns.
|
|
90
|
+
|
|
91
|
+
# flags.with-contact-points.summary
|
|
92
|
+
|
|
93
|
+
Add contact point columns showing email, phone, and URL field counts per object. Discovers identity resolution candidates before a contact point analysis engagement.
|
|
94
|
+
|
|
95
|
+
# flags.min-records.summary
|
|
96
|
+
|
|
97
|
+
Minimum record count threshold. Show only objects with at least this many records (e.g., `--min-records 1000` to focus on high-volume objects).
|
|
98
|
+
|
|
99
|
+
# flags.sort.summary
|
|
100
|
+
|
|
101
|
+
Sort results by: `name` (alphabetical), `recordCount` (highest first, the default), or `label`.
|
|
102
|
+
|
|
103
|
+
# flags.limit.summary
|
|
104
|
+
|
|
105
|
+
Maximum objects to display (1-200, default: 50). A notice appears when results are truncated — increase to see more, or use --pattern / --object to bypass this cap entirely.
|
|
106
|
+
|
|
107
|
+
# examples
|
|
108
|
+
|
|
109
|
+
- Explore a new org — see customer-facing objects sorted by data volume (the default starting point):
|
|
110
|
+
|
|
111
|
+
<%= config.bin %> <%= command.id %> --target-org myOrg
|
|
112
|
+
|
|
113
|
+
- Custom object audit — inventory custom objects for a handoff document or data model review:
|
|
114
|
+
|
|
115
|
+
<%= config.bin %> <%= command.id %> --target-org myOrg --filter custom
|
|
116
|
+
|
|
117
|
+
- Namespace-focused scope — see how Financial Services Cloud objects are populated:
|
|
118
|
+
|
|
119
|
+
<%= config.bin %> <%= command.id %> --target-org myOrg --namespace FinServ --with-fields --with-record-types
|
|
120
|
+
|
|
121
|
+
- Multi-package scope — combine Financial Services Cloud and CPQ in one listing:
|
|
122
|
+
|
|
123
|
+
<%= config.bin %> <%= command.id %> --target-org myOrg --namespace FinServ,SBQQ
|
|
124
|
+
|
|
125
|
+
- Disable namespace filtering explicitly — list every namespace including unmanaged:
|
|
126
|
+
|
|
127
|
+
<%= config.bin %> <%= command.id %> --target-org myOrg --namespace all
|
|
128
|
+
|
|
129
|
+
- Profiling candidates — focus on high-volume objects worth profiling:
|
|
130
|
+
|
|
131
|
+
<%= config.bin %> <%= command.id %> --target-org myOrg --with-records --min-records 1000 --sort recordCount
|
|
132
|
+
|
|
133
|
+
- Contact point discovery — find objects with email, phone, or address fields before an analysis engagement:
|
|
134
|
+
|
|
135
|
+
<%= config.bin %> <%= command.id %> --target-org myOrg --with-contact-points --with-records
|
|
136
|
+
|
|
137
|
+
- Complexity assessment — add field and reference counts to identify hub objects in the data model:
|
|
138
|
+
|
|
139
|
+
<%= config.bin %> <%= command.id %> --target-org myOrg --with-fields --with-references --with-records
|
|
140
|
+
|
|
141
|
+
# output.title
|
|
142
|
+
|
|
143
|
+
Cuneiform Object Listing for %s (%s)
|
|
144
|
+
|
|
145
|
+
# output.identity.header
|
|
146
|
+
|
|
147
|
+
Org Identity
|
|
148
|
+
|
|
149
|
+
# output.identity.orgName
|
|
150
|
+
|
|
151
|
+
Org Name
|
|
152
|
+
|
|
153
|
+
# output.identity.orgId
|
|
154
|
+
|
|
155
|
+
Org ID
|
|
156
|
+
|
|
157
|
+
# output.identity.instanceUrl
|
|
158
|
+
|
|
159
|
+
Instance URL
|
|
160
|
+
|
|
161
|
+
# output.identity.orgType
|
|
162
|
+
|
|
163
|
+
Org Type
|
|
164
|
+
|
|
165
|
+
# output.identity.edition
|
|
166
|
+
|
|
167
|
+
Edition
|
|
168
|
+
|
|
169
|
+
# output.identity.namespace
|
|
170
|
+
|
|
171
|
+
Namespace
|
|
172
|
+
|
|
173
|
+
# output.identity.username
|
|
174
|
+
|
|
175
|
+
Username
|
|
176
|
+
|
|
177
|
+
# errors.mutuallyExclusiveFlags
|
|
178
|
+
|
|
179
|
+
Cannot specify both %s and %s. These flags are mutually exclusive.
|
|
180
|
+
|
|
181
|
+
# errors.objectNotFound
|
|
182
|
+
|
|
183
|
+
Object "%s" was not found in this org. Check the API name spelling and run without --object to browse available objects.
|
|
184
|
+
|
|
185
|
+
# errors.noTargetOrg
|
|
186
|
+
|
|
187
|
+
Could not determine target org username
|
|
188
|
+
|
|
189
|
+
# errors.orgIdentityFailed
|
|
190
|
+
|
|
191
|
+
Could not retrieve org identity
|
|
192
|
+
|
|
193
|
+
# output.summary.header
|
|
194
|
+
|
|
195
|
+
Summary
|
|
196
|
+
|
|
197
|
+
# output.summary.totalObjects
|
|
198
|
+
|
|
199
|
+
Total Objects
|
|
200
|
+
|
|
201
|
+
# output.summary.withRecords
|
|
202
|
+
|
|
203
|
+
With Records
|
|
204
|
+
|
|
205
|
+
# output.summary.withoutRecords
|
|
206
|
+
|
|
207
|
+
Without Records
|
|
208
|
+
|
|
209
|
+
# output.summary.standard
|
|
210
|
+
|
|
211
|
+
Standard
|
|
212
|
+
|
|
213
|
+
# output.summary.custom
|
|
214
|
+
|
|
215
|
+
Custom
|
|
216
|
+
|
|
217
|
+
# output.summary.withRecordTypes
|
|
218
|
+
|
|
219
|
+
With Record Types
|
|
220
|
+
|
|
221
|
+
# output.summary.withOwner
|
|
222
|
+
|
|
223
|
+
With Owner
|
|
224
|
+
|
|
225
|
+
# output.summary.external
|
|
226
|
+
|
|
227
|
+
External
|
|
228
|
+
|
|
229
|
+
# output.summary.withNamespace
|
|
230
|
+
|
|
231
|
+
With Namespace
|
|
232
|
+
|
|
233
|
+
# output.summary.withoutNamespace
|
|
234
|
+
|
|
235
|
+
Without Namespace
|
|
236
|
+
|
|
237
|
+
# output.namespaceDistribution.header
|
|
238
|
+
|
|
239
|
+
Namespace Distribution
|
|
240
|
+
|
|
241
|
+
# output.namespaceDistribution.noNamespace
|
|
242
|
+
|
|
243
|
+
No Namespace
|
|
244
|
+
|
|
245
|
+
# output.namespaceDistribution.columns.prefix
|
|
246
|
+
|
|
247
|
+
Prefix
|
|
248
|
+
|
|
249
|
+
# output.namespaceDistribution.columns.label
|
|
250
|
+
|
|
251
|
+
Label
|
|
252
|
+
|
|
253
|
+
# output.namespaceDistribution.columns.count
|
|
254
|
+
|
|
255
|
+
Count
|
|
256
|
+
|
|
257
|
+
# output.objects.header
|
|
258
|
+
|
|
259
|
+
Objects
|
|
260
|
+
|
|
261
|
+
# output.objects.limitNotice
|
|
262
|
+
|
|
263
|
+
Displaying the top %s objects. Use --limit to show more or less objects.
|
|
264
|
+
|
|
265
|
+
# output.objects.totalLabel
|
|
266
|
+
|
|
267
|
+
Total
|
|
268
|
+
|
|
269
|
+
# output.objects.unknownRecordCount
|
|
270
|
+
|
|
271
|
+
—
|
|
272
|
+
|
|
273
|
+
# output.objects.approximateLegend
|
|
274
|
+
|
|
275
|
+
~ = approximate count (from the org's record-count hint); run with --with-records for an exact count
|
|
276
|
+
|
|
277
|
+
# output.objects.noNamespace
|
|
278
|
+
|
|
279
|
+
No Namespace
|
|
280
|
+
|
|
281
|
+
# output.objects.typeCustom
|
|
282
|
+
|
|
283
|
+
Custom
|
|
284
|
+
|
|
285
|
+
# output.objects.typeStandard
|
|
286
|
+
|
|
287
|
+
Standard
|
|
288
|
+
|
|
289
|
+
# output.objects.columns.prefix
|
|
290
|
+
|
|
291
|
+
Prefix
|
|
292
|
+
|
|
293
|
+
# output.objects.columns.objectLabel
|
|
294
|
+
|
|
295
|
+
Object Label
|
|
296
|
+
|
|
297
|
+
# output.objects.columns.records
|
|
298
|
+
|
|
299
|
+
Records
|
|
300
|
+
|
|
301
|
+
# output.objects.columns.recordTypes
|
|
302
|
+
|
|
303
|
+
Rec. Types
|
|
304
|
+
|
|
305
|
+
# output.objects.columns.businessProcess
|
|
306
|
+
|
|
307
|
+
Processes
|
|
308
|
+
|
|
309
|
+
# output.objects.columns.totalFields
|
|
310
|
+
|
|
311
|
+
Fields
|
|
312
|
+
|
|
313
|
+
# output.objects.columns.custom
|
|
314
|
+
|
|
315
|
+
Custom
|
|
316
|
+
|
|
317
|
+
# output.objects.columns.reference
|
|
318
|
+
|
|
319
|
+
Reference
|
|
320
|
+
|
|
321
|
+
# output.objects.columns.totalCPs
|
|
322
|
+
|
|
323
|
+
Total CPs
|
|
324
|
+
|
|
325
|
+
# output.objects.columns.email
|
|
326
|
+
|
|
327
|
+
Email
|
|
328
|
+
|
|
329
|
+
# output.objects.columns.phone
|
|
330
|
+
|
|
331
|
+
Phone
|
|
332
|
+
|
|
333
|
+
# output.objects.columns.url
|
|
334
|
+
|
|
335
|
+
Url
|
|
336
|
+
|
|
337
|
+
# output.contactPoints.header
|
|
338
|
+
|
|
339
|
+
Contact Point Fields
|
|
340
|
+
|
|
341
|
+
# output.contactPoints.email
|
|
342
|
+
|
|
343
|
+
Email
|
|
344
|
+
|
|
345
|
+
# output.contactPoints.phone
|
|
346
|
+
|
|
347
|
+
Phone
|
|
348
|
+
|
|
349
|
+
# output.contactPoints.url
|
|
350
|
+
|
|
351
|
+
URL
|
|
352
|
+
|
|
353
|
+
# output.filters.type
|
|
354
|
+
|
|
355
|
+
Type: %s
|
|
356
|
+
|
|
357
|
+
# output.filters.namespace
|
|
358
|
+
|
|
359
|
+
Namespace: %s
|
|
360
|
+
|
|
361
|
+
# output.filters.pattern
|
|
362
|
+
|
|
363
|
+
Pattern: %s
|
|
364
|
+
|
|
365
|
+
# output.filters.withRecords
|
|
366
|
+
|
|
367
|
+
With records only
|
|
368
|
+
|
|
369
|
+
# output.filters.withoutRecords
|
|
370
|
+
|
|
371
|
+
Without records only
|
|
372
|
+
|
|
373
|
+
# output.filters.withOwner
|
|
374
|
+
|
|
375
|
+
With OwnerId field
|
|
376
|
+
|
|
377
|
+
# output.filters.withRecordTypes
|
|
378
|
+
|
|
379
|
+
With record types
|
|
380
|
+
|
|
381
|
+
# output.filters.withBusinessProcess
|
|
382
|
+
|
|
383
|
+
With business processes
|
|
384
|
+
|
|
385
|
+
# output.filters.withFields
|
|
386
|
+
|
|
387
|
+
With field counts
|
|
388
|
+
|
|
389
|
+
# output.filters.withReferences
|
|
390
|
+
|
|
391
|
+
With reference fields
|
|
392
|
+
|
|
393
|
+
# output.filters.withContactPoints
|
|
394
|
+
|
|
395
|
+
With contact points
|
|
396
|
+
|
|
397
|
+
# output.filters.classification
|
|
398
|
+
|
|
399
|
+
Classification: %s
|
|
400
|
+
|
|
401
|
+
# output.filters.minRecords
|
|
402
|
+
|
|
403
|
+
Min records: %s
|
|
404
|
+
|
|
405
|
+
# spinner.listing
|
|
406
|
+
|
|
407
|
+
Listing
|
|
408
|
+
|
|
409
|
+
# spinner.objectsNoun
|
|
410
|
+
|
|
411
|
+
objects
|
|
412
|
+
|
|
413
|
+
# spinner.enriching
|
|
414
|
+
|
|
415
|
+
Enriching objects
|
|
416
|
+
|
|
417
|
+
# output.patternHeader
|
|
418
|
+
|
|
419
|
+
Pattern
|
|
420
|
+
|
|
421
|
+
# errors.listFailed
|
|
422
|
+
|
|
423
|
+
Object list failed
|
|
424
|
+
|
|
425
|
+
# errors.invalidNamespace
|
|
426
|
+
|
|
427
|
+
%s
|
|
428
|
+
|
|
429
|
+
# warnings.sortWithoutRecords
|
|
430
|
+
|
|
431
|
+
Sorting by recordCount without --with-records: all record counts will be 0 and order will be arbitrary. Add --with-records to sort by actual data volume.
|
|
432
|
+
|
|
433
|
+
# output.entityType
|
|
434
|
+
|
|
435
|
+
objects
|
|
436
|
+
|
|
437
|
+
# output.noResults.suggestion
|
|
438
|
+
|
|
439
|
+
Try relaxing or removing the most restrictive filters
|
|
440
|
+
|
|
441
|
+
# output.nextSteps.header
|
|
442
|
+
|
|
443
|
+
Next steps:
|
|
444
|
+
|
|
445
|
+
# output.nextSteps.describeLabel
|
|
446
|
+
|
|
447
|
+
Describe %s
|
|
448
|
+
|
|
449
|
+
# output.nextSteps.describeCommand
|
|
450
|
+
|
|
451
|
+
sf cuneiform object describe %s --target-org %s
|
|
452
|
+
|
|
453
|
+
# output.nextSteps.describeCommandNoOrg
|
|
454
|
+
|
|
455
|
+
sf cuneiform object describe %s --help
|
|
456
|
+
|
|
457
|
+
# output.nextSteps.definitionCreateLabel
|
|
458
|
+
|
|
459
|
+
Create a profiling definition
|
|
460
|
+
|
|
461
|
+
# output.nextSteps.definitionCreateCommand
|
|
462
|
+
|
|
463
|
+
sf cuneiform definition create --help
|