codemie-sdk 0.1.326 → 0.1.327

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
@@ -399,6 +399,20 @@ var AssistantService = class {
399
399
  );
400
400
  return response.data;
401
401
  }
402
+ /**
403
+ * Get list of available assistants with pagination metadata.
404
+ */
405
+ async listPaginated(_params = {}) {
406
+ const params = AssistantListParamsSchema.parse(_params);
407
+ const response = await this.api.get(
408
+ "/v1/assistants",
409
+ {
410
+ ...params,
411
+ ...params.filters && { filters: JSON.stringify(params.filters) }
412
+ }
413
+ );
414
+ return response;
415
+ }
402
416
  /**
403
417
  * Get assistant by ID.
404
418
  */