@vm0/cli 9.113.1 → 9.113.3

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.113.1",
34655
+ release: "9.113.3",
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.113.1",
34674
+ version: "9.113.3",
34675
34675
  command: process.argv.slice(2).join(" ")
34676
34676
  });
34677
34677
  Sentry.setContext("runtime", {
@@ -51191,6 +51191,27 @@ var CONNECTOR_TYPES_DEF = {
51191
51191
  ]
51192
51192
  }
51193
51193
  },
51194
+ "anthropic-managed-agents": {
51195
+ label: "Anthropic Managed Agents",
51196
+ environmentMapping: {
51197
+ ANTHROPIC_MANAGED_AGENTS_TOKEN: "$secrets.ANTHROPIC_MANAGED_AGENTS_TOKEN"
51198
+ },
51199
+ helpText: "Connect to Anthropic Managed Agents API to programmatically create and run AI agents in cloud environments",
51200
+ authMethods: {
51201
+ "api-token": {
51202
+ label: "API Key",
51203
+ helpText: "1. Sign up at [Anthropic Console](https://console.anthropic.com)\n2. Go to **API Keys** and create a new key\n3. Ensure your account has Managed Agents (beta) access\n4. Copy the API key (starts with `sk-ant-`)",
51204
+ secrets: {
51205
+ ANTHROPIC_MANAGED_AGENTS_TOKEN: {
51206
+ label: "API Key",
51207
+ required: true,
51208
+ placeholder: "sk-ant-api03-..."
51209
+ }
51210
+ }
51211
+ }
51212
+ },
51213
+ defaultAuthMethod: "api-token"
51214
+ },
51194
51215
  github: {
51195
51216
  label: "GitHub",
51196
51217
  environmentMapping: {
@@ -51403,6 +51424,39 @@ var CONNECTOR_TYPES_DEF = {
51403
51424
  ]
51404
51425
  }
51405
51426
  },
