mobbdev 1.2.50 → 1.2.52

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.
@@ -4557,6 +4557,9 @@ function subscribeStream(query, variables, handlers, wsClientOptions) {
4557
4557
  };
4558
4558
  }
4559
4559
 
4560
+ // src/features/analysis/scm/ado/ado.ts
4561
+ import pLimit from "p-limit";
4562
+
4560
4563
  // src/features/analysis/scm/utils/index.ts
4561
4564
  import { z as z15 } from "zod";
4562
4565
 
@@ -6521,6 +6524,8 @@ var debug3 = Debug3("mobbdev:scm:ado");
6521
6524
 
6522
6525
  // src/features/analysis/scm/ado/AdoSCMLib.ts
6523
6526
  import { setTimeout as setTimeout2 } from "timers/promises";
6527
+ import pLimit2 from "p-limit";
6528
+ init_client_generates();
6524
6529
 
6525
6530
  // src/features/analysis/scm/scmSubmit/index.ts
6526
6531
  init_GitService();
@@ -6593,7 +6598,7 @@ import {
6593
6598
  Gitlab
6594
6599
  } from "@gitbeaker/rest";
6595
6600
  import Debug5 from "debug";
6596
- import pLimit from "p-limit";
6601
+ import pLimit3 from "p-limit";
6597
6602
  import {
6598
6603
  Agent,
6599
6604
  fetch as undiciFetch,
@@ -7879,7 +7884,7 @@ async function getRepositoryUrl() {
7879
7884
  }
7880
7885
  const remoteUrl = await gitService.getRemoteUrl();
7881
7886
  const parsed = parseScmURL(remoteUrl);
7882
- return parsed?.scmType === "GitHub" /* GitHub */ || parsed?.scmType === "GitLab" /* GitLab */ ? remoteUrl : null;
7887
+ return parsed?.scmType && parsed.scmType !== "Unknown" ? remoteUrl : null;
7883
7888
  } catch {
7884
7889
  return null;
7885
7890
  }