mobbdev 0.0.187 → 0.0.188
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 +4 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -317,6 +317,7 @@ var GetFixesDocument = `
|
|
|
317
317
|
__typename
|
|
318
318
|
... on FixData {
|
|
319
319
|
patch
|
|
320
|
+
patchOriginalEncodingBase64
|
|
320
321
|
questions {
|
|
321
322
|
defaultValue
|
|
322
323
|
extraContext {
|
|
@@ -1004,6 +1005,7 @@ var FixExtraContextZ = z3.object({
|
|
|
1004
1005
|
var PatchAndQuestionsZ = z3.object({
|
|
1005
1006
|
__typename: z3.literal("FixData"),
|
|
1006
1007
|
patch: z3.string(),
|
|
1008
|
+
patchOriginalEncodingBase64: z3.string(),
|
|
1007
1009
|
questions: z3.array(
|
|
1008
1010
|
z3.object({
|
|
1009
1011
|
name: z3.string(),
|
|
@@ -4540,6 +4542,7 @@ var BaseSubmitToScmMessageZ = z14.object({
|
|
|
4540
4542
|
fixes: z14.array(
|
|
4541
4543
|
z14.object({
|
|
4542
4544
|
fixId: z14.string().uuid(),
|
|
4545
|
+
patchesOriginalEncodingBase64: z14.array(z14.string()),
|
|
4543
4546
|
patches: z14.array(z14.string())
|
|
4544
4547
|
})
|
|
4545
4548
|
),
|
|
@@ -4642,7 +4645,7 @@ var isValidBranchName = async (branchName) => {
|
|
|
4642
4645
|
var FixesZ = z15.array(
|
|
4643
4646
|
z15.object({
|
|
4644
4647
|
fixId: z15.string(),
|
|
4645
|
-
|
|
4648
|
+
patchesOriginalEncodingBase64: z15.array(z15.string())
|
|
4646
4649
|
})
|
|
4647
4650
|
).nonempty();
|
|
4648
4651
|
|