Skip to content

Commit

Permalink
Merge pull request #1097 from jetstreamapp/feat/1042
Browse files Browse the repository at this point in the history
Include SecondGen-Installed-Editable in automation control
  • Loading branch information
paustint authored Nov 28, 2024
2 parents 96687f1 + ede2bf5 commit 49d73b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export async function getFlowsMetadata(selectedOrg: SalesforceOrgUi, sobjects: s
)
)
.flatMap(({ queryResults }) => queryResults.records)
.filter((record) => record.ManageableState === 'unmanaged' || record.IsTemplate);
.filter((record) => record.ManageableState === 'unmanaged' || record.ManageableState === 'installedEditable' || record.IsTemplate);
return flowMetadataRecords;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export function getFlowsQuery(sobjects: string[]) {
left: {
field: 'ManageableState',
operator: 'IN',
value: ['unmanaged', 'installed'],
value: ['unmanaged', 'installedEditable', 'installed'],
literalType: 'STRING',
},
operator: 'AND',
Expand Down

0 comments on commit 49d73b2

Please sign in to comment.