bitfab 0.54.5 → 0.54.7
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-VAHFHCBT.js → chunk-CRBJE655.js} +3 -3
- package/dist/{chunk-GVK7AES5.js → chunk-GGMFD2ZE.js} +11 -2
- package/dist/{chunk-GVK7AES5.js.map → chunk-GGMFD2ZE.js.map} +1 -1
- package/dist/{chunk-NATC7L2W.js → chunk-MFMTLYDW.js} +53 -26
- package/dist/chunk-MFMTLYDW.js.map +1 -0
- package/dist/{chunk-3O5MS4XJ.js → chunk-ONMN7WXS.js} +2 -2
- package/dist/{chunk-RA3J6A6K.js → chunk-VDQAIWLX.js} +11 -2
- package/dist/{chunk-RA3J6A6K.js.map → chunk-VDQAIWLX.js.map} +1 -1
- package/dist/{http-RW2JO6TU.js → http-DYGY3K7H.js} +2 -2
- package/dist/{http-K2H4547F.js → http-NIVPIUA2.js} +2 -2
- package/dist/index.cjs +57 -21
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -13
- package/dist/index.d.ts +22 -13
- package/dist/index.js +3 -3
- package/dist/node.cjs +57 -21
- 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-MHYULXCH.js → replay-22RLT3Z4.js} +3 -3
- package/dist/replayCli.js +2 -2
- package/dist/seedCli.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-NATC7L2W.js.map +0 -1
- /package/dist/{chunk-VAHFHCBT.js.map → chunk-CRBJE655.js.map} +0 -0
- /package/dist/{chunk-3O5MS4XJ.js.map → chunk-ONMN7WXS.js.map} +0 -0
- /package/dist/{http-K2H4547F.js.map → http-DYGY3K7H.js.map} +0 -0
- /package/dist/{http-RW2JO6TU.js.map → http-NIVPIUA2.js.map} +0 -0
- /package/dist/{replay-MHYULXCH.js.map → replay-22RLT3Z4.js.map} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
BitfabError
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-VDQAIWLX.js";
|
|
4
4
|
|
|
5
5
|
// src/codeChange.ts
|
|
6
6
|
var NUL = String.fromCharCode(0);
|
|
@@ -207,7 +207,7 @@ async function seedFromRegistry(registry, pipeline, cases, options = {}) {
|
|
|
207
207
|
sessionId: seedCase.sessionId
|
|
208
208
|
})
|
|
209
209
|
);
|
|
210
|
-
const { flushTraces: flushTraces2 } = await import("./http-
|
|
210
|
+
const { flushTraces: flushTraces2 } = await import("./http-NIVPIUA2.js");
|
|
211
211
|
await flushTraces2(3e4);
|
|
212
212
|
return { pipeline, traceFunctionKey, traceIds };
|
|
213
213
|
}
|
|
@@ -744,4 +744,4 @@ export {
|
|
|
744
744
|
runRegistryMain,
|
|
745
745
|
runIfEntrypoint
|
|
746
746
|
};
|
|
747
|
-
//# sourceMappingURL=chunk-
|
|
747
|
+
//# sourceMappingURL=chunk-CRBJE655.js.map
|
|
@@ -187,7 +187,7 @@ function encodeRequestBody(body) {
|
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
// src/version.generated.ts
|
|
190
|
-
var __version__ = "0.54.
|
|
190
|
+
var __version__ = "0.54.7";
|
|
191
191
|
var __packageName__ = "bitfab";
|
|
192
192
|
|
|
193
193
|
// src/constants.ts
|
|
@@ -2060,6 +2060,15 @@ var HttpClient = class {
|
|
|
2060
2060
|
resolveApiKey() {
|
|
2061
2061
|
return typeof this.apiKey === "function" ? this.apiKey() : this.apiKey;
|
|
2062
2062
|
}
|
|
2063
|
+
/** @internal Whether this client currently has credentials for trace delivery. */
|
|
2064
|
+
hasApiKey() {
|
|
2065
|
+
try {
|
|
2066
|
+
const apiKey = this.resolveApiKey();
|
|
2067
|
+
return apiKey !== void 0 && apiKey.trim() !== "";
|
|
2068
|
+
} catch {
|
|
2069
|
+
return false;
|
|
2070
|
+
}
|
|
2071
|
+
}
|
|
2063
2072
|
/**
|
|
2064
2073
|
* This client's span transport, built on first use.
|
|
2065
2074
|
*
|
|
@@ -2807,4 +2816,4 @@ export {
|
|
|
2807
2816
|
parseRetryAfterMs,
|
|
2808
2817
|
HttpClient
|
|
2809
2818
|
};
|
|
2810
|
-
//# sourceMappingURL=chunk-
|
|
2819
|
+
//# sourceMappingURL=chunk-GGMFD2ZE.js.map
|