@vm0/cli 9.180.0 → 9.180.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.
@@ -74083,7 +74083,7 @@ if (DSN) {
74083
74083
  init2({
74084
74084
  dsn: DSN,
74085
74085
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
74086
- release: "9.180.0",
74086
+ release: "9.180.3",
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.180.0",
74105
+ version: "9.180.3",
74106
74106
  command: process.argv.slice(2).join(" ")
74107
74107
  });
74108
74108
  setContext("runtime", {
@@ -97452,7 +97452,6 @@ var github = {
97452
97452
  },
97453
97453
  grant: {
97454
97454
  kind: "auth-code",
97455
- tokenUrl: "https://github.com/login/oauth/access_token",
97456
97455
  scopes: ["repo", "project", "workflow"]
97457
97456
  },
97458
97457
  access: {
@@ -97471,7 +97470,6 @@ var github = {
97471
97470
 
97472
97471
  // ../../packages/connectors/src/connectors/gmail.ts
97473
97472
  init_esm_shims();
97474
- var OAUTH_TOKEN_URL = "https://oauth2.googleapis.com/token";
97475
97473
  var gmail = {
97476
97474
  gmail: {
97477
97475
  label: "Gmail",
@@ -97498,12 +97496,10 @@ var gmail = {
97498
97496
  },
97499
97497
  grant: {
97500
97498
  kind: "auth-code",
97501
- tokenUrl: OAUTH_TOKEN_URL,
97502
97499
  scopes: ["https://www.googleapis.com/auth/gmail.modify"]
97503
97500
  },
97504
97501
  access: {
97505
97502
  kind: "refresh-token",
97506
- tokenUrl: OAUTH_TOKEN_URL,
97507
97503
  envBindings: {
97508
97504
  GMAIL_TOKEN: "$secrets.GMAIL_ACCESS_TOKEN"
97509
97505
  }
@@ -97517,7 +97513,6 @@ var gmail = {
97517
97513
 
97518
97514
  // ../../packages/connectors/src/connectors/notion.ts
97519
97515
  init_esm_shims();
97520
- var OAUTH_TOKEN_URL2 = "https://api.notion.com/v1/oauth/token";
97521
97516
  var notion = {
97522
97517
  notion: {
97523
97518
  label: "Notion",
@@ -97544,12 +97539,10 @@ var notion = {
97544
97539
  },
97545
97540
  grant: {
97546
97541
  kind: "auth-code",
97547
- tokenUrl: OAUTH_TOKEN_URL2,
97548
97542
  scopes: []
97549
97543
  },
97550
97544
  access: {
97551
97545
  kind: "refresh-token",
97552
- tokenUrl: OAUTH_TOKEN_URL2,
97553
97546
  envBindings: {
97554
97547
  NOTION_TOKEN: "$secrets.NOTION_ACCESS_TOKEN"
97555
97548
  }
@@ -97563,7 +97556,6 @@ var notion = {
97563
97556
 
97564
97557
  // ../../packages/connectors/src/connectors/x.ts
97565
97558
  init_esm_shims();
97566
- var OAUTH_TOKEN_URL3 = "https://api.x.com/2/oauth2/token";
97567
97559
  var x = {
97568
97560
  x: {
97569
97561
  label: "X",
@@ -97589,7 +97581,6 @@ var x = {
97589
97581
  },
97590
97582
  grant: {
97591
97583
  kind: "auth-code",
97592
- tokenUrl: OAUTH_TOKEN_URL3,
97593
97584
  scopes: [
97594
97585
  "tweet.read",
97595
97586
  // All the Tweets you can view, including Tweets from protected accounts.
@@ -97639,7 +97630,6 @@ var x = {
97639
97630
  },
97640
97631
  access: {
97641
97632
  kind: "refresh-token",
97642
- tokenUrl: OAUTH_TOKEN_URL3,
97643
97633
  envBindings: {
97644
97634
  X_TOKEN: "$secrets.X_ACCESS_TOKEN"
97645
97635
  }
@@ -97653,7 +97643,6 @@ var x = {
97653
97643
 
97654
97644
  // ../../packages/connectors/src/connectors/google-drive.ts
97655
97645
  init_esm_shims();
97656
- var OAUTH_TOKEN_URL4 = "https://oauth2.googleapis.com/token";
97657
97646
  var googleDrive = {
97658
97647
  "google-drive": {
97659
97648
  label: "Google Drive",
@@ -97679,7 +97668,6 @@ var googleDrive = {
97679
97668
  },
97680
97669
  grant: {
97681
97670
  kind: "auth-code",
97682
- tokenUrl: OAUTH_TOKEN_URL4,
97683
97671
  scopes: [
97684
97672
  "https://www.googleapis.com/auth/drive",
97685
97673
  "https://www.googleapis.com/auth/userinfo.email"
@@ -97687,7 +97675,6 @@ var googleDrive = {
97687
97675
  },
97688
97676
  access: {
97689
97677
  kind: "refresh-token",
97690
- tokenUrl: OAUTH_TOKEN_URL4,
97691
97678
  envBindings: {
97692
97679
  GOOGLE_DRIVE_TOKEN: "$secrets.GOOGLE_DRIVE_ACCESS_TOKEN"
97693
97680
  }
@@ -97726,7 +97713,6 @@ var slack = {
97726
97713
  },
97727
97714
  grant: {
97728
97715
  kind: "auth-code",
97729
- tokenUrl: "https://slack.com/api/oauth.v2.access",
97730
97716
  scopes: [
97731
97717
  // Channels
97732
97718
  "channels:read",
@@ -97778,9 +97764,6 @@ var slack = {
97778
97764
 
97779
97765
  // ../../packages/connectors/src/connectors/slock.ts
97780
97766
  init_esm_shims();
97781
- var SLOCK_API_BASE_URL = "https://api.slock.ai";
97782
- var SLOCK_DEVICE_TOKEN_URL = `${SLOCK_API_BASE_URL}/api/auth/device/token`;
97783
- var SLOCK_REFRESH_TOKEN_URL = `${SLOCK_API_BASE_URL}/api/auth/refresh`;
97784
97767
  var slock = {
97785
97768
  slock: {
97786
97769
  label: "Slock",
@@ -97808,13 +97791,10 @@ var slock = {
97808
97791
  },
97809
97792
  grant: {
97810
97793
  kind: "device-auth",
97811
- deviceAuthUrl: `${SLOCK_API_BASE_URL}/api/auth/device/authorize`,
97812
- tokenUrl: SLOCK_DEVICE_TOKEN_URL,
97813
97794
  scopes: []
97814
97795
  },
97815
97796
  access: {
97816
97797
  kind: "refresh-token",
97817
- tokenUrl: SLOCK_REFRESH_TOKEN_URL,
97818
97798
  envBindings: {
97819
97799
  SLOCK_TOKEN: "$secrets.SLOCK_ACCESS_TOKEN",
97820
97800
  SLOCK_SERVER_ID: "$secrets.SLOCK_SERVER_ID"
@@ -97829,7 +97809,6 @@ var slock = {
97829
97809
 
97830
97810
  // ../../packages/connectors/src/connectors/google-sheets.ts
97831
97811
  init_esm_shims();
97832
- var OAUTH_TOKEN_URL5 = "https://oauth2.googleapis.com/token";
97833
97812
  var googleSheets = {
97834
97813
  "google-sheets": {
97835
97814
  label: "Google Sheets",
@@ -97858,7 +97837,6 @@ var googleSheets = {
97858
97837
  },
97859
97838
  grant: {
97860
97839
  kind: "auth-code",
97861
- tokenUrl: OAUTH_TOKEN_URL5,
97862
97840
  scopes: [
97863
97841
  "https://www.googleapis.com/auth/spreadsheets",
97864
97842
  "https://www.googleapis.com/auth/userinfo.email"
@@ -97866,7 +97844,6 @@ var googleSheets = {
97866
97844
  },
97867
97845
  access: {
97868
97846
  kind: "refresh-token",
97869
- tokenUrl: OAUTH_TOKEN_URL5,
97870
97847
  envBindings: {
97871
97848
  GOOGLE_SHEETS_TOKEN: "$secrets.GOOGLE_SHEETS_ACCESS_TOKEN"
97872
97849
  }
@@ -97880,7 +97857,6 @@ var googleSheets = {
97880
97857
 
97881
97858
  // ../../packages/connectors/src/connectors/google-calendar.ts
97882
97859
  init_esm_shims();
97883
- var OAUTH_TOKEN_URL6 = "https://oauth2.googleapis.com/token";
97884
97860
  var googleCalendar = {
97885
97861
  "google-calendar": {
97886
97862
  label: "Google Calendar",
@@ -97910,7 +97886,6 @@ var googleCalendar = {
97910
97886
  },
97911
97887
  grant: {
97912
97888
  kind: "auth-code",
97913
- tokenUrl: OAUTH_TOKEN_URL6,
97914
97889
  scopes: [
97915
97890
  "https://www.googleapis.com/auth/calendar",
97916
97891
  "https://www.googleapis.com/auth/userinfo.email"
@@ -97918,7 +97893,6 @@ var googleCalendar = {
97918
97893
  },
97919
97894
  access: {
97920
97895
  kind: "refresh-token",
97921
- tokenUrl: OAUTH_TOKEN_URL6,
97922
97896
  envBindings: {
97923
97897
  GOOGLE_CALENDAR_TOKEN: "$secrets.GOOGLE_CALENDAR_ACCESS_TOKEN"
97924
97898
  }
@@ -97932,7 +97906,6 @@ var googleCalendar = {
97932
97906
 
97933
97907
  // ../../packages/connectors/src/connectors/google-docs.ts
97934
97908
  init_esm_shims();
97935
- var OAUTH_TOKEN_URL7 = "https://oauth2.googleapis.com/token";
97936
97909
  var googleDocs = {
97937
97910
  "google-docs": {
97938
97911
  label: "Google Docs",
@@ -97958,7 +97931,6 @@ var googleDocs = {
97958
97931
  },
97959
97932
  grant: {
97960
97933
  kind: "auth-code",
97961
- tokenUrl: OAUTH_TOKEN_URL7,
97962
97934
  scopes: [
97963
97935
  "https://www.googleapis.com/auth/documents",
97964
97936
  "https://www.googleapis.com/auth/userinfo.email"
@@ -97966,7 +97938,6 @@ var googleDocs = {
97966
97938
  },
97967
97939
  access: {
97968
97940
  kind: "refresh-token",
97969
- tokenUrl: OAUTH_TOKEN_URL7,
97970
97941
  envBindings: {
97971
97942
  GOOGLE_DOCS_TOKEN: "$secrets.GOOGLE_DOCS_ACCESS_TOKEN"
97972
97943
  }
@@ -97980,7 +97951,6 @@ var googleDocs = {
97980
97951
 
97981
97952
  // ../../packages/connectors/src/connectors/linear.ts
97982
97953
  init_esm_shims();
97983
- var OAUTH_TOKEN_URL8 = "https://api.linear.app/oauth/token";
97984
97954
  var linear = {
97985
97955
  linear: {
97986
97956
  label: "Linear",
@@ -98007,7 +97977,6 @@ var linear = {
98007
97977
  },
98008
97978
  grant: {
98009
97979
  kind: "auth-code",
98010
- tokenUrl: OAUTH_TOKEN_URL8,
98011
97980
  scopes: [
98012
97981
  "read",
98013
97982
  "write",
@@ -98018,7 +97987,6 @@ var linear = {
98018
97987
  },
98019
97988
  access: {
98020
97989
  kind: "refresh-token",
98021
- tokenUrl: OAUTH_TOKEN_URL8,
98022
97990
  envBindings: {
98023
97991
  LINEAR_TOKEN: "$secrets.LINEAR_ACCESS_TOKEN"
98024
97992
  }
@@ -98056,7 +98024,6 @@ var intervalsIcu = {
98056
98024
  },
98057
98025
  grant: {
98058
98026
  kind: "auth-code",
98059
- tokenUrl: "https://intervals.icu/api/oauth/token",
98060
98027
  scopes: ["ACTIVITY", "WELLNESS", "CALENDAR", "SETTINGS", "LIBRARY"]
98061
98028
  },
98062
98029
  access: {
@@ -98098,7 +98065,6 @@ var vercel = {
98098
98065
  },
98099
98066
  grant: {
98100
98067
  kind: "auth-code",
98101
- tokenUrl: "https://api.vercel.com/v2/oauth/access_token",
98102
98068
  scopes: []
98103
98069
  },
98104
98070
  access: {
@@ -98116,7 +98082,6 @@ var vercel = {
98116
98082
 
98117
98083
  // ../../packages/connectors/src/connectors/strava.ts
98118
98084
  init_esm_shims();
98119
- var OAUTH_TOKEN_URL9 = "https://www.strava.com/oauth/token";
98120
98085
  var strava = {
98121
98086
  strava: {
98122
98087
  label: "Strava",
@@ -98142,7 +98107,6 @@ var strava = {
98142
98107
  },
98143
98108
  grant: {
98144
98109
  kind: "auth-code",
98145
- tokenUrl: OAUTH_TOKEN_URL9,
98146
98110
  scopes: [
98147
98111
  "read",
98148
98112
  "profile:read_all",
@@ -98152,7 +98116,6 @@ var strava = {
98152
98116
  },
98153
98117
  access: {
98154
98118
  kind: "refresh-token",
98155
- tokenUrl: OAUTH_TOKEN_URL9,
98156
98119
  envBindings: {
98157
98120
  STRAVA_TOKEN: "$secrets.STRAVA_ACCESS_TOKEN"
98158
98121
  }
@@ -98166,7 +98129,6 @@ var strava = {
98166
98129
 
98167
98130
  // ../../packages/connectors/src/connectors/google-meet.ts
98168
98131
  init_esm_shims();
98169
- var OAUTH_TOKEN_URL10 = "https://oauth2.googleapis.com/token";
98170
98132
  var googleMeet = {
98171
98133
  "google-meet": {
98172
98134
  label: "Google Meet",
@@ -98192,7 +98154,6 @@ var googleMeet = {
98192
98154
  },
98193
98155
  grant: {
98194
98156
  kind: "auth-code",
98195
- tokenUrl: OAUTH_TOKEN_URL10,
98196
98157
  scopes: [
98197
98158
  "https://www.googleapis.com/auth/meetings.space.created",
98198
98159
  // Use meetings.space.readonly (not meetings.conferencerecords.readonly) — confirmed
@@ -98205,7 +98166,6 @@ var googleMeet = {
98205
98166
  },
98206
98167
  access: {
98207
98168
  kind: "refresh-token",
98208
- tokenUrl: OAUTH_TOKEN_URL10,
98209
98169
  envBindings: {
98210
98170
  GOOGLE_MEET_TOKEN: "$secrets.GOOGLE_MEET_ACCESS_TOKEN"
98211
98171
  }
@@ -98219,7 +98179,6 @@ var googleMeet = {
98219
98179
 
98220
98180
  // ../../packages/connectors/src/connectors/hubspot.ts
98221
98181
  init_esm_shims();
98222
- var OAUTH_TOKEN_URL11 = "https://api.hubapi.com/oauth/v1/token";
98223
98182
  var hubspot = {
98224
98183
  hubspot: {
98225
98184
  label: "HubSpot",
@@ -98245,7 +98204,6 @@ var hubspot = {
98245
98204
  },
98246
98205
  grant: {
98247
98206
  kind: "auth-code",
98248
- tokenUrl: OAUTH_TOKEN_URL11,
98249
98207
  scopes: [
98250
98208
  "crm.objects.contacts.read",
98251
98209
  "crm.objects.contacts.write",
@@ -98263,7 +98221,6 @@ var hubspot = {
98263
98221
  },
98264
98222
  access: {
98265
98223
  kind: "refresh-token",
98266
- tokenUrl: OAUTH_TOKEN_URL11,
98267
98224
  envBindings: {
98268
98225
  HUBSPOT_TOKEN: "$secrets.HUBSPOT_ACCESS_TOKEN"
98269
98226
  }
@@ -98277,7 +98234,6 @@ var hubspot = {
98277
98234
 
98278
98235
  // ../../packages/connectors/src/connectors/sentry.ts
98279
98236
  init_esm_shims();
98280
- var OAUTH_TOKEN_URL12 = "https://sentry.io/oauth/token/";
98281
98237
  var sentry = {
98282
98238
  sentry: {
98283
98239
  label: "Sentry",
@@ -98303,7 +98259,6 @@ var sentry = {
98303
98259
  },
98304
98260
  grant: {
98305
98261
  kind: "auth-code",
98306
- tokenUrl: OAUTH_TOKEN_URL12,
98307
98262
  scopes: [
98308
98263
  "org:read",
98309
98264
  "project:read",
@@ -98315,7 +98270,6 @@ var sentry = {
98315
98270
  },
98316
98271
  access: {
98317
98272
  kind: "refresh-token",
98318
- tokenUrl: OAUTH_TOKEN_URL12,
98319
98273
  envBindings: {
98320
98274
  SENTRY_TOKEN: "$secrets.SENTRY_ACCESS_TOKEN"
98321
98275
  }
@@ -98353,7 +98307,6 @@ var todoist = {
98353
98307
  },
98354
98308
  grant: {
98355
98309
  kind: "auth-code",
98356
- tokenUrl: "https://todoist.com/oauth/access_token",
98357
98310
  scopes: ["data:read_write", "data:delete", "project:delete"]
98358
98311
  },
98359
98312
  access: {
@@ -98371,7 +98324,6 @@ var todoist = {
98371
98324
 
98372
98325
  // ../../packages/connectors/src/connectors/xero.ts
98373
98326
  init_esm_shims();
98374
- var OAUTH_TOKEN_URL13 = "https://identity.xero.com/connect/token";
98375
98327
  var xero = {
98376
98328
  xero: {
98377
98329
  label: "Xero",
@@ -98397,7 +98349,6 @@ var xero = {
98397
98349
  },
98398
98350
  grant: {
98399
98351
  kind: "auth-code",
98400
- tokenUrl: OAUTH_TOKEN_URL13,
98401
98352
  scopes: [
98402
98353
  "openid",
98403
98354
  "profile",
@@ -98425,7 +98376,6 @@ var xero = {
98425
98376
  },
98426
98377
  access: {
98427
98378
  kind: "refresh-token",
98428
- tokenUrl: OAUTH_TOKEN_URL13,
98429
98379
  envBindings: {
98430
98380
  XERO_TOKEN: "$secrets.XERO_ACCESS_TOKEN"
98431
98381
  }
@@ -98439,7 +98389,6 @@ var xero = {
98439
98389
 
98440
98390
  // ../../packages/connectors/src/connectors/airtable.ts
98441
98391
  init_esm_shims();
98442
- var OAUTH_TOKEN_URL14 = "https://airtable.com/oauth2/v1/token";
98443
98392
  var airtable = {
98444
98393
  airtable: {
98445
98394
  label: "Airtable",
@@ -98465,7 +98414,6 @@ var airtable = {
98465
98414
  },
98466
98415
  grant: {
98467
98416
  kind: "auth-code",
98468
- tokenUrl: OAUTH_TOKEN_URL14,
98469
98417
  scopes: [
98470
98418
  "data.records:read",
98471
98419
  "data.records:write",
@@ -98478,7 +98426,6 @@ var airtable = {
98478
98426
  },
98479
98427
  access: {
98480
98428
  kind: "refresh-token",
98481
- tokenUrl: OAUTH_TOKEN_URL14,
98482
98429
  envBindings: {
98483
98430
  AIRTABLE_TOKEN: "$secrets.AIRTABLE_ACCESS_TOKEN"
98484
98431
  }
@@ -98497,7 +98444,6 @@ init_esm_shims();
98497
98444
  init_esm_shims();
98498
98445
 
98499
98446
  // ../../packages/connectors/src/connectors/docusign.ts
98500
- var OAUTH_TOKEN_URL15 = "https://account-d.docusign.com/oauth/token";
98501
98447
  var docusign = {
98502
98448
  docusign: {
98503
98449
  label: "DocuSign",
@@ -98524,12 +98470,10 @@ var docusign = {
98524
98470
  },
98525
98471
  grant: {
98526
98472
  kind: "auth-code",
98527
- tokenUrl: OAUTH_TOKEN_URL15,
98528
98473
  scopes: ["signature", "extended", "openid"]
98529
98474
  },
98530
98475
  access: {
98531
98476
  kind: "refresh-token",
98532
- tokenUrl: OAUTH_TOKEN_URL15,
98533
98477
  envBindings: {
98534
98478
  DOCUSIGN_TOKEN: "$secrets.DOCUSIGN_ACCESS_TOKEN"
98535
98479
  }
@@ -98543,7 +98487,6 @@ var docusign = {
98543
98487
 
98544
98488
  // ../../packages/connectors/src/connectors/google-ads.ts
98545
98489
  init_esm_shims();
98546
- var OAUTH_TOKEN_URL16 = "https://oauth2.googleapis.com/token";
98547
98490
  var googleAds = {
98548
98491
  "google-ads": {
98549
98492
  label: "Google Ads",
@@ -98571,7 +98514,6 @@ var googleAds = {
98571
98514
  },
98572
98515
  grant: {
98573
98516
  kind: "auth-code",
98574
- tokenUrl: OAUTH_TOKEN_URL16,
98575
98517
  scopes: [
98576
98518
  "https://www.googleapis.com/auth/adwords",
98577
98519
  "https://www.googleapis.com/auth/userinfo.email"
@@ -98579,7 +98521,6 @@ var googleAds = {
98579
98521
  },
98580
98522
  access: {
98581
98523
  kind: "refresh-token",
98582
- tokenUrl: OAUTH_TOKEN_URL16,
98583
98524
  platformSecrets: ["GOOGLE_ADS_DEVELOPER_TOKEN"],
98584
98525
  envBindings: {
98585
98526
  GOOGLE_ADS_TOKEN: "$secrets.GOOGLE_ADS_ACCESS_TOKEN",
@@ -98633,7 +98574,6 @@ var googleMaps = {
98633
98574
 
98634
98575
  // ../../packages/connectors/src/connectors/gumroad.ts
98635
98576
  init_esm_shims();
98636
- var OAUTH_TOKEN_URL17 = "https://gumroad.com/oauth/token";
98637
98577
  var gumroad = {
98638
98578
  gumroad: {
98639
98579
  label: "Gumroad",
@@ -98660,7 +98600,6 @@ var gumroad = {
98660
98600
  },
98661
98601
  grant: {
98662
98602
  kind: "auth-code",
98663
- tokenUrl: OAUTH_TOKEN_URL17,
98664
98603
  scopes: [
98665
98604
  "view_profile",
98666
98605
  "edit_products",
@@ -98671,7 +98610,6 @@ var gumroad = {
98671
98610
  },
98672
98611
  access: {
98673
98612
  kind: "refresh-token",
98674
- tokenUrl: OAUTH_TOKEN_URL17,
98675
98613
  envBindings: {
98676
98614
  GUMROAD_TOKEN: "$secrets.GUMROAD_ACCESS_TOKEN"
98677
98615
  }
@@ -98710,7 +98648,6 @@ var gumroad = {
98710
98648
 
98711
98649
  // ../../packages/connectors/src/connectors/spotify.ts
98712
98650
  init_esm_shims();
98713
- var OAUTH_TOKEN_URL18 = "https://accounts.spotify.com/api/token";
98714
98651
  var spotify = {
98715
98652
  spotify: {
98716
98653
  label: "Spotify",
@@ -98737,7 +98674,6 @@ var spotify = {
98737
98674
  },
98738
98675
  grant: {
98739
98676
  kind: "auth-code",
98740
- tokenUrl: OAUTH_TOKEN_URL18,
98741
98677
  scopes: [
98742
98678
  "ugc-image-upload",
98743
98679
  "user-read-playback-state",
@@ -98762,7 +98698,6 @@ var spotify = {
98762
98698
  },
98763
98699
  access: {
98764
98700
  kind: "refresh-token",
98765
- tokenUrl: OAUTH_TOKEN_URL18,
98766
98701
  envBindings: {
98767
98702
  SPOTIFY_TOKEN: "$secrets.SPOTIFY_ACCESS_TOKEN"
98768
98703
  }
@@ -98876,7 +98811,6 @@ var agora = {
98876
98811
 
98877
98812
  // ../../packages/connectors/src/connectors/ahrefs.ts
98878
98813
  init_esm_shims();
98879
- var OAUTH_TOKEN_URL19 = "https://app.ahrefs.com/api/token";
98880
98814
  var ahrefs = {
98881
98815
  ahrefs: {
98882
98816
  label: "Ahrefs",
@@ -98903,12 +98837,10 @@ var ahrefs = {
98903
98837
  },
98904
98838
  grant: {
98905
98839
  kind: "auth-code",
98906
- tokenUrl: OAUTH_TOKEN_URL19,
98907
98840
  scopes: ["api"]
98908
98841
  },
98909
98842
  access: {
98910
98843
  kind: "refresh-token",
98911
- tokenUrl: OAUTH_TOKEN_URL19,
98912
98844
  envBindings: {
98913
98845
  AHREFS_TOKEN: "$secrets.AHREFS_ACCESS_TOKEN"
98914
98846
  }
@@ -99277,7 +99209,6 @@ var apollo = {
99277
99209
 
99278
99210
  // ../../packages/connectors/src/connectors/asana.ts
99279
99211
  init_esm_shims();
99280
- var OAUTH_TOKEN_URL20 = "https://app.asana.com/-/oauth_token";
99281
99212
  var asana = {
99282
99213
  asana: {
99283
99214
  label: "Asana",
@@ -99303,12 +99234,10 @@ var asana = {
99303
99234
  },
99304
99235
  grant: {
99305
99236
  kind: "auth-code",
99306
- tokenUrl: OAUTH_TOKEN_URL20,
99307
99237
  scopes: []
99308
99238
  },
99309
99239
  access: {
99310
99240
  kind: "refresh-token",
99311
- tokenUrl: OAUTH_TOKEN_URL20,
99312
99241
  envBindings: {
99313
99242
  ASANA_TOKEN: "$secrets.ASANA_ACCESS_TOKEN"
99314
99243
  }
@@ -99527,7 +99456,6 @@ var axiom = {
99527
99456
 
99528
99457
  // ../../packages/connectors/src/connectors/base44.ts
99529
99458
  init_esm_shims();
99530
- var OAUTH_TOKEN_URL21 = "https://app.base44.com/oauth/token";
99531
99459
  var base44 = {
99532
99460
  base44: {
99533
99461
  label: "Base44",
@@ -99552,13 +99480,10 @@ var base44 = {
99552
99480
  },
99553
99481
  grant: {
99554
99482
  kind: "device-auth",
99555
- deviceAuthUrl: "https://app.base44.com/oauth/device/code",
99556
- tokenUrl: OAUTH_TOKEN_URL21,
99557
99483
  scopes: ["apps:read", "apps:write", "offline"]
99558
99484
  },
99559
99485
  access: {
99560
99486
  kind: "refresh-token",
99561
- tokenUrl: OAUTH_TOKEN_URL21,
99562
99487
  envBindings: {
99563
99488
  BASE44_TOKEN: "$secrets.BASE44_ACCESS_TOKEN"
99564
99489
  }
@@ -100280,7 +100205,6 @@ var calendly = {
100280
100205
 
100281
100206
  // ../../packages/connectors/src/connectors/canva.ts
100282
100207
  init_esm_shims();
100283
- var OAUTH_TOKEN_URL22 = "https://api.canva.com/rest/v1/oauth/token";
100284
100208
  var canva = {
100285
100209
  canva: {
100286
100210
  label: "Canva",
@@ -100307,7 +100231,6 @@ var canva = {
100307
100231
  },
100308
100232
  grant: {
100309
100233
  kind: "auth-code",
100310
- tokenUrl: OAUTH_TOKEN_URL22,
100311
100234
  scopes: [
100312
100235
  "asset:read",
100313
100236
  "asset:write",
@@ -100325,7 +100248,6 @@ var canva = {
100325
100248
  },
100326
100249
  access: {
100327
100250
  kind: "refresh-token",
100328
- tokenUrl: OAUTH_TOKEN_URL22,
100329
100251
  envBindings: {
100330
100252
  CANVA_TOKEN: "$secrets.CANVA_ACCESS_TOKEN"
100331
100253
  }
@@ -100573,7 +100495,6 @@ var clickup = {
100573
100495
 
100574
100496
  // ../../packages/connectors/src/connectors/close.ts
100575
100497
  init_esm_shims();
100576
- var OAUTH_TOKEN_URL23 = "https://api.close.com/oauth2/token/";
100577
100498
  var close2 = {
100578
100499
  close: {
100579
100500
  label: "Close",
@@ -100600,12 +100521,10 @@ var close2 = {
100600
100521
  },
100601
100522
  grant: {
100602
100523
  kind: "auth-code",
100603
- tokenUrl: OAUTH_TOKEN_URL23,
100604
100524
  scopes: ["all.full_access", "offline_access"]
100605
100525
  },
100606
100526
  access: {
100607
100527
  kind: "refresh-token",
100608
- tokenUrl: OAUTH_TOKEN_URL23,
100609
100528
  envBindings: {
100610
100529
  CLOSE_TOKEN: "$secrets.CLOSE_ACCESS_TOKEN"
100611
100530
  }
@@ -100974,7 +100893,6 @@ var db9 = {
100974
100893
 
100975
100894
  // ../../packages/connectors/src/connectors/deel.ts
100976
100895
  init_esm_shims();
100977
- var OAUTH_TOKEN_URL24 = "https://app.deel.com/oauth2/tokens";
100978
100896
  var deel = {
100979
100897
  deel: {
100980
100898
  label: "Deel",
@@ -101001,7 +100919,6 @@ var deel = {
101001
100919
  },
101002
100920
  grant: {
101003
100921
  kind: "auth-code",
101004
- tokenUrl: OAUTH_TOKEN_URL24,
101005
100922
  scopes: [
101006
100923
  "contracts:read",
101007
100924
  "people:read",
@@ -101015,7 +100932,6 @@ var deel = {
101015
100932
  },
101016
100933
  access: {
101017
100934
  kind: "refresh-token",
101018
- tokenUrl: OAUTH_TOKEN_URL24,
101019
100935
  envBindings: {
101020
100936
  DEEL_TOKEN: "$secrets.DEEL_ACCESS_TOKEN"
101021
100937
  }
@@ -101436,7 +101352,6 @@ var drive9 = {
101436
101352
 
101437
101353
  // ../../packages/connectors/src/connectors/dropbox.ts
101438
101354
  init_esm_shims();
101439
- var OAUTH_TOKEN_URL25 = "https://api.dropboxapi.com/oauth2/token";
101440
101355
  var dropbox = {
101441
101356
  dropbox: {
101442
101357
  label: "Dropbox",
@@ -101463,7 +101378,6 @@ var dropbox = {
101463
101378
  },
101464
101379
  grant: {
101465
101380
  kind: "auth-code",
101466
- tokenUrl: OAUTH_TOKEN_URL25,
101467
101381
  scopes: [
101468
101382
  "account_info.read",
101469
101383
  "files.metadata.read",
@@ -101472,7 +101386,6 @@ var dropbox = {
101472
101386
  },
101473
101387
  access: {
101474
101388
  kind: "refresh-token",
101475
- tokenUrl: OAUTH_TOKEN_URL25,
101476
101389
  envBindings: {
101477
101390
  DROPBOX_TOKEN: "$secrets.DROPBOX_ACCESS_TOKEN"
101478
101391
  }
@@ -101901,7 +101814,6 @@ var fal = {
101901
101814
 
101902
101815
  // ../../packages/connectors/src/connectors/figma.ts
101903
101816
  init_esm_shims();
101904
- var OAUTH_TOKEN_URL26 = "https://api.figma.com/v1/oauth/token";
101905
101817
  var figma = {
101906
101818
  figma: {
101907
101819
  label: "Figma",
@@ -101928,7 +101840,6 @@ var figma = {
101928
101840
  },
101929
101841
  grant: {
101930
101842
  kind: "auth-code",
101931
- tokenUrl: OAUTH_TOKEN_URL26,
101932
101843
  scopes: [
101933
101844
  "current_user:read",
101934
101845
  "file_content:read",
@@ -101943,7 +101854,6 @@ var figma = {
101943
101854
  },
101944
101855
  access: {
101945
101856
  kind: "refresh-token",
101946
- tokenUrl: OAUTH_TOKEN_URL26,
101947
101857
  envBindings: {
101948
101858
  FIGMA_TOKEN: "$secrets.FIGMA_ACCESS_TOKEN"
101949
101859
  }
@@ -102178,7 +102088,6 @@ var gamma = {
102178
102088
 
102179
102089
  // ../../packages/connectors/src/connectors/garmin-connect.ts
102180
102090
  init_esm_shims();
102181
- var OAUTH_TOKEN_URL27 = "https://diauth.garmin.com/di-oauth2-service/oauth/token";
102182
102091
  var garminConnect = {
102183
102092
  "garmin-connect": {
102184
102093
  label: "Garmin Connect",
@@ -102208,12 +102117,10 @@ var garminConnect = {
102208
102117
  },
102209
102118
  grant: {
102210
102119
  kind: "auth-code",
102211
- tokenUrl: OAUTH_TOKEN_URL27,
102212
102120
  scopes: []
102213
102121
  },
102214
102122
  access: {
102215
102123
  kind: "refresh-token",
102216
- tokenUrl: OAUTH_TOKEN_URL27,
102217
102124
  envBindings: {
102218
102125
  GARMIN_CONNECT_TOKEN: "$secrets.GARMIN_CONNECT_ACCESS_TOKEN"
102219
102126
  }
@@ -103551,7 +103458,6 @@ var mailchimp = {
103551
103458
  },
103552
103459
  grant: {
103553
103460
  kind: "auth-code",
103554
- tokenUrl: "https://login.mailchimp.com/oauth2/token",
103555
103461
  scopes: []
103556
103462
  },
103557
103463
  access: {
@@ -103826,7 +103732,6 @@ var mem0 = {
103826
103732
 
103827
103733
  // ../../packages/connectors/src/connectors/mercury.ts
103828
103734
  init_esm_shims();
103829
- var OAUTH_TOKEN_URL28 = "https://oauth2.mercury.com/oauth2/token";
103830
103735
  var mercury = {
103831
103736
  mercury: {
103832
103737
  label: "Mercury",
@@ -103853,12 +103758,10 @@ var mercury = {
103853
103758
  },
103854
103759
  grant: {
103855
103760
  kind: "auth-code",
103856
- tokenUrl: OAUTH_TOKEN_URL28,
103857
103761
  scopes: ["offline_access"]
103858
103762
  },
103859
103763
  access: {
103860
103764
  kind: "refresh-token",
103861
- tokenUrl: OAUTH_TOKEN_URL28,
103862
103765
  envBindings: {
103863
103766
  MERCURY_TOKEN: "$secrets.MERCURY_ACCESS_TOKEN"
103864
103767
  }
@@ -103961,7 +103864,6 @@ var metaAds = {
103961
103864
  },
103962
103865
  grant: {
103963
103866
  kind: "auth-code",
103964
- tokenUrl: "https://graph.facebook.com/v22.0/oauth/access_token",
103965
103867
  scopes: ["ads_management", "ads_read", "business_management"]
103966
103868
  },
103967
103869
  access: {
@@ -104205,7 +104107,6 @@ var mixpanel = {
104205
104107
 
104206
104108
  // ../../packages/connectors/src/connectors/monday.ts
104207
104109
  init_esm_shims();
104208
- var OAUTH_TOKEN_URL29 = "https://auth.monday.com/oauth2/token";
104209
104110
  var monday = {
104210
104111
  monday: {
104211
104112
  label: "Monday.com",
@@ -104231,7 +104132,6 @@ var monday = {
104231
104132
  },
104232
104133
  grant: {
104233
104134
  kind: "auth-code",
104234
- tokenUrl: OAUTH_TOKEN_URL29,
104235
104135
  scopes: [
104236
104136
  "me:read",
104237
104137
  "boards:read",
@@ -104251,7 +104151,6 @@ var monday = {
104251
104151
  },
104252
104152
  access: {
104253
104153
  kind: "refresh-token",
104254
- tokenUrl: OAUTH_TOKEN_URL29,
104255
104154
  envBindings: {
104256
104155
  MONDAY_TOKEN: "$secrets.MONDAY_ACCESS_TOKEN"
104257
104156
  }
@@ -104393,7 +104292,6 @@ var n8n = {
104393
104292
 
104394
104293
  // ../../packages/connectors/src/connectors/neon.ts
104395
104294
  init_esm_shims();
104396
- var OAUTH_TOKEN_URL30 = "https://oauth2.neon.tech/oauth2/token";
104397
104295
  var neon = {
104398
104296
  neon: {
104399
104297
  label: "Neon",
@@ -104420,7 +104318,6 @@ var neon = {
104420
104318
  },
104421
104319
  grant: {
104422
104320
  kind: "auth-code",
104423
- tokenUrl: OAUTH_TOKEN_URL30,
104424
104321
  scopes: [
104425
104322
  "openid",
104426
104323
  "offline_access",
@@ -104432,7 +104329,6 @@ var neon = {
104432
104329
  },
104433
104330
  access: {
104434
104331
  kind: "refresh-token",
104435
- tokenUrl: OAUTH_TOKEN_URL30,
104436
104332
  envBindings: {
104437
104333
  NEON_TOKEN: "$secrets.NEON_ACCESS_TOKEN"
104438
104334
  }
@@ -104706,7 +104602,6 @@ var openweather = {
104706
104602
 
104707
104603
  // ../../packages/connectors/src/connectors/outlook-calendar.ts
104708
104604
  init_esm_shims();
104709
- var OAUTH_TOKEN_URL31 = "https://login.microsoftonline.com/common/oauth2/v2.0/token";
104710
104605
  var outlookCalendar = {
104711
104606
  "outlook-calendar": {
104712
104607
  label: "Outlook Calendar",
@@ -104736,12 +104631,10 @@ var outlookCalendar = {
104736
104631
  },
104737
104632
  grant: {
104738
104633
  kind: "auth-code",
104739
- tokenUrl: OAUTH_TOKEN_URL31,
104740
104634
  scopes: ["Calendars.ReadWrite", "User.Read", "offline_access"]
104741
104635
  },
104742
104636
  access: {
104743
104637
  kind: "refresh-token",
104744
- tokenUrl: OAUTH_TOKEN_URL31,
104745
104638
  envBindings: {
104746
104639
  OUTLOOK_CALENDAR_TOKEN: "$secrets.OUTLOOK_CALENDAR_ACCESS_TOKEN"
104747
104640
  }
@@ -104755,7 +104648,6 @@ var outlookCalendar = {
104755
104648
 
104756
104649
  // ../../packages/connectors/src/connectors/outlook-mail.ts
104757
104650
  init_esm_shims();
104758
- var OAUTH_TOKEN_URL32 = "https://login.microsoftonline.com/common/oauth2/v2.0/token";
104759
104651
  var outlookMail = {
104760
104652
  "outlook-mail": {
104761
104653
  label: "Outlook Mail",
@@ -104782,7 +104674,6 @@ var outlookMail = {
104782
104674
  },
104783
104675
  grant: {
104784
104676
  kind: "auth-code",
104785
- tokenUrl: OAUTH_TOKEN_URL32,
104786
104677
  scopes: [
104787
104678
  "Mail.ReadWrite",
104788
104679
  "Mail.Send",
@@ -104792,7 +104683,6 @@ var outlookMail = {
104792
104683
  },
104793
104684
  access: {
104794
104685
  kind: "refresh-token",
104795
- tokenUrl: OAUTH_TOKEN_URL32,
104796
104686
  envBindings: {
104797
104687
  OUTLOOK_MAIL_TOKEN: "$secrets.OUTLOOK_MAIL_ACCESS_TOKEN"
104798
104688
  }
@@ -105341,7 +105231,6 @@ var podchaser = {
105341
105231
 
105342
105232
  // ../../packages/connectors/src/connectors/posthog.ts
105343
105233
  init_esm_shims();
105344
- var OAUTH_TOKEN_URL33 = "https://us.posthog.com/oauth/token";
105345
105234
  var posthog = {
105346
105235
  posthog: {
105347
105236
  label: "PostHog",
@@ -105368,7 +105257,6 @@ var posthog = {
105368
105257
  },
105369
105258
  grant: {
105370
105259
  kind: "auth-code",
105371
- tokenUrl: OAUTH_TOKEN_URL33,
105372
105260
  scopes: [
105373
105261
  "openid",
105374
105262
  "profile",
@@ -105398,7 +105286,6 @@ var posthog = {
105398
105286
  },
105399
105287
  access: {
105400
105288
  kind: "refresh-token",
105401
- tokenUrl: OAUTH_TOKEN_URL33,
105402
105289
  envBindings: {
105403
105290
  POSTHOG_TOKEN: "$secrets.POSTHOG_ACCESS_TOKEN"
105404
105291
  }
@@ -105843,7 +105730,6 @@ var reap = {
105843
105730
 
105844
105731
  // ../../packages/connectors/src/connectors/reddit.ts
105845
105732
  init_esm_shims();
105846
- var OAUTH_TOKEN_URL34 = "https://www.reddit.com/api/v1/access_token";
105847
105733
  var reddit = {
105848
105734
  reddit: {
105849
105735
  label: "Reddit",
@@ -105870,12 +105756,10 @@ var reddit = {
105870
105756
  },
105871
105757
  grant: {
105872
105758
  kind: "auth-code",
105873
- tokenUrl: OAUTH_TOKEN_URL34,
105874
105759
  scopes: ["identity", "read"]
105875
105760
  },
105876
105761
  access: {
105877
105762
  kind: "refresh-token",
105878
- tokenUrl: OAUTH_TOKEN_URL34,
105879
105763
  envBindings: {
105880
105764
  REDDIT_TOKEN: "$secrets.REDDIT_ACCESS_TOKEN"
105881
105765
  }
@@ -106936,7 +106820,6 @@ var streak = {
106936
106820
 
106937
106821
  // ../../packages/connectors/src/connectors/stripe.ts
106938
106822
  init_esm_shims();
106939
- var OAUTH_TOKEN_URL35 = "https://connect.stripe.com/oauth/token";
106940
106823
  var stripe = {
106941
106824
  stripe: {
106942
106825
  label: "Stripe",
@@ -106964,12 +106847,10 @@ var stripe = {
106964
106847
  },
106965
106848
  grant: {
106966
106849
  kind: "auth-code",
106967
- tokenUrl: OAUTH_TOKEN_URL35,
106968
106850
  scopes: ["read_write"]
106969
106851
  },
106970
106852
  access: {
106971
106853
  kind: "refresh-token",
106972
- tokenUrl: OAUTH_TOKEN_URL35,
106973
106854
  envBindings: {
106974
106855
  STRIPE_TOKEN: "$secrets.STRIPE_ACCESS_TOKEN"
106975
106856
  }
@@ -107008,7 +106889,6 @@ var stripe = {
107008
106889
 
107009
106890
  // ../../packages/connectors/src/connectors/supabase.ts
107010
106891
  init_esm_shims();
107011
- var OAUTH_TOKEN_URL36 = "https://api.supabase.com/v1/oauth/token";
107012
106892
  var supabase = {
107013
106893
  supabase: {
107014
106894
  label: "Supabase",
@@ -107035,7 +106915,6 @@ var supabase = {
107035
106915
  },
107036
106916
  grant: {
107037
106917
  kind: "auth-code",
107038
- tokenUrl: OAUTH_TOKEN_URL36,
107039
106918
  scopes: [
107040
106919
  "organizations:read",
107041
106920
  "projects:read",
@@ -107053,7 +106932,6 @@ var supabase = {
107053
106932
  },
107054
106933
  access: {
107055
106934
  kind: "refresh-token",
107056
- tokenUrl: OAUTH_TOKEN_URL36,
107057
106935
  envBindings: {
107058
106936
  SUPABASE_TOKEN: "$secrets.SUPABASE_ACCESS_TOKEN"
107059
106937
  }
@@ -107206,7 +107084,6 @@ var tavily = {
107206
107084
 
107207
107085
  // ../../packages/connectors/src/connectors/test-oauth.ts
107208
107086
  init_esm_shims();
107209
- var OAUTH_TOKEN_URL37 = "/api/test/oauth-provider/token";
107210
107087
  var TEST_OAUTH_CLIENT = {
107211
107088
  clientRegistration: "static",
107212
107089
  clientType: "confidential",
@@ -107215,7 +107092,6 @@ var TEST_OAUTH_CLIENT = {
107215
107092
  };
107216
107093
  var TEST_OAUTH_AUTH_CODE_GRANT = {
107217
107094
  kind: "auth-code",
107218
- tokenUrl: OAUTH_TOKEN_URL37,
107219
107095
  scopes: ["read"]
107220
107096
  };
107221
107097
  var TEST_OAUTH_REVOKE = { kind: "none" };
@@ -107241,7 +107117,6 @@ var testOauth = {
107241
107117
  grant: TEST_OAUTH_AUTH_CODE_GRANT,
107242
107118
  access: {
107243
107119
  kind: "refresh-token",
107244
- tokenUrl: OAUTH_TOKEN_URL37,
107245
107120
  envBindings: {
107246
107121
  TEST_OAUTH_TOKEN: "$secrets.TEST_OAUTH_ACCESS_TOKEN"
107247
107122
  }
@@ -107267,7 +107142,6 @@ var testOauth = {
107267
107142
  grant: TEST_OAUTH_AUTH_CODE_GRANT,
107268
107143
  access: {
107269
107144
  kind: "refresh-token",
107270
- tokenUrl: OAUTH_TOKEN_URL37,
107271
107145
  envBindings: {
107272
107146
  TEST_OAUTH_TOKEN: "$secrets.TEST_OAUTH_API_ACCESS_TOKEN"
107273
107147
  }
@@ -107305,8 +107179,6 @@ var testOauthDevice = {
107305
107179
  },
107306
107180
  grant: {
107307
107181
  kind: "device-auth",
107308
- deviceAuthUrl: "/api/test/oauth-provider/device/code",
107309
- tokenUrl: "/api/test/oauth-provider/token",
107310
107182
  scopes: ["read"]
107311
107183
  },
107312
107184
  access: {
@@ -107335,8 +107207,6 @@ var testOauthDevice = {
107335
107207
  },
107336
107208
  grant: {
107337
107209
  kind: "device-auth",
107338
- deviceAuthUrl: "/api/test/oauth-provider/device/code",
107339
- tokenUrl: "/api/test/oauth-provider/token",
107340
107210
  scopes: ["read"]
107341
107211
  },
107342
107212
  access: {
@@ -107783,7 +107653,6 @@ var webflow = {
107783
107653
  },
107784
107654
  grant: {
107785
107655
  kind: "auth-code",
107786
- tokenUrl: "https://api.webflow.com/oauth/access_token",
107787
107656
  scopes: [
107788
107657
  "authorized_user:read",
107789
107658
  "sites:read",
@@ -108283,7 +108152,6 @@ var zeptomail = {
108283
108152
 
108284
108153
  // ../../packages/connectors/src/connectors/zoom.ts
108285
108154
  init_esm_shims();
108286
- var OAUTH_TOKEN_URL38 = "https://zoom.us/oauth/token";
108287
108155
  var zoom = {
108288
108156
  zoom: {
108289
108157
  label: "Zoom",
@@ -108310,7 +108178,6 @@ var zoom = {
108310
108178
  },
108311
108179
  grant: {
108312
108180
  kind: "auth-code",
108313
- tokenUrl: OAUTH_TOKEN_URL38,
108314
108181
  scopes: [
108315
108182
  "user:read:user",
108316
108183
  "meeting:read:list_meetings",
@@ -108330,7 +108197,6 @@ var zoom = {
108330
108197
  },
108331
108198
  access: {
108332
108199
  kind: "refresh-token",
108333
- tokenUrl: OAUTH_TOKEN_URL38,
108334
108200
  envBindings: {
108335
108201
  ZOOM_TOKEN: "$secrets.ZOOM_ACCESS_TOKEN"
108336
108202
  }
@@ -134213,9 +134079,9 @@ var FEATURE_SWITCHES = {
134213
134079
  description: "Enable audio output in chat (TTS read-aloud + auto-read) \u2014 gates the volume/read buttons and the /api/zero/voice-io/tts route",
134214
134080
  enabled: false
134215
134081
  },
134216
- ["orgSkills" /* OrgSkills */]: {
134082
+ ["skillsViewer" /* SkillsViewer */]: {
134217
134083
  maintainer: "lancy@vm0.ai",
134218
- description: "Show the organization custom skills library in the Zero sidebar and page UI",
134084
+ description: "Show the skills viewer in the Zero sidebar and page UI",
134219
134085
  enabled: false,
134220
134086
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
134221
134087
  },
@@ -134229,11 +134095,6 @@ var FEATURE_SWITCHES = {
134229
134095
  description: "Replace the Invite people button in the agent chat page header with a New button that creates a new chat thread",
134230
134096
  enabled: false
134231
134097
  },
134232
- ["chatMessageStartButton" /* ChatMessageStartButton */]: {
134233
- maintainer: "linghan@vm0.ai",
134234
- description: "Show an icon button in assistant message group actions that scrolls back to the start of that message group.",
134235
- enabled: false
134236
- },
134237
134098
  ["chatThreadRename" /* ChatThreadRename */]: {
134238
134099
  maintainer: "ethan@vm0.ai",
134239
134100
  description: "Adds a Rename chat item to the sidebar thread kebab menu. When the user renames a thread, automated title generation is suppressed for that thread.",
@@ -134294,11 +134155,6 @@ var FEATURE_SWITCHES = {
134294
134155
  enabled: false,
134295
134156
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
134296
134157
  },
134297
- ["chatScrollToBottomButton" /* ChatScrollToBottomButton */]: {
134298
- maintainer: "ethan@vm0.ai",
134299
- description: "Show a floating scroll-to-bottom button in the bottom-right of the chat thread (above the composer) whenever the message list is scrolled away from the bottom. Clicking it jumps to the latest message.",
134300
- enabled: true
134301
- },
134302
134158
  ["memoryViewer" /* MemoryViewer */]: {
134303
134159
  maintainer: "lancy@vm0.ai",
134304
134160
  description: "Show the read-only memory viewer page in the Zero sidebar and at /memory, listing the files in the user's memory artifact.",
@@ -135864,4 +135720,4 @@ undici/lib/web/fetch/body.js:
135864
135720
  undici/lib/web/websocket/frame.js:
135865
135721
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
135866
135722
  */
135867
- //# sourceMappingURL=chunk-ETF2LZ4O.js.map
135723
+ //# sourceMappingURL=chunk-FKVYVQUG.js.map