@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.
Files changed (2392) hide show
  1. package/package.json +1 -1
  2. package/skills/agentforce-generate/README.md +39 -41
  3. package/skills/agentforce-generate/SKILL.md +274 -144
  4. package/skills/agentforce-generate/assets/agent-spec-template.md +68 -23
  5. package/skills/agentforce-generate/assets/agents/README.md +24 -10
  6. package/skills/agentforce-generate/assets/agents/hello-world.agent +32 -37
  7. package/skills/agentforce-generate/assets/agents/knowledge-grounded.agent +117 -0
  8. package/skills/agentforce-generate/assets/{local-info-agent-annotated.agent → agents/local-info-agent-annotated.agent} +41 -78
  9. package/skills/agentforce-generate/assets/agents/order-service.agent +251 -243
  10. package/skills/agentforce-generate/assets/agents/production-faq.agent +77 -78
  11. package/skills/agentforce-generate/assets/agents/router-first.agent +126 -0
  12. package/skills/agentforce-generate/assets/agents/simple-qa.agent +42 -63
  13. package/skills/agentforce-generate/assets/{template-multi-subagent.agent → agents/template-multi-subagent.agent} +26 -36
  14. package/skills/agentforce-generate/assets/agents/template-single-subagent.agent +66 -0
  15. package/skills/agentforce-generate/assets/agents/verification-gate.agent +250 -247
  16. package/skills/agentforce-generate/assets/agents/voice-knowledge-grounded.agent +165 -0
  17. package/skills/agentforce-generate/assets/agents/voice-service-agent.agent +101 -0
  18. package/skills/agentforce-generate/assets/invocable-apex-template.cls +1 -1
  19. package/skills/agentforce-generate/assets/patterns/README.md +118 -60
  20. package/skills/agentforce-generate/assets/patterns/action-callbacks.agent +95 -165
  21. package/skills/agentforce-generate/assets/patterns/advanced-input-bindings.agent +136 -108
  22. package/skills/agentforce-generate/assets/patterns/bidirectional-routing.agent +115 -117
  23. package/skills/agentforce-generate/assets/patterns/critical-input-collection.agent +157 -155
  24. package/skills/agentforce-generate/assets/patterns/delegation-routing.agent +69 -18
  25. package/skills/agentforce-generate/assets/patterns/lifecycle-events.agent +91 -92
  26. package/skills/agentforce-generate/assets/patterns/llm-controlled-actions.agent +111 -178
  27. package/skills/agentforce-generate/assets/patterns/multi-step-workflow.agent +209 -268
  28. package/skills/agentforce-generate/assets/patterns/open-gate-routing.agent +224 -254
  29. package/skills/agentforce-generate/assets/patterns/procedural-instructions.agent +91 -256
  30. package/skills/agentforce-generate/assets/patterns/prompt-template-action.agent +123 -137
  31. package/skills/agentforce-generate/assets/patterns/system-instruction-overrides.agent +196 -216
  32. package/skills/agentforce-generate/references/action-prompt-templates.md +3 -0
  33. package/skills/agentforce-generate/references/actions-reference.md +113 -35
  34. package/skills/agentforce-generate/references/agent-design-and-spec-creation.md +271 -116
  35. package/skills/agentforce-generate/references/agent-metadata-and-lifecycle.md +16 -16
  36. package/skills/agentforce-generate/references/agent-script-core-language.md +91 -39
  37. package/skills/agentforce-generate/references/agent-subagent-map-diagrams.md +57 -49
  38. package/skills/agentforce-generate/references/agent-user-setup.md +153 -10
  39. package/skills/agentforce-generate/references/agent-validation-and-debugging.md +118 -45
  40. package/skills/agentforce-generate/references/architecture-patterns.md +157 -101
  41. package/skills/agentforce-generate/references/data-library-reference.md +891 -0
  42. package/skills/agentforce-generate/references/deploy-reference.md +32 -10
  43. package/skills/agentforce-generate/references/discover-reference.md +4 -5
  44. package/skills/agentforce-generate/references/examples.md +84 -14
  45. package/skills/agentforce-generate/references/feature-validity.md +2 -2
  46. package/skills/agentforce-generate/references/instruction-resolution.md +227 -154
  47. package/skills/agentforce-generate/references/known-issues.md +16 -6
  48. package/skills/agentforce-generate/references/mcp-management-reference.md +1125 -0
  49. package/skills/agentforce-generate/references/optimization-pattern-1-data-flow.md +119 -0
  50. package/skills/agentforce-generate/references/optimization-pattern-2-deterministic-logic.md +111 -0
  51. package/skills/agentforce-generate/references/optimization-pattern-3-reference-syntax.md +79 -0
  52. package/skills/agentforce-generate/references/optimization-pattern-4-escalation.md +61 -0
  53. package/skills/agentforce-generate/references/org-setup-for-adl.md +551 -0
  54. package/skills/agentforce-generate/references/patterns-by-requirement.md +86 -0
  55. package/skills/agentforce-generate/references/posture-and-determinism.md +134 -0
  56. package/skills/agentforce-generate/references/production-gotchas.md +47 -46
  57. package/skills/agentforce-generate/references/reference-map.md +67 -0
  58. package/skills/agentforce-generate/references/safety-review-reference.md +3 -3
  59. package/skills/agentforce-generate/references/salesforce-cli-for-agents.md +42 -6
  60. package/skills/agentforce-generate/references/scaffold-reference.md +8 -9
  61. package/skills/agentforce-generate/references/scoring-rubric.md +16 -8
  62. package/skills/agentforce-generate/references/version-history.md +1 -0
  63. package/skills/agentforce-generate/references/voice-latency-heuristics.md +194 -0
  64. package/skills/agentforce-generate/references/voice-modality-reference.md +230 -0
  65. package/skills/agentforce-generate/references/zen-of-agentscript.md +291 -0
  66. package/skills/agentforce-generate/scripts/__init__.py +0 -0
  67. package/skills/agentforce-generate/scripts/discover.py +565 -0
  68. package/skills/agentforce-generate/scripts/generators/__init__.py +0 -0
  69. package/skills/agentforce-generate/scripts/generators/apex_stub.py +384 -0
  70. package/skills/agentforce-generate/scripts/generators/apex_test_stub.py +121 -0
  71. package/skills/agentforce-generate/scripts/generators/flow_xml.py +213 -0
  72. package/skills/agentforce-generate/scripts/generators/permission_set_xml.py +35 -0
  73. package/skills/agentforce-generate/scripts/generators/remote_site_xml.py +49 -0
  74. package/skills/agentforce-generate/scripts/org_describe.py +176 -0
  75. package/skills/agentforce-generate/scripts/scaffold.py +429 -0
  76. package/skills/agentforce-observe/SKILL.md +28 -7
  77. package/skills/agentforce-observe/references/improve-reference.md +23 -17
  78. package/skills/agentforce-observe/references/issue-classification.md +3 -3
  79. package/skills/agentforce-observe/references/reproduce-reference.md +4 -3
  80. package/skills/agentforce-observe/references/stdm-queries.md +12 -4
  81. package/skills/agentforce-observe/references/stdm-schema.md +2 -2
  82. package/skills/agentforce-test/SKILL.md +231 -15
  83. package/skills/agentforce-test/assets/payloads/excessive-agency.yaml +110 -0
  84. package/skills/agentforce-test/assets/payloads/misinformation.yaml +129 -0
  85. package/skills/agentforce-test/assets/payloads/output-handling.yaml +96 -0
  86. package/skills/agentforce-test/assets/payloads/prompt-injection.yaml +120 -0
  87. package/skills/agentforce-test/assets/payloads/sensitive-info-disclosure.yaml +130 -0
  88. package/skills/agentforce-test/assets/payloads/system-prompt-leakage.yaml +134 -0
  89. package/skills/agentforce-test/assets/payloads/unbounded-consumption.yaml +103 -0
  90. package/skills/agentforce-test/references/action-execution.md +35 -33
  91. package/skills/agentforce-test/references/batch-testing.md +1 -1
  92. package/skills/agentforce-test/references/owasp-categories.md +179 -0
  93. package/skills/agentforce-test/references/preview-testing.md +6 -5
  94. package/skills/agentforce-test/references/remediation-guide.md +211 -0
  95. package/skills/agentforce-test/references/security-scoring-methodology.md +95 -0
  96. package/skills/agentforce-test/references/security-test-design.md +332 -0
  97. package/skills/agentforce-test/references/security-troubleshooting.md +218 -0
  98. package/skills/agentforce-test/references/test-report-format.md +3 -3
  99. package/skills/agentforce-test/references/troubleshooting.md +13 -3
  100. package/skills/design-systems-slds-apply/SKILL.md +13 -6
  101. package/skills/design-systems-slds-apply/references/component-selection.md +1 -1
  102. package/skills/design-systems-slds-apply/{examples.md → references/examples.md} +1 -1
  103. package/skills/design-systems-slds-apply/references/icons-decision-guide.md +1 -1
  104. package/skills/design-systems-slds-apply/references/overviews/utilities.md +1 -1
  105. package/skills/design-systems-slds-apply/references/slds-development-guide.md +2 -2
  106. package/skills/design-systems-slds-apply/references/styling-decision-guide.md +1 -1
  107. package/skills/dx-org-permission-set-assign/SKILL.md +5 -1
  108. package/skills/experience-lds-data-requirements-generate/SKILL.md +172 -0
  109. package/skills/experience-lds-data-requirements-generate/references/api-name-validation.md +65 -0
  110. package/skills/experience-lds-data-requirements-generate/references/api-recommendation.md +96 -0
  111. package/skills/experience-lds-data-requirements-generate/references/lds-data-consistency.md +112 -0
  112. package/skills/experience-lds-data-requirements-generate/references/lds-expert.md +180 -0
  113. package/skills/experience-lds-data-requirements-generate/references/lds-referential-integrity.md +248 -0
  114. package/skills/experience-lds-data-requirements-generate/references/requirements-analysis.md +49 -0
  115. package/skills/experience-lwr-site-generate/SKILL.md +256 -0
  116. package/skills/experience-lwr-site-generate/references/bootstrap-template-byo-lwr.md +283 -0
  117. package/skills/experience-lwr-site-generate/references/configure-content-brandingSet.md +141 -0
  118. package/skills/experience-lwr-site-generate/references/configure-content-route.md +232 -0
  119. package/skills/experience-lwr-site-generate/references/configure-content-themeLayout.md +145 -0
  120. package/skills/experience-lwr-site-generate/references/configure-content-view.md +233 -0
  121. package/skills/experience-lwr-site-generate/references/configure-guest-sharing-rules.md +49 -0
  122. package/skills/experience-lwr-site-generate/references/handle-component-and-region-ids.md +27 -0
  123. package/skills/experience-lwr-site-generate/references/handle-ui-components.md +216 -0
  124. package/skills/experience-lwr-site-generate/references/update-site-urls.md +100 -0
  125. package/skills/experience-ui-bundle-app-coordinate/SKILL.md +88 -122
  126. package/skills/experience-ui-bundle-app-coordinate/references/phase-completion-validation.md +72 -0
  127. package/skills/experience-ui-bundle-app-coordinate/references/phase-custom-objects.md +34 -0
  128. package/skills/experience-ui-bundle-app-coordinate/references/phase-execution-pattern.md +24 -0
  129. package/skills/experience-ui-bundle-app-coordinate/scripts/check-dangling-refs.sh +42 -0
  130. package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-1-complete.sh +35 -0
  131. package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-4-complete.sh +47 -0
  132. package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-6-ready.sh +33 -0
  133. package/skills/experience-ui-bundle-app-coordinate/scripts/check-prerequisites.sh +20 -0
  134. package/skills/experience-ui-bundle-deploy/SKILL.md +234 -70
  135. package/skills/experience-ui-bundle-deploy/assets/data-delete.apex +36 -0
  136. package/skills/experience-ui-bundle-deploy/assets/data-import.apex +60 -0
  137. package/skills/experience-ui-bundle-deploy/assets/network-selfreg-xml-recipe.md +86 -0
  138. package/skills/experience-ui-bundle-deploy/assets/network-selfreg.apex +41 -0
  139. package/skills/experience-ui-bundle-deploy/assets/org-setup.config.template.json +17 -0
  140. package/skills/experience-ui-bundle-deploy/assets/prepare-import-unique-fields.js +45 -0
  141. package/skills/experience-ui-bundle-deploy/references/config-scaffold.md +74 -0
  142. package/skills/experience-ui-bundle-deploy/references/data-import.md +105 -0
  143. package/skills/experience-ui-bundle-deploy/references/dev-preview.md +48 -0
  144. package/skills/experience-ui-bundle-deploy/references/graphql.md +29 -0
  145. package/skills/experience-ui-bundle-deploy/references/license-checks.md +65 -0
  146. package/skills/experience-ui-bundle-deploy/references/role-assignment.md +41 -0
  147. package/skills/experience-ui-bundle-deploy/references/self-registration.md +86 -0
  148. package/skills/experience-ui-bundle-deploy/scripts/derive-site-name.sh +40 -0
  149. package/skills/experience-ui-bundle-deploy/scripts/find-data-plan.sh +41 -0
  150. package/skills/experience-ui-bundle-deploy/scripts/find-prep-script.sh +35 -0
  151. package/skills/experience-ui-bundle-deploy/scripts/get-source-root.sh +29 -0
  152. package/skills/experience-ui-bundle-frontend-generate/SKILL.md +47 -7
  153. package/skills/experience-ui-bundle-frontend-generate/references/component.md +2 -1
  154. package/skills/experience-ui-bundle-frontend-generate/references/header-footer.md +2 -1
  155. package/skills/experience-ui-bundle-frontend-generate/references/page.md +1 -1
  156. package/skills/experience-ui-bundle-frontend-generate/scripts/check-preconditions.sh +37 -0
  157. package/skills/experience-ui-bundle-frontend-generate/scripts/resolve-ui-bundle.sh +66 -0
  158. package/skills/experience-ui-bundle-frontend-generate/scripts/verify-rules.sh +58 -0
  159. package/skills/experience-ui-bundle-metadata-generate/SKILL.md +21 -13
  160. package/skills/experience-ui-bundle-metadata-generate/scripts/verify-bundle-location.sh +96 -0
  161. package/skills/experience-ui-bundle-mfa-configure/SKILL.md +385 -0
  162. package/skills/experience-ui-bundle-mfa-configure/assets/API_Enabled_For_Community.permissionset-meta.xml +10 -0
  163. package/skills/experience-ui-bundle-mfa-configure/assets/MFA_Required_For_Community.permissionset-meta.xml +10 -0
  164. package/skills/experience-ui-bundle-mfa-configure/references/branding.md +63 -0
  165. package/skills/experience-ui-bundle-mfa-configure/references/setup.md +154 -0
  166. package/skills/experience-ui-bundle-mfa-configure/references/social-login.md +63 -0
  167. package/skills/integration-connectivity-connected-app-configure/SKILL.md +16 -0
  168. package/skills/platform-custom-lightning-type-generate/SKILL.md +4 -2
  169. package/skills/platform-custom-lightning-type-generate/references/widget-rendition.md +1 -1
  170. package/skills/platform-data-and-tooling-api-context-get/SKILL.md +448 -0
  171. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIApplication.json +115 -0
  172. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIApplicationConfig.json +95 -0
  173. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightAction.json +131 -0
  174. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightFeedback.json +139 -0
  175. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightReason.json +204 -0
  176. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightValue.json +184 -0
  177. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIRecordInsight.json +215 -0
  178. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIResearchPromptResult.json +88 -0
  179. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/API_Total_Usage.json +91 -0
  180. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AbnExperiment.json +287 -0
  181. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AbnExperimentCohort.json +163 -0
  182. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AcceptedEventRelation.json +117 -0
  183. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Account.json +1223 -0
  184. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountBrand.json +267 -0
  185. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountCleanInfo.json +1046 -0
  186. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountContactRelation.json +132 -0
  187. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountContactRole.json +118 -0
  188. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountInsight.json +100 -0
  189. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountOwnerSharingRule.json +65 -0
  190. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPartner.json +130 -0
  191. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlan.json +156 -0
  192. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcCond.json +46 -0
  193. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcDef.json +70 -0
  194. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcDefLocalization.json +38 -0
  195. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasRela.json +51 -0
  196. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjective.json +109 -0
  197. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjectiveMeasure.json +103 -0
  198. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountRelationship.json +127 -0
  199. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountRelationshipShareRule.json +154 -0
  200. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountShare.json +127 -0
  201. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTag.json +38 -0
  202. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTeamMember.json +77 -0
  203. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritoryAssignmentRule.json +45 -0
  204. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritoryAssignmentRuleItem.json +43 -0
  205. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritorySharingRule.json +65 -0
  206. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountUserTerritory2View.json +77 -0
  207. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadence.json +234 -0
  208. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceRule.json +143 -0
  209. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceRuleCondition.json +107 -0
  210. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStep.json +625 -0
  211. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStepTracker.json +272 -0
  212. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStepVariant.json +49 -0
  213. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceTracker.json +232 -0
  214. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCdncStpMonthlyMetric.json +668 -0
  215. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionLinkGroupTemplate.json +141 -0
  216. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionLinkTemplate.json +196 -0
  217. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlan.json +206 -0
  218. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanItem.json +151 -0
  219. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplate.json +224 -0
  220. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateItem.json +159 -0
  221. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateItemValue.json +165 -0
  222. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateVersion.json +149 -0
  223. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveFeatureLicenseMetric.json +85 -0
  224. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivePermSetLicenseMetric.json +111 -0
  225. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveProfileMetric.json +94 -0
  226. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveScratchOrg.json +250 -0
  227. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityFieldHistory.json +191 -0
  228. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityHistory.json +396 -0
  229. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityMetric.json +218 -0
  230. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityUsrConnectionStatus.json +161 -0
  231. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AdditionalNumber.json +101 -0
  232. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Address.json +278 -0
  233. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWork.json +539 -0
  234. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWorkConversationalData.json +129 -0
  235. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWorkSkill.json +136 -0
  236. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiGenActionItem.json +126 -0
  237. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiGenActionItemInfo.json +105 -0
  238. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiJobRun.json +162 -0
  239. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiJobRunItem.json +156 -0
  240. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiModelLanguage.json +54 -0
  241. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AllowedEmailDomain.json +23 -0
  242. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AlternativePaymentMethod.json +479 -0
  243. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsAssetAction.json +106 -0
  244. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsChangeEventLog.json +128 -0
  245. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsContainerWidgetDef.json +85 -0
  246. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDashboard.json +204 -0
  247. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDashboardWidget.json +103 -0
  248. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDownloadEventLog.json +103 -0
  249. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsInteractEventLog.json +115 -0
  250. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsLicensedAsset.json +75 -0
  251. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsPerfEventLog.json +103 -0
  252. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVisualization.json +184 -0
  253. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVizField.json +203 -0
  254. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVizViewDef.json +145 -0
  255. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsWorkspace.json +107 -0
  256. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsWorkspaceAsset.json +142 -0
  257. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Announcement.json +112 -0
  258. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexCalloutEventLog.json +118 -0
  259. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexClass.json +139 -0
  260. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexComponent.json +139 -0
  261. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexEmailNotification.json +85 -0
  262. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexExecutionEventLog.json +113 -0
  263. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexExtlCalloutEventLog.json +113 -0
  264. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexInlineEventLog.json +8 -0
  265. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexLog.json +147 -0
  266. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexPage.json +157 -0
  267. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexPageInfo.json +127 -0
  268. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexRestApiEventLog.json +132 -0
  269. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexSoapApiEventLog.json +103 -0
  270. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestQueueItem.json +107 -0
  271. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestResult.json +206 -0
  272. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestResultLimits.json +198 -0
  273. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestRunResult.json +216 -0
  274. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestSuite.json +71 -0
  275. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTrigger.json +221 -0
  276. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTriggerEventLog.json +114 -0
  277. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTypeImplementor.json +121 -0
  278. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexUnexpectedExcpEventLog.json +48 -0
  279. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Callout_Event_Type.json +115 -0
  280. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Execution_Event_Type.json +111 -0
  281. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Inline_Event_Type.json +8 -0
  282. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_REST_API_Event_Type.json +143 -0
  283. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_SOAP_Event_Type.json +103 -0
  284. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Trigger_Event_Type.json +115 -0
  285. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Unexpected_Exception_Event_Type.json +64 -0
  286. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApiTotalUsageEventLog.json +78 -0
  287. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppAnalyticsQueryRequest.json +225 -0
  288. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppDefinition.json +218 -0
  289. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppExtension.json +131 -0
  290. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppMenuItem.json +364 -0
  291. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppTabMember.json +91 -0
  292. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppUsageAssignment.json +91 -0
  293. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApplicationFormTemplate.json +155 -0
  294. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentAssignmentPolicy.json +115 -0
  295. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentScheduleAggr.json +126 -0
  296. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentScheduleLog.json +150 -0
  297. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentSchedulingPolicy.json +218 -0
  298. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentTopicTimeSlot.json +139 -0
  299. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Approval.json +53 -0
  300. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalAlertContentDef.json +47 -0
  301. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalSubmission.json +208 -0
  302. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalSubmissionDetail.json +174 -0
  303. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItem.json +259 -0
  304. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItemCondition.json +163 -0
  305. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItemCriteria.json +118 -0
  306. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleAggrDurDnscale.json +137 -0
  307. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleAggrPolicy.json +194 -0
  308. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleConfig.json +213 -0
  309. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePolicy.json +216 -0
  310. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePolicySvcTerr.json +119 -0
  311. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePropagatePolicy.json +151 -0
  312. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleRestrictPolicy.json +131 -0
  313. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleSortPolicy.json +142 -0
  314. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ArchiveActivity.json +98 -0
  315. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ArchivePolicyDefinition.json +78 -0
  316. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Article_Type__DataCategorySelection.json +35 -0
  317. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Asset.json +769 -0
  318. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetAction.json +394 -0
  319. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetActionSource.json +443 -0
  320. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetAttribute.json +125 -0
  321. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetContractRelationship.json +139 -0
  322. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetDowntimePeriod.json +147 -0
  323. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetOwnerSharingRule.json +50 -0
  324. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRateAdjustment.json +133 -0
  325. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRateCardEntry.json +189 -0
  326. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRelationship.json +222 -0
  327. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetShare.json +102 -0
  328. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetStatePeriod.json +274 -0
  329. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetStatePeriodAttribute.json +120 -0
  330. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetTag.json +38 -0
  331. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetTokenEvent.json +91 -0
  332. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetWarranty.json +241 -0
  333. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssignedResource.json +189 -0
  334. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssignmentRule.json +84 -0
  335. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssociatedLocation.json +151 -0
  336. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncApexJob.json +183 -0
  337. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOpSyndicationFeedFile.json +77 -0
  338. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOperationLog.json +193 -0
  339. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOperationTracker.json +260 -0
  340. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncReportRunEventLog.json +152 -0
  341. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Asynchronous_Report_Run_Event_Type.json +143 -0
  342. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachedContentDocument.json +177 -0
  343. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachedContentNote.json +136 -0
  344. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Attachment.json +170 -0
  345. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachmentEventLog.json +58 -0
  346. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModel.json +141 -0
  347. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModelStage.json +61 -0
  348. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModelStageMetric.json +53 -0
  349. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributeDefinition.json +231 -0
  350. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributePicklist.json +159 -0
  351. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributePicklistValue.json +184 -0
  352. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Audience.json +125 -0
  353. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinition.json +107 -0
  354. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionBundle.json +122 -0
  355. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionBundleInfo.json +51 -0
  356. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionInfo.json +67 -0
  357. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraRequestEventLog.json +92 -0
  358. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Aura_Request_Event_Type.json +99 -0
  359. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthConfig.json +164 -0
  360. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthConfigProviders.json +88 -0
  361. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthProvParamFwdAllowlist.json +91 -0
  362. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthProvider.json +376 -0
  363. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthSession.json +209 -0
  364. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationForm.json +168 -0
  365. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormConsent.json +239 -0
  366. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormDataUse.json +134 -0
  367. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormText.json +181 -0
  368. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedAction.json +129 -0
  369. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionCondition.json +62 -0
  370. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionOverride.json +64 -0
  371. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionParameter.json +57 -0
  372. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionReminder.json +72 -0
  373. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BackgroundOperation.json +266 -0
  374. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BackgroundOperationResult.json +53 -0
  375. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BatchApexErrorEvent.json +76 -0
  376. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingBatchScheduler.json +278 -0
  377. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingPeriodItem.json +170 -0
  378. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingPolicy.json +131 -0
  379. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingSchedule.json +345 -0
  380. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingScheduleGroup.json +595 -0
  381. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingTreatment.json +150 -0
  382. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingTreatmentItem.json +214 -0
  383. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BlockedRedirectEventLog.json +58 -0
  384. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Blocked_Redirect_Event_Type.json +63 -0
  385. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bookmark.json +38 -0
  386. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BotDefinition.json +136 -0
  387. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BotVersion.json +132 -0
  388. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrandTemplate.json +116 -0
  389. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrandingSet.json +111 -0
  390. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Brief.json +172 -0
  391. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseAssignment.json +86 -0
  392. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseDefinition.json +122 -0
  393. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseRule.json +180 -0
  394. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseRuleFilter.json +114 -0
  395. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastCommAudience.json +92 -0
  396. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastCommunication.json +77 -0
  397. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopic.json +64 -0
  398. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopicGroup.json +44 -0
  399. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopicNetwork.json +44 -0
  400. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrowserPolicyViolation.json +134 -0
  401. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApi2EventLog.json +103 -0
  402. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApiEventLog.json +98 -0
  403. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApiRequestEventLog.json +118 -0
  404. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_2.0_Event_Type.json +99 -0
  405. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_Event_Type.json +103 -0
  406. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_Request_Event_Type.json +115 -0
  407. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessAlert.json +82 -0
  408. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessAlertStatus.json +47 -0
  409. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessBrand.json +127 -0
  410. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessHours.json +235 -0
  411. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessDefinition.json +116 -0
  412. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessFeedback.json +95 -0
  413. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessGroup.json +110 -0
  414. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Business_Process.json +47 -0
  415. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerAccount.json +230 -0
  416. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerCriteria.json +161 -0
  417. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroup.json +131 -0
  418. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupBuyerCriteria.json +108 -0
  419. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupMember.json +109 -0
  420. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupPricebook.json +127 -0
  421. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupRelatedObject.json +127 -0
  422. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CORS_Violation_Record_Event_Type.json +43 -0
  423. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CSP_Violation_Event_Type.json +88 -0
  424. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalcProcStepRelationship.json +147 -0
  425. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculatedInsightRangeBound.json +160 -0
  426. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrix.json +206 -0
  427. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixColumn.json +163 -0
  428. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixRow.json +140 -0
  429. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixVersion.json +234 -0
  430. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedure.json +153 -0
  431. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureStep.json +303 -0
  432. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureVariable.json +182 -0
  433. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureVersion.json +210 -0
  434. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Calendar.json +94 -0
  435. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalendarView.json +196 -0
  436. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCenter.json +115 -0
  437. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCenterRoutingMap.json +136 -0
  438. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCoachingMediaProvider.json +91 -0
  439. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCtrAgentFavTrfrDest.json +117 -0
  440. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCtrAgentFavTrfrDestShare.json +91 -0
  441. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallDisposition.json +77 -0
  442. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallDispositionCategory.json +97 -0
  443. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallTemplate.json +196 -0
  444. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Campaign.json +577 -0
  445. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignInfluence.json +60 -0
  446. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignInfluenceModel.json +156 -0
  447. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignMember.json +389 -0
  448. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignMemberStatus.json +117 -0
  449. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignOwnerSharingRule.json +48 -0
  450. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignShare.json +97 -0
  451. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignTag.json +38 -0
  452. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CardPaymentMethod.json +583 -0
  453. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartCheckoutSession.json +164 -0
  454. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroup.json +434 -0
  455. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroupMethod.json +264 -0
  456. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroupMethodAdj.json +163 -0
  457. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItem.json +751 -0
  458. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItemAttribute.json +75 -0
  459. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItemPriceAdjustment.json +265 -0
  460. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartTax.json +174 -0
  461. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartValidationOutput.json +158 -0
  462. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Case.json +524 -0
  463. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseArticle.json +105 -0
  464. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseComment.json +135 -0
  465. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseContactRole.json +104 -0
  466. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseHistory.json +109 -0
  467. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseHistory2.json +107 -0
  468. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseMilestone.json +297 -0
  469. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseOwnerSharingRule.json +50 -0
  470. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseParticipant.json +179 -0
  471. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseRelatedIssue.json +121 -0
  472. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseShare.json +102 -0
  473. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseSolution.json +86 -0
  474. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseStatus.json +104 -0
  475. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseSubjectParticle.json +120 -0
  476. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTag.json +38 -0
  477. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamMember.json +123 -0
  478. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamRole.json +84 -0
  479. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplate.json +75 -0
  480. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplateMember.json +85 -0
  481. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplateRecord.json +75 -0
  482. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryData.json +86 -0
  483. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryNode.json +96 -0
  484. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryNodeLocalization.json +98 -0
  485. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequest.json +281 -0
  486. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequestRelatedIssue.json +116 -0
  487. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequestRelatedItem.json +126 -0
  488. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeSetOperationEventLog.json +78 -0
  489. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Change_Set_Operation_Event_Type.json +83 -0
  490. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelObjectLinkingRule.json +168 -0
  491. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgram.json +129 -0
  492. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgramLevel.json +147 -0
  493. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgramMember.json +131 -0
  494. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterActivity.json +108 -0
  495. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterAnswersActivity.json +108 -0
  496. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterAnswersReputationLevel.json +33 -0
  497. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterConversation.json +23 -0
  498. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterConversationMember.json +28 -0
  499. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterExtension.json +192 -0
  500. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterExtensionConfig.json +112 -0
  501. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterMessage.json +43 -0
  502. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ClientBrowser.json +82 -0
  503. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabDocumentMetric.json +76 -0
  504. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabDocumentMetricRecord.json +41 -0
  505. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabTemplateMetric.json +58 -0
  506. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabTemplateMetricRecord.json +41 -0
  507. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabUserEngagementMetric.json +81 -0
  508. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabUserEngmtRecordLink.json +41 -0
  509. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroup.json +285 -0
  510. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupMember.json +123 -0
  511. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupMemberRequest.json +104 -0
  512. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupRecord.json +100 -0
  513. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationInvitation.json +127 -0
  514. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationRoom.json +139 -0
  515. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ColorDefinition.json +87 -0
  516. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CombinedAttachment.json +172 -0
  517. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscription.json +119 -0
  518. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionChannelType.json +158 -0
  519. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionConsent.json +264 -0
  520. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionTiming.json +120 -0
  521. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementBuyerGroup.json +99 -0
  522. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementPolicy.json +144 -0
  523. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementPolicyShare.json +84 -0
  524. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementProduct.json +99 -0
  525. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommissionSchedule.json +109 -0
  526. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommissionScheduleAssignment.json +95 -0
  527. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Community.json +60 -0
  528. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Composite_API_Event_Type.json +91 -0
  529. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Composite_API_Subrequest_Event_Type.json +107 -0
  530. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConcurApexLimitEventLog.json +48 -0
  531. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Concurrent_Long-Running_Apex_Limit_Event_Type.json +56 -0
  532. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConferenceNumber.json +136 -0
  533. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConnectedApplication.json +191 -0
  534. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Console_Event_Type.json +111 -0
  535. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Consumption_Rate.json +68 -0
  536. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Consumption_Schedule.json +113 -0
  537. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContCalloutSummaryEventLog.json +78 -0
  538. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Contact.json +869 -0
  539. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactCenterChannel.json +134 -0
  540. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactCleanInfo.json +497 -0
  541. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactDailyMetric.json +441 -0
  542. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactMonthlyMetric.json +412 -0
  543. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactOwnerSharingRule.json +48 -0
  544. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointAddress.json +352 -0
  545. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointConsent.json +238 -0
  546. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointEmail.json +238 -0
  547. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointPhone.json +290 -0
  548. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointTypeConsent.json +253 -0
  549. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactRequest.json +220 -0
  550. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactRequestShare.json +95 -0
  551. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactShare.json +102 -0
  552. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactSuggestionInsight.json +135 -0
  553. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactTag.json +38 -0
  554. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentAsset.json +124 -0
  555. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentBody.json +44 -0
  556. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistribution.json +271 -0
  557. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistributionEventLog.json +58 -0
  558. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistributionView.json +94 -0
  559. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocLinkEventLog.json +56 -0
  560. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocument.json +292 -0
  561. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentHistory.json +107 -0
  562. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentLink.json +93 -0
  563. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentListViewMapping.json +45 -0
  564. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentSubscription.json +80 -0
  565. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolder.json +95 -0
  566. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderItem.json +133 -0
  567. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderLink.json +71 -0
  568. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderMember.json +86 -0
  569. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentHubItem.json +105 -0
  570. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentHubRepository.json +33 -0
  571. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentNote.json +196 -0
  572. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentNotification.json +103 -0
  573. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTagSubscription.json +49 -0
  574. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomy.json +89 -0
  575. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyRelatedTerm.json +90 -0
  576. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTerm.json +101 -0
  577. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTermRelatedTerm.json +116 -0
  578. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTermRelationshipType.json +91 -0
  579. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTransferEventLog.json +65 -0
  580. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentUserSubscription.json +62 -0
  581. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersion.json +498 -0
  582. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionComment.json +76 -0
  583. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionHistory.json +107 -0
  584. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionRating.json +87 -0
  585. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspace.json +176 -0
  586. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceDoc.json +81 -0
  587. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceMember.json +96 -0
  588. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspacePermission.json +201 -0
  589. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceSubscription.json +62 -0
  590. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Distribution_Event_Type.json +63 -0
  591. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Document_Link_Event_Type.json +59 -0
  592. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Transfer_Event_Type.json +75 -0
  593. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContextParamMap.json +91 -0
  594. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Continuation_Callout_Summary_Event_Type.json +85 -0
  595. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Contract.json +624 -0
  596. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractContactRole.json +111 -0
  597. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineItem.json +271 -0
  598. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineOutcome.json +216 -0
  599. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineOutcomeData.json +151 -0
  600. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractStatus.json +105 -0
  601. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractTag.json +38 -0
  602. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisSummary.json +61 -0
  603. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisTopic.json +103 -0
  604. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisTopicEntry.json +52 -0
  605. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvIntelligenceSignalRule.json +157 -0
  606. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvIntelligenceSignalSubRule.json +116 -0
  607. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvMessageSendRequest.json +340 -0
  608. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Conversation.json +112 -0
  609. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationApiLog.json +172 -0
  610. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationChannelDefinition.json +336 -0
  611. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationContextEntry.json +99 -0
  612. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationEntry.json +268 -0
  613. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationParticipant.json +171 -0
  614. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationVendorInfo.json +370 -0
  615. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CorsWhitelistEntry.json +109 -0
  616. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Coupon.json +195 -0
  617. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CouponCodeRedemption.json +116 -0
  618. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemo.json +473 -0
  619. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoAddressGroup.json +206 -0
  620. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoInvApplication.json +238 -0
  621. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoLine.json +483 -0
  622. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Crisis.json +63 -0
  623. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CronJobDetail.json +53 -0
  624. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CronTrigger.json +150 -0
  625. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CryptoProdCatgWalletGroup.json +62 -0
  626. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CspTrustedSite.json +210 -0
  627. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CspViolationEventLog.json +93 -0
  628. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CurrencyType.json +108 -0
  629. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustExpIntlTransfSetup.json +56 -0
  630. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomBrand.json +63 -0
  631. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomBrandAsset.json +104 -0
  632. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomFieldDisplayValue.json +115 -0
  633. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHelpMenuItem.json +107 -0
  634. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHelpMenuSection.json +99 -0
  635. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHttpHeader.json +112 -0
  636. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomMsgChannel.json +120 -0
  637. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomNotificationType.json +144 -0
  638. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomPermission.json +134 -0
  639. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomPermissionDependency.json +90 -0
  640. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Metadata_Type__mdt.json +41 -0
  641. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Object__Feed.json +78 -0
  642. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Object___c___c.json +62 -0
  643. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Customer.json +137 -0
  644. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DandBCompany.json +1172 -0
  645. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Dashboard.json +311 -0
  646. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DashboardComponent.json +71 -0
  647. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DashboardTag.json +38 -0
  648. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Dashboard_Event_Type.json +107 -0
  649. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentFieldMetric.json +139 -0
  650. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentMetric.json +133 -0
  651. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentValueMetric.json +109 -0
  652. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcyDataSrchExps.json +47 -0
  653. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcyMdatScanCrit.json +47 -0
  654. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcySstvDataCatg.json +37 -0
  655. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobObjectSession.json +8 -0
  656. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobSessSummary.json +8 -0
  657. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobSession.json +71 -0
  658. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicy.json +55 -0
  659. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicyObjField.json +32 -0
  660. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicyObject.json +37 -0
  661. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicySnapshot.json +8 -0
  662. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectScanResult.json +62 -0
  663. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataEncryptionKey.json +173 -0
  664. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataIntegrationRecordPurchasePermission.json +94 -0
  665. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataKitDeployEvent.json +162 -0
  666. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataKitDeploymentLog.json +285 -0
  667. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataMaskCustomValueLibrary.json +157 -0
  668. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataStatistics.json +10 -0
  669. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataUseLegalBasis.json +125 -0
  670. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataUsePurpose.json +160 -0
  671. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataWeaveResource.json +152 -0
  672. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatabaseSaveEventLog.json +68 -0
  673. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Database_Save_Event_Type.json +71 -0
  674. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudCompany.json +471 -0
  675. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudContact.json +238 -0
  676. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudDandBCompany.json +1201 -0
  677. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudOwnedEntity.json +124 -0
  678. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudPurchaseUsage.json +137 -0
  679. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatasetExport.json +127 -0
  680. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatasetExportPart.json +116 -0
  681. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatedConversionRate.json +98 -0
  682. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DealIndirectPartner.json +91 -0
  683. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeclinedEventRelation.json +117 -0
  684. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DelegatedAccount.json +158 -0
  685. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeleteEvent.json +90 -0
  686. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeliveryEstimationSetup.json +243 -0
  687. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsActivityLog.json +125 -0
  688. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvDeployment.json +144 -0
  689. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvDeploymentMbr.json +81 -0
  690. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvironment.json +110 -0
  691. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipeline.json +64 -0
  692. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineEnvironment.json +56 -0
  693. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineStage.json +80 -0
  694. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineStageTrigger.json +72 -0
  695. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineTestProvider.json +59 -0
  696. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelnStgProm.json +63 -0
  697. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelnStgPromWkItem.json +70 -0
  698. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsProject.json +52 -0
  699. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsProjectPipeline.json +51 -0
  700. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGate.json +45 -0
  701. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateResult.json +54 -0
  702. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateRule.json +52 -0
  703. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateRuleResult.json +54 -0
  704. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsRequestInfo.json +83 -0
  705. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTest.json +133 -0
  706. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestExecution.json +104 -0
  707. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestProvider.json +61 -0
  708. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestProviderSyncLog.json +74 -0
  709. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuite.json +98 -0
  710. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteExecution.json +126 -0
  711. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteGroupExec.json +79 -0
  712. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteStage.json +66 -0
  713. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteTest.json +66 -0
  714. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsWkItmTstSteGrpExec.json +54 -0
  715. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DigitalSignature.json +188 -0
  716. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DigitalWallet.json +427 -0
  717. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DirectMessage.json +30 -0
  718. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Division.json +38 -0
  719. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DivisionLocalization.json +38 -0
  720. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocAtchDownloadEventLog.json +43 -0
  721. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Document.json +243 -0
  722. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentAttachmentMap.json +75 -0
  723. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentRecipient.json +246 -0
  724. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentTag.json +38 -0
  725. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Document_Attachment_Downloads_Event_Type.json +51 -0
  726. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Domain.json +104 -0
  727. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DomainSite.json +85 -0
  728. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DsarPolicy.json +45 -0
  729. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DsarPolicyLog.json +85 -0
  730. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJob.json +73 -0
  731. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobDefinition.json +43 -0
  732. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobMatchingRule.json +43 -0
  733. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobMatchingRuleDefinition.json +28 -0
  734. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRecordItem.json +103 -0
  735. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRecordSet.json +126 -0
  736. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRule.json +139 -0
  737. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DynamicDataCapture.json +215 -0
  738. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ElectronicMediaGroup.json +135 -0
  739. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ElectronicMediaUse.json +82 -0
  740. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailContent.json +320 -0
  741. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailDomainFilter.json +117 -0
  742. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailDomainKey.json +214 -0
  743. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailInsight.json +79 -0
  744. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailInsightAction.json +54 -0
  745. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessage.json +506 -0
  746. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessageMigration.json +8 -0
  747. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessageRelation.json +121 -0
  748. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailRelay.json +130 -0
  749. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailRoutingAddress.json +83 -0
  750. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailServicesAddress.json +137 -0
  751. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailServicesFunction.json +208 -0
  752. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailStatus.json +119 -0
  753. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailTemplate.json +414 -0
  754. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailTemplateMonthlyMetric.json +577 -0
  755. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmbeddedServiceDetail.json +339 -0
  756. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmbeddedServiceLabel.json +71 -0
  757. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmpUserProvisionProcessErr.json +148 -0
  758. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmpUserProvisioningProcess.json +151 -0
  759. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Employee.json +281 -0
  760. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Employee2.json +97 -0
  761. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmployeeCrisisAssessment.json +71 -0
  762. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementMeasureDefinition.json +91 -0
  763. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementProgram.json +110 -0
  764. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementProgramDefinition.json +49 -0
  765. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblMeasureObjectDefinition.json +66 -0
  766. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblPgmTaskMeasureProgress.json +45 -0
  767. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramSection.json +42 -0
  768. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskDefinition.json +106 -0
  769. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskMeasure.json +42 -0
  770. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskProgress.json +80 -0
  771. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskSubCategory.json +52 -0
  772. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementChannelType.json +130 -0
  773. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignal.json +65 -0
  774. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignalCmpndMetric.json +74 -0
  775. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignalMetric.json +56 -0
  776. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnhancedLetterhead.json +117 -0
  777. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Entitlement.json +280 -0
  778. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitlementContact.json +102 -0
  779. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitlementTemplate.json +138 -0
  780. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntityHistory.json +48 -0
  781. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntityMilestone.json +359 -0
  782. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitySubscription.json +87 -0
  783. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnvironmentHubMember.json +108 -0
  784. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Event.json +528 -0
  785. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventBusSubscriber.json +160 -0
  786. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventLogFile.json +151 -0
  787. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventLogFile_Supported_Event_Types.json +8 -0
  788. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelation.json +148 -0
  789. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelayConfig.json +148 -0
  790. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelayFeedback.json +166 -0
  791. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventStagedInviteeEmail.json +123 -0
  792. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventTag.json +38 -0
  793. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventWhoRelation.json +92 -0
  794. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Expense.json +252 -0
  795. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpenseReport.json +140 -0
  796. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpenseReportEntry.json +159 -0
  797. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionFilter.json +105 -0
  798. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionFilterCriteria.json +129 -0
  799. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionSetConstraintObj.json +66 -0
  800. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtConvParticipantIntegDef.json +66 -0
  801. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtDataShare.json +164 -0
  802. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtKnowledgeConnector.json +145 -0
  803. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalAccountHierarchy.json +158 -0
  804. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalAccountHierarchyHistory.json +94 -0
  805. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalClientApplication.json +10 -0
  806. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalDataSource.json +209 -0
  807. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalDataUserAuth.json +131 -0
  808. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEncryptionRootKey.json +122 -0
  809. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEvent.json +126 -0
  810. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEventMapping.json +143 -0
  811. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalSocialAccount.json +259 -0
  812. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Cross-Org_Callout_Event_Type.json +130 -0
  813. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Custom_Apex_Callout_Event_Type.json +124 -0
  814. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Data_Source_Callout_Event_Type.json +141 -0
  815. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_OData_Callout_Event_Type.json +160 -0
  816. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppOauthPlcyCnfg.json +10 -0
  817. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppOauthSettings.json +10 -0
  818. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppPlcyCnfg.json +10 -0
  819. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlIntrIdMapping.json +57 -0
  820. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrCnct.json +54 -0
  821. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrCnctAccnt.json +39 -0
  822. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrField.json +67 -0
  823. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrFieldMap.json +34 -0
  824. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrLead.json +41 -0
  825. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrObject.json +49 -0
  826. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrOpportunity.json +41 -0
  827. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrPcklstOptn.json +42 -0
  828. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrPicklistMap.json +34 -0
  829. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrRecordMap.json +71 -0
  830. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FSL__Time_Dependency__c.json +34 -0
  831. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedAttachment.json +87 -0
  832. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedComment.json +232 -0
  833. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedItem.json +322 -0
  834. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedLike.json +84 -0
  835. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPollChoice.json +79 -0
  836. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPollVote.json +76 -0
  837. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPost.json +85 -0
  838. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedRevision.json +125 -0
  839. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedTrackedChange.json +93 -0
  840. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldChangeSnapshot.json +86 -0
  841. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldHistoryArchive.json +83 -0
  842. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldPermissions.json +93 -0
  843. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldSecurityClassification.json +107 -0
  844. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldServiceMobileSettings.json +599 -0
  845. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldServiceOrgSettings.json +210 -0
  846. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FileSearchActivity.json +156 -0
  847. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FiscalYearSettings.json +165 -0
  848. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FldSvcObjChg.json +150 -0
  849. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FldSvcObjChgDtl.json +89 -0
  850. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlexQueueItem.json +76 -0
  851. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowDefinitionView.json +368 -0
  852. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterview.json +209 -0
  853. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLog.json +184 -0
  854. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLogEntry.json +153 -0
  855. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLogOwnerSharingRule.json +56 -0
  856. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewOwnerSharingRule.json +48 -0
  857. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewShare.json +95 -0
  858. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowNavMetricEventLog.json +78 -0
  859. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestration.json +323 -0
  860. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationInstance.json +238 -0
  861. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationLog.json +212 -0
  862. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationStageInstance.json +146 -0
  863. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationStepInstance.json +176 -0
  864. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationVersion.json +257 -0
  865. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationWorkItem.json +248 -0
  866. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecord.json +469 -0
  867. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordElement.json +128 -0
  868. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordElementOccurrence.json +202 -0
  869. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordRelation.json +101 -0
  870. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordVersion.json +415 -0
  871. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordVersionOccurrence.json +188 -0
  872. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowStageRelation.json +126 -0
  873. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowTestResult.json +186 -0
  874. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowTestView.json +105 -0
  875. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowVariableView.json +126 -0
  876. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowVersionView.json +195 -0
  877. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Flow_Execution_Event_Type.json +75 -0
  878. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Folder.json +126 -0
  879. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FolderedContentDocument.json +146 -0
  880. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingAdjustment.json +222 -0
  881. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinition.json +137 -0
  882. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinitionLocalization.json +99 -0
  883. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinition_Formula_Field_Details.json +8 -0
  884. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingCustomCategory.json +206 -0
  885. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingCustomData.json +148 -0
  886. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingDisplayedFamily.json +78 -0
  887. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFact.json +146 -0
  888. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFilter.json +126 -0
  889. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFilterCondition.json +146 -0
  890. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingGroup.json +134 -0
  891. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingGroupItem.json +114 -0
  892. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingItem.json +306 -0
  893. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingOwnerAdjustment.json +226 -0
  894. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingQuota.json +182 -0
  895. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingShare.json +99 -0
  896. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSourceDefinition.json +158 -0
  897. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSrcRecJudgment.json +107 -0
  898. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSubmission.json +183 -0
  899. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSubmissionItem.json +120 -0
  900. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingType.json +238 -0
  901. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingTypeSource.json +152 -0
  902. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingUserPreference.json +169 -0
  903. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunction.json +114 -0
  904. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunctionAllowedType.json +67 -0
  905. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunctionCategory.json +63 -0
  906. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmCatgRampRateSrc.json +111 -0
  907. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmzAdjustment.json +169 -0
  908. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmzOwnerAdjustment.json +179 -0
  909. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrder.json +684 -0
  910. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderItemAdjustment.json +182 -0
  911. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderItemTax.json +170 -0
  912. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderLineItem.json +445 -0
  913. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteria.json +122 -0
  914. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaActnVar.json +59 -0
  915. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaCond.json +79 -0
  916. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaGrp.json +78 -0
  917. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaGrpVer.json +70 -0
  918. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionConnection.json +48 -0
  919. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionInvocationRequest.json +94 -0
  920. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionReference.json +53 -0
  921. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAIConversationSummary.json +56 -0
  922. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiFunctionDefinition.json +96 -0
  923. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPlannerDefinition.json +53 -0
  924. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPlannerFunctionDef.json +34 -0
  925. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPluginDefinition.json +89 -0
  926. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenOpPlanRequest.json +101 -0
  927. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeoCountry.json +123 -0
  928. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeoState.json +121 -0
  929. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeolocationBasedAction.json +190 -0
  930. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Goal.json +78 -0
  931. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GoalLink.json +31 -0
  932. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GoogleDoc.json +39 -0
  933. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GraphQL_Query_Event_Type.json +103 -0
  934. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Group.json +171 -0
  935. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GroupMember.json +68 -0
  936. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GroupMembershipEventLog.json +83 -0
  937. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Group_Membership_Event_Type.json +104 -0
  938. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GtwyProvPaymentMethodType.json +168 -0
  939. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GuestBuyerProfile.json +103 -0
  940. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HashtagDefinition.json +38 -0
  941. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HealthCareDiagnosis.json +232 -0
  942. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HealthCareProcedure.json +178 -0
  943. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Holiday.json +212 -0
  944. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Hostname_Redirects_Event_Type.json +127 -0
  945. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IconDefinition.json +108 -0
  946. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Idea.json +310 -0
  947. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaComment.json +136 -0
  948. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaReputation.json +73 -0
  949. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaReputationLevel.json +33 -0
  950. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaTheme.json +63 -0
  951. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdpEventLog.json +129 -0
  952. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IframeWhiteListUrl.json +79 -0
  953. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Image.json +198 -0
  954. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Incident.json +342 -0
  955. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IncidentRelatedItem.json +139 -0
  956. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Individual.json +333 -0
  957. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualApplicationItem.json +126 -0
  958. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualHistory.json +102 -0
  959. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualShare.json +95 -0
  960. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Insecure_External_Assets_Event_Type.json +110 -0
  961. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InsufficientAccessEventLog.json +64 -0
  962. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Insufficient_Access_Event_Type.json +85 -0
  963. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InternalOrganizationUnit.json +142 -0
  964. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InventoryItemReservation.json +193 -0
  965. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InventoryReservation.json +184 -0
  966. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvocableActionEventLog.json +88 -0
  967. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Invocable_Action_Event_Type.json +99 -0
  968. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Invoice.json +628 -0
  969. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceAddressGroup.json +178 -0
  970. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRun.json +347 -0
  971. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRunCriteria.json +146 -0
  972. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRunRecovery.json +146 -0
  973. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceDocument.json +141 -0
  974. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceLine.json +619 -0
  975. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/JobProfile.json +109 -0
  976. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/JobProfileQueueGroup.json +72 -0
  977. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticle.json +169 -0
  978. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleEventLog.json +88 -0
  979. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleFeedback.json +127 -0
  980. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVersion.json +459 -0
  981. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVersionHistory.json +147 -0
  982. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleViewStat.json +81 -0
  983. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVoteStat.json +70 -0
  984. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge_Article_View_Event_Type.json +87 -0
  985. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__DataCategorySelection.json +89 -0
  986. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__Feed.json +172 -0
  987. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__ka.json +162 -0
  988. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__kav.json +480 -0
  989. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeableUser.json +76 -0
  990. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LandingPage.json +159 -0
  991. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lead.json +791 -0
  992. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadCleanInfo.json +720 -0
  993. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadDailyMetric.json +441 -0
  994. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadMonthlyMetric.json +412 -0
  995. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadOwnerSharingRule.json +48 -0
  996. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadShare.json +102 -0
  997. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadStatus.json +104 -0
  998. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadTag.json +38 -0
  999. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningContent.json +71 -0
  1000. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItem.json +116 -0
  1001. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemAssignment.json +79 -0
  1002. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemProgress.json +67 -0
  1003. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemSubmission.json +52 -0
  1004. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemType.json +74 -0
  1005. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningPractice.json +60 -0
  1006. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LegalEntity.json +196 -0
  1007. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LicenseDefinitionCustomPermission.json +41 -0
  1008. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningErrorEventLog.json +214 -0
  1009. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningExitByPageMetrics.json +83 -0
  1010. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningExperienceTheme.json +143 -0
  1011. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningLoggerEventLog.json +153 -0
  1012. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningOnboardingConfig.json +152 -0
  1013. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningPageViewEventLog.json +240 -0
  1014. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningPrfmEventLog.json +183 -0
  1015. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningToggleMetrics.json +83 -0
  1016. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByAppTypeMetrics.json +72 -0
  1017. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByBrowserMetrics.json +112 -0
  1018. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByFlexiPageMetrics.json +177 -0
  1019. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByPageMetrics.json +178 -0
  1020. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Error_Event_Type.json +213 -0
  1021. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Interaction_Event_Type.json +236 -0
  1022. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Logger_Event_Type.json +147 -0
  1023. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Page_View_Event_Type.json +260 -0
  1024. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Performance_Event_Type.json +173 -0
  1025. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticle.json +121 -0
  1026. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticleFeed.json +172 -0
  1027. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticleHistory.json +94 -0
  1028. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmail.json +462 -0
  1029. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailIndividualRecipient.json +119 -0
  1030. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailMonthlyMetric.json +159 -0
  1031. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailRecipientSource.json +113 -0
  1032. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailSentResult.json +265 -0
  1033. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListView.json +109 -0
  1034. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListViewChart.json +147 -0
  1035. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListViewChartInstance.json +189 -0
  1036. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSession.json +246 -0
  1037. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSessionHistory.json +94 -0
  1038. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSessionShare.json +84 -0
  1039. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatBlockingRule.json +124 -0
  1040. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButton.json +472 -0
  1041. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButtonDeployment.json +77 -0
  1042. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButtonSkill.json +77 -0
  1043. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatDeployment.json +176 -0
  1044. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatObjectAccessConfig.json +93 -0
  1045. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatObjectAccessDefinition.json +87 -0
  1046. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatSensitiveDataRule.json +181 -0
  1047. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscript.json +444 -0
  1048. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptEvent.json +136 -0
  1049. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptShare.json +84 -0
  1050. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptSkill.json +87 -0
  1051. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfig.json +322 -0
  1052. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfigProfile.json +79 -0
  1053. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfigUser.json +79 -0
  1054. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatVisitor.json +97 -0
  1055. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocWaitlistMsgTemplate.json +51 -0
  1056. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Location.json +550 -0
  1057. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationGroup.json +140 -0
  1058. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationGroupAssignment.json +152 -0
  1059. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationShippingCarrierMethod.json +137 -0
  1060. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationTrustMeasure.json +168 -0
  1061. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationWaitlist.json +111 -0
  1062. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationWaitlistedParty.json +76 -0
  1063. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginAsEventLog.json +73 -0
  1064. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginEvent.json +241 -0
  1065. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginEventLog.json +143 -0
  1066. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginGeo.json +144 -0
  1067. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginHistory.json +276 -0
  1068. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginIp.json +91 -0
  1069. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Login_As_Event_Type.json +83 -0
  1070. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Login_Event_Type.json +157 -0
  1071. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LogoutEventLog.json +108 -0
  1072. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LogoutEventStream.json +10 -0
  1073. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Logout_Event_Type.json +99 -0
  1074. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LookedUpFromActivity.json +348 -0
  1075. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLField.json +75 -0
  1076. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModel.json +154 -0
  1077. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelFactor.json +138 -0
  1078. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelFactorComponent.json +177 -0
  1079. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelMetric.json +175 -0
  1080. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLPredictionDefinition.json +145 -0
  1081. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLRecommendationDefinition.json +77 -0
  1082. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Macro.json +162 -0
  1083. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MacroInstruction.json +137 -0
  1084. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MacroUsage.json +215 -0
  1085. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MailmergeTemplate.json +177 -0
  1086. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenanceAsset.json +143 -0
  1087. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenancePlan.json +310 -0
  1088. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenanceWorkRule.json +197 -0
  1089. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContent.json +139 -0
  1090. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentChannel.json +149 -0
  1091. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentInfo.json +25 -0
  1092. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentSpace.json +117 -0
  1093. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentVariant.json +173 -0
  1094. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MarketingForm.json +95 -0
  1095. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MarketingLink.json +60 -0
  1096. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MatchingRule.json +162 -0
  1097. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MatchingRuleItem.json +118 -0
  1098. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchAccPaymentMethodSet.json +113 -0
  1099. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchAccPaymentMethodType.json +116 -0
  1100. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchantAccount.json +178 -0
  1101. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchantAccountEvent.json +71 -0
  1102. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannel.json +371 -0
  1103. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannelSkill.json +84 -0
  1104. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannelUsage.json +137 -0
  1105. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingConfiguration.json +102 -0
  1106. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingDeliveryError.json +196 -0
  1107. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingEndUser.json +247 -0
  1108. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingLink.json +112 -0
  1109. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingSession.json +382 -0
  1110. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingSessionMetrics.json +106 -0
  1111. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingTemplate.json +99 -0
  1112. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataApiOpEventLog.json +75 -0
  1113. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataPackage.json +33 -0
  1114. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataPackageVersion.json +58 -0
  1115. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Metadata_API_Operation_Event_Type.json +83 -0
  1116. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Metric.json +108 -0
  1117. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetricDataLink.json +43 -0
  1118. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MigratedEmail.json +8 -0
  1119. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MilestoneType.json +87 -0
  1120. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MktJourneyDcsnSetup.json +40 -0
  1121. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MlIntentUtteranceSuggestion.json +115 -0
  1122. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobSecurityCertPinConfig.json +179 -0
  1123. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobSecurityCertPinEvent.json +94 -0
  1124. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileDeviceAppRegistration.json +266 -0
  1125. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityAssignment.json +116 -0
  1126. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityPolicy.json +179 -0
  1127. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityUserMetric.json +59 -0
  1128. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSettingsAssignment.json +79 -0
  1129. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MsgChannelLanguageKeyword.json +185 -0
  1130. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MsgChannelUsageExternalOrg.json +95 -0
  1131. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Multiblock_Report_Event_Type.json +91 -0
  1132. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MutingPermissionSet.json +4208 -0
  1133. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MyDomainDiscoverableLogin.json +128 -0
  1134. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Name.json +209 -0
  1135. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamedCredential.json +230 -0
  1136. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamedCredentialEventLog.json +85 -0
  1137. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Named_Credential_Event_Type.json +95 -0
  1138. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamespaceRegistry.json +92 -0
  1139. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationLinkSet.json +102 -0
  1140. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationMenuItem.json +170 -0
  1141. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationMenuItemLocalization.json +93 -0
  1142. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Network.json +714 -0
  1143. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkActivityAudit.json +149 -0
  1144. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkAffinity.json +79 -0
  1145. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkAuthApiSettings.json +318 -0
  1146. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkDataCategory.json +131 -0
  1147. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkDiscoverableLogin.json +102 -0
  1148. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkEmailTmplAllowlist.json +84 -0
  1149. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkFeedResponseMetric.json +163 -0
  1150. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkMember.json +272 -0
  1151. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkMemberGroup.json +85 -0
  1152. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkModeration.json +87 -0
  1153. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkPageOverride.json +87 -0
  1154. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkSelfRegistration.json +201 -0
  1155. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkUserHistoryRecent.json +178 -0
  1156. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Note.json +123 -0
  1157. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NoteAndAttachment.json +121 -0
  1158. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NoteTag.json +38 -0
  1159. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OSAsyncChgCompletedEvent.json +300 -0
  1160. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthCustomScope.json +118 -0
  1161. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthCustomScopeApp.json +73 -0
  1162. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthToken.json +133 -0
  1163. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthTokenExchHandlerApp.json +113 -0
  1164. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthTokenExchangeHandler.json +195 -0
  1165. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectDataImport.json +147 -0
  1166. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectDataImportReference.json +88 -0
  1167. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectMetadataTag.json +123 -0
  1168. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectPermissions.json +144 -0
  1169. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectRelatedUrl.json +134 -0
  1170. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2AssignmentRule.json +128 -0
  1171. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2AssignmentRuleItem.json +108 -0
  1172. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2Association.json +103 -0
  1173. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectUserTerritory2View.json +84 -0
  1174. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfig.json +106 -0
  1175. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigAction.json +94 -0
  1176. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigGroup.json +86 -0
  1177. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigProfile.json +86 -0
  1178. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigQueue.json +86 -0
  1179. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigSkill.json +86 -0
  1180. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigTab.json +94 -0
  1181. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigUser.json +86 -0
  1182. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/One_Commerce_Usage_Event_Type.json +163 -0
  1183. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpenActivity.json +381 -0
  1184. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHours.json +135 -0
  1185. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHoursHistory.json +96 -0
  1186. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHoursHoliday.json +131 -0
  1187. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OppSalesMethodology.json +53 -0
  1188. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OppSalesMethodologyItem.json +63 -0
  1189. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Opportunity.json +611 -0
  1190. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityCompetitor.json +111 -0
  1191. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityContactRole.json +130 -0
  1192. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityContactRoleSuggestionInsight.json +75 -0
  1193. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityFieldHistory.json +107 -0
  1194. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityHistory.json +160 -0
  1195. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityInsight.json +110 -0
  1196. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItem.json +306 -0
  1197. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItemSchedule.json +128 -0
  1198. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItemSplit.json +88 -0
  1199. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityOwnerSharingRule.json +48 -0
  1200. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityPartner.json +117 -0
  1201. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityRelatedDeleteLog.json +143 -0
  1202. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityShare.json +102 -0
  1203. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunitySplit.json +85 -0
  1204. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunitySplitType.json +72 -0
  1205. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityStage.json +156 -0
  1206. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityTag.json +38 -0
  1207. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityTeamMember.json +136 -0
  1208. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpptyLineItemSplitType.json +79 -0
  1209. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Order.json +942 -0
  1210. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAction.json +124 -0
  1211. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAdjustmentGroup.json +231 -0
  1212. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAdjustmentGroupSummary.json +183 -0
  1213. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderChangeLog.json +183 -0
  1214. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderChgReasonCategMap.json +153 -0
  1215. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryGroup.json +427 -0
  1216. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryGroupSummary.json +434 -0
  1217. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryMethod.json +172 -0
  1218. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderHistory.json +102 -0
  1219. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItem.json +1005 -0
  1220. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemAdjustmentLineItem.json +262 -0
  1221. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemAdjustmentLineSummary.json +202 -0
  1222. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemGroup.json +158 -0
  1223. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemRecipient.json +282 -0
  1224. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemRelationship.json +206 -0
  1225. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummary.json +739 -0
  1226. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummaryChange.json +148 -0
  1227. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummaryRelationship.json +201 -0
  1228. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemTaxLineItem.json +185 -0
  1229. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemTaxLineItemSummary.json +202 -0
  1230. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemType.json +101 -0
  1231. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderOwnerSharingRule.json +78 -0
  1232. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderPaymentSummary.json +312 -0
  1233. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderPaymentSummaryReference.json +185 -0
  1234. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderShare.json +95 -0
  1235. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderStatus.json +105 -0
  1236. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummary.json +872 -0
  1237. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryAdditionalInfo.json +171 -0
  1238. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryRelationship.json +152 -0
  1239. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryRoutingSchedule.json +146 -0
  1240. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgDeleteRequest.json +94 -0
  1241. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgEmailAddressSecurity.json +68 -0
  1242. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetric.json +108 -0
  1243. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetricScanResult.json +187 -0
  1244. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetricScanSummary.json +177 -0
  1245. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgSnapshot.json +91 -0
  1246. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgWideEmailAddress.json +107 -0
  1247. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Organization.json +744 -0
  1248. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutOfOffice.json +104 -0
  1249. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutgoingEmail.json +93 -0
  1250. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutgoingEmailRelation.json +43 -0
  1251. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OwnedContentDocument.json +163 -0
  1252. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OwnerChangeOptionInfo.json +56 -0
  1253. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageInstallEventLog.json +100 -0
  1254. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageLicense.json +115 -0
  1255. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushError.json +51 -0
  1256. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushJob.json +52 -0
  1257. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushRequest.json +51 -0
  1258. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageSubscriber.json +80 -0
  1259. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Package_Install_Event_Type.json +99 -0
  1260. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Participant.json +87 -0
  1261. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Partner.json +133 -0
  1262. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundAllocation.json +176 -0
  1263. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundClaim.json +173 -0
  1264. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundRequest.json +221 -0
  1265. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerMarketingBudget.json +212 -0
  1266. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkConnection.json +75 -0
  1267. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkRecordConnection.json +77 -0
  1268. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkSyncLog.json +53 -0
  1269. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerRole.json +98 -0
  1270. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartyConsent.json +205 -0
  1271. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Payment.json +627 -0
  1272. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentAuthAdjustment.json +309 -0
  1273. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentAuthorization.json +389 -0
  1274. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCredit.json +275 -0
  1275. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCreditLinePayment.json +207 -0
  1276. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCreditTransaction.json +186 -0
  1277. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGateway.json +219 -0
  1278. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGatewayLog.json +285 -0
  1279. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGatewayProvider.json +144 -0
  1280. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGroup.json +90 -0
  1281. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentInitiationSource.json +278 -0
  1282. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentIntent.json +632 -0
  1283. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentIntentEvent.json +135 -0
  1284. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLineInvoice.json +269 -0
  1285. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLink.json +291 -0
  1286. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLinkEvent.json +71 -0
  1287. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentMethod.json +280 -0
  1288. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentSchedule.json +292 -0
  1289. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleItem.json +291 -0
  1290. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentSchedulePolicy.json +158 -0
  1291. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleTreatment.json +159 -0
  1292. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleTreatmentDtl.json +193 -0
  1293. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentTerm.json +116 -0
  1294. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentTermItem.json +152 -0
  1295. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingOrderSummary.json +241 -0
  1296. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingServiceRouting.json +391 -0
  1297. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingServiceRoutingInteractionInfo.json +126 -0
  1298. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Period.json +133 -0
  1299. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSet.json +4304 -0
  1300. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetAssignment.json +124 -0
  1301. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetGroup.json +57 -0
  1302. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetGroupComponent.json +41 -0
  1303. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicense.json +4286 -0
  1304. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicenseAssign.json +111 -0
  1305. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicenseDefinition.json +58 -0
  1306. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetTabSetting.json +75 -0
  1307. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionUpdateEventLog.json +68 -0
  1308. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Permission_Update_Event_Type.json +78 -0
  1309. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersnlBatchDecision.json +63 -0
  1310. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonAccountOwnerPowerUser.json +113 -0
  1311. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonTraining.json +62 -0
  1312. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalOrgInfo.json +120 -0
  1313. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationDecision.json +75 -0
  1314. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationObjective.json +59 -0
  1315. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationPoint.json +117 -0
  1316. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationSchema.json +141 -0
  1317. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationTargetInfo.json +115 -0
  1318. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicket.json +154 -0
  1319. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicketAssignment.json +101 -0
  1320. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicketProduct.json +168 -0
  1321. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PicklistValueInfo.json +105 -0
  1322. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspMetricConfig.json +104 -0
  1323. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspMetricConfigLocalization.json +42 -0
  1324. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspectionListView.json +174 -0
  1325. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspectionSumField.json +82 -0
  1326. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformAction.json +324 -0
  1327. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformEventUsageMetric.json +116 -0
  1328. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformStatusAlertEvent.json +106 -0
  1329. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Platform_Encryption_Event_Type.json +103 -0
  1330. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PortalDelegablePermissionSet.json +107 -0
  1331. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PplnInspListViewCalcClmn.json +46 -0
  1332. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceConfigDeclineReason.json +77 -0
  1333. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceDeclineReason.json +87 -0
  1334. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfig.json +269 -0
  1335. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfigProfile.json +77 -0
  1336. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfigUser.json +77 -0
  1337. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentGroup.json +43 -0
  1338. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentGroupShape.json +72 -0
  1339. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentItem.json +49 -0
  1340. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentItemShape.json +85 -0
  1341. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentSchedule.json +160 -0
  1342. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentTier.json +181 -0
  1343. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectExecLineItem.json +161 -0
  1344. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectionExecution.json +67 -0
  1345. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectionTerm.json +76 -0
  1346. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricebook2.json +160 -0
  1347. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricebook2History.json +109 -0
  1348. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PricebookEntry.json +191 -0
  1349. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PricebookEntryAdjustment.json +87 -0
  1350. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricing_Event_Type.json +95 -0
  1351. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyHold.json +80 -0
  1352. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyHoldReason.json +49 -0
  1353. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyJobSession.json +296 -0
  1354. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyObjectSession.json +274 -0
  1355. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRTBFRequest.json +153 -0
  1356. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRequest.json +103 -0
  1357. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRtntStoreDelStatus.json +45 -0
  1358. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacySessionRecordFailure.json +135 -0
  1359. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Problem.json +254 -0
  1360. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProblemIncident.json +116 -0
  1361. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProblemRelatedItem.json +126 -0
  1362. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessDefinition.json +125 -0
  1363. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessException.json +267 -0
  1364. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessFlowMigration.json +117 -0
  1365. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstance.json +170 -0
  1366. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceHistory.json +193 -0
  1367. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceNode.json +163 -0
  1368. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceStep.json +155 -0
  1369. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceWorkitem.json +127 -0
  1370. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessNode.json +83 -0
  1371. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProducerCommission.json +303 -0
  1372. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Product2.json +477 -0
  1373. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Product2DataTranslation.json +45 -0
  1374. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttribute.json +110 -0
  1375. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSet.json +102 -0
  1376. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSetItem.json +107 -0
  1377. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSetProduct.json +97 -0
  1378. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCatalog.json +175 -0
  1379. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategory.json +168 -0
  1380. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategoryDataTranslation.json +43 -0
  1381. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategoryProduct.json +143 -0
  1382. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductComponentGroup.json +170 -0
  1383. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductConsumed.json +257 -0
  1384. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductDetectedPriceChange.json +64 -0
  1385. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductEntitlementTemplate.json +70 -0
  1386. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductFeaturedProduct.json +132 -0
  1387. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductItem.json +185 -0
  1388. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductItemTransaction.json +154 -0
  1389. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductMedia.json +150 -0
  1390. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductQuantityRule.json +106 -0
  1391. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRelatedComponent.json +164 -0
  1392. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRelationshipType.json +105 -0
  1393. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequest.json +340 -0
  1394. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequestLineItem.json +367 -0
  1395. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequired.json +168 -0
  1396. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductSellingModel.json +120 -0
  1397. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductSellingModelOption.json +161 -0
  1398. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaign.json +192 -0
  1399. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignItem.json +150 -0
  1400. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignItemStatus.json +107 -0
  1401. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignStatus.json +107 -0
  1402. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductTransfer.json +372 -0
  1403. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductWarrantyTerm.json +122 -0
  1404. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Profile.json +4247 -0
  1405. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkill.json +131 -0
  1406. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillEndorsement.json +105 -0
  1407. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillShare.json +95 -0
  1408. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillUser.json +116 -0
  1409. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProgramProduct.json +128 -0
  1410. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProgramRebateType.json +294 -0
  1411. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Promotion.json +481 -0
  1412. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionLineItemRule.json +147 -0
  1413. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionMarketSegment.json +129 -0
  1414. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionQualifier.json +239 -0
  1415. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegment.json +113 -0
  1416. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegmentBuyerGroup.json +126 -0
  1417. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegmentSalesStore.json +126 -0
  1418. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionTarget.json +257 -0
  1419. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionTier.json +119 -0
  1420. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Prompt.json +99 -0
  1421. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptAction.json +216 -0
  1422. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptActionOwnerSharingRule.json +48 -0
  1423. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptActionShare.json +86 -0
  1424. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptError.json +126 -0
  1425. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptLocalization.json +93 -0
  1426. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptVersion.json +533 -0
  1427. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptVersionLocalization.json +93 -0
  1428. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProrationPolicy.json +114 -0
  1429. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Prospect.json +187 -0
  1430. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentDataSource.json +8 -0
  1431. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentRcmdTarget.json +51 -0
  1432. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentSpec.json +8 -0
  1433. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentSpecParm.json +8 -0
  1434. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentUserSpec.json +8 -0
  1435. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PublicComplaint.json +425 -0
  1436. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PurchaseQuantityRule.json +146 -0
  1437. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PushTopic.json +170 -0
  1438. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PushUpgradeCustomization.json +46 -0
  1439. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PymtSchdDistributionMethod.json +137 -0
  1440. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Question.json +269 -0
  1441. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionDataCategorySelection.json +89 -0
  1442. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionReportAbuse.json +87 -0
  1443. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionSubscription.json +110 -0
  1444. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueueRoutingConfig.json +186 -0
  1445. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueueSobject.json +70 -0
  1446. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueuedExecutionEventLog.json +78 -0
  1447. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Queued_Execution_Event_Type.json +94 -0
  1448. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuickText.json +189 -0
  1449. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuickTextUsage.json +170 -0
  1450. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Quote.json +895 -0
  1451. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteAction.json +139 -0
  1452. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteAdjustmentGroup.json +66 -0
  1453. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteDocument.json +150 -0
  1454. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteItemTaxItem.json +158 -0
  1455. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineGroup.json +158 -0
  1456. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineItem.json +986 -0
  1457. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineItemRecipient.json +287 -0
  1458. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLinePriceAdjustment.json +95 -0
  1459. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineRelationship.json +206 -0
  1460. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineWorkSource.json +55 -0
  1461. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteRecipientGroup.json +145 -0
  1462. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteRecipientGroupMember.json +126 -0
  1463. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/REST_API_Event_Type.json +143 -0
  1464. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecentFieldChange.json +123 -0
  1465. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecentlyViewed.json +199 -0
  1466. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Recommendation.json +202 -0
  1467. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecommendationResponse.json +207 -0
  1468. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordAction.json +190 -0
  1469. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordActionHistory.json +169 -0
  1470. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordType.json +136 -0
  1471. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordTypeLocalization.json +93 -0
  1472. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordVisibility.json +30 -0
  1473. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFilterCriteria.json +170 -0
  1474. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFilterCriteriaRule.json +195 -0
  1475. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFltrCritMonitor.json +142 -0
  1476. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RedirectWhitelistUrl.json +111 -0
  1477. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Refund.json +522 -0
  1478. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RefundLinePayment.json +264 -0
  1479. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RegisteredExternalService.json +176 -0
  1480. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RelatedListColumnDefinition.json +142 -0
  1481. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RelatedListDefinition.json +141 -0
  1482. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RemoteKeyCalloutEvent.json +52 -0
  1483. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Reply.json +171 -0
  1484. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyEmailSettings.json +158 -0
  1485. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyReportAbuse.json +87 -0
  1486. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyText.json +42 -0
  1487. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report.json +177 -0
  1488. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportEventLog.json +142 -0
  1489. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportExportEventLog.json +73 -0
  1490. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportTag.json +38 -0
  1491. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report_Event_Type.json +145 -0
  1492. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report_Export_Event_Type.json +79 -0
  1493. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationLevel.json +101 -0
  1494. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationLevelLocalization.json +93 -0
  1495. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationPointsRule.json +88 -0
  1496. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ResourceAbsence.json +243 -0
  1497. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ResourcePreference.json +133 -0
  1498. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RestApiEventLog.json +132 -0
  1499. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RetentionStoreUsage.json +148 -0
  1500. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrder.json +653 -0
  1501. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderItemAdjustment.json +158 -0
  1502. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderItemTax.json +179 -0
  1503. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderLineItem.json +506 -0
  1504. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderOwnerSharingRule.json +48 -0
  1505. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RevenueAsyncOperation.json +216 -0
  1506. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RevenueTransactionErrorLog.json +245 -0
  1507. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaFlowResultEvent.json +8 -0
  1508. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobot.json +8 -0
  1509. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotAsgnMaintWindow.json +8 -0
  1510. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotAsgnSessionInf.json +8 -0
  1511. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotDefinition.json +8 -0
  1512. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotMaintWindow.json +8 -0
  1513. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotMaintWindowDef.json +8 -0
  1514. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPool.json +8 -0
  1515. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolAsgnRobot.json +8 -0
  1516. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolDefinition.json +8 -0
  1517. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolFlowAsgn.json +8 -0
  1518. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotSessionInfo.json +8 -0
  1519. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotSessionInfoDef.json +8 -0
  1520. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RuleTerritory2Association.json +86 -0
  1521. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOAP_API_Event_Type.json +131 -0
  1522. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSDeployment.json +53 -0
  1523. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSSession.json +105 -0
  1524. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSSessionActivity.json +38 -0
  1525. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesAIScoreCycle.json +28 -0
  1526. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesAIScoreModelFactor.json +85 -0
  1527. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesChannel.json +147 -0
  1528. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesMethodologyDef.json +60 -0
  1529. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesMethodologyDefItem.json +78 -0
  1530. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesStoreCatalog.json +71 -0
  1531. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransaction.json +34 -0
  1532. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionItemShape.json +199 -0
  1533. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionShape.json +59 -0
  1534. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionType.json +111 -0
  1535. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTrxnItemRelationShape.json +78 -0
  1536. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesWorkQueueSettings.json +85 -0
  1537. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceContract.json +175 -0
  1538. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceInvoice.json +71 -0
  1539. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceLoginAsEventLog.json +48 -0
  1540. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforcePayment.json +50 -0
  1541. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceQuote.json +46 -0
  1542. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Salesforce_Surveys_Object_Model.json +8 -0
  1543. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SamlSsoConfig.json +313 -0
  1544. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SandboxStatusEventLog.json +53 -0
  1545. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Sandbox_Event_Type.json +59 -0
  1546. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SavedPaymentMethod.json +475 -0
  1547. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SavedPaymentMethodEvent.json +71 -0
  1548. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingAdherenceDetail.json +57 -0
  1549. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingAdherenceSummary.json +119 -0
  1550. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingConstraint.json +252 -0
  1551. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingObjective.json +119 -0
  1552. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingRule.json +119 -0
  1553. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingRuleParameter.json +95 -0
  1554. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Scontrol.json +170 -0
  1555. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScontrolLocalization.json +98 -0
  1556. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScoreIntelligence.json +8 -0
  1557. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Scorecard.json +125 -0
  1558. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScorecardAssociation.json +119 -0
  1559. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScorecardMetric.json +121 -0
  1560. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScratchOrgInfo.json +411 -0
  1561. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchActivity.json +187 -0
  1562. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchClickEventLog.json +50 -0
  1563. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchEventLog.json +55 -0
  1564. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchLayout.json +136 -0
  1565. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchPromotionRule.json +81 -0
  1566. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Search_Click_Event_Type.json +51 -0
  1567. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Search_Event_Type.json +55 -0
  1568. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityCustomBaseline.json +118 -0
  1569. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityHealthCheckAlertRecipient.json +38 -0
  1570. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityHealthCheckResult.json +48 -0
  1571. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SelfServiceUser.json +92 -0
  1572. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Seller.json +167 -0
  1573. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SenderEmailAddress.json +149 -0
  1574. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceAppointment.json +621 -0
  1575. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceAppointmentStatus.json +107 -0
  1576. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannel.json +236 -0
  1577. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelFieldPriority.json +33 -0
  1578. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelStatus.json +77 -0
  1579. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelStatusField.json +87 -0
  1580. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceContract.json +522 -0
  1581. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceContractOwnerSharingRule.json +48 -0
  1582. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrew.json +115 -0
  1583. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrewMember.json +142 -0
  1584. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrewOwnerSharingRule.json +48 -0
  1585. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServicePresenceStatus.json +87 -0
  1586. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceReport.json +180 -0
  1587. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceReportLayout.json +110 -0
  1588. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceRequest.json +147 -0
  1589. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResource.json +260 -0
  1590. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceCapacity.json +158 -0
  1591. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceCapacityHistory.json +96 -0
  1592. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceDataTranslation.json +43 -0
  1593. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceOwnerSharingRule.json +46 -0
  1594. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourcePreference.json +147 -0
  1595. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceSkill.json +156 -0
  1596. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceSetupProvisioning.json +140 -0
  1597. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritory.json +320 -0
  1598. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryDataTranslation.json +43 -0
  1599. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryLocation.json +96 -0
  1600. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryMember.json +277 -0
  1601. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryWorkType.json +131 -0
  1602. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SessionPermSetActivation.json +126 -0
  1603. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupAssistantStep.json +10 -0
  1604. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupAuditTrail.json +109 -0
  1605. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupEntityAccess.json +75 -0
  1606. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcCustomerForPartner.json +144 -0
  1607. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOffer.json +293 -0
  1608. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOfferItem.json +90 -0
  1609. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrder.json +263 -0
  1610. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrderBillingTrxn.json +49 -0
  1611. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrderItem.json +113 -0
  1612. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPackage.json +36 -0
  1613. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPackageVersion.json +50 -0
  1614. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPayout.json +66 -0
  1615. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPermSetLicense.json +35 -0
  1616. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerProductLicense.json +53 -0
  1617. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerProvisionProduct.json +41 -0
  1618. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerSbscrOffer.json +248 -0
  1619. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerSbscrOfferItem.json +74 -0
  1620. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTenant.json +62 -0
  1621. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTenantPackage.json +69 -0
  1622. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTermSet.json +94 -0
  1623. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTermSetProduct.json +96 -0
  1624. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTntPermSetLic.json +82 -0
  1625. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTntPkgLicense.json +75 -0
  1626. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShapeRepresentation.json +41 -0
  1627. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollection.json +133 -0
  1628. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollectionItem.json +95 -0
  1629. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollectionMember.json +85 -0
  1630. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Shift.json +293 -0
  1631. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftHistory.json +104 -0
  1632. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftOwnerSharingRule.json +48 -0
  1633. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftPattern.json +140 -0
  1634. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftPatternEntry.json +134 -0
  1635. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftSegment.json +57 -0
  1636. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftSegmentType.json +69 -0
  1637. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftShare.json +97 -0
  1638. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftStatus.json +107 -0
  1639. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftTemplate.json +211 -0
  1640. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Shipment.json +462 -0
  1641. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShipmentItem.json +177 -0
  1642. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingCarrier.json +124 -0
  1643. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingCarrierMethod.json +167 -0
  1644. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingConfigSetProduct.json +95 -0
  1645. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingConfigurationSet.json +126 -0
  1646. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingRateArea.json +103 -0
  1647. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingRateGroup.json +83 -0
  1648. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SignupRequest.json +322 -0
  1649. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Site.json +464 -0
  1650. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteDetail.json +60 -0
  1651. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteDomain.json +33 -0
  1652. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteEventLog.json +132 -0
  1653. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteHistory.json +100 -0
  1654. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteIframeWhitelistUrl.json +34 -0
  1655. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteRedirectMapping.json +121 -0
  1656. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Sites_Event_Type.json +127 -0
  1657. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Skill.json +122 -0
  1658. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillLevelDefinition.json +59 -0
  1659. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillLevelProgress.json +72 -0
  1660. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillProfile.json +77 -0
  1661. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillRequirement.json +158 -0
  1662. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillUser.json +77 -0
  1663. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SlaProcess.json +160 -0
  1664. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SlackChannelRelatedRecord.json +99 -0
  1665. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Snippet.json +57 -0
  1666. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SnippetAssignment.json +28 -0
  1667. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SoapApiEventLog.json +127 -0
  1668. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SocialPersona.json +354 -0
  1669. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SocialPost.json +682 -0
  1670. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Solution.json +214 -0
  1671. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SolutionStatus.json +104 -0
  1672. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SolutionTag.json +38 -0
  1673. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepoProvider.json +57 -0
  1674. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepository.json +74 -0
  1675. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepositoryBranch.json +71 -0
  1676. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedEmail.json +8 -0
  1677. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedInviteeEmail.json +81 -0
  1678. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedUnmtchdEmailAddr.json +64 -0
  1679. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedUnmtchdEmailAddrRela.json +41 -0
  1680. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Stamp.json +87 -0
  1681. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StampAssignment.json +74 -0
  1682. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardInvocableActionType.json +97 -0
  1683. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameChangeEvent.json +10 -0
  1684. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameFeed.json +78 -0
  1685. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameHistory.json +31 -0
  1686. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameOwnerSharingRule.json +34 -0
  1687. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameShare.json +28 -0
  1688. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Feed.json +78 -0
  1689. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Feed_Feed.json +78 -0
  1690. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_History.json +31 -0
  1691. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_History_History.json +31 -0
  1692. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_OwnerSharingRule.json +34 -0
  1693. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_OwnerSharingRule_OwnerSharingRule.json +34 -0
  1694. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Share.json +28 -0
  1695. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Share_Share.json +28 -0
  1696. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardShippingRate.json +192 -0
  1697. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Standard_Objects.json +8 -0
  1698. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StaticResource.json +127 -0
  1699. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StoreIntegratedService.json +95 -0
  1700. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StreamingChannel.json +126 -0
  1701. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Survey.json +175 -0
  1702. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyEmailBranding.json +137 -0
  1703. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyEngagementContext.json +117 -0
  1704. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyInvitation.json +240 -0
  1705. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyPage.json +93 -0
  1706. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestion.json +202 -0
  1707. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionChoice.json +117 -0
  1708. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionResponse.json +194 -0
  1709. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionScore.json +210 -0
  1710. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyResponse.json +238 -0
  1711. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveySubject.json +151 -0
  1712. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyVersion.json +150 -0
  1713. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyVersionAddlInfo.json +135 -0
  1714. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogCategory.json +136 -0
  1715. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogCategoryItem.json +106 -0
  1716. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogFilterCriteria.json +71 -0
  1717. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogItemDef.json +245 -0
  1718. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogReqRelatedItem.json +111 -0
  1719. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogRequest.json +238 -0
  1720. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Swarm.json +228 -0
  1721. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SwarmMember.json +174 -0
  1722. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TabDefinition.json +136 -0
  1723. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TagDefinition.json +12 -0
  1724. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Task.json +434 -0
  1725. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskPriority.json +106 -0
  1726. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskRelation.json +98 -0
  1727. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskStatus.json +106 -0
  1728. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskTag.json +38 -0
  1729. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskWhoRelation.json +97 -0
  1730. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngine.json +268 -0
  1731. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngineInteractionLog.json +254 -0
  1732. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngineProvider.json +128 -0
  1733. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxGeoConfig.json +126 -0
  1734. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxPolicy.json +131 -0
  1735. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxRate.json +283 -0
  1736. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxTreatment.json +177 -0
  1737. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantConsumptionAlert.json +178 -0
  1738. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantScrAIPrmptInjection.json +93 -0
  1739. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecret.json +78 -0
  1740. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAIGtwyUsage.json +103 -0
  1741. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAlertRuleSelectedTenant.json +35 -0
  1742. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAnomaly.json +88 -0
  1743. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityApiAnomaly.json +120 -0
  1744. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCertificate.json +98 -0
  1745. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityConfigAgent.json +88 -0
  1746. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityConnectedApp.json +100 -0
  1747. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCredentialStuffing.json +105 -0
  1748. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricDetail.json +58 -0
  1749. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricSetup.json +66 -0
  1750. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricStat.json +68 -0
  1751. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityEncryptedField.json +83 -0
  1752. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityEncryptionPolicy.json +73 -0
  1753. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityFeature.json +65 -0
  1754. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityGuestUserAnomaly.json +110 -0
  1755. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckBaselineTrend.json +90 -0
  1756. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckDetail.json +70 -0
  1757. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckTrend.json +75 -0
  1758. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLicense.json +85 -0
  1759. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLogin.json +70 -0
  1760. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLoginIpRangeTrend.json +95 -0
  1761. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMetricDetail.json +95 -0
  1762. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMetricDetailLink.json +38 -0
  1763. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMobilePolicyTrend.json +105 -0
  1764. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMonitorMetric.json +70 -0
  1765. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityNotification.json +85 -0
  1766. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityNotificationRule.json +75 -0
  1767. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPackage.json +105 -0
  1768. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicy.json +65 -0
  1769. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicyChangeLog.json +45 -0
  1770. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicyDeployment.json +55 -0
  1771. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicySelectedTenant.json +35 -0
  1772. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityReportAnomaly.json +95 -0
  1773. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecuritySessionHijacking.json +140 -0
  1774. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTenantChangeLog.json +41 -0
  1775. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTenantInfo.json +70 -0
  1776. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTransactionPolicyTrend.json +85 -0
  1777. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTrigTransactionSecurityPol.json +137 -0
  1778. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTrustedIpRangeTrend.json +90 -0
  1779. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityUserActivity.json +75 -0
  1780. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityUserPerm.json +95 -0
  1781. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantUsageEntitlement.json +179 -0
  1782. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory.json +75 -0
  1783. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2.json +155 -0
  1784. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2AlignmentLog.json +139 -0
  1785. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2Model.json +148 -0
  1786. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ModelHistory.json +94 -0
  1787. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ObjSharingConfig.json +96 -0
  1788. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ObjectExclusion.json +95 -0
  1789. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2Type.json +111 -0
  1790. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TerritoryAdminAssignment.json +122 -0
  1791. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TerritoryMgmtObjectConfig.json +117 -0
  1792. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TestSuiteMembership.json +81 -0
  1793. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ThirdPartyAccountLink.json +128 -0
  1794. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ThreatDetectionFeedback.json +129 -0
  1795. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Time-Based_Workflow_Event_Type.json +87 -0
  1796. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSheet.json +181 -0
  1797. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSheetEntry.json +208 -0
  1798. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSlot.json +185 -0
  1799. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSlotHistory.json +91 -0
  1800. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TodayGoal.json +125 -0
  1801. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopInsight.json +8 -0
  1802. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Topic.json +99 -0
  1803. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicAssignment.json +109 -0
  1804. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicLocalization.json +93 -0
  1805. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicUserEvent.json +79 -0
  1806. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TransactionSecurityEventLog.json +130 -0
  1807. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TransactionSecurityPolicy.json +206 -0
  1808. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Transaction_Security_Event_Type.json +103 -0
  1809. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Translation.json +83 -0
  1810. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TravelMode.json +146 -0
  1811. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorInfo.json +33 -0
  1812. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorMethodsInfo.json +75 -0
  1813. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorTempCode.json +37 -0
  1814. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UI_Telemetry_Navigation_Timing_Event_Type.json +317 -0
  1815. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UI_Telemetry_Resource_Timing_Event.json +276 -0
  1816. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/URI_Event_Type.json +95 -0
  1817. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiAgentInteractionEventLog.json +233 -0
  1818. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiFormulaCriterion.json +116 -0
  1819. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiFormulaRule.json +134 -0
  1820. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiTelemetryNavTmEventLog.json +335 -0
  1821. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiTelemetryRsrcTmEventLog.json +285 -0
  1822. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UndecidedEventRelation.json +117 -0
  1823. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivity.json +113 -0
  1824. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityInsight.json +102 -0
  1825. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityParticipant.json +78 -0
  1826. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityRelation.json +58 -0
  1827. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActvtyInsightKeyword.json +71 -0
  1828. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedEmail.json +74 -0
  1829. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedEmailParticipant.json +47 -0
  1830. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedMeeting.json +64 -0
  1831. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedMeetingParticipant.json +47 -0
  1832. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedTask.json +64 -0
  1833. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedTaskParticipant.json +47 -0
  1834. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVideoCall.json +124 -0
  1835. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVideoCallParticipant.json +102 -0
  1836. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVoiceCall.json +124 -0
  1837. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVoiceCallParticipant.json +102 -0
  1838. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UniqueQueryEventLog.json +68 -0
  1839. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Unique_Query_Event_Type.json +51 -0
  1840. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnitOfMeasure.json +190 -0
  1841. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UriEventLog.json +93 -0
  1842. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactFactor.json +111 -0
  1843. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroup.json +121 -0
  1844. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupFactor.json +141 -0
  1845. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupPgmMeasure.json +129 -0
  1846. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupVersion.json +166 -0
  1847. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/User.json +1865 -0
  1848. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccessChange.json +23 -0
  1849. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccessPolicy.json +63 -0
  1850. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccountTeamMember.json +61 -0
  1851. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppInfo.json +103 -0
  1852. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppMenuCustomization.json +106 -0
  1853. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppMenuItem.json +182 -0
  1854. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAuthCertificate.json +63 -0
  1855. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserConfigTransferButton.json +77 -0
  1856. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserConfigTransferSkill.json +75 -0
  1857. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserCustomBadge.json +85 -0
  1858. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserCustomBadgeLocalization.json +93 -0
  1859. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDailyMetric.json +489 -0
  1860. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDailyMetricOwnerSharingRule.json +50 -0
  1861. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDefinedLabel.json +132 -0
  1862. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDefinedLabelAssignment.json +128 -0
  1863. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDevice.json +78 -0
  1864. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDeviceApplication.json +43 -0
  1865. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDeviceHistory.json +41 -0
  1866. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailCalendarSync.json +58 -0
  1867. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailPreferredPerson.json +117 -0
  1868. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailPreferredPersonShare.json +96 -0
  1869. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLicense.json +125 -0
  1870. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserListView.json +87 -0
  1871. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserListViewCriterion.json +96 -0
  1872. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLocationAssignment.json +122 -0
  1873. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLogin.json +70 -0
  1874. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMembershipSharingRule.json +50 -0
  1875. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMonthlyMetric.json +644 -0
  1876. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMonthlyMetricOwnerSharingRule.json +50 -0
  1877. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPackageLicense.json +102 -0
  1878. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPermissionAccess.json +4159 -0
  1879. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPreference.json +69 -0
  1880. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPrioritizedRecord.json +98 -0
  1881. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProfile.json +367 -0
  1882. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvAccount.json +189 -0
  1883. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvAccountStaging.json +173 -0
  1884. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvMockTarget.json +122 -0
  1885. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningConfig.json +204 -0
  1886. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningLog.json +141 -0
  1887. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningRequest.json +235 -0
  1888. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRecordAccess.json +108 -0
  1889. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRelatedRecordContent.json +39 -0
  1890. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRole.json +184 -0
  1891. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserServicePresence.json +199 -0
  1892. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserSetupEntityAccess.json +92 -0
  1893. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserShare.json +102 -0
  1894. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserSharedFeature.json +10 -0
  1895. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTeamMember.json +96 -0
  1896. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory.json +38 -0
  1897. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory2AssocLog.json +66 -0
  1898. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory2Association.json +83 -0
  1899. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserUIPreference.json +131 -0
  1900. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserWorkList.json +94 -0
  1901. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserWorkListItem.json +86 -0
  1902. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VendorCallCenterStatusMap.json +96 -0
  1903. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VerificationHistory.json +196 -0
  1904. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCall.json +316 -0
  1905. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsight.json +98 -0
  1906. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsightAction.json +63 -0
  1907. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsightReason.json +53 -0
  1908. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallParticipant.json +149 -0
  1909. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallRecording.json +179 -0
  1910. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallRecordingStructure.json +73 -0
  1911. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallTranscript.json +85 -0
  1912. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VisualforceAccessMetrics.json +97 -0
  1913. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VisualforceRequestEventLog.json +145 -0
  1914. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Visualforce_Request_Event_Type.json +139 -0
  1915. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCall.json +623 -0
  1916. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsight.json +96 -0
  1917. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsightAction.json +63 -0
  1918. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsightReason.json +46 -0
  1919. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallList.json +35 -0
  1920. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallListItem.json +38 -0
  1921. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallMetrics.json +324 -0
  1922. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallQualityFeedback.json +97 -0
  1923. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallRecording.json +151 -0
  1924. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallRecordingStructure.json +73 -0
  1925. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCoaching.json +89 -0
  1926. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceLocalPresenceNumber.json +96 -0
  1927. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailContent.json +119 -0
  1928. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting.json +109 -0
  1929. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting2.json +54 -0
  1930. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting2Rep.json +61 -0
  1931. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailMessage.json +109 -0
  1932. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceOrgSetting.json +115 -0
  1933. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceUserLine.json +137 -0
  1934. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceUserPreferences.json +89 -0
  1935. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceVendorInfo.json +139 -0
  1936. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceVendorLine.json +150 -0
  1937. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Vote.json +102 -0
  1938. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WarrantyTerm.json +306 -0
  1939. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WaveAutoInstallRequest.json +172 -0
  1940. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Change_Event_Type.json +123 -0
  1941. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Download_Event_Type.json +116 -0
  1942. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Interaction_Event_Type.json +111 -0
  1943. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Performance_Event_Type.json +111 -0
  1944. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCart.json +610 -0
  1945. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartAdjustmentBasis.json +118 -0
  1946. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartAdjustmentGroup.json +210 -0
  1947. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartHistory.json +94 -0
  1948. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebLink.json +278 -0
  1949. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebLinkLocalization.json +98 -0
  1950. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStore.json +445 -0
  1951. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreCatalog.json +117 -0
  1952. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreInventorySource.json +203 -0
  1953. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreMessageContent.json +56 -0
  1954. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreNetwork.json +103 -0
  1955. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStorePricebook.json +118 -0
  1956. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreSearchProdSettings.json +117 -0
  1957. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreShare.json +90 -0
  1958. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebstoreBuyerGroup.json +56 -0
  1959. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wishlist.json +120 -0
  1960. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WishlistItem.json +97 -0
  1961. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkAccess.json +103 -0
  1962. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkAccessShare.json +93 -0
  1963. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkBadge.json +184 -0
  1964. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkBadgeDefinition.json +212 -0
  1965. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityAvailability.json +178 -0
  1966. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityLimit.json +303 -0
  1967. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityUsage.json +307 -0
  1968. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCoaching.json +53 -0
  1969. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkDemographic.json +70 -0
  1970. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedback.json +43 -0
  1971. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackQuestion.json +68 -0
  1972. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackQuestionSet.json +43 -0
  1973. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackRequest.json +133 -0
  1974. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoal.json +138 -0
  1975. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalCollaborator.json +38 -0
  1976. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalCollaboratorHistory.json +41 -0
  1977. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalHistory.json +36 -0
  1978. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalLink.json +41 -0
  1979. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalShare.json +36 -0
  1980. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItem.json +135 -0
  1981. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItemComponent.json +77 -0
  1982. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItemEvent.json +48 -0
  1983. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrder.json +753 -0
  1984. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderHistory.json +102 -0
  1985. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItem.json +636 -0
  1986. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItemHistory.json +102 -0
  1987. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItemStatus.json +107 -0
  1988. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderShare.json +95 -0
  1989. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderStatus.json +107 -0
  1990. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPerformanceCycle.json +63 -0
  1991. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlan.json +194 -0
  1992. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanSelectionRule.json +194 -0
  1993. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanTemplate.json +134 -0
  1994. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanTemplateEntry.json +127 -0
  1995. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkReward.json +65 -0
  1996. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkRewardFund.json +71 -0
  1997. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkRewardFundType.json +83 -0
  1998. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStep.json +244 -0
  1999. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStepStatus.json +108 -0
  2000. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStepTemplate.json +143 -0
  2001. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkThanks.json +127 -0
  2002. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkType.json +276 -0
  2003. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkTypeGroup.json +149 -0
  2004. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkTypeGroupMember.json +121 -0
  2005. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkforceCapacity.json +74 -0
  2006. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkforceCapacityUnit.json +135 -0
  2007. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Workload.json +66 -0
  2008. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkloadUnit.json +87 -0
  2009. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/feedSignal.json +49 -0
  2010. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AIApplication.json +70 -0
  2011. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AIApplicationConfig.json +75 -0
  2012. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AccountPlanObjMeasCalcCond.json +48 -0
  2013. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AccountPlanObjMeasCalcDef.json +74 -0
  2014. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ActivationPlatform.json +105 -0
  2015. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAccountForecastSet.json +148 -0
  2016. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAcctForecastMeasureDef.json +66 -0
  2017. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAcctFrcstDisplayGroup.json +54 -0
  2018. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AnimationRule.json +81 -0
  2019. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexClass.json +82 -0
  2020. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexClassMember.json +64 -0
  2021. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexCodeCoverage.json +54 -0
  2022. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexCodeCoverageAggregate.json +44 -0
  2023. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexComponent.json +27 -0
  2024. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexComponentMember.json +59 -0
  2025. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexEmailNotification.json +38 -0
  2026. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexExecutionOverlayAction.json +67 -0
  2027. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexExecutionOverlayResult.json +72 -0
  2028. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexLog.json +72 -0
  2029. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexOrgWideCoverage.json +29 -0
  2030. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPage.json +88 -0
  2031. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPageInfo.json +69 -0
  2032. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPageMember.json +59 -0
  2033. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexResult.json +25 -0
  2034. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestQueueItem.json +52 -0
  2035. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestResult.json +97 -0
  2036. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestResultLimits.json +87 -0
  2037. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestRunResult.json +97 -0
  2038. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestSuite.json +31 -0
  2039. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTrigger.json +107 -0
  2040. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTriggerMember.json +64 -0
  2041. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AssignmentRule.json +10 -0
  2042. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuraDefinition.json +47 -0
  2043. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuraDefinitionBundle.json +67 -0
  2044. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuthorizedEmailDomain.json +60 -0
  2045. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AutoResponseRule.json +37 -0
  2046. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BrandingSet.json +67 -0
  2047. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BrandingSetProperty.json +37 -0
  2048. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BriefcaseDefinition.json +74 -0
  2049. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusProcessFeedbackConfig.json +95 -0
  2050. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcess.json +47 -0
  2051. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessDefinition.json +50 -0
  2052. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessFeedback.json +40 -0
  2053. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessGroup.json +55 -0
  2054. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Certificate.json +74 -0
  2055. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CleanDataService.json +57 -0
  2056. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CleanRule.json +97 -0
  2057. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ColorDefinition.json +47 -0
  2058. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CommunityWorkspacesNode.json +70 -0
  2059. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayout.json +57 -0
  2060. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayoutInfo.json +74 -0
  2061. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayoutItemInfo.json +54 -0
  2062. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConnectedApplication.json +10 -0
  2063. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ContactCenterChannel.json +57 -0
  2064. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ContainerAsyncRequest.json +59 -0
  2065. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConversationChannelDefinition.json +191 -0
  2066. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConversationVendorInfo.json +174 -0
  2067. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CspTrustedSite.json +74 -0
  2068. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomApplication.json +92 -0
  2069. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomField.json +47 -0
  2070. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomFieldDisplay.json +57 -0
  2071. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomFieldMember.json +54 -0
  2072. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomHelpMenuSection.json +58 -0
  2073. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomHttpHeader.json +47 -0
  2074. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomMsgChannel.json +56 -0
  2075. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotifActionDef.json +58 -0
  2076. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotificationActionGroup.json +36 -0
  2077. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotificationType.json +70 -0
  2078. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomObject.json +67 -0
  2079. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomTab.json +86 -0
  2080. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataAssessmentConfigItem.json +37 -0
  2081. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataIntegrationRecordPurchasePermission.json +37 -0
  2082. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataSourceBundleDefinition.json +72 -0
  2083. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataStreamTemplate.json +128 -0
  2084. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataType.json +45 -0
  2085. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DebugLevel.json +76 -0
  2086. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroup.json +37 -0
  2087. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroupGrant.json +43 -0
  2088. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroupMember.json +38 -0
  2089. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DeployDetails.json +21 -0
  2090. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DeployRequest.json +153 -0
  2091. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Document.json +125 -0
  2092. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DomainProvision.json +59 -0
  2093. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DuplicateJobDefinition.json +45 -0
  2094. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DuplicateJobMatchingRuleDefinition.json +30 -0
  2095. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmailTemplate.json +72 -0
  2096. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceBranding.json +97 -0
  2097. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceConfig.json +107 -0
  2098. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomComponent.json +44 -0
  2099. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomLabel.json +47 -0
  2100. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomization.json +43 -0
  2101. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFieldService.json +105 -0
  2102. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFlow.json +49 -0
  2103. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFlowConfig.json +44 -0
  2104. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceLiveAgent.json +144 -0
  2105. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceMenuItem.json +98 -0
  2106. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceMenuSettings.json +69 -0
  2107. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceQuickAction.json +42 -0
  2108. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceResource.json +46 -0
  2109. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EngagementInsightType.json +98 -0
  2110. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EnrichedField.json +39 -0
  2111. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityDefinition.json +486 -0
  2112. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityLimit.json +57 -0
  2113. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityParticle.json +303 -0
  2114. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventDelivery.json +72 -0
  2115. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventRelayConfig.json +85 -0
  2116. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventSubscription.json +70 -0
  2117. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExtConvParticipantIntegDef.json +75 -0
  2118. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalAuthIdentityProvider.json +109 -0
  2119. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalClientAppSettings.json +10 -0
  2120. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalCredential.json +117 -0
  2121. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalDataSource.json +138 -0
  2122. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalDataSrcDescriptor.json +96 -0
  2123. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalServiceRegistration.json +138 -0
  2124. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalString.json +60 -0
  2125. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalStringLocalization.json +47 -0
  2126. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldDefinition.json +587 -0
  2127. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMapping.json +47 -0
  2128. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMappingField.json +42 -0
  2129. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMappingRow.json +42 -0
  2130. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldRestrictionRule.json +103 -0
  2131. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldSet.json +47 -0
  2132. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlexiPage.json +78 -0
  2133. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Flow.json +97 -0
  2134. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowDefinition.json +77 -0
  2135. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowElementTestCoverage.json +37 -0
  2136. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTest.json +63 -0
  2137. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTestCoverage.json +47 -0
  2138. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTestResult.json +10 -0
  2139. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingDisplayedFamily.json +30 -0
  2140. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingFilter.json +71 -0
  2141. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingFilterCondition.json +86 -0
  2142. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingSourceDefinition.json +85 -0
  2143. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingType.json +91 -0
  2144. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingTypeSource.json +86 -0
  2145. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaFunction.json +104 -0
  2146. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaFunctionAllowedType.json +37 -0
  2147. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaOperator.json +42 -0
  2148. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GenAiFunctionDefinition.json +80 -0
  2149. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GenAiPlannerDefinition.json +60 -0
  2150. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GlobalValueSet.json +46 -0
  2151. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Group.json +59 -0
  2152. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GtwyProvPaymentMethodType.json +99 -0
  2153. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HeapDump.json +33 -0
  2154. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HistoryRetentionJob.json +50 -0
  2155. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HomePageComponent.json +58 -0
  2156. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HomePageLayout.json +42 -0
  2157. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IPAddressRange.json +71 -0
  2158. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IconDefinition.json +57 -0
  2159. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InboundNetworkConnProperty.json +38 -0
  2160. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InboundNetworkConnection.json +81 -0
  2161. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Index.json +57 -0
  2162. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IndexField.json +52 -0
  2163. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InstalledSubscriberPackage.json +37 -0
  2164. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InstalledSubscriberPackageVersion.json +37 -0
  2165. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InvocableActionExtension.json +54 -0
  2166. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/KeywordList.json +52 -0
  2167. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Layout.json +67 -0
  2168. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningComponentBundle.json +82 -0
  2169. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningComponentResource.json +49 -0
  2170. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningOutApp.json +47 -0
  2171. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LookupFilter.json +83 -0
  2172. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLDataDefinition.json +100 -0
  2173. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLField.json +56 -0
  2174. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLFilter.json +96 -0
  2175. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLPredictionDefinition.json +110 -0
  2176. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedContentNodeType.json +57 -0
  2177. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedContentType.json +51 -0
  2178. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedEventSubscription.json +65 -0
  2179. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtAction.json +78 -0
  2180. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtActivity.json +73 -0
  2181. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtAssignment.json +39 -0
  2182. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtension.json +57 -0
  2183. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MatchingRule.json +77 -0
  2184. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MenuItem.json +62 -0
  2185. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataComponentDependency.json +64 -0
  2186. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataContainer.json +29 -0
  2187. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataPackage.json +37 -0
  2188. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataPackageVersion.json +62 -0
  2189. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataWarningsHeader.json +16 -0
  2190. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ModerationRule.json +89 -0
  2191. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/NamedCredential.json +264 -0
  2192. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ObjectHierarchyRelationship.json +86 -0
  2193. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OmniSupervisorConfig.json +59 -0
  2194. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OperationLog.json +109 -0
  2195. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OpportunitySplitType.json +76 -0
  2196. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OrgDomainLog.json +37 -0
  2197. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OutboundNetworkConnProperty.json +38 -0
  2198. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OutboundNetworkConnection.json +79 -0
  2199. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OwnerChangeOptionInfo.json +64 -0
  2200. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2.json +84 -0
  2201. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2Member.json +57 -0
  2202. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2Version.json +157 -0
  2203. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2VersionCreateRequest.json +105 -0
  2204. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2VersionCreateRequestError.json +30 -0
  2205. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageInstallRequest.json +116 -0
  2206. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageUploadRequest.json +83 -0
  2207. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageVersionUninstallRequestError.json +32 -0
  2208. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PardotTenant.json +66 -0
  2209. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistant.json +87 -0
  2210. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistantStepInfo.json +47 -0
  2211. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistantStepItem.json +47 -0
  2212. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PaymentGatewayProvider.json +84 -0
  2213. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionDependency.json +44 -0
  2214. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSet.json +77 -0
  2215. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetAssignment.json +82 -0
  2216. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetGroup.json +64 -0
  2217. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetGroupComponent.json +44 -0
  2218. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetTabSetting.json +39 -0
  2219. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PipelineInspMetricConfig.json +45 -0
  2220. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventChannel.json +68 -0
  2221. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventChannelMember.json +67 -0
  2222. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventMigration.json +37 -0
  2223. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventSubscriberConfig.json +72 -0
  2224. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PostTemplate.json +40 -0
  2225. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PresenceDeclineReason.json +37 -0
  2226. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PresenceUserConfig.json +72 -0
  2227. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProcessFlowMigration.json +84 -0
  2228. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProductAttributeSet.json +63 -0
  2229. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Profile.json +49 -0
  2230. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProfileLayout.json +44 -0
  2231. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Publisher.json +54 -0
  2232. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QueryResult.json +52 -0
  2233. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QueueRoutingConfig.json +82 -0
  2234. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionDefinition.json +144 -0
  2235. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionList.json +27 -0
  2236. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionListItem.json +37 -0
  2237. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecentlyViewed.json +102 -0
  2238. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecommendationStrategy.json +83 -0
  2239. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecordActionDeployment.json +102 -0
  2240. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecordType.json +72 -0
  2241. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RegisteredExternalService.json +104 -0
  2242. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelatedListColumnDefinition.json +83 -0
  2243. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelatedListDefinition.json +83 -0
  2244. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelationshipDomain.json +92 -0
  2245. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelationshipInfo.json +72 -0
  2246. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ReleaseUpdate.json +112 -0
  2247. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ReleaseUpdateStep.json +48 -0
  2248. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RemoteProxy.json +71 -0
  2249. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RestrictionRule.json +91 -0
  2250. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SOQLResult.json +29 -0
  2251. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxInfo.json +113 -0
  2252. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxProcess.json +151 -0
  2253. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxProcessStage.json +85 -0
  2254. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SchedulingObjective.json +59 -0
  2255. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SchedulingRule.json +60 -0
  2256. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Scontrol.json +63 -0
  2257. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SearchLayout.json +72 -0
  2258. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SecurityHealthCheck.json +37 -0
  2259. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SecurityHealthCheckRisks.json +72 -0
  2260. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ServiceChannel.json +92 -0
  2261. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ServicePresenceStatus.json +37 -0
  2262. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ShiftSegmentType.json +72 -0
  2263. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SiteDetail.json +37 -0
  2264. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Skill.json +42 -0
  2265. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/StandardAction.json +67 -0
  2266. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/StaticResource.json +49 -0
  2267. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackage.json +42 -0
  2268. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackageVersion.json +245 -0
  2269. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackageVersionUninstallRequest.json +32 -0
  2270. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogCategory.json +73 -0
  2271. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogCategoryItem.json +51 -0
  2272. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogFulfillFlowItem.json +84 -0
  2273. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogFulfillmentFlow.json +73 -0
  2274. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogItemDef.json +94 -0
  2275. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SymbolTable.json +61 -0
  2276. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TabDefinition.json +77 -0
  2277. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Territory2SupportedObject.json +44 -0
  2278. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TestSuiteMembership.json +32 -0
  2279. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TimeSheetTemplate.json +94 -0
  2280. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TimeSheetTemplateAssignment.json +34 -0
  2281. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TraceFlag.json +92 -0
  2282. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TransactionSecurityPolicy.json +105 -0
  2283. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/User.json +47 -0
  2284. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicy.json +73 -0
  2285. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicyAction.json +40 -0
  2286. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicyFilter.json +49 -0
  2287. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserCriteria.json +52 -0
  2288. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserEntityAccess.json +92 -0
  2289. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserFieldAccess.json +58 -0
  2290. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ValidationRule.json +95 -0
  2291. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/VirtualVisitConfig.json +113 -0
  2292. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WebLink.json +153 -0
  2293. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WebStoreTemplate.json +227 -0
  2294. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkSkillRouting.json +53 -0
  2295. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkSkillRoutingAttribute.json +53 -0
  2296. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowAlert.json +78 -0
  2297. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowFieldUpdate.json +84 -0
  2298. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowOutboundMessage.json +68 -0
  2299. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowRule.json +52 -0
  2300. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowTask.json +68 -0
  2301. package/skills/platform-data-and-tooling-api-context-get/examples/README.md +93 -0
  2302. package/skills/platform-data-and-tooling-api-context-get/examples/bash_section_loading.sh +126 -0
  2303. package/skills/platform-data-and-tooling-api-context-get/examples/javascript_section_loading.js +97 -0
  2304. package/skills/platform-data-and-tooling-api-context-get/examples/python_section_loading.py +109 -0
  2305. package/skills/platform-data-and-tooling-api-context-get/references/data_and_tooling_index_table.md +2194 -0
  2306. package/skills/platform-data-and-tooling-api-context-get/references/usage_guide.md +87 -0
  2307. package/skills/platform-docs-get/README.md +1 -1
  2308. package/skills/platform-docs-get/SKILL.md +4 -5
  2309. package/skills/platform-lightning-type-widget-coordinate/SKILL.md +11 -9
  2310. package/skills/platform-lightning-type-widget-coordinate/examples/existing-lightning-type-with-widget-prompt.md +2 -2
  2311. package/skills/platform-lightning-type-widget-coordinate/examples/new-lightning-type-with-widget-prompt.md +2 -2
  2312. package/skills/platform-lightning-type-widget-coordinate/references/build-plan-format.md +1 -1
  2313. package/skills/platform-lightning-type-widget-coordinate/references/validation-gates.md +4 -4
  2314. package/skills/platform-metadata-deploy/SKILL.md +21 -0
  2315. package/skills/platform-report-generate/SKILL.md +159 -0
  2316. package/skills/platform-report-generate/examples/AccountsCreatedThisYear.report-meta.xml +48 -0
  2317. package/skills/platform-report-generate/examples/OpportunitiesByStageAndQuarter.report-meta.xml +53 -0
  2318. package/skills/platform-report-generate/examples/OpportunitiesByStageReport.report-meta.xml +75 -0
  2319. package/skills/platform-report-generate/examples/TabularOpportunitiesReport.report-meta.xml +49 -0
  2320. package/skills/platform-report-generate/references/chart-types.md +31 -0
  2321. package/skills/platform-report-generate/references/column-names.md +80 -0
  2322. package/skills/platform-report-generate/references/date-intervals.md +56 -0
  2323. package/skills/platform-report-generate/references/errors-and-troubleshooting.md +71 -0
  2324. package/skills/platform-report-generate/references/filter-operations.md +92 -0
  2325. package/skills/platform-report-generate/references/verification-checklist.md +47 -0
  2326. package/skills/platform-sandbox-configure/SKILL.md +424 -0
  2327. package/skills/platform-sharing-owd-configure/SKILL.md +6 -16
  2328. package/skills/platform-sharing-rules-generate/SKILL.md +8 -8
  2329. package/skills/platform-sharing-rules-generate/examples/create-cases.md +152 -0
  2330. package/skills/platform-sharing-rules-generate/examples/delete-cases.md +113 -0
  2331. package/skills/platform-sharing-rules-generate/examples/edit-cases.md +114 -0
  2332. package/skills/service-digital-engagement-channel-configure/SKILL.md +263 -0
  2333. package/skills/service-digital-engagement-channel-configure/assets/messaging_channel_template.xml +102 -0
  2334. package/skills/service-digital-engagement-channel-configure/examples/asa_agent_channel.xml +53 -0
  2335. package/skills/service-digital-engagement-channel-configure/examples/omni_flow_channel.xml +67 -0
  2336. package/skills/service-digital-engagement-channel-configure/examples/omni_queue_channel.xml +52 -0
  2337. package/skills/service-digital-engagement-channel-configure/references/channel_settings.md +294 -0
  2338. package/skills/service-digital-engagement-channel-configure/scripts/normalize-channel-name.sh +24 -0
  2339. package/skills/service-digital-engagement-deployment-configure/SKILL.md +255 -0
  2340. package/skills/service-digital-engagement-deployment-configure/assets/esd_api_mobile_template.xml +25 -0
  2341. package/skills/service-digital-engagement-deployment-configure/assets/esd_web_update_template.xml +33 -0
  2342. package/skills/service-digital-engagement-deployment-configure/examples/esd_api.xml +25 -0
  2343. package/skills/service-digital-engagement-deployment-configure/examples/esd_mobile.xml +25 -0
  2344. package/skills/service-digital-engagement-deployment-configure/examples/esd_web_full.xml +27 -0
  2345. package/skills/service-digital-engagement-deployment-configure/references/branding_and_tooling.md +98 -0
  2346. package/skills/service-digital-engagement-deployment-configure/references/code_snippet.md +75 -0
  2347. package/skills/service-digital-engagement-deployment-configure/references/connect_api_creation.md +144 -0
  2348. package/skills/service-digital-engagement-deployment-configure/references/deployment_settings.md +193 -0
  2349. package/skills/service-digital-engagement-messaging-site-integrate/SKILL.md +289 -0
  2350. package/skills/service-digital-engagement-messaging-site-integrate/references/aura_patch.md +54 -0
  2351. package/skills/service-digital-engagement-messaging-site-integrate/references/bundle_detection.md +56 -0
  2352. package/skills/service-digital-engagement-messaging-site-integrate/references/deploy_and_publish.md +101 -0
  2353. package/skills/service-digital-engagement-messaging-site-integrate/references/lwr_patch.md +55 -0
  2354. package/skills/service-digital-engagement-messaging-site-integrate/references/lwr_route_scaffolding.md +31 -0
  2355. package/skills/service-digital-engagement-messaging-site-integrate/references/manual_fallback.md +65 -0
  2356. package/skills/service-digital-engagement-messaging-site-integrate/scripts/detect_bundle_type.sh +44 -0
  2357. package/skills/service-digital-engagement-messaging-site-integrate/scripts/patch_aura_bundle.sh +135 -0
  2358. package/skills/service-digital-engagement-messaging-site-integrate/scripts/patch_lwr_bundle.sh +132 -0
  2359. package/skills/service-helpagent-coordinate/README.md +123 -0
  2360. package/skills/service-helpagent-coordinate/SKILL.md +255 -0
  2361. package/skills/service-helpagent-coordinate/assets/help-agent-spec.md +275 -0
  2362. package/skills/service-helpagent-coordinate/references/agent-script.md +557 -0
  2363. package/skills/service-helpagent-coordinate/references/channel-help-portal.md +22 -0
  2364. package/skills/service-helpagent-coordinate/references/channel-voice.md +17 -0
  2365. package/skills/service-helpagent-coordinate/references/channel-web-chat.md +76 -0
  2366. package/skills/agentforce-generate/assets/README-legacy.md +0 -89
  2367. package/skills/agentforce-generate/assets/agents/multi-subagent.agent +0 -105
  2368. package/skills/agentforce-generate/assets/apex/models-api-queueable.cls +0 -225
  2369. package/skills/agentforce-generate/assets/components/apex-action.agent +0 -52
  2370. package/skills/agentforce-generate/assets/components/error-handling.agent +0 -58
  2371. package/skills/agentforce-generate/assets/components/escalation-setup.agent +0 -169
  2372. package/skills/agentforce-generate/assets/components/flow-action.agent +0 -66
  2373. package/skills/agentforce-generate/assets/components/n-ary-conditions.agent +0 -110
  2374. package/skills/agentforce-generate/assets/components/subagent-with-actions.agent +0 -40
  2375. package/skills/agentforce-generate/assets/deterministic-routing.agent +0 -166
  2376. package/skills/agentforce-generate/assets/escalation-pattern.agent +0 -209
  2377. package/skills/agentforce-generate/assets/flow-action-lookup.agent +0 -115
  2378. package/skills/agentforce-generate/assets/hub-and-spoke.agent +0 -104
  2379. package/skills/agentforce-generate/assets/metadata/basic-prompt-template.promptTemplate-meta.xml +0 -109
  2380. package/skills/agentforce-generate/assets/metadata/genai-function-apex.xml +0 -92
  2381. package/skills/agentforce-generate/assets/metadata/genai-function-flow.xml +0 -57
  2382. package/skills/agentforce-generate/assets/metadata/genai-plugin.xml +0 -72
  2383. package/skills/agentforce-generate/assets/metadata/http-callout-flow.flow-meta.xml +0 -348
  2384. package/skills/agentforce-generate/assets/metadata/record-grounded-prompt.promptTemplate-meta.xml +0 -136
  2385. package/skills/agentforce-generate/assets/minimal-starter.agent +0 -42
  2386. package/skills/agentforce-generate/assets/prompt-rag-search.agent +0 -131
  2387. package/skills/agentforce-generate/assets/template-single-subagent.agent +0 -81
  2388. package/skills/agentforce-generate/assets/verification-gate.agent +0 -208
  2389. package/skills/agentforce-generate/references/minimal-examples.md +0 -67
  2390. package/skills/platform-sharing-rules-generate/examples/test-cases.md +0 -381
  2391. /package/skills/design-systems-slds-apply/{checklists.md → references/checklists.md} +0 -0
  2392. /package/skills/platform-docs-get/{requirements.txt → scripts/requirements.txt} +0 -0
