mobbdev 1.4.15 → 1.4.16
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.
|
@@ -2338,6 +2338,10 @@ var init_types = __esm({
|
|
|
2338
2338
|
isDefault: z7.boolean().default(false),
|
|
2339
2339
|
organizationId: z7.string().uuid(),
|
|
2340
2340
|
vulnerabilityReports: z7.array(ProjectVulnerabilityReport),
|
|
2341
|
+
autoPrIncludeAiFixes: z7.preprocess(
|
|
2342
|
+
(val) => val === null || val === void 0 ? false : val,
|
|
2343
|
+
z7.boolean()
|
|
2344
|
+
),
|
|
2341
2345
|
projectIssueTypeSettings: z7.array(
|
|
2342
2346
|
IssueTypeSettingZ.merge(z7.object({ id: z7.string() }))
|
|
2343
2347
|
)
|
package/dist/index.mjs
CHANGED
|
@@ -2383,6 +2383,10 @@ var init_types = __esm({
|
|
|
2383
2383
|
isDefault: z11.boolean().default(false),
|
|
2384
2384
|
organizationId: z11.string().uuid(),
|
|
2385
2385
|
vulnerabilityReports: z11.array(ProjectVulnerabilityReport),
|
|
2386
|
+
autoPrIncludeAiFixes: z11.preprocess(
|
|
2387
|
+
(val) => val === null || val === void 0 ? false : val,
|
|
2388
|
+
z11.boolean()
|
|
2389
|
+
),
|
|
2386
2390
|
projectIssueTypeSettings: z11.array(
|
|
2387
2391
|
IssueTypeSettingZ.merge(z11.object({ id: z11.string() }))
|
|
2388
2392
|
)
|
|
@@ -19399,7 +19403,7 @@ function createLogger(config2) {
|
|
|
19399
19403
|
|
|
19400
19404
|
// src/features/claude_code/hook_logger.ts
|
|
19401
19405
|
var DD_RUM_TOKEN = true ? "pubf59c0182545bfb4c299175119f1abf9b" : "";
|
|
19402
|
-
var CLI_VERSION = true ? "1.4.
|
|
19406
|
+
var CLI_VERSION = true ? "1.4.16" : "unknown";
|
|
19403
19407
|
var NAMESPACE = "mobbdev-claude-code-hook-logs";
|
|
19404
19408
|
var claudeCodeVersion;
|
|
19405
19409
|
function buildDdTags() {
|