@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
package/skills/platform-data-and-tooling-api-context-get/references/data_and_tooling_index_table.md
ADDED
|
@@ -0,0 +1,2194 @@
|
|
|
1
|
+
<!-- Generated by generate_data_and_tooling_skill.py on 2026-07-23 -->
|
|
2
|
+
|
|
3
|
+
# Data + Tooling API Object Index
|
|
4
|
+
|
|
5
|
+
1839 Enterprise/Data API sObjects (`assets/enterprise_api/`) and 291 Tooling API records (`assets/tooling_api/`).
|
|
6
|
+
|
|
7
|
+
## Enterprise / Data API — Common Sections
|
|
8
|
+
|
|
9
|
+
These sections appear in most enterprise sObjects:
|
|
10
|
+
|
|
11
|
+
- title
|
|
12
|
+
- description
|
|
13
|
+
- fields
|
|
14
|
+
|
|
15
|
+
**Note**: the table below shows only *additional* sections beyond these.
|
|
16
|
+
|
|
17
|
+
## Enterprise / Data API — Quick Reference
|
|
18
|
+
|
|
19
|
+
| Object | Additional Sections |
|
|
20
|
+
|--------|---------------------|
|
|
21
|
+
| AIApplication | field_reference |
|
|
22
|
+
| AIApplicationConfig | field_reference |
|
|
23
|
+
| AIInsightAction | special_access_rules, usage, field_reference |
|
|
24
|
+
| AIInsightFeedback | special_access_rules, usage, field_reference |
|
|
25
|
+
| AIInsightReason | special_access_rules, usage, field_reference |
|
|
26
|
+
| AIInsightValue | special_access_rules, usage, field_reference |
|
|
27
|
+
| AIRecordInsight | special_access_rules, usage, field_reference |
|
|
28
|
+
| AIResearchPromptResult | special_access_rules, associated_objects |
|
|
29
|
+
| API_Total_Usage | - |
|
|
30
|
+
| AbnExperiment | associated_objects, field_reference |
|
|
31
|
+
| AbnExperimentCohort | usage, associated_objects, field_reference |
|
|
32
|
+
| AcceptedEventRelation | usage, wsdl_segment, field_reference |
|
|
33
|
+
| Account | ispersonaccount_fields, special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
34
|
+
| AccountBrand | special_access_rules, associated_objects, field_reference |
|
|
35
|
+
| AccountCleanInfo | usage, associated_objects, wsdl_segment, field_reference |
|
|
36
|
+
| AccountContactRelation | usage, associated_objects, field_reference |
|
|
37
|
+
| AccountContactRole | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
38
|
+
| AccountInsight | special_access_rules, usage |
|
|
39
|
+
| AccountOwnerSharingRule | special_access_rules, usage |
|
|
40
|
+
| AccountPartner | special_access_rules, wsdl_segment, field_reference |
|
|
41
|
+
| AccountPlan | special_access_rules, associated_objects |
|
|
42
|
+
| AccountPlanObjMeasCalcCond | special_access_rules, usage |
|
|
43
|
+
| AccountPlanObjMeasCalcDef | special_access_rules, usage |
|
|
44
|
+
| AccountPlanObjMeasCalcDefLocalization | usage |
|
|
45
|
+
| AccountPlanObjMeasRela | associated_objects |
|
|
46
|
+
| AccountPlanObjective | special_access_rules, associated_objects |
|
|
47
|
+
| AccountPlanObjectiveMeasure | special_access_rules, associated_objects |
|
|
48
|
+
| AccountRelationship | special_access_rules, associated_objects, field_reference |
|
|
49
|
+
| AccountRelationshipShareRule | field_reference |
|
|
50
|
+
| AccountShare | special_access_rules, usage, wsdl_segment, field_reference |
|
|
51
|
+
| AccountTag | usage |
|
|
52
|
+
| AccountTeamMember | usage, associated_objects |
|
|
53
|
+
| AccountTerritoryAssignmentRule | special_access_rules, usage |
|
|
54
|
+
| AccountTerritoryAssignmentRuleItem | special_access_rules |
|
|
55
|
+
| AccountTerritorySharingRule | special_access_rules, usage |
|
|
56
|
+
| AccountUserTerritory2View | special_access_rules, usage, field_reference |
|
|
57
|
+
| ActionCadence | usage, associated_objects, field_reference |
|
|
58
|
+
| ActionCadenceRule | usage, field_reference |
|
|
59
|
+
| ActionCadenceRuleCondition | usage, field_reference |
|
|
60
|
+
| ActionCadenceStep | usage, associated_objects, field_reference |
|
|
61
|
+
| ActionCadenceStepTracker | usage, associated_objects, field_reference |
|
|
62
|
+
| ActionCadenceStepVariant | special_access_rules, usage |
|
|
63
|
+
| ActionCadenceTracker | usage, associated_objects, field_reference |
|
|
64
|
+
| ActionCdncStpMonthlyMetric | special_access_rules, field_reference |
|
|
65
|
+
| ActionLinkGroupTemplate | special_access_rules, usage, wsdl_segment, field_reference |
|
|
66
|
+
| ActionLinkTemplate | special_access_rules, usage, wsdl_segment, field_reference |
|
|
67
|
+
| ActionPlan | special_access_rules, associated_objects, field_reference |
|
|
68
|
+
| ActionPlanItem | associated_objects, field_reference |
|
|
69
|
+
| ActionPlanTemplate | associated_objects, field_reference |
|
|
70
|
+
| ActionPlanTemplateItem | associated_objects, field_reference |
|
|
71
|
+
| ActionPlanTemplateItemValue | associated_objects, field_reference |
|
|
72
|
+
| ActionPlanTemplateVersion | associated_objects, field_reference |
|
|
73
|
+
| ActiveFeatureLicenseMetric | wsdl_segment, field_reference |
|
|
74
|
+
| ActivePermSetLicenseMetric | wsdl_segment, field_reference |
|
|
75
|
+
| ActiveProfileMetric | wsdl_segment, field_reference |
|
|
76
|
+
| ActiveScratchOrg | usage, associated_objects, field_reference |
|
|
77
|
+
| ActivityFieldHistory | special_access_rules, wsdl_segment, field_reference |
|
|
78
|
+
| ActivityHistory | usage, wsdl_segment, field_reference |
|
|
79
|
+
| ActivityMetric | special_access_rules, field_reference |
|
|
80
|
+
| ActivityUsrConnectionStatus | special_access_rules, field_reference |
|
|
81
|
+
| AdditionalNumber | special_access_rules, usage, wsdl_segment, field_reference |
|
|
82
|
+
| Address | special_access_rules, usage, wsdl_segment, field_reference |
|
|
83
|
+
| AgentWork | special_access_rules, usage, associated_objects, field_reference |
|
|
84
|
+
| AgentWorkConversationalData | special_access_rules |
|
|
85
|
+
| AgentWorkSkill | special_access_rules, associated_objects, field_reference |
|
|
86
|
+
| AiGenActionItem | special_access_rules |
|
|
87
|
+
| AiGenActionItemInfo | special_access_rules |
|
|
88
|
+
| AiJobRun | field_reference |
|
|
89
|
+
| AiJobRunItem | field_reference |
|
|
90
|
+
| AiModelLanguage | special_access_rules |
|
|
91
|
+
| AllowedEmailDomain | special_access_rules |
|
|
92
|
+
| AlternativePaymentMethod | special_access_rules, wsdl_segment, field_reference |
|
|
93
|
+
| AnalyticsAssetAction | special_access_rules, field_reference |
|
|
94
|
+
| AnalyticsChangeEventLog | special_access_rules |
|
|
95
|
+
| AnalyticsContainerWidgetDef | special_access_rules, field_reference |
|
|
96
|
+
| AnalyticsDashboard | special_access_rules, field_reference |
|
|
97
|
+
| AnalyticsDashboardWidget | special_access_rules, field_reference |
|
|
98
|
+
| AnalyticsDownloadEventLog | special_access_rules |
|
|
99
|
+
| AnalyticsInteractEventLog | special_access_rules, usage |
|
|
100
|
+
| AnalyticsLicensedAsset | field_reference |
|
|
101
|
+
| AnalyticsPerfEventLog | special_access_rules |
|
|
102
|
+
| AnalyticsVisualization | special_access_rules, field_reference |
|
|
103
|
+
| AnalyticsVizField | special_access_rules, field_reference |
|
|
104
|
+
| AnalyticsVizViewDef | special_access_rules, field_reference |
|
|
105
|
+
| AnalyticsWorkspace | special_access_rules, field_reference |
|
|
106
|
+
| AnalyticsWorkspaceAsset | special_access_rules, field_reference |
|
|
107
|
+
| Announcement | usage, wsdl_segment, field_reference |
|
|
108
|
+
| ApexCalloutEventLog | special_access_rules |
|
|
109
|
+
| ApexClass | usage, wsdl_segment, field_reference |
|
|
110
|
+
| ApexComponent | usage, wsdl_segment, field_reference |
|
|
111
|
+
| ApexEmailNotification | usage, wsdl_segment, field_reference |
|
|
112
|
+
| ApexExecutionEventLog | special_access_rules |
|
|
113
|
+
| ApexExtlCalloutEventLog | special_access_rules |
|
|
114
|
+
| ApexInlineEventLog | - |
|
|
115
|
+
| ApexLog | usage, wsdl_segment, field_reference |
|
|
116
|
+
| ApexPage | usage, wsdl_segment, field_reference |
|
|
117
|
+
| ApexPageInfo | special_access_rules, usage, wsdl_segment, field_reference |
|
|
118
|
+
| ApexRestApiEventLog | special_access_rules |
|
|
119
|
+
| ApexSoapApiEventLog | special_access_rules |
|
|
120
|
+
| ApexTestQueueItem | special_access_rules, usage, wsdl_segment, field_reference |
|
|
121
|
+
| ApexTestResult | special_access_rules, usage, wsdl_segment, field_reference |
|
|
122
|
+
| ApexTestResultLimits | special_access_rules, usage, wsdl_segment, field_reference |
|
|
123
|
+
| ApexTestRunResult | special_access_rules, wsdl_segment, field_reference |
|
|
124
|
+
| ApexTestSuite | special_access_rules, usage, wsdl_segment, field_reference |
|
|
125
|
+
| ApexTrigger | usage, wsdl_segment, field_reference |
|
|
126
|
+
| ApexTriggerEventLog | special_access_rules |
|
|
127
|
+
| ApexTypeImplementor | usage, wsdl_segment, field_reference |
|
|
128
|
+
| ApexUnexpectedExcpEventLog | special_access_rules |
|
|
129
|
+
| Apex_Callout_Event_Type | - |
|
|
130
|
+
| Apex_Execution_Event_Type | - |
|
|
131
|
+
| Apex_Inline_Event_Type | - |
|
|
132
|
+
| Apex_REST_API_Event_Type | - |
|
|
133
|
+
| Apex_SOAP_Event_Type | - |
|
|
134
|
+
| Apex_Trigger_Event_Type | - |
|
|
135
|
+
| Apex_Unexpected_Exception_Event_Type | - |
|
|
136
|
+
| ApiTotalUsageEventLog | special_access_rules |
|
|
137
|
+
| AppAnalyticsQueryRequest | special_access_rules, usage, wsdl_segment, field_reference |
|
|
138
|
+
| AppDefinition | wsdl_segment, field_reference |
|
|
139
|
+
| AppExtension | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
140
|
+
| AppMenuItem | usage, wsdl_segment, field_reference |
|
|
141
|
+
| AppTabMember | wsdl_segment, field_reference |
|
|
142
|
+
| AppUsageAssignment | field_reference |
|
|
143
|
+
| ApplicationFormTemplate | special_access_rules, associated_objects, field_reference |
|
|
144
|
+
| AppointmentAssignmentPolicy | field_reference |
|
|
145
|
+
| AppointmentScheduleAggr | associated_objects, field_reference |
|
|
146
|
+
| AppointmentScheduleLog | associated_objects, field_reference |
|
|
147
|
+
| AppointmentSchedulingPolicy | field_reference |
|
|
148
|
+
| AppointmentTopicTimeSlot | associated_objects, wsdl_segment, field_reference |
|
|
149
|
+
| Approval | special_access_rules, usage |
|
|
150
|
+
| ApprovalAlertContentDef | associated_objects |
|
|
151
|
+
| ApprovalSubmission | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
152
|
+
| ApprovalSubmissionDetail | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
153
|
+
| ApprovalWorkItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
154
|
+
| ApprovalWorkItemCondition | special_access_rules, field_reference |
|
|
155
|
+
| ApprovalWorkItemCriteria | special_access_rules, field_reference |
|
|
156
|
+
| ApptBundleAggrDurDnscale | wsdl_segment, field_reference |
|
|
157
|
+
| ApptBundleAggrPolicy | wsdl_segment, field_reference |
|
|
158
|
+
| ApptBundleConfig | wsdl_segment, field_reference |
|
|
159
|
+
| ApptBundlePolicy | wsdl_segment, field_reference |
|
|
160
|
+
| ApptBundlePolicySvcTerr | wsdl_segment, field_reference |
|
|
161
|
+
| ApptBundlePropagatePolicy | wsdl_segment, field_reference |
|
|
162
|
+
| ApptBundleRestrictPolicy | wsdl_segment, field_reference |
|
|
163
|
+
| ApptBundleSortPolicy | wsdl_segment, field_reference |
|
|
164
|
+
| ArchiveActivity | special_access_rules |
|
|
165
|
+
| ArchivePolicyDefinition | special_access_rules |
|
|
166
|
+
| Article_Type__DataCategorySelection | special_access_rules, usage |
|
|
167
|
+
| Asset | usage, associated_objects, wsdl_segment, field_reference |
|
|
168
|
+
| AssetAction | special_access_rules, wsdl_segment, field_reference |
|
|
169
|
+
| AssetActionSource | special_access_rules, wsdl_segment, field_reference |
|
|
170
|
+
| AssetAttribute | special_access_rules, usage, wsdl_segment, field_reference |
|
|
171
|
+
| AssetContractRelationship | special_access_rules, associated_objects, field_reference |
|
|
172
|
+
| AssetDowntimePeriod | wsdl_segment, field_reference |
|
|
173
|
+
| AssetOwnerSharingRule | special_access_rules, usage |
|
|
174
|
+
| AssetRateAdjustment | special_access_rules, field_reference |
|
|
175
|
+
| AssetRateCardEntry | special_access_rules, field_reference |
|
|
176
|
+
| AssetRelationship | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
177
|
+
| AssetShare | special_access_rules, usage, wsdl_segment, field_reference |
|
|
178
|
+
| AssetStatePeriod | special_access_rules, wsdl_segment, field_reference |
|
|
179
|
+
| AssetStatePeriodAttribute | special_access_rules, usage, wsdl_segment, field_reference |
|
|
180
|
+
| AssetTag | usage |
|
|
181
|
+
| AssetTokenEvent | wsdl_segment, field_reference |
|
|
182
|
+
| AssetWarranty | associated_objects, wsdl_segment, field_reference |
|
|
183
|
+
| AssignedResource | usage, associated_objects, wsdl_segment, field_reference |
|
|
184
|
+
| AssignmentRule | usage, wsdl_segment, field_reference |
|
|
185
|
+
| AssociatedLocation | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
186
|
+
| AsyncApexJob | special_access_rules, usage, wsdl_segment, field_reference |
|
|
187
|
+
| AsyncOpSyndicationFeedFile | special_access_rules |
|
|
188
|
+
| AsyncOperationLog | special_access_rules, field_reference |
|
|
189
|
+
| AsyncOperationTracker | associated_objects, field_reference |
|
|
190
|
+
| AsyncReportRunEventLog | special_access_rules |
|
|
191
|
+
| Asynchronous_Report_Run_Event_Type | - |
|
|
192
|
+
| AttachedContentDocument | special_access_rules, usage, wsdl_segment, field_reference |
|
|
193
|
+
| AttachedContentNote | special_access_rules, usage, field_reference |
|
|
194
|
+
| Attachment | usage, wsdl_segment, field_reference |
|
|
195
|
+
| AttachmentEventLog | special_access_rules |
|
|
196
|
+
| AttribModel | usage, associated_objects |
|
|
197
|
+
| AttribModelStage | usage, associated_objects |
|
|
198
|
+
| AttribModelStageMetric | usage, associated_objects |
|
|
199
|
+
| AttributeDefinition | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
200
|
+
| AttributePicklist | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
201
|
+
| AttributePicklistValue | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
202
|
+
| Audience | field_reference |
|
|
203
|
+
| AuraDefinition | special_access_rules, usage, wsdl_segment, field_reference |
|
|
204
|
+
| AuraDefinitionBundle | usage, wsdl_segment, field_reference |
|
|
205
|
+
| AuraDefinitionBundleInfo | wsdl_segment, field_reference |
|
|
206
|
+
| AuraDefinitionInfo | wsdl_segment, field_reference |
|
|
207
|
+
| AuraRequestEventLog | special_access_rules |
|
|
208
|
+
| Aura_Request_Event_Type | - |
|
|
209
|
+
| AuthConfig | special_access_rules, wsdl_segment, field_reference |
|
|
210
|
+
| AuthConfigProviders | special_access_rules, wsdl_segment, field_reference |
|
|
211
|
+
| AuthProvParamFwdAllowlist | wsdl_segment, field_reference |
|
|
212
|
+
| AuthProvider | special_access_rules, wsdl_segment, field_reference |
|
|
213
|
+
| AuthSession | special_access_rules, usage, wsdl_segment, field_reference |
|
|
214
|
+
| AuthorizationForm | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
215
|
+
| AuthorizationFormConsent | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
216
|
+
| AuthorizationFormDataUse | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
217
|
+
| AuthorizationFormText | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
218
|
+
| AutomatedAction | associated_objects |
|
|
219
|
+
| AutomatedActionCondition | - |
|
|
220
|
+
| AutomatedActionOverride | associated_objects |
|
|
221
|
+
| AutomatedActionParameter | - |
|
|
222
|
+
| AutomatedActionReminder | associated_objects |
|
|
223
|
+
| BackgroundOperation | usage, wsdl_segment, field_reference |
|
|
224
|
+
| BackgroundOperationResult | usage |
|
|
225
|
+
| BatchApexErrorEvent | wsdl_segment, field_reference |
|
|
226
|
+
| BillingBatchScheduler | special_access_rules, field_reference |
|
|
227
|
+
| BillingPeriodItem | special_access_rules, field_reference |
|
|
228
|
+
| BillingPolicy | special_access_rules, field_reference |
|
|
229
|
+
| BillingSchedule | special_access_rules, field_reference |
|
|
230
|
+
| BillingScheduleGroup | special_access_rules, field_reference |
|
|
231
|
+
| BillingTreatment | special_access_rules, associated_objects, field_reference |
|
|
232
|
+
| BillingTreatmentItem | special_access_rules, associated_objects, field_reference |
|
|
233
|
+
| BlockedRedirectEventLog | special_access_rules |
|
|
234
|
+
| Blocked_Redirect_Event_Type | usage |
|
|
235
|
+
| Bookmark | usage |
|
|
236
|
+
| BotDefinition | special_access_rules, field_reference |
|
|
237
|
+
| BotVersion | field_reference |
|
|
238
|
+
| BrandTemplate | special_access_rules, usage, wsdl_segment, field_reference |
|
|
239
|
+
| BrandingSet | special_access_rules, wsdl_segment, field_reference |
|
|
240
|
+
| Brief | field_reference |
|
|
241
|
+
| BriefcaseAssignment | associated_objects, wsdl_segment, field_reference |
|
|
242
|
+
| BriefcaseDefinition | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
243
|
+
| BriefcaseRule | special_access_rules, wsdl_segment, field_reference |
|
|
244
|
+
| BriefcaseRuleFilter | special_access_rules, wsdl_segment, field_reference |
|
|
245
|
+
| BroadcastCommAudience | special_access_rules, associated_objects |
|
|
246
|
+
| BroadcastCommunication | special_access_rules, associated_objects |
|
|
247
|
+
| BroadcastTopic | special_access_rules |
|
|
248
|
+
| BroadcastTopicGroup | special_access_rules, associated_objects |
|
|
249
|
+
| BroadcastTopicNetwork | special_access_rules, associated_objects |
|
|
250
|
+
| BrowserPolicyViolation | special_access_rules, wsdl_segment, field_reference |
|
|
251
|
+
| BulkApi2EventLog | special_access_rules |
|
|
252
|
+
| BulkApiEventLog | special_access_rules |
|
|
253
|
+
| BulkApiRequestEventLog | special_access_rules |
|
|
254
|
+
| Bulk_API_2.0_Event_Type | - |
|
|
255
|
+
| Bulk_API_Event_Type | - |
|
|
256
|
+
| Bulk_API_Request_Event_Type | - |
|
|
257
|
+
| BusinessAlert | special_access_rules |
|
|
258
|
+
| BusinessAlertStatus | special_access_rules |
|
|
259
|
+
| BusinessBrand | associated_objects, wsdl_segment, field_reference |
|
|
260
|
+
| BusinessHours | special_access_rules, usage, wsdl_segment, field_reference |
|
|
261
|
+
| BusinessProcessDefinition | field_reference |
|
|
262
|
+
| BusinessProcessFeedback | field_reference |
|
|
263
|
+
| BusinessProcessGroup | field_reference |
|
|
264
|
+
| Business_Process | special_access_rules, usage |
|
|
265
|
+
| BuyerAccount | special_access_rules, associated_objects, field_reference |
|
|
266
|
+
| BuyerCriteria | usage, associated_objects, field_reference |
|
|
267
|
+
| BuyerGroup | usage, associated_objects, field_reference |
|
|
268
|
+
| BuyerGroupBuyerCriteria | usage, field_reference |
|
|
269
|
+
| BuyerGroupMember | special_access_rules, field_reference |
|
|
270
|
+
| BuyerGroupPricebook | special_access_rules, usage, field_reference |
|
|
271
|
+
| BuyerGroupRelatedObject | special_access_rules, usage, associated_objects, field_reference |
|
|
272
|
+
| CORS_Violation_Record_Event_Type | - |
|
|
273
|
+
| CSP_Violation_Event_Type | usage |
|
|
274
|
+
| CalcProcStepRelationship | special_access_rules, associated_objects, field_reference |
|
|
275
|
+
| CalculatedInsightRangeBound | special_access_rules, associated_objects, field_reference |
|
|
276
|
+
| CalculationMatrix | special_access_rules, usage, field_reference |
|
|
277
|
+
| CalculationMatrixColumn | special_access_rules, field_reference |
|
|
278
|
+
| CalculationMatrixRow | special_access_rules, field_reference |
|
|
279
|
+
| CalculationMatrixVersion | special_access_rules, field_reference |
|
|
280
|
+
| CalculationProcedure | special_access_rules, usage, field_reference |
|
|
281
|
+
| CalculationProcedureStep | special_access_rules, field_reference |
|
|
282
|
+
| CalculationProcedureVariable | special_access_rules, field_reference |
|
|
283
|
+
| CalculationProcedureVersion | special_access_rules, field_reference |
|
|
284
|
+
| Calendar | special_access_rules, wsdl_segment, field_reference |
|
|
285
|
+
| CalendarView | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
286
|
+
| CallCenter | special_access_rules, usage, wsdl_segment, field_reference |
|
|
287
|
+
| CallCenterRoutingMap | special_access_rules, field_reference |
|
|
288
|
+
| CallCoachingMediaProvider | wsdl_segment, field_reference |
|
|
289
|
+
| CallCtrAgentFavTrfrDest | field_reference |
|
|
290
|
+
| CallCtrAgentFavTrfrDestShare | field_reference |
|
|
291
|
+
| CallDisposition | special_access_rules, field_reference |
|
|
292
|
+
| CallDispositionCategory | special_access_rules, field_reference |
|
|
293
|
+
| CallTemplate | associated_objects, field_reference |
|
|
294
|
+
| Campaign | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
295
|
+
| CampaignInfluence | special_access_rules, usage |
|
|
296
|
+
| CampaignInfluenceModel | special_access_rules, wsdl_segment, field_reference |
|
|
297
|
+
| CampaignMember | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
298
|
+
| CampaignMemberStatus | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
299
|
+
| CampaignOwnerSharingRule | usage |
|
|
300
|
+
| CampaignShare | special_access_rules, usage, wsdl_segment, field_reference |
|
|
301
|
+
| CampaignTag | usage |
|
|
302
|
+
| CardPaymentMethod | special_access_rules, usage, wsdl_segment, field_reference |
|
|
303
|
+
| CartCheckoutSession | special_access_rules, field_reference |
|
|
304
|
+
| CartDeliveryGroup | special_access_rules, associated_objects, field_reference |
|
|
305
|
+
| CartDeliveryGroupMethod | special_access_rules, usage, field_reference |
|
|
306
|
+
| CartDeliveryGroupMethodAdj | special_access_rules, field_reference |
|
|
307
|
+
| CartItem | special_access_rules, associated_objects, field_reference |
|
|
308
|
+
| CartItemAttribute | special_access_rules, associated_objects |
|
|
309
|
+
| CartItemPriceAdjustment | special_access_rules, associated_objects, field_reference |
|
|
310
|
+
| CartTax | special_access_rules, associated_objects, field_reference |
|
|
311
|
+
| CartValidationOutput | special_access_rules, associated_objects, field_reference |
|
|
312
|
+
| Case | usage, associated_objects, wsdl_segment, field_reference |
|
|
313
|
+
| CaseArticle | special_access_rules, usage, field_reference |
|
|
314
|
+
| CaseComment | usage, wsdl_segment, field_reference |
|
|
315
|
+
| CaseContactRole | usage, wsdl_segment, field_reference |
|
|
316
|
+
| CaseHistory | special_access_rules, usage, wsdl_segment, field_reference |
|
|
317
|
+
| CaseHistory2 | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
318
|
+
| CaseMilestone | usage, wsdl_segment, field_reference |
|
|
319
|
+
| CaseOwnerSharingRule | special_access_rules, usage |
|
|
320
|
+
| CaseParticipant | special_access_rules, associated_objects, field_reference |
|
|
321
|
+
| CaseRelatedIssue | associated_objects, field_reference |
|
|
322
|
+
| CaseShare | special_access_rules, usage, wsdl_segment, field_reference |
|
|
323
|
+
| CaseSolution | usage, wsdl_segment, field_reference |
|
|
324
|
+
| CaseStatus | usage, wsdl_segment, field_reference |
|
|
325
|
+
| CaseSubjectParticle | usage, field_reference |
|
|
326
|
+
| CaseTag | usage |
|
|
327
|
+
| CaseTeamMember | special_access_rules, wsdl_segment, field_reference |
|
|
328
|
+
| CaseTeamRole | special_access_rules, wsdl_segment, field_reference |
|
|
329
|
+
| CaseTeamTemplate | special_access_rules, wsdl_segment, field_reference |
|
|
330
|
+
| CaseTeamTemplateMember | special_access_rules, wsdl_segment, field_reference |
|
|
331
|
+
| CaseTeamTemplateRecord | special_access_rules, wsdl_segment, field_reference |
|
|
332
|
+
| CategoryData | special_access_rules, usage, wsdl_segment, field_reference |
|
|
333
|
+
| CategoryNode | usage, wsdl_segment, field_reference |
|
|
334
|
+
| CategoryNodeLocalization | usage, field_reference |
|
|
335
|
+
| ChangeRequest | associated_objects, field_reference |
|
|
336
|
+
| ChangeRequestRelatedIssue | associated_objects, field_reference |
|
|
337
|
+
| ChangeRequestRelatedItem | associated_objects, field_reference |
|
|
338
|
+
| ChangeSetOperationEventLog | special_access_rules |
|
|
339
|
+
| Change_Set_Operation_Event_Type | - |
|
|
340
|
+
| ChannelObjectLinkingRule | field_reference |
|
|
341
|
+
| ChannelProgram | associated_objects, field_reference |
|
|
342
|
+
| ChannelProgramLevel | associated_objects, field_reference |
|
|
343
|
+
| ChannelProgramMember | associated_objects, field_reference |
|
|
344
|
+
| ChatterActivity | usage, wsdl_segment, field_reference |
|
|
345
|
+
| ChatterAnswersActivity | usage |
|
|
346
|
+
| ChatterAnswersReputationLevel | usage |
|
|
347
|
+
| ChatterConversation | usage |
|
|
348
|
+
| ChatterConversationMember | usage |
|
|
349
|
+
| ChatterExtension | wsdl_segment, field_reference |
|
|
350
|
+
| ChatterExtensionConfig | wsdl_segment, field_reference |
|
|
351
|
+
| ChatterMessage | usage |
|
|
352
|
+
| ClientBrowser | usage, wsdl_segment, field_reference |
|
|
353
|
+
| CollabDocumentMetric | - |
|
|
354
|
+
| CollabDocumentMetricRecord | - |
|
|
355
|
+
| CollabTemplateMetric | associated_objects |
|
|
356
|
+
| CollabTemplateMetricRecord | - |
|
|
357
|
+
| CollabUserEngagementMetric | - |
|
|
358
|
+
| CollabUserEngmtRecordLink | - |
|
|
359
|
+
| CollaborationGroup | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
360
|
+
| CollaborationGroupMember | usage, wsdl_segment, field_reference |
|
|
361
|
+
| CollaborationGroupMemberRequest | usage, wsdl_segment, field_reference |
|
|
362
|
+
| CollaborationGroupRecord | associated_objects, wsdl_segment, field_reference |
|
|
363
|
+
| CollaborationInvitation | special_access_rules, usage, wsdl_segment, field_reference |
|
|
364
|
+
| CollaborationRoom | special_access_rules, wsdl_segment, field_reference |
|
|
365
|
+
| ColorDefinition | wsdl_segment, field_reference |
|
|
366
|
+
| CombinedAttachment | usage, wsdl_segment, field_reference |
|
|
367
|
+
| CommSubscription | associated_objects, wsdl_segment, field_reference |
|
|
368
|
+
| CommSubscriptionChannelType | associated_objects, wsdl_segment, field_reference |
|
|
369
|
+
| CommSubscriptionConsent | associated_objects, wsdl_segment, field_reference |
|
|
370
|
+
| CommSubscriptionTiming | associated_objects, wsdl_segment, field_reference |
|
|
371
|
+
| CommerceEntitlementBuyerGroup | special_access_rules, associated_objects, field_reference |
|
|
372
|
+
| CommerceEntitlementPolicy | special_access_rules, associated_objects, field_reference |
|
|
373
|
+
| CommerceEntitlementPolicyShare | special_access_rules, field_reference |
|
|
374
|
+
| CommerceEntitlementProduct | special_access_rules, associated_objects, field_reference |
|
|
375
|
+
| CommissionSchedule | associated_objects |
|
|
376
|
+
| CommissionScheduleAssignment | associated_objects |
|
|
377
|
+
| Community | usage, wsdl_segment |
|
|
378
|
+
| Composite_API_Event_Type | - |
|
|
379
|
+
| Composite_API_Subrequest_Event_Type | - |
|
|
380
|
+
| ConcurApexLimitEventLog | special_access_rules |
|
|
381
|
+
| Concurrent_Long-Running_Apex_Limit_Event_Type | usage |
|
|
382
|
+
| ConferenceNumber | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
383
|
+
| ConnectedApplication | wsdl_segment, field_reference |
|
|
384
|
+
| Console_Event_Type | - |
|
|
385
|
+
| Consumption_Rate | - |
|
|
386
|
+
| Consumption_Schedule | - |
|
|
387
|
+
| ContCalloutSummaryEventLog | special_access_rules |
|
|
388
|
+
| Contact | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
389
|
+
| ContactCenterChannel | special_access_rules, field_reference |
|
|
390
|
+
| ContactCleanInfo | usage, associated_objects, wsdl_segment, field_reference |
|
|
391
|
+
| ContactDailyMetric | special_access_rules, field_reference |
|
|
392
|
+
| ContactMonthlyMetric | special_access_rules, field_reference |
|
|
393
|
+
| ContactOwnerSharingRule | usage |
|
|
394
|
+
| ContactPointAddress | associated_objects, wsdl_segment, field_reference |
|
|
395
|
+
| ContactPointConsent | associated_objects, wsdl_segment, field_reference |
|
|
396
|
+
| ContactPointEmail | associated_objects, wsdl_segment, field_reference |
|
|
397
|
+
| ContactPointPhone | associated_objects, wsdl_segment, field_reference |
|
|
398
|
+
| ContactPointTypeConsent | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
399
|
+
| ContactRequest | usage, associated_objects, wsdl_segment, field_reference |
|
|
400
|
+
| ContactRequestShare | usage, wsdl_segment, field_reference |
|
|
401
|
+
| ContactShare | special_access_rules, usage, wsdl_segment, field_reference |
|
|
402
|
+
| ContactSuggestionInsight | special_access_rules, usage |
|
|
403
|
+
| ContactTag | usage |
|
|
404
|
+
| ContentAsset | special_access_rules, wsdl_segment, field_reference |
|
|
405
|
+
| ContentBody | special_access_rules, usage, wsdl_segment, field_reference |
|
|
406
|
+
| ContentDistribution | usage, wsdl_segment, field_reference |
|
|
407
|
+
| ContentDistributionEventLog | special_access_rules |
|
|
408
|
+
| ContentDistributionView | usage, wsdl_segment, field_reference |
|
|
409
|
+
| ContentDocLinkEventLog | special_access_rules |
|
|
410
|
+
| ContentDocument | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
411
|
+
| ContentDocumentHistory | usage, wsdl_segment, field_reference |
|
|
412
|
+
| ContentDocumentLink | usage, associated_objects, wsdl_segment, field_reference |
|
|
413
|
+
| ContentDocumentListViewMapping | special_access_rules, usage |
|
|
414
|
+
| ContentDocumentSubscription | special_access_rules, wsdl_segment, field_reference |
|
|
415
|
+
| ContentFolder | associated_objects, wsdl_segment, field_reference |
|
|
416
|
+
| ContentFolderItem | wsdl_segment, field_reference |
|
|
417
|
+
| ContentFolderLink | wsdl_segment, field_reference |
|
|
418
|
+
| ContentFolderMember | wsdl_segment, field_reference |
|
|
419
|
+
| ContentHubItem | special_access_rules, usage |
|
|
420
|
+
| ContentHubRepository | special_access_rules |
|
|
421
|
+
| ContentNote | usage, field_reference |
|
|
422
|
+
| ContentNotification | special_access_rules, wsdl_segment, field_reference |
|
|
423
|
+
| ContentTagSubscription | special_access_rules, wsdl_segment, field_reference |
|
|
424
|
+
| ContentTaxonomy | special_access_rules, wsdl_segment, field_reference |
|
|
425
|
+
| ContentTaxonomyRelatedTerm | special_access_rules, usage, wsdl_segment, field_reference |
|
|
426
|
+
| ContentTaxonomyTerm | special_access_rules, usage, wsdl_segment, field_reference |
|
|
427
|
+
| ContentTaxonomyTermRelatedTerm | special_access_rules, usage, wsdl_segment, field_reference |
|
|
428
|
+
| ContentTaxonomyTermRelationshipType | special_access_rules, usage, wsdl_segment, field_reference |
|
|
429
|
+
| ContentTransferEventLog | special_access_rules |
|
|
430
|
+
| ContentUserSubscription | special_access_rules, wsdl_segment, field_reference |
|
|
431
|
+
| ContentVersion | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
432
|
+
| ContentVersionComment | special_access_rules, wsdl_segment, field_reference |
|
|
433
|
+
| ContentVersionHistory | usage, wsdl_segment, field_reference |
|
|
434
|
+
| ContentVersionRating | special_access_rules, wsdl_segment, field_reference |
|
|
435
|
+
| ContentWorkspace | usage, wsdl_segment, field_reference |
|
|
436
|
+
| ContentWorkspaceDoc | wsdl_segment, field_reference |
|
|
437
|
+
| ContentWorkspaceMember | special_access_rules, usage, wsdl_segment, field_reference |
|
|
438
|
+
| ContentWorkspacePermission | special_access_rules, wsdl_segment, field_reference |
|
|
439
|
+
| ContentWorkspaceSubscription | special_access_rules, wsdl_segment, field_reference |
|
|
440
|
+
| Content_Distribution_Event_Type | - |
|
|
441
|
+
| Content_Document_Link_Event_Type | - |
|
|
442
|
+
| Content_Transfer_Event_Type | - |
|
|
443
|
+
| ContextParamMap | wsdl_segment, field_reference |
|
|
444
|
+
| Continuation_Callout_Summary_Event_Type | - |
|
|
445
|
+
| Contract | usage, associated_objects, wsdl_segment, field_reference |
|
|
446
|
+
| ContractContactRole | wsdl_segment, field_reference |
|
|
447
|
+
| ContractLineItem | associated_objects, wsdl_segment, field_reference |
|
|
448
|
+
| ContractLineOutcome | usage, associated_objects, wsdl_segment, field_reference |
|
|
449
|
+
| ContractLineOutcomeData | associated_objects, wsdl_segment, field_reference |
|
|
450
|
+
| ContractStatus | usage, wsdl_segment, field_reference |
|
|
451
|
+
| ContractTag | usage |
|
|
452
|
+
| ConvAnalysisSummary | special_access_rules |
|
|
453
|
+
| ConvAnalysisTopic | special_access_rules |
|
|
454
|
+
| ConvAnalysisTopicEntry | special_access_rules |
|
|
455
|
+
| ConvIntelligenceSignalRule | special_access_rules, wsdl_segment, field_reference |
|
|
456
|
+
| ConvIntelligenceSignalSubRule | special_access_rules, wsdl_segment, field_reference |
|
|
457
|
+
| ConvMessageSendRequest | special_access_rules, usage, wsdl_segment, field_reference |
|
|
458
|
+
| Conversation | wsdl_segment, field_reference |
|
|
459
|
+
| ConversationApiLog | wsdl_segment, field_reference |
|
|
460
|
+
| ConversationChannelDefinition | special_access_rules, field_reference |
|
|
461
|
+
| ConversationContextEntry | special_access_rules, associated_objects, field_reference |
|
|
462
|
+
| ConversationEntry | special_access_rules, usage, wsdl_segment, field_reference |
|
|
463
|
+
| ConversationParticipant | wsdl_segment, field_reference |
|
|
464
|
+
| ConversationVendorInfo | special_access_rules, field_reference |
|
|
465
|
+
| CorsWhitelistEntry | usage, wsdl_segment, field_reference |
|
|
466
|
+
| Coupon | special_access_rules, associated_objects, field_reference |
|
|
467
|
+
| CouponCodeRedemption | special_access_rules, field_reference |
|
|
468
|
+
| CreditMemo | special_access_rules, associated_objects, field_reference |
|
|
469
|
+
| CreditMemoAddressGroup | special_access_rules, associated_objects, field_reference |
|
|
470
|
+
| CreditMemoInvApplication | special_access_rules, associated_objects, field_reference |
|
|
471
|
+
| CreditMemoLine | special_access_rules, associated_objects, field_reference |
|
|
472
|
+
| Crisis | special_access_rules, associated_objects |
|
|
473
|
+
| CronJobDetail | usage, wsdl_segment, field_reference |
|
|
474
|
+
| CronTrigger | usage, wsdl_segment, field_reference |
|
|
475
|
+
| CryptoProdCatgWalletGroup | special_access_rules |
|
|
476
|
+
| CspTrustedSite | usage, wsdl_segment, field_reference |
|
|
477
|
+
| CspViolationEventLog | special_access_rules, usage |
|
|
478
|
+
| CurrencyType | usage, field_reference |
|
|
479
|
+
| CustExpIntlTransfSetup | - |
|
|
480
|
+
| CustomBrand | special_access_rules, usage, wsdl_segment, field_reference |
|
|
481
|
+
| CustomBrandAsset | special_access_rules, usage, wsdl_segment, field_reference |
|
|
482
|
+
| CustomFieldDisplayValue | special_access_rules, usage, associated_objects, field_reference |
|
|
483
|
+
| CustomHelpMenuItem | wsdl_segment, field_reference |
|
|
484
|
+
| CustomHelpMenuSection | wsdl_segment, field_reference |
|
|
485
|
+
| CustomHttpHeader | special_access_rules, usage, wsdl_segment, field_reference |
|
|
486
|
+
| CustomMsgChannel | special_access_rules, field_reference |
|
|
487
|
+
| CustomNotificationType | wsdl_segment, field_reference |
|
|
488
|
+
| CustomPermission | special_access_rules, usage, wsdl_segment, field_reference |
|
|
489
|
+
| CustomPermissionDependency | special_access_rules, usage, wsdl_segment, field_reference |
|
|
490
|
+
| Custom_Metadata_Type__mdt | - |
|
|
491
|
+
| Custom_Object__Feed | special_access_rules, usage |
|
|
492
|
+
| Custom_Object___c___c | - |
|
|
493
|
+
| Customer | wsdl_segment, field_reference |
|
|
494
|
+
| DandBCompany | special_access_rules, usage, wsdl_segment, field_reference |
|
|
495
|
+
| Dashboard | usage, associated_objects, wsdl_segment, field_reference |
|
|
496
|
+
| DashboardComponent | usage, associated_objects, wsdl_segment, field_reference |
|
|
497
|
+
| DashboardTag | usage |
|
|
498
|
+
| Dashboard_Event_Type | - |
|
|
499
|
+
| DataAssessmentFieldMetric | wsdl_segment, field_reference |
|
|
500
|
+
| DataAssessmentMetric | wsdl_segment, field_reference |
|
|
501
|
+
| DataAssessmentValueMetric | wsdl_segment, field_reference |
|
|
502
|
+
| DataDetPlcyDataSrchExps | - |
|
|
503
|
+
| DataDetPlcyMdatScanCrit | - |
|
|
504
|
+
| DataDetPlcySstvDataCatg | - |
|
|
505
|
+
| DataDetectJobObjectSession | - |
|
|
506
|
+
| DataDetectJobSessSummary | - |
|
|
507
|
+
| DataDetectJobSession | associated_objects |
|
|
508
|
+
| DataDetectPolicy | - |
|
|
509
|
+
| DataDetectPolicyObjField | - |
|
|
510
|
+
| DataDetectPolicyObject | - |
|
|
511
|
+
| DataDetectPolicySnapshot | - |
|
|
512
|
+
| DataDetectScanResult | - |
|
|
513
|
+
| DataEncryptionKey | special_access_rules, usage, wsdl_segment, field_reference |
|
|
514
|
+
| DataIntegrationRecordPurchasePermission | special_access_rules, field_reference |
|
|
515
|
+
| DataKitDeployEvent | special_access_rules, field_reference |
|
|
516
|
+
| DataKitDeploymentLog | special_access_rules, usage, field_reference |
|
|
517
|
+
| DataMaskCustomValueLibrary | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
518
|
+
| DataStatistics | wsdl_segment |
|
|
519
|
+
| DataUseLegalBasis | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
520
|
+
| DataUsePurpose | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
521
|
+
| DataWeaveResource | usage, wsdl_segment, field_reference |
|
|
522
|
+
| DatabaseSaveEventLog | special_access_rules |
|
|
523
|
+
| Database_Save_Event_Type | - |
|
|
524
|
+
| DatacloudCompany | usage, wsdl_segment, field_reference |
|
|
525
|
+
| DatacloudContact | usage, wsdl_segment, field_reference |
|
|
526
|
+
| DatacloudDandBCompany | usage, wsdl_segment, field_reference |
|
|
527
|
+
| DatacloudOwnedEntity | usage, wsdl_segment, field_reference |
|
|
528
|
+
| DatacloudPurchaseUsage | usage, wsdl_segment, field_reference |
|
|
529
|
+
| DatasetExport | usage, field_reference |
|
|
530
|
+
| DatasetExportPart | usage, field_reference |
|
|
531
|
+
| DatedConversionRate | special_access_rules, usage, field_reference |
|
|
532
|
+
| DealIndirectPartner | - |
|
|
533
|
+
| DeclinedEventRelation | usage, wsdl_segment, field_reference |
|
|
534
|
+
| DelegatedAccount | special_access_rules, field_reference |
|
|
535
|
+
| DeleteEvent | wsdl_segment, field_reference |
|
|
536
|
+
| DeliveryEstimationSetup | special_access_rules, field_reference |
|
|
537
|
+
| DevopsActivityLog | usage, associated_objects, wsdl_segment |
|
|
538
|
+
| DevopsEnvDeployment | usage, associated_objects |
|
|
539
|
+
| DevopsEnvDeploymentMbr | associated_objects |
|
|
540
|
+
| DevopsEnvironment | usage, associated_objects, wsdl_segment |
|
|
541
|
+
| DevopsPipeline | associated_objects |
|
|
542
|
+
| DevopsPipelineEnvironment | associated_objects |
|
|
543
|
+
| DevopsPipelineStage | associated_objects |
|
|
544
|
+
| DevopsPipelineStageTrigger | - |
|
|
545
|
+
| DevopsPipelineTestProvider | - |
|
|
546
|
+
| DevopsPipelnStgProm | usage, associated_objects |
|
|
547
|
+
| DevopsPipelnStgPromWkItem | usage, associated_objects |
|
|
548
|
+
| DevopsProject | associated_objects |
|
|
549
|
+
| DevopsProjectPipeline | associated_objects |
|
|
550
|
+
| DevopsQualityGate | - |
|
|
551
|
+
| DevopsQualityGateResult | - |
|
|
552
|
+
| DevopsQualityGateRule | - |
|
|
553
|
+
| DevopsQualityGateRuleResult | - |
|
|
554
|
+
| DevopsRequestInfo | usage, associated_objects, wsdl_segment |
|
|
555
|
+
| DevopsTest | - |
|
|
556
|
+
| DevopsTestExecution | - |
|
|
557
|
+
| DevopsTestProvider | - |
|
|
558
|
+
| DevopsTestProviderSyncLog | - |
|
|
559
|
+
| DevopsTestSuite | - |
|
|
560
|
+
| DevopsTestSuiteExecution | - |
|
|
561
|
+
| DevopsTestSuiteGroupExec | - |
|
|
562
|
+
| DevopsTestSuiteStage | - |
|
|
563
|
+
| DevopsTestSuiteTest | - |
|
|
564
|
+
| DevopsWkItmTstSteGrpExec | - |
|
|
565
|
+
| DigitalSignature | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
566
|
+
| DigitalWallet | special_access_rules, wsdl_segment, field_reference |
|
|
567
|
+
| DirectMessage | special_access_rules, usage |
|
|
568
|
+
| Division | usage |
|
|
569
|
+
| DivisionLocalization | usage |
|
|
570
|
+
| DocAtchDownloadEventLog | special_access_rules |
|
|
571
|
+
| Document | special_access_rules, usage, wsdl_segment, field_reference |
|
|
572
|
+
| DocumentAttachmentMap | special_access_rules, usage, wsdl_segment, field_reference |
|
|
573
|
+
| DocumentRecipient | associated_objects, field_reference |
|
|
574
|
+
| DocumentTag | usage |
|
|
575
|
+
| Document_Attachment_Downloads_Event_Type | - |
|
|
576
|
+
| Domain | usage, wsdl_segment, field_reference |
|
|
577
|
+
| DomainSite | usage, wsdl_segment, field_reference |
|
|
578
|
+
| DsarPolicy | special_access_rules, associated_objects |
|
|
579
|
+
| DsarPolicyLog | special_access_rules, associated_objects |
|
|
580
|
+
| DuplicateJob | special_access_rules |
|
|
581
|
+
| DuplicateJobDefinition | special_access_rules |
|
|
582
|
+
| DuplicateJobMatchingRule | special_access_rules |
|
|
583
|
+
| DuplicateJobMatchingRuleDefinition | special_access_rules |
|
|
584
|
+
| DuplicateRecordItem | special_access_rules, wsdl_segment, field_reference |
|
|
585
|
+
| DuplicateRecordSet | special_access_rules, wsdl_segment, field_reference |
|
|
586
|
+
| DuplicateRule | special_access_rules, usage, wsdl_segment, field_reference |
|
|
587
|
+
| DynamicDataCapture | associated_objects, wsdl_segment, field_reference |
|
|
588
|
+
| ElectronicMediaGroup | special_access_rules, field_reference |
|
|
589
|
+
| ElectronicMediaUse | special_access_rules, field_reference |
|
|
590
|
+
| EmailContent | special_access_rules, field_reference |
|
|
591
|
+
| EmailDomainFilter | special_access_rules, usage, wsdl_segment, field_reference |
|
|
592
|
+
| EmailDomainKey | special_access_rules, usage, wsdl_segment, field_reference |
|
|
593
|
+
| EmailInsight | special_access_rules |
|
|
594
|
+
| EmailInsightAction | special_access_rules |
|
|
595
|
+
| EmailMessage | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
596
|
+
| EmailMessageMigration | - |
|
|
597
|
+
| EmailMessageRelation | special_access_rules, usage, wsdl_segment, field_reference |
|
|
598
|
+
| EmailRelay | special_access_rules, usage, wsdl_segment, field_reference |
|
|
599
|
+
| EmailRoutingAddress | special_access_rules, field_reference |
|
|
600
|
+
| EmailServicesAddress | special_access_rules, usage, wsdl_segment, field_reference |
|
|
601
|
+
| EmailServicesFunction | special_access_rules, usage, wsdl_segment, field_reference |
|
|
602
|
+
| EmailStatus | special_access_rules, wsdl_segment, field_reference |
|
|
603
|
+
| EmailTemplate | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
604
|
+
| EmailTemplateMonthlyMetric | special_access_rules, field_reference |
|
|
605
|
+
| EmbeddedServiceDetail | wsdl_segment, field_reference |
|
|
606
|
+
| EmbeddedServiceLabel | wsdl_segment, field_reference |
|
|
607
|
+
| EmpUserProvisionProcessErr | special_access_rules, usage, field_reference |
|
|
608
|
+
| EmpUserProvisioningProcess | special_access_rules, usage, field_reference |
|
|
609
|
+
| Employee | special_access_rules, associated_objects |
|
|
610
|
+
| Employee2 | special_access_rules |
|
|
611
|
+
| EmployeeCrisisAssessment | special_access_rules, associated_objects |
|
|
612
|
+
| EnablementMeasureDefinition | special_access_rules, usage |
|
|
613
|
+
| EnablementProgram | associated_objects |
|
|
614
|
+
| EnablementProgramDefinition | special_access_rules |
|
|
615
|
+
| EnblMeasureObjectDefinition | special_access_rules, usage |
|
|
616
|
+
| EnblPgmTaskMeasureProgress | - |
|
|
617
|
+
| EnblProgramSection | - |
|
|
618
|
+
| EnblProgramTaskDefinition | - |
|
|
619
|
+
| EnblProgramTaskMeasure | special_access_rules |
|
|
620
|
+
| EnblProgramTaskProgress | - |
|
|
621
|
+
| EnblProgramTaskSubCategory | special_access_rules |
|
|
622
|
+
| EngagementChannelType | associated_objects, wsdl_segment, field_reference |
|
|
623
|
+
| EngagementSignal | usage |
|
|
624
|
+
| EngagementSignalCmpndMetric | usage, associated_objects |
|
|
625
|
+
| EngagementSignalMetric | usage |
|
|
626
|
+
| EnhancedLetterhead | associated_objects, wsdl_segment, field_reference |
|
|
627
|
+
| Entitlement | associated_objects, wsdl_segment, field_reference |
|
|
628
|
+
| EntitlementContact | usage, wsdl_segment, field_reference |
|
|
629
|
+
| EntitlementTemplate | special_access_rules, usage, wsdl_segment, field_reference |
|
|
630
|
+
| EntityHistory | usage |
|
|
631
|
+
| EntityMilestone | usage, associated_objects, wsdl_segment, field_reference |
|
|
632
|
+
| EntitySubscription | usage, wsdl_segment, field_reference |
|
|
633
|
+
| EnvironmentHubMember | usage |
|
|
634
|
+
| Event | usage, associated_objects, wsdl_segment, field_reference |
|
|
635
|
+
| EventBusSubscriber | special_access_rules, usage, wsdl_segment, field_reference |
|
|
636
|
+
| EventLogFile | special_access_rules, wsdl_segment, field_reference |
|
|
637
|
+
| EventLogFile_Supported_Event_Types | - |
|
|
638
|
+
| EventRelation | usage, associated_objects, wsdl_segment, field_reference |
|
|
639
|
+
| EventRelayConfig | wsdl_segment, field_reference |
|
|
640
|
+
| EventRelayFeedback | wsdl_segment, field_reference |
|
|
641
|
+
| EventStagedInviteeEmail | special_access_rules, field_reference |
|
|
642
|
+
| EventTag | usage |
|
|
643
|
+
| EventWhoRelation | usage, field_reference |
|
|
644
|
+
| Expense | associated_objects, wsdl_segment, field_reference |
|
|
645
|
+
| ExpenseReport | associated_objects, wsdl_segment, field_reference |
|
|
646
|
+
| ExpenseReportEntry | associated_objects, wsdl_segment, field_reference |
|
|
647
|
+
| ExpressionFilter | usage, wsdl_segment, field_reference |
|
|
648
|
+
| ExpressionFilterCriteria | usage, wsdl_segment, field_reference |
|
|
649
|
+
| ExpressionSetConstraintObj | special_access_rules |
|
|
650
|
+
| ExtConvParticipantIntegDef | - |
|
|
651
|
+
| ExtDataShare | associated_objects, field_reference |
|
|
652
|
+
| ExtKnowledgeConnector | special_access_rules, associated_objects, field_reference |
|
|
653
|
+
| ExternalAccountHierarchy | special_access_rules, field_reference |
|
|
654
|
+
| ExternalAccountHierarchyHistory | special_access_rules, field_reference |
|
|
655
|
+
| ExternalClientApplication | wsdl_segment |
|
|
656
|
+
| ExternalDataSource | special_access_rules, usage, wsdl_segment, field_reference |
|
|
657
|
+
| ExternalDataUserAuth | usage, wsdl_segment, field_reference |
|
|
658
|
+
| ExternalEncryptionRootKey | special_access_rules, usage, wsdl_segment, field_reference |
|
|
659
|
+
| ExternalEvent | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
660
|
+
| ExternalEventMapping | special_access_rules, wsdl_segment, field_reference |
|
|
661
|
+
| ExternalSocialAccount | usage, field_reference |
|
|
662
|
+
| External_Cross-Org_Callout_Event_Type | - |
|
|
663
|
+
| External_Custom_Apex_Callout_Event_Type | - |
|
|
664
|
+
| External_Data_Source_Callout_Event_Type | - |
|
|
665
|
+
| External_OData_Callout_Event_Type | - |
|
|
666
|
+
| ExtlClntAppOauthPlcyCnfg | wsdl_segment |
|
|
667
|
+
| ExtlClntAppOauthSettings | wsdl_segment |
|
|
668
|
+
| ExtlClntAppPlcyCnfg | wsdl_segment |
|
|
669
|
+
| ExtlIntrIdMapping | associated_objects |
|
|
670
|
+
| ExtlRecShrCnct | special_access_rules |
|
|
671
|
+
| ExtlRecShrCnctAccnt | special_access_rules |
|
|
672
|
+
| ExtlRecShrField | special_access_rules |
|
|
673
|
+
| ExtlRecShrFieldMap | special_access_rules |
|
|
674
|
+
| ExtlRecShrLead | special_access_rules |
|
|
675
|
+
| ExtlRecShrObject | special_access_rules |
|
|
676
|
+
| ExtlRecShrOpportunity | special_access_rules |
|
|
677
|
+
| ExtlRecShrPcklstOptn | special_access_rules |
|
|
678
|
+
| ExtlRecShrPicklistMap | special_access_rules |
|
|
679
|
+
| ExtlRecShrRecordMap | special_access_rules |
|
|
680
|
+
| FSL__Time_Dependency__c | special_access_rules |
|
|
681
|
+
| FeedAttachment | usage, wsdl_segment, field_reference |
|
|
682
|
+
| FeedComment | special_access_rules, usage, wsdl_segment, field_reference |
|
|
683
|
+
| FeedItem | special_access_rules, usage, wsdl_segment, field_reference |
|
|
684
|
+
| FeedLike | special_access_rules, usage, wsdl_segment, field_reference |
|
|
685
|
+
| FeedPollChoice | special_access_rules, usage, wsdl_segment, field_reference |
|
|
686
|
+
| FeedPollVote | usage, wsdl_segment, field_reference |
|
|
687
|
+
| FeedPost | special_access_rules, usage |
|
|
688
|
+
| FeedRevision | usage, wsdl_segment, field_reference |
|
|
689
|
+
| FeedTrackedChange | usage, wsdl_segment, field_reference |
|
|
690
|
+
| FieldChangeSnapshot | special_access_rules, usage, field_reference |
|
|
691
|
+
| FieldHistoryArchive | usage |
|
|
692
|
+
| FieldPermissions | special_access_rules, usage, wsdl_segment, field_reference |
|
|
693
|
+
| FieldSecurityClassification | special_access_rules, usage, wsdl_segment, field_reference |
|
|
694
|
+
| FieldServiceMobileSettings | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
695
|
+
| FieldServiceOrgSettings | special_access_rules, wsdl_segment, field_reference |
|
|
696
|
+
| FileSearchActivity | wsdl_segment, field_reference |
|
|
697
|
+
| FiscalYearSettings | special_access_rules, wsdl_segment, field_reference |
|
|
698
|
+
| FldSvcObjChg | wsdl_segment, field_reference |
|
|
699
|
+
| FldSvcObjChgDtl | wsdl_segment, field_reference |
|
|
700
|
+
| FlexQueueItem | special_access_rules, usage, wsdl_segment, field_reference |
|
|
701
|
+
| FlowDefinitionView | usage, wsdl_segment, field_reference |
|
|
702
|
+
| FlowInterview | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
703
|
+
| FlowInterviewLog | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
704
|
+
| FlowInterviewLogEntry | special_access_rules, wsdl_segment, field_reference |
|
|
705
|
+
| FlowInterviewLogOwnerSharingRule | usage |
|
|
706
|
+
| FlowInterviewOwnerSharingRule | usage |
|
|
707
|
+
| FlowInterviewShare | usage, wsdl_segment, field_reference |
|
|
708
|
+
| FlowNavMetricEventLog | special_access_rules |
|
|
709
|
+
| FlowOrchestration | associated_objects, wsdl_segment, field_reference |
|
|
710
|
+
| FlowOrchestrationInstance | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
711
|
+
| FlowOrchestrationLog | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
712
|
+
| FlowOrchestrationStageInstance | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
713
|
+
| FlowOrchestrationStepInstance | associated_objects, wsdl_segment, field_reference |
|
|
714
|
+
| FlowOrchestrationVersion | associated_objects, wsdl_segment, field_reference |
|
|
715
|
+
| FlowOrchestrationWorkItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
716
|
+
| FlowRecord | associated_objects, wsdl_segment, field_reference |
|
|
717
|
+
| FlowRecordElement | wsdl_segment, field_reference |
|
|
718
|
+
| FlowRecordElementOccurrence | associated_objects, wsdl_segment, field_reference |
|
|
719
|
+
| FlowRecordRelation | wsdl_segment, field_reference |
|
|
720
|
+
| FlowRecordVersion | wsdl_segment, field_reference |
|
|
721
|
+
| FlowRecordVersionOccurrence | wsdl_segment, field_reference |
|
|
722
|
+
| FlowStageRelation | usage, wsdl_segment, field_reference |
|
|
723
|
+
| FlowTestResult | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
724
|
+
| FlowTestView | wsdl_segment, field_reference |
|
|
725
|
+
| FlowVariableView | usage, wsdl_segment, field_reference |
|
|
726
|
+
| FlowVersionView | usage, wsdl_segment, field_reference |
|
|
727
|
+
| Flow_Execution_Event_Type | - |
|
|
728
|
+
| Folder | usage, wsdl_segment, field_reference |
|
|
729
|
+
| FolderedContentDocument | wsdl_segment, field_reference |
|
|
730
|
+
| ForecastingAdjustment | special_access_rules, usage, field_reference |
|
|
731
|
+
| ForecastingColumnDefinition | usage, field_reference |
|
|
732
|
+
| ForecastingColumnDefinitionLocalization | special_access_rules, field_reference |
|
|
733
|
+
| ForecastingColumnDefinition_Formula_Field_Details | - |
|
|
734
|
+
| ForecastingCustomCategory | field_reference |
|
|
735
|
+
| ForecastingCustomData | special_access_rules, usage, field_reference |
|
|
736
|
+
| ForecastingDisplayedFamily | special_access_rules, field_reference |
|
|
737
|
+
| ForecastingFact | special_access_rules, usage, field_reference |
|
|
738
|
+
| ForecastingFilter | special_access_rules, field_reference |
|
|
739
|
+
| ForecastingFilterCondition | special_access_rules, usage, field_reference |
|
|
740
|
+
| ForecastingGroup | special_access_rules, usage, field_reference |
|
|
741
|
+
| ForecastingGroupItem | usage, field_reference |
|
|
742
|
+
| ForecastingItem | special_access_rules, usage, field_reference |
|
|
743
|
+
| ForecastingOwnerAdjustment | special_access_rules, usage, field_reference |
|
|
744
|
+
| ForecastingQuota | special_access_rules, usage, field_reference |
|
|
745
|
+
| ForecastingShare | special_access_rules, usage, field_reference |
|
|
746
|
+
| ForecastingSourceDefinition | usage, field_reference |
|
|
747
|
+
| ForecastingSrcRecJudgment | field_reference |
|
|
748
|
+
| ForecastingSubmission | special_access_rules, usage, field_reference |
|
|
749
|
+
| ForecastingSubmissionItem | field_reference |
|
|
750
|
+
| ForecastingType | special_access_rules, field_reference |
|
|
751
|
+
| ForecastingTypeSource | usage, field_reference |
|
|
752
|
+
| ForecastingUserPreference | special_access_rules, field_reference |
|
|
753
|
+
| FormulaFunction | usage, wsdl_segment, field_reference |
|
|
754
|
+
| FormulaFunctionAllowedType | wsdl_segment, field_reference |
|
|
755
|
+
| FormulaFunctionCategory | usage, wsdl_segment, field_reference |
|
|
756
|
+
| FrcstCustmCatgRampRateSrc | field_reference |
|
|
757
|
+
| FrcstCustmzAdjustment | associated_objects, field_reference |
|
|
758
|
+
| FrcstCustmzOwnerAdjustment | associated_objects, field_reference |
|
|
759
|
+
| FulfillmentOrder | special_access_rules, associated_objects, field_reference |
|
|
760
|
+
| FulfillmentOrderItemAdjustment | special_access_rules, field_reference |
|
|
761
|
+
| FulfillmentOrderItemTax | special_access_rules, field_reference |
|
|
762
|
+
| FulfillmentOrderLineItem | special_access_rules, field_reference |
|
|
763
|
+
| FulfmtRoutgCriteria | special_access_rules |
|
|
764
|
+
| FulfmtRoutgCriteriaActnVar | special_access_rules |
|
|
765
|
+
| FulfmtRoutgCriteriaCond | special_access_rules |
|
|
766
|
+
| FulfmtRoutgCriteriaGrp | special_access_rules, associated_objects |
|
|
767
|
+
| FulfmtRoutgCriteriaGrpVer | special_access_rules, associated_objects |
|
|
768
|
+
| FunctionConnection | usage |
|
|
769
|
+
| FunctionInvocationRequest | usage |
|
|
770
|
+
| FunctionReference | usage |
|
|
771
|
+
| GenAIConversationSummary | special_access_rules, associated_objects |
|
|
772
|
+
| GenAiFunctionDefinition | special_access_rules |
|
|
773
|
+
| GenAiPlannerDefinition | special_access_rules |
|
|
774
|
+
| GenAiPlannerFunctionDef | special_access_rules |
|
|
775
|
+
| GenAiPluginDefinition | special_access_rules |
|
|
776
|
+
| GenOpPlanRequest | special_access_rules |
|
|
777
|
+
| GeoCountry | special_access_rules, associated_objects, field_reference |
|
|
778
|
+
| GeoState | special_access_rules, field_reference |
|
|
779
|
+
| GeolocationBasedAction | special_access_rules, wsdl_segment, field_reference |
|
|
780
|
+
| Goal | associated_objects |
|
|
781
|
+
| GoalLink | - |
|
|
782
|
+
| GoogleDoc | special_access_rules |
|
|
783
|
+
| GraphQL_Query_Event_Type | - |
|
|
784
|
+
| Group | special_access_rules, usage, wsdl_segment, field_reference |
|
|
785
|
+
| GroupMember | usage, wsdl_segment, field_reference |
|
|
786
|
+
| GroupMembershipEventLog | special_access_rules |
|
|
787
|
+
| Group_Membership_Event_Type | - |
|
|
788
|
+
| GtwyProvPaymentMethodType | usage, wsdl_segment, field_reference |
|
|
789
|
+
| GuestBuyerProfile | field_reference |
|
|
790
|
+
| HashtagDefinition | usage |
|
|
791
|
+
| HealthCareDiagnosis | associated_objects, field_reference |
|
|
792
|
+
| HealthCareProcedure | associated_objects, field_reference |
|
|
793
|
+
| Holiday | special_access_rules, usage, wsdl_segment, field_reference |
|
|
794
|
+
| Hostname_Redirects_Event_Type | usage |
|
|
795
|
+
| IconDefinition | wsdl_segment, field_reference |
|
|
796
|
+
| Idea | usage, wsdl_segment, field_reference |
|
|
797
|
+
| IdeaComment | usage, wsdl_segment, field_reference |
|
|
798
|
+
| IdeaReputation | usage |
|
|
799
|
+
| IdeaReputationLevel | usage |
|
|
800
|
+
| IdeaTheme | usage |
|
|
801
|
+
| IdpEventLog | wsdl_segment, field_reference |
|
|
802
|
+
| IframeWhiteListUrl | usage, wsdl_segment, field_reference |
|
|
803
|
+
| Image | wsdl_segment, field_reference |
|
|
804
|
+
| Incident | associated_objects, field_reference |
|
|
805
|
+
| IncidentRelatedItem | associated_objects, field_reference |
|
|
806
|
+
| Individual | associated_objects, wsdl_segment, field_reference |
|
|
807
|
+
| IndividualApplicationItem | special_access_rules, associated_objects, field_reference |
|
|
808
|
+
| IndividualHistory | usage, wsdl_segment, field_reference |
|
|
809
|
+
| IndividualShare | usage, wsdl_segment, field_reference |
|
|
810
|
+
| Insecure_External_Assets_Event_Type | usage |
|
|
811
|
+
| InsufficientAccessEventLog | special_access_rules |
|
|
812
|
+
| Insufficient_Access_Event_Type | - |
|
|
813
|
+
| InternalOrganizationUnit | special_access_rules, associated_objects, field_reference |
|
|
814
|
+
| InventoryItemReservation | special_access_rules, field_reference |
|
|
815
|
+
| InventoryReservation | special_access_rules, associated_objects, field_reference |
|
|
816
|
+
| InvocableActionEventLog | special_access_rules |
|
|
817
|
+
| Invocable_Action_Event_Type | - |
|
|
818
|
+
| Invoice | special_access_rules, associated_objects, field_reference |
|
|
819
|
+
| InvoiceAddressGroup | special_access_rules, associated_objects, field_reference |
|
|
820
|
+
| InvoiceBatchRun | special_access_rules, associated_objects, field_reference |
|
|
821
|
+
| InvoiceBatchRunCriteria | special_access_rules, field_reference |
|
|
822
|
+
| InvoiceBatchRunRecovery | special_access_rules, associated_objects, field_reference |
|
|
823
|
+
| InvoiceDocument | special_access_rules, field_reference |
|
|
824
|
+
| InvoiceLine | special_access_rules, associated_objects, field_reference |
|
|
825
|
+
| JobProfile | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
826
|
+
| JobProfileQueueGroup | special_access_rules |
|
|
827
|
+
| KnowledgeArticle | special_access_rules, usage, field_reference |
|
|
828
|
+
| KnowledgeArticleEventLog | special_access_rules |
|
|
829
|
+
| KnowledgeArticleFeedback | special_access_rules, usage |
|
|
830
|
+
| KnowledgeArticleVersion | special_access_rules, usage, associated_objects, field_reference |
|
|
831
|
+
| KnowledgeArticleVersionHistory | special_access_rules, usage, field_reference |
|
|
832
|
+
| KnowledgeArticleViewStat | special_access_rules, usage, field_reference |
|
|
833
|
+
| KnowledgeArticleVoteStat | special_access_rules, usage, field_reference |
|
|
834
|
+
| Knowledge_Article_View_Event_Type | - |
|
|
835
|
+
| Knowledge__DataCategorySelection | special_access_rules, usage, field_reference |
|
|
836
|
+
| Knowledge__Feed | special_access_rules, field_reference |
|
|
837
|
+
| Knowledge__ka | special_access_rules, field_reference |
|
|
838
|
+
| Knowledge__kav | special_access_rules, field_reference |
|
|
839
|
+
| KnowledgeableUser | wsdl_segment, field_reference |
|
|
840
|
+
| LandingPage | special_access_rules, associated_objects |
|
|
841
|
+
| Lead | usage, associated_objects, wsdl_segment, field_reference |
|
|
842
|
+
| LeadCleanInfo | usage, wsdl_segment, field_reference |
|
|
843
|
+
| LeadDailyMetric | special_access_rules, field_reference |
|
|
844
|
+
| LeadMonthlyMetric | special_access_rules, field_reference |
|
|
845
|
+
| LeadOwnerSharingRule | usage |
|
|
846
|
+
| LeadShare | special_access_rules, usage, wsdl_segment, field_reference |
|
|
847
|
+
| LeadStatus | usage, wsdl_segment, field_reference |
|
|
848
|
+
| LeadTag | usage |
|
|
849
|
+
| LearningContent | - |
|
|
850
|
+
| LearningItem | associated_objects, field_reference |
|
|
851
|
+
| LearningItemAssignment | usage, associated_objects |
|
|
852
|
+
| LearningItemProgress | associated_objects |
|
|
853
|
+
| LearningItemSubmission | special_access_rules, associated_objects |
|
|
854
|
+
| LearningItemType | special_access_rules |
|
|
855
|
+
| LearningPractice | - |
|
|
856
|
+
| LegalEntity | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
857
|
+
| LicenseDefinitionCustomPermission | special_access_rules, usage, wsdl_segment |
|
|
858
|
+
| LightningErrorEventLog | special_access_rules |
|
|
859
|
+
| LightningExitByPageMetrics | special_access_rules, wsdl_segment, field_reference |
|
|
860
|
+
| LightningExperienceTheme | wsdl_segment, field_reference |
|
|
861
|
+
| LightningLoggerEventLog | special_access_rules |
|
|
862
|
+
| LightningOnboardingConfig | wsdl_segment, field_reference |
|
|
863
|
+
| LightningPageViewEventLog | special_access_rules |
|
|
864
|
+
| LightningPrfmEventLog | special_access_rules |
|
|
865
|
+
| LightningToggleMetrics | special_access_rules, wsdl_segment, field_reference |
|
|
866
|
+
| LightningUsageByAppTypeMetrics | special_access_rules, wsdl_segment, field_reference |
|
|
867
|
+
| LightningUsageByBrowserMetrics | special_access_rules, wsdl_segment, field_reference |
|
|
868
|
+
| LightningUsageByFlexiPageMetrics | special_access_rules, wsdl_segment, field_reference |
|
|
869
|
+
| LightningUsageByPageMetrics | special_access_rules, wsdl_segment, field_reference |
|
|
870
|
+
| Lightning_Error_Event_Type | - |
|
|
871
|
+
| Lightning_Interaction_Event_Type | - |
|
|
872
|
+
| Lightning_Logger_Event_Type | - |
|
|
873
|
+
| Lightning_Page_View_Event_Type | - |
|
|
874
|
+
| Lightning_Performance_Event_Type | - |
|
|
875
|
+
| LinkedArticle | special_access_rules, usage, associated_objects, field_reference |
|
|
876
|
+
| LinkedArticleFeed | special_access_rules, field_reference |
|
|
877
|
+
| LinkedArticleHistory | special_access_rules, field_reference |
|
|
878
|
+
| ListEmail | associated_objects, wsdl_segment, field_reference |
|
|
879
|
+
| ListEmailIndividualRecipient | wsdl_segment, field_reference |
|
|
880
|
+
| ListEmailMonthlyMetric | special_access_rules |
|
|
881
|
+
| ListEmailRecipientSource | wsdl_segment, field_reference |
|
|
882
|
+
| ListEmailSentResult | wsdl_segment, field_reference |
|
|
883
|
+
| ListView | usage, wsdl_segment, field_reference |
|
|
884
|
+
| ListViewChart | wsdl_segment, field_reference |
|
|
885
|
+
| ListViewChartInstance | usage, wsdl_segment, field_reference |
|
|
886
|
+
| LiveAgentSession | usage, associated_objects, field_reference |
|
|
887
|
+
| LiveAgentSessionHistory | usage, field_reference |
|
|
888
|
+
| LiveAgentSessionShare | usage, field_reference |
|
|
889
|
+
| LiveChatBlockingRule | special_access_rules, usage, field_reference |
|
|
890
|
+
| LiveChatButton | usage, field_reference |
|
|
891
|
+
| LiveChatButtonDeployment | usage, field_reference |
|
|
892
|
+
| LiveChatButtonSkill | usage, field_reference |
|
|
893
|
+
| LiveChatDeployment | usage, field_reference |
|
|
894
|
+
| LiveChatObjectAccessConfig | special_access_rules, field_reference |
|
|
895
|
+
| LiveChatObjectAccessDefinition | special_access_rules, field_reference |
|
|
896
|
+
| LiveChatSensitiveDataRule | special_access_rules, usage, wsdl_segment, field_reference |
|
|
897
|
+
| LiveChatTranscript | usage, associated_objects, field_reference |
|
|
898
|
+
| LiveChatTranscriptEvent | usage, associated_objects, field_reference |
|
|
899
|
+
| LiveChatTranscriptShare | usage, field_reference |
|
|
900
|
+
| LiveChatTranscriptSkill | usage, field_reference |
|
|
901
|
+
| LiveChatUserConfig | special_access_rules, usage, field_reference |
|
|
902
|
+
| LiveChatUserConfigProfile | special_access_rules, usage, field_reference |
|
|
903
|
+
| LiveChatUserConfigUser | special_access_rules, usage, field_reference |
|
|
904
|
+
| LiveChatVisitor | usage, associated_objects, field_reference |
|
|
905
|
+
| LocWaitlistMsgTemplate | - |
|
|
906
|
+
| Location | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
907
|
+
| LocationGroup | special_access_rules, associated_objects, field_reference |
|
|
908
|
+
| LocationGroupAssignment | special_access_rules, associated_objects, field_reference |
|
|
909
|
+
| LocationShippingCarrierMethod | special_access_rules, field_reference |
|
|
910
|
+
| LocationTrustMeasure | field_reference |
|
|
911
|
+
| LocationWaitlist | - |
|
|
912
|
+
| LocationWaitlistedParty | - |
|
|
913
|
+
| LoginAsEventLog | special_access_rules |
|
|
914
|
+
| LoginEvent | wsdl_segment, field_reference |
|
|
915
|
+
| LoginEventLog | special_access_rules |
|
|
916
|
+
| LoginGeo | special_access_rules, usage, wsdl_segment, field_reference |
|
|
917
|
+
| LoginHistory | special_access_rules, usage, wsdl_segment, field_reference |
|
|
918
|
+
| LoginIp | usage, wsdl_segment, field_reference |
|
|
919
|
+
| Login_As_Event_Type | - |
|
|
920
|
+
| Login_Event_Type | - |
|
|
921
|
+
| LogoutEventLog | special_access_rules |
|
|
922
|
+
| LogoutEventStream | wsdl_segment |
|
|
923
|
+
| Logout_Event_Type | - |
|
|
924
|
+
| LookedUpFromActivity | usage, wsdl_segment, field_reference |
|
|
925
|
+
| MLField | field_reference |
|
|
926
|
+
| MLModel | special_access_rules, field_reference |
|
|
927
|
+
| MLModelFactor | special_access_rules, field_reference |
|
|
928
|
+
| MLModelFactorComponent | special_access_rules, field_reference |
|
|
929
|
+
| MLModelMetric | special_access_rules, field_reference |
|
|
930
|
+
| MLPredictionDefinition | field_reference |
|
|
931
|
+
| MLRecommendationDefinition | field_reference |
|
|
932
|
+
| Macro | usage, associated_objects, wsdl_segment, field_reference |
|
|
933
|
+
| MacroInstruction | usage, associated_objects, wsdl_segment, field_reference |
|
|
934
|
+
| MacroUsage | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
935
|
+
| MailmergeTemplate | usage, wsdl_segment, field_reference |
|
|
936
|
+
| MaintenanceAsset | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
937
|
+
| MaintenancePlan | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
938
|
+
| MaintenanceWorkRule | associated_objects, wsdl_segment, field_reference |
|
|
939
|
+
| ManagedContent | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
940
|
+
| ManagedContentChannel | special_access_rules, usage, wsdl_segment, field_reference |
|
|
941
|
+
| ManagedContentInfo | special_access_rules, usage, field_reference |
|
|
942
|
+
| ManagedContentSpace | special_access_rules, wsdl_segment, field_reference |
|
|
943
|
+
| ManagedContentVariant | special_access_rules, usage, wsdl_segment, field_reference |
|
|
944
|
+
| MarketingForm | special_access_rules, associated_objects |
|
|
945
|
+
| MarketingLink | special_access_rules, associated_objects |
|
|
946
|
+
| MatchingRule | special_access_rules, usage, wsdl_segment, field_reference |
|
|
947
|
+
| MatchingRuleItem | special_access_rules, usage, wsdl_segment, field_reference |
|
|
948
|
+
| MerchAccPaymentMethodSet | special_access_rules, field_reference |
|
|
949
|
+
| MerchAccPaymentMethodType | special_access_rules, associated_objects, field_reference |
|
|
950
|
+
| MerchantAccount | special_access_rules, associated_objects, field_reference |
|
|
951
|
+
| MerchantAccountEvent | special_access_rules, field_reference |
|
|
952
|
+
| MessagingChannel | usage, wsdl_segment, field_reference |
|
|
953
|
+
| MessagingChannelSkill | field_reference |
|
|
954
|
+
| MessagingChannelUsage | wsdl_segment, field_reference |
|
|
955
|
+
| MessagingConfiguration | field_reference |
|
|
956
|
+
| MessagingDeliveryError | field_reference |
|
|
957
|
+
| MessagingEndUser | associated_objects, wsdl_segment, field_reference |
|
|
958
|
+
| MessagingLink | field_reference |
|
|
959
|
+
| MessagingSession | usage, associated_objects, wsdl_segment, field_reference |
|
|
960
|
+
| MessagingSessionMetrics | special_access_rules, wsdl_segment, field_reference |
|
|
961
|
+
| MessagingTemplate | field_reference |
|
|
962
|
+
| MetadataApiOpEventLog | special_access_rules |
|
|
963
|
+
| MetadataPackage | usage |
|
|
964
|
+
| MetadataPackageVersion | usage |
|
|
965
|
+
| Metadata_API_Operation_Event_Type | - |
|
|
966
|
+
| Metric | associated_objects |
|
|
967
|
+
| MetricDataLink | associated_objects |
|
|
968
|
+
| MigratedEmail | - |
|
|
969
|
+
| MilestoneType | special_access_rules, usage, wsdl_segment, field_reference |
|
|
970
|
+
| MktJourneyDcsnSetup | - |
|
|
971
|
+
| MlIntentUtteranceSuggestion | field_reference |
|
|
972
|
+
| MobSecurityCertPinConfig | special_access_rules, field_reference |
|
|
973
|
+
| MobSecurityCertPinEvent | special_access_rules |
|
|
974
|
+
| MobileDeviceAppRegistration | field_reference |
|
|
975
|
+
| MobileSecurityAssignment | special_access_rules, field_reference |
|
|
976
|
+
| MobileSecurityPolicy | special_access_rules, field_reference |
|
|
977
|
+
| MobileSecurityUserMetric | special_access_rules, usage, field_reference |
|
|
978
|
+
| MobileSettingsAssignment | special_access_rules, wsdl_segment, field_reference |
|
|
979
|
+
| MsgChannelLanguageKeyword | wsdl_segment, field_reference |
|
|
980
|
+
| MsgChannelUsageExternalOrg | usage, wsdl_segment, field_reference |
|
|
981
|
+
| Multiblock_Report_Event_Type | - |
|
|
982
|
+
| MutingPermissionSet | special_access_rules, usage, wsdl_segment, field_reference |
|
|
983
|
+
| MyDomainDiscoverableLogin | usage, wsdl_segment, field_reference |
|
|
984
|
+
| Name | usage, wsdl_segment, field_reference |
|
|
985
|
+
| NamedCredential | special_access_rules, usage, wsdl_segment, field_reference |
|
|
986
|
+
| NamedCredentialEventLog | special_access_rules |
|
|
987
|
+
| Named_Credential_Event_Type | - |
|
|
988
|
+
| NamespaceRegistry | associated_objects, field_reference |
|
|
989
|
+
| NavigationLinkSet | special_access_rules, field_reference |
|
|
990
|
+
| NavigationMenuItem | special_access_rules, usage, field_reference |
|
|
991
|
+
| NavigationMenuItemLocalization | special_access_rules, field_reference |
|
|
992
|
+
| Network | special_access_rules, usage, field_reference |
|
|
993
|
+
| NetworkActivityAudit | special_access_rules, usage, field_reference |
|
|
994
|
+
| NetworkAffinity | special_access_rules, usage, field_reference |
|
|
995
|
+
| NetworkAuthApiSettings | special_access_rules, field_reference |
|
|
996
|
+
| NetworkDataCategory | special_access_rules, field_reference |
|
|
997
|
+
| NetworkDiscoverableLogin | usage, field_reference |
|
|
998
|
+
| NetworkEmailTmplAllowlist | field_reference |
|
|
999
|
+
| NetworkFeedResponseMetric | special_access_rules, field_reference |
|
|
1000
|
+
| NetworkMember | special_access_rules, usage, field_reference |
|
|
1001
|
+
| NetworkMemberGroup | special_access_rules, usage, field_reference |
|
|
1002
|
+
| NetworkModeration | special_access_rules, usage, field_reference |
|
|
1003
|
+
| NetworkPageOverride | special_access_rules, field_reference |
|
|
1004
|
+
| NetworkSelfRegistration | field_reference |
|
|
1005
|
+
| NetworkUserHistoryRecent | special_access_rules, usage, field_reference |
|
|
1006
|
+
| Note | usage, wsdl_segment, field_reference |
|
|
1007
|
+
| NoteAndAttachment | usage, wsdl_segment, field_reference |
|
|
1008
|
+
| NoteTag | usage |
|
|
1009
|
+
| OSAsyncChgCompletedEvent | special_access_rules, field_reference |
|
|
1010
|
+
| OauthCustomScope | special_access_rules, wsdl_segment, field_reference |
|
|
1011
|
+
| OauthCustomScopeApp | wsdl_segment, field_reference |
|
|
1012
|
+
| OauthToken | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1013
|
+
| OauthTokenExchHandlerApp | wsdl_segment, field_reference |
|
|
1014
|
+
| OauthTokenExchangeHandler | wsdl_segment, field_reference |
|
|
1015
|
+
| ObjectDataImport | associated_objects, field_reference |
|
|
1016
|
+
| ObjectDataImportReference | special_access_rules, field_reference |
|
|
1017
|
+
| ObjectMetadataTag | special_access_rules, field_reference |
|
|
1018
|
+
| ObjectPermissions | special_access_rules, wsdl_segment, field_reference |
|
|
1019
|
+
| ObjectRelatedUrl | special_access_rules, associated_objects, field_reference |
|
|
1020
|
+
| ObjectTerritory2AssignmentRule | special_access_rules, field_reference |
|
|
1021
|
+
| ObjectTerritory2AssignmentRuleItem | special_access_rules, field_reference |
|
|
1022
|
+
| ObjectTerritory2Association | special_access_rules, field_reference |
|
|
1023
|
+
| ObjectUserTerritory2View | special_access_rules, field_reference |
|
|
1024
|
+
| OmniSupervisorConfig | special_access_rules, field_reference |
|
|
1025
|
+
| OmniSupervisorConfigAction | special_access_rules, field_reference |
|
|
1026
|
+
| OmniSupervisorConfigGroup | special_access_rules, field_reference |
|
|
1027
|
+
| OmniSupervisorConfigProfile | special_access_rules, field_reference |
|
|
1028
|
+
| OmniSupervisorConfigQueue | special_access_rules, field_reference |
|
|
1029
|
+
| OmniSupervisorConfigSkill | special_access_rules, field_reference |
|
|
1030
|
+
| OmniSupervisorConfigTab | special_access_rules, field_reference |
|
|
1031
|
+
| OmniSupervisorConfigUser | special_access_rules, field_reference |
|
|
1032
|
+
| One_Commerce_Usage_Event_Type | - |
|
|
1033
|
+
| OpenActivity | usage, wsdl_segment, field_reference |
|
|
1034
|
+
| OperatingHours | usage, associated_objects, wsdl_segment, field_reference |
|
|
1035
|
+
| OperatingHoursHistory | special_access_rules, wsdl_segment, field_reference |
|
|
1036
|
+
| OperatingHoursHoliday | special_access_rules, wsdl_segment, field_reference |
|
|
1037
|
+
| OppSalesMethodology | special_access_rules |
|
|
1038
|
+
| OppSalesMethodologyItem | special_access_rules |
|
|
1039
|
+
| Opportunity | usage, associated_objects, wsdl_segment, field_reference |
|
|
1040
|
+
| OpportunityCompetitor | usage, wsdl_segment, field_reference |
|
|
1041
|
+
| OpportunityContactRole | usage, associated_objects, wsdl_segment, field_reference |
|
|
1042
|
+
| OpportunityContactRoleSuggestionInsight | special_access_rules, usage |
|
|
1043
|
+
| OpportunityFieldHistory | usage, wsdl_segment, field_reference |
|
|
1044
|
+
| OpportunityHistory | usage, wsdl_segment, field_reference |
|
|
1045
|
+
| OpportunityInsight | special_access_rules, usage |
|
|
1046
|
+
| OpportunityLineItem | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1047
|
+
| OpportunityLineItemSchedule | usage, field_reference |
|
|
1048
|
+
| OpportunityLineItemSplit | special_access_rules, usage, associated_objects |
|
|
1049
|
+
| OpportunityOwnerSharingRule | usage |
|
|
1050
|
+
| OpportunityPartner | special_access_rules, wsdl_segment, field_reference |
|
|
1051
|
+
| OpportunityRelatedDeleteLog | wsdl_segment, field_reference |
|
|
1052
|
+
| OpportunityShare | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1053
|
+
| OpportunitySplit | usage, associated_objects |
|
|
1054
|
+
| OpportunitySplitType | - |
|
|
1055
|
+
| OpportunityStage | usage, wsdl_segment, field_reference |
|
|
1056
|
+
| OpportunityTag | usage |
|
|
1057
|
+
| OpportunityTeamMember | usage, associated_objects, field_reference |
|
|
1058
|
+
| OpptyLineItemSplitType | usage |
|
|
1059
|
+
| Order | usage, associated_objects, wsdl_segment, field_reference |
|
|
1060
|
+
| OrderAction | special_access_rules, field_reference |
|
|
1061
|
+
| OrderAdjustmentGroup | special_access_rules, associated_objects, field_reference |
|
|
1062
|
+
| OrderAdjustmentGroupSummary | special_access_rules, associated_objects, field_reference |
|
|
1063
|
+
| OrderChangeLog | usage, associated_objects, field_reference |
|
|
1064
|
+
| OrderChgReasonCategMap | field_reference |
|
|
1065
|
+
| OrderDeliveryGroup | special_access_rules, field_reference |
|
|
1066
|
+
| OrderDeliveryGroupSummary | special_access_rules, associated_objects, field_reference |
|
|
1067
|
+
| OrderDeliveryMethod | special_access_rules, associated_objects, field_reference |
|
|
1068
|
+
| OrderHistory | usage, wsdl_segment, field_reference |
|
|
1069
|
+
| OrderItem | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1070
|
+
| OrderItemAdjustmentLineItem | special_access_rules, field_reference |
|
|
1071
|
+
| OrderItemAdjustmentLineSummary | special_access_rules, field_reference |
|
|
1072
|
+
| OrderItemGroup | field_reference |
|
|
1073
|
+
| OrderItemRecipient | associated_objects, field_reference |
|
|
1074
|
+
| OrderItemRelationship | special_access_rules, associated_objects, field_reference |
|
|
1075
|
+
| OrderItemSummary | special_access_rules, associated_objects, field_reference |
|
|
1076
|
+
| OrderItemSummaryChange | special_access_rules, associated_objects, field_reference |
|
|
1077
|
+
| OrderItemSummaryRelationship | field_reference |
|
|
1078
|
+
| OrderItemTaxLineItem | special_access_rules, field_reference |
|
|
1079
|
+
| OrderItemTaxLineItemSummary | special_access_rules, associated_objects, field_reference |
|
|
1080
|
+
| OrderItemType | field_reference |
|
|
1081
|
+
| OrderOwnerSharingRule | special_access_rules |
|
|
1082
|
+
| OrderPaymentSummary | special_access_rules, associated_objects, field_reference |
|
|
1083
|
+
| OrderPaymentSummaryReference | special_access_rules, field_reference |
|
|
1084
|
+
| OrderShare | usage, wsdl_segment, field_reference |
|
|
1085
|
+
| OrderStatus | usage, wsdl_segment, field_reference |
|
|
1086
|
+
| OrderSummary | special_access_rules, associated_objects, field_reference |
|
|
1087
|
+
| OrderSummaryAdditionalInfo | special_access_rules, associated_objects, field_reference |
|
|
1088
|
+
| OrderSummaryRelationship | special_access_rules, field_reference |
|
|
1089
|
+
| OrderSummaryRoutingSchedule | special_access_rules, associated_objects, field_reference |
|
|
1090
|
+
| OrgDeleteRequest | associated_objects, wsdl_segment, field_reference |
|
|
1091
|
+
| OrgEmailAddressSecurity | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1092
|
+
| OrgMetric | special_access_rules, wsdl_segment, field_reference |
|
|
1093
|
+
| OrgMetricScanResult | special_access_rules, field_reference |
|
|
1094
|
+
| OrgMetricScanSummary | special_access_rules, wsdl_segment, field_reference |
|
|
1095
|
+
| OrgSnapshot | special_access_rules, associated_objects |
|
|
1096
|
+
| OrgWideEmailAddress | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1097
|
+
| Organization | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1098
|
+
| OutOfOffice | special_access_rules, field_reference |
|
|
1099
|
+
| OutgoingEmail | wsdl_segment, field_reference |
|
|
1100
|
+
| OutgoingEmailRelation | wsdl_segment, field_reference |
|
|
1101
|
+
| OwnedContentDocument | wsdl_segment, field_reference |
|
|
1102
|
+
| OwnerChangeOptionInfo | wsdl_segment, field_reference |
|
|
1103
|
+
| PackageInstallEventLog | special_access_rules |
|
|
1104
|
+
| PackageLicense | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1105
|
+
| PackagePushError | special_access_rules, usage |
|
|
1106
|
+
| PackagePushJob | special_access_rules, usage |
|
|
1107
|
+
| PackagePushRequest | special_access_rules, usage |
|
|
1108
|
+
| PackageSubscriber | special_access_rules, usage |
|
|
1109
|
+
| Package_Install_Event_Type | - |
|
|
1110
|
+
| Participant | wsdl_segment, field_reference |
|
|
1111
|
+
| Partner | special_access_rules, wsdl_segment, field_reference |
|
|
1112
|
+
| PartnerFundAllocation | associated_objects, field_reference |
|
|
1113
|
+
| PartnerFundClaim | associated_objects, field_reference |
|
|
1114
|
+
| PartnerFundRequest | associated_objects, field_reference |
|
|
1115
|
+
| PartnerMarketingBudget | associated_objects, field_reference |
|
|
1116
|
+
| PartnerNetworkConnection | special_access_rules, usage |
|
|
1117
|
+
| PartnerNetworkRecordConnection | special_access_rules, usage |
|
|
1118
|
+
| PartnerNetworkSyncLog | special_access_rules |
|
|
1119
|
+
| PartnerRole | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1120
|
+
| PartyConsent | associated_objects, wsdl_segment, field_reference |
|
|
1121
|
+
| Payment | special_access_rules, wsdl_segment, field_reference |
|
|
1122
|
+
| PaymentAuthAdjustment | special_access_rules, wsdl_segment, field_reference |
|
|
1123
|
+
| PaymentAuthorization | special_access_rules, wsdl_segment, field_reference |
|
|
1124
|
+
| PaymentCredit | special_access_rules, field_reference |
|
|
1125
|
+
| PaymentCreditLinePayment | special_access_rules, field_reference |
|
|
1126
|
+
| PaymentCreditTransaction | special_access_rules, field_reference |
|
|
1127
|
+
| PaymentGateway | special_access_rules, wsdl_segment, field_reference |
|
|
1128
|
+
| PaymentGatewayLog | special_access_rules, wsdl_segment, field_reference |
|
|
1129
|
+
| PaymentGatewayProvider | special_access_rules, wsdl_segment, field_reference |
|
|
1130
|
+
| PaymentGroup | special_access_rules, wsdl_segment, field_reference |
|
|
1131
|
+
| PaymentInitiationSource | special_access_rules, field_reference |
|
|
1132
|
+
| PaymentIntent | special_access_rules, field_reference |
|
|
1133
|
+
| PaymentIntentEvent | special_access_rules, field_reference |
|
|
1134
|
+
| PaymentLineInvoice | special_access_rules, usage, field_reference |
|
|
1135
|
+
| PaymentLink | special_access_rules, associated_objects, field_reference |
|
|
1136
|
+
| PaymentLinkEvent | special_access_rules, field_reference |
|
|
1137
|
+
| PaymentMethod | special_access_rules, wsdl_segment, field_reference |
|
|
1138
|
+
| PaymentSchedule | special_access_rules, field_reference |
|
|
1139
|
+
| PaymentScheduleItem | special_access_rules, field_reference |
|
|
1140
|
+
| PaymentSchedulePolicy | special_access_rules, field_reference |
|
|
1141
|
+
| PaymentScheduleTreatment | special_access_rules, field_reference |
|
|
1142
|
+
| PaymentScheduleTreatmentDtl | special_access_rules, field_reference |
|
|
1143
|
+
| PaymentTerm | special_access_rules, usage, field_reference |
|
|
1144
|
+
| PaymentTermItem | special_access_rules, field_reference |
|
|
1145
|
+
| PendingOrderSummary | special_access_rules, usage, field_reference |
|
|
1146
|
+
| PendingServiceRouting | special_access_rules, usage, associated_objects, field_reference |
|
|
1147
|
+
| PendingServiceRoutingInteractionInfo | special_access_rules, field_reference |
|
|
1148
|
+
| Period | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1149
|
+
| PermissionSet | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1150
|
+
| PermissionSetAssignment | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1151
|
+
| PermissionSetGroup | special_access_rules, usage, wsdl_segment |
|
|
1152
|
+
| PermissionSetGroupComponent | special_access_rules, usage, wsdl_segment |
|
|
1153
|
+
| PermissionSetLicense | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1154
|
+
| PermissionSetLicenseAssign | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1155
|
+
| PermissionSetLicenseDefinition | special_access_rules, usage, wsdl_segment |
|
|
1156
|
+
| PermissionSetTabSetting | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1157
|
+
| PermissionUpdateEventLog | special_access_rules |
|
|
1158
|
+
| Permission_Update_Event_Type | - |
|
|
1159
|
+
| PersnlBatchDecision | usage |
|
|
1160
|
+
| PersonAccountOwnerPowerUser | special_access_rules, field_reference |
|
|
1161
|
+
| PersonTraining | special_access_rules, usage |
|
|
1162
|
+
| PersonalOrgInfo | special_access_rules, associated_objects |
|
|
1163
|
+
| PersonalizationDecision | usage, associated_objects |
|
|
1164
|
+
| PersonalizationObjective | usage, associated_objects |
|
|
1165
|
+
| PersonalizationPoint | usage, associated_objects |
|
|
1166
|
+
| PersonalizationSchema | usage, associated_objects, field_reference |
|
|
1167
|
+
| PersonalizationTargetInfo | field_reference |
|
|
1168
|
+
| PickTicket | special_access_rules, associated_objects, field_reference |
|
|
1169
|
+
| PickTicketAssignment | special_access_rules, field_reference |
|
|
1170
|
+
| PickTicketProduct | special_access_rules, associated_objects, field_reference |
|
|
1171
|
+
| PicklistValueInfo | wsdl_segment, field_reference |
|
|
1172
|
+
| PipelineInspMetricConfig | field_reference |
|
|
1173
|
+
| PipelineInspMetricConfigLocalization | - |
|
|
1174
|
+
| PipelineInspectionListView | special_access_rules, usage, field_reference |
|
|
1175
|
+
| PipelineInspectionSumField | special_access_rules, field_reference |
|
|
1176
|
+
| PlatformAction | usage, wsdl_segment, field_reference |
|
|
1177
|
+
| PlatformEventUsageMetric | usage, wsdl_segment, field_reference |
|
|
1178
|
+
| PlatformStatusAlertEvent | wsdl_segment, field_reference |
|
|
1179
|
+
| Platform_Encryption_Event_Type | - |
|
|
1180
|
+
| PortalDelegablePermissionSet | field_reference |
|
|
1181
|
+
| PplnInspListViewCalcClmn | special_access_rules, usage |
|
|
1182
|
+
| PresenceConfigDeclineReason | special_access_rules, field_reference |
|
|
1183
|
+
| PresenceDeclineReason | special_access_rules, field_reference |
|
|
1184
|
+
| PresenceUserConfig | special_access_rules, field_reference |
|
|
1185
|
+
| PresenceUserConfigProfile | special_access_rules, field_reference |
|
|
1186
|
+
| PresenceUserConfigUser | special_access_rules, field_reference |
|
|
1187
|
+
| PriceAdjustmentGroup | special_access_rules |
|
|
1188
|
+
| PriceAdjustmentGroupShape | special_access_rules |
|
|
1189
|
+
| PriceAdjustmentItem | special_access_rules |
|
|
1190
|
+
| PriceAdjustmentItemShape | special_access_rules |
|
|
1191
|
+
| PriceAdjustmentSchedule | special_access_rules, usage, field_reference |
|
|
1192
|
+
| PriceAdjustmentTier | special_access_rules, usage, field_reference |
|
|
1193
|
+
| PriceProtectExecLineItem | - |
|
|
1194
|
+
| PriceProtectionExecution | - |
|
|
1195
|
+
| PriceProtectionTerm | - |
|
|
1196
|
+
| Pricebook2 | usage, associated_objects, wsdl_segment, field_reference |
|
|
1197
|
+
| Pricebook2History | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1198
|
+
| PricebookEntry | usage, associated_objects, wsdl_segment, field_reference |
|
|
1199
|
+
| PricebookEntryAdjustment | special_access_rules, field_reference |
|
|
1200
|
+
| Pricing_Event_Type | - |
|
|
1201
|
+
| PrivacyHold | special_access_rules |
|
|
1202
|
+
| PrivacyHoldReason | special_access_rules |
|
|
1203
|
+
| PrivacyJobSession | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1204
|
+
| PrivacyObjectSession | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1205
|
+
| PrivacyRTBFRequest | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1206
|
+
| PrivacyRequest | special_access_rules, associated_objects, usage |
|
|
1207
|
+
| PrivacyRtntStoreDelStatus | - |
|
|
1208
|
+
| PrivacySessionRecordFailure | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1209
|
+
| Problem | field_reference |
|
|
1210
|
+
| ProblemIncident | associated_objects, field_reference |
|
|
1211
|
+
| ProblemRelatedItem | associated_objects, field_reference |
|
|
1212
|
+
| ProcessDefinition | usage, wsdl_segment, field_reference |
|
|
1213
|
+
| ProcessException | associated_objects, wsdl_segment, field_reference |
|
|
1214
|
+
| ProcessFlowMigration | wsdl_segment, field_reference |
|
|
1215
|
+
| ProcessInstance | usage, associated_objects, wsdl_segment, field_reference |
|
|
1216
|
+
| ProcessInstanceHistory | usage, wsdl_segment, field_reference |
|
|
1217
|
+
| ProcessInstanceNode | wsdl_segment, field_reference |
|
|
1218
|
+
| ProcessInstanceStep | usage, associated_objects, wsdl_segment, field_reference |
|
|
1219
|
+
| ProcessInstanceWorkitem | usage, wsdl_segment, field_reference |
|
|
1220
|
+
| ProcessNode | usage, wsdl_segment, field_reference |
|
|
1221
|
+
| ProducerCommission | field_reference |
|
|
1222
|
+
| Product2 | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1223
|
+
| Product2DataTranslation | special_access_rules, usage |
|
|
1224
|
+
| ProductAttribute | special_access_rules, associated_objects, field_reference |
|
|
1225
|
+
| ProductAttributeSet | special_access_rules, field_reference |
|
|
1226
|
+
| ProductAttributeSetItem | special_access_rules, field_reference |
|
|
1227
|
+
| ProductAttributeSetProduct | special_access_rules, field_reference |
|
|
1228
|
+
| ProductCatalog | special_access_rules, field_reference |
|
|
1229
|
+
| ProductCategory | special_access_rules, associated_objects, field_reference |
|
|
1230
|
+
| ProductCategoryDataTranslation | usage |
|
|
1231
|
+
| ProductCategoryProduct | special_access_rules, associated_objects, field_reference |
|
|
1232
|
+
| ProductComponentGroup | special_access_rules, field_reference |
|
|
1233
|
+
| ProductConsumed | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1234
|
+
| ProductDetectedPriceChange | - |
|
|
1235
|
+
| ProductEntitlementTemplate | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1236
|
+
| ProductFeaturedProduct | associated_objects, field_reference |
|
|
1237
|
+
| ProductItem | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1238
|
+
| ProductItemTransaction | associated_objects, wsdl_segment, field_reference |
|
|
1239
|
+
| ProductMedia | special_access_rules, associated_objects, field_reference |
|
|
1240
|
+
| ProductQuantityRule | special_access_rules, field_reference |
|
|
1241
|
+
| ProductRelatedComponent | special_access_rules, field_reference |
|
|
1242
|
+
| ProductRelationshipType | special_access_rules, field_reference |
|
|
1243
|
+
| ProductRequest | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1244
|
+
| ProductRequestLineItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1245
|
+
| ProductRequired | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1246
|
+
| ProductSellingModel | special_access_rules, field_reference |
|
|
1247
|
+
| ProductSellingModelOption | special_access_rules, field_reference |
|
|
1248
|
+
| ProductServiceCampaign | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1249
|
+
| ProductServiceCampaignItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1250
|
+
| ProductServiceCampaignItemStatus | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1251
|
+
| ProductServiceCampaignStatus | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1252
|
+
| ProductTransfer | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1253
|
+
| ProductWarrantyTerm | associated_objects, wsdl_segment, field_reference |
|
|
1254
|
+
| Profile | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1255
|
+
| ProfileSkill | usage, associated_objects, wsdl_segment, field_reference |
|
|
1256
|
+
| ProfileSkillEndorsement | usage, associated_objects, wsdl_segment, field_reference |
|
|
1257
|
+
| ProfileSkillShare | usage, wsdl_segment, field_reference |
|
|
1258
|
+
| ProfileSkillUser | usage, associated_objects, wsdl_segment, field_reference |
|
|
1259
|
+
| ProgramProduct | special_access_rules, associated_objects, field_reference |
|
|
1260
|
+
| ProgramRebateType | field_reference |
|
|
1261
|
+
| Promotion | special_access_rules, associated_objects, field_reference |
|
|
1262
|
+
| PromotionLineItemRule | field_reference |
|
|
1263
|
+
| PromotionMarketSegment | special_access_rules, field_reference |
|
|
1264
|
+
| PromotionQualifier | special_access_rules, associated_objects, field_reference |
|
|
1265
|
+
| PromotionSegment | special_access_rules, associated_objects, field_reference |
|
|
1266
|
+
| PromotionSegmentBuyerGroup | special_access_rules, associated_objects, field_reference |
|
|
1267
|
+
| PromotionSegmentSalesStore | special_access_rules, associated_objects, field_reference |
|
|
1268
|
+
| PromotionTarget | special_access_rules, field_reference |
|
|
1269
|
+
| PromotionTier | usage, associated_objects, field_reference |
|
|
1270
|
+
| Prompt | special_access_rules, wsdl_segment, field_reference |
|
|
1271
|
+
| PromptAction | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1272
|
+
| PromptActionOwnerSharingRule | special_access_rules |
|
|
1273
|
+
| PromptActionShare | special_access_rules, wsdl_segment, field_reference |
|
|
1274
|
+
| PromptError | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1275
|
+
| PromptLocalization | special_access_rules, field_reference |
|
|
1276
|
+
| PromptVersion | special_access_rules, wsdl_segment, field_reference |
|
|
1277
|
+
| PromptVersionLocalization | special_access_rules, field_reference |
|
|
1278
|
+
| ProrationPolicy | special_access_rules, field_reference |
|
|
1279
|
+
| Prospect | - |
|
|
1280
|
+
| ProspectingAgentDataSource | - |
|
|
1281
|
+
| ProspectingAgentRcmdTarget | special_access_rules |
|
|
1282
|
+
| ProspectingAgentSpec | - |
|
|
1283
|
+
| ProspectingAgentSpecParm | - |
|
|
1284
|
+
| ProspectingAgentUserSpec | - |
|
|
1285
|
+
| PublicComplaint | special_access_rules, associated_objects, field_reference |
|
|
1286
|
+
| PurchaseQuantityRule | special_access_rules, field_reference |
|
|
1287
|
+
| PushTopic | usage, wsdl_segment, field_reference |
|
|
1288
|
+
| PushUpgradeCustomization | - |
|
|
1289
|
+
| PymtSchdDistributionMethod | special_access_rules, field_reference |
|
|
1290
|
+
| Question | special_access_rules, usage, field_reference |
|
|
1291
|
+
| QuestionDataCategorySelection | special_access_rules, usage, field_reference |
|
|
1292
|
+
| QuestionReportAbuse | usage, field_reference |
|
|
1293
|
+
| QuestionSubscription | usage, field_reference |
|
|
1294
|
+
| QueueRoutingConfig | special_access_rules, field_reference |
|
|
1295
|
+
| QueueSobject | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1296
|
+
| QueuedExecutionEventLog | special_access_rules |
|
|
1297
|
+
| Queued_Execution_Event_Type | - |
|
|
1298
|
+
| QuickText | usage, associated_objects, wsdl_segment, field_reference |
|
|
1299
|
+
| QuickTextUsage | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1300
|
+
| Quote | usage, associated_objects, field_reference |
|
|
1301
|
+
| QuoteAction | special_access_rules, field_reference |
|
|
1302
|
+
| QuoteAdjustmentGroup | special_access_rules, associated_objects |
|
|
1303
|
+
| QuoteDocument | usage, field_reference |
|
|
1304
|
+
| QuoteItemTaxItem | special_access_rules, field_reference |
|
|
1305
|
+
| QuoteLineGroup | field_reference |
|
|
1306
|
+
| QuoteLineItem | special_access_rules, usage, associated_objects, field_reference |
|
|
1307
|
+
| QuoteLineItemRecipient | associated_objects, field_reference |
|
|
1308
|
+
| QuoteLinePriceAdjustment | special_access_rules |
|
|
1309
|
+
| QuoteLineRelationship | special_access_rules, associated_objects, field_reference |
|
|
1310
|
+
| QuoteLineWorkSource | - |
|
|
1311
|
+
| QuoteRecipientGroup | field_reference |
|
|
1312
|
+
| QuoteRecipientGroupMember | field_reference |
|
|
1313
|
+
| REST_API_Event_Type | - |
|
|
1314
|
+
| RecentFieldChange | special_access_rules, usage, field_reference |
|
|
1315
|
+
| RecentlyViewed | usage, wsdl_segment, field_reference |
|
|
1316
|
+
| Recommendation | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1317
|
+
| RecommendationResponse | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1318
|
+
| RecordAction | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1319
|
+
| RecordActionHistory | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1320
|
+
| RecordType | usage, wsdl_segment, field_reference |
|
|
1321
|
+
| RecordTypeLocalization | usage, field_reference |
|
|
1322
|
+
| RecordVisibility | special_access_rules, usage |
|
|
1323
|
+
| RecordsetFilterCriteria | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1324
|
+
| RecordsetFilterCriteriaRule | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1325
|
+
| RecordsetFltrCritMonitor | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1326
|
+
| RedirectWhitelistUrl | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1327
|
+
| Refund | special_access_rules, wsdl_segment, field_reference |
|
|
1328
|
+
| RefundLinePayment | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1329
|
+
| RegisteredExternalService | special_access_rules, field_reference |
|
|
1330
|
+
| RelatedListColumnDefinition | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1331
|
+
| RelatedListDefinition | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1332
|
+
| RemoteKeyCalloutEvent | wsdl_segment, field_reference |
|
|
1333
|
+
| Reply | usage, field_reference |
|
|
1334
|
+
| ReplyEmailSettings | wsdl_segment, field_reference |
|
|
1335
|
+
| ReplyReportAbuse | usage, field_reference |
|
|
1336
|
+
| ReplyText | usage |
|
|
1337
|
+
| Report | usage, associated_objects, wsdl_segment, field_reference |
|
|
1338
|
+
| ReportEventLog | special_access_rules |
|
|
1339
|
+
| ReportExportEventLog | special_access_rules |
|
|
1340
|
+
| ReportTag | usage |
|
|
1341
|
+
| Report_Event_Type | usage |
|
|
1342
|
+
| Report_Export_Event_Type | - |
|
|
1343
|
+
| ReputationLevel | special_access_rules, field_reference |
|
|
1344
|
+
| ReputationLevelLocalization | special_access_rules, field_reference |
|
|
1345
|
+
| ReputationPointsRule | special_access_rules, field_reference |
|
|
1346
|
+
| ResourceAbsence | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1347
|
+
| ResourcePreference | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1348
|
+
| RestApiEventLog | special_access_rules |
|
|
1349
|
+
| RetentionStoreUsage | associated_objects, wsdl_segment, field_reference |
|
|
1350
|
+
| ReturnOrder | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1351
|
+
| ReturnOrderItemAdjustment | special_access_rules, associated_objects, field_reference |
|
|
1352
|
+
| ReturnOrderItemTax | special_access_rules, associated_objects, field_reference |
|
|
1353
|
+
| ReturnOrderLineItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1354
|
+
| ReturnOrderOwnerSharingRule | special_access_rules |
|
|
1355
|
+
| RevenueAsyncOperation | special_access_rules, field_reference |
|
|
1356
|
+
| RevenueTransactionErrorLog | special_access_rules, field_reference |
|
|
1357
|
+
| RpaFlowResultEvent | - |
|
|
1358
|
+
| RpaRobot | - |
|
|
1359
|
+
| RpaRobotAsgnMaintWindow | - |
|
|
1360
|
+
| RpaRobotAsgnSessionInf | - |
|
|
1361
|
+
| RpaRobotDefinition | - |
|
|
1362
|
+
| RpaRobotMaintWindow | - |
|
|
1363
|
+
| RpaRobotMaintWindowDef | - |
|
|
1364
|
+
| RpaRobotPool | - |
|
|
1365
|
+
| RpaRobotPoolAsgnRobot | - |
|
|
1366
|
+
| RpaRobotPoolDefinition | - |
|
|
1367
|
+
| RpaRobotPoolFlowAsgn | - |
|
|
1368
|
+
| RpaRobotSessionInfo | - |
|
|
1369
|
+
| RpaRobotSessionInfoDef | - |
|
|
1370
|
+
| RuleTerritory2Association | special_access_rules, field_reference |
|
|
1371
|
+
| SOAP_API_Event_Type | - |
|
|
1372
|
+
| SOSDeployment | usage |
|
|
1373
|
+
| SOSSession | usage, associated_objects |
|
|
1374
|
+
| SOSSessionActivity | usage |
|
|
1375
|
+
| SalesAIScoreCycle | special_access_rules |
|
|
1376
|
+
| SalesAIScoreModelFactor | special_access_rules, usage |
|
|
1377
|
+
| SalesChannel | special_access_rules, associated_objects, field_reference |
|
|
1378
|
+
| SalesMethodologyDef | special_access_rules |
|
|
1379
|
+
| SalesMethodologyDefItem | special_access_rules |
|
|
1380
|
+
| SalesStoreCatalog | special_access_rules, field_reference |
|
|
1381
|
+
| SalesTransaction | special_access_rules |
|
|
1382
|
+
| SalesTransactionItemShape | special_access_rules |
|
|
1383
|
+
| SalesTransactionShape | special_access_rules |
|
|
1384
|
+
| SalesTransactionType | special_access_rules, associated_objects, field_reference |
|
|
1385
|
+
| SalesTrxnItemRelationShape | special_access_rules |
|
|
1386
|
+
| SalesWorkQueueSettings | field_reference |
|
|
1387
|
+
| SalesforceContract | usage, associated_objects |
|
|
1388
|
+
| SalesforceInvoice | usage, associated_objects |
|
|
1389
|
+
| SalesforceLoginAsEventLog | special_access_rules |
|
|
1390
|
+
| SalesforcePayment | usage, associated_objects |
|
|
1391
|
+
| SalesforceQuote | usage, associated_objects |
|
|
1392
|
+
| Salesforce_Surveys_Object_Model | - |
|
|
1393
|
+
| SamlSsoConfig | special_access_rules, wsdl_segment, field_reference |
|
|
1394
|
+
| SandboxStatusEventLog | special_access_rules |
|
|
1395
|
+
| Sandbox_Event_Type | - |
|
|
1396
|
+
| SavedPaymentMethod | special_access_rules, associated_objects, field_reference |
|
|
1397
|
+
| SavedPaymentMethodEvent | special_access_rules, field_reference |
|
|
1398
|
+
| SchedulingAdherenceDetail | special_access_rules |
|
|
1399
|
+
| SchedulingAdherenceSummary | special_access_rules, associated_objects |
|
|
1400
|
+
| SchedulingConstraint | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1401
|
+
| SchedulingObjective | special_access_rules, wsdl_segment, field_reference |
|
|
1402
|
+
| SchedulingRule | special_access_rules, wsdl_segment, field_reference |
|
|
1403
|
+
| SchedulingRuleParameter | special_access_rules, wsdl_segment, field_reference |
|
|
1404
|
+
| Scontrol | usage, wsdl_segment, field_reference |
|
|
1405
|
+
| ScontrolLocalization | usage, field_reference |
|
|
1406
|
+
| ScoreIntelligence | - |
|
|
1407
|
+
| Scorecard | usage, associated_objects, wsdl_segment, field_reference |
|
|
1408
|
+
| ScorecardAssociation | wsdl_segment, field_reference |
|
|
1409
|
+
| ScorecardMetric | wsdl_segment, field_reference |
|
|
1410
|
+
| ScratchOrgInfo | associated_objects, field_reference |
|
|
1411
|
+
| SearchActivity | special_access_rules, field_reference |
|
|
1412
|
+
| SearchClickEventLog | special_access_rules, usage |
|
|
1413
|
+
| SearchEventLog | special_access_rules, usage |
|
|
1414
|
+
| SearchLayout | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1415
|
+
| SearchPromotionRule | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1416
|
+
| Search_Click_Event_Type | - |
|
|
1417
|
+
| Search_Event_Type | - |
|
|
1418
|
+
| SecurityCustomBaseline | special_access_rules, wsdl_segment, field_reference |
|
|
1419
|
+
| SecurityHealthCheckAlertRecipient | wsdl_segment |
|
|
1420
|
+
| SecurityHealthCheckResult | wsdl_segment |
|
|
1421
|
+
| SelfServiceUser | special_access_rules, usage |
|
|
1422
|
+
| Seller | associated_objects, wsdl_segment, field_reference |
|
|
1423
|
+
| SenderEmailAddress | field_reference |
|
|
1424
|
+
| ServiceAppointment | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1425
|
+
| ServiceAppointmentStatus | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1426
|
+
| ServiceChannel | special_access_rules, field_reference |
|
|
1427
|
+
| ServiceChannelFieldPriority | special_access_rules |
|
|
1428
|
+
| ServiceChannelStatus | special_access_rules, field_reference |
|
|
1429
|
+
| ServiceChannelStatusField | special_access_rules, field_reference |
|
|
1430
|
+
| ServiceContract | associated_objects, wsdl_segment, field_reference |
|
|
1431
|
+
| ServiceContractOwnerSharingRule | usage |
|
|
1432
|
+
| ServiceCrew | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1433
|
+
| ServiceCrewMember | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1434
|
+
| ServiceCrewOwnerSharingRule | special_access_rules |
|
|
1435
|
+
| ServicePresenceStatus | special_access_rules, field_reference |
|
|
1436
|
+
| ServiceReport | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1437
|
+
| ServiceReportLayout | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1438
|
+
| ServiceRequest | associated_objects |
|
|
1439
|
+
| ServiceResource | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1440
|
+
| ServiceResourceCapacity | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1441
|
+
| ServiceResourceCapacityHistory | special_access_rules, wsdl_segment, field_reference |
|
|
1442
|
+
| ServiceResourceDataTranslation | usage |
|
|
1443
|
+
| ServiceResourceOwnerSharingRule | - |
|
|
1444
|
+
| ServiceResourcePreference | special_access_rules, wsdl_segment, field_reference |
|
|
1445
|
+
| ServiceResourceSkill | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1446
|
+
| ServiceSetupProvisioning | special_access_rules, wsdl_segment, field_reference |
|
|
1447
|
+
| ServiceTerritory | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1448
|
+
| ServiceTerritoryDataTranslation | usage |
|
|
1449
|
+
| ServiceTerritoryLocation | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1450
|
+
| ServiceTerritoryMember | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1451
|
+
| ServiceTerritoryWorkType | associated_objects, field_reference |
|
|
1452
|
+
| SessionPermSetActivation | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1453
|
+
| SetupAssistantStep | wsdl_segment |
|
|
1454
|
+
| SetupAuditTrail | wsdl_segment, field_reference |
|
|
1455
|
+
| SetupEntityAccess | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1456
|
+
| SfdcCustomerForPartner | associated_objects |
|
|
1457
|
+
| SfdcPartnerOffer | - |
|
|
1458
|
+
| SfdcPartnerOfferItem | - |
|
|
1459
|
+
| SfdcPartnerOrder | - |
|
|
1460
|
+
| SfdcPartnerOrderBillingTrxn | - |
|
|
1461
|
+
| SfdcPartnerOrderItem | - |
|
|
1462
|
+
| SfdcPartnerPackage | - |
|
|
1463
|
+
| SfdcPartnerPackageVersion | - |
|
|
1464
|
+
| SfdcPartnerPayout | - |
|
|
1465
|
+
| SfdcPartnerPermSetLicense | - |
|
|
1466
|
+
| SfdcPartnerProductLicense | - |
|
|
1467
|
+
| SfdcPartnerProvisionProduct | - |
|
|
1468
|
+
| SfdcPartnerSbscrOffer | wsdl_segment |
|
|
1469
|
+
| SfdcPartnerSbscrOfferItem | wsdl_segment |
|
|
1470
|
+
| SfdcPartnerTenant | - |
|
|
1471
|
+
| SfdcPartnerTenantPackage | - |
|
|
1472
|
+
| SfdcPartnerTermSet | associated_objects |
|
|
1473
|
+
| SfdcPartnerTermSetProduct | associated_objects |
|
|
1474
|
+
| SfdcPartnerTntPermSetLic | - |
|
|
1475
|
+
| SfdcPartnerTntPkgLicense | - |
|
|
1476
|
+
| ShapeRepresentation | - |
|
|
1477
|
+
| SharingRecordCollection | field_reference |
|
|
1478
|
+
| SharingRecordCollectionItem | field_reference |
|
|
1479
|
+
| SharingRecordCollectionMember | field_reference |
|
|
1480
|
+
| Shift | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1481
|
+
| ShiftHistory | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1482
|
+
| ShiftOwnerSharingRule | usage |
|
|
1483
|
+
| ShiftPattern | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1484
|
+
| ShiftPatternEntry | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1485
|
+
| ShiftSegment | special_access_rules |
|
|
1486
|
+
| ShiftSegmentType | special_access_rules |
|
|
1487
|
+
| ShiftShare | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1488
|
+
| ShiftStatus | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1489
|
+
| ShiftTemplate | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1490
|
+
| Shipment | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1491
|
+
| ShipmentItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1492
|
+
| ShippingCarrier | special_access_rules, field_reference |
|
|
1493
|
+
| ShippingCarrierMethod | special_access_rules, field_reference |
|
|
1494
|
+
| ShippingConfigSetProduct | special_access_rules, field_reference |
|
|
1495
|
+
| ShippingConfigurationSet | special_access_rules, field_reference |
|
|
1496
|
+
| ShippingRateArea | special_access_rules, field_reference |
|
|
1497
|
+
| ShippingRateGroup | special_access_rules, field_reference |
|
|
1498
|
+
| SignupRequest | usage, associated_objects, field_reference |
|
|
1499
|
+
| Site | usage, associated_objects, wsdl_segment, field_reference |
|
|
1500
|
+
| SiteDetail | wsdl_segment, field_reference |
|
|
1501
|
+
| SiteDomain | usage |
|
|
1502
|
+
| SiteEventLog | special_access_rules |
|
|
1503
|
+
| SiteHistory | wsdl_segment, field_reference |
|
|
1504
|
+
| SiteIframeWhitelistUrl | wsdl_segment |
|
|
1505
|
+
| SiteRedirectMapping | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1506
|
+
| Sites_Event_Type | - |
|
|
1507
|
+
| Skill | usage, wsdl_segment, field_reference |
|
|
1508
|
+
| SkillLevelDefinition | special_access_rules, associated_objects |
|
|
1509
|
+
| SkillLevelProgress | special_access_rules, associated_objects |
|
|
1510
|
+
| SkillProfile | usage, field_reference |
|
|
1511
|
+
| SkillRequirement | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1512
|
+
| SkillUser | usage, field_reference |
|
|
1513
|
+
| SlaProcess | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1514
|
+
| SlackChannelRelatedRecord | usage, wsdl_segment, field_reference |
|
|
1515
|
+
| Snippet | special_access_rules, associated_objects |
|
|
1516
|
+
| SnippetAssignment | special_access_rules |
|
|
1517
|
+
| SoapApiEventLog | special_access_rules |
|
|
1518
|
+
| SocialPersona | usage, associated_objects, field_reference |
|
|
1519
|
+
| SocialPost | usage, associated_objects, field_reference |
|
|
1520
|
+
| Solution | usage, associated_objects, wsdl_segment, field_reference |
|
|
1521
|
+
| SolutionStatus | usage, wsdl_segment, field_reference |
|
|
1522
|
+
| SolutionTag | usage |
|
|
1523
|
+
| SourceCodeRepoProvider | associated_objects |
|
|
1524
|
+
| SourceCodeRepository | associated_objects |
|
|
1525
|
+
| SourceCodeRepositoryBranch | usage, associated_objects |
|
|
1526
|
+
| StagedEmail | - |
|
|
1527
|
+
| StagedInviteeEmail | special_access_rules, field_reference |
|
|
1528
|
+
| StagedUnmtchdEmailAddr | special_access_rules |
|
|
1529
|
+
| StagedUnmtchdEmailAddrRela | special_access_rules |
|
|
1530
|
+
| Stamp | wsdl_segment, field_reference |
|
|
1531
|
+
| StampAssignment | wsdl_segment, field_reference |
|
|
1532
|
+
| StandardInvocableActionType | special_access_rules, field_reference |
|
|
1533
|
+
| StandardObjectNameChangeEvent | usage |
|
|
1534
|
+
| StandardObjectNameFeed | special_access_rules, usage |
|
|
1535
|
+
| StandardObjectNameHistory | special_access_rules |
|
|
1536
|
+
| StandardObjectNameOwnerSharingRule | special_access_rules |
|
|
1537
|
+
| StandardObjectNameShare | special_access_rules |
|
|
1538
|
+
| StandardObjectName_Feed | special_access_rules, usage |
|
|
1539
|
+
| StandardObjectName_Feed_Feed | special_access_rules, usage |
|
|
1540
|
+
| StandardObjectName_History | special_access_rules |
|
|
1541
|
+
| StandardObjectName_History_History | special_access_rules |
|
|
1542
|
+
| StandardObjectName_OwnerSharingRule | special_access_rules |
|
|
1543
|
+
| StandardObjectName_OwnerSharingRule_OwnerSharingRule | special_access_rules |
|
|
1544
|
+
| StandardObjectName_Share | special_access_rules |
|
|
1545
|
+
| StandardObjectName_Share_Share | special_access_rules |
|
|
1546
|
+
| StandardShippingRate | special_access_rules, field_reference |
|
|
1547
|
+
| Standard_Objects | - |
|
|
1548
|
+
| StaticResource | usage, wsdl_segment, field_reference |
|
|
1549
|
+
| StoreIntegratedService | special_access_rules, field_reference |
|
|
1550
|
+
| StreamingChannel | wsdl_segment, field_reference |
|
|
1551
|
+
| Survey | associated_objects, field_reference |
|
|
1552
|
+
| SurveyEmailBranding | special_access_rules, field_reference |
|
|
1553
|
+
| SurveyEngagementContext | associated_objects, field_reference |
|
|
1554
|
+
| SurveyInvitation | associated_objects, field_reference |
|
|
1555
|
+
| SurveyPage | associated_objects, field_reference |
|
|
1556
|
+
| SurveyQuestion | associated_objects, field_reference |
|
|
1557
|
+
| SurveyQuestionChoice | associated_objects, field_reference |
|
|
1558
|
+
| SurveyQuestionResponse | associated_objects, field_reference |
|
|
1559
|
+
| SurveyQuestionScore | field_reference |
|
|
1560
|
+
| SurveyResponse | associated_objects, field_reference |
|
|
1561
|
+
| SurveySubject | associated_objects, field_reference |
|
|
1562
|
+
| SurveyVersion | associated_objects, field_reference |
|
|
1563
|
+
| SurveyVersionAddlInfo | field_reference |
|
|
1564
|
+
| SvcCatalogCategory | special_access_rules, field_reference |
|
|
1565
|
+
| SvcCatalogCategoryItem | special_access_rules, field_reference |
|
|
1566
|
+
| SvcCatalogFilterCriteria | special_access_rules |
|
|
1567
|
+
| SvcCatalogItemDef | special_access_rules, field_reference |
|
|
1568
|
+
| SvcCatalogReqRelatedItem | special_access_rules, field_reference |
|
|
1569
|
+
| SvcCatalogRequest | special_access_rules, field_reference |
|
|
1570
|
+
| Swarm | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1571
|
+
| SwarmMember | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1572
|
+
| TabDefinition | wsdl_segment, field_reference |
|
|
1573
|
+
| TagDefinition | special_access_rules, usage |
|
|
1574
|
+
| Task | usage, associated_objects, wsdl_segment, field_reference |
|
|
1575
|
+
| TaskPriority | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1576
|
+
| TaskRelation | usage, associated_objects, field_reference |
|
|
1577
|
+
| TaskStatus | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1578
|
+
| TaskTag | usage |
|
|
1579
|
+
| TaskWhoRelation | usage, field_reference |
|
|
1580
|
+
| TaxEngine | special_access_rules, special_access_rules, field_reference |
|
|
1581
|
+
| TaxEngineInteractionLog | special_access_rules, field_reference |
|
|
1582
|
+
| TaxEngineProvider | special_access_rules, field_reference |
|
|
1583
|
+
| TaxGeoConfig | special_access_rules, associated_objects, field_reference |
|
|
1584
|
+
| TaxPolicy | special_access_rules, field_reference |
|
|
1585
|
+
| TaxRate | special_access_rules, associated_objects, field_reference |
|
|
1586
|
+
| TaxTreatment | special_access_rules, field_reference |
|
|
1587
|
+
| TenantConsumptionAlert | usage, associated_objects, field_reference |
|
|
1588
|
+
| TenantScrAIPrmptInjection | special_access_rules |
|
|
1589
|
+
| TenantSecret | usage |
|
|
1590
|
+
| TenantSecurityAIGtwyUsage | special_access_rules |
|
|
1591
|
+
| TenantSecurityAlertRuleSelectedTenant | special_access_rules, associated_objects |
|
|
1592
|
+
| TenantSecurityAnomaly | associated_objects |
|
|
1593
|
+
| TenantSecurityApiAnomaly | special_access_rules, associated_objects |
|
|
1594
|
+
| TenantSecurityCertificate | special_access_rules |
|
|
1595
|
+
| TenantSecurityConfigAgent | special_access_rules |
|
|
1596
|
+
| TenantSecurityConnectedApp | special_access_rules, associated_objects |
|
|
1597
|
+
| TenantSecurityCredentialStuffing | special_access_rules, associated_objects |
|
|
1598
|
+
| TenantSecurityCustomMetricDetail | special_access_rules |
|
|
1599
|
+
| TenantSecurityCustomMetricSetup | - |
|
|
1600
|
+
| TenantSecurityCustomMetricStat | special_access_rules |
|
|
1601
|
+
| TenantSecurityEncryptedField | special_access_rules |
|
|
1602
|
+
| TenantSecurityEncryptionPolicy | special_access_rules |
|
|
1603
|
+
| TenantSecurityFeature | special_access_rules, associated_objects |
|
|
1604
|
+
| TenantSecurityGuestUserAnomaly | special_access_rules, associated_objects |
|
|
1605
|
+
| TenantSecurityHealthCheckBaselineTrend | special_access_rules, associated_objects |
|
|
1606
|
+
| TenantSecurityHealthCheckDetail | special_access_rules, associated_objects |
|
|
1607
|
+
| TenantSecurityHealthCheckTrend | special_access_rules, associated_objects |
|
|
1608
|
+
| TenantSecurityLicense | special_access_rules, associated_objects |
|
|
1609
|
+
| TenantSecurityLogin | special_access_rules, associated_objects |
|
|
1610
|
+
| TenantSecurityLoginIpRangeTrend | special_access_rules, associated_objects |
|
|
1611
|
+
| TenantSecurityMetricDetail | special_access_rules, associated_objects |
|
|
1612
|
+
| TenantSecurityMetricDetailLink | special_access_rules |
|
|
1613
|
+
| TenantSecurityMobilePolicyTrend | special_access_rules, associated_objects |
|
|
1614
|
+
| TenantSecurityMonitorMetric | special_access_rules, associated_objects |
|
|
1615
|
+
| TenantSecurityNotification | special_access_rules, associated_objects |
|
|
1616
|
+
| TenantSecurityNotificationRule | special_access_rules, associated_objects |
|
|
1617
|
+
| TenantSecurityPackage | special_access_rules, associated_objects |
|
|
1618
|
+
| TenantSecurityPolicy | special_access_rules, associated_objects |
|
|
1619
|
+
| TenantSecurityPolicyChangeLog | special_access_rules, associated_objects |
|
|
1620
|
+
| TenantSecurityPolicyDeployment | special_access_rules, associated_objects |
|
|
1621
|
+
| TenantSecurityPolicySelectedTenant | special_access_rules, associated_objects |
|
|
1622
|
+
| TenantSecurityReportAnomaly | special_access_rules, associated_objects |
|
|
1623
|
+
| TenantSecuritySessionHijacking | special_access_rules, associated_objects |
|
|
1624
|
+
| TenantSecurityTenantChangeLog | - |
|
|
1625
|
+
| TenantSecurityTenantInfo | special_access_rules, associated_objects |
|
|
1626
|
+
| TenantSecurityTransactionPolicyTrend | special_access_rules, associated_objects |
|
|
1627
|
+
| TenantSecurityTrigTransactionSecurityPol | special_access_rules |
|
|
1628
|
+
| TenantSecurityTrustedIpRangeTrend | special_access_rules, associated_objects |
|
|
1629
|
+
| TenantSecurityUserActivity | special_access_rules, associated_objects |
|
|
1630
|
+
| TenantSecurityUserPerm | special_access_rules, associated_objects |
|
|
1631
|
+
| TenantUsageEntitlement | associated_objects, wsdl_segment, field_reference |
|
|
1632
|
+
| Territory | special_access_rules, usage |
|
|
1633
|
+
| Territory2 | special_access_rules, field_reference |
|
|
1634
|
+
| Territory2AlignmentLog | special_access_rules, associated_objects, field_reference |
|
|
1635
|
+
| Territory2Model | special_access_rules, associated_objects, field_reference |
|
|
1636
|
+
| Territory2ModelHistory | usage, field_reference |
|
|
1637
|
+
| Territory2ObjSharingConfig | special_access_rules, field_reference |
|
|
1638
|
+
| Territory2ObjectExclusion | special_access_rules, field_reference |
|
|
1639
|
+
| Territory2Type | special_access_rules, field_reference |
|
|
1640
|
+
| TerritoryAdminAssignment | special_access_rules, field_reference |
|
|
1641
|
+
| TerritoryMgmtObjectConfig | special_access_rules, field_reference |
|
|
1642
|
+
| TestSuiteMembership | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1643
|
+
| ThirdPartyAccountLink | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1644
|
+
| ThreatDetectionFeedback | wsdl_segment, field_reference |
|
|
1645
|
+
| Time-Based_Workflow_Event_Type | - |
|
|
1646
|
+
| TimeSheet | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1647
|
+
| TimeSheetEntry | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1648
|
+
| TimeSlot | usage, associated_objects, wsdl_segment, field_reference |
|
|
1649
|
+
| TimeSlotHistory | special_access_rules, wsdl_segment, field_reference |
|
|
1650
|
+
| TodayGoal | usage, associated_objects, wsdl_segment, field_reference |
|
|
1651
|
+
| TopInsight | - |
|
|
1652
|
+
| Topic | usage, associated_objects, wsdl_segment, field_reference |
|
|
1653
|
+
| TopicAssignment | usage, wsdl_segment, field_reference |
|
|
1654
|
+
| TopicLocalization | special_access_rules, field_reference |
|
|
1655
|
+
| TopicUserEvent | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1656
|
+
| TransactionSecurityEventLog | special_access_rules |
|
|
1657
|
+
| TransactionSecurityPolicy | wsdl_segment, field_reference |
|
|
1658
|
+
| Transaction_Security_Event_Type | - |
|
|
1659
|
+
| Translation | special_access_rules, wsdl_segment, field_reference |
|
|
1660
|
+
| TravelMode | associated_objects, wsdl_segment, field_reference |
|
|
1661
|
+
| TwoFactorInfo | special_access_rules |
|
|
1662
|
+
| TwoFactorMethodsInfo | special_access_rules, usage |
|
|
1663
|
+
| TwoFactorTempCode | special_access_rules |
|
|
1664
|
+
| UI_Telemetry_Navigation_Timing_Event_Type | - |
|
|
1665
|
+
| UI_Telemetry_Resource_Timing_Event | - |
|
|
1666
|
+
| URI_Event_Type | - |
|
|
1667
|
+
| UiAgentInteractionEventLog | special_access_rules |
|
|
1668
|
+
| UiFormulaCriterion | wsdl_segment, field_reference |
|
|
1669
|
+
| UiFormulaRule | wsdl_segment, field_reference |
|
|
1670
|
+
| UiTelemetryNavTmEventLog | special_access_rules |
|
|
1671
|
+
| UiTelemetryRsrcTmEventLog | special_access_rules |
|
|
1672
|
+
| UndecidedEventRelation | usage, wsdl_segment, field_reference |
|
|
1673
|
+
| UnifiedActivity | field_reference |
|
|
1674
|
+
| UnifiedActivityInsight | field_reference |
|
|
1675
|
+
| UnifiedActivityParticipant | field_reference |
|
|
1676
|
+
| UnifiedActivityRelation | field_reference |
|
|
1677
|
+
| UnifiedActvtyInsightKeyword | field_reference |
|
|
1678
|
+
| UnifiedEmail | special_access_rules |
|
|
1679
|
+
| UnifiedEmailParticipant | special_access_rules |
|
|
1680
|
+
| UnifiedMeeting | special_access_rules |
|
|
1681
|
+
| UnifiedMeetingParticipant | special_access_rules |
|
|
1682
|
+
| UnifiedTask | special_access_rules |
|
|
1683
|
+
| UnifiedTaskParticipant | special_access_rules |
|
|
1684
|
+
| UnifiedVideoCall | field_reference |
|
|
1685
|
+
| UnifiedVideoCallParticipant | field_reference |
|
|
1686
|
+
| UnifiedVoiceCall | field_reference |
|
|
1687
|
+
| UnifiedVoiceCallParticipant | field_reference |
|
|
1688
|
+
| UniqueQueryEventLog | special_access_rules |
|
|
1689
|
+
| Unique_Query_Event_Type | - |
|
|
1690
|
+
| UnitOfMeasure | wsdl_segment, field_reference |
|
|
1691
|
+
| UriEventLog | special_access_rules |
|
|
1692
|
+
| UsageImpactFactor | special_access_rules, associated_objects, field_reference |
|
|
1693
|
+
| UsageImpactGroup | special_access_rules, associated_objects, field_reference |
|
|
1694
|
+
| UsageImpactGroupFactor | special_access_rules, associated_objects, field_reference |
|
|
1695
|
+
| UsageImpactGroupPgmMeasure | special_access_rules, associated_objects, field_reference |
|
|
1696
|
+
| UsageImpactGroupVersion | special_access_rules, associated_objects, field_reference |
|
|
1697
|
+
| User | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1698
|
+
| UserAccessChange | special_access_rules |
|
|
1699
|
+
| UserAccessPolicy | special_access_rules |
|
|
1700
|
+
| UserAccountTeamMember | special_access_rules, usage |
|
|
1701
|
+
| UserAppInfo | associated_objects, wsdl_segment, field_reference |
|
|
1702
|
+
| UserAppMenuCustomization | usage, associated_objects, wsdl_segment, field_reference |
|
|
1703
|
+
| UserAppMenuItem | usage, wsdl_segment, field_reference |
|
|
1704
|
+
| UserAuthCertificate | special_access_rules |
|
|
1705
|
+
| UserConfigTransferButton | special_access_rules, field_reference |
|
|
1706
|
+
| UserConfigTransferSkill | field_reference |
|
|
1707
|
+
| UserCustomBadge | field_reference |
|
|
1708
|
+
| UserCustomBadgeLocalization | special_access_rules, field_reference |
|
|
1709
|
+
| UserDailyMetric | special_access_rules, associated_objects, field_reference |
|
|
1710
|
+
| UserDailyMetricOwnerSharingRule | special_access_rules, usage |
|
|
1711
|
+
| UserDefinedLabel | associated_objects, wsdl_segment, field_reference |
|
|
1712
|
+
| UserDefinedLabelAssignment | associated_objects, wsdl_segment, field_reference |
|
|
1713
|
+
| UserDevice | special_access_rules |
|
|
1714
|
+
| UserDeviceApplication | special_access_rules |
|
|
1715
|
+
| UserDeviceHistory | - |
|
|
1716
|
+
| UserEmailCalendarSync | special_access_rules, usage, field_reference |
|
|
1717
|
+
| UserEmailPreferredPerson | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1718
|
+
| UserEmailPreferredPersonShare | wsdl_segment, field_reference |
|
|
1719
|
+
| UserLicense | usage, wsdl_segment, field_reference |
|
|
1720
|
+
| UserListView | wsdl_segment, field_reference |
|
|
1721
|
+
| UserListViewCriterion | wsdl_segment, field_reference |
|
|
1722
|
+
| UserLocationAssignment | field_reference |
|
|
1723
|
+
| UserLogin | usage, wsdl_segment, field_reference |
|
|
1724
|
+
| UserMembershipSharingRule | special_access_rules, usage |
|
|
1725
|
+
| UserMonthlyMetric | special_access_rules, associated_objects, field_reference |
|
|
1726
|
+
| UserMonthlyMetricOwnerSharingRule | special_access_rules, usage |
|
|
1727
|
+
| UserPackageLicense | usage, wsdl_segment, field_reference |
|
|
1728
|
+
| UserPermissionAccess | usage, wsdl_segment, field_reference |
|
|
1729
|
+
| UserPreference | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1730
|
+
| UserPrioritizedRecord | special_access_rules, associated_objects, field_reference |
|
|
1731
|
+
| UserProfile | special_access_rules, usage, associated_objects |
|
|
1732
|
+
| UserProvAccount | wsdl_segment, field_reference |
|
|
1733
|
+
| UserProvAccountStaging | usage, wsdl_segment, field_reference |
|
|
1734
|
+
| UserProvMockTarget | wsdl_segment, field_reference |
|
|
1735
|
+
| UserProvisioningConfig | wsdl_segment, field_reference |
|
|
1736
|
+
| UserProvisioningLog | wsdl_segment, field_reference |
|
|
1737
|
+
| UserProvisioningRequest | usage, associated_objects, wsdl_segment, field_reference |
|
|
1738
|
+
| UserRecordAccess | usage, wsdl_segment, field_reference |
|
|
1739
|
+
| UserRelatedRecordContent | - |
|
|
1740
|
+
| UserRole | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1741
|
+
| UserServicePresence | special_access_rules, usage, associated_objects, field_reference |
|
|
1742
|
+
| UserSetupEntityAccess | usage, wsdl_segment, field_reference |
|
|
1743
|
+
| UserShare | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1744
|
+
| UserSharedFeature | wsdl_segment |
|
|
1745
|
+
| UserTeamMember | usage, field_reference |
|
|
1746
|
+
| UserTerritory | usage |
|
|
1747
|
+
| UserTerritory2AssocLog | special_access_rules |
|
|
1748
|
+
| UserTerritory2Association | special_access_rules, field_reference |
|
|
1749
|
+
| UserUIPreference | field_reference |
|
|
1750
|
+
| UserWorkList | field_reference |
|
|
1751
|
+
| UserWorkListItem | field_reference |
|
|
1752
|
+
| VendorCallCenterStatusMap | special_access_rules, field_reference |
|
|
1753
|
+
| VerificationHistory | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1754
|
+
| VideoCall | associated_objects, field_reference |
|
|
1755
|
+
| VideoCallInsight | special_access_rules |
|
|
1756
|
+
| VideoCallInsightAction | special_access_rules |
|
|
1757
|
+
| VideoCallInsightReason | special_access_rules |
|
|
1758
|
+
| VideoCallParticipant | associated_objects, field_reference |
|
|
1759
|
+
| VideoCallRecording | associated_objects, field_reference |
|
|
1760
|
+
| VideoCallRecordingStructure | special_access_rules |
|
|
1761
|
+
| VideoCallTranscript | - |
|
|
1762
|
+
| VisualforceAccessMetrics | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1763
|
+
| VisualforceRequestEventLog | special_access_rules |
|
|
1764
|
+
| Visualforce_Request_Event_Type | - |
|
|
1765
|
+
| VoiceCall | special_access_rules, associated_objects, field_reference |
|
|
1766
|
+
| VoiceCallInsight | special_access_rules |
|
|
1767
|
+
| VoiceCallInsightAction | special_access_rules |
|
|
1768
|
+
| VoiceCallInsightReason | special_access_rules |
|
|
1769
|
+
| VoiceCallList | special_access_rules, associated_objects |
|
|
1770
|
+
| VoiceCallListItem | special_access_rules |
|
|
1771
|
+
| VoiceCallMetrics | field_reference |
|
|
1772
|
+
| VoiceCallQualityFeedback | associated_objects, field_reference |
|
|
1773
|
+
| VoiceCallRecording | special_access_rules, associated_objects, field_reference |
|
|
1774
|
+
| VoiceCallRecordingStructure | special_access_rules |
|
|
1775
|
+
| VoiceCoaching | special_access_rules, associated_objects, field_reference |
|
|
1776
|
+
| VoiceLocalPresenceNumber | special_access_rules, field_reference |
|
|
1777
|
+
| VoiceMailContent | special_access_rules, associated_objects, field_reference |
|
|
1778
|
+
| VoiceMailGreeting | special_access_rules, associated_objects, field_reference |
|
|
1779
|
+
| VoiceMailGreeting2 | associated_objects |
|
|
1780
|
+
| VoiceMailGreeting2Rep | associated_objects |
|
|
1781
|
+
| VoiceMailMessage | special_access_rules, associated_objects, field_reference |
|
|
1782
|
+
| VoiceOrgSetting | field_reference |
|
|
1783
|
+
| VoiceUserLine | special_access_rules, associated_objects, field_reference |
|
|
1784
|
+
| VoiceUserPreferences | special_access_rules, associated_objects, field_reference |
|
|
1785
|
+
| VoiceVendorInfo | special_access_rules, field_reference |
|
|
1786
|
+
| VoiceVendorLine | special_access_rules, associated_objects, field_reference |
|
|
1787
|
+
| Vote | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1788
|
+
| WarrantyTerm | associated_objects, wsdl_segment, field_reference |
|
|
1789
|
+
| WaveAutoInstallRequest | special_access_rules, usage, associated_objects, field_reference |
|
|
1790
|
+
| Wave_Change_Event_Type | - |
|
|
1791
|
+
| Wave_Download_Event_Type | - |
|
|
1792
|
+
| Wave_Interaction_Event_Type | - |
|
|
1793
|
+
| Wave_Performance_Event_Type | - |
|
|
1794
|
+
| WebCart | special_access_rules, associated_objects, field_reference |
|
|
1795
|
+
| WebCartAdjustmentBasis | special_access_rules, associated_objects, field_reference |
|
|
1796
|
+
| WebCartAdjustmentGroup | special_access_rules, associated_objects, field_reference |
|
|
1797
|
+
| WebCartHistory | special_access_rules, field_reference |
|
|
1798
|
+
| WebLink | usage, wsdl_segment, field_reference |
|
|
1799
|
+
| WebLinkLocalization | usage, field_reference |
|
|
1800
|
+
| WebStore | special_access_rules, associated_objects, field_reference |
|
|
1801
|
+
| WebStoreCatalog | special_access_rules, associated_objects, field_reference |
|
|
1802
|
+
| WebStoreInventorySource | field_reference |
|
|
1803
|
+
| WebStoreMessageContent | special_access_rules |
|
|
1804
|
+
| WebStoreNetwork | special_access_rules, usage, field_reference |
|
|
1805
|
+
| WebStorePricebook | special_access_rules, usage, associated_objects, field_reference |
|
|
1806
|
+
| WebStoreSearchProdSettings | special_access_rules, associated_objects, field_reference |
|
|
1807
|
+
| WebStoreShare | special_access_rules, field_reference |
|
|
1808
|
+
| WebstoreBuyerGroup | usage, associated_objects |
|
|
1809
|
+
| Wishlist | special_access_rules, associated_objects, field_reference |
|
|
1810
|
+
| WishlistItem | special_access_rules, field_reference |
|
|
1811
|
+
| WorkAccess | associated_objects, wsdl_segment, field_reference |
|
|
1812
|
+
| WorkAccessShare | wsdl_segment, field_reference |
|
|
1813
|
+
| WorkBadge | associated_objects, wsdl_segment, field_reference |
|
|
1814
|
+
| WorkBadgeDefinition | associated_objects, wsdl_segment, field_reference |
|
|
1815
|
+
| WorkCapacityAvailability | associated_objects, wsdl_segment, field_reference |
|
|
1816
|
+
| WorkCapacityLimit | associated_objects, wsdl_segment, field_reference |
|
|
1817
|
+
| WorkCapacityUsage | associated_objects, wsdl_segment, field_reference |
|
|
1818
|
+
| WorkCoaching | associated_objects |
|
|
1819
|
+
| WorkDemographic | special_access_rules |
|
|
1820
|
+
| WorkFeedback | associated_objects |
|
|
1821
|
+
| WorkFeedbackQuestion | associated_objects |
|
|
1822
|
+
| WorkFeedbackQuestionSet | associated_objects |
|
|
1823
|
+
| WorkFeedbackRequest | associated_objects |
|
|
1824
|
+
| WorkGoal | associated_objects |
|
|
1825
|
+
| WorkGoalCollaborator | associated_objects |
|
|
1826
|
+
| WorkGoalCollaboratorHistory | - |
|
|
1827
|
+
| WorkGoalHistory | - |
|
|
1828
|
+
| WorkGoalLink | - |
|
|
1829
|
+
| WorkGoalShare | - |
|
|
1830
|
+
| WorkItem | usage |
|
|
1831
|
+
| WorkItemComponent | - |
|
|
1832
|
+
| WorkItemEvent | wsdl_segment |
|
|
1833
|
+
| WorkOrder | associated_objects, wsdl_segment, field_reference |
|
|
1834
|
+
| WorkOrderHistory | special_access_rules, wsdl_segment, field_reference |
|
|
1835
|
+
| WorkOrderLineItem | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1836
|
+
| WorkOrderLineItemHistory | special_access_rules, wsdl_segment, field_reference |
|
|
1837
|
+
| WorkOrderLineItemStatus | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1838
|
+
| WorkOrderShare | special_access_rules, wsdl_segment, field_reference |
|
|
1839
|
+
| WorkOrderStatus | special_access_rules, usage, wsdl_segment, field_reference |
|
|
1840
|
+
| WorkPerformanceCycle | associated_objects |
|
|
1841
|
+
| WorkPlan | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1842
|
+
| WorkPlanSelectionRule | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1843
|
+
| WorkPlanTemplate | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1844
|
+
| WorkPlanTemplateEntry | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1845
|
+
| WorkReward | special_access_rules, associated_objects |
|
|
1846
|
+
| WorkRewardFund | special_access_rules, associated_objects |
|
|
1847
|
+
| WorkRewardFundType | associated_objects |
|
|
1848
|
+
| WorkStep | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1849
|
+
| WorkStepStatus | special_access_rules, wsdl_segment, field_reference |
|
|
1850
|
+
| WorkStepTemplate | special_access_rules, associated_objects, wsdl_segment, field_reference |
|
|
1851
|
+
| WorkThanks | associated_objects, wsdl_segment, field_reference |
|
|
1852
|
+
| WorkType | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
|
|
1853
|
+
| WorkTypeGroup | associated_objects, wsdl_segment, field_reference |
|
|
1854
|
+
| WorkTypeGroupMember | associated_objects, wsdl_segment, field_reference |
|
|
1855
|
+
| WorkforceCapacity | special_access_rules, associated_objects |
|
|
1856
|
+
| WorkforceCapacityUnit | special_access_rules |
|
|
1857
|
+
| Workload | special_access_rules, associated_objects |
|
|
1858
|
+
| WorkloadUnit | special_access_rules |
|
|
1859
|
+
| feedSignal | wsdl_segment |
|
|
1860
|
+
|
|
1861
|
+
## Tooling API — Common Sections
|
|
1862
|
+
|
|
1863
|
+
These sections appear in most Tooling records:
|
|
1864
|
+
|
|
1865
|
+
- title
|
|
1866
|
+
- description
|
|
1867
|
+
- fields
|
|
1868
|
+
- supported_soap_calls
|
|
1869
|
+
- supported_rest_api_http_methods
|
|
1870
|
+
- wsdl_segment
|
|
1871
|
+
|
|
1872
|
+
**Note**: the table below shows only *additional* sections beyond these.
|
|
1873
|
+
|
|
1874
|
+
## Tooling API — Quick Reference
|
|
1875
|
+
|
|
1876
|
+
| Object | Additional Sections |
|
|
1877
|
+
|--------|---------------------|
|
|
1878
|
+
| AIApplication | - |
|
|
1879
|
+
| AIApplicationConfig | - |
|
|
1880
|
+
| AccountPlanObjMeasCalcCond | - |
|
|
1881
|
+
| AccountPlanObjMeasCalcDef | special_access_rules |
|
|
1882
|
+
| ActivationPlatform | - |
|
|
1883
|
+
| AdvAccountForecastSet | - |
|
|
1884
|
+
| AdvAcctForecastMeasureDef | - |
|
|
1885
|
+
| AdvAcctFrcstDisplayGroup | - |
|
|
1886
|
+
| AnimationRule | - |
|
|
1887
|
+
| ApexClass | - |
|
|
1888
|
+
| ApexClassMember | special_access_rules |
|
|
1889
|
+
| ApexCodeCoverage | special_access_rules |
|
|
1890
|
+
| ApexCodeCoverageAggregate | special_access_rules |
|
|
1891
|
+
| ApexComponent | - |
|
|
1892
|
+
| ApexComponentMember | special_access_rules |
|
|
1893
|
+
| ApexEmailNotification | - |
|
|
1894
|
+
| ApexExecutionOverlayAction | - |
|
|
1895
|
+
| ApexExecutionOverlayResult | - |
|
|
1896
|
+
| ApexLog | - |
|
|
1897
|
+
| ApexOrgWideCoverage | special_access_rules |
|
|
1898
|
+
| ApexPage | - |
|
|
1899
|
+
| ApexPageInfo | special_access_rules |
|
|
1900
|
+
| ApexPageMember | special_access_rules |
|
|
1901
|
+
| ApexResult | - |
|
|
1902
|
+
| ApexTestQueueItem | - |
|
|
1903
|
+
| ApexTestResult | - |
|
|
1904
|
+
| ApexTestResultLimits | - |
|
|
1905
|
+
| ApexTestRunResult | - |
|
|
1906
|
+
| ApexTestSuite | - |
|
|
1907
|
+
| ApexTrigger | - |
|
|
1908
|
+
| ApexTriggerMember | special_access_rules |
|
|
1909
|
+
| AssignmentRule | - |
|
|
1910
|
+
| AuraDefinition | - |
|
|
1911
|
+
| AuraDefinitionBundle | - |
|
|
1912
|
+
| AuthorizedEmailDomain | - |
|
|
1913
|
+
| AutoResponseRule | - |
|
|
1914
|
+
| BrandingSet | - |
|
|
1915
|
+
| BrandingSetProperty | - |
|
|
1916
|
+
| BriefcaseDefinition | special_access_rules |
|
|
1917
|
+
| BusProcessFeedbackConfig | - |
|
|
1918
|
+
| BusinessProcess | - |
|
|
1919
|
+
| BusinessProcessDefinition | - |
|
|
1920
|
+
| BusinessProcessFeedback | - |
|
|
1921
|
+
| BusinessProcessGroup | - |
|
|
1922
|
+
| Certificate | - |
|
|
1923
|
+
| CleanDataService | - |
|
|
1924
|
+
| CleanRule | - |
|
|
1925
|
+
| ColorDefinition | - |
|
|
1926
|
+
| CommunityWorkspacesNode | - |
|
|
1927
|
+
| CompactLayout | - |
|
|
1928
|
+
| CompactLayoutInfo | - |
|
|
1929
|
+
| CompactLayoutItemInfo | - |
|
|
1930
|
+
| ConnectedApplication | - |
|
|
1931
|
+
| ContactCenterChannel | special_access_rules |
|
|
1932
|
+
| ContainerAsyncRequest | special_access_rules |
|
|
1933
|
+
| ConversationChannelDefinition | - |
|
|
1934
|
+
| ConversationVendorInfo | special_access_rules |
|
|
1935
|
+
| CspTrustedSite | - |
|
|
1936
|
+
| CustomApplication | - |
|
|
1937
|
+
| CustomField | - |
|
|
1938
|
+
| CustomFieldDisplay | special_access_rules |
|
|
1939
|
+
| CustomFieldMember | special_access_rules |
|
|
1940
|
+
| CustomHelpMenuSection | - |
|
|
1941
|
+
| CustomHttpHeader | - |
|
|
1942
|
+
| CustomMsgChannel | - |
|
|
1943
|
+
| CustomNotifActionDef | - |
|
|
1944
|
+
| CustomNotificationActionGroup | - |
|
|
1945
|
+
| CustomNotificationType | - |
|
|
1946
|
+
| CustomObject | - |
|
|
1947
|
+
| CustomTab | - |
|
|
1948
|
+
| DataAssessmentConfigItem | - |
|
|
1949
|
+
| DataIntegrationRecordPurchasePermission | special_access_rules |
|
|
1950
|
+
| DataSourceBundleDefinition | special_access_rules |
|
|
1951
|
+
| DataStreamTemplate | special_access_rules |
|
|
1952
|
+
| DataType | special_access_rules |
|
|
1953
|
+
| DebugLevel | - |
|
|
1954
|
+
| DelegateGroup | - |
|
|
1955
|
+
| DelegateGroupGrant | - |
|
|
1956
|
+
| DelegateGroupMember | - |
|
|
1957
|
+
| DeployDetails | - |
|
|
1958
|
+
| DeployRequest | special_access_rules |
|
|
1959
|
+
| Document | - |
|
|
1960
|
+
| DomainProvision | special_access_rules |
|
|
1961
|
+
| DuplicateJobDefinition | - |
|
|
1962
|
+
| DuplicateJobMatchingRuleDefinition | - |
|
|
1963
|
+
| EmailTemplate | - |
|
|
1964
|
+
| EmbeddedServiceBranding | - |
|
|
1965
|
+
| EmbeddedServiceConfig | - |
|
|
1966
|
+
| EmbeddedServiceCustomComponent | special_access_rules |
|
|
1967
|
+
| EmbeddedServiceCustomLabel | - |
|
|
1968
|
+
| EmbeddedServiceCustomization | - |
|
|
1969
|
+
| EmbeddedServiceFieldService | - |
|
|
1970
|
+
| EmbeddedServiceFlow | special_access_rules |
|
|
1971
|
+
| EmbeddedServiceFlowConfig | special_access_rules |
|
|
1972
|
+
| EmbeddedServiceLiveAgent | special_access_rules |
|
|
1973
|
+
| EmbeddedServiceMenuItem | special_access_rules |
|
|
1974
|
+
| EmbeddedServiceMenuSettings | special_access_rules |
|
|
1975
|
+
| EmbeddedServiceQuickAction | - |
|
|
1976
|
+
| EmbeddedServiceResource | - |
|
|
1977
|
+
| EngagementInsightType | - |
|
|
1978
|
+
| EnrichedField | special_access_rules |
|
|
1979
|
+
| EntityDefinition | recordtypessupported_metadata, recordtypeinfo_metadata |
|
|
1980
|
+
| EntityLimit | - |
|
|
1981
|
+
| EntityParticle | relationshipreferenceto_type |
|
|
1982
|
+
| EventDelivery | - |
|
|
1983
|
+
| EventRelayConfig | special_access_rules |
|
|
1984
|
+
| EventSubscription | - |
|
|
1985
|
+
| ExtConvParticipantIntegDef | - |
|
|
1986
|
+
| ExternalAuthIdentityProvider | sub_types, special_access_rules |
|
|
1987
|
+
| ExternalClientAppSettings | - |
|
|
1988
|
+
| ExternalCredential | sub_types |
|
|
1989
|
+
| ExternalDataSource | - |
|
|
1990
|
+
| ExternalDataSrcDescriptor | - |
|
|
1991
|
+
| ExternalServiceRegistration | - |
|
|
1992
|
+
| ExternalString | - |
|
|
1993
|
+
| ExternalStringLocalization | special_access_rules |
|
|
1994
|
+
| FieldDefinition | customfield_metadata, picklist_metadata, picklistvalue_metadata, relationshipreferenceto_type |
|
|
1995
|
+
| FieldMapping | - |
|
|
1996
|
+
| FieldMappingField | - |
|
|
1997
|
+
| FieldMappingRow | - |
|
|
1998
|
+
| FieldRestrictionRule | special_access_rules |
|
|
1999
|
+
| FieldSet | - |
|
|
2000
|
+
| FlexiPage | - |
|
|
2001
|
+
| Flow | - |
|
|
2002
|
+
| FlowDefinition | - |
|
|
2003
|
+
| FlowElementTestCoverage | - |
|
|
2004
|
+
| FlowTest | - |
|
|
2005
|
+
| FlowTestCoverage | - |
|
|
2006
|
+
| FlowTestResult | - |
|
|
2007
|
+
| ForecastingDisplayedFamily | - |
|
|
2008
|
+
| ForecastingFilter | - |
|
|
2009
|
+
| ForecastingFilterCondition | - |
|
|
2010
|
+
| ForecastingSourceDefinition | - |
|
|
2011
|
+
| ForecastingType | - |
|
|
2012
|
+
| ForecastingTypeSource | - |
|
|
2013
|
+
| FormulaFunction | sub_types, special_access_rules |
|
|
2014
|
+
| FormulaFunctionAllowedType | special_access_rules |
|
|
2015
|
+
| FormulaOperator | - |
|
|
2016
|
+
| GenAiFunctionDefinition | - |
|
|
2017
|
+
| GenAiPlannerDefinition | - |
|
|
2018
|
+
| GlobalValueSet | - |
|
|
2019
|
+
| Group | special_access_rules |
|
|
2020
|
+
| GtwyProvPaymentMethodType | special_access_rules |
|
|
2021
|
+
| HeapDump | - |
|
|
2022
|
+
| HistoryRetentionJob | - |
|
|
2023
|
+
| HomePageComponent | - |
|
|
2024
|
+
| HomePageLayout | - |
|
|
2025
|
+
| IPAddressRange | - |
|
|
2026
|
+
| IconDefinition | - |
|
|
2027
|
+
| InboundNetworkConnProperty | - |
|
|
2028
|
+
| InboundNetworkConnection | - |
|
|
2029
|
+
| Index | - |
|
|
2030
|
+
| IndexField | - |
|
|
2031
|
+
| InstalledSubscriberPackage | - |
|
|
2032
|
+
| InstalledSubscriberPackageVersion | - |
|
|
2033
|
+
| InvocableActionExtension | - |
|
|
2034
|
+
| KeywordList | - |
|
|
2035
|
+
| Layout | - |
|
|
2036
|
+
| LightningComponentBundle | - |
|
|
2037
|
+
| LightningComponentResource | special_access_rules |
|
|
2038
|
+
| LightningOutApp | - |
|
|
2039
|
+
| LookupFilter | - |
|
|
2040
|
+
| MLDataDefinition | - |
|
|
2041
|
+
| MLField | - |
|
|
2042
|
+
| MLFilter | - |
|
|
2043
|
+
| MLPredictionDefinition | - |
|
|
2044
|
+
| ManagedContentNodeType | - |
|
|
2045
|
+
| ManagedContentType | - |
|
|
2046
|
+
| ManagedEventSubscription | special_access_rules |
|
|
2047
|
+
| MarketingAppExtAction | special_access_rules |
|
|
2048
|
+
| MarketingAppExtActivity | special_access_rules |
|
|
2049
|
+
| MarketingAppExtAssignment | special_access_rules |
|
|
2050
|
+
| MarketingAppExtension | special_access_rules |
|
|
2051
|
+
| MatchingRule | - |
|
|
2052
|
+
| MenuItem | - |
|
|
2053
|
+
| MetadataComponentDependency | limitations |
|
|
2054
|
+
| MetadataContainer | special_access_rules |
|
|
2055
|
+
| MetadataPackage | - |
|
|
2056
|
+
| MetadataPackageVersion | - |
|
|
2057
|
+
| MetadataWarningsHeader | field |
|
|
2058
|
+
| ModerationRule | - |
|
|
2059
|
+
| NamedCredential | sub_types |
|
|
2060
|
+
| ObjectHierarchyRelationship | - |
|
|
2061
|
+
| OmniSupervisorConfig | special_access_rules |
|
|
2062
|
+
| OperationLog | changeownpassword, sub_types, special_access_rules |
|
|
2063
|
+
| OpportunitySplitType | - |
|
|
2064
|
+
| OrgDomainLog | - |
|
|
2065
|
+
| OutboundNetworkConnProperty | - |
|
|
2066
|
+
| OutboundNetworkConnection | - |
|
|
2067
|
+
| OwnerChangeOptionInfo | special_access_rules |
|
|
2068
|
+
| Package2 | - |
|
|
2069
|
+
| Package2Member | - |
|
|
2070
|
+
| Package2Version | - |
|
|
2071
|
+
| Package2VersionCreateRequest | - |
|
|
2072
|
+
| Package2VersionCreateRequestError | - |
|
|
2073
|
+
| PackageInstallRequest | sub_types |
|
|
2074
|
+
| PackageUploadRequest | - |
|
|
2075
|
+
| PackageVersionUninstallRequestError | - |
|
|
2076
|
+
| PardotTenant | - |
|
|
2077
|
+
| PathAssistant | - |
|
|
2078
|
+
| PathAssistantStepInfo | - |
|
|
2079
|
+
| PathAssistantStepItem | - |
|
|
2080
|
+
| PaymentGatewayProvider | - |
|
|
2081
|
+
| PermissionDependency | special_access_rules |
|
|
2082
|
+
| PermissionSet | special_access_rules |
|
|
2083
|
+
| PermissionSetAssignment | special_access_rules |
|
|
2084
|
+
| PermissionSetGroup | special_access_rules |
|
|
2085
|
+
| PermissionSetGroupComponent | special_access_rules |
|
|
2086
|
+
| PermissionSetTabSetting | special_access_rules |
|
|
2087
|
+
| PipelineInspMetricConfig | - |
|
|
2088
|
+
| PlatformEventChannel | special_access_rules |
|
|
2089
|
+
| PlatformEventChannelMember | special_access_rules |
|
|
2090
|
+
| PlatformEventMigration | - |
|
|
2091
|
+
| PlatformEventSubscriberConfig | - |
|
|
2092
|
+
| PostTemplate | - |
|
|
2093
|
+
| PresenceDeclineReason | special_access_rules |
|
|
2094
|
+
| PresenceUserConfig | special_access_rules |
|
|
2095
|
+
| ProcessFlowMigration | - |
|
|
2096
|
+
| ProductAttributeSet | - |
|
|
2097
|
+
| Profile | special_access_rules |
|
|
2098
|
+
| ProfileLayout | special_access_rules |
|
|
2099
|
+
| Publisher | special_access_rules |
|
|
2100
|
+
| QueryResult | querylocator_metadata |
|
|
2101
|
+
| QueueRoutingConfig | special_access_rules |
|
|
2102
|
+
| QuickActionDefinition | - |
|
|
2103
|
+
| QuickActionList | - |
|
|
2104
|
+
| QuickActionListItem | - |
|
|
2105
|
+
| RecentlyViewed | - |
|
|
2106
|
+
| RecommendationStrategy | - |
|
|
2107
|
+
| RecordActionDeployment | - |
|
|
2108
|
+
| RecordType | - |
|
|
2109
|
+
| RegisteredExternalService | special_access_rules |
|
|
2110
|
+
| RelatedListColumnDefinition | special_access_rules |
|
|
2111
|
+
| RelatedListDefinition | special_access_rules |
|
|
2112
|
+
| RelationshipDomain | - |
|
|
2113
|
+
| RelationshipInfo | - |
|
|
2114
|
+
| ReleaseUpdate | - |
|
|
2115
|
+
| ReleaseUpdateStep | special_access_rules |
|
|
2116
|
+
| RemoteProxy | - |
|
|
2117
|
+
| RestrictionRule | special_access_rules |
|
|
2118
|
+
| SOQLResult | - |
|
|
2119
|
+
| SandboxInfo | - |
|
|
2120
|
+
| SandboxProcess | - |
|
|
2121
|
+
| SandboxProcessStage | - |
|
|
2122
|
+
| SchedulingObjective | special_access_rules |
|
|
2123
|
+
| SchedulingRule | special_access_rules |
|
|
2124
|
+
| Scontrol | special_access_rules |
|
|
2125
|
+
| SearchLayout | - |
|
|
2126
|
+
| SecurityHealthCheck | - |
|
|
2127
|
+
| SecurityHealthCheckRisks | - |
|
|
2128
|
+
| ServiceChannel | special_access_rules |
|
|
2129
|
+
| ServicePresenceStatus | special_access_rules |
|
|
2130
|
+
| ShiftSegmentType | special_access_rules |
|
|
2131
|
+
| SiteDetail | - |
|
|
2132
|
+
| Skill | - |
|
|
2133
|
+
| StandardAction | - |
|
|
2134
|
+
| StaticResource | - |
|
|
2135
|
+
| SubscriberPackage | - |
|
|
2136
|
+
| SubscriberPackageVersion | sub_types |
|
|
2137
|
+
| SubscriberPackageVersionUninstallRequest | - |
|
|
2138
|
+
| SvcCatalogCategory | - |
|
|
2139
|
+
| SvcCatalogCategoryItem | - |
|
|
2140
|
+
| SvcCatalogFulfillFlowItem | - |
|
|
2141
|
+
| SvcCatalogFulfillmentFlow | - |
|
|
2142
|
+
| SvcCatalogItemDef | - |
|
|
2143
|
+
| SymbolTable | - |
|
|
2144
|
+
| TabDefinition | - |
|
|
2145
|
+
| Territory2SupportedObject | special_access_rules |
|
|
2146
|
+
| TestSuiteMembership | - |
|
|
2147
|
+
| TimeSheetTemplate | special_access_rules |
|
|
2148
|
+
| TimeSheetTemplateAssignment | special_access_rules |
|
|
2149
|
+
| TraceFlag | - |
|
|
2150
|
+
| TransactionSecurityPolicy | - |
|
|
2151
|
+
| User | - |
|
|
2152
|
+
| UserAccessPolicy | special_access_rules |
|
|
2153
|
+
| UserAccessPolicyAction | special_access_rules |
|
|
2154
|
+
| UserAccessPolicyFilter | special_access_rules |
|
|
2155
|
+
| UserCriteria | - |
|
|
2156
|
+
| UserEntityAccess | - |
|
|
2157
|
+
| UserFieldAccess | - |
|
|
2158
|
+
| ValidationRule | validationrule_metadata |
|
|
2159
|
+
| VirtualVisitConfig | - |
|
|
2160
|
+
| WebLink | - |
|
|
2161
|
+
| WebStoreTemplate | special_access_rules |
|
|
2162
|
+
| WorkSkillRouting | - |
|
|
2163
|
+
| WorkSkillRoutingAttribute | - |
|
|
2164
|
+
| WorkflowAlert | - |
|
|
2165
|
+
| WorkflowFieldUpdate | - |
|
|
2166
|
+
| WorkflowOutboundMessage | - |
|
|
2167
|
+
| WorkflowRule | - |
|
|
2168
|
+
| WorkflowTask | - |
|
|
2169
|
+
|
|
2170
|
+
## Common Objects
|
|
2171
|
+
|
|
2172
|
+
### Enterprise / Data API
|
|
2173
|
+
|
|
2174
|
+
- **Account**: Represents an individual account, which is an organization or person involved with your business (such as customers, competitors, and partners).
|
|
2175
|
+
- **Contact**: Represents a contact, which is a person associated with an account.
|
|
2176
|
+
- **Opportunity**: Represents an opportunity, which is a sale or pending deal.
|
|
2177
|
+
- **Lead**: Represents a prospect or lead.
|
|
2178
|
+
- **Case**: Represents a case, which is a customer issue or problem.
|
|
2179
|
+
- **User**: Represents a user in your organization.
|
|
2180
|
+
- **Task**: Represents a business activity such as making a phone call or other to-do items.
|
|
2181
|
+
- **Event**: Represents an event in the calendar.
|
|
2182
|
+
|
|
2183
|
+
### Tooling API
|
|
2184
|
+
|
|
2185
|
+
- **ApexClass**: Represents the saved copy of an Apex class.
|
|
2186
|
+
- **ApexTrigger**: Represents the saved copy of an Apex trigger.
|
|
2187
|
+
- **ApexCodeCoverageAggregate**: Represents aggregate code coverage test results for an Apex class or trigger.
|
|
2188
|
+
- **TraceFlag**: Represents a trace flag that triggers an Apex debug log at the specified logging level.
|
|
2189
|
+
- **EntityDefinition**: Provides row-based access to metadata about standard and custom objects.
|
|
2190
|
+
|
|
2191
|
+
---
|
|
2192
|
+
|
|
2193
|
+
*Index generated: 2026-07-23*
|
|
2194
|
+
*Enterprise sObjects: 1839 · Tooling records: 291 · Total: 2130*
|