mobbdev 0.0.47 → 0.0.48

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -1894,7 +1894,7 @@ async function getGitlabRepoList(accessToken) {
1894
1894
  return Promise.all(
1895
1895
  res.map(async (project) => {
1896
1896
  const proj = await api.Projects.show(project.id);
1897
- const owner = proj.owner.name;
1897
+ const owner = proj.namespace.name;
1898
1898
  const repoLanguages = await api.Projects.showLanguages(project.id);
1899
1899
  return {
1900
1900
  repoName: project.path,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "https://github.com/mobb-dev/bugsy",
6
6
  "main": "dist/index.js",