mobbdev 1.2.67 → 1.3.0
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/dist/args/commands/upload_ai_blame.mjs +10 -10
- package/dist/index.mjs +1824 -1006
- package/package.json +1 -1
|
@@ -4592,6 +4592,10 @@ function subscribeStream(query, variables, handlers, wsClientOptions) {
|
|
|
4592
4592
|
// src/features/analysis/scm/ado/ado.ts
|
|
4593
4593
|
import pLimit from "p-limit";
|
|
4594
4594
|
|
|
4595
|
+
// src/utils/contextLogger.ts
|
|
4596
|
+
import debugModule from "debug";
|
|
4597
|
+
var debug3 = debugModule("mobb:shared");
|
|
4598
|
+
|
|
4595
4599
|
// src/features/analysis/scm/utils/index.ts
|
|
4596
4600
|
import { z as z15 } from "zod";
|
|
4597
4601
|
|
|
@@ -6537,7 +6541,7 @@ var accountsZ = z17.object({
|
|
|
6537
6541
|
});
|
|
6538
6542
|
|
|
6539
6543
|
// src/features/analysis/scm/ado/utils.ts
|
|
6540
|
-
var
|
|
6544
|
+
var debug4 = Debug3("mobbdev:scm:ado");
|
|
6541
6545
|
|
|
6542
6546
|
// src/features/analysis/scm/ado/AdoSCMLib.ts
|
|
6543
6547
|
import { setTimeout as setTimeout2 } from "timers/promises";
|
|
@@ -6563,7 +6567,7 @@ var BitbucketAuthResultZ = z20.object({
|
|
|
6563
6567
|
});
|
|
6564
6568
|
|
|
6565
6569
|
// src/features/analysis/scm/bitbucket/bitbucket.ts
|
|
6566
|
-
var
|
|
6570
|
+
var debug5 = Debug4("scm:bitbucket");
|
|
6567
6571
|
var BITBUCKET_HOSTNAME = "bitbucket.org";
|
|
6568
6572
|
var TokenExpiredErrorZ = z21.object({
|
|
6569
6573
|
status: z21.number(),
|
|
@@ -6592,6 +6596,7 @@ var REPORT_DEFAULT_FILE_NAME = "report.json";
|
|
|
6592
6596
|
init_env();
|
|
6593
6597
|
|
|
6594
6598
|
// src/features/analysis/scm/github/GithubSCMLib.ts
|
|
6599
|
+
import pLimit3 from "p-limit";
|
|
6595
6600
|
import { z as z23 } from "zod";
|
|
6596
6601
|
init_client_generates();
|
|
6597
6602
|
|
|
@@ -6615,18 +6620,12 @@ import {
|
|
|
6615
6620
|
Gitlab
|
|
6616
6621
|
} from "@gitbeaker/rest";
|
|
6617
6622
|
import Debug5 from "debug";
|
|
6618
|
-
import
|
|
6623
|
+
import pLimit4 from "p-limit";
|
|
6619
6624
|
import {
|
|
6620
6625
|
Agent,
|
|
6621
6626
|
fetch as undiciFetch,
|
|
6622
6627
|
ProxyAgent as ProxyAgent2
|
|
6623
6628
|
} from "undici";
|
|
6624
|
-
|
|
6625
|
-
// src/utils/contextLogger.ts
|
|
6626
|
-
import debugModule from "debug";
|
|
6627
|
-
var debug5 = debugModule("mobb:shared");
|
|
6628
|
-
|
|
6629
|
-
// src/features/analysis/scm/gitlab/gitlab.ts
|
|
6630
6629
|
init_env();
|
|
6631
6630
|
|
|
6632
6631
|
// src/features/analysis/scm/gitlab/types.ts
|
|
@@ -6641,6 +6640,7 @@ var GitlabAuthResultZ = z24.object({
|
|
|
6641
6640
|
var debug6 = Debug5("scm:gitlab");
|
|
6642
6641
|
|
|
6643
6642
|
// src/features/analysis/scm/gitlab/GitlabSCMLib.ts
|
|
6643
|
+
import pLimit5 from "p-limit";
|
|
6644
6644
|
init_client_generates();
|
|
6645
6645
|
|
|
6646
6646
|
// src/features/analysis/scm/scmFactory.ts
|
|
@@ -7744,7 +7744,7 @@ async function handleMobbLogin({
|
|
|
7744
7744
|
});
|
|
7745
7745
|
throw new CliError("Failed to generate login URL");
|
|
7746
7746
|
}
|
|
7747
|
-
|
|
7747
|
+
console.log(
|
|
7748
7748
|
`If the page does not open automatically, kindly access it through ${loginUrl}.`
|
|
7749
7749
|
);
|
|
7750
7750
|
authManager.openUrlInBrowser();
|