@digital-ai/plugin-scaffolder-backend-module-digitalai-xlcli
Version:
xlcli custom action for @backstage/plugin-scaffolder-backend
17 lines (13 loc) • 505 B
JavaScript
;
var zod = require('zod');
const xlcliInputSchema = zod.z.object({
product: zod.z.enum(["xl-release", "xl-deploy"]).describe(
"The Product name [xl-release / xl-deploy] to apply the file"
),
releaseInstance: zod.z.string().optional().describe(
"The Release Instance name to apply the file (required only for xl-release)"
),
filePath: zod.z.string().describe("The filePath to apply")
});
exports.xlcliInputSchema = xlcliInputSchema;
//# sourceMappingURL=schema.cjs.js.map