@roarkanalytics/sdk 0.322.0 → 0.323.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/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/evaluations.d.ts +1 -1
- package/resources/evaluations.js +1 -1
- package/resources/evaluations.mjs +1 -1
- package/src/resources/evaluations.ts +1 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.323.0 (2025-06-03)
|
4
|
+
|
5
|
+
Full Changelog: [v0.322.0...v0.323.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v0.322.0...v0.323.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([17a9133](https://github.com/roarkhq/sdk-roark-analytics-node/commit/17a913311ac483910d0175a516a6fd3a172c6bb9))
|
10
|
+
|
3
11
|
## 0.322.0 (2025-06-03)
|
4
12
|
|
5
13
|
Full Changelog: [v0.321.0...v0.322.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v0.321.0...v0.322.0)
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@ import { APIResource } from "../resource.js";
|
|
2
2
|
import * as Core from "../core.js";
|
3
3
|
export declare class Evaluations extends APIResource {
|
4
4
|
/**
|
5
|
-
* Create evaluation jobs for a dataset of calls
|
5
|
+
* Create evaluation jobs for either a dataset of calls or a single call
|
6
6
|
*/
|
7
7
|
create(body: EvaluationCreateParams, options?: Core.RequestOptions): Core.APIPromise<EvaluationCreateResponse>;
|
8
8
|
}
|
package/resources/evaluations.js
CHANGED
@@ -5,7 +5,7 @@ exports.Evaluations = void 0;
|
|
5
5
|
const resource_1 = require("../resource.js");
|
6
6
|
class Evaluations extends resource_1.APIResource {
|
7
7
|
/**
|
8
|
-
* Create evaluation jobs for a dataset of calls
|
8
|
+
* Create evaluation jobs for either a dataset of calls or a single call
|
9
9
|
*/
|
10
10
|
create(body, options) {
|
11
11
|
return this._client.post('/v1/evaluations', { body, ...options });
|
@@ -2,7 +2,7 @@
|
|
2
2
|
import { APIResource } from "../resource.mjs";
|
3
3
|
export class Evaluations extends APIResource {
|
4
4
|
/**
|
5
|
-
* Create evaluation jobs for a dataset of calls
|
5
|
+
* Create evaluation jobs for either a dataset of calls or a single call
|
6
6
|
*/
|
7
7
|
create(body, options) {
|
8
8
|
return this._client.post('/v1/evaluations', { body, ...options });
|
package/src/version.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const VERSION = '0.
|
1
|
+
export const VERSION = '0.323.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const VERSION = "0.
|
1
|
+
export declare const VERSION = "0.323.0";
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export const VERSION = '0.
|
1
|
+
export const VERSION = '0.323.0'; // x-release-please-version
|
2
2
|
//# sourceMappingURL=version.mjs.map
|