sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
34 lines (28 loc) • 1.25 kB
JavaScript
const template = {
variables: [
{
name: "APPROVALPROCESS_NAME",
description: "The name of the Salesforce Approval Process to describe.",
example: "Opportunity_Approval"
},
{
name: "APPROVALPROCESS_XML",
description: "The XML metadata for the Salesforce Approval Process.",
example: "<ApprovalProcess>...</ApprovalProcess>"
}
], text: {
"en": `You are a skilled business analyst working on a Salesforce project. Your goal is to explain the what is the Salesforce Approval Process "{{APPROVALPROCESS_NAME}}" about in plain English, provide a detailed explanation suitable for a business user. {{VARIABLE_OUTPUT_FORMAT_MARKDOWN_DOC}}
1. **Contextual Overview**:
- Begin by summarizing the purpose of the approval process.
- List the key functionalities and business logic implemented in the approval process.
2. {{VARIABLE_FORMATTING_REQUIREMENTS}}
- The metadata XML for Approval Process "{{APPROVALPROCESS_NAME}}" is:
{{APPROVALPROCESS_XML}}
{{VARIABLE_ADDITIONAL_INSTRUCTIONS}}
`,
},
};
export default template;
//# sourceMappingURL=PROMPT_DESCRIBE_APPROVAL_PROCESS.js.map