@vm0/cli 9.160.6 → 9.160.8

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.160.6",
74086
+ release: "9.160.8",
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.160.6",
74105
+ version: "9.160.8",
74106
74106
  command: process.argv.slice(2).join(" ")
74107
74107
  });
74108
74108
  setContext("runtime", {
@@ -74338,8 +74338,7 @@ var FEATURE_SWITCHES = {
74338
74338
  ["codexDeviceAuth" /* CodexDeviceAuth */]: {
74339
74339
  maintainer: "liangyou@vm0.ai",
74340
74340
  description: "Gate Codex device-auth UI and API surfaces.",
74341
- enabled: false,
74342
- enabledOrgIdHashes: STAFF_ORG_ID_HASHES
74341
+ enabled: true
74343
74342
  },
74344
74343
  ["posthogConnector" /* PosthogConnector */]: {
74345
74344
  maintainer: "ethan@vm0.ai",
@@ -74492,7 +74491,7 @@ var FEATURE_SWITCHES = {
74492
74491
  ["persistentSecretKmsRead" /* PersistentSecretKmsRead */]: {
74493
74492
  maintainer: "ethan@vm0.ai",
74494
74493
  description: "Prefer AWS KMS material when reading persistent secret envelopes such as bot tokens, callback secrets, OAuth tokens, and queued execution secrets. Legacy AES remains as a fallback while backfills complete.",
74495
- enabled: false
74494
+ enabled: true
74496
74495
  },
74497
74496
  ["persistentSecretKmsWrite" /* PersistentSecretKmsWrite */]: {
74498
74497
  maintainer: "ethan@vm0.ai",
@@ -95374,6 +95373,32 @@ var cliAuthTokenContract = c9.router({
95374
95373
  var apiErrorResponseSchema = external_exports.object({
95375
95374
  error: external_exports.object({ message: external_exports.string(), code: external_exports.string() })
95376
95375
  });
95376
+ var cliAuthApproveErrorSchema = external_exports.object({
95377
+ success: external_exports.literal(false),
95378
+ error: external_exports.string()
95379
+ });
95380
+ var cliAuthApproveContract = c9.router({
95381
+ /**
95382
+ * POST /api/cli/auth/approve
95383
+ * Approve a pending CLI device code from a browser session
95384
+ */
95385
+ approve: {
95386
+ method: "POST",
95387
+ path: "/api/cli/auth/approve",
95388
+ headers: authHeadersSchema,
95389
+ body: external_exports.object({
95390
+ device_code: external_exports.string().min(1, "device_code is required"),
95391
+ timezone: external_exports.string().min(1).optional()
95392
+ }),
95393
+ responses: {
95394
+ 200: external_exports.object({ success: external_exports.literal(true) }),
95395
+ 400: cliAuthApproveErrorSchema,
95396
+ 401: apiErrorResponseSchema,
95397
+ 403: apiErrorResponseSchema
95398
+ },
95399
+ summary: "Approve a CLI device authorization flow"
95400
+ }
95401
+ });
95377
95402
  var cliAuthOrgContract = c9.router({
95378
95403
  /**
95379
95404
  * POST /api/cli/auth/org
@@ -97467,7 +97492,7 @@ var github = {
97467
97492
  },
97468
97493
  defaultAuthMethod: "oauth",
97469
97494
  oauth: {
97470
- authorizationUrl: "https://github.com/login/oauth/authorize",
97495
+ flow: "authorization-code",
97471
97496
  tokenUrl: "https://github.com/login/oauth/access_token",
97472
97497
  client: {
97473
97498
  clientRegistration: "static",
@@ -97510,7 +97535,7 @@ var gmail = {
97510
97535
  },
97511
97536
  defaultAuthMethod: "oauth",
97512
97537
  oauth: {
97513
- authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
97538
+ flow: "authorization-code",
97514
97539
  tokenUrl: "https://oauth2.googleapis.com/token",
97515
97540
  client: {
97516
97541
  clientRegistration: "static",
@@ -97553,7 +97578,7 @@ var notion = {
97553
97578
  },
97554
97579
  defaultAuthMethod: "oauth",
97555
97580
  oauth: {
97556
- authorizationUrl: "https://api.notion.com/v1/oauth/authorize",
97581
+ flow: "authorization-code",
97557
97582
  tokenUrl: "https://api.notion.com/v1/oauth/token",
97558
97583
  client: {
97559
97584
  clientRegistration: "static",
@@ -97595,7 +97620,7 @@ var x = {
97595
97620
  },
97596
97621
  defaultAuthMethod: "oauth",
97597
97622
  oauth: {
97598
- authorizationUrl: "https://twitter.com/i/oauth2/authorize",
97623
+ flow: "authorization-code",
97599
97624
  tokenUrl: "https://api.twitter.com/2/oauth2/token",
97600
97625
  client: {
97601
97626
  clientRegistration: "static",
@@ -97683,7 +97708,7 @@ var googleDrive = {
97683
97708
  },
97684
97709
  defaultAuthMethod: "oauth",
97685
97710
  oauth: {
97686
- authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
97711
+ flow: "authorization-code",
97687
97712
  tokenUrl: "https://oauth2.googleapis.com/token",
97688
97713
  client: {
97689
97714
  clientRegistration: "static",
@@ -97725,7 +97750,7 @@ var slack = {
97725
97750
  },
97726
97751
  defaultAuthMethod: "oauth",
97727
97752
  oauth: {
97728
- authorizationUrl: "https://slack.com/oauth/v2/authorize",
97753
+ flow: "authorization-code",
97729
97754
  tokenUrl: "https://slack.com/api/oauth.v2.access",
97730
97755
  client: {
97731
97756
  clientRegistration: "static",
@@ -97805,7 +97830,7 @@ var googleSheets = {
97805
97830
  },
97806
97831
  defaultAuthMethod: "oauth",
97807
97832
  oauth: {
97808
- authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
97833
+ flow: "authorization-code",
97809
97834
  tokenUrl: "https://oauth2.googleapis.com/token",
97810
97835
  client: {
97811
97836
  clientRegistration: "static",
@@ -97851,7 +97876,7 @@ var googleCalendar = {
97851
97876
  },
97852
97877
  defaultAuthMethod: "oauth",
97853
97878
  oauth: {
97854
- authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
97879
+ flow: "authorization-code",
97855
97880
  tokenUrl: "https://oauth2.googleapis.com/token",
97856
97881
  client: {
97857
97882
  clientRegistration: "static",
@@ -97896,7 +97921,7 @@ var googleDocs = {
97896
97921
  },
97897
97922
  defaultAuthMethod: "oauth",
97898
97923
  oauth: {
97899
- authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
97924
+ flow: "authorization-code",
97900
97925
  tokenUrl: "https://oauth2.googleapis.com/token",
97901
97926
  client: {
97902
97927
  clientRegistration: "static",
@@ -97942,7 +97967,7 @@ var linear = {
97942
97967
  },
97943
97968
  defaultAuthMethod: "oauth",
97944
97969
  oauth: {
97945
- authorizationUrl: "https://linear.app/oauth/authorize",
97970
+ flow: "authorization-code",
97946
97971
  tokenUrl: "https://api.linear.app/oauth/token",
97947
97972
  client: {
97948
97973
  clientRegistration: "static",
@@ -97986,7 +98011,7 @@ var intervalsIcu = {
97986
98011
  },
97987
98012
  defaultAuthMethod: "oauth",
97988
98013
  oauth: {
97989
- authorizationUrl: "https://intervals.icu/oauth/authorize",
98014
+ flow: "authorization-code",
97990
98015
  tokenUrl: "https://intervals.icu/api/oauth/token",
97991
98016
  client: {
97992
98017
  clientRegistration: "static",
@@ -98024,6 +98049,7 @@ var vercel = {
98024
98049
  },
98025
98050
  defaultAuthMethod: "oauth",
98026
98051
  oauth: {
98052
+ flow: "authorization-code",
98027
98053
  tokenUrl: "https://api.vercel.com/v2/oauth/access_token",
98028
98054
  client: {
98029
98055
  clientRegistration: "static",
@@ -98065,7 +98091,7 @@ var strava = {
98065
98091
  },
98066
98092
  defaultAuthMethod: "oauth",
98067
98093
  oauth: {
98068
- authorizationUrl: "https://www.strava.com/oauth/authorize",
98094
+ flow: "authorization-code",
98069
98095
  tokenUrl: "https://www.strava.com/oauth/token",
98070
98096
  client: {
98071
98097
  clientRegistration: "static",
@@ -98112,7 +98138,7 @@ var googleMeet = {
98112
98138
  },
98113
98139
  defaultAuthMethod: "oauth",
98114
98140
  oauth: {
98115
- authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
98141
+ flow: "authorization-code",
98116
98142
  tokenUrl: "https://oauth2.googleapis.com/token",
98117
98143
  client: {
98118
98144
  clientRegistration: "static",
@@ -98162,7 +98188,7 @@ var hubspot = {
98162
98188
  },
98163
98189
  defaultAuthMethod: "oauth",
98164
98190
  oauth: {
98165
- authorizationUrl: "https://app.hubspot.com/oauth/authorize",
98191
+ flow: "authorization-code",
98166
98192
  tokenUrl: "https://api.hubapi.com/oauth/v1/token",
98167
98193
  client: {
98168
98194
  clientRegistration: "static",
@@ -98237,7 +98263,7 @@ var sentry = {
98237
98263
  },
98238
98264
  defaultAuthMethod: "oauth",
98239
98265
  oauth: {
98240
- authorizationUrl: "https://sentry.io/oauth/authorize/",
98266
+ flow: "authorization-code",
98241
98267
  tokenUrl: "https://sentry.io/oauth/token/",
98242
98268
  client: {
98243
98269
  clientRegistration: "static",
@@ -98282,7 +98308,7 @@ var todoist = {
98282
98308
  },
98283
98309
  defaultAuthMethod: "oauth",
98284
98310
  oauth: {
98285
- authorizationUrl: "https://todoist.com/oauth/authorize",
98311
+ flow: "authorization-code",
98286
98312
  tokenUrl: "https://todoist.com/oauth/access_token",
98287
98313
  client: {
98288
98314
  clientRegistration: "static",
@@ -98324,7 +98350,7 @@ var xero = {
98324
98350
  },
98325
98351
  defaultAuthMethod: "oauth",
98326
98352
  oauth: {
98327
- authorizationUrl: "https://login.xero.com/identity/connect/authorize",
98353
+ flow: "authorization-code",
98328
98354
  tokenUrl: "https://identity.xero.com/connect/token",
98329
98355
  client: {
98330
98356
  clientRegistration: "static",
@@ -98389,7 +98415,7 @@ var airtable = {
98389
98415
  },
98390
98416
  defaultAuthMethod: "oauth",
98391
98417
  oauth: {
98392
- authorizationUrl: "https://airtable.com/oauth2/v1/authorize",
98418
+ flow: "authorization-code",
98393
98419
  tokenUrl: "https://airtable.com/oauth2/v1/token",
98394
98420
  client: {
98395
98421
  clientRegistration: "static",
@@ -98440,7 +98466,7 @@ var docusign = {
98440
98466
  },
98441
98467
  defaultAuthMethod: "oauth",
98442
98468
  oauth: {
98443
- authorizationUrl: "https://account-d.docusign.com/oauth/auth",
98469
+ flow: "authorization-code",
98444
98470
  tokenUrl: "https://account-d.docusign.com/oauth/token",
98445
98471
  client: {
98446
98472
  clientRegistration: "static",
@@ -98485,7 +98511,7 @@ var googleAds = {
98485
98511
  },
98486
98512
  defaultAuthMethod: "oauth",
98487
98513
  oauth: {
98488
- authorizationUrl: "https://accounts.google.com/o/oauth2/v2/auth",
98514
+ flow: "authorization-code",
98489
98515
  tokenUrl: "https://oauth2.googleapis.com/token",
98490
98516
  client: {
98491
98517
  clientRegistration: "static",
@@ -98565,7 +98591,7 @@ var gumroad = {
98565
98591
  },
98566
98592
  defaultAuthMethod: "oauth",
98567
98593
  oauth: {
98568
- authorizationUrl: "https://gumroad.com/oauth/authorize",
98594
+ flow: "authorization-code",
98569
98595
  tokenUrl: "https://gumroad.com/oauth/token",
98570
98596
  client: {
98571
98597
  clientRegistration: "static",
@@ -98614,7 +98640,7 @@ var spotify = {
98614
98640
  },
98615
98641
  defaultAuthMethod: "oauth",
98616
98642
  oauth: {
98617
- authorizationUrl: "https://accounts.spotify.com/authorize",
98643
+ flow: "authorization-code",
98618
98644
  tokenUrl: "https://accounts.spotify.com/api/token",
98619
98645
  client: {
98620
98646
  clientRegistration: "static",
@@ -98762,7 +98788,7 @@ var ahrefs = {
98762
98788
  },
98763
98789
  defaultAuthMethod: "api-token",
98764
98790
  oauth: {
98765
- authorizationUrl: "https://app.ahrefs.com/api/auth",
98791
+ flow: "authorization-code",
98766
98792
  tokenUrl: "https://app.ahrefs.com/api/token",
98767
98793
  client: {
98768
98794
  clientRegistration: "static",
@@ -98954,7 +98980,7 @@ var asana = {
98954
98980
  },
98955
98981
  defaultAuthMethod: "oauth",
98956
98982
  oauth: {
98957
- authorizationUrl: "https://app.asana.com/-/oauth_authorize",
98983
+ flow: "authorization-code",
98958
98984
  tokenUrl: "https://app.asana.com/-/oauth_token",
98959
98985
  client: {
98960
98986
  clientRegistration: "static",
@@ -99546,7 +99572,7 @@ var canva = {
99546
99572
  },
99547
99573
  defaultAuthMethod: "oauth",
99548
99574
  oauth: {
99549
- authorizationUrl: "https://www.canva.com/api/oauth/authorize",
99575
+ flow: "authorization-code",
99550
99576
  tokenUrl: "https://api.canva.com/rest/v1/oauth/token",
99551
99577
  client: {
99552
99578
  clientRegistration: "static",
@@ -99741,7 +99767,7 @@ var close2 = {
99741
99767
  },
99742
99768
  defaultAuthMethod: "oauth",
99743
99769
  oauth: {
99744
- authorizationUrl: "https://app.close.com/oauth2/authorize/",
99770
+ flow: "authorization-code",
99745
99771
  tokenUrl: "https://api.close.com/oauth2/token/",
99746
99772
  client: {
99747
99773
  clientRegistration: "static",
@@ -100006,7 +100032,7 @@ var deel = {
100006
100032
  },
100007
100033
  defaultAuthMethod: "oauth",
100008
100034
  oauth: {
100009
- authorizationUrl: "https://app.deel.com/oauth2/authorize",
100035
+ flow: "authorization-code",
100010
100036
  tokenUrl: "https://app.deel.com/oauth2/tokens",
100011
100037
  client: {
100012
100038
  clientRegistration: "static",
@@ -100315,7 +100341,7 @@ var dropbox = {
100315
100341
  },
100316
100342
  defaultAuthMethod: "oauth",
100317
100343
  oauth: {
100318
- authorizationUrl: "https://www.dropbox.com/oauth2/authorize",
100344
+ flow: "authorization-code",
100319
100345
  tokenUrl: "https://api.dropboxapi.com/oauth2/token",
100320
100346
  client: {
100321
100347
  clientRegistration: "static",
@@ -100627,7 +100653,7 @@ var figma = {
100627
100653
  },
100628
100654
  defaultAuthMethod: "oauth",
100629
100655
  oauth: {
100630
- authorizationUrl: "https://www.figma.com/oauth",
100656
+ flow: "authorization-code",
100631
100657
  tokenUrl: "https://api.figma.com/v1/oauth/token",
100632
100658
  client: {
100633
100659
  clientRegistration: "static",
@@ -100795,7 +100821,7 @@ var garminConnect = {
100795
100821
  },
100796
100822
  defaultAuthMethod: "oauth",
100797
100823
  oauth: {
100798
- authorizationUrl: "https://connect.garmin.com/oauth2Confirm",
100824
+ flow: "authorization-code",
100799
100825
  tokenUrl: "https://diauth.garmin.com/di-oauth2-service/oauth/token",
100800
100826
  client: {
100801
100827
  clientRegistration: "static",
@@ -101750,7 +101776,7 @@ var mailchimp = {
101750
101776
  },
101751
101777
  defaultAuthMethod: "oauth",
101752
101778
  oauth: {
101753
- authorizationUrl: "https://login.mailchimp.com/oauth2/authorize",
101779
+ flow: "authorization-code",
101754
101780
  tokenUrl: "https://login.mailchimp.com/oauth2/token",
101755
101781
  client: {
101756
101782
  clientRegistration: "static",
@@ -101968,7 +101994,7 @@ var mercury = {
101968
101994
  },
101969
101995
  defaultAuthMethod: "oauth",
101970
101996
  oauth: {
101971
- authorizationUrl: "https://oauth2.mercury.com/oauth2/auth",
101997
+ flow: "authorization-code",
101972
101998
  tokenUrl: "https://oauth2.mercury.com/oauth2/token",
101973
101999
  client: {
101974
102000
  clientRegistration: "static",
@@ -102007,7 +102033,7 @@ var metaAds = {
102007
102033
  },
102008
102034
  defaultAuthMethod: "oauth",
102009
102035
  oauth: {
102010
- authorizationUrl: "https://www.facebook.com/v22.0/dialog/oauth",
102036
+ flow: "authorization-code",
102011
102037
  tokenUrl: "https://graph.facebook.com/v22.0/oauth/access_token",
102012
102038
  client: {
102013
102039
  clientRegistration: "static",
@@ -102217,7 +102243,7 @@ var monday = {
102217
102243
  },
102218
102244
  defaultAuthMethod: "oauth",
102219
102245
  oauth: {
102220
- authorizationUrl: "https://auth.monday.com/oauth2/authorize",
102246
+ flow: "authorization-code",
102221
102247
  tokenUrl: "https://auth.monday.com/oauth2/token",
102222
102248
  client: {
102223
102249
  clientRegistration: "static",
@@ -102381,7 +102407,7 @@ var neon = {
102381
102407
  },
102382
102408
  defaultAuthMethod: "oauth",
102383
102409
  oauth: {
102384
- authorizationUrl: "https://oauth2.neon.tech/oauth2/auth",
102410
+ flow: "authorization-code",
102385
102411
  tokenUrl: "https://oauth2.neon.tech/oauth2/token",
102386
102412
  client: {
102387
102413
  clientRegistration: "static",
@@ -102600,7 +102626,7 @@ var outlookCalendar = {
102600
102626
  },
102601
102627
  defaultAuthMethod: "oauth",
102602
102628
  oauth: {
102603
- authorizationUrl: "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
102629
+ flow: "authorization-code",
102604
102630
  tokenUrl: "https://login.microsoftonline.com/common/oauth2/v2.0/token",
102605
102631
  client: {
102606
102632
  clientRegistration: "static",
@@ -102643,7 +102669,7 @@ var outlookMail = {
102643
102669
  },
102644
102670
  defaultAuthMethod: "oauth",
102645
102671
  oauth: {
102646
- authorizationUrl: "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
102672
+ flow: "authorization-code",
102647
102673
  tokenUrl: "https://login.microsoftonline.com/common/oauth2/v2.0/token",
102648
102674
  client: {
102649
102675
  clientRegistration: "static",
@@ -102997,7 +103023,7 @@ var posthog = {
102997
103023
  },
102998
103024
  defaultAuthMethod: "api-token",
102999
103025
  oauth: {
103000
- authorizationUrl: "https://us.posthog.com/oauth/authorize",
103026
+ flow: "authorization-code",
103001
103027
  tokenUrl: "https://us.posthog.com/oauth/token",
103002
103028
  client: {
103003
103029
  clientRegistration: "static",
@@ -103301,7 +103327,7 @@ var reddit = {
103301
103327
  },
103302
103328
  defaultAuthMethod: "oauth",
103303
103329
  oauth: {
103304
- authorizationUrl: "https://www.reddit.com/api/v1/authorize",
103330
+ flow: "authorization-code",
103305
103331
  tokenUrl: "https://www.reddit.com/api/v1/access_token",
103306
103332
  client: {
103307
103333
  clientRegistration: "static",
@@ -104058,7 +104084,7 @@ var stripe = {
104058
104084
  ]
104059
104085
  },
104060
104086
  oauth: {
104061
- authorizationUrl: "https://connect.stripe.com/oauth/authorize",
104087
+ flow: "authorization-code",
104062
104088
  tokenUrl: "https://connect.stripe.com/oauth/token",
104063
104089
  client: {
104064
104090
  clientRegistration: "static",
@@ -104112,7 +104138,7 @@ var supabase = {
104112
104138
  },
104113
104139
  defaultAuthMethod: "oauth",
104114
104140
  oauth: {
104115
- authorizationUrl: "https://api.supabase.com/v1/oauth/authorize",
104141
+ flow: "authorization-code",
104116
104142
  tokenUrl: "https://api.supabase.com/v1/oauth/token",
104117
104143
  client: {
104118
104144
  clientRegistration: "static",
@@ -104247,10 +104273,10 @@ var testOauth = {
104247
104273
  },
104248
104274
  defaultAuthMethod: "oauth",
104249
104275
  oauth: {
104250
- // Relative paths — the handler resolves them against NEXT_PUBLIC_APP_URL
104251
- // at call time because the fake provider lives inside this same app and
104252
- // the preview-URL host changes per deploy.
104253
- authorizationUrl: "/api/test/oauth-provider/authorize",
104276
+ flow: "authorization-code",
104277
+ // Relative path the provider resolves it against the concrete app/API
104278
+ // URL at call time because the fake provider lives inside this same app
104279
+ // and the preview-URL host changes per deploy.
104254
104280
  tokenUrl: "/api/test/oauth-provider/token",
104255
104281
  client: {
104256
104282
  clientRegistration: "static",
@@ -104264,6 +104290,45 @@ var testOauth = {
104264
104290
  }
104265
104291
  };
104266
104292
 
104293
+ // ../../packages/connectors/src/connectors/test-oauth-device.ts
104294
+ init_esm_shims();
104295
+ var testOauthDevice = {
104296
+ "test-oauth-device": {
104297
+ label: "Test OAuth Device (internal)",
104298
+ category: "data-automation-infrastructure",
104299
+ environmentMapping: {
104300
+ TEST_OAUTH_DEVICE_TOKEN: "$secrets.TEST_OAUTH_DEVICE_ACCESS_TOKEN"
104301
+ },
104302
+ helpText: "Synthetic OAuth 2.0 device authorization connector. For automated tests only.",
104303
+ authMethods: {
104304
+ oauth: {
104305
+ featureFlag: "testOauthConnector" /* TestOauthConnector */,
104306
+ label: "OAuth Device Authorization",
104307
+ helpText: "Test-only OAuth device provider.",
104308
+ secrets: {
104309
+ TEST_OAUTH_DEVICE_ACCESS_TOKEN: {
104310
+ label: "Access Token",
104311
+ required: true
104312
+ }
104313
+ }
104314
+ }
104315
+ },
104316
+ defaultAuthMethod: "oauth",
104317
+ oauth: {
104318
+ flow: "device-authorization",
104319
+ deviceAuthorizationUrl: "https://oauth-device.test/device/code",
104320
+ tokenUrl: "https://oauth-device.test/token",
104321
+ client: {
104322
+ clientRegistration: "static",
104323
+ clientType: "public",
104324
+ tokenEndpointAuthMethod: "none",
104325
+ clientId: "test-oauth-device-client"
104326
+ },
104327
+ scopes: ["read"]
104328
+ }
104329
+ }
104330
+ };
104331
+
104267
104332
  // ../../packages/connectors/src/connectors/testrail.ts
104268
104333
  init_esm_shims();
104269
104334
  var testrail = {
@@ -104536,7 +104601,7 @@ var webflow = {
104536
104601
  },
104537
104602
  defaultAuthMethod: "oauth",
104538
104603
  oauth: {
104539
- authorizationUrl: "https://webflow.com/oauth/authorize",
104604
+ flow: "authorization-code",
104540
104605
  tokenUrl: "https://api.webflow.com/oauth/access_token",
104541
104606
  client: {
104542
104607
  clientRegistration: "static",
@@ -104885,7 +104950,7 @@ var zoom = {
104885
104950
  },
104886
104951
  defaultAuthMethod: "oauth",
104887
104952
  oauth: {
104888
- authorizationUrl: "https://zoom.us/oauth/authorize",
104953
+ flow: "authorization-code",
104889
104954
  tokenUrl: "https://zoom.us/oauth/token",
104890
104955
  client: {
104891
104956
  clientRegistration: "static",
@@ -105120,6 +105185,7 @@ var CONNECTOR_TYPES_DEF = {
105120
105185
  ...supermemory,
105121
105186
  ...tavily,
105122
105187
  ...testOauth,
105188
+ ...testOauthDevice,
105123
105189
  ...testrail,
105124
105190
  ...tldv,
105125
105191
  ...together,
@@ -114944,6 +115010,21 @@ var vercelFirewall = {
114944
115010
 
114945
115011
  // ../../packages/connectors/src/connector-utils.ts
114946
115012
  init_esm_shims();
115013
+
115014
+ // ../../packages/connectors/src/oauth-providers/google-oauth-connectors.ts
115015
+ init_esm_shims();
115016
+ var GOOGLE_OAUTH_CONNECTOR_TYPES = [
115017
+ "gmail",
115018
+ "google-ads",
115019
+ "google-calendar",
115020
+ "google-docs",
115021
+ "google-drive",
115022
+ "google-meet",
115023
+ "google-sheets"
115024
+ ];
115025
+ var GOOGLE_OAUTH_CONNECTOR_TYPE_SET = new Set(GOOGLE_OAUTH_CONNECTOR_TYPES);
115026
+
115027
+ // ../../packages/connectors/src/connector-utils.ts
114947
115028
  function getConnectorGenerationTypes(type) {
114948
115029
  const config4 = CONNECTOR_TYPES[type];
114949
115030
  return "generation" in config4 ? config4.generation ?? [] : [];
@@ -132489,4 +132570,4 @@ undici/lib/web/fetch/body.js:
132489
132570
  undici/lib/web/websocket/frame.js:
132490
132571
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
132491
132572
  */
132492
- //# sourceMappingURL=chunk-ITWX7YWW.js.map
132573
+ //# sourceMappingURL=chunk-3P3WTJU2.js.map