@vibexp/api-client 0.44.0 → 0.46.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',
@@ -2840,18 +2840,6 @@ export type UsageMetricsRow = {
2840
2840
  * Number of agent executions this week
2841
2841
  */
2842
2842
  agent_executions?: number;
2843
- /**
2844
- * Number of distinct Claude Code sessions this week
2845
- */
2846
- claude_sessions?: number;
2847
- /**
2848
- * Number of distinct Cursor IDE sessions this week
2849
- */
2850
- cursor_sessions?: number;
2851
- /**
2852
- * Total AI tool sessions (Claude + Cursor)
2853
- */
2854
- total_ai_tool_sessions?: number;
2855
2843
  };
2856
2844
  /**
2857
2845
  * Per-user activity summary
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;
@@ -8151,12 +8151,6 @@ export interface components {
8151
8151
  new_agents?: number;
8152
8152
  /** @description Number of agent executions this week */
8153
8153
  agent_executions?: number;
8154
- /** @description Number of distinct Claude Code sessions this week */
8155
- claude_sessions?: number;
8156
- /** @description Number of distinct Cursor IDE sessions this week */
8157
- cursor_sessions?: number;
8158
- /** @description Total AI tool sessions (Claude + Cursor) */
8159
- total_ai_tool_sessions?: number;
8160
8154
  };
8161
8155
  /** @description Per-user activity summary */
8162
8156
  UserActivityRow: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibexp/api-client",
3
- "version": "0.44.0",
3
+ "version": "0.46.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": {