@roarkanalytics/sdk 0.331.2 → 0.333.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 +16 -0
- package/index.d.mts +2 -2
- package/index.d.ts +2 -2
- package/index.d.ts.map +1 -1
- package/index.js.map +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/evaluation.d.ts +713 -1
- package/resources/evaluation.d.ts.map +1 -1
- package/resources/evaluation.js +12 -0
- package/resources/evaluation.js.map +1 -1
- package/resources/evaluation.mjs +12 -0
- package/resources/evaluation.mjs.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/src/index.ts +6 -0
- package/src/resources/evaluation.ts +954 -27
- package/src/resources/index.ts +3 -0
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/index.ts
CHANGED
|
@@ -4,9 +4,12 @@ export { Call } from './call';
|
|
|
4
4
|
export {
|
|
5
5
|
Evaluation,
|
|
6
6
|
type EvaluationCreateJobResponse,
|
|
7
|
+
type EvaluationGetEvaluatorByIDResponse,
|
|
8
|
+
type EvaluationGetEvaluatorsResponse,
|
|
7
9
|
type EvaluationGetJobResponse,
|
|
8
10
|
type EvaluationGetJobRunsResponse,
|
|
9
11
|
type EvaluationCreateJobParams,
|
|
12
|
+
type EvaluationGetEvaluatorsParams,
|
|
10
13
|
type EvaluationGetJobRunsParams,
|
|
11
14
|
} from './evaluation';
|
|
12
15
|
export { Health, type HealthGetResponse } from './health';
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.333.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.333.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.333.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|