codemie-sdk 0.1.271 → 0.1.273
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 +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +27 -15
- package/dist/index.d.ts +27 -15
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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({
|