-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: packaging updates for self-service (#50)
* feat: move flows to base package * fix: remove flows from service package * feat: customize packaging for self-service installation * fix: remove Route_To_Agent flow from base package * fix: re-add flow back to employee package * fix: update flow for self-service package * fix: update GitHub actions for changed base-app setup * fix: remove flow field metadata from base-app flow * fix: flow and ci changes for base package
- Loading branch information
1 parent
3162968
commit 55d6595
Showing
6 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
84 changes: 84 additions & 0 deletions
84
cc-base-app/main/default/flows/PersonalizedSchedule.flow-meta.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<Flow xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
|
||
<apiVersion>62.0</apiVersion> | ||
<description | ||
>This flow is used to take a contacts interests and generate a report of the | ||
available Experiences that they can enroll in today.</description> | ||
<environments>Default</environments> | ||
<interviewLabel | ||
>Personalize Schedule {!$Flow.CurrentDateTime}</interviewLabel> | ||
<label>Personalized Schedule</label> | ||
<processMetadataValues> | ||
<name>BuilderType</name> | ||
<value> | ||
<stringValue>LightningFlowBuilder</stringValue> | ||
</value> | ||
</processMetadataValues> | ||
<processMetadataValues> | ||
<name>CanvasMode</name> | ||
<value> | ||
<stringValue>AUTO_LAYOUT_CANVAS</stringValue> | ||
</value> | ||
</processMetadataValues> | ||
<processMetadataValues> | ||
<name>OriginBuilderType</name> | ||
<value> | ||
<stringValue>LightningFlowBuilder</stringValue> | ||
</value> | ||
</processMetadataValues> | ||
<processType>Flow</processType> | ||
<recordLookups> | ||
<name>Get_Contact</name> | ||
<label>Get Contact</label> | ||
<locationX>176</locationX> | ||
<locationY>134</locationY> | ||
<assignNullValuesIfNoRecordsFound | ||
>false</assignNullValuesIfNoRecordsFound> | ||
<filterLogic>and</filterLogic> | ||
<filters> | ||
<field>Id</field> | ||
<operator>EqualTo</operator> | ||
<value> | ||
<elementReference>recordId</elementReference> | ||
</value> | ||
</filters> | ||
<getFirstRecordOnly>true</getFirstRecordOnly> | ||
<object>Contact</object> | ||
<storeOutputAutomatically>true</storeOutputAutomatically> | ||
</recordLookups> | ||
<screens> | ||
<description>Display the field generation result</description> | ||
<name>Display_Result</name> | ||
<label>Display Result</label> | ||
<locationX>176</locationX> | ||
<locationY>350</locationY> | ||
<allowBack>true</allowBack> | ||
<allowFinish>true</allowFinish> | ||
<allowPause>true</allowPause> | ||
<fields> | ||
<name>PromptGenerationResult</name> | ||
<fieldText><p>Insert Variable Here</p></fieldText> | ||
<fieldType>DisplayText</fieldType> | ||
</fields> | ||
<showFooter>true</showFooter> | ||
<showHeader>true</showHeader> | ||
</screens> | ||
<start> | ||
<locationX>50</locationX> | ||
<locationY>0</locationY> | ||
<connector> | ||
<targetReference>Get_Contact</targetReference> | ||
</connector> | ||
</start> | ||
<status>Active</status> | ||
<variables> | ||
<description | ||
>The record Id that is passed in from the quick action.</description> | ||
<name>recordId</name> | ||
<dataType>String</dataType> | ||
<isCollection>false</isCollection> | ||
<isInput>true</isInput> | ||
<isOutput>false</isOutput> | ||
</variables> | ||
</Flow> |