|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata"> |
3 | | - <apiVersion>58.0</apiVersion> |
| 3 | + <apiVersion>59.0</apiVersion> |
4 | 4 | <isExposed>true</isExposed> |
5 | 5 | <masterLabel>Data Fetcher</masterLabel> |
6 | 6 | <targets> |
7 | 7 | <target>lightning__FlowScreen</target> |
8 | 8 | </targets> |
9 | 9 | <targetConfigs> |
10 | | - <targetConfig targets="lightning__FlowScreen"> |
11 | | - <propertyType name="T" extends="SObject" label="Object API Name" description="Select the API Name of the SObject to Query"/> |
| 10 | + <targetConfig targets="lightning__FlowScreen" configurationEditor="joshdaymentlabs-data-fetcher-c-p-e"> |
| 11 | + <propertyType name="T" extends="SObject" label="Object API Name" description="Select the API Name of the SObject to Query"/> |
| 12 | + <propertyType name="S" extends="SObject" label="Second Object API Name" description="Select a Second Object for SOSL Query"/> |
12 | 13 | <property name="queryString" label="SOQL Query" type="String" /> |
13 | 14 | <property name="firstRetrievedRecord" type="{T}" role="outputOnly" /> |
14 | 15 | <property name="retrievedRecords" type="{T[]}" role="outputOnly" /> |
15 | 16 | <property name="error" type="String" role="outputOnly" description="Error message when there is an error output from Data Fetcher"/> |
16 | 17 | <property name="aggQueryString" type="String" label="Aggregate SOQL Query" description="An aggregate SOQL Query string to perform math operations in SOQL"/> |
17 | 18 | <property name="aggQueryResult" type="Integer" role="outputOnly" description="Integer result from Aggregate Query"/> |
| 19 | + <property name="searchString" type="String" label="SOSL Query String" description="A SOSL Query string to perform a SOSL search"/> |
| 20 | + <property name="searchResults" type="{T[]}" role="outputOnly" /> |
| 21 | + <property name="searchResults1" type="{S[]}" role="outputOnly"/> |
| 22 | + <property name="objectName1" type="String" default="Account"/> |
| 23 | + <property name="objectName2" type="String" default="Account"/> |
18 | 24 | </targetConfig> |
19 | 25 | </targetConfigs> |
20 | 26 | </LightningComponentBundle> |
0 commit comments