@koda-sl/baker-cli 0.185.0 → 0.185.2
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/cli.js +3 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3760,7 +3760,9 @@ var tagInputResultSchema = z13.discriminatedUnion("status", [
|
|
|
3760
3760
|
}),
|
|
3761
3761
|
z13.object({
|
|
3762
3762
|
status: z13.literal("declined"),
|
|
3763
|
-
reason: z13.string().optional()
|
|
3763
|
+
reason: z13.string().optional(),
|
|
3764
|
+
/** Set when the platform could not apply an approved change, rather than the user skipping it. */
|
|
3765
|
+
failed: z13.boolean().optional()
|
|
3764
3766
|
})
|
|
3765
3767
|
]);
|
|
3766
3768
|
var tagChangeToolResultSchema = z13.object({
|