@rudderhq/cli 0.2.7-canary.11 → 0.2.7-canary.12

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.js CHANGED
@@ -798,6 +798,7 @@ var init_chat = __esm({
798
798
  header: z8.string().trim().min(1).max(32).optional(),
799
799
  question: z8.string().trim().min(1).max(240),
800
800
  options: z8.array(chatAskUserOptionSchema).min(2).max(3),
801
+ selectionMode: z8.enum(["single", "multiple"]).optional(),
801
802
  allowFreeform: z8.boolean().optional()
802
803
  }).superRefine((question, ctx) => {
803
804
  const optionIds = /* @__PURE__ */ new Set();