@vibexp/api-client 0.44.0 → 0.45.0

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.
@@ -332,7 +332,7 @@ export declare const getProjectResourceCreationMetrics: <ThrowOnError extends bo
332
332
  /**
333
333
  * List spec libraries
334
334
  *
335
- * Retrieves all spec libraries for the authenticated user with optional filtering and pagination. Use the `metadata` parameter to filter on metadata; the undocumented `metadata_<key>` prefix convention is deprecated and will be removed.
335
+ * Retrieves all spec libraries for the authenticated user with optional filtering and pagination.
336
336
  */
337
337
  export declare const listSpecLibraries: <ThrowOnError extends boolean = false>(options: Options<ListSpecLibrariesData, ThrowOnError>) => RequestResult<ListSpecLibrariesResponses, ListSpecLibrariesErrors, ThrowOnError>;
338
338
  /**
@@ -350,7 +350,7 @@ export declare const getBlueprintStats: <ThrowOnError extends boolean = false>(o
350
350
  /**
351
351
  * List spec libraries by project
352
352
  *
353
- * Retrieves spec libraries for a specific project with optional filtering. Use the `metadata` parameter to filter on metadata; the undocumented `metadata_<key>` prefix convention is deprecated and will be removed.
353
+ * Retrieves spec libraries for a specific project with optional filtering.
354
354
  */
355
355
  export declare const listSpecLibrariesByProject: <ThrowOnError extends boolean = false>(options: Options<ListSpecLibrariesByProjectData, ThrowOnError>) => RequestResult<ListSpecLibrariesByProjectResponses, ListSpecLibrariesByProjectErrors, ThrowOnError>;
356
356
  /**
@@ -728,7 +728,7 @@ export const getProjectResourceCreationMetrics = (options) => (options.client ??
728
728
  /**
729
729
  * List spec libraries
730
730
  *
731
- * Retrieves all spec libraries for the authenticated user with optional filtering and pagination. Use the `metadata` parameter to filter on metadata; the undocumented `metadata_<key>` prefix convention is deprecated and will be removed.
731
+ * Retrieves all spec libraries for the authenticated user with optional filtering and pagination.
732
732
  */
733
733
  export const listSpecLibraries = (options) => (options.client ?? client).get({
734
734
  responseType: 'json',
@@ -777,7 +777,7 @@ export const getBlueprintStats = (options) => (options.client ?? client).get({
777
777
  /**
778
778
  * List spec libraries by project
779
779
  *
780
- * Retrieves spec libraries for a specific project with optional filtering. Use the `metadata` parameter to filter on metadata; the undocumented `metadata_<key>` prefix convention is deprecated and will be removed.
780
+ * Retrieves spec libraries for a specific project with optional filtering.
781
781
  */
782
782
  export const listSpecLibrariesByProject = (options) => (options.client ?? client).get({
783
783
  responseType: 'json',
package/dist/schema.d.ts CHANGED
@@ -750,7 +750,7 @@ export interface paths {
750
750
  };
751
751
  /**
752
752
  * List spec libraries
753
- * @description Retrieves all spec libraries for the authenticated user with optional filtering and pagination. Use the `metadata` parameter to filter on metadata; the undocumented `metadata_<key>` prefix convention is deprecated and will be removed.
753
+ * @description Retrieves all spec libraries for the authenticated user with optional filtering and pagination.
754
754
  */
755
755
  get: operations["listSpecLibraries"];
756
756
  put?: never;
@@ -794,7 +794,7 @@ export interface paths {
794
794
  };
795
795
  /**
796
796
  * List spec libraries by project
797
- * @description Retrieves spec libraries for a specific project with optional filtering. Use the `metadata` parameter to filter on metadata; the undocumented `metadata_<key>` prefix convention is deprecated and will be removed.
797
+ * @description Retrieves spec libraries for a specific project with optional filtering.
798
798
  */
799
799
  get: operations["listSpecLibrariesByProject"];
800
800
  put?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibexp/api-client",
3
- "version": "0.44.0",
3
+ "version": "0.45.0",
4
4
  "description": "Typed VibeXP API client generated from the OpenAPI spec (openapi-fetch main entrypoint, axios SDK at ./axios)",
5
5
  "license": "MIT",
6
6
  "repository": {