@@ -1,22 +1,43 @@
1
1
  ---
2
2
  name: agentforce-generate
3
- description: "Build, modify, debug, and deploy agents with Agentforce Agent Script. TRIGGER when: user creates, modifies, or asks about .agent files or aiAuthoringBundle metadata; changes agent behavior, responses, or conversation logic; designs agent actions, tools, subagents, or flow control; writes or reviews an Agent Spec; previews, debugs, deploys, publishes, or tests agents; uses Agent Script CLI commands (sf agent generate/preview/publish/test). DO NOT TRIGGER when: Apex development, Flow building, Prompt Template authoring, Experience Cloud configuration, or general Salesforce CLI tasks unrelated to Agent Script."
4
- compatibility: "Requires Agentforce license, API v66.0+, Einstein Agent User"
3
+ description: "Build, modify, optimize, debug, and deploy agents with Agentforce Agent Script. TRIGGER when: user creates, modifies, optimizes, or asks about .agent files or aiAuthoringBundle metadata; changes agent behavior, responses, or conversation logic; designs agent actions, tools, subagents, or flow control; writes or reviews an Agent Spec; wants to optimize, improve, or refactor an agent; previews, debugs, deploys, publishes, or tests agents; uses Agent Script CLI commands (sf agent generate/preview/publish/test); registers/creates/lists/updates/deletes MCP servers, whitelists/approves MCP tools, fetches MCP assets, or configures MCP authentication (sf agent mcp). DO NOT TRIGGER when: Apex development, Flow building, Prompt Template authoring, Experience Cloud configuration, or general Salesforce CLI tasks unrelated to Agent Script."
5
4
  metadata:
