@firestartr/cli 1.50.1-snapshot-25 → 1.50.1-snapshot-27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +4 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -298377,6 +298377,8 @@ async function getOrgTeamsDirectAccess(org) {
|
|
|
298377
298377
|
}
|
|
298378
298378
|
}
|
|
298379
298379
|
}`);
|
|
298380
|
+
console.dir("--- 🚀 GraphQL response:");
|
|
298381
|
+
console.dir(response, { depth: null });
|
|
298380
298382
|
return transformGraphQLResponse(response);
|
|
298381
298383
|
}
|
|
298382
298384
|
;
|
|
@@ -298402,6 +298404,8 @@ function transformGraphQLResponse(response) {
|
|
|
298402
298404
|
result.repositories[repoName][teamName] = permission;
|
|
298403
298405
|
});
|
|
298404
298406
|
});
|
|
298407
|
+
console.log("--- 🚀 Transformed GraphQL response:");
|
|
298408
|
+
console.dir(result, { depth: null });
|
|
298405
298409
|
return result;
|
|
298406
298410
|
}
|
|
298407
298411
|
async function getOrgPlanName(org) {
|