mobbdev 1.4.9 → 1.4.10
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 +24 -4
- package/dist/index.mjs +25 -5
- package/package.json +1 -1
|
@@ -1342,7 +1342,7 @@ var init_shared = __esm({
|
|
|
1342
1342
|
|
|
1343
1343
|
// src/features/analysis/scm/shared/src/types/fix.ts
|
|
1344
1344
|
import { z as z2 } from "zod";
|
|
1345
|
-
var PackageInfoZ, ManifestActionRequiredZ, ExtraContextInternalZ, FixExtraContextZ, PatchAndQuestionsZ, FixRatingZ, IssueSharedStateZ, FixSharedStateZ, FixQueryZ, FixPartsForFixScreenZ;
|
|
1345
|
+
var PackageInfoZ, ManifestActionRequiredZ, ExtraContextInternalZ, FixExtraContextZ, PatchAndQuestionsZ, FixRatingZ, IssueRatingZ, IssueSharedStateZ, FixSharedStateZ, FixQueryZ, FixPartsForFixScreenZ;
|
|
1346
1346
|
var init_fix = __esm({
|
|
1347
1347
|
"src/features/analysis/scm/shared/src/types/fix.ts"() {
|
|
1348
1348
|
"use strict";
|
|
@@ -1403,6 +1403,15 @@ var init_fix = __esm({
|
|
|
1403
1403
|
name: z2.string()
|
|
1404
1404
|
})
|
|
1405
1405
|
});
|
|
1406
|
+
IssueRatingZ = z2.object({
|
|
1407
|
+
voteScore: z2.number(),
|
|
1408
|
+
comment: z2.string().nullable().default(null),
|
|
1409
|
+
updatedDate: z2.string().nullable(),
|
|
1410
|
+
user: z2.object({
|
|
1411
|
+
email: z2.string(),
|
|
1412
|
+
name: z2.string()
|
|
1413
|
+
})
|
|
1414
|
+
});
|
|
1406
1415
|
IssueSharedStateZ = z2.object({
|
|
1407
1416
|
id: z2.string(),
|
|
1408
1417
|
createdAt: z2.string(),
|
|
@@ -1412,7 +1421,8 @@ var init_fix = __esm({
|
|
|
1412
1421
|
z2.object({
|
|
1413
1422
|
url: z2.string()
|
|
1414
1423
|
})
|
|
1415
|
-
)
|
|
1424
|
+
),
|
|
1425
|
+
issueRatings: z2.array(IssueRatingZ).default([])
|
|
1416
1426
|
}).nullable();
|
|
1417
1427
|
FixSharedStateZ = z2.object({
|
|
1418
1428
|
state: z2.nativeEnum(Fix_State_Enum),
|
|
@@ -1518,7 +1528,7 @@ var init_analysis = __esm({
|
|
|
1518
1528
|
|
|
1519
1529
|
// src/features/analysis/scm/shared/src/types/issue.ts
|
|
1520
1530
|
import { z as z4 } from "zod";
|
|
1521
|
-
var MAX_SOURCE_CODE_FILE_SIZE_IN_BYTES, VulnerabilityReportIssueSharedStateZ, BaseIssuePartsZ, FalsePositivePartsZ, IssuePartsWithFixZ, IssuePartsFpZ, GeneralIssueZ, IssuePartsZ, GetIssueIndexesZ, GetIssueScreenDataZ, IssueBucketZ, mapBucketTypeToCategory;
|
|
1531
|
+
var MAX_SOURCE_CODE_FILE_SIZE_IN_BYTES, VulnerabilityReportIssueRatingZ, VulnerabilityReportIssueSharedStateZ, BaseIssuePartsZ, FalsePositivePartsZ, IssuePartsWithFixZ, IssuePartsFpZ, GeneralIssueZ, IssuePartsZ, GetIssueIndexesZ, GetIssueScreenDataZ, IssueBucketZ, mapBucketTypeToCategory;
|
|
1522
1532
|
var init_issue = __esm({
|
|
1523
1533
|
"src/features/analysis/scm/shared/src/types/issue.ts"() {
|
|
1524
1534
|
"use strict";
|
|
@@ -1527,6 +1537,15 @@ var init_issue = __esm({
|
|
|
1527
1537
|
init_fix();
|
|
1528
1538
|
init_shared();
|
|
1529
1539
|
MAX_SOURCE_CODE_FILE_SIZE_IN_BYTES = 1e5;
|
|
1540
|
+
VulnerabilityReportIssueRatingZ = z4.object({
|
|
1541
|
+
voteScore: z4.number(),
|
|
1542
|
+
comment: z4.string().nullable().default(null),
|
|
1543
|
+
updatedDate: z4.string().nullable(),
|
|
1544
|
+
user: z4.object({
|
|
1545
|
+
email: z4.string(),
|
|
1546
|
+
name: z4.string()
|
|
1547
|
+
})
|
|
1548
|
+
});
|
|
1530
1549
|
VulnerabilityReportIssueSharedStateZ = z4.object({
|
|
1531
1550
|
id: z4.string().uuid(),
|
|
1532
1551
|
createdAt: z4.string(),
|
|
@@ -1536,7 +1555,8 @@ var init_issue = __esm({
|
|
|
1536
1555
|
z4.object({
|
|
1537
1556
|
url: z4.string()
|
|
1538
1557
|
})
|
|
1539
|
-
)
|
|
1558
|
+
),
|
|
1559
|
+
issueRatings: z4.array(VulnerabilityReportIssueRatingZ).default([])
|
|
1540
1560
|
}).nullish();
|
|
1541
1561
|
BaseIssuePartsZ = z4.object({
|
|
1542
1562
|
id: z4.string().uuid(),
|
package/dist/index.mjs
CHANGED
|
@@ -1563,7 +1563,7 @@ var init_shared = __esm({
|
|
|
1563
1563
|
|
|
1564
1564
|
// src/features/analysis/scm/shared/src/types/fix.ts
|
|
1565
1565
|
import { z as z7 } from "zod";
|
|
1566
|
-
var PackageInfoZ, ManifestActionRequiredZ, ExtraContextInternalZ, FixExtraContextZ, PatchAndQuestionsZ, FixRatingZ, IssueSharedStateZ, FixSharedStateZ, FixQueryZ, FixPartsForFixScreenZ;
|
|
1566
|
+
var PackageInfoZ, ManifestActionRequiredZ, ExtraContextInternalZ, FixExtraContextZ, PatchAndQuestionsZ, FixRatingZ, IssueRatingZ, IssueSharedStateZ, FixSharedStateZ, FixQueryZ, FixPartsForFixScreenZ;
|
|
1567
1567
|
var init_fix = __esm({
|
|
1568
1568
|
"src/features/analysis/scm/shared/src/types/fix.ts"() {
|
|
1569
1569
|
"use strict";
|
|
@@ -1624,6 +1624,15 @@ var init_fix = __esm({
|
|
|
1624
1624
|
name: z7.string()
|
|
1625
1625
|
})
|
|
1626
1626
|
});
|
|
1627
|
+
IssueRatingZ = z7.object({
|
|
1628
|
+
voteScore: z7.number(),
|
|
1629
|
+
comment: z7.string().nullable().default(null),
|
|
1630
|
+
updatedDate: z7.string().nullable(),
|
|
1631
|
+
user: z7.object({
|
|
1632
|
+
email: z7.string(),
|
|
1633
|
+
name: z7.string()
|
|
1634
|
+
})
|
|
1635
|
+
});
|
|
1627
1636
|
IssueSharedStateZ = z7.object({
|
|
1628
1637
|
id: z7.string(),
|
|
1629
1638
|
createdAt: z7.string(),
|
|
@@ -1633,7 +1642,8 @@ var init_fix = __esm({
|
|
|
1633
1642
|
z7.object({
|
|
1634
1643
|
url: z7.string()
|
|
1635
1644
|
})
|
|
1636
|
-
)
|
|
1645
|
+
),
|
|
1646
|
+
issueRatings: z7.array(IssueRatingZ).default([])
|
|
1637
1647
|
}).nullable();
|
|
1638
1648
|
FixSharedStateZ = z7.object({
|
|
1639
1649
|
state: z7.nativeEnum(Fix_State_Enum),
|
|
@@ -1739,7 +1749,7 @@ var init_analysis = __esm({
|
|
|
1739
1749
|
|
|
1740
1750
|
// src/features/analysis/scm/shared/src/types/issue.ts
|
|
1741
1751
|
import { z as z9 } from "zod";
|
|
1742
|
-
var MAX_SOURCE_CODE_FILE_SIZE_IN_BYTES, VulnerabilityReportIssueSharedStateZ, BaseIssuePartsZ, FalsePositivePartsZ, IssuePartsWithFixZ, IssuePartsFpZ, GeneralIssueZ, IssuePartsZ, GetIssueIndexesZ, GetIssueScreenDataZ, IssueBucketZ, mapCategoryToBucket, mapBucketTypeToCategory;
|
|
1752
|
+
var MAX_SOURCE_CODE_FILE_SIZE_IN_BYTES, VulnerabilityReportIssueRatingZ, VulnerabilityReportIssueSharedStateZ, BaseIssuePartsZ, FalsePositivePartsZ, IssuePartsWithFixZ, IssuePartsFpZ, GeneralIssueZ, IssuePartsZ, GetIssueIndexesZ, GetIssueScreenDataZ, IssueBucketZ, mapCategoryToBucket, mapBucketTypeToCategory;
|
|
1743
1753
|
var init_issue = __esm({
|
|
1744
1754
|
"src/features/analysis/scm/shared/src/types/issue.ts"() {
|
|
1745
1755
|
"use strict";
|
|
@@ -1748,6 +1758,15 @@ var init_issue = __esm({
|
|
|
1748
1758
|
init_fix();
|
|
1749
1759
|
init_shared();
|
|
1750
1760
|
MAX_SOURCE_CODE_FILE_SIZE_IN_BYTES = 1e5;
|
|
1761
|
+
VulnerabilityReportIssueRatingZ = z9.object({
|
|
1762
|
+
voteScore: z9.number(),
|
|
1763
|
+
comment: z9.string().nullable().default(null),
|
|
1764
|
+
updatedDate: z9.string().nullable(),
|
|
1765
|
+
user: z9.object({
|
|
1766
|
+
email: z9.string(),
|
|
1767
|
+
name: z9.string()
|
|
1768
|
+
})
|
|
1769
|
+
});
|
|
1751
1770
|
VulnerabilityReportIssueSharedStateZ = z9.object({
|
|
1752
1771
|
id: z9.string().uuid(),
|
|
1753
1772
|
createdAt: z9.string(),
|
|
@@ -1757,7 +1776,8 @@ var init_issue = __esm({
|
|
|
1757
1776
|
z9.object({
|
|
1758
1777
|
url: z9.string()
|
|
1759
1778
|
})
|
|
1760
|
-
)
|
|
1779
|
+
),
|
|
1780
|
+
issueRatings: z9.array(VulnerabilityReportIssueRatingZ).default([])
|
|
1761
1781
|
}).nullish();
|
|
1762
1782
|
BaseIssuePartsZ = z9.object({
|
|
1763
1783
|
id: z9.string().uuid(),
|
|
@@ -19212,7 +19232,7 @@ function createLogger(config2) {
|
|
|
19212
19232
|
|
|
19213
19233
|
// src/features/claude_code/hook_logger.ts
|
|
19214
19234
|
var DD_RUM_TOKEN = true ? "pubf59c0182545bfb4c299175119f1abf9b" : "";
|
|
19215
|
-
var CLI_VERSION = true ? "1.4.
|
|
19235
|
+
var CLI_VERSION = true ? "1.4.10" : "unknown";
|
|
19216
19236
|
var NAMESPACE = "mobbdev-claude-code-hook-logs";
|
|
19217
19237
|
var claudeCodeVersion;
|
|
19218
19238
|
function buildDdTags() {
|