@vm0/cli 9.114.1 → 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.
@@ -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.114.1",
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.114.1",
34674
+ version: "9.116.0",
34675
34675
  command: process.argv.slice(2).join(" ")
34676
34676
  });
34677
34677
  Sentry.setContext("runtime", {
@@ -51449,7 +51449,11 @@ 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
- "https://www.googleapis.com/auth/meetings.conferencerecords.readonly",
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.
51456
+ "https://www.googleapis.com/auth/meetings.space.readonly",
51453
51457
  "https://www.googleapis.com/auth/userinfo.email"
51454
51458
  ]
51455
51459
  }
@@ -58602,29 +58606,53 @@ var googleMeetFirewall = {
58602
58606
  permissions: [
58603
58607
  {
58604
58608
  name: "meetings.space.created",
58605
- description: "Create and manage Google Meet spaces",
58609
+ description: "Create, edit, and see information about your Google Meet conferences created by the app.",
58606
58610
  rules: [
58611
+ "GET /v2/conferenceRecords",
58612
+ "GET /v2/conferenceRecords/{conferenceRecordsId}",
58613
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/participants",
58614
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/participants/{participantsId}",
58615
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/participants/{participantsId}/participantSessions",
58616
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/participants/{participantsId}/participantSessions/{participantSessionsId}",
58617
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/recordings",
58618
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/recordings/{recordingsId}",
58619
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/smartNotes",
58620
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/smartNotes/{smartNotesId}",
58621
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/transcripts",
58622
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/transcripts/{transcriptsId}",
58623
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/transcripts/{transcriptsId}/entries",
58624
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/transcripts/{transcriptsId}/entries/{entriesId}",
58607
58625
  "POST /v2/spaces",
58608
- "GET /v2/spaces/{spaceId}",
58609
- "PATCH /v2/spaces/{spaceId}",
58610
- "POST /v2/spaces/{spaceId}:endActiveConference"
58626
+ "GET /v2/spaces/{spacesId}",
58627
+ "PATCH /v2/spaces/{spacesId}",
58628
+ "POST /v2/spaces/{spacesId}:endActiveConference"
58611
58629
  ]
58612
58630
  },
58613
58631
  {
58614
- name: "meetings.conferencerecords.readonly",
58615
- description: "View Google Meet conference records, participants, recordings, and transcripts",
58632
+ name: "meetings.space.readonly",
58633
+ description: "Read information about any of your Google Meet conferences",
58616
58634
  rules: [
58617
58635
  "GET /v2/conferenceRecords",
58618
- "GET /v2/conferenceRecords/{conferenceRecordId}",
58619
- "GET /v2/conferenceRecords/{conferenceRecordId}/participants",
58620
- "GET /v2/conferenceRecords/{conferenceRecordId}/participants/{participantId}",
58621
- "GET /v2/conferenceRecords/{conferenceRecordId}/participants/{participantId}/participantSessions",
58622
- "GET /v2/conferenceRecords/{conferenceRecordId}/recordings",
58623
- "GET /v2/conferenceRecords/{conferenceRecordId}/recordings/{recordingId}",
58624
- "GET /v2/conferenceRecords/{conferenceRecordId}/transcripts",
58625
- "GET /v2/conferenceRecords/{conferenceRecordId}/transcripts/{transcriptId}",
58626
- "GET /v2/conferenceRecords/{conferenceRecordId}/transcripts/{transcriptId}/entries"
58636
+ "GET /v2/conferenceRecords/{conferenceRecordsId}",
58637
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/participants",
58638
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/participants/{participantsId}",
58639
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/participants/{participantsId}/participantSessions",
58640
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/participants/{participantsId}/participantSessions/{participantSessionsId}",
58641
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/recordings",
58642
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/recordings/{recordingsId}",
58643
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/smartNotes",
58644
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/smartNotes/{smartNotesId}",
58645
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/transcripts",
58646
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/transcripts/{transcriptsId}",
58647
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/transcripts/{transcriptsId}/entries",
58648
+ "GET /v2/conferenceRecords/{conferenceRecordsId}/transcripts/{transcriptsId}/entries/{entriesId}",
58649
+ "GET /v2/spaces/{spacesId}"
58627
58650
  ]
58651
+ },
58652
+ {
58653
+ name: "meetings.space.settings",
58654
+ description: "Edit, and see settings for all of your Google Meet calls.",
58655
+ rules: ["GET /v2/spaces/{spacesId}", "PATCH /v2/spaces/{spacesId}"]
58628
58656
  }
58629
58657
  ]
58630
58658
  }
@@ -68802,6 +68830,14 @@ var unifiedRunRequestSchema = external_exports.object({
68802
68830
  secrets: external_exports.record(external_exports.string(), external_exports.string()).optional(),
68803
68831
  volumeVersions: external_exports.record(external_exports.string(), external_exports.string()).optional(),
68804
68832
  memoryName: external_exports.string().optional(),
68833
+ // Additional volumes passed directly at run time (bypass compose)
68834
+ additionalVolumes: external_exports.array(
68835
+ external_exports.object({
68836
+ name: external_exports.string(),
68837
+ version: external_exports.string().optional(),
68838
+ mountPath: external_exports.string()
68839
+ })
68840
+ ).optional(),
68805
68841
  // Debug flag to force real Claude in mock environments (internal use only)
68806
68842
  debugNoMockClaude: external_exports.boolean().optional(),
68807
68843
  // Capture HTTP request headers, request bodies, and response bodies in network logs
@@ -76263,6 +76299,37 @@ function collectVolumeVersions(value, previous) {
76263
76299
  }
76264
76300
  return { ...previous, [volumeName]: version2 };
76265
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
+ }
76266
76333
  function parsePermissionPolicies(json2) {
76267
76334
  if (!json2) return void 0;
76268
76335
  let parsed;
@@ -76343,6 +76410,17 @@ function parseIdentifier(identifier) {
76343
76410
  }
76344
76411
  return { name: identifier };
76345
76412
  }
76413
+ function parseArtifact(value) {
76414
+ if (!value) return void 0;
76415
+ const colonIndex = value.indexOf(":");
76416
+ if (colonIndex > 0 && colonIndex < value.length - 1) {
76417
+ return {
76418
+ artifactName: value.slice(0, colonIndex),
76419
+ artifactVersion: value.slice(colonIndex + 1)
76420
+ };
76421
+ }
76422
+ return { artifactName: value };
76423
+ }
76346
76424
  function renderRunCreated(response) {
76347
76425
  if (response.status === "queued") {
76348
76426
  console.log(source_default.yellow("\u26A0 Run queued \u2014 concurrency limit reached"));
@@ -76662,12 +76740,14 @@ export {
76662
76740
  EventRenderer,
76663
76741
  collectKeyValue,
76664
76742
  collectVolumeVersions,
76743
+ collectVolumes,
76665
76744
  parsePermissionPolicies,
76666
76745
  isUUID,
76667
76746
  extractVarNames,
76668
76747
  extractSecretNames,
76669
76748
  loadValues,
76670
76749
  parseIdentifier,
76750
+ parseArtifact,
76671
76751
  renderRunCreated,
76672
76752
  pollEvents,
76673
76753
  showNextSteps,
@@ -76682,4 +76762,4 @@ undici/lib/web/fetch/body.js:
76682
76762
  undici/lib/web/websocket/frame.js:
76683
76763
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
76684
76764
  */
76685
- //# sourceMappingURL=chunk-KFF4XQ5R.js.map
76765
+ //# sourceMappingURL=chunk-N3EY4HQ3.js.map