mobbdev 1.4.33 → 1.4.34
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/index.mjs +8 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8265,6 +8265,7 @@ async function getRepositoriesByWorkspace(bitbucketClient, { workspaceSlug }) {
|
|
|
8265
8265
|
// src/features/analysis/scm/bitbucket/BitbucketSCMLib.ts
|
|
8266
8266
|
import { setTimeout as setTimeout3 } from "timers/promises";
|
|
8267
8267
|
import { z as z20 } from "zod";
|
|
8268
|
+
var BITBUCKET_API_TOKEN_GIT_USERNAME = "x-bitbucket-api-token-auth";
|
|
8268
8269
|
function getUserAndPassword(token) {
|
|
8269
8270
|
const [username, password] = token.split(":");
|
|
8270
8271
|
const safePasswordAndUsername = z20.object({ username: z20.string(), password: z20.string() }).parse({ username, password });
|
|
@@ -8325,8 +8326,12 @@ var BitbucketSCMLib = class extends SCMLib {
|
|
|
8325
8326
|
});
|
|
8326
8327
|
}
|
|
8327
8328
|
case "basic": {
|
|
8328
|
-
const {
|
|
8329
|
-
return buildAuthorizedRepoUrl({
|
|
8329
|
+
const { password } = authData;
|
|
8330
|
+
return buildAuthorizedRepoUrl({
|
|
8331
|
+
url,
|
|
8332
|
+
username: BITBUCKET_API_TOKEN_GIT_USERNAME,
|
|
8333
|
+
password
|
|
8334
|
+
});
|
|
8330
8335
|
}
|
|
8331
8336
|
}
|
|
8332
8337
|
}
|
|
@@ -19411,7 +19416,7 @@ function createLogger(config2) {
|
|
|
19411
19416
|
|
|
19412
19417
|
// src/features/claude_code/hook_logger.ts
|
|
19413
19418
|
var DD_RUM_TOKEN = true ? "pubf59c0182545bfb4c299175119f1abf9b" : "";
|
|
19414
|
-
var CLI_VERSION = true ? "1.4.
|
|
19419
|
+
var CLI_VERSION = true ? "1.4.34" : "unknown";
|
|
19415
19420
|
var NAMESPACE = "mobbdev-claude-code-hook-logs";
|
|
19416
19421
|
var claudeCodeVersion;
|
|
19417
19422
|
function buildDdTags() {
|