bitfab 0.45.0 → 0.46.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-YDPSSWNF.js → chunk-ACTCII7Z.js} +2 -2
- package/dist/{chunk-YDPSSWNF.js.map → chunk-ACTCII7Z.js.map} +1 -1
- package/dist/{chunk-4XURJZ42.js → chunk-RGX4CJ34.js} +2 -2
- package/dist/{chunk-4XURJZ42.js.map → chunk-RGX4CJ34.js.map} +1 -1
- package/dist/{chunk-GYDK6ZDN.js → chunk-SYRQHV7J.js} +13 -13
- package/dist/chunk-SYRQHV7J.js.map +1 -0
- package/dist/{chunk-W77NNSNX.js → chunk-V73RJLOF.js} +2 -2
- package/dist/{http-GLHHPTVC.js → http-MKX2IXAQ.js} +2 -2
- package/dist/{http-MIPKYJZK.js → http-NKWONITE.js} +2 -2
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -8
- package/dist/index.d.ts +4 -8
- package/dist/index.js +3 -3
- package/dist/node.cjs +8 -8
- package/dist/node.cjs.map +1 -1
- package/dist/node.d.cts +1 -1
- package/dist/node.d.ts +1 -1
- package/dist/node.js +3 -3
- package/dist/{replay-LBLBA2CZ.js → replay-Q46MY2HC.js} +3 -3
- package/dist/replayCli.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-GYDK6ZDN.js.map +0 -1
- /package/dist/{chunk-W77NNSNX.js.map → chunk-V73RJLOF.js.map} +0 -0
- /package/dist/{http-GLHHPTVC.js.map → http-MKX2IXAQ.js.map} +0 -0
- /package/dist/{http-MIPKYJZK.js.map → http-NKWONITE.js.map} +0 -0
- /package/dist/{replay-LBLBA2CZ.js.map → replay-Q46MY2HC.js.map} +0 -0
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
replayContextReady,
|
|
6
6
|
runWithReplayContext,
|
|
7
7
|
warnOnce
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-ACTCII7Z.js";
|
|
9
9
|
|
|
10
10
|
// src/codeChange.ts
|
|
11
11
|
var MAX_FILES = 60;
|
|
@@ -1191,4 +1191,4 @@ export {
|
|
|
1191
1191
|
sleepForReplayPersistence,
|
|
1192
1192
|
replay
|
|
1193
1193
|
};
|
|
1194
|
-
//# sourceMappingURL=chunk-
|
|
1194
|
+
//# sourceMappingURL=chunk-V73RJLOF.js.map
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
flushTraces,
|
|
7
7
|
parseRetryAfterMs,
|
|
8
8
|
serializePayloadBody
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-ACTCII7Z.js";
|
|
10
10
|
import "./chunk-H6LZRFMN.js";
|
|
11
11
|
export {
|
|
12
12
|
BitfabError,
|
|
@@ -17,4 +17,4 @@ export {
|
|
|
17
17
|
parseRetryAfterMs,
|
|
18
18
|
serializePayloadBody
|
|
19
19
|
};
|
|
20
|
-
//# sourceMappingURL=http-
|
|
20
|
+
//# sourceMappingURL=http-MKX2IXAQ.js.map
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
flushTraces,
|
|
7
7
|
parseRetryAfterMs,
|
|
8
8
|
serializePayloadBody
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-RGX4CJ34.js";
|
|
10
10
|
export {
|
|
11
11
|
BitfabError,
|
|
12
12
|
HttpClient,
|
|
@@ -16,4 +16,4 @@ export {
|
|
|
16
16
|
parseRetryAfterMs,
|
|
17
17
|
serializePayloadBody
|
|
18
18
|
};
|
|
19
|
-
//# sourceMappingURL=http-
|
|
19
|
+
//# sourceMappingURL=http-NKWONITE.js.map
|
package/dist/index.cjs
CHANGED
|
@@ -51,7 +51,7 @@ var __version__, __packageName__;
|
|
|
51
51
|
var init_version_generated = __esm({
|
|
52
52
|
"src/version.generated.ts"() {
|
|
53
53
|
"use strict";
|
|
54
|
-
__version__ = "0.
|
|
54
|
+
__version__ = "0.46.0";
|
|
55
55
|
__packageName__ = "bitfab";
|
|
56
56
|
}
|
|
57
57
|
});
|
|
@@ -4580,20 +4580,20 @@ var LabelsClient = class {
|
|
|
4580
4580
|
constructor(httpClient) {
|
|
4581
4581
|
this.httpClient = httpClient;
|
|
4582
4582
|
}
|
|
4583
|
-
async save(
|
|
4583
|
+
async save(update, testRunId) {
|
|
4584
|
+
const [outcome] = await this.saveAll([update], testRunId);
|
|
4585
|
+
return outcome;
|
|
4586
|
+
}
|
|
4587
|
+
async saveAll(updates, testRunId) {
|
|
4584
4588
|
const response = await this.httpClient.request(
|
|
4585
4589
|
LABELS_PATH,
|
|
4586
4590
|
{
|
|
4587
|
-
labels:
|
|
4588
|
-
...
|
|
4591
|
+
labels: updates,
|
|
4592
|
+
...testRunId === void 0 ? {} : { testRunId }
|
|
4589
4593
|
}
|
|
4590
4594
|
);
|
|
4591
4595
|
return response.labels;
|
|
4592
4596
|
}
|
|
4593
|
-
async saveOne(update, testRunId) {
|
|
4594
|
-
const [outcome] = await this.save({ labels: [update], testRunId });
|
|
4595
|
-
return outcome;
|
|
4596
|
-
}
|
|
4597
4597
|
};
|
|
4598
4598
|
|
|
4599
4599
|
// src/langgraph.ts
|