@opentap/runner-client 2.22.1-alpha.1.2.10282857204 → 2.22.1

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/cjs/DTOs.js CHANGED
@@ -3163,7 +3163,7 @@ var MetricsRequest = /** @class */ (function () {
3163
3163
  data = typeof data === 'object' ? data : {};
3164
3164
  data['PublishRate'] = this.publishRate;
3165
3165
  if (Array.isArray(this.metrics)) {
3166
- data['SessionMetricInfo'] = this.metrics.map(function (item) { return item.toJSON(); });
3166
+ data['Metrics'] = this.metrics.map(function (item) { return item.toJSON(); });
3167
3167
  }
3168
3168
  return data;
3169
3169
  };
package/dist/mjs/DTOs.js CHANGED
@@ -2771,7 +2771,7 @@ export class MetricsRequest {
2771
2771
  data = typeof data === 'object' ? data : {};
2772
2772
  data['PublishRate'] = this.publishRate;
2773
2773
  if (Array.isArray(this.metrics)) {
2774
- data['SessionMetricInfo'] = this.metrics.map(item => item.toJSON());
2774
+ data['Metrics'] = this.metrics.map(item => item.toJSON());
2775
2775
  }
2776
2776
  return data;
2777
2777
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentap/runner-client",
3
- "version": "2.22.1-alpha.1.2.10282857204",
3
+ "version": "2.22.1",
4
4
  "description": "This is the web client for the OpenTAP Runner.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/mjs/index.js",