6
- version: "1.0"
5
+ version: "0.11"
6
+ minApiVersion: "66.0"
7
+ relatedSkills:
8
+ - "agentforce-observe"
9
+ - "agentforce-test"
10
+ - "automation-flow-generate"
11
+ - "integration-connectivity-generate"
12
+ - "platform-apex-generate"
13
+ - "platform-metadata-deploy"
14
+ cliTools:
15
+ - tool: ["curl"]
16
+ semver: ">=7.0.0"
17
+ - tool: ["jq"]
18
+ semver: ">=1.6.0"
19
+ - tool: ["npm"]
20
+ semver: ">=9.0.0"
21
+ - tool: ["python3"]
22
+ semver: ">=3.10.0"
23
+ - tool: ["sf"]
24
+ semver: ">=2.139.6"
7
25
  ---
8
26
 
9
27
  # Agent Script Skill
10
28
 
11
29
  ## What This Skill Is For
12
30
 
13
- Agent Script is Salesforce's scripting language for authoring next-generation AI agents on the Atlas Reasoning Engine. Introduced in 2025 with zero training data in any AI model. Everything needed to write, modify, diagnose, or deploy Agent Script agents is in this skill's reference files.
31
+ This skill is for developing Agentforce agents, primarily with Agent Script, Salesforce's scripting language for AI agents.
14
32
 
