@vm0/cli 9.140.5 → 9.140.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.
|
@@ -74083,7 +74083,7 @@ if (DSN) {
|
|
|
74083
74083
|
init2({
|
|
74084
74084
|
dsn: DSN,
|
|
74085
74085
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
74086
|
-
release: "9.140.
|
|
74086
|
+
release: "9.140.7",
|
|
74087
74087
|
sendDefaultPii: false,
|
|
74088
74088
|
tracesSampleRate: 0,
|
|
74089
74089
|
shutdownTimeout: 500,
|
|
@@ -74102,7 +74102,7 @@ if (DSN) {
|
|
|
74102
74102
|
}
|
|
74103
74103
|
});
|
|
74104
74104
|
setContext("cli", {
|
|
74105
|
-
version: "9.140.
|
|
74105
|
+
version: "9.140.7",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -120079,11 +120079,18 @@ var FEATURE_SWITCHES = {
|
|
|
120079
120079
|
["idbMessage" /* IdbMessage */]: {
|
|
120080
120080
|
maintainer: "ethan@vm0.ai",
|
|
120081
120081
|
description: "Cache chat thread messages in IndexedDB for instant cold open. When off, every thread open fetches messages from the server.",
|
|
120082
|
-
enabled: false
|
|
120082
|
+
enabled: false,
|
|
120083
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120084
|
+
},
|
|
120085
|
+
["skeletonNoPreload" /* SkeletonNoPreload */]: {
|
|
120086
|
+
maintainer: "ethan@vm0.ai",
|
|
120087
|
+
description: "Hide the app skeleton without awaiting agents/avatar prefetch. When on, the skeleton hides as soon as the route resolves, letting components render with their own loading states.",
|
|
120088
|
+
enabled: false,
|
|
120089
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120083
120090
|
}
|
|
120084
120091
|
};
|
|
120085
120092
|
function isFeatureEnabled(key, ctx) {
|
|
120086
|
-
const override = ctx
|
|
120093
|
+
const override = ctx.overrides?.[key];
|
|
120087
120094
|
if (override !== void 0) {
|
|
120088
120095
|
return override;
|
|
120089
120096
|
}
|
|
@@ -120091,15 +120098,15 @@ function isFeatureEnabled(key, ctx) {
|
|
|
120091
120098
|
if (featureSwitch.enabled) {
|
|
120092
120099
|
return true;
|
|
120093
120100
|
}
|
|
120094
|
-
if (ctx
|
|
120101
|
+
if (ctx.userId && featureSwitch.enabledUserHashes?.length) {
|
|
120095
120102
|
if (featureSwitch.enabledUserHashes.includes(fnv1a(ctx.userId)))
|
|
120096
120103
|
return true;
|
|
120097
120104
|
}
|
|
120098
|
-
if (ctx
|
|
120105
|
+
if (ctx.email && featureSwitch.enabledEmailHashes?.length) {
|
|
120099
120106
|
if (featureSwitch.enabledEmailHashes.includes(fnv1a(ctx.email.toLowerCase())))
|
|
120100
120107
|
return true;
|
|
120101
120108
|
}
|
|
120102
|
-
if (ctx
|
|
120109
|
+
if (ctx.orgId && featureSwitch.enabledOrgIdHashes?.length) {
|
|
120103
120110
|
if (featureSwitch.enabledOrgIdHashes.includes(fnv1a(ctx.orgId)))
|
|
120104
120111
|
return true;
|
|
120105
120112
|
}
|
|
@@ -121456,4 +121463,4 @@ undici/lib/web/fetch/body.js:
|
|
|
121456
121463
|
undici/lib/web/websocket/frame.js:
|
|
121457
121464
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
121458
121465
|
*/
|
|
121459
|
-
//# sourceMappingURL=chunk-
|
|
121466
|
+
//# sourceMappingURL=chunk-AVXSF7ZQ.js.map
|