We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c957f8 commit 3012a16Copy full SHA for 3012a16
src/shared/orgListUtil.ts
@@ -69,6 +69,12 @@ export class OrgListUtil {
69
};
70
}
71
72
+ /**
73
+ * Organizes the scratchOrgs by DevHub to optimize calls to retrieveScratchOrgInfoFromDevHub(), then calls reduceScratchOrgInfo()
74
+ *
75
+ * @param {ExtendedAuthFields[]} scratchOrgs- an array of strings that are validated against the server.
76
+ * @returns the same scratch org list, but with updated information from the server.
77
+ */
78
public static async processScratchOrgs(scratchOrgs: ExtendedAuthFields[]): Promise<ExtendedAuthFields[]> {
79
// organize by DevHub to reduce queries
80
const orgIdsGroupedByDevHub: Dictionary<string[]> = {};
src/shared/parseOrgFields.ts
0 commit comments