15
- **⚠️CRITICAL:** Agent Script is NOT AppleScript, JavaScript, Python, or any other
33
+ Org-backed workflows require an Agentforce license, API v66.0 or later, and an
34
+ Einstein Agent User. Static authoring and review can proceed without org access.
35
+
36
+ **CRITICAL:** Agent Script is NOT AppleScript, JavaScript, Python, or any other
16
37
  language. Do NOT confuse Agent Script syntax or semantics with any other
17
38
  language you have been trained on.
18
39
 
19
- Agent Script agents are defined by `AiAuthoringBundle` metadata — a directory with a `.agent` file containing Agent Script source that describes actions, instructions, subagents, flow control, and configuration; and a `bundle-meta.xml` file containing bundle metadata. Agents process utterances by routing through subagents, each with instructions and actions backed by Apex, Flows, Prompt Templates, and other types of backing logic.
40
+ Agent Script agents are defined by `AiAuthoringBundle` metadata: a `.agent` file (agent behavior) plus `bundle-meta.xml` (bundle metadata). Actions can be implemented with invocable Apex, autolaunched Flows, Prompt Templates, and other supported types.
20
41
 
21
42
  This skill covers the full Agent Script lifecycle: designing agents,
22
43
  writing Agent Script code, validating and debugging, deploying and
