@vm0/cli 9.113.0 → 9.113.2
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.
|
|
34655
|
+
release: "9.113.2",
|
|
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.
|
|
34674
|
+
version: "9.113.2",
|
|
34675
34675
|
command: process.argv.slice(2).join(" ")
|
|
34676
34676
|
});
|
|
34677
34677
|
Sentry.setContext("runtime", {
|
|
@@ -51403,6 +51403,39 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
51403
51403
|
]
|
|
51404
51404
|
}
|
|
51405
51405
|
},
|
|
51406
|
+
"google-meet": {
|
|
51407
|
+
label: "Google Meet",
|
|
51408
|
+
environmentMapping: {
|
|
51409
|
+
GOOGLE_MEET_TOKEN: "$secrets.GOOGLE_MEET_ACCESS_TOKEN"
|
|
51410
|
+
},
|
|
51411
|
+
helpText: "Connect your Google account to manage Meet spaces, view conference records, participants, recordings, and transcripts",
|
|
51412
|
+
authMethods: {
|
|
51413
|
+
oauth: {
|
|
51414
|
+
label: "OAuth (Recommended)",
|
|
51415
|
+
helpText: "Sign in with Google to grant Google Meet access.",
|
|
51416
|
+
secrets: {
|
|
51417
|
+
GOOGLE_MEET_ACCESS_TOKEN: {
|
|
51418
|
+
label: "Access Token",
|
|
51419
|
+
required: true
|
|
51420
|
+
},
|
|
51421
|
+
GOOGLE_MEET_REFRESH_TOKEN: {
|
|
51422
|
+
label: "Refresh Token",
|
|
51423
|
+
required: true
|
|
51424
|
+
}
|
|
51425
|
+
}
|
|
51426
|
+
}
|
|
51427
|
+
},
|
|
51428
|
+
defaultAuthMethod: "oauth",
|
|
51429
|
+
oauth: {
|
|
51430
|
+
authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
|
|
51431
|
+
tokenUrl: "https://oauth2.googleapis.com/token",
|
|
51432
|
+
scopes: [
|
|
51433
|
+
"https://www.googleapis.com/auth/meetings.space.created",
|
|
51434
|
+
"https://www.googleapis.com/auth/meetings.conferencerecords.readonly",
|
|
51435
|
+
"https://www.googleapis.com/auth/userinfo.email"
|
|
51436
|
+
]
|
|
51437
|
+
}
|
|
51438
|
+
},
|
|
51406
51439
|
close: {
|
|
51407
51440
|
label: "Close",
|
|
51408
51441
|
environmentMapping: {
|
|
@@ -58466,6 +58499,54 @@ var googleDriveFirewall = {
|
|
|
58466
58499
|
]
|
|
58467
58500
|
};
|
|
58468
58501
|
|
|
58502
|
+
// ../../packages/core/src/firewalls/google-meet.generated.ts
|
|
58503
|
+
init_esm_shims();
|
|
58504
|
+
var googleMeetFirewall = {
|
|
58505
|
+
name: "google-meet",
|
|
58506
|
+
description: "Google Meet API",
|
|
58507
|
+
placeholders: {
|
|
58508
|
+
GOOGLE_MEET_TOKEN: "ya29.A0CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSa"
|
|
58509
|
+
},
|
|
58510
|
+
apis: [
|
|
58511
|
+
{
|
|
58512
|
+
base: "https://meet.googleapis.com",
|
|
58513
|
+
auth: {
|
|
58514
|
+
headers: {
|
|
58515
|
+
Authorization: "Bearer ${{ secrets.GOOGLE_MEET_TOKEN }}"
|
|
58516
|
+
}
|
|
58517
|
+
},
|
|
58518
|
+
permissions: [
|
|
58519
|
+
{
|
|
58520
|
+
name: "meetings.space.created",
|
|
58521
|
+
description: "Create and manage Google Meet spaces",
|
|
58522
|
+
rules: [
|
|
58523
|
+
"POST /v2/spaces",
|
|
58524
|
+
"GET /v2/spaces/{spaceId}",
|
|
58525
|
+
"PATCH /v2/spaces/{spaceId}",
|
|
58526
|
+
"POST /v2/spaces/{spaceId}:endActiveConference"
|
|
58527
|
+
]
|
|
58528
|
+
},
|
|
58529
|
+
{
|
|
58530
|
+
name: "meetings.conferencerecords.readonly",
|
|
58531
|
+
description: "View Google Meet conference records, participants, recordings, and transcripts",
|
|
58532
|
+
rules: [
|
|
58533
|
+
"GET /v2/conferenceRecords",
|
|
58534
|
+
"GET /v2/conferenceRecords/{conferenceRecordId}",
|
|
58535
|
+
"GET /v2/conferenceRecords/{conferenceRecordId}/participants",
|
|
58536
|
+
"GET /v2/conferenceRecords/{conferenceRecordId}/participants/{participantId}",
|
|
58537
|
+
"GET /v2/conferenceRecords/{conferenceRecordId}/participants/{participantId}/participantSessions",
|
|
58538
|
+
"GET /v2/conferenceRecords/{conferenceRecordId}/recordings",
|
|
58539
|
+
"GET /v2/conferenceRecords/{conferenceRecordId}/recordings/{recordingId}",
|
|
58540
|
+
"GET /v2/conferenceRecords/{conferenceRecordId}/transcripts",
|
|
58541
|
+
"GET /v2/conferenceRecords/{conferenceRecordId}/transcripts/{transcriptId}",
|
|
58542
|
+
"GET /v2/conferenceRecords/{conferenceRecordId}/transcripts/{transcriptId}/entries"
|
|
58543
|
+
]
|
|
58544
|
+
}
|
|
58545
|
+
]
|
|
58546
|
+
}
|
|
58547
|
+
]
|
|
58548
|
+
};
|
|
58549
|
+
|
|
58469
58550
|
// ../../packages/core/src/firewalls/google-sheets.generated.ts
|
|
58470
58551
|
init_esm_shims();
|
|
58471
58552
|
var googleSheetsFirewall = {
|
|
@@ -63598,6 +63679,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
63598
63679
|
"google-calendar": googleCalendarFirewall,
|
|
63599
63680
|
"google-docs": googleDocsFirewall,
|
|
63600
63681
|
"google-drive": googleDriveFirewall,
|
|
63682
|
+
"google-meet": googleMeetFirewall,
|
|
63601
63683
|
"google-sheets": googleSheetsFirewall,
|
|
63602
63684
|
granola: granolaFirewall,
|
|
63603
63685
|
heygen: heygenFirewall,
|
|
@@ -76479,4 +76561,4 @@ undici/lib/web/fetch/body.js:
|
|
|
76479
76561
|
undici/lib/web/websocket/frame.js:
|
|
76480
76562
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
76481
76563
|
*/
|
|
76482
|
-
//# sourceMappingURL=chunk-
|
|
76564
|
+
//# sourceMappingURL=chunk-C3HAYAZZ.js.map
|