@flashbacktech/flashbackclient 0.2.76 → 0.2.77

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.
@@ -100,6 +100,10 @@ export interface DashboardBreakdownQueryParams {
100
100
  includeSeries?: boolean;
101
101
  limit?: number;
102
102
  offset?: number;
103
+ apiKeyId?: string;
104
+ model?: string;
105
+ bucketId?: string;
106
+ ruleId?: string;
103
107
  }
104
108
  export interface StorageMetrics {
105
109
  uplBytes: number;
@@ -112,9 +116,10 @@ export interface StorageTimeSeriesPoint extends StorageMetrics {
112
116
  ts: number;
113
117
  entityId?: string;
114
118
  }
115
- /** GET /v2/stats/storage?scope=...&id=...&window=...&bucketId=... */
119
+ /** GET /v2/stats/storage?scope=...&id=...&window=...&bucketId=...&apiKeyId=... */
116
120
  export interface StorageStatsQueryParams extends DashboardStatsQueryParams {
117
121
  bucketId?: string;
122
+ apiKeyId?: string;
118
123
  }
119
124
  export type StorageTimeSeriesResponse = TimeSeriesResponse<StorageTimeSeriesPoint>;
120
125
  export type StorageBreakdownResponse = BreakdownResponse<StorageMetrics>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.2.76",
3
+ "version": "0.2.77",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"