@@ -24,9 +45,12 @@ publishing, and testing.
24
45
 
25
46
  ## How to Use This Skill
26
47
 
27
- This file maps user intent to task domains and relevant reference files in `references/`. Detailed knowledge includes syntax rules, design patterns, CLI commands, debugging workflows, and more.
48
+ This file maps user intent to task domains and relevant reference files in `references/`. Treat this file as the execution router for end-to-end agent development, and use references for deep detail.
28
49
 
29
- Identify user intent from task descriptions. ALWAYS read indicated reference files BEFORE starting work.
50
+ Identify user intent from task descriptions. Read only the reference explicitly
51
+ required by the active step or needed for the current decision. Every
52
+ **Reference Files** section is a lookup index, not a preload list; do not load
53
+ files for later or inapplicable steps.
30
54
 
31
55
  ## Rules That Always Apply
32
56
 
@@ -38,16 +62,61 @@ Identify user intent from task descriptions. ALWAYS read indicated reference fil
38
62
  ALWAYS `--use-live-actions` to preview authoring bundles. Send utterances
39
63
  then read resulting session traces to ground your understanding of the
40
64
  agent's behavior. Trace files reveal subagent selection, action I/O, and
41
- LLM reasoning. DO NOT modify `.agent` files or backing logic without
65
+ LLM reasoning. DO NOT modify `.agent` files or action implementations without
42
66
  this grounding. See [Validation & Debugging](references/agent-validation-and-debugging.md)
