opik 2.0.52 → 2.0.54

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.d.cts CHANGED
@@ -5312,7 +5312,9 @@ interface KpiCardResponse {
5312
5312
 
5313
5313
  interface KpiMetric {
5314
5314
  type?: KpiMetricType;
5315
+ /** Metric value for the current period. Unit depends on `type`: `count` is an integer count; `errors` is a percentage in [0, 100]; `avg_duration` is milliseconds; `total_cost` is in USD. */
5315
5316
  currentValue?: number;
5317
+ /** Metric value for the immediately preceding period of equal length. Same unit as `current_value`. */
5316
5318
  previousValue?: number;
5317
5319
  }
5318
5320
 
package/dist/index.d.ts CHANGED
@@ -5312,7 +5312,9 @@ interface KpiCardResponse {
5312
5312
 
5313
5313
  interface KpiMetric {
5314
5314
  type?: KpiMetricType;
5315
+ /** Metric value for the current period. Unit depends on `type`: `count` is an integer count; `errors` is a percentage in [0, 100]; `avg_duration` is milliseconds; `total_cost` is in USD. */
5315
5316
  currentValue?: number;
5317
+ /** Metric value for the immediately preceding period of equal length. Same unit as `current_value`. */
5316
5318
  previousValue?: number;
5317
5319
  }
5318
5320
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "opik",
3
3
  "description": "Opik TypeScript and JavaScript SDK",
4
- "version": "2.0.52",
4
+ "version": "2.0.54",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/comet-ml/opik.git",