@bitfab/sdk 0.50.0 → 0.51.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/dist/{chunk-W5P5JAH7.js → chunk-4CLJF2DZ.js} +9 -5
- package/dist/{chunk-W5P5JAH7.js.map → chunk-4CLJF2DZ.js.map} +1 -1
- package/dist/{chunk-6LG3OFIX.js → chunk-DNYZJLNY.js} +23 -5
- package/dist/chunk-DNYZJLNY.js.map +1 -0
- package/dist/{chunk-XZDYNFI5.js → chunk-RGC7IEOI.js} +9 -5
- package/dist/{chunk-XZDYNFI5.js.map → chunk-RGC7IEOI.js.map} +1 -1
- package/dist/{chunk-BT4RNCQL.js → chunk-VXD27AJ3.js} +6 -6
- package/dist/{chunk-BT4RNCQL.js.map → chunk-VXD27AJ3.js.map} +1 -1
- package/dist/{http-W2YPLY7H.js → http-AKFJONE7.js} +2 -2
- package/dist/{http-PFP2EQVE.js → http-HLRWCSFF.js} +2 -2
- package/dist/index.cjs +29 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -8
- package/dist/index.d.ts +12 -8
- package/dist/index.js +3 -3
- package/dist/node.cjs +29 -7
- package/dist/node.cjs.map +1 -1
- package/dist/node.js +3 -3
- package/dist/{replay-AFX7ENZI.js → replay-ISXRCXUP.js} +3 -3
- package/dist/replayCli.js +40 -14
- package/dist/replayCli.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-6LG3OFIX.js.map +0 -1
- /package/dist/{http-PFP2EQVE.js.map → http-AKFJONE7.js.map} +0 -0
- /package/dist/{http-W2YPLY7H.js.map → http-HLRWCSFF.js.map} +0 -0
- /package/dist/{replay-AFX7ENZI.js.map → replay-ISXRCXUP.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -556,7 +556,7 @@ declare class HttpClient {
|
|
|
556
556
|
* Start a replay session by fetching historical traces.
|
|
557
557
|
* Blocking call - creates a test run and returns lightweight item references.
|
|
558
558
|
*/
|
|
559
|
-
startReplay(traceFunctionKey: string, limit: number | undefined, traceIds?: string[], name?: string, codeChangeDescription?: string | null, codeChangeFiles?: CodeChangeFile[] | null, includeDbBranchLease?: boolean, experimentGroupId?: string,
|
|
559
|
+
startReplay(traceFunctionKey: string, limit: number | undefined, traceIds?: string[], name?: string, codeChangeDescription?: string | null, codeChangeFiles?: CodeChangeFile[] | null, includeDbBranchLease?: boolean, experimentGroupId?: string, datasetIds?: string[], graderIds?: string[], dbBranchSettings?: DbBranchSettings, attempts?: number, includeOriginalMetadata?: boolean, onlyWithAssertions?: boolean): Promise<StartReplayResponse>;
|
|
560
560
|
/**
|
|
561
561
|
* Fetch an external span by ID.
|
|
562
562
|
* Blocking GET request.
|
|
@@ -1645,12 +1645,15 @@ interface DbBranchOptions {
|
|
|
1645
1645
|
interface ReplayOptions {
|
|
1646
1646
|
/**
|
|
1647
1647
|
* Maximum number of traces to replay (1-5,000, default 5). Ignored when
|
|
1648
|
-
* `traceIds` is passed (with a warning), or when `datasetId`
|
|
1649
|
-
* because either source already determines how many traces replay.
|
|
1648
|
+
* `traceIds` is passed (with a warning), or when `datasetId` / `datasetIds`
|
|
1649
|
+
* is passed, because either source already determines how many traces replay.
|
|
1650
1650
|
*/
|
|
1651
1651
|
limit?: number;
|
|
1652
1652
|
attempts?: number;
|
|
1653
|
-
/**
|
|
1653
|
+
/**
|
|
1654
|
+
* Optional list of specific trace IDs to replay (max 100). Mutually exclusive
|
|
1655
|
+
* with `datasetId` and `datasetIds`.
|
|
1656
|
+
*/
|
|
1654
1657
|
traceIds?: string[];
|
|
1655
1658
|
/** Optional display name for the resulting experiment/test run. */
|
|
1656
1659
|
name?: string;
|
|
@@ -1707,13 +1710,14 @@ interface ReplayOptions {
|
|
|
1707
1710
|
/** Group ID to associate this replay with an experiment group for live streaming in Studio. */
|
|
1708
1711
|
experimentGroupId?: string;
|
|
1709
1712
|
/**
|
|
1710
|
-
* Dataset this replay runs against. Mutually exclusive with `traceIds
|
|
1711
|
-
* set, the resulting experiment is
|
|
1713
|
+
* Dataset this replay runs against. Mutually exclusive with `traceIds` and
|
|
1714
|
+
* with `datasetIds`. When set, the resulting experiment is
|
|
1712
1715
|
* durably attributed to the dataset (stored on the test run), so it appears
|
|
1713
1716
|
* under the dataset's experiments even if the trace lineage can't be
|
|
1714
1717
|
* reconstructed. Validated server-side against the org.
|
|
1715
1718
|
*/
|
|
1716
1719
|
datasetId?: string;
|
|
1720
|
+
datasetIds?: string[];
|
|
1717
1721
|
/**
|
|
1718
1722
|
* Graders to attach directly to this experiment (test run), independent of any
|
|
1719
1723
|
* graders already on the dataset. The resulting experiment is graded by the
|
|
@@ -1726,7 +1730,7 @@ interface ReplayOptions {
|
|
|
1726
1730
|
/**
|
|
1727
1731
|
* Replay only the selected traces that carry at least one assertion.
|
|
1728
1732
|
*
|
|
1729
|
-
* Narrows whatever `limit`, `traceIds` or `
|
|
1733
|
+
* Narrows whatever `limit`, `traceIds` or `datasetIds` selected, so a run that
|
|
1730
1734
|
* measures assertion outcomes does not pay to re-execute traces nothing can
|
|
1731
1735
|
* grade. The server applies it as part of selection, which is what makes it
|
|
1732
1736
|
* compose with `limit`: `{ limit: 10, onlyWithAssertions: true }` is the ten
|
|
@@ -3275,7 +3279,7 @@ declare class BitfabFunction {
|
|
|
3275
3279
|
/**
|
|
3276
3280
|
* SDK version from package.json (injected at build time)
|
|
3277
3281
|
*/
|
|
3278
|
-
declare const __version__ = "0.
|
|
3282
|
+
declare const __version__ = "0.51.0";
|
|
3279
3283
|
|
|
3280
3284
|
/**
|
|
3281
3285
|
* Constants for the Bitfab SDK.
|
package/dist/index.d.ts
CHANGED
|
@@ -556,7 +556,7 @@ declare class HttpClient {
|
|
|
556
556
|
* Start a replay session by fetching historical traces.
|
|
557
557
|
* Blocking call - creates a test run and returns lightweight item references.
|
|
558
558
|
*/
|
|
559
|
-
startReplay(traceFunctionKey: string, limit: number | undefined, traceIds?: string[], name?: string, codeChangeDescription?: string | null, codeChangeFiles?: CodeChangeFile[] | null, includeDbBranchLease?: boolean, experimentGroupId?: string,
|
|
559
|
+
startReplay(traceFunctionKey: string, limit: number | undefined, traceIds?: string[], name?: string, codeChangeDescription?: string | null, codeChangeFiles?: CodeChangeFile[] | null, includeDbBranchLease?: boolean, experimentGroupId?: string, datasetIds?: string[], graderIds?: string[], dbBranchSettings?: DbBranchSettings, attempts?: number, includeOriginalMetadata?: boolean, onlyWithAssertions?: boolean): Promise<StartReplayResponse>;
|
|
560
560
|
/**
|
|
561
561
|
* Fetch an external span by ID.
|
|
562
562
|
* Blocking GET request.
|
|
@@ -1645,12 +1645,15 @@ interface DbBranchOptions {
|
|
|
1645
1645
|
interface ReplayOptions {
|
|
1646
1646
|
/**
|
|
1647
1647
|
* Maximum number of traces to replay (1-5,000, default 5). Ignored when
|
|
1648
|
-
* `traceIds` is passed (with a warning), or when `datasetId`
|
|
1649
|
-
* because either source already determines how many traces replay.
|
|
1648
|
+
* `traceIds` is passed (with a warning), or when `datasetId` / `datasetIds`
|
|
1649
|
+
* is passed, because either source already determines how many traces replay.
|
|
1650
1650
|
*/
|
|
1651
1651
|
limit?: number;
|
|
1652
1652
|
attempts?: number;
|
|
1653
|
-
/**
|
|
1653
|
+
/**
|
|
1654
|
+
* Optional list of specific trace IDs to replay (max 100). Mutually exclusive
|
|
1655
|
+
* with `datasetId` and `datasetIds`.
|
|
1656
|
+
*/
|
|
1654
1657
|
traceIds?: string[];
|
|
1655
1658
|
/** Optional display name for the resulting experiment/test run. */
|
|
1656
1659
|
name?: string;
|
|
@@ -1707,13 +1710,14 @@ interface ReplayOptions {
|
|
|
1707
1710
|
/** Group ID to associate this replay with an experiment group for live streaming in Studio. */
|
|
1708
1711
|
experimentGroupId?: string;
|
|
1709
1712
|
/**
|
|
1710
|
-
* Dataset this replay runs against. Mutually exclusive with `traceIds
|
|
1711
|
-
* set, the resulting experiment is
|
|
1713
|
+
* Dataset this replay runs against. Mutually exclusive with `traceIds` and
|
|
1714
|
+
* with `datasetIds`. When set, the resulting experiment is
|
|
1712
1715
|
* durably attributed to the dataset (stored on the test run), so it appears
|
|
1713
1716
|
* under the dataset's experiments even if the trace lineage can't be
|
|
1714
1717
|
* reconstructed. Validated server-side against the org.
|
|
1715
1718
|
*/
|
|
1716
1719
|
datasetId?: string;
|
|
1720
|
+
datasetIds?: string[];
|
|
1717
1721
|
/**
|
|
1718
1722
|
* Graders to attach directly to this experiment (test run), independent of any
|
|
1719
1723
|
* graders already on the dataset. The resulting experiment is graded by the
|
|
@@ -1726,7 +1730,7 @@ interface ReplayOptions {
|
|
|
1726
1730
|
/**
|
|
1727
1731
|
* Replay only the selected traces that carry at least one assertion.
|
|
1728
1732
|
*
|
|
1729
|
-
* Narrows whatever `limit`, `traceIds` or `
|
|
1733
|
+
* Narrows whatever `limit`, `traceIds` or `datasetIds` selected, so a run that
|
|
1730
1734
|
* measures assertion outcomes does not pay to re-execute traces nothing can
|
|
1731
1735
|
* grade. The server applies it as part of selection, which is what makes it
|
|
1732
1736
|
* compose with `limit`: `{ limit: 10, onlyWithAssertions: true }` is the ten
|
|
@@ -3275,7 +3279,7 @@ declare class BitfabFunction {
|
|
|
3275
3279
|
/**
|
|
3276
3280
|
* SDK version from package.json (injected at build time)
|
|
3277
3281
|
*/
|
|
3278
|
-
declare const __version__ = "0.
|
|
3282
|
+
declare const __version__ = "0.51.0";
|
|
3279
3283
|
|
|
3280
3284
|
/**
|
|
3281
3285
|
* Constants for the Bitfab SDK.
|
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
getCurrentSpan,
|
|
19
19
|
getCurrentTrace,
|
|
20
20
|
seedFromRegistry
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-VXD27AJ3.js";
|
|
22
22
|
import "./chunk-ZUD7OFYB.js";
|
|
23
23
|
import {
|
|
24
24
|
BITFAB_PROGRESS_PREFIX,
|
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
ReplayError,
|
|
28
28
|
reportReplayProgress,
|
|
29
29
|
serializeReplayResult
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-DNYZJLNY.js";
|
|
31
31
|
import {
|
|
32
32
|
BitfabError,
|
|
33
33
|
DEFAULT_SERVICE_URL,
|
|
@@ -35,7 +35,7 @@ import {
|
|
|
35
35
|
MixedTracingError,
|
|
36
36
|
__version__,
|
|
37
37
|
flushTraces
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-RGC7IEOI.js";
|
|
39
39
|
import "./chunk-H6LZRFMN.js";
|
|
40
40
|
export {
|
|
41
41
|
BITFAB_PROGRESS_PREFIX,
|
package/dist/node.cjs
CHANGED
|
@@ -88,7 +88,7 @@ var __version__, __packageName__;
|
|
|
88
88
|
var init_version_generated = __esm({
|
|
89
89
|
"src/version.generated.ts"() {
|
|
90
90
|
"use strict";
|
|
91
|
-
__version__ = "0.
|
|
91
|
+
__version__ = "0.51.0";
|
|
92
92
|
__packageName__ = "@bitfab/sdk";
|
|
93
93
|
}
|
|
94
94
|
});
|
|
@@ -1854,7 +1854,7 @@ var init_http = __esm({
|
|
|
1854
1854
|
* Start a replay session by fetching historical traces.
|
|
1855
1855
|
* Blocking call - creates a test run and returns lightweight item references.
|
|
1856
1856
|
*/
|
|
1857
|
-
async startReplay(traceFunctionKey, limit, traceIds, name, codeChangeDescription, codeChangeFiles, includeDbBranchLease, experimentGroupId,
|
|
1857
|
+
async startReplay(traceFunctionKey, limit, traceIds, name, codeChangeDescription, codeChangeFiles, includeDbBranchLease, experimentGroupId, datasetIds, graderIds, dbBranchSettings, attempts, includeOriginalMetadata, onlyWithAssertions) {
|
|
1858
1858
|
const payload = { traceFunctionKey };
|
|
1859
1859
|
if (limit !== void 0) {
|
|
1860
1860
|
payload.limit = limit;
|
|
@@ -1878,8 +1878,12 @@ var init_http = __esm({
|
|
|
1878
1878
|
if (experimentGroupId !== void 0) {
|
|
1879
1879
|
payload.experimentGroupId = experimentGroupId;
|
|
1880
1880
|
}
|
|
1881
|
-
if (
|
|
1882
|
-
|
|
1881
|
+
if (datasetIds !== void 0) {
|
|
1882
|
+
if (datasetIds.length === 1) {
|
|
1883
|
+
payload.datasetId = datasetIds[0];
|
|
1884
|
+
} else {
|
|
1885
|
+
payload.datasetIds = datasetIds;
|
|
1886
|
+
}
|
|
1883
1887
|
}
|
|
1884
1888
|
if (graderIds !== void 0) {
|
|
1885
1889
|
payload.graderIds = graderIds;
|
|
@@ -2481,6 +2485,23 @@ function resolveAttempts(attempts) {
|
|
|
2481
2485
|
}
|
|
2482
2486
|
return attempts;
|
|
2483
2487
|
}
|
|
2488
|
+
function resolveDatasetIds(options) {
|
|
2489
|
+
if (options?.datasetId !== void 0 && options?.datasetIds !== void 0) {
|
|
2490
|
+
throw new BitfabError(
|
|
2491
|
+
"datasetId and datasetIds are the same selector: pass one dataset through datasetId, or several through datasetIds."
|
|
2492
|
+
);
|
|
2493
|
+
}
|
|
2494
|
+
if (options?.datasetId !== void 0) {
|
|
2495
|
+
return [options.datasetId];
|
|
2496
|
+
}
|
|
2497
|
+
if (options?.datasetIds === void 0) {
|
|
2498
|
+
return void 0;
|
|
2499
|
+
}
|
|
2500
|
+
if (options.datasetIds.length === 0) {
|
|
2501
|
+
throw new BitfabError("datasetIds must contain at least one dataset ID.");
|
|
2502
|
+
}
|
|
2503
|
+
return [...new Set(options.datasetIds)];
|
|
2504
|
+
}
|
|
2484
2505
|
function dbBranchEnabled(dbBranch) {
|
|
2485
2506
|
return dbBranch !== void 0 && dbBranch !== false;
|
|
2486
2507
|
}
|
|
@@ -2913,9 +2934,10 @@ async function replay(httpClient, serviceUrl, traceFunctionKey, fn, options, reg
|
|
|
2913
2934
|
);
|
|
2914
2935
|
}
|
|
2915
2936
|
}
|
|
2916
|
-
|
|
2937
|
+
const datasetIds = resolveDatasetIds(options);
|
|
2938
|
+
if (options?.traceIds !== void 0 && datasetIds !== void 0) {
|
|
2917
2939
|
throw new BitfabError(
|
|
2918
|
-
"traceIds and
|
|
2940
|
+
"traceIds and datasetIds select different replay sources and cannot be used together."
|
|
2919
2941
|
);
|
|
2920
2942
|
}
|
|
2921
2943
|
if (options?.limit !== void 0 && options?.traceIds !== void 0) {
|
|
@@ -2957,7 +2979,7 @@ async function replay(httpClient, serviceUrl, traceFunctionKey, fn, options, reg
|
|
|
2957
2979
|
// before it could report its resolved inputs.
|
|
2958
2980
|
dbBranchEnabled(options?.dbBranch) && options?.dryRun !== true,
|
|
2959
2981
|
options?.experimentGroupId,
|
|
2960
|
-
|
|
2982
|
+
datasetIds,
|
|
2961
2983
|
options?.graderIds,
|
|
2962
2984
|
resolveDbBranchSettings(options?.dbBranch),
|
|
2963
2985
|
attempts,
|