43
67
  for trace file locations and diagnostic patterns.
44
68
 
45
69
  4. **Spec approval is a hard gate.** Never proceed past Agent Spec
46
70
  creation without explicit user approval.
47
71
 
72
+ 5. **Don't stall.** After a step completes successfully, announce the
73
+ next step and start it. Do not wait for the user to say "what's next"
74
+ or "ok, continue." The only checkpoints that require explicit user
75
+ approval are: (a) Agent Spec approval, (b) the pre-Publish CHECKPOINT,
76
+ (c) any A/B branch the skill explicitly surfaces (e.g., Data Cloud
77
+ not provisioned during ADL setup). Long-running async work like ADL
78
+ indexing should run in the background while the skill continues with
79
+ work that doesn't depend on the result.
80
+
81
+ 6. **Draft-first lifecycle.** During normal authoring, stay in draft iteration:
82
+ edit `.agent` + action implementations, validate, deploy, and preview as many
83
+ times as needed. Do NOT publish/activate by default. Publish + activate are
84
+ explicit release actions that require the user to confirm they are ready to
85
+ commit the current draft to metadata and expose it to end users.
86
+
87
+ 7. **Start with one execution block and no mutable state.** A focused agent puts
88
+ reasoning and actions directly in `start_agent`. Add a subagent only for a
89
+ real objective, instruction, action, authority, or escalation boundary. Add
90
+ persistent state only for a named deterministic consumer and give it a
91
+ complete lifecycle. Ordinary continuity stays in surviving history. Apply
92
+ the concrete checks in [The Zen of AgentScript](references/zen-of-agentscript.md)
93
+ and [Posture & Determinism](references/posture-and-determinism.md).
94
+
95
+ 8. **Use supported control flow.** Use the canonical conditional forms and
96
+ never generate a nested `if`, which Agentforce lint rejects. See
97
+ [Conditional Control Flow Syntax](references/agent-script-core-language.md#conditional-control-flow-syntax),
98
+ then run full bundle validation.
99
+
100
+ 9. **Action implementation is a user decision.** During planning/spec work,
101
+ default new actions to `NEEDS STUB` placeholders. Always ask the user whether
102
+ they want to scan org/project for existing implementations and/or generate
103
+ new Apex/Flow/Prompt implementations before taking either path.
104
+
105
+ 10. **Give each reachable branch one next outcome.** Choose exactly one primary
106
+ outcome: answer, ask, invoke an action, transition, refuse, or escalate.
107
+ The compiler selects a subagent `system.instructions` override instead of
108
+ the global value, and the current runtime assembles effective system and
109
+ resolved reasoning text for the model. Keep authoring constructs out of
110
+ model-facing text. See
111
+ [Instruction Resolution](references/instruction-resolution.md).
112
+
113
+ 11. **Use portable structural indentation.** Generate new `.agent` files with
114
+ 4 spaces per level. Preserve a consistently indented legacy file during a
115
+ surgical edit, or normalize the whole file as a separate validated change.
116
+
48
117
  ## Task Domains
49
118
 
50
- Every task domain below has **Required Steps**. Follow verbatim, in order. Do not substitute your own plan or skip steps.
119
+ Every task domain below has **Required Steps**. Follow verbatim, in order. The default path is: design -> draft implementation loop -> validation/preview loop -> explicit user-approved release.
51
120
 
52
121
  ### Create an Agent
53
122
 
@@ -55,41 +124,65 @@ User wants to build new agent from scratch. ALWAYS use Agent Script. Work with U
55
124
 
56
125
  #### Required Steps
57
126
 
58
- Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command syntax.
59
-
60
- 1. **Design** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md) to draft an Agent Spec. Always ask if you should scan for existing backing logic. Unless instructed otherwise, scan by reading `sfdx-project.json` to identify package directories, then search each for `@InvocableMethod` in `classes/`, `AutoLaunchedFlow` in `flows/`, and template metadata in `promptTemplates/`. Mark matches `EXISTS`; unmatched actions `NEEDS STUB`. Also scan `objects/` for `.object-meta.xml` to discover custom objects — related objects often contain data the agent should expose even when not mentioned in the prompt. **Always save Agent Spec as file.**
61
- 2. **STOP for user approval of Agent Spec.** Present to user. Ask for approval or feedback. **Do not proceed** without approval. Once approved, proceed without stopping unless a step fails.
127
+ Before running an `sf` command, read only the applicable command section in
128
+ [CLI for Agents](references/salesforce-cli-for-agents.md). Do not preload the
129
+ CLI reference during design-only work.
130
+
131
+ 1. **Design** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md) to draft an Agent Spec. Default all new actions to `NEEDS STUB` placeholders during planning. Ask the user which implementation path they want before implementation work:
132
+ - Path A: Keep placeholders only (no implementation now)
133
+ - Path B: Scan for existing actions to reuse
134
+ - Path C: Generate new actions
135
+ Only run scans (reading `sfdx-project.json`, searching `@InvocableMethod`, `AutoLaunchedFlow`, prompt templates, external service registrations, standard invocable actions, and custom objects) if the user explicitly chooses Path B or C.
136
+ **If the agent's purpose involves answering from documents** (e.g., "answer customer questions from our product manual", "respond based on a policy guide", "FAQ from a PDF"), ask the user: *"Will this agent answer questions from a document corpus (PDF/DOCX/TXT)? If so, what file path?"* Capture the path in the Spec under a **"Knowledge Grounding"** section. Asking now — during requirements capture — is critical: ADL indexing takes minutes, so we want the file path captured pre-Spec-approval and provisioning kicked off as early as possible.
137
+ **If the agent will handle voice/telephony** (e.g., "phone agent", "voice bot", "IVR replacement", "call center agent"), confirm it's a voice agent and capture a **"Voice Configuration"** section in the Spec. **Do not ask the user for a voice_id** — there is no reliable way to enumerate voice IDs and tuning values from the CLI. Always start with the platform default voice (`UgBBYS2sOqTuMpoF3BR0` — "Mark", en_US; `outbound_speed: 1`, `outbound_stability: 0.65`, `outbound_similarity: 0.75`) and tell the user they can customize the voice later in the Agent Builder UI (open the agent → **Connections → Voice**, click **Continue** to pick a different voice and tune speed/stability). See [Voice Modality Reference](references/voice-modality-reference.md) for the `modality voice:` block syntax and voice-specific authoring guidance.
138
+ **Voice service agents are almost always knowledge-backed** (callers ask FAQ/policy/troubleshooting questions). When you detect a voice agent, proactively ask the Knowledge Grounding question above — do not wait for the user to mention documents. This pairing (voice + knowledge grounding) is the Project Codey "Steel Thread 2" shape, and grounding on an ADL/Salesforce Knowledge corpus is what keeps a voice agent from hallucinating spoken answers. If the user has a document corpus, capture the file path and provision the ADL as usual; the `assets/agents/voice-knowledge-grounded.agent` template shows the combined wiring.
139
+ **Always save Agent Spec as file.**
140
+ 2. **STOP for user approval of Agent Spec.** Present to user (including the Knowledge Grounding section if present). Ask for approval or feedback. **Do not proceed** without approval. Once approved, proceed without stopping unless a step fails.
62
141
  3. **Validate environment prerequisites** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md), Section 3 (Environment Prerequisites). Based on agent type from design, validate org environment:
63
- - **Employee agent**: Confirm config block does NOT include `default_agent_user`, `connection messaging:`, or MessagingSession linked variables. Remove if present. See [Examples](references/examples.md) for a complete employee agent example.
142
+ - **Employee agent**: Confirm the file normally omits `access.default_agent_user`, `connection messaging:`, and MessagingSession linked variables. Remove them if present. **Exception:** If the agent has a `knowledge:` block (uses `AnswerQuestionsWithKnowledge`), `access.default_agent_user` IS required even for employee agents — the platform treats knowledge-grounded agents as requiring an Einstein Agent User context at runtime. Query for the agent user and include it. See [Examples](references/examples.md) for a complete employee agent example.
64
143
  - **Service agent**: Query org for Einstein Agent User. If one exists, confirm username with user. If none, guide user through creation. See [CLI for Agents](references/salesforce-cli-for-agents.md), Section 12 for creation steps and [Agent User Setup](references/agent-user-setup.md) for required permissions.
65
- **Do not proceed to code generation until environment is validated.**
144
+ **3b. Kick off ADL provisioning (only if the Spec has a Knowledge Grounding section).** Read [Data Library Reference](references/data-library-reference.md). Run the Step 0 preflight: `SELECT COUNT() FROM DataKnowledgeSpace` (DC provisioned check), then `sf agent adl list` (ADL service health check). If DC is not provisioned, present the A/B choice from that reference. If DC is provisioned but the ADL service returns `400 INTERNAL_ERROR`, surface the "DC up, ADL broken" path and skip grounding for this run. If both checks pass, run `sf agent adl create` (reference Step 1) to capture `libraryId`. Compute `rag_feature_config_id = "ARFPC_<libraryId>"` from the `libraryId` alone — that's enough to author the bundle. Then start the upload + indexing flow (reference Steps 2–6) **in the background** while authoring continues. Per Rule 5, do not block on async indexing; `retrieverId` is only needed for runtime queries (gated in Step 8). Also kick off the Data Cloud permset assignment for the agent user — see [Agent User Setup](references/agent-user-setup.md), Step 3b for the discovery-then-assign procedure, which now ends with Step 3b.5 pinned post-assignment verification (against the resolved running-user and Einstein Agent User IDs) so callers can treat "Step 3b passed" as an authoritative Data Cloud grounding gate without re-running inline SOQL.
145
+ **Do not proceed to code generation until environment is validated** (ADL provisioning may continue running in background).
66
146
  4. **Generate authoring bundle** —
67
147
  `sf agent generate authoring-bundle --json --no-spec --name "<Label>" --api-name <Developer_Name>`
