@roarkanalytics/sdk 4.6.0 → 4.8.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 +24 -0
- package/package.json +1 -1
- package/resources/simulation-job.d.mts +28 -2
- package/resources/simulation-job.d.mts.map +1 -1
- package/resources/simulation-job.d.ts +28 -2
- package/resources/simulation-job.d.ts.map +1 -1
- package/resources/simulation-run-plan-job.d.mts +176 -1
- package/resources/simulation-run-plan-job.d.mts.map +1 -1
- package/resources/simulation-run-plan-job.d.ts +176 -1
- package/resources/simulation-run-plan-job.d.ts.map +1 -1
- package/resources/simulation-run-plan.d.mts +26 -16
- package/resources/simulation-run-plan.d.mts.map +1 -1
- package/resources/simulation-run-plan.d.ts +26 -16
- package/resources/simulation-run-plan.d.ts.map +1 -1
- package/resources/simulation-template.d.mts +4 -3
- package/resources/simulation-template.d.mts.map +1 -1
- package/resources/simulation-template.d.ts +4 -3
- package/resources/simulation-template.d.ts.map +1 -1
- package/resources/simulation.d.mts +12 -6
- package/resources/simulation.d.mts.map +1 -1
- package/resources/simulation.d.ts +12 -6
- package/resources/simulation.d.ts.map +1 -1
- package/src/resources/simulation-job.ts +39 -3
- package/src/resources/simulation-run-plan-job.ts +211 -1
- package/src/resources/simulation-run-plan.ts +26 -16
- package/src/resources/simulation-template.ts +4 -3
- package/src/resources/simulation.ts +12 -6
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -276,9 +276,11 @@ export declare namespace SimulationRunParams {
|
|
|
276
276
|
metrics: Array<Plan.Metric>;
|
|
277
277
|
|
|
278
278
|
/**
|
|
279
|
-
* The value of `comparisonProperty
|
|
280
|
-
*
|
|
281
|
-
* value that property can take.
|
|
279
|
+
* The reference value of `comparisonProperty`, for example `NONE` for
|
|
280
|
+
* `BACKGROUND_NOISE` or `NORMAL` for `SPEECH_PACE`: shown first in the results.
|
|
281
|
+
* Must be a value that property can take. Whether a value did significantly worse
|
|
282
|
+
* does not depend on it: that is decided against every other value combined (see
|
|
283
|
+
* `sweepAttribution`).
|
|
282
284
|
*
|
|
283
285
|
* Stored rather than assumed, so the report can say "compared against US accent"
|
|
284
286
|
* instead of implying Roark decided which value is normal. Most properties have an
|
|
@@ -734,8 +736,10 @@ export declare namespace SimulationRunParams {
|
|
|
734
736
|
template: string;
|
|
735
737
|
|
|
736
738
|
/**
|
|
737
|
-
* The
|
|
738
|
-
* template's own baseline, as returned by GET /v1/simulation/template.
|
|
739
|
+
* The sweep's reference value, shown first in the results. Defaults to the
|
|
740
|
+
* template's own baseline, as returned by GET /v1/simulation/template. Whether a
|
|
741
|
+
* value did significantly worse does not depend on it: that is decided against
|
|
742
|
+
* every other value combined.
|
|
739
743
|
*
|
|
740
744
|
* Send it with `comparisonValues` and it must be one of them, or the request is
|
|
741
745
|
* rejected: anchoring every difference to an arm the run never made would measure
|
|
@@ -802,7 +806,9 @@ export declare namespace SimulationRunParams {
|
|
|
802
806
|
flows?: Array<RunSimulationFromTemplate.Flow>;
|
|
803
807
|
|
|
804
808
|
/**
|
|
805
|
-
*
|
|
809
|
+
* Runs per test case (1-10000). Defaults to 1, or to 6 for a template that sweeps
|
|
810
|
+
* a property. A sweep needs at least 5 calls per value (test cases per value times
|
|
811
|
+
* iterations) to compare its values, and a lower count is refused with 400.
|
|
806
812
|
*/
|
|
807
813
|
iterationCount?: number;
|
|
808
814
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.8.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.
|
|
1
|
+
export declare const VERSION = "4.8.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.
|
|
1
|
+
export declare const VERSION = "4.8.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.8.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|