51427
+ "google-meet": {
51428
+ label: "Google Meet",
51429
+ environmentMapping: {
51430
+ GOOGLE_MEET_TOKEN: "$secrets.GOOGLE_MEET_ACCESS_TOKEN"
51431
+ },
51432
+ helpText: "Connect your Google account to manage Meet spaces, view conference records, participants, recordings, and transcripts",
51433
+ authMethods: {
51434
+ oauth: {
51435
+ label: "OAuth (Recommended)",
51436
+ helpText: "Sign in with Google to grant Google Meet access.",
51437
+ secrets: {
51438
+ GOOGLE_MEET_ACCESS_TOKEN: {
51439
+ label: "Access Token",
51440
+ required: true
51441
+ },
51442
+ GOOGLE_MEET_REFRESH_TOKEN: {
51443
+ label: "Refresh Token",
51444
+ required: true
51445
+ }
51446
+ }
51447
+ }
51448
+ },
51449
+ defaultAuthMethod: "oauth",
51450
+ oauth: {
51451
+ authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
51452
+ tokenUrl: "https://oauth2.googleapis.com/token",
51453
+ scopes: [
51454
+ "https://www.googleapis.com/auth/meetings.space.created",
51455
+ "https://www.googleapis.com/auth/meetings.conferencerecords.readonly",
51456
+ "https://www.googleapis.com/auth/userinfo.email"
51457
+ ]
51458
+ }
51459
+ },
51406
51460
  close: {
51407
51461
  label: "Close",
51408
51462
  environmentMapping: {
@@ -54828,6 +54882,72 @@ var agentphoneFirewall = {
54828
54882
  ]
54829
54883
  };
54830
54884
 
54885
+ // ../../packages/core/src/firewalls/anthropic-managed-agents.generated.ts
54886
+ init_esm_shims();
54887
+ var anthropicManagedAgentsFirewall = {
54888
+ name: "anthropic-managed-agents",
54889
+ description: "Anthropic Managed Agents API",
54890
+ placeholders: {
54891
+ ANTHROPIC_MANAGED_AGENTS_TOKEN: "sk-ant-api03-CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCof"
54892
+ },
54893
+ apis: [
54894
+ {
54895
+ base: "https://api.anthropic.com",
54896
+ auth: {
54897
+ headers: {
54898
+ "x-api-key": "${{ secrets.ANTHROPIC_MANAGED_AGENTS_TOKEN }}"
54899
+ }
54900
+ },
54901
+ permissions: [
54902
+ {
54903
+ name: "agents:read",
54904
+ description: "List and retrieve agent definitions",
54905
+ rules: ["GET /v1/agents", "GET /v1/agents/*"]
54906
+ },
54907
+ {
54908
+ name: "agents:write",
54909
+ description: "Create, update, and delete agent definitions",
54910
+ rules: ["POST /v1/agents", "PUT /v1/agents/*", "DELETE /v1/agents/*"]
54911
+ },
54912
+ {
54913
+ name: "environments:read",
54914
+ description: "List and retrieve execution environments",
54915
+ rules: ["GET /v1/environments", "GET /v1/environments/*"]
54916
+ },
54917
+ {
54918
+ name: "environments:write",
54919
+ description: "Create and manage execution environments",
54920
+ rules: [
54921
+ "POST /v1/environments",
54922
+ "PUT /v1/environments/*",
54923
+ "DELETE /v1/environments/*"
54924
+ ]
54925
+ },
54926
+ {
54927
+ name: "sessions:read",
54928
+ description: "List and retrieve agent sessions and events",
54929
+ rules: ["GET /v1/sessions", "GET /v1/sessions/*"]
54930
+ },
54931
+ {
54932
+ name: "sessions:write",
54933
+ description: "Create sessions and send events",
54934
+ rules: ["POST /v1/sessions", "POST /v1/sessions/*/events"]
54935
+ },
54936
+ {
54937
+ name: "vaults:read",
54938
+ description: "List and retrieve credential vaults",
54939
+ rules: ["GET /v1/vaults", "GET /v1/vaults/*"]
54940
+ },
54941
+ {
54942
+ name: "vaults:write",
54943
+ description: "Create and manage credential vaults",
54944
+ rules: ["POST /v1/vaults", "PUT /v1/vaults/*", "DELETE /v1/vaults/*"]
54945
+ }
54946
+ ]
54947
+ }
54948
+ ]
54949
+ };
54950
+
54831
54951
  // ../../packages/core/src/firewalls/ahrefs.generated.ts
54832
54952
  init_esm_shims();
54833
54953
  var ahrefsFirewall = {
@@ -58466,6 +58586,54 @@ var googleDriveFirewall = {
58466
58586
  ]
58467
58587
  };
58468
58588
 
58589
+ // ../../packages/core/src/firewalls/google-meet.generated.ts
58590
+ init_esm_shims();
58591
+ var googleMeetFirewall = {
58592
+ name: "google-meet",
58593
+ description: "Google Meet API",
58594
+ placeholders: {
58595
+ GOOGLE_MEET_TOKEN: "ya29.A0CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSa"
58596
+ },
58597
+ apis: [
58598
+ {
58599
+ base: "https://meet.googleapis.com",
58600
+ auth: {
58601
+ headers: {
58602
+ Authorization: "Bearer ${{ secrets.GOOGLE_MEET_TOKEN }}"
58603
+ }
58604
+ },
58605
+ permissions: [
58606
+ {
58607
+ name: "meetings.space.created",
58608
+ description: "Create and manage Google Meet spaces",
58609
+ rules: [
58610
+ "POST /v2/spaces",
58611
+ "GET /v2/spaces/{spaceId}",
58612
+ "PATCH /v2/spaces/{spaceId}",
58613
+ "POST /v2/spaces/{spaceId}:endActiveConference"
58614
+ ]
58615
+ },
58616
+ {
58617
+ name: "meetings.conferencerecords.readonly",
58618
+ description: "View Google Meet conference records, participants, recordings, and transcripts",
58619
+ rules: [
58620
+ "GET /v2/conferenceRecords",
58621
+ "GET /v2/conferenceRecords/{conferenceRecordId}",
58622
+ "GET /v2/conferenceRecords/{conferenceRecordId}/participants",
58623
+ "GET /v2/conferenceRecords/{conferenceRecordId}/participants/{participantId}",
58624
+ "GET /v2/conferenceRecords/{conferenceRecordId}/participants/{participantId}/participantSessions",
58625
+ "GET /v2/conferenceRecords/{conferenceRecordId}/recordings",
58626
+ "GET /v2/conferenceRecords/{conferenceRecordId}/recordings/{recordingId}",
58627
+ "GET /v2/conferenceRecords/{conferenceRecordId}/transcripts",
58628
+ "GET /v2/conferenceRecords/{conferenceRecordId}/transcripts/{transcriptId}",
58629
+ "GET /v2/conferenceRecords/{conferenceRecordId}/transcripts/{transcriptId}/entries"
58630
+ ]
58631
+ }
58632
+ ]
58633
+ }
58634
+ ]
58635
+ };
58636
+
58469
58637
  // ../../packages/core/src/firewalls/google-sheets.generated.ts
58470
58638
  init_esm_shims();
58471
58639
  var googleSheetsFirewall = {
@@ -63551,6 +63719,7 @@ var zeptomailFirewall = {
63551
63719
  var CONNECTOR_FIREWALLS = {
63552
63720
  agentmail: agentmailFirewall,
63553
63721
  agentphone: agentphoneFirewall,
63722
+ "anthropic-managed-agents": anthropicManagedAgentsFirewall,
63554
63723
  ahrefs: ahrefsFirewall,
63555
63724
  airtable: airtableFirewall,
63556
63725
  apollo: apolloFirewall,
@@ -63598,6 +63767,7 @@ var CONNECTOR_FIREWALLS = {
63598
63767
  "google-calendar": googleCalendarFirewall,
63599
63768
  "google-docs": googleDocsFirewall,
63600
63769
  "google-drive": googleDriveFirewall,
63770
+ "google-meet": googleMeetFirewall,
63601
63771
  "google-sheets": googleSheetsFirewall,
63602
63772
  granola: granolaFirewall,
63603
63773
  heygen: heygenFirewall,
@@ -76479,4 +76649,4 @@ undici/lib/web/fetch/body.js:
76479
76649
  undici/lib/web/websocket/frame.js:
76480
76650
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
76481
76651
  */
76482
- //# sourceMappingURL=chunk-SHEUR2EG.js.map
76652
+ //# sourceMappingURL=chunk-3M2HM4GT.js.map