Skip to content

API version update and minor fixes. #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/classes/TriggerHandler.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/TriggerHandler_Test.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsydFileExplorerController.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsydFileExplorerControllerTest.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsydFileExplorerTest.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 2 additions & 0 deletions src/classes/qsyd_ContentDocumentTriggerHandler.cls
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ public without sharing class qsyd_ContentDocumentTriggerHandler extends TriggerH
private List<ContentDocument> contentDocumentNewList;
private Map<Id, ContentDocument> contentDocumentNewMap;

//private static qsyd_FileExplorerCommon common = new qsyd_FileExplorerCommon();

private SObjectAccessDecision accessDecision;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsyd_File.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
4 changes: 2 additions & 2 deletions src/classes/qsyd_FileExplorerCommon.cls
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
global without sharing class qsyd_FileExplorerCommon {
private static String AUTOMATEDPROCESS_USERTYPE = 'AutomatedProcess';
private static String FILE_EXPLORER_PERMISSION = 'File_Explorer';
private static String FILE_EXPLORER_SETTINGS_QUALIFIEDAPINAME = 'qsyd_FE__Settings';
private static String FILE_EXPLORER_SETTINGS_QUALIFIEDAPINAME = 'Settings';
private static String DEFAULT_ACTION_MESSAGES_FILE_EXPLORER_IS_NOT_ENABLED = 'In order to access the File Explorer, please ask your Administrator to enable the Lightning File Explorer in the Custom Metadata Settings record.';
private static String DEFAULT_ACTION_MESSAGES_NO_PERMISSION_SET = 'In order to access the File Explorer, please ask your Administrator to assign the &lt;a href=&quot;/lightning/setup/PermSets/home&quot;&gt;File Explorer Permission Set&lt;/a&gt; to your user.';

Expand Down Expand Up @@ -41,7 +41,7 @@ global without sharing class qsyd_FileExplorerCommon {
public static Boolean isFileExplorerEnabled() {
Boolean isFileExplorerEnabled = [
SELECT Enable__c
FROM qsyd_FE__Lightning_File_Explorer__mdt
FROM Lightning_File_Explorer__mdt
WHERE QualifiedApiName = :FILE_EXPLORER_SETTINGS_QUALIFIEDAPINAME
]?.Enable__c;

Expand Down
2 changes: 1 addition & 1 deletion src/classes/qsyd_FileExplorerCommon.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>51.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsyd_FileList.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsyd_Folder.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsyd_FolderList.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsyd_FolderTemplate.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsyd_IItem.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsyd_IItemList.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsyd_Item.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsyd_ItemFactory.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
2 changes: 1 addition & 1 deletion src/classes/qsyd_ItemList.cls-meta.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<status>Active</status>
</ApexClass>
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<flexiPageRegions>
<itemInstances>
<componentInstance>
<identifier>c_detailPanel</identifier>
<componentName>force:detailPanel</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -20,6 +21,7 @@
<name>title</name>
<value>File Explorer</value>
</componentInstanceProperties>
<identifier>c_qsydFileExplorer</identifier>
<componentName>qsydFileExplorer</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -41,6 +43,7 @@
<name>title</name>
<value>Standard.Tab.detail</value>
</componentInstanceProperties>
<identifier>c_detailTabContent</identifier>
<componentName>flexipage:tab</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -58,6 +61,7 @@
<name>title</name>
<value>Template Builder</value>
</componentInstanceProperties>
<identifier>c_relatedTabContent</identifier>
<componentName>flexipage:tab</componentName>
</componentInstance>
</itemInstances>
Expand Down Expand Up @@ -86,6 +90,7 @@
<name>numVisibleActions</name>
<value>3</value>
</componentInstanceProperties>
<identifier>c_highlightsPanel</identifier>
<componentName>force:highlightsPanel</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -95,6 +100,7 @@
<name>tabs</name>
<value>maintabs</value>
</componentInstanceProperties>
<identifier>c_tabset</identifier>
<componentName>flexipage:tabset</componentName>
</componentInstance>
</itemInstances>
Expand Down
13 changes: 13 additions & 0 deletions src/flexipages/Home_Page_Default.flexipage
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<name>richTextValue</name>
<value>&lt;p&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;To ensure the following steps go ahead smoothly, your user(s) should have access to the objects that come along with the package.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;We have provided a &lt;/span&gt;&lt;a href=&quot;/lightning/setup/PermSets/home&quot; target=&quot;_blank&quot; style=&quot;font-size: 14px;&quot;&gt;&lt;b&gt;permission set&lt;/b&gt;&lt;/a&gt;&lt;b style=&quot;font-size: 14px;&quot;&gt; &lt;/b&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;to make this step a bit quicker. Just search for &quot;File Explorer Permission Set&quot;. Simply assign it to any users which will be using this component.&lt;/span&gt;&lt;/p&gt;</value>
</componentInstanceProperties>
<identifier>c_richText1</identifier>
<componentName>flexipage:richText</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -28,6 +29,7 @@
<name>richTextValue</name>
<value>&lt;p&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;On the record page of your choice, edit the page in Lightning App Builder and search for the component &quot;File Explorer&quot; and drag it in.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;Select the &apos;Search Results Display Style&apos; to your users&apos; preference.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</value>
</componentInstanceProperties>
<identifier>c_richText2</identifier>
<componentName>flexipage:richText</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -45,6 +47,7 @@
<name>richTextValue</name>
<value>&lt;p&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;Once your component is on the page, if needed, sync your available files first. Then you can move onto creating your hierarchy. Add and rearrange folders as you see fit and then move files into them.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://qsyd-filexplorer-dev-ed--c.documentforce.com/servlet/rtaImage?refid=0EM2w000000DCtP&quot; alt=&quot;image.png&quot;&gt;&lt;/p&gt;</value>
</componentInstanceProperties>
<identifier>c_richText3</identifier>
<componentName>flexipage:richText</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -62,6 +65,7 @@
<name>richTextValue</name>
<value>&lt;p&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;Now your files are organised nicely under folders you can also go ahead and add some tags so you can easily search for them.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://qsyd-filexplorer-dev-ed--c.documentforce.com/servlet/rtaImage?refid=0EM2w000000DCtt&quot; alt=&quot;image.png&quot;&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://qsyd-filexplorer-dev-ed--c.documentforce.com/servlet/rtaImage?refid=0EM2w000000DCty&quot; alt=&quot;image.png&quot;&gt;&lt;/p&gt;</value>
</componentInstanceProperties>
<identifier>c_richText4</identifier>
<componentName>flexipage:richText</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -83,6 +87,7 @@
<name>name</name>
<value>accordionSection--tzptsb4h3j</value>
</componentInstanceProperties>
<identifier>c_accordionSection</identifier>
<componentName>flexipage:accordionSection</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -100,6 +105,7 @@
<name>name</name>
<value>accordionSection1</value>
</componentInstanceProperties>
<identifier>c_accordionSection2</identifier>
<componentName>flexipage:accordionSection</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -117,6 +123,7 @@
<name>name</name>
<value>accordionSection2</value>
</componentInstanceProperties>
<identifier>c_accordionSection3</identifier>
<componentName>flexipage:accordionSection</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -134,6 +141,7 @@
<name>name</name>
<value>accordionSection--cpl3orfozu5</value>
</componentInstanceProperties>
<identifier>c_accordionSection4</identifier>
<componentName>flexipage:accordionSection</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -151,6 +159,7 @@
<name>richTextValue</name>
<value>&lt;p&gt;&lt;b style=&quot;font-size: 16px;&quot;&gt;Thank you for installing Lightning File Explorer&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;To familiarize yourself with the package and its&apos; components in detail, make sure you give the &lt;/span&gt;&lt;a href=&quot;https://salesforce.quip.com/M45zATwr2795&quot; target=&quot;_blank&quot; style=&quot;font-size: 16px;&quot;&gt;Quip guide&lt;/a&gt; &lt;span style=&quot;font-size: 16px;&quot;&gt;(https://salesforce.quip.com/M45zATwr2795) a read through so you can make the most out of what&apos;s provided.&lt;/span&gt;&lt;/p&gt;</value>
</componentInstanceProperties>
<identifier>c_richText6</identifier>
<componentName>flexipage:richText</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -164,6 +173,7 @@
<name>richTextValue</name>
<value>&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;Below are some quick steps to get you started in using the &apos;&lt;/span&gt;&lt;b style=&quot;font-size: 16px;&quot;&gt;File Explorer&lt;/b&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&apos; component.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;Expand the accordions below to view more details of each step.&lt;/span&gt;&lt;/p&gt;</value>
</componentInstanceProperties>
<identifier>c_richText7</identifier>
<componentName>flexipage:richText</componentName>
</componentInstance>
</itemInstances>
Expand All @@ -177,6 +187,7 @@
<name>defaultSectionName</name>
<value>accordionSection--tzptsb4h3j</value>
</componentInstanceProperties>
<identifier>c_accordion</identifier>
<componentName>flexipage:accordion</componentName>
</componentInstance>
</itemInstances>
Expand Down Expand Up @@ -205,11 +216,13 @@
<name>richTextValue</name>
<value>&lt;p&gt;Quick list of some key components provided by this package:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;/lightning/setup/ObjectManager/home&quot; rel=&quot;noopener noreferrer&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;Custom Objects&lt;/b&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt;File Explorer File&lt;/li&gt;&lt;li&gt;File Explorer Folder&lt;/li&gt;&lt;li&gt;File Explorer Folder Template&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;/lightning/setup/LightningComponentBundles/home&quot; rel=&quot;noopener noreferrer&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;Lightning Web Component&lt;/b&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt;File Explorer&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;/lightning/setup/PermSets/home&quot; rel=&quot;noopener noreferrer&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;Permission Set&lt;/b&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt;File Explorer Permission Set&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;</value>
</componentInstanceProperties>
<identifier>c_richText8</identifier>
<componentName>flexipage:richText</componentName>
</componentInstance>
</itemInstances>
<itemInstances>
<componentInstance>
<identifier>c_recentRecordContainer</identifier>
<componentName>home:recentRecordContainer</componentName>
</componentInstance>
</itemInstances>
Expand Down
2 changes: 1 addition & 1 deletion src/lwc/qsydAlert/qsydAlert.js-meta.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<description>Lightning alert</description>
<isExposed>false</isExposed>
<masterLabel>QSyd Alert</masterLabel>
Expand Down
2 changes: 1 addition & 1 deletion src/lwc/qsydFileExplorer/qsydFileExplorer.js-meta.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="urn:metadata.tooling.soap.sforce.com" fqn="qsydFileExplorerCmp">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<isExposed>true</isExposed>
<masterLabel>File Explorer</masterLabel>
<targets>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="urn:metadata.tooling.soap.sforce.com" fqn="qsydFileExplorerActions">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="urn:metadata.tooling.soap.sforce.com" fqn="qsydFileExplorerBreadcrumbs">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<description>Common logic</description>
<isExposed>false</isExposed>
<masterLabel>QSyd File Explorer Common</masterLabel>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="urn:metadata.tooling.soap.sforce.com" fqn="qsydFileExplorerDetail">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<description>QSyd File Explorer File Sync</description>
<isExposed>false</isExposed>
<masterLabel>QSyd File Explorer File Sync</masterLabel>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="urn:metadata.tooling.soap.sforce.com" fqn="qsydFileExplorerItem">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<description>File Explorer Management</description>
<isExposed>false</isExposed>
<masterLabel>QSyd File Explorer Management</masterLabel>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="urn:metadata.tooling.soap.sforce.com" fqn="qsydFileExplorerResults">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="urn:metadata.tooling.soap.sforce.com" fqn="qsydFileExplorerSearch">
<apiVersion>48.0</apiVersion>
<apiVersion>61.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
Loading