codemie-sdk 0.1.270 → 0.1.272

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.cjs CHANGED
@@ -212,7 +212,8 @@ var AssistantCreateParamsSchema = import_zod.z.object({
212
212
  })
213
213
  ),
214
214
  assistant_ids: import_zod.z.array(import_zod.z.string()),
215
- prompt_variables: import_zod.z.array(PromptVariableSchema).optional().default([])
215
+ prompt_variables: import_zod.z.array(PromptVariableSchema).optional().default([]),
216
+ categories: import_zod.z.array(import_zod.z.string()).max(3).optional()
216
217
  }).readonly();
217
218
  var AssistantUpdateParamsSchema = AssistantCreateParamsSchema;
218
219
  var AssistantChatParamsSchema = import_zod.z.object({