mobbdev 1.4.43 → 1.4.44
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.
|
@@ -1274,9 +1274,11 @@ var init_shared = __esm({
|
|
|
1274
1274
|
z.object({
|
|
1275
1275
|
scmSubmitFixRequest: z.object({
|
|
1276
1276
|
submitFixRequest: z.object({
|
|
1277
|
+
// note: nullable at runtime (e.g. deleted or permission-filtered user)
|
|
1278
|
+
// even though the generated schema says otherwise
|
|
1277
1279
|
createdByUser: z.object({
|
|
1278
1280
|
email: z.string()
|
|
1279
|
-
}),
|
|
1281
|
+
}).nullable().transform((user) => user ?? { email: "" }),
|
|
1280
1282
|
targetBranchName: z.string().default("")
|
|
1281
1283
|
}),
|
|
1282
1284
|
prUrl: z.string().nullable(),
|
package/dist/index.mjs
CHANGED
|
@@ -1376,9 +1376,11 @@ var init_shared = __esm({
|
|
|
1376
1376
|
z2.object({
|
|
1377
1377
|
scmSubmitFixRequest: z2.object({
|
|
1378
1378
|
submitFixRequest: z2.object({
|
|
1379
|
+
// note: nullable at runtime (e.g. deleted or permission-filtered user)
|
|
1380
|
+
// even though the generated schema says otherwise
|
|
1379
1381
|
createdByUser: z2.object({
|
|
1380
1382
|
email: z2.string()
|
|
1381
|
-
}),
|
|
1383
|
+
}).nullable().transform((user) => user ?? { email: "" }),
|
|
1382
1384
|
targetBranchName: z2.string().default("")
|
|
1383
1385
|
}),
|
|
1384
1386
|
prUrl: z2.string().nullable(),
|
|
@@ -17977,7 +17979,7 @@ function createLogger(config2) {
|
|
|
17977
17979
|
|
|
17978
17980
|
// src/features/claude_code/hook_logger.ts
|
|
17979
17981
|
var DD_RUM_TOKEN = true ? "pubf59c0182545bfb4c299175119f1abf9b" : "";
|
|
17980
|
-
var CLI_VERSION = true ? "1.4.
|
|
17982
|
+
var CLI_VERSION = true ? "1.4.44" : "unknown";
|
|
17981
17983
|
var NAMESPACE = "mobbdev-claude-code-hook-logs";
|
|
17982
17984
|
var claudeCodeVersion;
|
|
17983
17985
|
function buildDdTags() {
|