@@ -26,7 +26,7 @@ export type OrgListResult = {
2626 nonScratchOrgs : ExtendedAuthFields [ ] ;
2727 scratchOrgs : FullyPopulatedScratchOrgFields [ ] ;
2828 sandboxes : ExtendedAuthFields [ ] ;
29- regularOrgs : ExtendedAuthFields [ ] ;
29+ other : ExtendedAuthFields [ ] ;
3030 devHubs : ExtendedAuthFields [ ] ;
3131} ;
3232
@@ -68,7 +68,7 @@ export class OrgListCommand extends SfCommand<OrgListResult> {
6868 const metaConfigs = await OrgListUtil . readLocallyValidatedMetaConfigsGroupedByOrgType ( fileNames , flags ) ;
6969 const groupedSortedOrgs = {
7070 devHubs : metaConfigs . devHubs . map ( decorateWithDefaultStatus ) . sort ( comparator ) ,
71- regularOrgs : metaConfigs . regularOrgs . map ( decorateWithDefaultStatus ) . sort ( comparator ) ,
71+ other : metaConfigs . other . map ( decorateWithDefaultStatus ) . sort ( comparator ) ,
7272 sandboxes : metaConfigs . sandboxes . map ( decorateWithDefaultStatus ) . sort ( comparator ) ,
7373 nonScratchOrgs : metaConfigs . nonScratchOrgs . map ( decorateWithDefaultStatus ) . sort ( comparator ) ,
7474 scratchOrgs : metaConfigs . scratchOrgs . map ( decorateWithDefaultStatus ) . sort ( comparator ) ,
@@ -84,7 +84,7 @@ export class OrgListCommand extends SfCommand<OrgListResult> {
8484 }
8585
8686 const result = {
87- regularOrgs : groupedSortedOrgs . regularOrgs ,
87+ other : groupedSortedOrgs . other ,
8888 sandboxes : groupedSortedOrgs . sandboxes ,
8989 nonScratchOrgs : groupedSortedOrgs . nonScratchOrgs ,
9090 devHubs : groupedSortedOrgs . devHubs ,
@@ -95,7 +95,7 @@ export class OrgListCommand extends SfCommand<OrgListResult> {
9595
9696 this . printOrgTable ( {
9797 devHubs : result . devHubs ,
98- regularOrgs : result . regularOrgs ,
98+ other : result . other ,
9999 sandboxes : result . sandboxes ,
100100 scratchOrgs : result . scratchOrgs ,
101101 skipconnectionstatus : flags [ 'skip-connection-status' ] ,
@@ -143,17 +143,17 @@ Legend: ${defaultHubEmoji}=Default DevHub, ${defaultOrgEmoji}=Default Org ${
143143 protected printOrgTable ( {
144144 devHubs,
145145 scratchOrgs,
146- regularOrgs ,
146+ other ,
147147 sandboxes,
148148 skipconnectionstatus,
149149 } : {
150150 devHubs : ExtendedAuthFields [ ] ;
151- regularOrgs : ExtendedAuthFields [ ] ;
151+ other : ExtendedAuthFields [ ] ;
152152 sandboxes : ExtendedAuthFields [ ] ;
153153 scratchOrgs : FullyPopulatedScratchOrgFields [ ] ;
154154 skipconnectionstatus : boolean ;
155155 } ) : void {
156- if ( ! devHubs . length && ! regularOrgs . length && ! sandboxes . length ) {
156+ if ( ! devHubs . length && ! other . length && ! sandboxes . length ) {
157157 this . info ( messages . getMessage ( 'noResultsFound' ) ) ;
158158 return ;
159159 }
@@ -164,7 +164,7 @@ Legend: ${defaultHubEmoji}=Default DevHub, ${defaultOrgEmoji}=Default Org ${
164164 . map ( ( row ) => getStyledObject ( row ) )
165165 . map ( statusToEmoji ) ,
166166
167- ...regularOrgs
167+ ...other
168168 . map ( colorEveryFieldButConnectedStatus ( chalk . magentaBright ) )
169169 . map ( ( row ) => getStyledObject ( row ) )
170170 . map ( statusToEmoji ) ,
0 commit comments