mobbdev 1.0.119 → 1.0.121
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 +12 -10
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4552,7 +4552,7 @@ var IssueSharedStateZ = z7.object({
|
|
|
4552
4552
|
url: z7.string()
|
|
4553
4553
|
})
|
|
4554
4554
|
)
|
|
4555
|
-
});
|
|
4555
|
+
}).nullable();
|
|
4556
4556
|
var FixSharedStateZ = z7.object({
|
|
4557
4557
|
state: z7.nativeEnum(Fix_State_Enum),
|
|
4558
4558
|
isArchived: z7.boolean(),
|
|
@@ -4593,7 +4593,7 @@ var FixQueryZ = z7.object({
|
|
|
4593
4593
|
id: z7.string().uuid(),
|
|
4594
4594
|
isArchived: z7.boolean(),
|
|
4595
4595
|
ticketIntegrationId: z7.string().uuid().nullable()
|
|
4596
|
-
})
|
|
4596
|
+
}).nullable()
|
|
4597
4597
|
})
|
|
4598
4598
|
),
|
|
4599
4599
|
patchAndQuestions: PatchAndQuestionsZ,
|
|
@@ -4896,7 +4896,7 @@ var IssueSharedStateZ2 = z11.object({
|
|
|
4896
4896
|
url: z11.string()
|
|
4897
4897
|
})
|
|
4898
4898
|
)
|
|
4899
|
-
});
|
|
4899
|
+
}).nullable();
|
|
4900
4900
|
var ReportQueryResultZ = z11.object({
|
|
4901
4901
|
fixReport_by_pk: z11.object({
|
|
4902
4902
|
id: z11.string().uuid(),
|
|
@@ -7560,13 +7560,15 @@ function getGithubSdk(params = {}) {
|
|
|
7560
7560
|
if (!res?.repository?.object?.blame?.ranges) {
|
|
7561
7561
|
return [];
|
|
7562
7562
|
}
|
|
7563
|
-
return res.repository.object.blame.ranges.map(
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
|
|
7567
|
-
|
|
7568
|
-
|
|
7569
|
-
|
|
7563
|
+
return res.repository.object.blame.ranges.map(
|
|
7564
|
+
(range) => ({
|
|
7565
|
+
startingLine: range.startingLine,
|
|
7566
|
+
endingLine: range.endingLine,
|
|
7567
|
+
email: range.commit.author.user?.email || "",
|
|
7568
|
+
name: range.commit.author.user?.name || "",
|
|
7569
|
+
login: range.commit.author.user?.login || ""
|
|
7570
|
+
})
|
|
7571
|
+
);
|
|
7570
7572
|
},
|
|
7571
7573
|
// todo: refactor the name for this function
|
|
7572
7574
|
async createPr(params2) {
|