@vibexp/api-client 0.45.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.
- package/dist/axios/types.gen.d.ts +0 -12
- package/dist/schema.d.ts +0 -6
- package/package.json +1 -1
|
@@ -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
|
@@ -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