68
- 5. **Write code** — Read [Core Language](references/agent-script-core-language.md) for syntax, block structure, and anti-patterns. Edit generated `.agent` file using reference files and templates. Do not create `.agent` or `bundle-meta.xml` files manually.
148
+ 5. **Write code** — Read [Core Language](references/agent-script-core-language.md) for syntax, block structure, and anti-patterns. Read [Instruction Resolution](references/instruction-resolution.md) for instruction patterns, recommended instruction order, and anti-patterns (especially Anti-Pattern 7: prose-based conditional logic). Edit generated `.agent` file using reference files and templates. Do not create `.agent` or `bundle-meta.xml` files manually. If Step 3b produced a `libraryId`, include the top-level `knowledge:` block and the `AnswerQuestionsWithKnowledge` action wiring per [Data Library Reference](references/data-library-reference.md), section "Wiring the ADL into Agent Script". The template at `assets/agents/knowledge-grounded.agent` is a copy-modify starting point. **If the Spec has a Voice Configuration section**, include the `modality voice:` block (using the default `voice_id` and tuning values) and `language:` block per [Voice Modality Reference](references/voice-modality-reference.md). Keep the standard `agent_type` (e.g. `AgentforceServiceAgent`) — do NOT set an `Atlas__VoiceAgent` template in the bundle; that is a runtime planner_type, not an authored field. Also add the `VoiceCallId: linked string` variable bound to `@VoiceCall.Id` and add `connection customer_web_client:` (ECv2 — the voice-capable surface) with `adaptive_response_allowed: True`. Keep the `modality voice:` block minimal (voice_id + speed/stability/similarity); advanced settings (filler-word detection, speak-up, endpointing) are optional — add only if the Spec calls for them. `connection messaging:` is additive — include it only if the agent escalates to a human (`@utils.escalate`). Write concise voice instructions with the high-value guards: read back critical data (IDs/amounts/dates) before acting, and never read out URLs/citations/visual formatting. Also add the spoken-delivery instruction rules from [Voice Modality Reference](references/voice-modality-reference.md) "Instructions for Voice Agents" — ack/filler phrases before slow actions, spoken-form numbers, ASR repair prompts, and empty-result fallbacks. When wiring actions into a voice agent, apply the voice-safe action rules in [actions-reference.md](references/actions-reference.md) "Voice-Safe Action Authoring" (plain-English descriptions, speakable parameter names, enums, lookup-step for internal IDs, voice-friendly error shapes) and check the actions against [voice-latency-heuristics.md](references/voice-latency-heuristics.md) — flag (don't silently rewrite) sync writes, bulky retrieval, and chained callouts on the live-call path. The template at `assets/agents/voice-service-agent.agent` is a copy-modify starting point. **If the Spec has both a Voice Configuration and a Knowledge Grounding section**, start from `assets/agents/voice-knowledge-grounded.agent` instead — it combines `modality voice:`, the voice wiring, and the `knowledge:` block + `AnswerQuestionsWithKnowledge` action with spoken-answer anti-hallucination guards.
69
149
  6. **Validate compilation** —
70
150
  `sf agent validate authoring-bundle --json --api-name <Developer_Name>`
71
- If validation fails, read [Validation & Debugging](references/agent-validation-and-debugging.md) to diagnose and fix, then re-validate. ALWAYS fix syntax and structural errors before generating backing logic.
72
- 7. **Generate backing logic** — For each action marked NEEDS STUB:
151
+ If validation fails, read [Validation & Debugging](references/agent-validation-and-debugging.md) to diagnose and fix, then re-validate. ALWAYS fix syntax and structural errors before generating action implementations.
152
+ 7. **Generate action implementations (explicit user-requested path only)** — Only run this step if the user explicitly asked to generate new implementations (Path C in Step 1). For each action marked NEEDS STUB:
73
153
  `sf template generate apex class --name <ClassName> --output-dir <PACKAGE_DIR>/main/default/classes`
74
154
  Replace class body with invocable pattern from [Design & Agent Spec](references/agent-design-and-spec-creation.md). ALWAYS deploy:
75
155
  `sf project deploy start --json --metadata ApexClass:<ClassName>`
76
156
  ALWAYS fix deploy errors BEFORE generating and deploying next stub.
77
157
  8. **Validate behavior** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for preview workflow and session trace analysis.
158
+ **If Step 3b provisioned an ADL**, before sending any grounded test utterances confirm the library is queryable: run `sf agent adl get -i $LIBRARY_ID` and check that `retrieverId` is present ([Data Library Reference](references/data-library-reference.md), Step 6). If still null, wait and re-poll — do not preview yet, the agent will return empty `knowledgeSummary` and the anti-hallucination guard will refuse on every utterance.
78
159
  `sf agent preview start --json --use-live-actions --authoring-bundle <Developer_Name>`
79
160
  If actions query data, ground test utterances with:
80
161
  `sf data query --json -q "SELECT <Relevant_Fields> FROM <SObject> LIMIT 100"`
81
162
  Send test utterances with:
82
163
  `sf agent preview send --json --authoring-bundle <Developer_Name> --session-id <ID> -u "<message>"`
83
- Confirm subagent routing, gating, and action invocations match Agent Spec. If behavior diverges, switch to **Diagnose Behavioral Issues** workflow. Return AFTER correcting issues.
84
- **CHECKPOINT — Do NOT proceed to Publish unless ALL are true:**
164
+ **Smoke testing requirements** (see [Validation & Debugging](references/agent-validation-and-debugging.md), Utterance Derivation):
165
+ - Test ALL routing branches, not just the happy path. Multiple phrasings per branch.
166
+ - Use realistic utterances — write what a human would actually type, not keywords.
167
+ - After EVERY utterance, read the trace to confirm actions actually fired (`FunctionStep`). Do not trust the agent's text response alone — agents can claim they performed actions without calling them.
168
+ - Evaluate against the Agent Spec like a human tester: check conversation flow, instruction adherence, unnecessary repetition, and response quality. If the spec says "confirm once" and the agent confirms twice, that's a bug — fix it.
169
+ If behavior diverges from the Agent Spec, fix the `.agent` file and re-preview. For complex issues, switch to **Diagnose Behavioral Issues** workflow. Return AFTER correcting issues.
170
+ **CHECKPOINT — Stay in draft iteration unless user explicitly asks to release.**
171
+ **If user requests release, do NOT proceed to Publish unless ALL are true:**
85
172
  - `validate authoring-bundle` passes with zero errors
86
- - Live preview (`--use-live-actions`) tested with representative utterances per subagent
87
- - Traces confirm correct subagent routing and action invocation
173
+ - Live preview (`--use-live-actions`) tested with realistic utterances covering all routing branches
174
+ - Traces confirm correct subagent routing, action invocation (`FunctionStep` present), and spec-compliant behavior
88
175
  - User explicitly approves deployment
89
- 9. **Publish** — Publish validates metadata structure, not agent behavior. Every publish creates permanent version number.
176
+ - **If the agent has a `knowledge:` block**: the Einstein Agent User has a Data Cloud permset/PSL assigned. Verify both:
177
+ ```bash
178
+ sf data query --json -q "SELECT PermissionSet.Name FROM PermissionSetAssignment WHERE Assignee.Username='<agent_user>'"
179
+ sf data query --json -q "SELECT PermissionSetLicense.DeveloperName FROM PermissionSetLicenseAssign WHERE Assignee.Username='<agent_user>'"
180
+ ```
181
+ One of `GenieDataPlatformStarterPsl`, `GenieUserEnhancedSecurity`, `DataCloudUser`, or `DataCloudArchitect` must appear in the combined results. If none does, run [Agent User Setup, Step 3b](references/agent-user-setup.md) discovery-then-assign and re-verify before proceeding. If a Data Cloud permset is assigned but a smoke-test grounded query returns empty `knowledgeSummary`, the **Data Space scope** also needs to be granted on that permset — UI-only, see [Agent User Setup, Step 3b.4](references/agent-user-setup.md).
182
+ 9. **Publish (explicit release step)** — Only after the user confirms they are ready to commit this draft to metadata. Publish validates metadata structure, not agent behavior. Every publish creates permanent version number.
90
183
  `sf agent publish authoring-bundle --json --api-name <Developer_Name>`
91
184
  If publish fails, follow troubleshooting checklist in [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md), Section 5 before retrying.
92
- 10. **Activate** — Makes new version available to users.
185
+ 10. **Activate (explicit release step)** — Makes new version available to users after publish.
93
186
  `sf agent activate --json --api-name <Developer_Name>`
94
187
  11. **Verify published agent** — Preview user-facing behavior AFTER activation with
95
188
  `sf agent preview start --json --api-name <Developer_Name>`
@@ -105,25 +198,29 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
105
198
  model, syntax, block structure, anti-patterns
106
199
  3. [Design & Agent Spec](references/agent-design-and-spec-creation.md) —
107
200
  subagent graph design, flow control patterns, Agent Spec production,
108
- backing logic analysis; Section 3 for environment prerequisites
201
+ action implementation analysis; Section 3 for environment prerequisites
109
202
  4. [Subagent Map Diagrams](references/agent-subagent-map-diagrams.md) —
110
203
  Mermaid diagram conventions for visualizing the agent's subagent graph
111
- 5. [Agent User Setup & Permissions](references/agent-user-setup.md) —
204
+ 5. [Posture & Determinism](references/posture-and-determinism.md) —
205
+ default agentic posture, deterministic controls with cause
206
+ 6. [Agent User Setup & Permissions](references/agent-user-setup.md) —
112
207
  permission set assignment, object permissions, cross-subagent validation
113
- 6. [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md) —
208
+ 7. [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md) —
114
209
  directory structure, bundle metadata; publish troubleshooting
115
- 7. [Validation & Debugging](references/agent-validation-and-debugging.md) —
210
+ 8. [Validation & Debugging](references/agent-validation-and-debugging.md) —
116
211
  validate the agent compiles, preview to confirm behavior
117
- 8. [Agent Access Guide](references/agent-access-guide.md) — end-user
212
+ 9. [Agent Access Guide](references/agent-access-guide.md) — end-user
118
213
  access permissions, visibility troubleshooting
119
- 9. [Known Issues](references/known-issues.md) — only load when errors
214
+ 10. [Known Issues](references/known-issues.md) — only load when errors
120
215
  persist after code fixes
121
- 10. [Architecture Patterns](references/architecture-patterns.md) — hub-and-spoke, verification gate, post-action loop
122
- 11. [Complex Data Types](references/complex-data-types.md) — type mapping decision tree
123
- 12. [Safety Review](references/safety-review-reference.md) — 7-category safety review
124
- 13. [Discover Reference](references/discover-reference.md) — target discovery CLI
125
- 14. [Scaffold Reference](references/scaffold-reference.md) — stub generation CLI
126
- 15. [Deploy Reference](references/deploy-reference.md) — deployment lifecycle, error recovery
216
+ 11. [Patterns by Requirement](references/patterns-by-requirement.md) — scenario-to-pattern mapping for architecture and flow choices
217
+ 12. [Architecture Patterns](references/architecture-patterns.md) — router-first mechanics, verification gates, workflow-local linear patterns
218
+ 13. [Complex Data Types](references/complex-data-types.md) — type mapping decision tree
219
+ 14. [Safety Review](references/safety-review-reference.md) — 7-category safety review
220
+ 15. [Discover Reference](references/discover-reference.md) — target discovery CLI
221
+ 16. [Scaffold Reference](references/scaffold-reference.md) — stub generation CLI
222
+ 17. [Deploy Reference](references/deploy-reference.md) — deployment lifecycle, error recovery
223
+ 18. [Data Library Reference](references/data-library-reference.md) — provision a SFDRIVE Agentforce Data Library and wire it into the `.agent` via the `knowledge:` block + `AnswerQuestionsWithKnowledge` action
127
224
 
128
225
  ### Comprehend an Existing Agent
129
226
 
@@ -133,7 +230,7 @@ User wants to understand Agent Script agent they didn't write or need to revisit
133
230
 
134
231
  1. **Locate agent** — Read `sfdx-project.json` to identify package directories. Find `AiAuthoringBundle` directory within them. Read `.agent` file and `bundle-meta.xml`.
135
232
  2. **Read code** — Read [Core Language](references/agent-script-core-language.md) for syntax and execution model BEFORE parsing `.agent` file.
136
- 3. **Map backing logic** — For each action with `target`, locate backing implementation (Apex class, Flow, Prompt Template) in project. Note input/output contracts.
233
+ 3. **Map action implementations** — For each action with `target`, locate implementation (Apex class, Flow, Prompt Template) in project. Note input/output contracts.
137
234
  4. **Reverse-engineer Agent Spec** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md) for Agent Spec structure. Produce Agent Spec from code and save as file.
138
235
  5. **Produce Subagent Map diagram** — Read [Subagent Map Diagrams](references/agent-subagent-map-diagrams.md) for Mermaid conventions. Generate flowchart of subagent graph showing transitions, gates, and action associations.
139
236
  6. **Annotate source** — Ask if user wants Agent Script source annotated with explanations. If requested, add inline comments to `.agent` file explaining flow control decisions, gating rationale, and subagent relationships.
@@ -161,35 +258,59 @@ User wants to add, remove, or change subagents, actions, instructions, or flow c
161
258
  Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command syntax.
162
259
 
163
260
  1. **Comprehend** — If no Agent Spec exists, reverse-engineer first by following "Comprehend an Existing Agent" workflow above.
164
- 2. **Update Agent Spec** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md) for flow control patterns and backing logic analysis. Modify Agent Spec to reflect intended changes. For new actions, always ask if you should scan for existing backing logic. Unless instructed otherwise, scan by reading `sfdx-project.json` to identify package directories, then search each for `@InvocableMethod` in `classes/`, `AutoLaunchedFlow` in `flows/`, and template metadata in `promptTemplates/`. Mark matches `EXISTS`; unmatched actions `NEEDS STUB`. **Always save updated Agent Spec as file.**
165
- 3. **STOP for user approval of updated Agent Spec.** Present to user. Ask for approval or feedback. **Do not proceed** without approval. Once approved, proceed without stopping unless a step fails.
166
- 4. **Edit code** — Read [Core Language](references/agent-script-core-language.md) for syntax and anti-patterns. Edit `.agent` file to implement approved changes.
167
- 5. **Validate compilation** —
261
+ 2. **Update Agent Spec** — Read [Design & Agent Spec](references/agent-design-and-spec-creation.md) for flow control patterns and existing action analysis. Modify Agent Spec to reflect intended changes. Default new actions to `NEEDS STUB` placeholders. Ask the user which path they want:
262
+ - Path A: Keep placeholders only
263
+ - Path B: Scan for existing actions to reuse
264
+ - Path C: Generate new actions
265
+ Only run scans if the user explicitly chooses Path B or C.
266
+ **If the modification involves adding, replacing, or removing knowledge grounding**, ask: *"Will this agent answer questions from a document corpus (PDF/DOCX/TXT)? If so, what file path?"* Capture the path in the updated Spec under a **"Knowledge Grounding"** section. Asking now — during Spec update — surfaces ADL changes for the user's approval and lets us kick off provisioning right after.
267
+ **Always save updated Agent Spec as file.**
268
+ 3. **STOP for user approval of updated Agent Spec.** Present to user (including the Knowledge Grounding section if present). Ask for approval or feedback. **Do not proceed** without approval. Once approved, proceed without stopping unless a step fails.
269
+ 4. **Kick off ADL provisioning (only if the Spec has a Knowledge Grounding section).**
270
+ - If the `.agent` already has a `knowledge:` block with a populated `rag_feature_config_id` AND the user is keeping the same library, reuse it. Skip provisioning. (No need to confirm `retrieverId` here — that gate moves to Step 8.)
271
+ - If a new ADL is needed, follow the same flow as the create workflow: read [Data Library Reference](references/data-library-reference.md), run the Step 0 preflight (`sf agent adl list`), and (if DC is ready) run `sf agent adl create` (Step 1) to capture `libraryId`. Compute `rag_feature_config_id = "ARFPC_<libraryId>"` from `libraryId` alone — that's enough to author the bundle. Start the upload + indexing flow (reference Steps 2–6) **in the background** while you continue to Step 5 (Edit code). Per Rule 5, do not block on async indexing. Also kick off the Data Cloud permset assignment for the agent user — see [Agent User Setup](references/agent-user-setup.md), Step 3b, which now ends with Step 3b.5 pinned post-assignment verification (against the resolved running-user and Einstein Agent User IDs) so callers can treat "Step 3b passed" as an authoritative Data Cloud grounding gate without re-running inline SOQL.
272
+ - If grounding is not part of the modification, skip this step.
273
+ 5. **Edit code** — Read [Core Language](references/agent-script-core-language.md) for syntax and anti-patterns. Edit `.agent` file to implement approved changes. If Step 4 produced a `libraryId`, include or update the `knowledge:` block and the `AnswerQuestionsWithKnowledge` action per [Data Library Reference](references/data-library-reference.md).
274
+ 6. **Validate compilation** —
168
275
  `sf agent validate authoring-bundle --json --api-name <Developer_Name>`
169
276
  If validation fails, read [Validation & Debugging](references/agent-validation-and-debugging.md) to diagnose and fix, then re-validate.
170
- 6. **Generate new backing logic** — For each new action marked NEEDS STUB:
277
+ 7. **Generate new action implementations (explicit user-requested path only)** — Only run this step if the user explicitly asked to generate new implementations (Path C in Step 2). For each new action marked NEEDS STUB:
171
278
  `sf template generate apex class --name <ClassName> --output-dir <PACKAGE_DIR>/main/default/classes`
172
279
  Replace class body with invocable pattern from [Design & Agent Spec](references/agent-design-and-spec-creation.md). ALWAYS deploy:
173
280
  `sf project deploy start --json --metadata ApexClass:<ClassName>`
174
281
  ALWAYS fix deploy errors BEFORE generating and deploying next stub. Skip if no new actions added.
175
- 7. **Validate behavior** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for preview workflow and session trace analysis.
282
+ 8. **Validate behavior** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for preview workflow and session trace analysis.
283
+ **If Step 4 provisioned a new ADL**, before sending any grounded test utterances confirm the library is queryable: run `sf agent adl get -i $LIBRARY_ID` and check that `retrieverId` is present ([Data Library Reference](references/data-library-reference.md), Step 6). If still null, wait and re-poll — do not preview yet, the agent will return empty `knowledgeSummary` and the anti-hallucination guard will refuse on every utterance.
176
284
  `sf agent preview start --json --use-live-actions --authoring-bundle <Developer_Name>`
177
285
  If actions query data, ground test utterances with:
178
286
  `sf data query --json -q "SELECT <Relevant_Fields> FROM <SObject> LIMIT 100"`
179
287
  Send test utterances with:
180
288
  `sf agent preview send --json --authoring-bundle <Developer_Name> --session-id <ID> -u "<message>"`
181
- Test changed paths first, then adjacent paths to catch regressions in existing behavior.
182
- **CHECKPOINT — Do NOT proceed to Publish unless ALL are true:**
289
+ **Smoke testing requirements** (see [Validation & Debugging](references/agent-validation-and-debugging.md), Utterance Derivation):
290
+ - Test changed paths first, then adjacent paths to catch regressions.
291
+ - Test ALL routing branches affected by the change. Multiple phrasings per branch.
292
+ - Use realistic utterances — write what a human would actually type, not keywords.
293
+ - After EVERY utterance, read the trace to confirm actions actually fired (`FunctionStep`). Do not trust the agent's text response alone.
294
+ - Evaluate against the Agent Spec: conversation flow, instruction adherence, unnecessary repetition, response quality.
295
+ If behavior diverges from the Agent Spec, fix the `.agent` file and re-preview. For complex issues, switch to **Diagnose Behavioral Issues** workflow.
296
+ **CHECKPOINT — Stay in draft iteration unless user explicitly asks to release.**
297
+ **If user requests release, do NOT proceed to Publish unless ALL are true:**
183
298
  - `validate authoring-bundle` passes with zero errors
184
- - Live preview (`--use-live-actions`) tested with representative utterances per subagent
185
- - Traces confirm correct subagent routing and action invocation
299
+ - Live preview (`--use-live-actions`) tested with realistic utterances covering all routing branches
300
+ - Traces confirm correct subagent routing, action invocation (`FunctionStep` present), and spec-compliant behavior
186
301
  - User explicitly approves deployment
187
- 8. **Publish** — Publish validates metadata structure, not agent behavior. Every publish creates permanent version number.
302
+ - **If the agent has a `knowledge:` block**: the Einstein Agent User has a Data Cloud permset/PSL assigned. Verify both:
303
+ ```bash
304
+ sf data query --json -q "SELECT PermissionSet.Name FROM PermissionSetAssignment WHERE Assignee.Username='<agent_user>'"
305
+ sf data query --json -q "SELECT PermissionSetLicense.DeveloperName FROM PermissionSetLicenseAssign WHERE Assignee.Username='<agent_user>'"
306
+ ```
307
+ One of `GenieDataPlatformStarterPsl`, `GenieUserEnhancedSecurity`, `DataCloudUser`, or `DataCloudArchitect` must appear in the combined results. If none does, run [Agent User Setup, Step 3b](references/agent-user-setup.md) discovery-then-assign and re-verify before proceeding. If a Data Cloud permset is assigned but a smoke-test grounded query returns empty `knowledgeSummary`, the **Data Space scope** also needs to be granted on that permset — UI-only, see [Agent User Setup, Step 3b.4](references/agent-user-setup.md).
308
+ 9. **Publish (explicit release step)** — Only after the user confirms they are ready to commit this draft to metadata. Publish validates metadata structure, not agent behavior. Every publish creates permanent version number.
188
309
  `sf agent publish authoring-bundle --json --api-name <Developer_Name>`
189
310
  If publish fails, follow troubleshooting checklist in [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md), Section 5 before retrying.
190
- 9. **Activate** — Makes new version available to users.
191
- `sf agent activate --json --api-name <Developer_Name>`
192
- 10. **Verify published agent** — Preview user-facing behavior AFTER activation with
311
+ 10. **Activate (explicit release step)** — Makes new version available to users after publish.
312
+ `sf agent activate --json --api-name <Developer_Name>`
313
+ 11. **Verify published agent** — Preview user-facing behavior AFTER activation with
193
314
  `sf agent preview start --json --api-name <Developer_Name>`
194
315
  Use `--api-name`, not `--authoring-bundle`.
195
316
 
@@ -200,10 +321,12 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
200
321
  2. [Core Language](references/agent-script-core-language.md) — syntax,
201
322
  anti-patterns
202
323
  3. [Design & Agent Spec](references/agent-design-and-spec-creation.md) —
203
- Agent Spec updates, backing logic analysis
324
+ Agent Spec updates, action implementation analysis
204
325
  4. [Validation & Debugging](references/agent-validation-and-debugging.md) —
205
326
  compilation diagnosis, preview workflow, session trace analysis
206
- 5. [Known Issues](references/known-issues.md) — only load when errors
327
+ 5. [Data Library Reference](references/data-library-reference.md) —
328
+ provisioning and Agent Script wiring for ADL grounding
329
+ 6. [Known Issues](references/known-issues.md) — only load when errors
207
330
  persist after code fixes
208
331
 
209
332
  ### Diagnose Compilation Errors
@@ -214,12 +337,12 @@ User has Agent Script that won't compile. Errors surface from `sf agent validate
214
337
 
215
338
  Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command syntax.
216
339
 
217
- 1. **Reproduce error** — Run
340
+ 1. **Capture concrete errors first, then reproduce** — If the user already shared error output, extract and list the exact error messages first. Then run
218
341
  `sf agent validate authoring-bundle --json --api-name <Developer_Name>`
219
342
  to capture basic compile errors. If no errors, run
220
343
  `sf agent preview start --json --use-live-actions --authoring-bundle <Developer_Name>`
221
- to capture complex compile errors. If user provides specific error output, ALWAYS reproduce to confirm.
222
- 2. **Classify error** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for error taxonomy. Map each error message to root cause category.
344
+ to capture complex compile errors. If reproduction differs from user-provided errors, call out both and continue with the current reproducible errors.
345
+ 2. **Classify error** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for error taxonomy. Map each exact error message to a root cause category.
223
346
  3. **Locate fault** — Read [Core Language](references/agent-script-core-language.md) to understand correct syntax. Find specific line(s) in `.agent` file that cause each error.
224
347
  4. **Fix code** — Apply targeted fixes. Check Anti-Patterns section in Core Language reference to ensure you're not introducing known bad pattern.
225
348
  5. **Re-validate** — Run
@@ -281,7 +404,7 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
281
404
  1. **Validate compilation** —
282
405
  `sf agent validate authoring-bundle --json --api-name <Developer_Name>`
283
406
  Do not proceed if validation fails.
284
- 2. **Deploy bundle and dependencies** — Read [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md) for dependency management and deploy commands. Deploy `AiAuthoringBundle` and all backing logic (Apex classes, Flows, Prompt Templates) and dependencies to org.
407
+ 2. **Deploy bundle and dependencies** — Read [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md) for dependency management and deploy commands. Deploy `AiAuthoringBundle` and all action implementations (Apex classes, Flows, Prompt Templates) and dependencies to org.
285
408
  3. **Live preview** — Read [Validation & Debugging](references/agent-validation-and-debugging.md) for preview workflow and session trace analysis.
286
409
  `sf agent preview start --json --use-live-actions --authoring-bundle <Developer_Name>`
287
410
  then send test utterances with:
