@vm0/cli 9.115.0 → 9.116.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/{chunk-ONKLFZRY.js → chunk-N3EY4HQ3.js} +39 -3
- package/{chunk-ONKLFZRY.js.map → chunk-N3EY4HQ3.js.map} +1 -1
- package/index.js +39 -15
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/zero.js +2 -2
|
@@ -34652,7 +34652,7 @@ if (DSN) {
|
|
|
34652
34652
|
Sentry.init({
|
|
34653
34653
|
dsn: DSN,
|
|
34654
34654
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
34655
|
-
release: "9.
|
|
34655
|
+
release: "9.116.0",
|
|
34656
34656
|
sendDefaultPii: false,
|
|
34657
34657
|
tracesSampleRate: 0,
|
|
34658
34658
|
shutdownTimeout: 500,
|
|
@@ -34671,7 +34671,7 @@ if (DSN) {
|
|
|
34671
34671
|
}
|
|
34672
34672
|
});
|
|
34673
34673
|
Sentry.setContext("cli", {
|
|
34674
|
-
version: "9.
|
|
34674
|
+
version: "9.116.0",
|
|
34675
34675
|
command: process.argv.slice(2).join(" ")
|
|
34676
34676
|
});
|
|
34677
34677
|
Sentry.setContext("runtime", {
|
|
@@ -51449,6 +51449,10 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
51449
51449
|
tokenUrl: "https://oauth2.googleapis.com/token",
|
|
51450
51450
|
scopes: [
|
|
51451
51451
|
"https://www.googleapis.com/auth/meetings.space.created",
|
|
51452
|
+
// Use meetings.space.readonly (not meetings.conferencerecords.readonly) — confirmed
|
|
51453
|
+
// correct per Google Discovery API. meetings.space.readonly grants read access to
|
|
51454
|
+
// spaces and conference records; meetings.conferencerecords.readonly is not a valid
|
|
51455
|
+
// OAuth scope in the Google Meet REST API v2 discovery document.
|
|
51452
51456
|
"https://www.googleapis.com/auth/meetings.space.readonly",
|
|
51453
51457
|
"https://www.googleapis.com/auth/userinfo.email"
|
|
51454
51458
|
]
|
|
@@ -76295,6 +76299,37 @@ function collectVolumeVersions(value, previous) {
|
|
|
76295
76299
|
}
|
|
76296
76300
|
return { ...previous, [volumeName]: version2 };
|
|
76297
76301
|
}
|
|
76302
|
+
function parseVolume(value) {
|
|
76303
|
+
const parts = value.split(":");
|
|
76304
|
+
if (parts.length < 2 || parts.length > 3) {
|
|
76305
|
+
throw new Error(
|
|
76306
|
+
`Invalid volume format: ${value} (expected name:/path or name:version:/path)`
|
|
76307
|
+
);
|
|
76308
|
+
}
|
|
76309
|
+
const name = parts[0];
|
|
76310
|
+
const mountPath = parts.length === 3 ? parts[2] : parts[1];
|
|
76311
|
+
if (!name) {
|
|
76312
|
+
throw new Error(`Invalid volume format: ${value} (name cannot be empty)`);
|
|
76313
|
+
}
|
|
76314
|
+
if (!mountPath.startsWith("/")) {
|
|
76315
|
+
throw new Error(
|
|
76316
|
+
`Invalid volume mount path: ${mountPath} (must start with /)`
|
|
76317
|
+
);
|
|
76318
|
+
}
|
|
76319
|
+
if (parts.length === 2) {
|
|
76320
|
+
return { name, mountPath };
|
|
76321
|
+
}
|
|
76322
|
+
const version2 = parts[1];
|
|
76323
|
+
if (!version2) {
|
|
76324
|
+
throw new Error(
|
|
76325
|
+
`Invalid volume format: ${value} (version cannot be empty)`
|
|
76326
|
+
);
|
|
76327
|
+
}
|
|
76328
|
+
return { name, version: version2, mountPath };
|
|
76329
|
+
}
|
|
76330
|
+
function collectVolumes(value, previous) {
|
|
76331
|
+
return [...previous, parseVolume(value)];
|
|
76332
|
+
}
|
|
76298
76333
|
function parsePermissionPolicies(json2) {
|
|
76299
76334
|
if (!json2) return void 0;
|
|
76300
76335
|
let parsed;
|
|
@@ -76705,6 +76740,7 @@ export {
|
|
|
76705
76740
|
EventRenderer,
|
|
76706
76741
|
collectKeyValue,
|
|
76707
76742
|
collectVolumeVersions,
|
|
76743
|
+
collectVolumes,
|
|
76708
76744
|
parsePermissionPolicies,
|
|
76709
76745
|
isUUID,
|
|
76710
76746
|
extractVarNames,
|
|
@@ -76726,4 +76762,4 @@ undici/lib/web/fetch/body.js:
|
|
|
76726
76762
|
undici/lib/web/websocket/frame.js:
|
|
76727
76763
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
76728
76764
|
*/
|
|
76729
|
-
//# sourceMappingURL=chunk-
|
|
76765
|
+
//# sourceMappingURL=chunk-N3EY4HQ3.js.map
|