mobbdev 1.4.62 → 1.4.65

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.
@@ -261,6 +261,7 @@ var init_client_generates = __esm({
261
261
  Scan_Source_Enum2["CiJenkins"] = "CI_JENKINS";
262
262
  Scan_Source_Enum2["CiUnknown"] = "CI_UNKNOWN";
263
263
  Scan_Source_Enum2["Cli"] = "CLI";
264
+ Scan_Source_Enum2["GithubPrCheck"] = "GITHUB_PR_CHECK";
264
265
  Scan_Source_Enum2["Mcp"] = "MCP";
265
266
  Scan_Source_Enum2["WebUiCheckmarxIntegration"] = "WEB_UI_CHECKMARX_INTEGRATION";
266
267
  Scan_Source_Enum2["WebUiFixOwnCode"] = "WEB_UI_FIX_OWN_CODE";
package/dist/index.mjs CHANGED
@@ -261,6 +261,7 @@ var init_client_generates = __esm({
261
261
  Scan_Source_Enum2["CiJenkins"] = "CI_JENKINS";
262
262
  Scan_Source_Enum2["CiUnknown"] = "CI_UNKNOWN";
263
263
  Scan_Source_Enum2["Cli"] = "CLI";
264
+ Scan_Source_Enum2["GithubPrCheck"] = "GITHUB_PR_CHECK";
264
265
  Scan_Source_Enum2["Mcp"] = "MCP";
265
266
  Scan_Source_Enum2["WebUiCheckmarxIntegration"] = "WEB_UI_CHECKMARX_INTEGRATION";
266
267
  Scan_Source_Enum2["WebUiFixOwnCode"] = "WEB_UI_FIX_OWN_CODE";
@@ -7725,7 +7726,12 @@ function getGithubSdk(params = {}) {
7725
7726
  repoOwner: repo.owner.login,
7726
7727
  repoLanguages: repo.language ? [repo.language] : [],
7727
7728
  repoIsPublic: !repo.private,
7728
- repoUpdatedAt: repo.updated_at
7729
+ repoUpdatedAt: repo.updated_at,
7730
+ // GitHub already returns this on /user/repos; it was simply never mapped.
7731
+ // PR-check enablement registers a webhook, which needs repo admin, so a
7732
+ // picker without it can only offer every repository and let the customer
7733
+ // discover by failing.
7734
+ repoIsAdmin: repo.permissions ? repo.permissions.admin === true : void 0
7729
7735
  }));
7730
7736
  return {
7731
7737
  items,
@@ -18562,7 +18568,7 @@ function createLogger(config2) {
18562
18568
 
18563
18569
  // src/features/claude_code/hook_logger.ts
18564
18570
  var DD_RUM_TOKEN = true ? "pubf59c0182545bfb4c299175119f1abf9b" : "";
18565
- var CLI_VERSION = true ? "1.4.62" : "unknown";
18571
+ var CLI_VERSION = true ? "1.4.65" : "unknown";
18566
18572
  var NAMESPACE = "mobbdev-claude-code-hook-logs";
18567
18573
  var claudeCodeVersion;
18568
18574
  function buildDdTags() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.4.62",
3
+ "version": "1.4.65",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "git+https://github.com/mobb-dev/bugsy.git",
6
6
  "main": "dist/index.mjs",