@@ -289,10 +412,10 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
289
412
  Test key conversation paths to validate agent behavior when backed by live actions.
290
413
  **CHECKPOINT — Do NOT proceed to Publish unless ALL are true:**
291
414
  - `validate authoring-bundle` passes with zero errors
292
- - Live preview (`--use-live-actions`) tested with representative utterances per subagent
293
- - Traces confirm correct subagent routing and action invocation
415
+ - Live preview (`--use-live-actions`) tested with realistic utterances covering all routing branches
416
+ - Traces confirm correct subagent routing, action invocation (`FunctionStep` present), and spec-compliant behavior
294
417
  - User explicitly approves deployment
295
- 4. **Publish** — Publish validates metadata structure, not agent behavior. DO NOT publish as part of a dev/test inner loop. ONLY publish as the FINAL step prior to activating the agent and surfacing it to end users.
418
+ 4. **Publish (explicit release step)** — Publish validates metadata structure, not agent behavior. DO NOT publish as part of a dev/test inner loop. ONLY publish as the FINAL step after user confirmation to commit this draft and prior to activation.
296
419
  `sf agent publish authoring-bundle --json --api-name <Developer_Name>`
297
420
  If publish fails, follow *Troubleshooting Publish Failures* in [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md) before retrying.
298
421
  5. **Activate** — Makes new version available to users.
@@ -379,12 +502,13 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
379
502
 
380
503
  1. **Establish coverage baseline** — Read Agent Spec. If no Agent Spec exists, reverse-engineer first by following Comprehend steps. Map every subagent, action, and flow control path to identify what needs test coverage.
381
504
  2. **Design test scenarios** — For test design methodology, expectations, metrics, test spec YAML format, and templates, use **agentforce-test** skill. That skill owns all testing content. For each coverage target, write one or more test scenarios: user utterance, expected subagent routing, expected action invocations, and expected agent response. Include both happy paths and edge cases.
382
- 3. **Write test spec YAML** — Use template and reference files from **agentforce-test** skill. Save to `specs/<Agent_API_Name>-testSpec.yaml` in SFDX project.
383
- 4. **Create test metadata** — Generate `AiEvaluationDefinition` from test spec using CLI.
384
- 5. **Deploy test** — Deploy `AiEvaluationDefinition` to org.
385
- 6. **Run tests** — Execute test run using CLI. Capture results.
386
- 7. **Analyze results** — Compare actual outcomes against expectations. For failures, identify whether issue is in agent code, backing logic, or test spec itself.
387
- 8. **Iterate** — Fix agent code or test spec as needed, redeploy, and re-run until coverage targets are met.
505
+ 3. **Offer security coverage** — Security testing is part of the ADLC test flow, not a separate step. Treat OWASP LLM Top 10 resistance as a first-class coverage dimension alongside functional scenarios. **Confirm with the user before generating security test cases**, then use **agentforce-test** skill **Mode C1-author** to write a Testing Center security suite from the agent's own `.agent` file (method: `skills/agentforce-test/references/security-test-design.md`) that ships alongside the functional test spec. `C1-author` validates the spec locally with `sf agent test create --preview` and deploys nothing; deploying and running it (`C1-run`) is a separate decision the user makes in `/agentforce-test`, because `sf agent test run` has no simulated-action mode and executes the agent's real actions. Skip only if the user declines.
506
+ 4. **Write test spec YAML** — Use template and reference files from **agentforce-test** skill. Save to `specs/<Agent_API_Name>-testSpec.yaml` in SFDX project.
507
+ 5. **Create test metadata** — Generate `AiEvaluationDefinition` from test spec using CLI.
508
+ 6. **Deploy test** — Deploy `AiEvaluationDefinition` to org.
509
+ 7. **Run tests** — Execute test run using CLI. Capture results.
510
+ 8. **Analyze results** — Compare actual outcomes against expectations. For failures, identify whether issue is in agent code, action implementations, or test spec itself.
511
+ 9. **Iterate** — Fix agent code or test spec as needed, redeploy, and re-run until coverage targets are met.
388
512
 
389
513
  #### Reference Files
390
514
 
@@ -397,11 +521,56 @@ Read [CLI for Agents](references/salesforce-cli-for-agents.md) for exact command
397
521
  4. **agentforce-test** skill — test spec YAML format, expectations,
398
522
  metrics, test design methodology, and test spec template
399
523
 
524
+ ### Optimize an Agent
525
+
526
+ User wants to improve an existing Agent Script agent by scanning for common optimization patterns and applying fixes. May say "optimize my agent", "improve my agent", "clean up this agent", "refactor agent", or mention the agent feels inefficient or has redundancies. Also appropriate to suggest proactively after complex editing sessions with many incremental changes.
527
+
528
+ #### Required Steps
529
+
530
+ 1. **Read and analyze the agent file** — Read the current `.agent` file. Read [Core Language](references/agent-script-core-language.md) for syntax rules and valid constructs as validation reference during optimization.
531
+ 2. **Scan for optimization patterns** — For EACH subagent, systematically apply patterns 1–4 (and Pattern 5 if the agent has a `modality voice:` block). Each pattern's reference file has the detection heuristics and detailed fix instructions — read the ones that apply:
532
+ - **Pattern 1 — Wire action outputs to deterministic consumers.** [Data Flow](references/optimization-pattern-1-data-flow.md). Persist a producer output only when a later deterministic consumer needs that exact trusted value; do not replace `...` slot filling that legitimately draws from the current turn.
533
+ - **Pattern 2 — Extract requirement-backed deterministic logic.** [Deterministic Logic](references/optimization-pattern-2-deterministic-logic.md). Extract only when the condition is machine-known and protects regulation, authorization, an irreversible consequence, ordering, exact data flow, or an observed trace failure. Leave unstructured judgment to the model.
534
+ - **Pattern 3 — Fix variable/action reference syntax in instructions.** [Reference Syntax](references/optimization-pattern-3-reference-syntax.md). `{!@variables.X}` and `{!@actions.X}` instead of bare `@variables.X` / use-case phrasing.
535
+ - **Pattern 4 — Repair promised human handoff.** [Human Handoff](references/optimization-pattern-4-escalation.md). Apply only when requirements specify live handoff; never add escalation as default boilerplate.
536
+ - **Pattern 5 — Voice-readiness (voice agents only).** Instructional fixes are auto-apply candidates; voice-unsafe action authoring and latency issues are flag-only. See [Voice Modality Reference](references/voice-modality-reference.md) "Instructions for Voice Agents", [Actions Reference](references/actions-reference.md) "Voice-Safe Action Authoring", and [Voice Latency Heuristics](references/voice-latency-heuristics.md). **Never auto-change** escalation numbers/queues, SLA/pricing/legal wording, or PII handling — surface a suggested rewrite and require explicit approval.
537
+ 3. **Report findings** — Present all findings as a concise `## Optimization Report` with per-improvement, actionable edit instructions (subagent + line, the variable/`set`/binding or logic-extraction change to make), then ask: *"Would you like me to apply these [N] improvements?"*
538
+ 4. **STOP for user approval.** Do not apply changes without explicit approval.
539
+ 5. **Apply improvements (if approved)** — Edit the `.agent` file directly for each approved improvement. Track successes and failures.
540
+ 6. **Validate compilation** — `sf agent validate authoring-bundle --json --api-name <Developer_Name>`. If validation fails, fix introduced errors and re-validate.
541
+ 7. **Report results** — Summarize which improvements were applied and which failed (with the reason).
542
+
543
+ #### Reference Files
544
+
545
+ - [Core Language](references/agent-script-core-language.md) — validation reference during optimization
546
+ - [Optimization Pattern 1–4](references/optimization-pattern-1-data-flow.md) — data flow, [deterministic logic](references/optimization-pattern-2-deterministic-logic.md), [reference syntax](references/optimization-pattern-3-reference-syntax.md), [human handoff](references/optimization-pattern-4-escalation.md) (detection heuristics + fix instructions per pattern)
547
+ - [Voice Modality Reference](references/voice-modality-reference.md) + [Voice Latency Heuristics](references/voice-latency-heuristics.md) + [Actions Reference](references/actions-reference.md) "Voice-Safe Action Authoring" — Pattern 5 voice-readiness
548
+ - [Validation & Debugging](references/agent-validation-and-debugging.md) — compilation validation after applying optimizations
549
+
550
+ ### Manage MCP Servers
551
+
552
+ User wants to register, configure, or manage Model Context Protocol (MCP) servers in the Salesforce API Catalog so their assets (tools, prompts, resources) become available as agent actions. May say "register an MCP server", "create MCP server", "list MCP servers", "whitelist MCP tools", "approve tools", "fetch MCP assets", "update MCP server", "delete MCP server", or mention MCP authentication. Uses `sf agent mcp` CLI commands. This is distinct from general MCP development or MCP protocol design.
553
+
554
+ #### Required Steps
555
+
556
+ Read [MCP Server Management](references/mcp-management-reference.md) for exact command syntax, response structures, the interactive whitelisting flow, security best practices, error handling, and complete examples. In brief:
557
+
558
+ 1. **Verify target org** — `sf config get target-org --json` (Rule 2). If none is set, ask the user to set one first.
559
+ 2. **Identify the operation** and map it to a workflow in the reference (register, list, get details, fetch + whitelist assets, list assets, update, delete). Gather any missing required inputs; handle client secrets via **stdin piping, never on the command line**.
560
+ 3. **Execute the `sf agent mcp` command** with `--json` (Rule 1). After create, read the server ID from `result.server.id` (not `result.id`). These commands are developer preview, so every response carries a `warnings` preview notice.
561
+ 4. **Whitelist interactively** — display each asset's metadata and wait for explicit yes/no/skip per tool. `sf agent mcp asset replace` is a FULL replacement — send the complete desired state.
562
+ 5. **Apply security review before activating** — flag destructive, broadly-scoped, or auth-requiring tools; warn on production orgs; require explicit confirmation for destructive operations and deletions.
563
+ 6. **Confirm results** and clean up any temp allowlist files.
564
+
565
+ #### Reference Files
566
+
567
+ - [MCP Server Management](references/mcp-management-reference.md) — `sf agent mcp` command reference, response structures, interactive whitelisting flow, security best practices, error handling, and complete examples
568
+
400
569
  ## The Agent Spec
401
570
 
402
- **Agent Spec** is the central artifact this skill produces and consumes. A structured design document representing agent's purpose, subagent graph, actions with backing logic, variables, gating logic, and behavioral intent.
571
+ **Agent Spec** is the central artifact this skill produces and consumes. A structured design document representing agent purpose, user outcomes, subagent graph, actions and implementations, variables, subagent posture, deterministic controls (when needed), and behavioral intent.
403
572
 
404
- Agent Specs evolve with the agent. Sparse during agent creation (purpose, topics, directional notes). Fleshed out during agent build (flowchart, backing logic mapped, gating documented). Reverse-engineered when comprehending existing agents. Critical for advanced troubleshooting, providing reference to compare expected vs. actual behavior. During testing, test coverage maps against it.
573
+ Agent Specs evolve with the agent. Sparse during agent creation (purpose, use cases, planned placeholders). Fleshed out during agent build (flowchart, action implementations mapped, posture choices documented, deterministic controls added only where justified). Reverse-engineered when comprehending existing agents. Critical for advanced troubleshooting, providing reference to compare expected vs. actual behavior. During testing, test coverage maps against it.
405
574
 
406
575
  Always produce or update Agent Spec as first step of any operation that changes or analyzes agent. It is consistent grounding to work from, and a durable artifact a developer can review.
407
576
 
@@ -413,27 +582,34 @@ The `assets/` directory contains templates and examples. Read when you need a st
413
582
 
414
583
  - **`assets/agent-spec-template.md`** — Agent Spec template with all sections and placeholder content. Copy to `<AgentName>-AgentSpec.md` in project directory, then fill in during design. Save Agent Spec as file — significant design artifact that benefits from proper rendering, especially Mermaid Subagent Map diagram.
415
584
 
416
- - **`assets/local-info-agent-annotated.agent`** — Complete annotated example based on Local Info Agent, showing all major Agent Script constructs in context with inline comments explaining why each construct is used. Read when you need concrete reference for how concepts compose into working agent, or as fallback when focused examples in reference files aren't sufficient.
585
+ - **`assets/agents/local-info-agent-annotated.agent`** — Complete annotated example based on Local Info Agent, showing all major Agent Script constructs in context with inline comments explaining why each construct is used. Read when you need concrete reference for how concepts compose into working agent, or as fallback when focused examples in reference files aren't sufficient.
417
586
 
418
- - **`assets/template-single-subagent.agent`** — Minimal agent with one subagent. Copy and modify for simple agents.
587
+ - **`assets/agents/template-single-subagent.agent`** — Compatibility-named focused starter with one `start_agent` execution block and no router or subagent blocks.
419
588
 
420
- - **`assets/template-multi-subagent.agent`** — Minimal agent with multiple subagents and transitions. Copy and modify for complex agents.
589
+ - **`assets/agents/template-multi-subagent.agent`** — Minimal agent with multiple subagents and transitions. Copy and modify for complex agents.
421
590
 
422
591
  - **`assets/invocable-apex-template.cls`** — Reference for invocable Apex
423
- classes. Copy and modify when complex Apex backing logic is desired.
592
+ classes. Copy and modify when complex Apex action implementations are desired.
424
593
 
425
594
  ## Important Constraints
426
595
 
427
596
  - **Use only Salesforce CLI and Salesforce org.** Do not reference or depend on other skills, MCP servers, or external tooling. All commands use `sf` (Salesforce CLI).
428
597
 
429
- - **Only certain backing logic types are valid for actions.** For example, only invocable Apex (not arbitrary Apex classes) can back action. Similar constraints may apply to Flows and Prompt Templates. When wiring actions to backing logic, consult Design & Agent Spec reference file for valid types and stubbing methodology.
598
+ - **Only certain implementation types are valid for actions.** For example, only invocable Apex (not arbitrary Apex classes) can back an action. Similar constraints may apply to Flows and Prompt Templates. When wiring actions to implementations, consult Design & Agent Spec reference file for valid types and stubbing methodology.
430
599
 
431
600
  - **`sf agent generate test-spec` is not for agentic use.** It is interactive, REPL-style command designed for humans. When creating test specs, start from boilerplate template in assets instead.
432
601
 
433
602
  ## Common Issues Quick Reference
434
603
 
435
604
  **`Internal Error, try again later` during publish:**
436
- Invalid or missing `default_agent_user`. Re-run query from [Design & Agent Spec](references/agent-design-and-spec-creation.md), Section 3. Do not invent username.
605
+ Server-side compile failure. The 500 doesn't tell you which check failed — walk all four causes in order before asking the user what's wrong. Do NOT stop at cause 1.
606
+
607
+ 1. **Agent type mismatch on `access.default_agent_user`.** Employee agents normally omit `access.default_agent_user`; service agents MUST have it (and the user must hold an Einstein Agent license). See [Design & Agent Spec](references/agent-design-and-spec-creation.md), Section 3. Re-run the query — do not invent the username.
608
+ 2. **Action definition missing `outputs:` block.** If any action has `target:` and `inputs:` but no `outputs:`, the server-side compiler can't generate return bindings. CLI `validate` and LSP both PASS — only publish fails. See [Known Issues](references/known-issues.md), Issue 15.
609
+ 3. **Other structural drift in the `.agent` file.** Diff against a known-good bundle in the same org:
610
+ `sf project retrieve start --metadata "AiAuthoringBundle:<known-working-agent>" --output-dir /tmp/diff-bundle --json`
611
+ Compare keyword-by-keyword. Look for missing required-but-undocumented fields, block-ordering drift, or DSL keywords your bundle uses that aren't in the working one.
612
+ 4. **Genuine transient backend error.** If 1–3 are clean and the response `requestId` differs across retries, wait 60 s and retry once.
437
613
 
438
614
  **`Unable to access Salesforce Agent APIs...` during preview:**
439
615
  `default_agent_user` lacks permissions. See [Agent User Setup & Permissions](references/agent-user-setup.md). Do NOT publish as fix — `--use-live-actions` does not require published agent.
@@ -447,72 +623,26 @@ Planner validates ALL actions across ALL subagents at startup. One missing permi
447
623
  **Apex action returns empty results in live preview but works in simulated:**
448
624
  `WITH USER_MODE` + missing object permissions = silent failure (0 rows, no error). See [Agent User Setup & Permissions](references/agent-user-setup.md), Section 6.2.
449
625
 
450
- ## Syntax Quick Reference
451
-
452
- - Block order: `system:` → `config:` → `variables:` → `connection:` → `knowledge:` → `language:` → `start_agent agent_router:` → `subagent:` blocks
453
- - Indentation: **4 spaces** per indent level. Never use tabs. Mixing spaces and tabs breaks the parser.
454
- - Booleans: `True`/`False` (capitalized)
455
- - Strings: always double-quoted
456
- - Numeric action I/O: bare `number` works for variables but **fails at publish** in action I/O. Use `object` + `complex_data_type_name` for numeric action parameters. See [Complex Data Types](references/complex-data-types.md) for the full decision tree.
457
- - `after_reasoning:` has NO `instructions:` wrapper
458
- - No `else if` — use compound `if x and y:` or sequential flat ifs
459
- - Reserved `@InvocableVariable` names: `model`, `description`, `label` — cannot be used as Apex parameter names
460
- - `@inputs` and `@outputs` are ephemeral: `@inputs` only in `with`; `@outputs` only in `set`/`if` immediately after the action. `@inputs` in `set` = silent failure.
461
-
462
- See [Complex Data Types](references/complex-data-types.md) for the full Lightning type mapping decision tree. See [Instruction Resolution](references/instruction-resolution.md) for the 3-phase runtime model.
463
-
464
- ## Architecture Patterns
465
-
466
- Three primary FSM patterns. Full details with code in [Architecture Patterns](references/architecture-patterns.md).
467
-
468
- - **Hub-and-Spoke** (most common): `start_agent` routes to specialized subagents. Each subagent has "back to hub" transition. Do NOT create a separate routing subagent.
469
- - **Verification Gate**: Identity verification before protected subagents. `available when` guards on protected transitions.
470
- - **Post-Action Loop**: Post-action checks at TOP of `instructions: ->` trigger on re-resolution after action completes.
471
-
472
- ## Scoring Rubric
473
-
474
- Score every generated agent on 100 points across 7 categories: Structure (15), Safety (15), Deterministic Logic (20), Instruction Resolution (20), FSM Architecture (10), Action Configuration (10), Deployment Readiness (10).
475
-
476
- See [Scoring Rubric](references/scoring-rubric.md) for the complete rubric.
477
-
478
- ## Review Mode
479
-
480
- When user provides an existing `.agent` file (e.g., `review path/to/file.agent`):
481
-
482
- 1. Read the file
483
- 2. Score against the 100-point rubric
484
- 3. List every issue grouped by category
485
- 4. Provide corrected code snippets
486
- 5. Offer to apply fixes
487
-
488
- ## Safety Review
489
-
490
- 7-category LLM-driven safety review for `.agent` files. Integrated into Phase 0 of authoring and deployment. Categories: Identity & Transparency, User Safety, Data Handling, Content Safety, Fairness, Deception, Scope & Boundaries.
491
-
492
- See [Safety Review](references/safety-review-reference.md) for the complete framework, severity levels, false positive guidance, and adversarial test prompts.
493
-
494
- ## Discover & Scaffold
495
-
496
- Validate action targets exist in org and generate stubs for missing ones.
497
-
498
- See [Discover Reference](references/discover-reference.md) and [Scaffold Reference](references/scaffold-reference.md).
499
-
500
- **CRITICAL:** Stubs must return realistic data, not `'TODO'`. Placeholder responses cause SMALL_TALK grounding because the LLM falls back to training data.
501
-
502
- ## Deploy Lifecycle
503
-
504
- Validate → deploy metadata → publish bundle → activate. See [Deploy Reference](references/deploy-reference.md) for phases, error recovery, CI/CD, and rollback.
505
-
506
- ## Template Assets
507
-
508
- Ready-to-use `.agent` templates in `assets/agents/` (hello-world, simple-qa, multi-subagent, production-faq, order-service, verification-gate). See also `assets/patterns/` for 11+ reusable design patterns and [Examples](references/examples.md) for inline walkthroughs.
509
-
510
- ## Additional References
511
-
512
- | Topic | File |
513
- |-------|------|
514
- | Architecture patterns | [architecture-patterns.md](references/architecture-patterns.md) |
515
- | Type mapping decision tree | [complex-data-types.md](references/complex-data-types.md) |
516
- | Feature validity by context | [feature-validity.md](references/feature-validity.md) |
517
- | Instruction resolution model | [instruction-resolution.md](references/instruction-resolution.md) |
518
- | Complete agent examples | [examples.md](references/examples.md) |
626
+ **Agent published, ADL indexed (`retrieverId` populated), but every grounded question returns empty `knowledgeSummary` / "I don't have that information":**
627
+ The Einstein Agent User lacks Data Cloud access. Two things to check, in order:
628
+ 1. **Permset/PSL not assigned.** Run the verification queries from [Agent User Setup, Step 3b.3](references/agent-user-setup.md). If no Data Cloud permset/PSL appears, run the discovery-then-assign procedure (priority: `GenieDataPlatformStarterPsl` PSL → `GenieUserEnhancedSecurity` PS → `DataCloudUser` PS → `DataCloudArchitect` PS).
629
+ 2. **Data Space scope not granted on the permset.** Currently no API. Setup → Permission Sets → click the assigned permset → "Data Cloud Data Space Management" under Apps → Edit → add the ADL's data space (usually `default`) → Save. See [Agent User Setup, Step 3b.4](references/agent-user-setup.md).
630
+
631
+ ## Quick Links (Deep Detail Lives in References)
632
+
633
+ - Syntax and execution model: [Core Language](references/agent-script-core-language.md)
634
+ - Agent design/spec process: [Design & Agent Spec](references/agent-design-and-spec-creation.md)
635
+ - Posture dial (agentic vs deterministic): [Posture & Determinism](references/posture-and-determinism.md)
636
+ - Concrete authoring invariants: [The Zen of AgentScript](references/zen-of-agentscript.md)
637
+ - Pattern selection by scenario: [Patterns by Requirement](references/patterns-by-requirement.md)
638
+ - Architecture mechanics and migration: [Architecture Patterns](references/architecture-patterns.md)
639
+ - Validation, preview, and traces: [Validation & Debugging](references/agent-validation-and-debugging.md)
640
+ - Deploy/publish/activate lifecycle: [Deploy Reference](references/deploy-reference.md)
641
+ - Metadata lifecycle and publish troubleshooting: [Metadata & Lifecycle](references/agent-metadata-and-lifecycle.md)
642
+ - ADL provisioning and wiring: [Data Library Reference](references/data-library-reference.md)
643
+ - Agent access and permissions: [Agent Access Guide](references/agent-access-guide.md), [Agent User Setup](references/agent-user-setup.md)
644
+ - Voice modality and telephony agents: [Voice Modality Reference](references/voice-modality-reference.md)
645
+ - Safety review framework: [Safety Review](references/safety-review-reference.md)
646
+ - Rubric and review scoring: [Scoring Rubric](references/scoring-rubric.md)
647
+ - Optimization patterns: [Pattern 1 — Data Flow](references/optimization-pattern-1-data-flow.md), [Pattern 2 — Deterministic Logic](references/optimization-pattern-2-deterministic-logic.md), [Pattern 3 — Reference Syntax](references/optimization-pattern-3-reference-syntax.md), [Pattern 4 — Escalation](references/optimization-pattern-4-escalation.md)
648
+ - MCP server registration and tool whitelisting: [MCP Server Management](references/mcp-management-reference.md)