@salesforce/afv-skills 1.32.0 → 1.33.0
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/package.json +1 -1
- package/skills/agentforce-generate/README.md +39 -41
- package/skills/agentforce-generate/SKILL.md +274 -144
- package/skills/agentforce-generate/assets/agent-spec-template.md +68 -23
- package/skills/agentforce-generate/assets/agents/README.md +24 -10
- package/skills/agentforce-generate/assets/agents/hello-world.agent +32 -37
- package/skills/agentforce-generate/assets/agents/knowledge-grounded.agent +117 -0
- package/skills/agentforce-generate/assets/{local-info-agent-annotated.agent → agents/local-info-agent-annotated.agent} +41 -78
- package/skills/agentforce-generate/assets/agents/order-service.agent +251 -243
- package/skills/agentforce-generate/assets/agents/production-faq.agent +77 -78
- package/skills/agentforce-generate/assets/agents/router-first.agent +126 -0
- package/skills/agentforce-generate/assets/agents/simple-qa.agent +42 -63
- package/skills/agentforce-generate/assets/{template-multi-subagent.agent → agents/template-multi-subagent.agent} +26 -36
- package/skills/agentforce-generate/assets/agents/template-single-subagent.agent +66 -0
- package/skills/agentforce-generate/assets/agents/verification-gate.agent +250 -247
- package/skills/agentforce-generate/assets/agents/voice-knowledge-grounded.agent +165 -0
- package/skills/agentforce-generate/assets/agents/voice-service-agent.agent +101 -0
- package/skills/agentforce-generate/assets/invocable-apex-template.cls +1 -1
- package/skills/agentforce-generate/assets/patterns/README.md +118 -60
- package/skills/agentforce-generate/assets/patterns/action-callbacks.agent +95 -165
- package/skills/agentforce-generate/assets/patterns/advanced-input-bindings.agent +136 -108
- package/skills/agentforce-generate/assets/patterns/bidirectional-routing.agent +115 -117
- package/skills/agentforce-generate/assets/patterns/critical-input-collection.agent +157 -155
- package/skills/agentforce-generate/assets/patterns/delegation-routing.agent +69 -18
- package/skills/agentforce-generate/assets/patterns/lifecycle-events.agent +91 -92
- package/skills/agentforce-generate/assets/patterns/llm-controlled-actions.agent +111 -178
- package/skills/agentforce-generate/assets/patterns/multi-step-workflow.agent +209 -268
- package/skills/agentforce-generate/assets/patterns/open-gate-routing.agent +224 -254
- package/skills/agentforce-generate/assets/patterns/procedural-instructions.agent +91 -256
- package/skills/agentforce-generate/assets/patterns/prompt-template-action.agent +123 -137
- package/skills/agentforce-generate/assets/patterns/system-instruction-overrides.agent +196 -216
- package/skills/agentforce-generate/references/action-prompt-templates.md +3 -0
- package/skills/agentforce-generate/references/actions-reference.md +113 -35
- package/skills/agentforce-generate/references/agent-design-and-spec-creation.md +271 -116
- package/skills/agentforce-generate/references/agent-metadata-and-lifecycle.md +16 -16
- package/skills/agentforce-generate/references/agent-script-core-language.md +91 -39
- package/skills/agentforce-generate/references/agent-subagent-map-diagrams.md +57 -49
- package/skills/agentforce-generate/references/agent-user-setup.md +153 -10
- package/skills/agentforce-generate/references/agent-validation-and-debugging.md +118 -45
- package/skills/agentforce-generate/references/architecture-patterns.md +157 -101
- package/skills/agentforce-generate/references/data-library-reference.md +891 -0
- package/skills/agentforce-generate/references/deploy-reference.md +32 -10
- package/skills/agentforce-generate/references/discover-reference.md +4 -5
- package/skills/agentforce-generate/references/examples.md +84 -14
- package/skills/agentforce-generate/references/feature-validity.md +2 -2
- package/skills/agentforce-generate/references/instruction-resolution.md +227 -154
- package/skills/agentforce-generate/references/known-issues.md +16 -6
- package/skills/agentforce-generate/references/mcp-management-reference.md +1125 -0
- package/skills/agentforce-generate/references/optimization-pattern-1-data-flow.md +119 -0
- package/skills/agentforce-generate/references/optimization-pattern-2-deterministic-logic.md +111 -0
- package/skills/agentforce-generate/references/optimization-pattern-3-reference-syntax.md +79 -0
- package/skills/agentforce-generate/references/optimization-pattern-4-escalation.md +61 -0
- package/skills/agentforce-generate/references/org-setup-for-adl.md +551 -0
- package/skills/agentforce-generate/references/patterns-by-requirement.md +86 -0
- package/skills/agentforce-generate/references/posture-and-determinism.md +134 -0
- package/skills/agentforce-generate/references/production-gotchas.md +47 -46
- package/skills/agentforce-generate/references/reference-map.md +67 -0
- package/skills/agentforce-generate/references/safety-review-reference.md +3 -3
- package/skills/agentforce-generate/references/salesforce-cli-for-agents.md +42 -6
- package/skills/agentforce-generate/references/scaffold-reference.md +8 -9
- package/skills/agentforce-generate/references/scoring-rubric.md +16 -8
- package/skills/agentforce-generate/references/version-history.md +1 -0
- package/skills/agentforce-generate/references/voice-latency-heuristics.md +194 -0
- package/skills/agentforce-generate/references/voice-modality-reference.md +230 -0
- package/skills/agentforce-generate/references/zen-of-agentscript.md +291 -0
- package/skills/agentforce-generate/scripts/__init__.py +0 -0
- package/skills/agentforce-generate/scripts/discover.py +565 -0
- package/skills/agentforce-generate/scripts/generators/__init__.py +0 -0
- package/skills/agentforce-generate/scripts/generators/apex_stub.py +384 -0
- package/skills/agentforce-generate/scripts/generators/apex_test_stub.py +121 -0
- package/skills/agentforce-generate/scripts/generators/flow_xml.py +213 -0
- package/skills/agentforce-generate/scripts/generators/permission_set_xml.py +35 -0
- package/skills/agentforce-generate/scripts/generators/remote_site_xml.py +49 -0
- package/skills/agentforce-generate/scripts/org_describe.py +176 -0
- package/skills/agentforce-generate/scripts/scaffold.py +429 -0
- package/skills/agentforce-observe/SKILL.md +28 -7
- package/skills/agentforce-observe/references/improve-reference.md +23 -17
- package/skills/agentforce-observe/references/issue-classification.md +3 -3
- package/skills/agentforce-observe/references/reproduce-reference.md +4 -3
- package/skills/agentforce-observe/references/stdm-queries.md +12 -4
- package/skills/agentforce-observe/references/stdm-schema.md +2 -2
- package/skills/agentforce-test/SKILL.md +231 -15
- package/skills/agentforce-test/assets/payloads/excessive-agency.yaml +110 -0
- package/skills/agentforce-test/assets/payloads/misinformation.yaml +129 -0
- package/skills/agentforce-test/assets/payloads/output-handling.yaml +96 -0
- package/skills/agentforce-test/assets/payloads/prompt-injection.yaml +120 -0
- package/skills/agentforce-test/assets/payloads/sensitive-info-disclosure.yaml +130 -0
- package/skills/agentforce-test/assets/payloads/system-prompt-leakage.yaml +134 -0
- package/skills/agentforce-test/assets/payloads/unbounded-consumption.yaml +103 -0
- package/skills/agentforce-test/references/action-execution.md +35 -33
- package/skills/agentforce-test/references/batch-testing.md +1 -1
- package/skills/agentforce-test/references/owasp-categories.md +179 -0
- package/skills/agentforce-test/references/preview-testing.md +6 -5
- package/skills/agentforce-test/references/remediation-guide.md +211 -0
- package/skills/agentforce-test/references/security-scoring-methodology.md +95 -0
- package/skills/agentforce-test/references/security-test-design.md +332 -0
- package/skills/agentforce-test/references/security-troubleshooting.md +218 -0
- package/skills/agentforce-test/references/test-report-format.md +3 -3
- package/skills/agentforce-test/references/troubleshooting.md +13 -3
- package/skills/design-systems-slds-apply/SKILL.md +13 -6
- package/skills/design-systems-slds-apply/references/component-selection.md +1 -1
- package/skills/design-systems-slds-apply/{examples.md → references/examples.md} +1 -1
- package/skills/design-systems-slds-apply/references/icons-decision-guide.md +1 -1
- package/skills/design-systems-slds-apply/references/overviews/utilities.md +1 -1
- package/skills/design-systems-slds-apply/references/slds-development-guide.md +2 -2
- package/skills/design-systems-slds-apply/references/styling-decision-guide.md +1 -1
- package/skills/dx-org-permission-set-assign/SKILL.md +5 -1
- package/skills/experience-lds-data-requirements-generate/SKILL.md +172 -0
- package/skills/experience-lds-data-requirements-generate/references/api-name-validation.md +65 -0
- package/skills/experience-lds-data-requirements-generate/references/api-recommendation.md +96 -0
- package/skills/experience-lds-data-requirements-generate/references/lds-data-consistency.md +112 -0
- package/skills/experience-lds-data-requirements-generate/references/lds-expert.md +180 -0
- package/skills/experience-lds-data-requirements-generate/references/lds-referential-integrity.md +248 -0
- package/skills/experience-lds-data-requirements-generate/references/requirements-analysis.md +49 -0
- package/skills/experience-lwr-site-generate/SKILL.md +256 -0
- package/skills/experience-lwr-site-generate/references/bootstrap-template-byo-lwr.md +283 -0
- package/skills/experience-lwr-site-generate/references/configure-content-brandingSet.md +141 -0
- package/skills/experience-lwr-site-generate/references/configure-content-route.md +232 -0
- package/skills/experience-lwr-site-generate/references/configure-content-themeLayout.md +145 -0
- package/skills/experience-lwr-site-generate/references/configure-content-view.md +233 -0
- package/skills/experience-lwr-site-generate/references/configure-guest-sharing-rules.md +49 -0
- package/skills/experience-lwr-site-generate/references/handle-component-and-region-ids.md +27 -0
- package/skills/experience-lwr-site-generate/references/handle-ui-components.md +216 -0
- package/skills/experience-lwr-site-generate/references/update-site-urls.md +100 -0
- package/skills/experience-ui-bundle-app-coordinate/SKILL.md +88 -122
- package/skills/experience-ui-bundle-app-coordinate/references/phase-completion-validation.md +72 -0
- package/skills/experience-ui-bundle-app-coordinate/references/phase-custom-objects.md +34 -0
- package/skills/experience-ui-bundle-app-coordinate/references/phase-execution-pattern.md +24 -0
- package/skills/experience-ui-bundle-app-coordinate/scripts/check-dangling-refs.sh +42 -0
- package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-1-complete.sh +35 -0
- package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-4-complete.sh +47 -0
- package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-6-ready.sh +33 -0
- package/skills/experience-ui-bundle-app-coordinate/scripts/check-prerequisites.sh +20 -0
- package/skills/experience-ui-bundle-deploy/SKILL.md +234 -70
- package/skills/experience-ui-bundle-deploy/assets/data-delete.apex +36 -0
- package/skills/experience-ui-bundle-deploy/assets/data-import.apex +60 -0
- package/skills/experience-ui-bundle-deploy/assets/network-selfreg-xml-recipe.md +86 -0
- package/skills/experience-ui-bundle-deploy/assets/network-selfreg.apex +41 -0
- package/skills/experience-ui-bundle-deploy/assets/org-setup.config.template.json +17 -0
- package/skills/experience-ui-bundle-deploy/assets/prepare-import-unique-fields.js +45 -0
- package/skills/experience-ui-bundle-deploy/references/config-scaffold.md +74 -0
- package/skills/experience-ui-bundle-deploy/references/data-import.md +105 -0
- package/skills/experience-ui-bundle-deploy/references/dev-preview.md +48 -0
- package/skills/experience-ui-bundle-deploy/references/graphql.md +29 -0
- package/skills/experience-ui-bundle-deploy/references/license-checks.md +65 -0
- package/skills/experience-ui-bundle-deploy/references/role-assignment.md +41 -0
- package/skills/experience-ui-bundle-deploy/references/self-registration.md +86 -0
- package/skills/experience-ui-bundle-deploy/scripts/derive-site-name.sh +40 -0
- package/skills/experience-ui-bundle-deploy/scripts/find-data-plan.sh +41 -0
- package/skills/experience-ui-bundle-deploy/scripts/find-prep-script.sh +35 -0
- package/skills/experience-ui-bundle-deploy/scripts/get-source-root.sh +29 -0
- package/skills/experience-ui-bundle-frontend-generate/SKILL.md +47 -7
- package/skills/experience-ui-bundle-frontend-generate/references/component.md +2 -1
- package/skills/experience-ui-bundle-frontend-generate/references/header-footer.md +2 -1
- package/skills/experience-ui-bundle-frontend-generate/references/page.md +1 -1
- package/skills/experience-ui-bundle-frontend-generate/scripts/check-preconditions.sh +37 -0
- package/skills/experience-ui-bundle-frontend-generate/scripts/resolve-ui-bundle.sh +66 -0
- package/skills/experience-ui-bundle-frontend-generate/scripts/verify-rules.sh +58 -0
- package/skills/experience-ui-bundle-metadata-generate/SKILL.md +21 -13
- package/skills/experience-ui-bundle-metadata-generate/scripts/verify-bundle-location.sh +96 -0
- package/skills/experience-ui-bundle-mfa-configure/SKILL.md +385 -0
- package/skills/experience-ui-bundle-mfa-configure/assets/API_Enabled_For_Community.permissionset-meta.xml +10 -0
- package/skills/experience-ui-bundle-mfa-configure/assets/MFA_Required_For_Community.permissionset-meta.xml +10 -0
- package/skills/experience-ui-bundle-mfa-configure/references/branding.md +63 -0
- package/skills/experience-ui-bundle-mfa-configure/references/setup.md +154 -0
- package/skills/experience-ui-bundle-mfa-configure/references/social-login.md +63 -0
- package/skills/integration-connectivity-connected-app-configure/SKILL.md +16 -0
- package/skills/platform-custom-lightning-type-generate/SKILL.md +4 -2
- package/skills/platform-custom-lightning-type-generate/references/widget-rendition.md +1 -1
- package/skills/platform-data-and-tooling-api-context-get/SKILL.md +448 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIApplication.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIApplicationConfig.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightAction.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightFeedback.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightReason.json +204 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightValue.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIRecordInsight.json +215 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIResearchPromptResult.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/API_Total_Usage.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AbnExperiment.json +287 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AbnExperimentCohort.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AcceptedEventRelation.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Account.json +1223 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountBrand.json +267 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountCleanInfo.json +1046 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountContactRelation.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountContactRole.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountInsight.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountOwnerSharingRule.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPartner.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlan.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcCond.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcDef.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcDefLocalization.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasRela.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjective.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjectiveMeasure.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountRelationship.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountRelationshipShareRule.json +154 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountShare.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTeamMember.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritoryAssignmentRule.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritoryAssignmentRuleItem.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritorySharingRule.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountUserTerritory2View.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadence.json +234 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceRule.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceRuleCondition.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStep.json +625 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStepTracker.json +272 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStepVariant.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceTracker.json +232 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCdncStpMonthlyMetric.json +668 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionLinkGroupTemplate.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionLinkTemplate.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlan.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanItem.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplate.json +224 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateItem.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateItemValue.json +165 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateVersion.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveFeatureLicenseMetric.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivePermSetLicenseMetric.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveProfileMetric.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveScratchOrg.json +250 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityFieldHistory.json +191 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityHistory.json +396 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityMetric.json +218 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityUsrConnectionStatus.json +161 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AdditionalNumber.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Address.json +278 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWork.json +539 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWorkConversationalData.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWorkSkill.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiGenActionItem.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiGenActionItemInfo.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiJobRun.json +162 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiJobRunItem.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiModelLanguage.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AllowedEmailDomain.json +23 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AlternativePaymentMethod.json +479 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsAssetAction.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsChangeEventLog.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsContainerWidgetDef.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDashboard.json +204 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDashboardWidget.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDownloadEventLog.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsInteractEventLog.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsLicensedAsset.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsPerfEventLog.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVisualization.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVizField.json +203 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVizViewDef.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsWorkspace.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsWorkspaceAsset.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Announcement.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexCalloutEventLog.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexClass.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexComponent.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexEmailNotification.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexExecutionEventLog.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexExtlCalloutEventLog.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexInlineEventLog.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexLog.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexPage.json +157 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexPageInfo.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexRestApiEventLog.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexSoapApiEventLog.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestQueueItem.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestResult.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestResultLimits.json +198 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestRunResult.json +216 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestSuite.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTrigger.json +221 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTriggerEventLog.json +114 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTypeImplementor.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexUnexpectedExcpEventLog.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Callout_Event_Type.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Execution_Event_Type.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Inline_Event_Type.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_REST_API_Event_Type.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_SOAP_Event_Type.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Trigger_Event_Type.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Unexpected_Exception_Event_Type.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApiTotalUsageEventLog.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppAnalyticsQueryRequest.json +225 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppDefinition.json +218 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppExtension.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppMenuItem.json +364 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppTabMember.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppUsageAssignment.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApplicationFormTemplate.json +155 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentAssignmentPolicy.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentScheduleAggr.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentScheduleLog.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentSchedulingPolicy.json +218 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentTopicTimeSlot.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Approval.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalAlertContentDef.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalSubmission.json +208 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalSubmissionDetail.json +174 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItem.json +259 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItemCondition.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItemCriteria.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleAggrDurDnscale.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleAggrPolicy.json +194 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleConfig.json +213 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePolicy.json +216 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePolicySvcTerr.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePropagatePolicy.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleRestrictPolicy.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleSortPolicy.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ArchiveActivity.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ArchivePolicyDefinition.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Article_Type__DataCategorySelection.json +35 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Asset.json +769 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetAction.json +394 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetActionSource.json +443 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetAttribute.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetContractRelationship.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetDowntimePeriod.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetOwnerSharingRule.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRateAdjustment.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRateCardEntry.json +189 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRelationship.json +222 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetStatePeriod.json +274 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetStatePeriodAttribute.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetTokenEvent.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetWarranty.json +241 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssignedResource.json +189 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssignmentRule.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssociatedLocation.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncApexJob.json +183 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOpSyndicationFeedFile.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOperationLog.json +193 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOperationTracker.json +260 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncReportRunEventLog.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Asynchronous_Report_Run_Event_Type.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachedContentDocument.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachedContentNote.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Attachment.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachmentEventLog.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModel.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModelStage.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModelStageMetric.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributeDefinition.json +231 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributePicklist.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributePicklistValue.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Audience.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinition.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionBundle.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionBundleInfo.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionInfo.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraRequestEventLog.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Aura_Request_Event_Type.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthConfig.json +164 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthConfigProviders.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthProvParamFwdAllowlist.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthProvider.json +376 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthSession.json +209 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationForm.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormConsent.json +239 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormDataUse.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormText.json +181 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedAction.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionCondition.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionOverride.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionParameter.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionReminder.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BackgroundOperation.json +266 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BackgroundOperationResult.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BatchApexErrorEvent.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingBatchScheduler.json +278 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingPeriodItem.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingPolicy.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingSchedule.json +345 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingScheduleGroup.json +595 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingTreatment.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingTreatmentItem.json +214 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BlockedRedirectEventLog.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Blocked_Redirect_Event_Type.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bookmark.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BotDefinition.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BotVersion.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrandTemplate.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrandingSet.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Brief.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseAssignment.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseDefinition.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseRule.json +180 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseRuleFilter.json +114 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastCommAudience.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastCommunication.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopic.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopicGroup.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopicNetwork.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrowserPolicyViolation.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApi2EventLog.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApiEventLog.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApiRequestEventLog.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_2.0_Event_Type.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_Event_Type.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_Request_Event_Type.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessAlert.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessAlertStatus.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessBrand.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessHours.json +235 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessDefinition.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessFeedback.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessGroup.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Business_Process.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerAccount.json +230 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerCriteria.json +161 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroup.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupBuyerCriteria.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupMember.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupPricebook.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupRelatedObject.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CORS_Violation_Record_Event_Type.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CSP_Violation_Event_Type.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalcProcStepRelationship.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculatedInsightRangeBound.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrix.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixColumn.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixRow.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixVersion.json +234 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedure.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureStep.json +303 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureVariable.json +182 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureVersion.json +210 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Calendar.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalendarView.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCenter.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCenterRoutingMap.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCoachingMediaProvider.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCtrAgentFavTrfrDest.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCtrAgentFavTrfrDestShare.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallDisposition.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallDispositionCategory.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallTemplate.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Campaign.json +577 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignInfluence.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignInfluenceModel.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignMember.json +389 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignMemberStatus.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignShare.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CardPaymentMethod.json +583 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartCheckoutSession.json +164 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroup.json +434 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroupMethod.json +264 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroupMethodAdj.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItem.json +751 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItemAttribute.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItemPriceAdjustment.json +265 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartTax.json +174 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartValidationOutput.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Case.json +524 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseArticle.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseComment.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseContactRole.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseHistory.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseHistory2.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseMilestone.json +297 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseOwnerSharingRule.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseParticipant.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseRelatedIssue.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseSolution.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseStatus.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseSubjectParticle.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamMember.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamRole.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplate.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplateMember.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplateRecord.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryData.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryNode.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryNodeLocalization.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequest.json +281 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequestRelatedIssue.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequestRelatedItem.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeSetOperationEventLog.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Change_Set_Operation_Event_Type.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelObjectLinkingRule.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgram.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgramLevel.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgramMember.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterActivity.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterAnswersActivity.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterAnswersReputationLevel.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterConversation.json +23 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterConversationMember.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterExtension.json +192 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterExtensionConfig.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterMessage.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ClientBrowser.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabDocumentMetric.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabDocumentMetricRecord.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabTemplateMetric.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabTemplateMetricRecord.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabUserEngagementMetric.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabUserEngmtRecordLink.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroup.json +285 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupMember.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupMemberRequest.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupRecord.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationInvitation.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationRoom.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ColorDefinition.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CombinedAttachment.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscription.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionChannelType.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionConsent.json +264 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionTiming.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementBuyerGroup.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementPolicy.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementPolicyShare.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementProduct.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommissionSchedule.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommissionScheduleAssignment.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Community.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Composite_API_Event_Type.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Composite_API_Subrequest_Event_Type.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConcurApexLimitEventLog.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Concurrent_Long-Running_Apex_Limit_Event_Type.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConferenceNumber.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConnectedApplication.json +191 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Console_Event_Type.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Consumption_Rate.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Consumption_Schedule.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContCalloutSummaryEventLog.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Contact.json +869 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactCenterChannel.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactCleanInfo.json +497 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactDailyMetric.json +441 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactMonthlyMetric.json +412 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointAddress.json +352 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointConsent.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointEmail.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointPhone.json +290 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointTypeConsent.json +253 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactRequest.json +220 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactRequestShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactSuggestionInsight.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentAsset.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentBody.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistribution.json +271 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistributionEventLog.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistributionView.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocLinkEventLog.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocument.json +292 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentHistory.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentLink.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentListViewMapping.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentSubscription.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolder.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderItem.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderLink.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderMember.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentHubItem.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentHubRepository.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentNote.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentNotification.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTagSubscription.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomy.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyRelatedTerm.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTerm.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTermRelatedTerm.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTermRelationshipType.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTransferEventLog.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentUserSubscription.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersion.json +498 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionComment.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionHistory.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionRating.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspace.json +176 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceDoc.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceMember.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspacePermission.json +201 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceSubscription.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Distribution_Event_Type.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Document_Link_Event_Type.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Transfer_Event_Type.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContextParamMap.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Continuation_Callout_Summary_Event_Type.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Contract.json +624 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractContactRole.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineItem.json +271 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineOutcome.json +216 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineOutcomeData.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractStatus.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisSummary.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisTopic.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisTopicEntry.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvIntelligenceSignalRule.json +157 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvIntelligenceSignalSubRule.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvMessageSendRequest.json +340 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Conversation.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationApiLog.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationChannelDefinition.json +336 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationContextEntry.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationEntry.json +268 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationParticipant.json +171 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationVendorInfo.json +370 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CorsWhitelistEntry.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Coupon.json +195 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CouponCodeRedemption.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemo.json +473 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoAddressGroup.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoInvApplication.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoLine.json +483 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Crisis.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CronJobDetail.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CronTrigger.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CryptoProdCatgWalletGroup.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CspTrustedSite.json +210 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CspViolationEventLog.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CurrencyType.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustExpIntlTransfSetup.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomBrand.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomBrandAsset.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomFieldDisplayValue.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHelpMenuItem.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHelpMenuSection.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHttpHeader.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomMsgChannel.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomNotificationType.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomPermission.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomPermissionDependency.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Metadata_Type__mdt.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Object__Feed.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Object___c___c.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Customer.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DandBCompany.json +1172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Dashboard.json +311 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DashboardComponent.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DashboardTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Dashboard_Event_Type.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentFieldMetric.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentMetric.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentValueMetric.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcyDataSrchExps.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcyMdatScanCrit.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcySstvDataCatg.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobObjectSession.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobSessSummary.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobSession.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicy.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicyObjField.json +32 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicyObject.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicySnapshot.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectScanResult.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataEncryptionKey.json +173 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataIntegrationRecordPurchasePermission.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataKitDeployEvent.json +162 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataKitDeploymentLog.json +285 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataMaskCustomValueLibrary.json +157 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataStatistics.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataUseLegalBasis.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataUsePurpose.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataWeaveResource.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatabaseSaveEventLog.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Database_Save_Event_Type.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudCompany.json +471 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudContact.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudDandBCompany.json +1201 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudOwnedEntity.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudPurchaseUsage.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatasetExport.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatasetExportPart.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatedConversionRate.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DealIndirectPartner.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeclinedEventRelation.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DelegatedAccount.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeleteEvent.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeliveryEstimationSetup.json +243 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsActivityLog.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvDeployment.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvDeploymentMbr.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvironment.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipeline.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineEnvironment.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineStage.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineStageTrigger.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineTestProvider.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelnStgProm.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelnStgPromWkItem.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsProject.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsProjectPipeline.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGate.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateResult.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateRule.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateRuleResult.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsRequestInfo.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTest.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestExecution.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestProvider.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestProviderSyncLog.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuite.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteExecution.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteGroupExec.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteStage.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteTest.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsWkItmTstSteGrpExec.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DigitalSignature.json +188 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DigitalWallet.json +427 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DirectMessage.json +30 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Division.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DivisionLocalization.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocAtchDownloadEventLog.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Document.json +243 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentAttachmentMap.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentRecipient.json +246 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Document_Attachment_Downloads_Event_Type.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Domain.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DomainSite.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DsarPolicy.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DsarPolicyLog.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJob.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobDefinition.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobMatchingRule.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobMatchingRuleDefinition.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRecordItem.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRecordSet.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRule.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DynamicDataCapture.json +215 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ElectronicMediaGroup.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ElectronicMediaUse.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailContent.json +320 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailDomainFilter.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailDomainKey.json +214 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailInsight.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailInsightAction.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessage.json +506 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessageMigration.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessageRelation.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailRelay.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailRoutingAddress.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailServicesAddress.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailServicesFunction.json +208 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailStatus.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailTemplate.json +414 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailTemplateMonthlyMetric.json +577 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmbeddedServiceDetail.json +339 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmbeddedServiceLabel.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmpUserProvisionProcessErr.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmpUserProvisioningProcess.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Employee.json +281 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Employee2.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmployeeCrisisAssessment.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementMeasureDefinition.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementProgram.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementProgramDefinition.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblMeasureObjectDefinition.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblPgmTaskMeasureProgress.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramSection.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskDefinition.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskMeasure.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskProgress.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskSubCategory.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementChannelType.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignal.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignalCmpndMetric.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignalMetric.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnhancedLetterhead.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Entitlement.json +280 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitlementContact.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitlementTemplate.json +138 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntityHistory.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntityMilestone.json +359 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitySubscription.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnvironmentHubMember.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Event.json +528 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventBusSubscriber.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventLogFile.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventLogFile_Supported_Event_Types.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelation.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelayConfig.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelayFeedback.json +166 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventStagedInviteeEmail.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventWhoRelation.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Expense.json +252 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpenseReport.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpenseReportEntry.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionFilter.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionFilterCriteria.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionSetConstraintObj.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtConvParticipantIntegDef.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtDataShare.json +164 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtKnowledgeConnector.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalAccountHierarchy.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalAccountHierarchyHistory.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalClientApplication.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalDataSource.json +209 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalDataUserAuth.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEncryptionRootKey.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEvent.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEventMapping.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalSocialAccount.json +259 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Cross-Org_Callout_Event_Type.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Custom_Apex_Callout_Event_Type.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Data_Source_Callout_Event_Type.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_OData_Callout_Event_Type.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppOauthPlcyCnfg.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppOauthSettings.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppPlcyCnfg.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlIntrIdMapping.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrCnct.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrCnctAccnt.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrField.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrFieldMap.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrLead.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrObject.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrOpportunity.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrPcklstOptn.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrPicklistMap.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrRecordMap.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FSL__Time_Dependency__c.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedAttachment.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedComment.json +232 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedItem.json +322 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedLike.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPollChoice.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPollVote.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPost.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedRevision.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedTrackedChange.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldChangeSnapshot.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldHistoryArchive.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldPermissions.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldSecurityClassification.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldServiceMobileSettings.json +599 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldServiceOrgSettings.json +210 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FileSearchActivity.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FiscalYearSettings.json +165 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FldSvcObjChg.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FldSvcObjChgDtl.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlexQueueItem.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowDefinitionView.json +368 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterview.json +209 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLog.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLogEntry.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLogOwnerSharingRule.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowNavMetricEventLog.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestration.json +323 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationInstance.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationLog.json +212 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationStageInstance.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationStepInstance.json +176 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationVersion.json +257 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationWorkItem.json +248 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecord.json +469 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordElement.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordElementOccurrence.json +202 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordRelation.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordVersion.json +415 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordVersionOccurrence.json +188 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowStageRelation.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowTestResult.json +186 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowTestView.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowVariableView.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowVersionView.json +195 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Flow_Execution_Event_Type.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Folder.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FolderedContentDocument.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingAdjustment.json +222 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinition.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinitionLocalization.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinition_Formula_Field_Details.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingCustomCategory.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingCustomData.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingDisplayedFamily.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFact.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFilter.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFilterCondition.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingGroup.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingGroupItem.json +114 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingItem.json +306 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingOwnerAdjustment.json +226 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingQuota.json +182 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingShare.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSourceDefinition.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSrcRecJudgment.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSubmission.json +183 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSubmissionItem.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingType.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingTypeSource.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingUserPreference.json +169 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunction.json +114 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunctionAllowedType.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunctionCategory.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmCatgRampRateSrc.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmzAdjustment.json +169 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmzOwnerAdjustment.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrder.json +684 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderItemAdjustment.json +182 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderItemTax.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderLineItem.json +445 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteria.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaActnVar.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaCond.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaGrp.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaGrpVer.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionConnection.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionInvocationRequest.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionReference.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAIConversationSummary.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiFunctionDefinition.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPlannerDefinition.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPlannerFunctionDef.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPluginDefinition.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenOpPlanRequest.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeoCountry.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeoState.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeolocationBasedAction.json +190 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Goal.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GoalLink.json +31 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GoogleDoc.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GraphQL_Query_Event_Type.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Group.json +171 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GroupMember.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GroupMembershipEventLog.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Group_Membership_Event_Type.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GtwyProvPaymentMethodType.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GuestBuyerProfile.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HashtagDefinition.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HealthCareDiagnosis.json +232 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HealthCareProcedure.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Holiday.json +212 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Hostname_Redirects_Event_Type.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IconDefinition.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Idea.json +310 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaComment.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaReputation.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaReputationLevel.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaTheme.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdpEventLog.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IframeWhiteListUrl.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Image.json +198 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Incident.json +342 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IncidentRelatedItem.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Individual.json +333 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualApplicationItem.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualHistory.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Insecure_External_Assets_Event_Type.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InsufficientAccessEventLog.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Insufficient_Access_Event_Type.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InternalOrganizationUnit.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InventoryItemReservation.json +193 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InventoryReservation.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvocableActionEventLog.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Invocable_Action_Event_Type.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Invoice.json +628 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceAddressGroup.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRun.json +347 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRunCriteria.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRunRecovery.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceDocument.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceLine.json +619 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/JobProfile.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/JobProfileQueueGroup.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticle.json +169 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleEventLog.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleFeedback.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVersion.json +459 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVersionHistory.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleViewStat.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVoteStat.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge_Article_View_Event_Type.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__DataCategorySelection.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__Feed.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__ka.json +162 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__kav.json +480 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeableUser.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LandingPage.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lead.json +791 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadCleanInfo.json +720 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadDailyMetric.json +441 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadMonthlyMetric.json +412 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadStatus.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningContent.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItem.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemAssignment.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemProgress.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemSubmission.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemType.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningPractice.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LegalEntity.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LicenseDefinitionCustomPermission.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningErrorEventLog.json +214 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningExitByPageMetrics.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningExperienceTheme.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningLoggerEventLog.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningOnboardingConfig.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningPageViewEventLog.json +240 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningPrfmEventLog.json +183 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningToggleMetrics.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByAppTypeMetrics.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByBrowserMetrics.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByFlexiPageMetrics.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByPageMetrics.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Error_Event_Type.json +213 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Interaction_Event_Type.json +236 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Logger_Event_Type.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Page_View_Event_Type.json +260 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Performance_Event_Type.json +173 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticle.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticleFeed.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticleHistory.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmail.json +462 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailIndividualRecipient.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailMonthlyMetric.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailRecipientSource.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailSentResult.json +265 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListView.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListViewChart.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListViewChartInstance.json +189 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSession.json +246 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSessionHistory.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSessionShare.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatBlockingRule.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButton.json +472 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButtonDeployment.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButtonSkill.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatDeployment.json +176 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatObjectAccessConfig.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatObjectAccessDefinition.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatSensitiveDataRule.json +181 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscript.json +444 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptEvent.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptShare.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptSkill.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfig.json +322 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfigProfile.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfigUser.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatVisitor.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocWaitlistMsgTemplate.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Location.json +550 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationGroup.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationGroupAssignment.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationShippingCarrierMethod.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationTrustMeasure.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationWaitlist.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationWaitlistedParty.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginAsEventLog.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginEvent.json +241 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginEventLog.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginGeo.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginHistory.json +276 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginIp.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Login_As_Event_Type.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Login_Event_Type.json +157 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LogoutEventLog.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LogoutEventStream.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Logout_Event_Type.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LookedUpFromActivity.json +348 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLField.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModel.json +154 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelFactor.json +138 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelFactorComponent.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelMetric.json +175 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLPredictionDefinition.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLRecommendationDefinition.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Macro.json +162 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MacroInstruction.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MacroUsage.json +215 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MailmergeTemplate.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenanceAsset.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenancePlan.json +310 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenanceWorkRule.json +197 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContent.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentChannel.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentInfo.json +25 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentSpace.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentVariant.json +173 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MarketingForm.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MarketingLink.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MatchingRule.json +162 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MatchingRuleItem.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchAccPaymentMethodSet.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchAccPaymentMethodType.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchantAccount.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchantAccountEvent.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannel.json +371 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannelSkill.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannelUsage.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingConfiguration.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingDeliveryError.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingEndUser.json +247 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingLink.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingSession.json +382 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingSessionMetrics.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingTemplate.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataApiOpEventLog.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataPackage.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataPackageVersion.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Metadata_API_Operation_Event_Type.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Metric.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetricDataLink.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MigratedEmail.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MilestoneType.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MktJourneyDcsnSetup.json +40 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MlIntentUtteranceSuggestion.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobSecurityCertPinConfig.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobSecurityCertPinEvent.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileDeviceAppRegistration.json +266 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityAssignment.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityPolicy.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityUserMetric.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSettingsAssignment.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MsgChannelLanguageKeyword.json +185 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MsgChannelUsageExternalOrg.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Multiblock_Report_Event_Type.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MutingPermissionSet.json +4208 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MyDomainDiscoverableLogin.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Name.json +209 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamedCredential.json +230 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamedCredentialEventLog.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Named_Credential_Event_Type.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamespaceRegistry.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationLinkSet.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationMenuItem.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationMenuItemLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Network.json +714 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkActivityAudit.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkAffinity.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkAuthApiSettings.json +318 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkDataCategory.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkDiscoverableLogin.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkEmailTmplAllowlist.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkFeedResponseMetric.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkMember.json +272 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkMemberGroup.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkModeration.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkPageOverride.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkSelfRegistration.json +201 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkUserHistoryRecent.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Note.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NoteAndAttachment.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NoteTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OSAsyncChgCompletedEvent.json +300 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthCustomScope.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthCustomScopeApp.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthToken.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthTokenExchHandlerApp.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthTokenExchangeHandler.json +195 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectDataImport.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectDataImportReference.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectMetadataTag.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectPermissions.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectRelatedUrl.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2AssignmentRule.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2AssignmentRuleItem.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2Association.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectUserTerritory2View.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfig.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigAction.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigGroup.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigProfile.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigQueue.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigSkill.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigTab.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigUser.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/One_Commerce_Usage_Event_Type.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpenActivity.json +381 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHours.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHoursHistory.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHoursHoliday.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OppSalesMethodology.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OppSalesMethodologyItem.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Opportunity.json +611 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityCompetitor.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityContactRole.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityContactRoleSuggestionInsight.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityFieldHistory.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityHistory.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityInsight.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItem.json +306 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItemSchedule.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItemSplit.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityPartner.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityRelatedDeleteLog.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunitySplit.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunitySplitType.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityStage.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityTeamMember.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpptyLineItemSplitType.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Order.json +942 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAction.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAdjustmentGroup.json +231 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAdjustmentGroupSummary.json +183 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderChangeLog.json +183 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderChgReasonCategMap.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryGroup.json +427 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryGroupSummary.json +434 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryMethod.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderHistory.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItem.json +1005 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemAdjustmentLineItem.json +262 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemAdjustmentLineSummary.json +202 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemGroup.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemRecipient.json +282 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemRelationship.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummary.json +739 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummaryChange.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummaryRelationship.json +201 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemTaxLineItem.json +185 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemTaxLineItemSummary.json +202 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemType.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderOwnerSharingRule.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderPaymentSummary.json +312 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderPaymentSummaryReference.json +185 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderStatus.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummary.json +872 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryAdditionalInfo.json +171 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryRelationship.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryRoutingSchedule.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgDeleteRequest.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgEmailAddressSecurity.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetric.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetricScanResult.json +187 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetricScanSummary.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgSnapshot.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgWideEmailAddress.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Organization.json +744 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutOfOffice.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutgoingEmail.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutgoingEmailRelation.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OwnedContentDocument.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OwnerChangeOptionInfo.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageInstallEventLog.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageLicense.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushError.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushJob.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushRequest.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageSubscriber.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Package_Install_Event_Type.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Participant.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Partner.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundAllocation.json +176 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundClaim.json +173 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundRequest.json +221 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerMarketingBudget.json +212 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkConnection.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkRecordConnection.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkSyncLog.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerRole.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartyConsent.json +205 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Payment.json +627 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentAuthAdjustment.json +309 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentAuthorization.json +389 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCredit.json +275 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCreditLinePayment.json +207 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCreditTransaction.json +186 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGateway.json +219 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGatewayLog.json +285 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGatewayProvider.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGroup.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentInitiationSource.json +278 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentIntent.json +632 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentIntentEvent.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLineInvoice.json +269 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLink.json +291 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLinkEvent.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentMethod.json +280 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentSchedule.json +292 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleItem.json +291 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentSchedulePolicy.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleTreatment.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleTreatmentDtl.json +193 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentTerm.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentTermItem.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingOrderSummary.json +241 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingServiceRouting.json +391 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingServiceRoutingInteractionInfo.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Period.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSet.json +4304 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetAssignment.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetGroup.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetGroupComponent.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicense.json +4286 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicenseAssign.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicenseDefinition.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetTabSetting.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionUpdateEventLog.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Permission_Update_Event_Type.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersnlBatchDecision.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonAccountOwnerPowerUser.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonTraining.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalOrgInfo.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationDecision.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationObjective.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationPoint.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationSchema.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationTargetInfo.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicket.json +154 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicketAssignment.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicketProduct.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PicklistValueInfo.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspMetricConfig.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspMetricConfigLocalization.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspectionListView.json +174 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspectionSumField.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformAction.json +324 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformEventUsageMetric.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformStatusAlertEvent.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Platform_Encryption_Event_Type.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PortalDelegablePermissionSet.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PplnInspListViewCalcClmn.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceConfigDeclineReason.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceDeclineReason.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfig.json +269 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfigProfile.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfigUser.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentGroup.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentGroupShape.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentItem.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentItemShape.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentSchedule.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentTier.json +181 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectExecLineItem.json +161 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectionExecution.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectionTerm.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricebook2.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricebook2History.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PricebookEntry.json +191 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PricebookEntryAdjustment.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricing_Event_Type.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyHold.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyHoldReason.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyJobSession.json +296 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyObjectSession.json +274 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRTBFRequest.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRequest.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRtntStoreDelStatus.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacySessionRecordFailure.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Problem.json +254 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProblemIncident.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProblemRelatedItem.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessDefinition.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessException.json +267 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessFlowMigration.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstance.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceHistory.json +193 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceNode.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceStep.json +155 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceWorkitem.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessNode.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProducerCommission.json +303 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Product2.json +477 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Product2DataTranslation.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttribute.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSet.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSetItem.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSetProduct.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCatalog.json +175 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategory.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategoryDataTranslation.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategoryProduct.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductComponentGroup.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductConsumed.json +257 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductDetectedPriceChange.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductEntitlementTemplate.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductFeaturedProduct.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductItem.json +185 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductItemTransaction.json +154 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductMedia.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductQuantityRule.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRelatedComponent.json +164 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRelationshipType.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequest.json +340 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequestLineItem.json +367 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequired.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductSellingModel.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductSellingModelOption.json +161 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaign.json +192 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignItem.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignItemStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductTransfer.json +372 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductWarrantyTerm.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Profile.json +4247 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkill.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillEndorsement.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillUser.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProgramProduct.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProgramRebateType.json +294 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Promotion.json +481 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionLineItemRule.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionMarketSegment.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionQualifier.json +239 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegment.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegmentBuyerGroup.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegmentSalesStore.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionTarget.json +257 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionTier.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Prompt.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptAction.json +216 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptActionOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptActionShare.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptError.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptVersion.json +533 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptVersionLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProrationPolicy.json +114 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Prospect.json +187 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentDataSource.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentRcmdTarget.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentSpec.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentSpecParm.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentUserSpec.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PublicComplaint.json +425 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PurchaseQuantityRule.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PushTopic.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PushUpgradeCustomization.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PymtSchdDistributionMethod.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Question.json +269 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionDataCategorySelection.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionReportAbuse.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionSubscription.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueueRoutingConfig.json +186 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueueSobject.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueuedExecutionEventLog.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Queued_Execution_Event_Type.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuickText.json +189 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuickTextUsage.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Quote.json +895 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteAction.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteAdjustmentGroup.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteDocument.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteItemTaxItem.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineGroup.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineItem.json +986 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineItemRecipient.json +287 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLinePriceAdjustment.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineRelationship.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineWorkSource.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteRecipientGroup.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteRecipientGroupMember.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/REST_API_Event_Type.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecentFieldChange.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecentlyViewed.json +199 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Recommendation.json +202 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecommendationResponse.json +207 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordAction.json +190 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordActionHistory.json +169 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordType.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordTypeLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordVisibility.json +30 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFilterCriteria.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFilterCriteriaRule.json +195 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFltrCritMonitor.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RedirectWhitelistUrl.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Refund.json +522 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RefundLinePayment.json +264 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RegisteredExternalService.json +176 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RelatedListColumnDefinition.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RelatedListDefinition.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RemoteKeyCalloutEvent.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Reply.json +171 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyEmailSettings.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyReportAbuse.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyText.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportEventLog.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportExportEventLog.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report_Event_Type.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report_Export_Event_Type.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationLevel.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationLevelLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationPointsRule.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ResourceAbsence.json +243 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ResourcePreference.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RestApiEventLog.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RetentionStoreUsage.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrder.json +653 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderItemAdjustment.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderItemTax.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderLineItem.json +506 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RevenueAsyncOperation.json +216 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RevenueTransactionErrorLog.json +245 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaFlowResultEvent.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobot.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotAsgnMaintWindow.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotAsgnSessionInf.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotDefinition.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotMaintWindow.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotMaintWindowDef.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPool.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolAsgnRobot.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolDefinition.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolFlowAsgn.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotSessionInfo.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotSessionInfoDef.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RuleTerritory2Association.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOAP_API_Event_Type.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSDeployment.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSSession.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSSessionActivity.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesAIScoreCycle.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesAIScoreModelFactor.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesChannel.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesMethodologyDef.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesMethodologyDefItem.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesStoreCatalog.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransaction.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionItemShape.json +199 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionShape.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionType.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTrxnItemRelationShape.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesWorkQueueSettings.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceContract.json +175 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceInvoice.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceLoginAsEventLog.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforcePayment.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceQuote.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Salesforce_Surveys_Object_Model.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SamlSsoConfig.json +313 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SandboxStatusEventLog.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Sandbox_Event_Type.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SavedPaymentMethod.json +475 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SavedPaymentMethodEvent.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingAdherenceDetail.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingAdherenceSummary.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingConstraint.json +252 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingObjective.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingRule.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingRuleParameter.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Scontrol.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScontrolLocalization.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScoreIntelligence.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Scorecard.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScorecardAssociation.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScorecardMetric.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScratchOrgInfo.json +411 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchActivity.json +187 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchClickEventLog.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchEventLog.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchLayout.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchPromotionRule.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Search_Click_Event_Type.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Search_Event_Type.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityCustomBaseline.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityHealthCheckAlertRecipient.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityHealthCheckResult.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SelfServiceUser.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Seller.json +167 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SenderEmailAddress.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceAppointment.json +621 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceAppointmentStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannel.json +236 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelFieldPriority.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelStatus.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelStatusField.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceContract.json +522 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceContractOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrew.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrewMember.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrewOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServicePresenceStatus.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceReport.json +180 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceReportLayout.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceRequest.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResource.json +260 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceCapacity.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceCapacityHistory.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceDataTranslation.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceOwnerSharingRule.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourcePreference.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceSkill.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceSetupProvisioning.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritory.json +320 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryDataTranslation.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryLocation.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryMember.json +277 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryWorkType.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SessionPermSetActivation.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupAssistantStep.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupAuditTrail.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupEntityAccess.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcCustomerForPartner.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOffer.json +293 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOfferItem.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrder.json +263 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrderBillingTrxn.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrderItem.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPackage.json +36 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPackageVersion.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPayout.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPermSetLicense.json +35 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerProductLicense.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerProvisionProduct.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerSbscrOffer.json +248 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerSbscrOfferItem.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTenant.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTenantPackage.json +69 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTermSet.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTermSetProduct.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTntPermSetLic.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTntPkgLicense.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShapeRepresentation.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollection.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollectionItem.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollectionMember.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Shift.json +293 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftHistory.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftPattern.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftPatternEntry.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftSegment.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftSegmentType.json +69 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftShare.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftTemplate.json +211 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Shipment.json +462 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShipmentItem.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingCarrier.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingCarrierMethod.json +167 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingConfigSetProduct.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingConfigurationSet.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingRateArea.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingRateGroup.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SignupRequest.json +322 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Site.json +464 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteDetail.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteDomain.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteEventLog.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteHistory.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteIframeWhitelistUrl.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteRedirectMapping.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Sites_Event_Type.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Skill.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillLevelDefinition.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillLevelProgress.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillProfile.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillRequirement.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillUser.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SlaProcess.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SlackChannelRelatedRecord.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Snippet.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SnippetAssignment.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SoapApiEventLog.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SocialPersona.json +354 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SocialPost.json +682 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Solution.json +214 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SolutionStatus.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SolutionTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepoProvider.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepository.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepositoryBranch.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedEmail.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedInviteeEmail.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedUnmtchdEmailAddr.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedUnmtchdEmailAddrRela.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Stamp.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StampAssignment.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardInvocableActionType.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameChangeEvent.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameFeed.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameHistory.json +31 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameOwnerSharingRule.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameShare.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Feed.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Feed_Feed.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_History.json +31 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_History_History.json +31 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_OwnerSharingRule.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_OwnerSharingRule_OwnerSharingRule.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Share.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Share_Share.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardShippingRate.json +192 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Standard_Objects.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StaticResource.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StoreIntegratedService.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StreamingChannel.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Survey.json +175 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyEmailBranding.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyEngagementContext.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyInvitation.json +240 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyPage.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestion.json +202 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionChoice.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionResponse.json +194 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionScore.json +210 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyResponse.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveySubject.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyVersion.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyVersionAddlInfo.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogCategory.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogCategoryItem.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogFilterCriteria.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogItemDef.json +245 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogReqRelatedItem.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogRequest.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Swarm.json +228 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SwarmMember.json +174 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TabDefinition.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TagDefinition.json +12 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Task.json +434 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskPriority.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskRelation.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskStatus.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskWhoRelation.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngine.json +268 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngineInteractionLog.json +254 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngineProvider.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxGeoConfig.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxPolicy.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxRate.json +283 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxTreatment.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantConsumptionAlert.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantScrAIPrmptInjection.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecret.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAIGtwyUsage.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAlertRuleSelectedTenant.json +35 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAnomaly.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityApiAnomaly.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCertificate.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityConfigAgent.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityConnectedApp.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCredentialStuffing.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricDetail.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricSetup.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricStat.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityEncryptedField.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityEncryptionPolicy.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityFeature.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityGuestUserAnomaly.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckBaselineTrend.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckDetail.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckTrend.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLicense.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLogin.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLoginIpRangeTrend.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMetricDetail.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMetricDetailLink.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMobilePolicyTrend.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMonitorMetric.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityNotification.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityNotificationRule.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPackage.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicy.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicyChangeLog.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicyDeployment.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicySelectedTenant.json +35 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityReportAnomaly.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecuritySessionHijacking.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTenantChangeLog.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTenantInfo.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTransactionPolicyTrend.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTrigTransactionSecurityPol.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTrustedIpRangeTrend.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityUserActivity.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityUserPerm.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantUsageEntitlement.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2.json +155 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2AlignmentLog.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2Model.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ModelHistory.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ObjSharingConfig.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ObjectExclusion.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2Type.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TerritoryAdminAssignment.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TerritoryMgmtObjectConfig.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TestSuiteMembership.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ThirdPartyAccountLink.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ThreatDetectionFeedback.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Time-Based_Workflow_Event_Type.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSheet.json +181 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSheetEntry.json +208 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSlot.json +185 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSlotHistory.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TodayGoal.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopInsight.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Topic.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicAssignment.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicUserEvent.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TransactionSecurityEventLog.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TransactionSecurityPolicy.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Transaction_Security_Event_Type.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Translation.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TravelMode.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorInfo.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorMethodsInfo.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorTempCode.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UI_Telemetry_Navigation_Timing_Event_Type.json +317 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UI_Telemetry_Resource_Timing_Event.json +276 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/URI_Event_Type.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiAgentInteractionEventLog.json +233 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiFormulaCriterion.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiFormulaRule.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiTelemetryNavTmEventLog.json +335 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiTelemetryRsrcTmEventLog.json +285 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UndecidedEventRelation.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivity.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityInsight.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityParticipant.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityRelation.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActvtyInsightKeyword.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedEmail.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedEmailParticipant.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedMeeting.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedMeetingParticipant.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedTask.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedTaskParticipant.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVideoCall.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVideoCallParticipant.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVoiceCall.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVoiceCallParticipant.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UniqueQueryEventLog.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Unique_Query_Event_Type.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnitOfMeasure.json +190 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UriEventLog.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactFactor.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroup.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupFactor.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupPgmMeasure.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupVersion.json +166 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/User.json +1865 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccessChange.json +23 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccessPolicy.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccountTeamMember.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppInfo.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppMenuCustomization.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppMenuItem.json +182 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAuthCertificate.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserConfigTransferButton.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserConfigTransferSkill.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserCustomBadge.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserCustomBadgeLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDailyMetric.json +489 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDailyMetricOwnerSharingRule.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDefinedLabel.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDefinedLabelAssignment.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDevice.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDeviceApplication.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDeviceHistory.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailCalendarSync.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailPreferredPerson.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailPreferredPersonShare.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLicense.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserListView.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserListViewCriterion.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLocationAssignment.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLogin.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMembershipSharingRule.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMonthlyMetric.json +644 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMonthlyMetricOwnerSharingRule.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPackageLicense.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPermissionAccess.json +4159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPreference.json +69 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPrioritizedRecord.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProfile.json +367 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvAccount.json +189 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvAccountStaging.json +173 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvMockTarget.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningConfig.json +204 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningLog.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningRequest.json +235 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRecordAccess.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRelatedRecordContent.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRole.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserServicePresence.json +199 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserSetupEntityAccess.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserSharedFeature.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTeamMember.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory2AssocLog.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory2Association.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserUIPreference.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserWorkList.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserWorkListItem.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VendorCallCenterStatusMap.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VerificationHistory.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCall.json +316 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsight.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsightAction.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsightReason.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallParticipant.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallRecording.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallRecordingStructure.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallTranscript.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VisualforceAccessMetrics.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VisualforceRequestEventLog.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Visualforce_Request_Event_Type.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCall.json +623 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsight.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsightAction.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsightReason.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallList.json +35 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallListItem.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallMetrics.json +324 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallQualityFeedback.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallRecording.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallRecordingStructure.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCoaching.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceLocalPresenceNumber.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailContent.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting2.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting2Rep.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailMessage.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceOrgSetting.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceUserLine.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceUserPreferences.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceVendorInfo.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceVendorLine.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Vote.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WarrantyTerm.json +306 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WaveAutoInstallRequest.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Change_Event_Type.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Download_Event_Type.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Interaction_Event_Type.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Performance_Event_Type.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCart.json +610 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartAdjustmentBasis.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartAdjustmentGroup.json +210 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartHistory.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebLink.json +278 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebLinkLocalization.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStore.json +445 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreCatalog.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreInventorySource.json +203 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreMessageContent.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreNetwork.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStorePricebook.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreSearchProdSettings.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreShare.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebstoreBuyerGroup.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wishlist.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WishlistItem.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkAccess.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkAccessShare.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkBadge.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkBadgeDefinition.json +212 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityAvailability.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityLimit.json +303 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityUsage.json +307 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCoaching.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkDemographic.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedback.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackQuestion.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackQuestionSet.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackRequest.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoal.json +138 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalCollaborator.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalCollaboratorHistory.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalHistory.json +36 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalLink.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalShare.json +36 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItem.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItemComponent.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItemEvent.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrder.json +753 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderHistory.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItem.json +636 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItemHistory.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItemStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPerformanceCycle.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlan.json +194 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanSelectionRule.json +194 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanTemplate.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanTemplateEntry.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkReward.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkRewardFund.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkRewardFundType.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStep.json +244 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStepStatus.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStepTemplate.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkThanks.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkType.json +276 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkTypeGroup.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkTypeGroupMember.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkforceCapacity.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkforceCapacityUnit.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Workload.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkloadUnit.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/feedSignal.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AIApplication.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AIApplicationConfig.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AccountPlanObjMeasCalcCond.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AccountPlanObjMeasCalcDef.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ActivationPlatform.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAccountForecastSet.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAcctForecastMeasureDef.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAcctFrcstDisplayGroup.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AnimationRule.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexClass.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexClassMember.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexCodeCoverage.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexCodeCoverageAggregate.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexComponent.json +27 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexComponentMember.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexEmailNotification.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexExecutionOverlayAction.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexExecutionOverlayResult.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexLog.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexOrgWideCoverage.json +29 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPage.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPageInfo.json +69 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPageMember.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexResult.json +25 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestQueueItem.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestResult.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestResultLimits.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestRunResult.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestSuite.json +31 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTrigger.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTriggerMember.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AssignmentRule.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuraDefinition.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuraDefinitionBundle.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuthorizedEmailDomain.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AutoResponseRule.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BrandingSet.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BrandingSetProperty.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BriefcaseDefinition.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusProcessFeedbackConfig.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcess.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessDefinition.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessFeedback.json +40 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessGroup.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Certificate.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CleanDataService.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CleanRule.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ColorDefinition.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CommunityWorkspacesNode.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayout.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayoutInfo.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayoutItemInfo.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConnectedApplication.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ContactCenterChannel.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ContainerAsyncRequest.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConversationChannelDefinition.json +191 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConversationVendorInfo.json +174 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CspTrustedSite.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomApplication.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomField.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomFieldDisplay.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomFieldMember.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomHelpMenuSection.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomHttpHeader.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomMsgChannel.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotifActionDef.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotificationActionGroup.json +36 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotificationType.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomObject.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomTab.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataAssessmentConfigItem.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataIntegrationRecordPurchasePermission.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataSourceBundleDefinition.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataStreamTemplate.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataType.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DebugLevel.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroup.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroupGrant.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroupMember.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DeployDetails.json +21 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DeployRequest.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Document.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DomainProvision.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DuplicateJobDefinition.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DuplicateJobMatchingRuleDefinition.json +30 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmailTemplate.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceBranding.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceConfig.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomComponent.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomLabel.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomization.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFieldService.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFlow.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFlowConfig.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceLiveAgent.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceMenuItem.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceMenuSettings.json +69 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceQuickAction.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceResource.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EngagementInsightType.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EnrichedField.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityDefinition.json +486 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityLimit.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityParticle.json +303 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventDelivery.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventRelayConfig.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventSubscription.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExtConvParticipantIntegDef.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalAuthIdentityProvider.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalClientAppSettings.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalCredential.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalDataSource.json +138 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalDataSrcDescriptor.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalServiceRegistration.json +138 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalString.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalStringLocalization.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldDefinition.json +587 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMapping.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMappingField.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMappingRow.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldRestrictionRule.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldSet.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlexiPage.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Flow.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowDefinition.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowElementTestCoverage.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTest.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTestCoverage.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTestResult.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingDisplayedFamily.json +30 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingFilter.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingFilterCondition.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingSourceDefinition.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingType.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingTypeSource.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaFunction.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaFunctionAllowedType.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaOperator.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GenAiFunctionDefinition.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GenAiPlannerDefinition.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GlobalValueSet.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Group.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GtwyProvPaymentMethodType.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HeapDump.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HistoryRetentionJob.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HomePageComponent.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HomePageLayout.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IPAddressRange.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IconDefinition.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InboundNetworkConnProperty.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InboundNetworkConnection.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Index.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IndexField.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InstalledSubscriberPackage.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InstalledSubscriberPackageVersion.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InvocableActionExtension.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/KeywordList.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Layout.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningComponentBundle.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningComponentResource.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningOutApp.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LookupFilter.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLDataDefinition.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLField.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLFilter.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLPredictionDefinition.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedContentNodeType.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedContentType.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedEventSubscription.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtAction.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtActivity.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtAssignment.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtension.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MatchingRule.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MenuItem.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataComponentDependency.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataContainer.json +29 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataPackage.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataPackageVersion.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataWarningsHeader.json +16 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ModerationRule.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/NamedCredential.json +264 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ObjectHierarchyRelationship.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OmniSupervisorConfig.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OperationLog.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OpportunitySplitType.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OrgDomainLog.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OutboundNetworkConnProperty.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OutboundNetworkConnection.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OwnerChangeOptionInfo.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2Member.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2Version.json +157 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2VersionCreateRequest.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2VersionCreateRequestError.json +30 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageInstallRequest.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageUploadRequest.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageVersionUninstallRequestError.json +32 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PardotTenant.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistant.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistantStepInfo.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistantStepItem.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PaymentGatewayProvider.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionDependency.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSet.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetAssignment.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetGroup.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetGroupComponent.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetTabSetting.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PipelineInspMetricConfig.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventChannel.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventChannelMember.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventMigration.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventSubscriberConfig.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PostTemplate.json +40 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PresenceDeclineReason.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PresenceUserConfig.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProcessFlowMigration.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProductAttributeSet.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Profile.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProfileLayout.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Publisher.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QueryResult.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QueueRoutingConfig.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionDefinition.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionList.json +27 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionListItem.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecentlyViewed.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecommendationStrategy.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecordActionDeployment.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecordType.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RegisteredExternalService.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelatedListColumnDefinition.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelatedListDefinition.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelationshipDomain.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelationshipInfo.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ReleaseUpdate.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ReleaseUpdateStep.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RemoteProxy.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RestrictionRule.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SOQLResult.json +29 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxInfo.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxProcess.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxProcessStage.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SchedulingObjective.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SchedulingRule.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Scontrol.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SearchLayout.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SecurityHealthCheck.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SecurityHealthCheckRisks.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ServiceChannel.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ServicePresenceStatus.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ShiftSegmentType.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SiteDetail.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Skill.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/StandardAction.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/StaticResource.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackage.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackageVersion.json +245 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackageVersionUninstallRequest.json +32 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogCategory.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogCategoryItem.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogFulfillFlowItem.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogFulfillmentFlow.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogItemDef.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SymbolTable.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TabDefinition.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Territory2SupportedObject.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TestSuiteMembership.json +32 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TimeSheetTemplate.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TimeSheetTemplateAssignment.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TraceFlag.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TransactionSecurityPolicy.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/User.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicy.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicyAction.json +40 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicyFilter.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserCriteria.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserEntityAccess.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserFieldAccess.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ValidationRule.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/VirtualVisitConfig.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WebLink.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WebStoreTemplate.json +227 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkSkillRouting.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkSkillRoutingAttribute.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowAlert.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowFieldUpdate.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowOutboundMessage.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowRule.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowTask.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/examples/README.md +93 -0
- package/skills/platform-data-and-tooling-api-context-get/examples/bash_section_loading.sh +126 -0
- package/skills/platform-data-and-tooling-api-context-get/examples/javascript_section_loading.js +97 -0
- package/skills/platform-data-and-tooling-api-context-get/examples/python_section_loading.py +109 -0
- package/skills/platform-data-and-tooling-api-context-get/references/data_and_tooling_index_table.md +2194 -0
- package/skills/platform-data-and-tooling-api-context-get/references/usage_guide.md +87 -0
- package/skills/platform-docs-get/README.md +1 -1
- package/skills/platform-docs-get/SKILL.md +4 -5
- package/skills/platform-lightning-type-widget-coordinate/SKILL.md +11 -9
- package/skills/platform-lightning-type-widget-coordinate/examples/existing-lightning-type-with-widget-prompt.md +2 -2
- package/skills/platform-lightning-type-widget-coordinate/examples/new-lightning-type-with-widget-prompt.md +2 -2
- package/skills/platform-lightning-type-widget-coordinate/references/build-plan-format.md +1 -1
- package/skills/platform-lightning-type-widget-coordinate/references/validation-gates.md +4 -4
- package/skills/platform-metadata-deploy/SKILL.md +21 -0
- package/skills/platform-report-generate/SKILL.md +159 -0
- package/skills/platform-report-generate/examples/AccountsCreatedThisYear.report-meta.xml +48 -0
- package/skills/platform-report-generate/examples/OpportunitiesByStageAndQuarter.report-meta.xml +53 -0
- package/skills/platform-report-generate/examples/OpportunitiesByStageReport.report-meta.xml +75 -0
- package/skills/platform-report-generate/examples/TabularOpportunitiesReport.report-meta.xml +49 -0
- package/skills/platform-report-generate/references/chart-types.md +31 -0
- package/skills/platform-report-generate/references/column-names.md +80 -0
- package/skills/platform-report-generate/references/date-intervals.md +56 -0
- package/skills/platform-report-generate/references/errors-and-troubleshooting.md +71 -0
- package/skills/platform-report-generate/references/filter-operations.md +92 -0
- package/skills/platform-report-generate/references/verification-checklist.md +47 -0
- package/skills/platform-sandbox-configure/SKILL.md +424 -0
- package/skills/platform-sharing-owd-configure/SKILL.md +6 -16
- package/skills/platform-sharing-rules-generate/SKILL.md +8 -8
- package/skills/platform-sharing-rules-generate/examples/create-cases.md +152 -0
- package/skills/platform-sharing-rules-generate/examples/delete-cases.md +113 -0
- package/skills/platform-sharing-rules-generate/examples/edit-cases.md +114 -0
- package/skills/service-digital-engagement-channel-configure/SKILL.md +263 -0
- package/skills/service-digital-engagement-channel-configure/assets/messaging_channel_template.xml +102 -0
- package/skills/service-digital-engagement-channel-configure/examples/asa_agent_channel.xml +53 -0
- package/skills/service-digital-engagement-channel-configure/examples/omni_flow_channel.xml +67 -0
- package/skills/service-digital-engagement-channel-configure/examples/omni_queue_channel.xml +52 -0
- package/skills/service-digital-engagement-channel-configure/references/channel_settings.md +294 -0
- package/skills/service-digital-engagement-channel-configure/scripts/normalize-channel-name.sh +24 -0
- package/skills/service-digital-engagement-deployment-configure/SKILL.md +255 -0
- package/skills/service-digital-engagement-deployment-configure/assets/esd_api_mobile_template.xml +25 -0
- package/skills/service-digital-engagement-deployment-configure/assets/esd_web_update_template.xml +33 -0
- package/skills/service-digital-engagement-deployment-configure/examples/esd_api.xml +25 -0
- package/skills/service-digital-engagement-deployment-configure/examples/esd_mobile.xml +25 -0
- package/skills/service-digital-engagement-deployment-configure/examples/esd_web_full.xml +27 -0
- package/skills/service-digital-engagement-deployment-configure/references/branding_and_tooling.md +98 -0
- package/skills/service-digital-engagement-deployment-configure/references/code_snippet.md +75 -0
- package/skills/service-digital-engagement-deployment-configure/references/connect_api_creation.md +144 -0
- package/skills/service-digital-engagement-deployment-configure/references/deployment_settings.md +193 -0
- package/skills/service-digital-engagement-messaging-site-integrate/SKILL.md +289 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/aura_patch.md +54 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/bundle_detection.md +56 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/deploy_and_publish.md +101 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/lwr_patch.md +55 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/lwr_route_scaffolding.md +31 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/manual_fallback.md +65 -0
- package/skills/service-digital-engagement-messaging-site-integrate/scripts/detect_bundle_type.sh +44 -0
- package/skills/service-digital-engagement-messaging-site-integrate/scripts/patch_aura_bundle.sh +135 -0
- package/skills/service-digital-engagement-messaging-site-integrate/scripts/patch_lwr_bundle.sh +132 -0
- package/skills/service-helpagent-coordinate/README.md +123 -0
- package/skills/service-helpagent-coordinate/SKILL.md +255 -0
- package/skills/service-helpagent-coordinate/assets/help-agent-spec.md +275 -0
- package/skills/service-helpagent-coordinate/references/agent-script.md +557 -0
- package/skills/service-helpagent-coordinate/references/channel-help-portal.md +22 -0
- package/skills/service-helpagent-coordinate/references/channel-voice.md +17 -0
- package/skills/service-helpagent-coordinate/references/channel-web-chat.md +76 -0
- package/skills/agentforce-generate/assets/README-legacy.md +0 -89
- package/skills/agentforce-generate/assets/agents/multi-subagent.agent +0 -105
- package/skills/agentforce-generate/assets/apex/models-api-queueable.cls +0 -225
- package/skills/agentforce-generate/assets/components/apex-action.agent +0 -52
- package/skills/agentforce-generate/assets/components/error-handling.agent +0 -58
- package/skills/agentforce-generate/assets/components/escalation-setup.agent +0 -169
- package/skills/agentforce-generate/assets/components/flow-action.agent +0 -66
- package/skills/agentforce-generate/assets/components/n-ary-conditions.agent +0 -110
- package/skills/agentforce-generate/assets/components/subagent-with-actions.agent +0 -40
- package/skills/agentforce-generate/assets/deterministic-routing.agent +0 -166
- package/skills/agentforce-generate/assets/escalation-pattern.agent +0 -209
- package/skills/agentforce-generate/assets/flow-action-lookup.agent +0 -115
- package/skills/agentforce-generate/assets/hub-and-spoke.agent +0 -104
- package/skills/agentforce-generate/assets/metadata/basic-prompt-template.promptTemplate-meta.xml +0 -109
- package/skills/agentforce-generate/assets/metadata/genai-function-apex.xml +0 -92
- package/skills/agentforce-generate/assets/metadata/genai-function-flow.xml +0 -57
- package/skills/agentforce-generate/assets/metadata/genai-plugin.xml +0 -72
- package/skills/agentforce-generate/assets/metadata/http-callout-flow.flow-meta.xml +0 -348
- package/skills/agentforce-generate/assets/metadata/record-grounded-prompt.promptTemplate-meta.xml +0 -136
- package/skills/agentforce-generate/assets/minimal-starter.agent +0 -42
- package/skills/agentforce-generate/assets/prompt-rag-search.agent +0 -131
- package/skills/agentforce-generate/assets/template-single-subagent.agent +0 -81
- package/skills/agentforce-generate/assets/verification-gate.agent +0 -208
- package/skills/agentforce-generate/references/minimal-examples.md +0 -67
- package/skills/platform-sharing-rules-generate/examples/test-cases.md +0 -381
- /package/skills/design-systems-slds-apply/{checklists.md → references/checklists.md} +0 -0
- /package/skills/platform-docs-get/{requirements.txt → scripts/requirements.txt} +0 -0
|
@@ -1,22 +1,43 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agentforce-generate
|
|
3
|
-
description: "Build, modify, debug, and deploy agents with Agentforce Agent Script. TRIGGER when: user creates, modifies, or asks about .agent files or aiAuthoringBundle metadata; changes agent behavior, responses, or conversation logic; designs agent actions, tools, subagents, or flow control; writes or reviews an Agent Spec; previews, debugs, deploys, publishes, or tests agents; uses Agent Script CLI commands (sf agent generate/preview/publish/test). DO NOT TRIGGER when: Apex development, Flow building, Prompt Template authoring, Experience Cloud configuration, or general Salesforce CLI tasks unrelated to Agent Script."
|
|
4
|
-
compatibility: "Requires Agentforce license, API v66.0+, Einstein Agent User"
|
|
3
|
+
description: "Build, modify, optimize, debug, and deploy agents with Agentforce Agent Script. TRIGGER when: user creates, modifies, optimizes, or asks about .agent files or aiAuthoringBundle metadata; changes agent behavior, responses, or conversation logic; designs agent actions, tools, subagents, or flow control; writes or reviews an Agent Spec; wants to optimize, improve, or refactor an agent; previews, debugs, deploys, publishes, or tests agents; uses Agent Script CLI commands (sf agent generate/preview/publish/test); registers/creates/lists/updates/deletes MCP servers, whitelists/approves MCP tools, fetches MCP assets, or configures MCP authentication (sf agent mcp). DO NOT TRIGGER when: Apex development, Flow building, Prompt Template authoring, Experience Cloud configuration, or general Salesforce CLI tasks unrelated to Agent Script."
|
|
5
4
|
metadata:
|
|
6
|
-
version: "
|
|
5
|
+
version: "0.11"
|
|
6
|
+
minApiVersion: "66.0"
|
|
7
|
+
relatedSkills:
|
|
8
|
+
- "agentforce-observe"
|
|
9
|
+
- "agentforce-test"
|
|
10
|
+
- "automation-flow-generate"
|
|
11
|
+
- "integration-connectivity-generate"
|
|
12
|
+
- "platform-apex-generate"
|
|
13
|
+
- "platform-metadata-deploy"
|
|
14
|
+
cliTools:
|
|
15
|
+
- tool: ["curl"]
|
|
16
|
+
semver: ">=7.0.0"
|
|
17
|
+
- tool: ["jq"]
|
|
18
|
+
semver: ">=1.6.0"
|
|
19
|
+
- tool: ["npm"]
|
|
20
|
+
semver: ">=9.0.0"
|
|
21
|
+
- tool: ["python3"]
|
|
22
|
+
semver: ">=3.10.0"
|
|
23
|
+
- tool: ["sf"]
|
|
24
|
+
semver: ">=2.139.6"
|
|
7
25
|
---
|
|
8
26
|
|
|
9
27
|
# Agent Script Skill
|
|
10
28
|
|
|
11
29
|
## What This Skill Is For
|
|
12
30
|
|
|
13
|
-
|
|
31
|
+
This skill is for developing Agentforce agents, primarily with Agent Script, Salesforce's scripting language for AI agents.
|
|
14
32
|
|
|
15
|
-
|
|
33
|
+
Org-backed workflows require an Agentforce license, API v66.0 or later, and an
|
|
34
|
+
Einstein Agent User. Static authoring and review can proceed without org access.
|
|
35
|
+
|
|
36
|
+
**CRITICAL:** Agent Script is NOT AppleScript, JavaScript, Python, or any other
|
|
16
37
|
language. Do NOT confuse Agent Script syntax or semantics with any other
|
|
17
38
|
language you have been trained on.
|
|
18
39
|
|
|
19
|
-
Agent Script agents are defined by `AiAuthoringBundle` metadata
|
|
40
|
+
Agent Script agents are defined by `AiAuthoringBundle` metadata: a `.agent` file (agent behavior) plus `bundle-meta.xml` (bundle metadata). Actions can be implemented with invocable Apex, autolaunched Flows, Prompt Templates, and other supported types.
|
|
20
41
|
|
|
21
42
|
This skill covers the full Agent Script lifecycle: designing agents,
|
|
22
43
|
writing Agent Script code, validating and debugging, deploying and
|
|
@@ -24,9 +45,12 @@ publishing, and testing.
|
|
|
24
45
|
|
|
25
46
|
## How to Use This Skill
|
|
26
47
|
|
|
27
|
-
This file maps user intent to task domains and relevant reference files in `references/`.
|
|
48
|
+
This file maps user intent to task domains and relevant reference files in `references/`. Treat this file as the execution router for end-to-end agent development, and use references for deep detail.
|
|
28
49
|
|
|
29
|
-
Identify user intent from task descriptions.
|
|
50
|
+
Identify user intent from task descriptions. Read only the reference explicitly
|
|
51
|
+
required by the active step or needed for the current decision. Every
|
|
52
|
+
**Reference Files** section is a lookup index, not a preload list; do not load
|
|
53
|
+
files for later or inapplicable steps.
|
|
30
54
|
|
|
31
55
|
## Rules That Always Apply
|
|
32
56
|
|
|
@@ -38,16 +62,61 @@ Identify user intent from task descriptions. ALWAYS read indicated reference fil
|
|
|
38
62
|
ALWAYS `--use-live-actions` to preview authoring bundles. Send utterances
|
|
39
63
|
then read resulting session traces to ground your understanding of the
|
|
40
64
|
agent's behavior. Trace files reveal subagent selection, action I/O, and
|
|
41
|
-
LLM reasoning. DO NOT modify `.agent` files or
|
|
65
|
+
LLM reasoning. DO NOT modify `.agent` files or action implementations without
|
|
42
66
|
this grounding. See [Validation & Debugging](references/agent-validation-and-debugging.md)
|
|
43
67
|
for trace file locations and diagnostic patterns.
|
|
44
68
|
|
|
45
69
|
4. **Spec approval is a hard gate.** Never proceed past Agent Spec
|
|
46
70
|
creation without explicit user approval.
|
|
47
71
|
|
|
72
|
+
5. **Don't stall.** After a step completes successfully, announce the
|
|
73
|
+
next step and start it. Do not wait for the user to say "what's next"
|
|
74
|
+
or "ok, continue." The only checkpoints that require explicit user
|
|
75
|
+
approval are: (a) Agent Spec approval, (b) the pre-Publish CHECKPOINT,
|
|
76
|
+
(c) any A/B branch the skill explicitly surfaces (e.g., Data Cloud
|
|
77
|
+
not provisioned during ADL setup). Long-running async work like ADL
|
|
78
|
+
indexing should run in the background while the skill continues with
|
|
79
|
+
work that doesn't depend on the result.
|
|
80
|
+
|
|
81
|
+
6. **Draft-first lifecycle.** During normal authoring, stay in draft iteration:
|
|
82
|
+
edit `.agent` + action implementations, validate, deploy, and preview as many
|
|
83
|
+
times as needed. Do NOT publish/activate by default. Publish + activate are
|
|
84
|
+
explicit release actions that require the user to confirm they are ready to
|
|
85
|
+
commit the current draft to metadata and expose it to end users.
|
|
86
|
+
|
|
87
|
+
7. **Start with one execution block and no mutable state.** A focused agent puts
|
|
88
|
+
reasoning and actions directly in `start_agent`. Add a subagent only for a
|
|
89
|
+
real objective, instruction, action, authority, or escalation boundary. Add
|
|
90
|
+
persistent state only for a named deterministic consumer and give it a
|
|
91
|
+
complete lifecycle. Ordinary continuity stays in surviving history. Apply
|
|
92
|
+
the concrete checks in [The Zen of AgentScript](references/zen-of-agentscript.md)
|
|
93
|
+
and [Posture & Determinism](references/posture-and-determinism.md).
|
|
94
|
+
|
|
95
|
+
8. **Use supported control flow.** Use the canonical conditional forms and
|
|
96
|
+
never generate a nested `if`, which Agentforce lint rejects. See
|
|
97
|
+
[Conditional Control Flow Syntax](references/agent-script-core-language.md#conditional-control-flow-syntax),
|
|
98
|
+
then run full bundle validation.
|
|
99
|
+
|
|
100
|
+
9. **Action implementation is a user decision.** During planning/spec work,
|
|
101
|
+
default new actions to `NEEDS STUB` placeholders. Always ask the user whether
|
|
102
|
+
they want to scan org/project for existing implementations and/or generate
|
|
103
|
+
new Apex/Flow/Prompt implementations before taking either path.
|
|
104
|
+
|
|
105
|
+
10. **Give each reachable branch one next outcome.** Choose exactly one primary
|
|
106
|
+
outcome: answer, ask, invoke an action, transition, refuse, or escalate.
|
|
107
|
+
The compiler selects a subagent `system.instructions` override instead of
|
|
108
|
+
the global value, and the current runtime assembles effective system and
|
|
109
|
+
resolved reasoning text for the model. Keep authoring constructs out of
|
|
110
|
+
model-facing text. See
|
|
111
|
+
[Instruction Resolution](references/instruction-resolution.md).
|
|
112
|
+
|
|
113
|
+
11. **Use portable structural indentation.** Generate new `.agent` files with
|
|
114
|
+
4 spaces per level. Preserve a consistently indented legacy file during a
|
|
115
|
+
surgical edit, or normalize the whole file as a separate validated change.
|
|
116
|
+
|
|
48
117
|
## Task Domains
|
|
49
118
|
|
|
50
|
-
Every task domain below has **Required Steps**. Follow verbatim, in order.
|
|
119
|
+
Every task domain below has **Required Steps**. Follow verbatim, in order. The default path is: design -> draft implementation loop -> validation/preview loop -> explicit user-approved release.
|
|
51
120
|
|
|
52
121
|
### Create an Agent
|
|
53
122
|
|
|
@@ -55,41 +124,65 @@ User wants to build new agent from scratch. ALWAYS use Agent Script. Work with U
|
|
|
55
124
|
|
|
56
125
|
#### Required Steps
|
|
57
126
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
127
|
+
Before running an `sf` command, read only the applicable command section in
|
|
128
|
+
[CLI for Agents](references/salesforce-cli-for-agents.md). Do not preload the
|
|
129
|
+
CLI reference during design-only work.
|
|
130
|
+
|
|
131
|
+
1. **Design** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md) to draft an Agent Spec. Default all new actions to `NEEDS STUB` placeholders during planning. Ask the user which implementation path they want before implementation work:
|
|
132
|
+
- Path A: Keep placeholders only (no implementation now)
|
|
133
|
+
- Path B: Scan for existing actions to reuse
|
|
134
|
+
- Path C: Generate new actions
|
|
135
|
+
Only run scans (reading `sfdx-project.json`, searching `@InvocableMethod`, `AutoLaunchedFlow`, prompt templates, external service registrations, standard invocable actions, and custom objects) if the user explicitly chooses Path B or C.
|
|
136
|
+
**If the agent's purpose involves answering from documents** (e.g., "answer customer questions from our product manual", "respond based on a policy guide", "FAQ from a PDF"), ask the user: *"Will this agent answer questions from a document corpus (PDF/DOCX/TXT)? If so, what file path?"* Capture the path in the Spec under a **"Knowledge Grounding"** section. Asking now — during requirements capture — is critical: ADL indexing takes minutes, so we want the file path captured pre-Spec-approval and provisioning kicked off as early as possible.
|
|
137
|
+
**If the agent will handle voice/telephony** (e.g., "phone agent", "voice bot", "IVR replacement", "call center agent"), confirm it's a voice agent and capture a **"Voice Configuration"** section in the Spec. **Do not ask the user for a voice_id** — there is no reliable way to enumerate voice IDs and tuning values from the CLI. Always start with the platform default voice (`UgBBYS2sOqTuMpoF3BR0` — "Mark", en_US; `outbound_speed: 1`, `outbound_stability: 0.65`, `outbound_similarity: 0.75`) and tell the user they can customize the voice later in the Agent Builder UI (open the agent → **Connections → Voice**, click **Continue** to pick a different voice and tune speed/stability). See [Voice Modality Reference](references/voice-modality-reference.md) for the `modality voice:` block syntax and voice-specific authoring guidance.
|
|
138
|
+
**Voice service agents are almost always knowledge-backed** (callers ask FAQ/policy/troubleshooting questions). When you detect a voice agent, proactively ask the Knowledge Grounding question above — do not wait for the user to mention documents. This pairing (voice + knowledge grounding) is the Project Codey "Steel Thread 2" shape, and grounding on an ADL/Salesforce Knowledge corpus is what keeps a voice agent from hallucinating spoken answers. If the user has a document corpus, capture the file path and provision the ADL as usual; the `assets/agents/voice-knowledge-grounded.agent` template shows the combined wiring.
|
|
139
|
+
**Always save Agent Spec as file.**
|
|
140
|
+
2. **STOP for user approval of Agent Spec.** Present to user (including the Knowledge Grounding section if present). Ask for approval or feedback. **Do not proceed** without approval. Once approved, proceed without stopping unless a step fails.
|
|
62
141
|
3. **Validate environment prerequisites** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md), Section 3 (Environment Prerequisites). Based on agent type from design, validate org environment:
|
|
63
|
-
- **Employee agent**: Confirm
|
|
142
|
+
- **Employee agent**: Confirm the file normally omits `access.default_agent_user`, `connection messaging:`, and MessagingSession linked variables. Remove them if present. **Exception:** If the agent has a `knowledge:` block (uses `AnswerQuestionsWithKnowledge`), `access.default_agent_user` IS required even for employee agents — the platform treats knowledge-grounded agents as requiring an Einstein Agent User context at runtime. Query for the agent user and include it. See [Examples](references/examples.md) for a complete employee agent example.
|
|
64
143
|
- **Service agent**: Query org for Einstein Agent User. If one exists, confirm username with user. If none, guide user through creation. See [CLI for Agents](references/salesforce-cli-for-agents.md), Section 12 for creation steps and [Agent User Setup](references/agent-user-setup.md) for required permissions.
|
|
65
|
-
**
|
|
144
|
+
**3b. Kick off ADL provisioning (only if the Spec has a Knowledge Grounding section).** Read [Data Library Reference](references/data-library-reference.md). Run the Step 0 preflight: `SELECT COUNT() FROM DataKnowledgeSpace` (DC provisioned check), then `sf agent adl list` (ADL service health check). If DC is not provisioned, present the A/B choice from that reference. If DC is provisioned but the ADL service returns `400 INTERNAL_ERROR`, surface the "DC up, ADL broken" path and skip grounding for this run. If both checks pass, run `sf agent adl create` (reference Step 1) to capture `libraryId`. Compute `rag_feature_config_id = "ARFPC_<libraryId>"` from the `libraryId` alone — that's enough to author the bundle. Then start the upload + indexing flow (reference Steps 2–6) **in the background** while authoring continues. Per Rule 5, do not block on async indexing; `retrieverId` is only needed for runtime queries (gated in Step 8). Also kick off the Data Cloud permset assignment for the agent user — see [Agent User Setup](references/agent-user-setup.md), Step 3b for the discovery-then-assign procedure, which now ends with Step 3b.5 pinned post-assignment verification (against the resolved running-user and Einstein Agent User IDs) so callers can treat "Step 3b passed" as an authoritative Data Cloud grounding gate without re-running inline SOQL.
|
|
145
|
+
**Do not proceed to code generation until environment is validated** (ADL provisioning may continue running in background).
|
|
66
146
|
4. **Generate authoring bundle** —
|
|
67
147
|
`sf agent generate authoring-bundle --json --no-spec --name "<Label>" --api-name <Developer_Name>`
|
|
68
|
-
5. **Write code** — Read [Core Language](references/agent-script-core-language.md) for syntax, block structure, and anti-patterns. Edit generated `.agent` file using reference files and templates. Do not create `.agent` or `bundle-meta.xml` files manually.
|
|
148
|
+
5. **Write code** — Read [Core Language](references/agent-script-core-language.md) for syntax, block structure, and anti-patterns. Read [Instruction Resolution](references/instruction-resolution.md) for instruction patterns, recommended instruction order, and anti-patterns (especially Anti-Pattern 7: prose-based conditional logic). Edit generated `.agent` file using reference files and templates. Do not create `.agent` or `bundle-meta.xml` files manually. If Step 3b produced a `libraryId`, include the top-level `knowledge:` block and the `AnswerQuestionsWithKnowledge` action wiring per [Data Library Reference](references/data-library-reference.md), section "Wiring the ADL into Agent Script". The template at `assets/agents/knowledge-grounded.agent` is a copy-modify starting point. **If the Spec has a Voice Configuration section**, include the `modality voice:` block (using the default `voice_id` and tuning values) and `language:` block per [Voice Modality Reference](references/voice-modality-reference.md). Keep the standard `agent_type` (e.g. `AgentforceServiceAgent`) — do NOT set an `Atlas__VoiceAgent` template in the bundle; that is a runtime planner_type, not an authored field. Also add the `VoiceCallId: linked string` variable bound to `@VoiceCall.Id` and add `connection customer_web_client:` (ECv2 — the voice-capable surface) with `adaptive_response_allowed: True`. Keep the `modality voice:` block minimal (voice_id + speed/stability/similarity); advanced settings (filler-word detection, speak-up, endpointing) are optional — add only if the Spec calls for them. `connection messaging:` is additive — include it only if the agent escalates to a human (`@utils.escalate`). Write concise voice instructions with the high-value guards: read back critical data (IDs/amounts/dates) before acting, and never read out URLs/citations/visual formatting. Also add the spoken-delivery instruction rules from [Voice Modality Reference](references/voice-modality-reference.md) "Instructions for Voice Agents" — ack/filler phrases before slow actions, spoken-form numbers, ASR repair prompts, and empty-result fallbacks. When wiring actions into a voice agent, apply the voice-safe action rules in [actions-reference.md](references/actions-reference.md) "Voice-Safe Action Authoring" (plain-English descriptions, speakable parameter names, enums, lookup-step for internal IDs, voice-friendly error shapes) and check the actions against [voice-latency-heuristics.md](references/voice-latency-heuristics.md) — flag (don't silently rewrite) sync writes, bulky retrieval, and chained callouts on the live-call path. The template at `assets/agents/voice-service-agent.agent` is a copy-modify starting point. **If the Spec has both a Voice Configuration and a Knowledge Grounding section**, start from `assets/agents/voice-knowledge-grounded.agent` instead — it combines `modality voice:`, the voice wiring, and the `knowledge:` block + `AnswerQuestionsWithKnowledge` action with spoken-answer anti-hallucination guards.
|
|
69
149
|
6. **Validate compilation** —
|
|
70
150
|
`sf agent validate authoring-bundle --json --api-name <Developer_Name>`
|
|
71
|
-
If validation fails, read [Validation & Debugging](references/agent-validation-and-debugging.md) to diagnose and fix, then re-validate. ALWAYS fix syntax and structural errors before generating
|
|
72
|
-
7. **Generate
|
|
151
|
+
If validation fails, read [Validation & Debugging](references/agent-validation-and-debugging.md) to diagnose and fix, then re-validate. ALWAYS fix syntax and structural errors before generating action implementations.
|
|
152
|
+
7. **Generate action implementations (explicit user-requested path only)** — Only run this step if the user explicitly asked to generate new implementations (Path C in Step 1). For each action marked NEEDS STUB:
|
|
73
153
|
`sf template generate apex class --name <ClassName> --output-dir <PACKAGE_DIR>/main/default/classes`
|
|
74
154
|
Replace class body with invocable pattern from [Design & Agent Spec](references/agent-design-and-spec-creation.md). ALWAYS deploy:
|
|
75
155
|
`sf project deploy start --json --metadata ApexClass:<ClassName>`
|
|
76
156
|
ALWAYS fix deploy errors BEFORE generating and deploying next stub.
|
|
77
157
|
8. **Validate behavior** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for preview workflow and session trace analysis.
|
|
158
|
+
**If Step 3b provisioned an ADL**, before sending any grounded test utterances confirm the library is queryable: run `sf agent adl get -i $LIBRARY_ID` and check that `retrieverId` is present ([Data Library Reference](references/data-library-reference.md), Step 6). If still null, wait and re-poll — do not preview yet, the agent will return empty `knowledgeSummary` and the anti-hallucination guard will refuse on every utterance.
|
|
78
159
|
`sf agent preview start --json --use-live-actions --authoring-bundle <Developer_Name>`
|
|
79
160
|
If actions query data, ground test utterances with:
|
|
80
161
|
`sf data query --json -q "SELECT <Relevant_Fields> FROM <SObject> LIMIT 100"`
|
|
81
162
|
Send test utterances with:
|
|
82
163
|
`sf agent preview send --json --authoring-bundle <Developer_Name> --session-id <ID> -u "<message>"`
|
|
83
|
-
|
|
84
|
-
|
|
164
|
+
**Smoke testing requirements** (see [Validation & Debugging](references/agent-validation-and-debugging.md), Utterance Derivation):
|
|
165
|
+
- Test ALL routing branches, not just the happy path. Multiple phrasings per branch.
|
|
166
|
+
- Use realistic utterances — write what a human would actually type, not keywords.
|
|
167
|
+
- After EVERY utterance, read the trace to confirm actions actually fired (`FunctionStep`). Do not trust the agent's text response alone — agents can claim they performed actions without calling them.
|
|
168
|
+
- Evaluate against the Agent Spec like a human tester: check conversation flow, instruction adherence, unnecessary repetition, and response quality. If the spec says "confirm once" and the agent confirms twice, that's a bug — fix it.
|
|
169
|
+
If behavior diverges from the Agent Spec, fix the `.agent` file and re-preview. For complex issues, switch to **Diagnose Behavioral Issues** workflow. Return AFTER correcting issues.
|
|
170
|
+
**CHECKPOINT — Stay in draft iteration unless user explicitly asks to release.**
|
|
171
|
+
**If user requests release, do NOT proceed to Publish unless ALL are true:**
|
|
85
172
|
- `validate authoring-bundle` passes with zero errors
|
|
86
|
-
- Live preview (`--use-live-actions`) tested with
|
|
87
|
-
- Traces confirm correct subagent routing and
|
|
173
|
+
- Live preview (`--use-live-actions`) tested with realistic utterances covering all routing branches
|
|
174
|
+
- Traces confirm correct subagent routing, action invocation (`FunctionStep` present), and spec-compliant behavior
|
|
88
175
|
- User explicitly approves deployment
|
|
89
|
-
|
|
176
|
+
- **If the agent has a `knowledge:` block**: the Einstein Agent User has a Data Cloud permset/PSL assigned. Verify both:
|
|
177
|
+
```bash
|
|
178
|
+
sf data query --json -q "SELECT PermissionSet.Name FROM PermissionSetAssignment WHERE Assignee.Username='<agent_user>'"
|
|
179
|
+
sf data query --json -q "SELECT PermissionSetLicense.DeveloperName FROM PermissionSetLicenseAssign WHERE Assignee.Username='<agent_user>'"
|
|
180
|
+
```
|
|
181
|
+
One of `GenieDataPlatformStarterPsl`, `GenieUserEnhancedSecurity`, `DataCloudUser`, or `DataCloudArchitect` must appear in the combined results. If none does, run [Agent User Setup, Step 3b](references/agent-user-setup.md) discovery-then-assign and re-verify before proceeding. If a Data Cloud permset is assigned but a smoke-test grounded query returns empty `knowledgeSummary`, the **Data Space scope** also needs to be granted on that permset — UI-only, see [Agent User Setup, Step 3b.4](references/agent-user-setup.md).
|
|
182
|
+
9. **Publish (explicit release step)** — Only after the user confirms they are ready to commit this draft to metadata. Publish validates metadata structure, not agent behavior. Every publish creates permanent version number.
|
|
90
183
|
`sf agent publish authoring-bundle --json --api-name <Developer_Name>`
|
|
91
184
|
If publish fails, follow troubleshooting checklist in [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md), Section 5 before retrying.
|
|
92
|
-
10. **Activate** — Makes new version available to users.
|
|
185
|
+
10. **Activate (explicit release step)** — Makes new version available to users after publish.
|
|
93
186
|
`sf agent activate --json --api-name <Developer_Name>`
|
|
94
187
|
11. **Verify published agent** — Preview user-facing behavior AFTER activation with
|
|
95
188
|
`sf agent preview start --json --api-name <Developer_Name>`
|
|
@@ -105,25 +198,29 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
|
|
|
105
198
|
model, syntax, block structure, anti-patterns
|
|
106
199
|
3. [Design & Agent Spec](references/agent-design-and-spec-creation.md) —
|
|
107
200
|
subagent graph design, flow control patterns, Agent Spec production,
|
|
108
|
-
|
|
201
|
+
action implementation analysis; Section 3 for environment prerequisites
|
|
109
202
|
4. [Subagent Map Diagrams](references/agent-subagent-map-diagrams.md) —
|
|
110
203
|
Mermaid diagram conventions for visualizing the agent's subagent graph
|
|
111
|
-
5. [
|
|
204
|
+
5. [Posture & Determinism](references/posture-and-determinism.md) —
|
|
205
|
+
default agentic posture, deterministic controls with cause
|
|
206
|
+
6. [Agent User Setup & Permissions](references/agent-user-setup.md) —
|
|
112
207
|
permission set assignment, object permissions, cross-subagent validation
|
|
113
|
-
|
|
208
|
+
7. [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md) —
|
|
114
209
|
directory structure, bundle metadata; publish troubleshooting
|
|
115
|
-
|
|
210
|
+
8. [Validation & Debugging](references/agent-validation-and-debugging.md) —
|
|
116
211
|
validate the agent compiles, preview to confirm behavior
|
|
117
|
-
|
|
212
|
+
9. [Agent Access Guide](references/agent-access-guide.md) — end-user
|
|
118
213
|
access permissions, visibility troubleshooting
|
|
119
|
-
|
|
214
|
+
10. [Known Issues](references/known-issues.md) — only load when errors
|
|
120
215
|
persist after code fixes
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
216
|
+
11. [Patterns by Requirement](references/patterns-by-requirement.md) — scenario-to-pattern mapping for architecture and flow choices
|
|
217
|
+
12. [Architecture Patterns](references/architecture-patterns.md) — router-first mechanics, verification gates, workflow-local linear patterns
|
|
218
|
+
13. [Complex Data Types](references/complex-data-types.md) — type mapping decision tree
|
|
219
|
+
14. [Safety Review](references/safety-review-reference.md) — 7-category safety review
|
|
220
|
+
15. [Discover Reference](references/discover-reference.md) — target discovery CLI
|
|
221
|
+
16. [Scaffold Reference](references/scaffold-reference.md) — stub generation CLI
|
|
222
|
+
17. [Deploy Reference](references/deploy-reference.md) — deployment lifecycle, error recovery
|
|
223
|
+
18. [Data Library Reference](references/data-library-reference.md) — provision a SFDRIVE Agentforce Data Library and wire it into the `.agent` via the `knowledge:` block + `AnswerQuestionsWithKnowledge` action
|
|
127
224
|
|
|
128
225
|
### Comprehend an Existing Agent
|
|
129
226
|
|
|
@@ -133,7 +230,7 @@ User wants to understand Agent Script agent they didn't write or need to revisit
|
|
|
133
230
|
|
|
134
231
|
1. **Locate agent** — Read `sfdx-project.json` to identify package directories. Find `AiAuthoringBundle` directory within them. Read `.agent` file and `bundle-meta.xml`.
|
|
135
232
|
2. **Read code** — Read [Core Language](references/agent-script-core-language.md) for syntax and execution model BEFORE parsing `.agent` file.
|
|
136
|
-
3. **Map
|
|
233
|
+
3. **Map action implementations** — For each action with `target`, locate implementation (Apex class, Flow, Prompt Template) in project. Note input/output contracts.
|
|
137
234
|
4. **Reverse-engineer Agent Spec** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md) for Agent Spec structure. Produce Agent Spec from code and save as file.
|
|
138
235
|
5. **Produce Subagent Map diagram** — Read [Subagent Map Diagrams](references/agent-subagent-map-diagrams.md) for Mermaid conventions. Generate flowchart of subagent graph showing transitions, gates, and action associations.
|
|
139
236
|
6. **Annotate source** — Ask if user wants Agent Script source annotated with explanations. If requested, add inline comments to `.agent` file explaining flow control decisions, gating rationale, and subagent relationships.
|
|
@@ -161,35 +258,59 @@ User wants to add, remove, or change subagents, actions, instructions, or flow c
|
|
|
161
258
|
Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command syntax.
|
|
162
259
|
|
|
163
260
|
1. **Comprehend** — If no Agent Spec exists, reverse-engineer first by following "Comprehend an Existing Agent" workflow above.
|
|
164
|
-
2. **Update Agent Spec** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md) for flow control patterns and
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
261
|
+
2. **Update Agent Spec** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md) for flow control patterns and existing action analysis. Modify Agent Spec to reflect intended changes. Default new actions to `NEEDS STUB` placeholders. Ask the user which path they want:
|
|
262
|
+
- Path A: Keep placeholders only
|
|
263
|
+
- Path B: Scan for existing actions to reuse
|
|
264
|
+
- Path C: Generate new actions
|
|
265
|
+
Only run scans if the user explicitly chooses Path B or C.
|
|
266
|
+
**If the modification involves adding, replacing, or removing knowledge grounding**, ask: *"Will this agent answer questions from a document corpus (PDF/DOCX/TXT)? If so, what file path?"* Capture the path in the updated Spec under a **"Knowledge Grounding"** section. Asking now — during Spec update — surfaces ADL changes for the user's approval and lets us kick off provisioning right after.
|
|
267
|
+
**Always save updated Agent Spec as file.**
|
|
268
|
+
3. **STOP for user approval of updated Agent Spec.** Present to user (including the Knowledge Grounding section if present). Ask for approval or feedback. **Do not proceed** without approval. Once approved, proceed without stopping unless a step fails.
|
|
269
|
+
4. **Kick off ADL provisioning (only if the Spec has a Knowledge Grounding section).**
|
|
270
|
+
- If the `.agent` already has a `knowledge:` block with a populated `rag_feature_config_id` AND the user is keeping the same library, reuse it. Skip provisioning. (No need to confirm `retrieverId` here — that gate moves to Step 8.)
|
|
271
|
+
- If a new ADL is needed, follow the same flow as the create workflow: read [Data Library Reference](references/data-library-reference.md), run the Step 0 preflight (`sf agent adl list`), and (if DC is ready) run `sf agent adl create` (Step 1) to capture `libraryId`. Compute `rag_feature_config_id = "ARFPC_<libraryId>"` from `libraryId` alone — that's enough to author the bundle. Start the upload + indexing flow (reference Steps 2–6) **in the background** while you continue to Step 5 (Edit code). Per Rule 5, do not block on async indexing. Also kick off the Data Cloud permset assignment for the agent user — see [Agent User Setup](references/agent-user-setup.md), Step 3b, which now ends with Step 3b.5 pinned post-assignment verification (against the resolved running-user and Einstein Agent User IDs) so callers can treat "Step 3b passed" as an authoritative Data Cloud grounding gate without re-running inline SOQL.
|
|
272
|
+
- If grounding is not part of the modification, skip this step.
|
|
273
|
+
5. **Edit code** — Read [Core Language](references/agent-script-core-language.md) for syntax and anti-patterns. Edit `.agent` file to implement approved changes. If Step 4 produced a `libraryId`, include or update the `knowledge:` block and the `AnswerQuestionsWithKnowledge` action per [Data Library Reference](references/data-library-reference.md).
|
|
274
|
+
6. **Validate compilation** —
|
|
168
275
|
`sf agent validate authoring-bundle --json --api-name <Developer_Name>`
|
|
169
276
|
If validation fails, read [Validation & Debugging](references/agent-validation-and-debugging.md) to diagnose and fix, then re-validate.
|
|
170
|
-
|
|
277
|
+
7. **Generate new action implementations (explicit user-requested path only)** — Only run this step if the user explicitly asked to generate new implementations (Path C in Step 2). For each new action marked NEEDS STUB:
|
|
171
278
|
`sf template generate apex class --name <ClassName> --output-dir <PACKAGE_DIR>/main/default/classes`
|
|
172
279
|
Replace class body with invocable pattern from [Design & Agent Spec](references/agent-design-and-spec-creation.md). ALWAYS deploy:
|
|
173
280
|
`sf project deploy start --json --metadata ApexClass:<ClassName>`
|
|
174
281
|
ALWAYS fix deploy errors BEFORE generating and deploying next stub. Skip if no new actions added.
|
|
175
|
-
|
|
282
|
+
8. **Validate behavior** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for preview workflow and session trace analysis.
|
|
283
|
+
**If Step 4 provisioned a new ADL**, before sending any grounded test utterances confirm the library is queryable: run `sf agent adl get -i $LIBRARY_ID` and check that `retrieverId` is present ([Data Library Reference](references/data-library-reference.md), Step 6). If still null, wait and re-poll — do not preview yet, the agent will return empty `knowledgeSummary` and the anti-hallucination guard will refuse on every utterance.
|
|
176
284
|
`sf agent preview start --json --use-live-actions --authoring-bundle <Developer_Name>`
|
|
177
285
|
If actions query data, ground test utterances with:
|
|
178
286
|
`sf data query --json -q "SELECT <Relevant_Fields> FROM <SObject> LIMIT 100"`
|
|
179
287
|
Send test utterances with:
|
|
180
288
|
`sf agent preview send --json --authoring-bundle <Developer_Name> --session-id <ID> -u "<message>"`
|
|
181
|
-
|
|
182
|
-
|
|
289
|
+
**Smoke testing requirements** (see [Validation & Debugging](references/agent-validation-and-debugging.md), Utterance Derivation):
|
|
290
|
+
- Test changed paths first, then adjacent paths to catch regressions.
|
|
291
|
+
- Test ALL routing branches affected by the change. Multiple phrasings per branch.
|
|
292
|
+
- Use realistic utterances — write what a human would actually type, not keywords.
|
|
293
|
+
- After EVERY utterance, read the trace to confirm actions actually fired (`FunctionStep`). Do not trust the agent's text response alone.
|
|
294
|
+
- Evaluate against the Agent Spec: conversation flow, instruction adherence, unnecessary repetition, response quality.
|
|
295
|
+
If behavior diverges from the Agent Spec, fix the `.agent` file and re-preview. For complex issues, switch to **Diagnose Behavioral Issues** workflow.
|
|
296
|
+
**CHECKPOINT — Stay in draft iteration unless user explicitly asks to release.**
|
|
297
|
+
**If user requests release, do NOT proceed to Publish unless ALL are true:**
|
|
183
298
|
- `validate authoring-bundle` passes with zero errors
|
|
184
|
-
- Live preview (`--use-live-actions`) tested with
|
|
185
|
-
- Traces confirm correct subagent routing and
|
|
299
|
+
- Live preview (`--use-live-actions`) tested with realistic utterances covering all routing branches
|
|
300
|
+
- Traces confirm correct subagent routing, action invocation (`FunctionStep` present), and spec-compliant behavior
|
|
186
301
|
- User explicitly approves deployment
|
|
187
|
-
|
|
302
|
+
- **If the agent has a `knowledge:` block**: the Einstein Agent User has a Data Cloud permset/PSL assigned. Verify both:
|
|
303
|
+
```bash
|
|
304
|
+
sf data query --json -q "SELECT PermissionSet.Name FROM PermissionSetAssignment WHERE Assignee.Username='<agent_user>'"
|
|
305
|
+
sf data query --json -q "SELECT PermissionSetLicense.DeveloperName FROM PermissionSetLicenseAssign WHERE Assignee.Username='<agent_user>'"
|
|
306
|
+
```
|
|
307
|
+
One of `GenieDataPlatformStarterPsl`, `GenieUserEnhancedSecurity`, `DataCloudUser`, or `DataCloudArchitect` must appear in the combined results. If none does, run [Agent User Setup, Step 3b](references/agent-user-setup.md) discovery-then-assign and re-verify before proceeding. If a Data Cloud permset is assigned but a smoke-test grounded query returns empty `knowledgeSummary`, the **Data Space scope** also needs to be granted on that permset — UI-only, see [Agent User Setup, Step 3b.4](references/agent-user-setup.md).
|
|
308
|
+
9. **Publish (explicit release step)** — Only after the user confirms they are ready to commit this draft to metadata. Publish validates metadata structure, not agent behavior. Every publish creates permanent version number.
|
|
188
309
|
`sf agent publish authoring-bundle --json --api-name <Developer_Name>`
|
|
189
310
|
If publish fails, follow troubleshooting checklist in [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md), Section 5 before retrying.
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
311
|
+
10. **Activate (explicit release step)** — Makes new version available to users after publish.
|
|
312
|
+
`sf agent activate --json --api-name <Developer_Name>`
|
|
313
|
+
11. **Verify published agent** — Preview user-facing behavior AFTER activation with
|
|
193
314
|
`sf agent preview start --json --api-name <Developer_Name>`
|
|
194
315
|
Use `--api-name`, not `--authoring-bundle`.
|
|
195
316
|
|
|
@@ -200,10 +321,12 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
|
|
|
200
321
|
2. [Core Language](references/agent-script-core-language.md) — syntax,
|
|
201
322
|
anti-patterns
|
|
202
323
|
3. [Design & Agent Spec](references/agent-design-and-spec-creation.md) —
|
|
203
|
-
Agent Spec updates,
|
|
324
|
+
Agent Spec updates, action implementation analysis
|
|
204
325
|
4. [Validation & Debugging](references/agent-validation-and-debugging.md) —
|
|
205
326
|
compilation diagnosis, preview workflow, session trace analysis
|
|
206
|
-
5. [
|
|
327
|
+
5. [Data Library Reference](references/data-library-reference.md) —
|
|
328
|
+
provisioning and Agent Script wiring for ADL grounding
|
|
329
|
+
6. [Known Issues](references/known-issues.md) — only load when errors
|
|
207
330
|
persist after code fixes
|
|
208
331
|
|
|
209
332
|
### Diagnose Compilation Errors
|
|
@@ -214,12 +337,12 @@ User has Agent Script that won't compile. Errors surface from `sf agent validate
|
|
|
214
337
|
|
|
215
338
|
Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command syntax.
|
|
216
339
|
|
|
217
|
-
1. **
|
|
340
|
+
1. **Capture concrete errors first, then reproduce** — If the user already shared error output, extract and list the exact error messages first. Then run
|
|
218
341
|
`sf agent validate authoring-bundle --json --api-name <Developer_Name>`
|
|
219
342
|
to capture basic compile errors. If no errors, run
|
|
220
343
|
`sf agent preview start --json --use-live-actions --authoring-bundle <Developer_Name>`
|
|
221
|
-
to capture complex compile errors. If
|
|
222
|
-
2. **Classify error** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for error taxonomy. Map each error message to root cause category.
|
|
344
|
+
to capture complex compile errors. If reproduction differs from user-provided errors, call out both and continue with the current reproducible errors.
|
|
345
|
+
2. **Classify error** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for error taxonomy. Map each exact error message to a root cause category.
|
|
223
346
|
3. **Locate fault** — Read [Core Language](references/agent-script-core-language.md) to understand correct syntax. Find specific line(s) in `.agent` file that cause each error.
|
|
224
347
|
4. **Fix code** — Apply targeted fixes. Check Anti-Patterns section in Core Language reference to ensure you're not introducing known bad pattern.
|
|
225
348
|
5. **Re-validate** — Run
|
|
@@ -281,7 +404,7 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
|
|
|
281
404
|
1. **Validate compilation** —
|
|
282
405
|
`sf agent validate authoring-bundle --json --api-name <Developer_Name>`
|
|
283
406
|
Do not proceed if validation fails.
|
|
284
|
-
2. **Deploy bundle and dependencies** — Read [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md) for dependency management and deploy commands. Deploy `AiAuthoringBundle` and all
|
|
407
|
+
2. **Deploy bundle and dependencies** — Read [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md) for dependency management and deploy commands. Deploy `AiAuthoringBundle` and all action implementations (Apex classes, Flows, Prompt Templates) and dependencies to org.
|
|
285
408
|
3. **Live preview** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for preview workflow and session trace analysis.
|
|
286
409
|
`sf agent preview start --json --use-live-actions --authoring-bundle <Developer_Name>`
|
|
287
410
|
then send test utterances with:
|
|
@@ -289,10 +412,10 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
|
|
|
289
412
|
Test key conversation paths to validate agent behavior when backed by live actions.
|
|
290
413
|
**CHECKPOINT — Do NOT proceed to Publish unless ALL are true:**
|
|
291
414
|
- `validate authoring-bundle` passes with zero errors
|
|
292
|
-
- Live preview (`--use-live-actions`) tested with
|
|
293
|
-
- Traces confirm correct subagent routing and
|
|
415
|
+
- Live preview (`--use-live-actions`) tested with realistic utterances covering all routing branches
|
|
416
|
+
- Traces confirm correct subagent routing, action invocation (`FunctionStep` present), and spec-compliant behavior
|
|
294
417
|
- User explicitly approves deployment
|
|
295
|
-
4. **Publish** — Publish validates metadata structure, not agent behavior. DO NOT publish as part of a dev/test inner loop. ONLY publish as the FINAL step
|
|
418
|
+
4. **Publish (explicit release step)** — Publish validates metadata structure, not agent behavior. DO NOT publish as part of a dev/test inner loop. ONLY publish as the FINAL step after user confirmation to commit this draft and prior to activation.
|
|
296
419
|
`sf agent publish authoring-bundle --json --api-name <Developer_Name>`
|
|
297
420
|
If publish fails, follow *Troubleshooting Publish Failures* in [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md) before retrying.
|
|
298
421
|
5. **Activate** — Makes new version available to users.
|
|
@@ -379,12 +502,13 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
|
|
|
379
502
|
|
|
380
503
|
1. **Establish coverage baseline** — Read Agent Spec. If no Agent Spec exists, reverse-engineer first by following Comprehend steps. Map every subagent, action, and flow control path to identify what needs test coverage.
|
|
381
504
|
2. **Design test scenarios** — For test design methodology, expectations, metrics, test spec YAML format, and templates, use **agentforce-test** skill. That skill owns all testing content. For each coverage target, write one or more test scenarios: user utterance, expected subagent routing, expected action invocations, and expected agent response. Include both happy paths and edge cases.
|
|
382
|
-
3. **
|
|
383
|
-
4. **
|
|
384
|
-
5. **
|
|
385
|
-
6. **
|
|
386
|
-
7. **
|
|
387
|
-
8. **
|
|
505
|
+
3. **Offer security coverage** — Security testing is part of the ADLC test flow, not a separate step. Treat OWASP LLM Top 10 resistance as a first-class coverage dimension alongside functional scenarios. **Confirm with the user before generating security test cases**, then use **agentforce-test** skill **Mode C1-author** to write a Testing Center security suite from the agent's own `.agent` file (method: `skills/agentforce-test/references/security-test-design.md`) that ships alongside the functional test spec. `C1-author` validates the spec locally with `sf agent test create --preview` and deploys nothing; deploying and running it (`C1-run`) is a separate decision the user makes in `/agentforce-test`, because `sf agent test run` has no simulated-action mode and executes the agent's real actions. Skip only if the user declines.
|
|
506
|
+
4. **Write test spec YAML** — Use template and reference files from **agentforce-test** skill. Save to `specs/<Agent_API_Name>-testSpec.yaml` in SFDX project.
|
|
507
|
+
5. **Create test metadata** — Generate `AiEvaluationDefinition` from test spec using CLI.
|
|
508
|
+
6. **Deploy test** — Deploy `AiEvaluationDefinition` to org.
|
|
509
|
+
7. **Run tests** — Execute test run using CLI. Capture results.
|
|
510
|
+
8. **Analyze results** — Compare actual outcomes against expectations. For failures, identify whether issue is in agent code, action implementations, or test spec itself.
|
|
511
|
+
9. **Iterate** — Fix agent code or test spec as needed, redeploy, and re-run until coverage targets are met.
|
|
388
512
|
|
|
389
513
|
#### Reference Files
|
|
390
514
|
|
|
@@ -397,11 +521,56 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
|
|
|
397
521
|
4. **agentforce-test** skill — test spec YAML format, expectations,
|
|
398
522
|
metrics, test design methodology, and test spec template
|
|
399
523
|
|
|
524
|
+
### Optimize an Agent
|
|
525
|
+
|
|
526
|
+
User wants to improve an existing Agent Script agent by scanning for common optimization patterns and applying fixes. May say "optimize my agent", "improve my agent", "clean up this agent", "refactor agent", or mention the agent feels inefficient or has redundancies. Also appropriate to suggest proactively after complex editing sessions with many incremental changes.
|
|
527
|
+
|
|
528
|
+
#### Required Steps
|
|
529
|
+
|
|
530
|
+
1. **Read and analyze the agent file** — Read the current `.agent` file. Read [Core Language](references/agent-script-core-language.md) for syntax rules and valid constructs as validation reference during optimization.
|
|
531
|
+
2. **Scan for optimization patterns** — For EACH subagent, systematically apply patterns 1–4 (and Pattern 5 if the agent has a `modality voice:` block). Each pattern's reference file has the detection heuristics and detailed fix instructions — read the ones that apply:
|
|
532
|
+
- **Pattern 1 — Wire action outputs to deterministic consumers.** [Data Flow](references/optimization-pattern-1-data-flow.md). Persist a producer output only when a later deterministic consumer needs that exact trusted value; do not replace `...` slot filling that legitimately draws from the current turn.
|
|
533
|
+
- **Pattern 2 — Extract requirement-backed deterministic logic.** [Deterministic Logic](references/optimization-pattern-2-deterministic-logic.md). Extract only when the condition is machine-known and protects regulation, authorization, an irreversible consequence, ordering, exact data flow, or an observed trace failure. Leave unstructured judgment to the model.
|
|
534
|
+
- **Pattern 3 — Fix variable/action reference syntax in instructions.** [Reference Syntax](references/optimization-pattern-3-reference-syntax.md). `{!@variables.X}` and `{!@actions.X}` instead of bare `@variables.X` / use-case phrasing.
|
|
535
|
+
- **Pattern 4 — Repair promised human handoff.** [Human Handoff](references/optimization-pattern-4-escalation.md). Apply only when requirements specify live handoff; never add escalation as default boilerplate.
|
|
536
|
+
- **Pattern 5 — Voice-readiness (voice agents only).** Instructional fixes are auto-apply candidates; voice-unsafe action authoring and latency issues are flag-only. See [Voice Modality Reference](references/voice-modality-reference.md) "Instructions for Voice Agents", [Actions Reference](references/actions-reference.md) "Voice-Safe Action Authoring", and [Voice Latency Heuristics](references/voice-latency-heuristics.md). **Never auto-change** escalation numbers/queues, SLA/pricing/legal wording, or PII handling — surface a suggested rewrite and require explicit approval.
|
|
537
|
+
3. **Report findings** — Present all findings as a concise `## Optimization Report` with per-improvement, actionable edit instructions (subagent + line, the variable/`set`/binding or logic-extraction change to make), then ask: *"Would you like me to apply these [N] improvements?"*
|
|
538
|
+
4. **STOP for user approval.** Do not apply changes without explicit approval.
|
|
539
|
+
5. **Apply improvements (if approved)** — Edit the `.agent` file directly for each approved improvement. Track successes and failures.
|
|
540
|
+
6. **Validate compilation** — `sf agent validate authoring-bundle --json --api-name <Developer_Name>`. If validation fails, fix introduced errors and re-validate.
|
|
541
|
+
7. **Report results** — Summarize which improvements were applied and which failed (with the reason).
|
|
542
|
+
|
|
543
|
+
#### Reference Files
|
|
544
|
+
|
|
545
|
+
- [Core Language](references/agent-script-core-language.md) — validation reference during optimization
|
|
546
|
+
- [Optimization Pattern 1–4](references/optimization-pattern-1-data-flow.md) — data flow, [deterministic logic](references/optimization-pattern-2-deterministic-logic.md), [reference syntax](references/optimization-pattern-3-reference-syntax.md), [human handoff](references/optimization-pattern-4-escalation.md) (detection heuristics + fix instructions per pattern)
|
|
547
|
+
- [Voice Modality Reference](references/voice-modality-reference.md) + [Voice Latency Heuristics](references/voice-latency-heuristics.md) + [Actions Reference](references/actions-reference.md) "Voice-Safe Action Authoring" — Pattern 5 voice-readiness
|
|
548
|
+
- [Validation & Debugging](references/agent-validation-and-debugging.md) — compilation validation after applying optimizations
|
|
549
|
+
|
|
550
|
+
### Manage MCP Servers
|
|
551
|
+
|
|
552
|
+
User wants to register, configure, or manage Model Context Protocol (MCP) servers in the Salesforce API Catalog so their assets (tools, prompts, resources) become available as agent actions. May say "register an MCP server", "create MCP server", "list MCP servers", "whitelist MCP tools", "approve tools", "fetch MCP assets", "update MCP server", "delete MCP server", or mention MCP authentication. Uses `sf agent mcp` CLI commands. This is distinct from general MCP development or MCP protocol design.
|
|
553
|
+
|
|
554
|
+
#### Required Steps
|
|
555
|
+
|
|
556
|
+
Read [MCP Server Management](references/mcp-management-reference.md) for exact command syntax, response structures, the interactive whitelisting flow, security best practices, error handling, and complete examples. In brief:
|
|
557
|
+
|
|
558
|
+
1. **Verify target org** — `sf config get target-org --json` (Rule 2). If none is set, ask the user to set one first.
|
|
559
|
+
2. **Identify the operation** and map it to a workflow in the reference (register, list, get details, fetch + whitelist assets, list assets, update, delete). Gather any missing required inputs; handle client secrets via **stdin piping, never on the command line**.
|
|
560
|
+
3. **Execute the `sf agent mcp` command** with `--json` (Rule 1). After create, read the server ID from `result.server.id` (not `result.id`). These commands are developer preview, so every response carries a `warnings` preview notice.
|
|
561
|
+
4. **Whitelist interactively** — display each asset's metadata and wait for explicit yes/no/skip per tool. `sf agent mcp asset replace` is a FULL replacement — send the complete desired state.
|
|
562
|
+
5. **Apply security review before activating** — flag destructive, broadly-scoped, or auth-requiring tools; warn on production orgs; require explicit confirmation for destructive operations and deletions.
|
|
563
|
+
6. **Confirm results** and clean up any temp allowlist files.
|
|
564
|
+
|
|
565
|
+
#### Reference Files
|
|
566
|
+
|
|
567
|
+
- [MCP Server Management](references/mcp-management-reference.md) — `sf agent mcp` command reference, response structures, interactive whitelisting flow, security best practices, error handling, and complete examples
|
|
568
|
+
|
|
400
569
|
## The Agent Spec
|
|
401
570
|
|
|
402
|
-
**Agent Spec** is the central artifact this skill produces and consumes. A structured design document representing agent
|
|
571
|
+
**Agent Spec** is the central artifact this skill produces and consumes. A structured design document representing agent purpose, user outcomes, subagent graph, actions and implementations, variables, subagent posture, deterministic controls (when needed), and behavioral intent.
|
|
403
572
|
|
|
404
|
-
Agent Specs evolve with the agent. Sparse during agent creation (purpose,
|
|
573
|
+
Agent Specs evolve with the agent. Sparse during agent creation (purpose, use cases, planned placeholders). Fleshed out during agent build (flowchart, action implementations mapped, posture choices documented, deterministic controls added only where justified). Reverse-engineered when comprehending existing agents. Critical for advanced troubleshooting, providing reference to compare expected vs. actual behavior. During testing, test coverage maps against it.
|
|
405
574
|
|
|
406
575
|
Always produce or update Agent Spec as first step of any operation that changes or analyzes agent. It is consistent grounding to work from, and a durable artifact a developer can review.
|
|
407
576
|
|
|
@@ -413,27 +582,34 @@ The `assets/` directory contains templates and examples. Read when you need a st
|
|
|
413
582
|
|
|
414
583
|
- **`assets/agent-spec-template.md`** — Agent Spec template with all sections and placeholder content. Copy to `<AgentName>-AgentSpec.md` in project directory, then fill in during design. Save Agent Spec as file — significant design artifact that benefits from proper rendering, especially Mermaid Subagent Map diagram.
|
|
415
584
|
|
|
416
|
-
- **`assets/local-info-agent-annotated.agent`** — Complete annotated example based on Local Info Agent, showing all major Agent Script constructs in context with inline comments explaining why each construct is used. Read when you need concrete reference for how concepts compose into working agent, or as fallback when focused examples in reference files aren't sufficient.
|
|
585
|
+
- **`assets/agents/local-info-agent-annotated.agent`** — Complete annotated example based on Local Info Agent, showing all major Agent Script constructs in context with inline comments explaining why each construct is used. Read when you need concrete reference for how concepts compose into working agent, or as fallback when focused examples in reference files aren't sufficient.
|
|
417
586
|
|
|
418
|
-
- **`assets/template-single-subagent.agent`** —
|
|
587
|
+
- **`assets/agents/template-single-subagent.agent`** — Compatibility-named focused starter with one `start_agent` execution block and no router or subagent blocks.
|
|
419
588
|
|
|
420
|
-
- **`assets/template-multi-subagent.agent`** — Minimal agent with multiple subagents and transitions. Copy and modify for complex agents.
|
|
589
|
+
- **`assets/agents/template-multi-subagent.agent`** — Minimal agent with multiple subagents and transitions. Copy and modify for complex agents.
|
|
421
590
|
|
|
422
591
|
- **`assets/invocable-apex-template.cls`** — Reference for invocable Apex
|
|
423
|
-
classes. Copy and modify when complex Apex
|
|
592
|
+
classes. Copy and modify when complex Apex action implementations are desired.
|
|
424
593
|
|
|
425
594
|
## Important Constraints
|
|
426
595
|
|
|
427
596
|
- **Use only Salesforce CLI and Salesforce org.** Do not reference or depend on other skills, MCP servers, or external tooling. All commands use `sf` (Salesforce CLI).
|
|
428
597
|
|
|
429
|
-
- **Only certain
|
|
598
|
+
- **Only certain implementation types are valid for actions.** For example, only invocable Apex (not arbitrary Apex classes) can back an action. Similar constraints may apply to Flows and Prompt Templates. When wiring actions to implementations, consult Design & Agent Spec reference file for valid types and stubbing methodology.
|
|
430
599
|
|
|
431
600
|
- **`sf agent generate test-spec` is not for agentic use.** It is interactive, REPL-style command designed for humans. When creating test specs, start from boilerplate template in assets instead.
|
|
432
601
|
|
|
433
602
|
## Common Issues Quick Reference
|
|
434
603
|
|
|
435
604
|
**`Internal Error, try again later` during publish:**
|
|
436
|
-
|
|
605
|
+
Server-side compile failure. The 500 doesn't tell you which check failed — walk all four causes in order before asking the user what's wrong. Do NOT stop at cause 1.
|
|
606
|
+
|
|
607
|
+
1. **Agent type mismatch on `access.default_agent_user`.** Employee agents normally omit `access.default_agent_user`; service agents MUST have it (and the user must hold an Einstein Agent license). See [Design & Agent Spec](references/agent-design-and-spec-creation.md), Section 3. Re-run the query — do not invent the username.
|
|
608
|
+
2. **Action definition missing `outputs:` block.** If any action has `target:` and `inputs:` but no `outputs:`, the server-side compiler can't generate return bindings. CLI `validate` and LSP both PASS — only publish fails. See [Known Issues](references/known-issues.md), Issue 15.
|
|
609
|
+
3. **Other structural drift in the `.agent` file.** Diff against a known-good bundle in the same org:
|
|
610
|
+
`sf project retrieve start --metadata "AiAuthoringBundle:<known-working-agent>" --output-dir /tmp/diff-bundle --json`
|
|
611
|
+
Compare keyword-by-keyword. Look for missing required-but-undocumented fields, block-ordering drift, or DSL keywords your bundle uses that aren't in the working one.
|
|
612
|
+
4. **Genuine transient backend error.** If 1–3 are clean and the response `requestId` differs across retries, wait 60 s and retry once.
|
|
437
613
|
|
|
438
614
|
**`Unable to access Salesforce Agent APIs...` during preview:**
|
|
439
615
|
`default_agent_user` lacks permissions. See [Agent User Setup & Permissions](references/agent-user-setup.md). Do NOT publish as fix — `--use-live-actions` does not require published agent.
|
|
@@ -447,72 +623,26 @@ Planner validates ALL actions across ALL subagents at startup. One missing permi
|
|
|
447
623
|
**Apex action returns empty results in live preview but works in simulated:**
|
|
448
624
|
`WITH USER_MODE` + missing object permissions = silent failure (0 rows, no error). See [Agent User Setup & Permissions](references/agent-user-setup.md), Section 6.2.
|
|
449
625
|
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
-
|
|
458
|
-
-
|
|
459
|
-
-
|
|
460
|
-
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
-
|
|
469
|
-
-
|
|
470
|
-
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
Score every generated agent on 100 points across 7 categories: Structure (15), Safety (15), Deterministic Logic (20), Instruction Resolution (20), FSM Architecture (10), Action Configuration (10), Deployment Readiness (10).
|
|
475
|
-
|
|
476
|
-
See [Scoring Rubric](references/scoring-rubric.md) for the complete rubric.
|
|
477
|
-
|
|
478
|
-
## Review Mode
|
|
479
|
-
|
|
480
|
-
When user provides an existing `.agent` file (e.g., `review path/to/file.agent`):
|
|
481
|
-
|
|
482
|
-
1. Read the file
|
|
483
|
-
2. Score against the 100-point rubric
|
|
484
|
-
3. List every issue grouped by category
|
|
485
|
-
4. Provide corrected code snippets
|
|
486
|
-
5. Offer to apply fixes
|
|
487
|
-
|
|
488
|
-
## Safety Review
|
|
489
|
-
|
|
490
|
-
7-category LLM-driven safety review for `.agent` files. Integrated into Phase 0 of authoring and deployment. Categories: Identity & Transparency, User Safety, Data Handling, Content Safety, Fairness, Deception, Scope & Boundaries.
|
|
491
|
-
|
|
492
|
-
See [Safety Review](references/safety-review-reference.md) for the complete framework, severity levels, false positive guidance, and adversarial test prompts.
|
|
493
|
-
|
|
494
|
-
## Discover & Scaffold
|
|
495
|
-
|
|
496
|
-
Validate action targets exist in org and generate stubs for missing ones.
|
|
497
|
-
|
|
498
|
-
See [Discover Reference](references/discover-reference.md) and [Scaffold Reference](references/scaffold-reference.md).
|
|
499
|
-
|
|
500
|
-
**CRITICAL:** Stubs must return realistic data, not `'TODO'`. Placeholder responses cause SMALL_TALK grounding because the LLM falls back to training data.
|
|
501
|
-
|
|
502
|
-
## Deploy Lifecycle
|
|
503
|
-
|
|
504
|
-
Validate → deploy metadata → publish bundle → activate. See [Deploy Reference](references/deploy-reference.md) for phases, error recovery, CI/CD, and rollback.
|
|
505
|
-
|
|
506
|
-
## Template Assets
|
|
507
|
-
|
|
508
|
-
Ready-to-use `.agent` templates in `assets/agents/` (hello-world, simple-qa, multi-subagent, production-faq, order-service, verification-gate). See also `assets/patterns/` for 11+ reusable design patterns and [Examples](references/examples.md) for inline walkthroughs.
|
|
509
|
-
|
|
510
|
-
## Additional References
|
|
511
|
-
|
|
512
|
-
| Topic | File |
|
|
513
|
-
|-------|------|
|
|
514
|
-
| Architecture patterns | [architecture-patterns.md](references/architecture-patterns.md) |
|
|
515
|
-
| Type mapping decision tree | [complex-data-types.md](references/complex-data-types.md) |
|
|
516
|
-
| Feature validity by context | [feature-validity.md](references/feature-validity.md) |
|
|
517
|
-
| Instruction resolution model | [instruction-resolution.md](references/instruction-resolution.md) |
|
|
518
|
-
| Complete agent examples | [examples.md](references/examples.md) |
|
|
626
|
+
**Agent published, ADL indexed (`retrieverId` populated), but every grounded question returns empty `knowledgeSummary` / "I don't have that information":**
|
|
627
|
+
The Einstein Agent User lacks Data Cloud access. Two things to check, in order:
|
|
628
|
+
1. **Permset/PSL not assigned.** Run the verification queries from [Agent User Setup, Step 3b.3](references/agent-user-setup.md). If no Data Cloud permset/PSL appears, run the discovery-then-assign procedure (priority: `GenieDataPlatformStarterPsl` PSL → `GenieUserEnhancedSecurity` PS → `DataCloudUser` PS → `DataCloudArchitect` PS).
|
|
629
|
+
2. **Data Space scope not granted on the permset.** Currently no API. Setup → Permission Sets → click the assigned permset → "Data Cloud Data Space Management" under Apps → Edit → add the ADL's data space (usually `default`) → Save. See [Agent User Setup, Step 3b.4](references/agent-user-setup.md).
|
|
630
|
+
|
|
631
|
+
## Quick Links (Deep Detail Lives in References)
|
|
632
|
+
|
|
633
|
+
- Syntax and execution model: [Core Language](references/agent-script-core-language.md)
|
|
634
|
+
- Agent design/spec process: [Design & Agent Spec](references/agent-design-and-spec-creation.md)
|
|
635
|
+
- Posture dial (agentic vs deterministic): [Posture & Determinism](references/posture-and-determinism.md)
|
|
636
|
+
- Concrete authoring invariants: [The Zen of AgentScript](references/zen-of-agentscript.md)
|
|
637
|
+
- Pattern selection by scenario: [Patterns by Requirement](references/patterns-by-requirement.md)
|
|
638
|
+
- Architecture mechanics and migration: [Architecture Patterns](references/architecture-patterns.md)
|
|
639
|
+
- Validation, preview, and traces: [Validation & Debugging](references/agent-validation-and-debugging.md)
|
|
640
|
+
- Deploy/publish/activate lifecycle: [Deploy Reference](references/deploy-reference.md)
|
|
641
|
+
- Metadata lifecycle and publish troubleshooting: [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md)
|
|
642
|
+
- ADL provisioning and wiring: [Data Library Reference](references/data-library-reference.md)
|
|
643
|
+
- Agent access and permissions: [Agent Access Guide](references/agent-access-guide.md), [Agent User Setup](references/agent-user-setup.md)
|
|
644
|
+
- Voice modality and telephony agents: [Voice Modality Reference](references/voice-modality-reference.md)
|
|
645
|
+
- Safety review framework: [Safety Review](references/safety-review-reference.md)
|
|
646
|
+
- Rubric and review scoring: [Scoring Rubric](references/scoring-rubric.md)
|
|
647
|
+
- Optimization patterns: [Pattern 1 — Data Flow](references/optimization-pattern-1-data-flow.md), [Pattern 2 — Deterministic Logic](references/optimization-pattern-2-deterministic-logic.md), [Pattern 3 — Reference Syntax](references/optimization-pattern-3-reference-syntax.md), [Pattern 4 — Escalation](references/optimization-pattern-4-escalation.md)
|
|
648
|
+
- MCP server registration and tool whitelisting: [MCP Server Management](references/mcp-management-reference.md)
|