@boxes-dev/dvb-runtime 1.0.820 → 1.0.822
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/bin/dvb.cjs +13 -9
- package/dist/bin/dvb.cjs.map +1 -1
- package/dist/bin/dvbd.cjs +6 -6
- package/package.json +2 -2
package/dist/bin/dvb.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
"use strict";
|
|
3
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
3
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="d48b534b-f711-5fe4-a1e1-e8be1289b994")}catch(e){}}();
|
|
4
4
|
|
|
5
5
|
var __create = Object.create;
|
|
6
6
|
var __defProp = Object.defineProperty;
|
|
@@ -75471,8 +75471,8 @@ var init_otel = __esm({
|
|
|
75471
75471
|
return trimmed && trimmed.length > 0 ? trimmed : void 0;
|
|
75472
75472
|
};
|
|
75473
75473
|
readBuildMetadata = () => {
|
|
75474
|
-
const rawPackageVersion = "1.0.
|
|
75475
|
-
const rawGitSha = "
|
|
75474
|
+
const rawPackageVersion = "1.0.822";
|
|
75475
|
+
const rawGitSha = "b349ff8df7a575273745c32ee40012222430e73e";
|
|
75476
75476
|
const packageVersion = typeof rawPackageVersion === "string" ? rawPackageVersion : void 0;
|
|
75477
75477
|
const gitSha = typeof rawGitSha === "string" ? rawGitSha : void 0;
|
|
75478
75478
|
return { packageVersion, gitSha };
|
|
@@ -107836,9 +107836,9 @@ var init_sentry = __esm({
|
|
|
107836
107836
|
uncaughtExceptionMonitorInstalled = false;
|
|
107837
107837
|
currentDevboxSentryUser = null;
|
|
107838
107838
|
readBuildMetadata2 = () => {
|
|
107839
|
-
const rawPackageVersion = "1.0.
|
|
107840
|
-
const rawGitSha = "
|
|
107841
|
-
const rawSentryRelease = "boxes-dev-dvb@1.0.
|
|
107839
|
+
const rawPackageVersion = "1.0.822";
|
|
107840
|
+
const rawGitSha = "b349ff8df7a575273745c32ee40012222430e73e";
|
|
107841
|
+
const rawSentryRelease = "boxes-dev-dvb@1.0.822+b349ff8df7a575273745c32ee40012222430e73e";
|
|
107842
107842
|
const packageVersion = typeof rawPackageVersion === "string" ? rawPackageVersion : void 0;
|
|
107843
107843
|
const gitSha = typeof rawGitSha === "string" ? rawGitSha : void 0;
|
|
107844
107844
|
const sentryRelease = typeof rawSentryRelease === "string" ? rawSentryRelease : void 0;
|
|
@@ -115064,7 +115064,7 @@ var init_packageVersion = __esm({
|
|
|
115064
115064
|
return import_node_path20.default.join(process.cwd(), "dvb");
|
|
115065
115065
|
};
|
|
115066
115066
|
readEmbeddedPackageVersion = () => {
|
|
115067
|
-
const raw = "1.0.
|
|
115067
|
+
const raw = "1.0.822";
|
|
115068
115068
|
return trimVersion(raw);
|
|
115069
115069
|
};
|
|
115070
115070
|
readNearestPackageMetadata = (basePath) => {
|
|
@@ -180686,7 +180686,7 @@ ${canonicalBlock}
|
|
|
180686
180686
|
}
|
|
180687
180687
|
onProgress?.(totalBytes, totalBytes);
|
|
180688
180688
|
};
|
|
180689
|
-
buildDaemonConfig = (convexUrl, convexDeployment, controlPlaneUrl, heartbeatToken, computeProvider, canonicalWorkdir) => {
|
|
180689
|
+
buildDaemonConfig = (convexUrl, convexDeployment, controlPlaneUrl, heartbeatToken, computeProvider, providerInstanceId, canonicalWorkdir) => {
|
|
180690
180690
|
const deploymentBinding = convexDeployment?.trim() ? {
|
|
180691
180691
|
convexDeployment: convexDeployment.trim(),
|
|
180692
180692
|
controlPlaneUrl
|
|
@@ -180699,6 +180699,7 @@ ${canonicalBlock}
|
|
|
180699
180699
|
heartbeatToken,
|
|
180700
180700
|
heartbeatMs: DEFAULT_HEARTBEAT_MS,
|
|
180701
180701
|
computeProvider,
|
|
180702
|
+
providerInstanceId,
|
|
180702
180703
|
canonicalWorkdir
|
|
180703
180704
|
},
|
|
180704
180705
|
null,
|
|
@@ -180779,6 +180780,7 @@ ${canonicalBlock}
|
|
|
180779
180780
|
controlPlaneUrl,
|
|
180780
180781
|
heartbeatToken,
|
|
180781
180782
|
computeProvider,
|
|
180783
|
+
providerInstanceId,
|
|
180782
180784
|
canonicalWorkdir,
|
|
180783
180785
|
onDownloadProgress,
|
|
180784
180786
|
onPhase
|
|
@@ -180818,6 +180820,7 @@ ${canonicalBlock}
|
|
|
180818
180820
|
controlPlaneUrl,
|
|
180819
180821
|
heartbeatToken,
|
|
180820
180822
|
computeProvider,
|
|
180823
|
+
providerInstanceId,
|
|
180821
180824
|
canonicalWorkdir
|
|
180822
180825
|
)
|
|
180823
180826
|
)
|
|
@@ -204938,6 +204941,7 @@ var init_init = __esm({
|
|
|
204938
204941
|
controlPlaneUrl: managedDaemonTarget.controlPlaneUrl,
|
|
204939
204942
|
heartbeatToken,
|
|
204940
204943
|
computeProvider,
|
|
204944
|
+
providerInstanceId: canonical,
|
|
204941
204945
|
canonicalWorkdir,
|
|
204942
204946
|
onDownloadProgress: (downloadedBytes, totalBytes) => {
|
|
204943
204947
|
status.byteProgress({
|
|
@@ -209717,4 +209721,4 @@ platform/platform.js:
|
|
|
209717
209721
|
*/
|
|
209718
209722
|
//# sourceMappingURL=dvb.cjs.map
|
|
209719
209723
|
|
|
209720
|
-
//# debugId=
|
|
209724
|
+
//# debugId=d48b534b-f711-5fe4-a1e1-e8be1289b994
|