@vm0/cli 9.200.0 → 9.200.1

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.
@@ -72936,7 +72936,7 @@ if (DSN) {
72936
72936
  init2({
72937
72937
  dsn: DSN,
72938
72938
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
72939
- release: "9.200.0",
72939
+ release: "9.200.1",
72940
72940
  sendDefaultPii: false,
72941
72941
  tracesSampleRate: 0,
72942
72942
  shutdownTimeout: 500,
@@ -72955,7 +72955,7 @@ if (DSN) {
72955
72955
  }
72956
72956
  });
72957
72957
  setContext("cli", {
72958
- version: "9.200.0",
72958
+ version: "9.200.1",
72959
72959
  command: process.argv.slice(2).join(" ")
72960
72960
  });
72961
72961
  setContext("runtime", {
@@ -148601,606 +148601,255 @@ var googleDriveFirewall = {
148601
148601
  base: "https://www.googleapis.com/drive",
148602
148602
  auth: {
148603
148603
  headers: {
148604
- "Authorization": "Bearer ${{ secrets.GOOGLE_DRIVE_TOKEN }}"
148604
+ Authorization: "Bearer ${{ secrets.GOOGLE_DRIVE_TOKEN }}"
148605
148605
  }
148606
148606
  },
148607
148607
  permissions: [
148608
148608
  {
148609
- name: "drive",
148610
- description: "See, edit, create, and delete all of your Google Drive files",
148609
+ name: "about.read",
148610
+ description: "Read Drive account and storage metadata.",
148611
148611
  rules: [
148612
148612
  "GET /v2/about",
148613
+ "GET /v3/about"
148614
+ ]
148615
+ },
148616
+ {
148617
+ name: "apps.read",
148618
+ description: "Read Drive apps authorized for the user.",
148619
+ rules: [
148620
+ "GET /v2/apps",
148613
148621
  "GET /v2/apps/{appId}",
148622
+ "GET /v3/apps",
148623
+ "GET /v3/apps/{appId}"
148624
+ ]
148625
+ },
148626
+ {
148627
+ name: "changes.read",
148628
+ description: "Read Drive change logs and page tokens.",
148629
+ rules: [
148614
148630
  "GET /v2/changes",
148615
148631
  "GET /v2/changes/startPageToken",
148616
- "POST /v2/changes/watch",
148617
148632
  "GET /v2/changes/{changeId}",
148633
+ "GET /v3/changes",
148634
+ "GET /v3/changes/startPageToken"
148635
+ ]
148636
+ },
148637
+ {
148638
+ name: "channels.write",
148639
+ description: "Create and stop Drive notification channels.",
148640
+ rules: [
148641
+ "POST /v2/changes/watch",
148618
148642
  "POST /v2/channels/stop",
148619
- "GET /v2/drives",
148620
- "POST /v2/drives",
148621
- "GET /v2/drives/{driveId}",
148622
- "PUT /v2/drives/{driveId}",
148623
- "DELETE /v2/drives/{driveId}",
148624
- "POST /v2/drives/{driveId}/hide",
148625
- "POST /v2/drives/{driveId}/unhide",
148626
- "GET /v2/files",
148627
- "POST /v2/files",
148628
- "GET /v2/files/generateCseToken",
148629
- "GET /v2/files/generateIds",
148630
- "DELETE /v2/files/trash",
148631
- "GET /v2/files/{fileId}",
148632
- "PUT /v2/files/{fileId}",
148633
- "PATCH /v2/files/{fileId}",
148634
- "DELETE /v2/files/{fileId}",
148643
+ "POST /v2/files/{fileId}/watch",
148644
+ "POST /v3/changes/watch",
148645
+ "POST /v3/channels/stop",
148646
+ "POST /v3/files/{fileId}/watch"
148647
+ ]
148648
+ },
148649
+ {
148650
+ name: "comments.read",
148651
+ description: "Read Drive file comments.",
148652
+ rules: [
148635
148653
  "GET /v2/files/{fileId}/comments",
148636
- "POST /v2/files/{fileId}/comments",
148637
148654
  "GET /v2/files/{fileId}/comments/{commentId}",
148655
+ "GET /v3/files/{fileId}/comments",
148656
+ "GET /v3/files/{fileId}/comments/{commentId}"
148657
+ ]
148658
+ },
148659
+ {
148660
+ name: "comments.write",
148661
+ description: "Create, update, and delete Drive file comments.",
148662
+ rules: [
148663
+ "POST /v2/files/{fileId}/comments",
148638
148664
  "PUT /v2/files/{fileId}/comments/{commentId}",
148639
148665
  "PATCH /v2/files/{fileId}/comments/{commentId}",
148640
148666
  "DELETE /v2/files/{fileId}/comments/{commentId}",
148641
- "GET /v2/files/{fileId}/comments/{commentId}/replies",
148642
- "POST /v2/files/{fileId}/comments/{commentId}/replies",
148643
- "GET /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148644
- "PUT /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148645
- "PATCH /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148646
- "DELETE /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148647
- "POST /v2/files/{fileId}/copy",
148648
- "GET /v2/files/{fileId}/export",
148649
- "GET /v2/files/{fileId}/listLabels",
148650
- "POST /v2/files/{fileId}/modifyLabels",
148651
- "GET /v2/files/{fileId}/parents",
148652
- "POST /v2/files/{fileId}/parents",
148653
- "GET /v2/files/{fileId}/parents/{parentId}",
148654
- "DELETE /v2/files/{fileId}/parents/{parentId}",
148655
- "GET /v2/files/{fileId}/permissions",
148656
- "POST /v2/files/{fileId}/permissions",
148657
- "GET /v2/files/{fileId}/permissions/{permissionId}",
148658
- "PUT /v2/files/{fileId}/permissions/{permissionId}",
148659
- "PATCH /v2/files/{fileId}/permissions/{permissionId}",
148660
- "DELETE /v2/files/{fileId}/permissions/{permissionId}",
148661
- "GET /v2/files/{fileId}/properties",
148662
- "POST /v2/files/{fileId}/properties",
148663
- "GET /v2/files/{fileId}/properties/{propertyKey}",
148664
- "PUT /v2/files/{fileId}/properties/{propertyKey}",
148665
- "PATCH /v2/files/{fileId}/properties/{propertyKey}",
148666
- "DELETE /v2/files/{fileId}/properties/{propertyKey}",
148667
- "GET /v2/files/{fileId}/revisions",
148668
- "GET /v2/files/{fileId}/revisions/{revisionId}",
148669
- "PUT /v2/files/{fileId}/revisions/{revisionId}",
148670
- "PATCH /v2/files/{fileId}/revisions/{revisionId}",
148671
- "DELETE /v2/files/{fileId}/revisions/{revisionId}",
148672
- "POST /v2/files/{fileId}/touch",
148673
- "POST /v2/files/{fileId}/trash",
148674
- "POST /v2/files/{fileId}/untrash",
148675
- "POST /v2/files/{fileId}/watch",
148676
- "GET /v2/files/{folderId}/children",
148677
- "POST /v2/files/{folderId}/children",
148678
- "GET /v2/files/{folderId}/children/{childId}",
148679
- "DELETE /v2/files/{folderId}/children/{childId}",
148680
- "GET /v2/permissionIds/{email}",
148667
+ "POST /v3/files/{fileId}/comments",
148668
+ "PATCH /v3/files/{fileId}/comments/{commentId}",
148669
+ "DELETE /v3/files/{fileId}/comments/{commentId}"
148670
+ ]
148671
+ },
148672
+ {
148673
+ name: "drives.delete",
148674
+ description: "Delete shared drives and team drives.",
148675
+ rules: [
148676
+ "DELETE /v2/drives/{driveId}",
148677
+ "DELETE /v2/teamdrives/{teamDriveId}",
148678
+ "DELETE /v3/drives/{driveId}",
148679
+ "DELETE /v3/teamdrives/{teamDriveId}"
148680
+ ]
148681
+ },
148682
+ {
148683
+ name: "drives.read",
148684
+ description: "Read shared drive and team drive metadata.",
148685
+ rules: [
148686
+ "GET /v2/drives",
148687
+ "GET /v2/drives/{driveId}",
148681
148688
  "GET /v2/teamdrives",
148682
- "POST /v2/teamdrives",
148683
148689
  "GET /v2/teamdrives/{teamDriveId}",
148684
- "PUT /v2/teamdrives/{teamDriveId}",
148685
- "DELETE /v2/teamdrives/{teamDriveId}",
148686
- "GET /v3/about",
148687
- "GET /v3/apps/{appId}",
148688
- "GET /v3/changes",
148689
- "GET /v3/changes/startPageToken",
148690
- "POST /v3/changes/watch",
148691
- "POST /v3/channels/stop",
148692
148690
  "GET /v3/drives",
148693
- "POST /v3/drives",
148694
148691
  "GET /v3/drives/{driveId}",
148692
+ "GET /v3/teamdrives",
148693
+ "GET /v3/teamdrives/{teamDriveId}"
148694
+ ]
148695
+ },
148696
+ {
148697
+ name: "drives.write",
148698
+ description: "Create, update, hide, and unhide shared drives.",
148699
+ rules: [
148700
+ "POST /v2/drives",
148701
+ "PUT /v2/drives/{driveId}",
148702
+ "POST /v2/drives/{driveId}/hide",
148703
+ "POST /v2/drives/{driveId}/unhide",
148704
+ "POST /v2/teamdrives",
148705
+ "PUT /v2/teamdrives/{teamDriveId}",
148706
+ "POST /v3/drives",
148695
148707
  "PATCH /v3/drives/{driveId}",
148696
- "DELETE /v3/drives/{driveId}",
148697
148708
  "POST /v3/drives/{driveId}/hide",
148698
148709
  "POST /v3/drives/{driveId}/unhide",
148699
- "GET /v3/files",
148700
- "POST /v3/files",
148701
- "GET /v3/files/generateCseToken",
148702
- "GET /v3/files/generateIds",
148703
- "DELETE /v3/files/trash",
148704
- "GET /v3/files/{fileId}",
148705
- "PATCH /v3/files/{fileId}",
148706
- "DELETE /v3/files/{fileId}",
148707
- "GET /v3/files/{fileId}/accessproposals",
148708
- "GET /v3/files/{fileId}/accessproposals/{proposalId}",
148709
- "POST /v3/files/{fileId}/accessproposals/{proposalId}:resolve",
148710
- "GET /v3/files/{fileId}/approvals",
148711
- "GET /v3/files/{fileId}/approvals/{approvalId}",
148712
- "GET /v3/files/{fileId}/comments",
148713
- "POST /v3/files/{fileId}/comments",
148714
- "GET /v3/files/{fileId}/comments/{commentId}",
148715
- "PATCH /v3/files/{fileId}/comments/{commentId}",
148716
- "DELETE /v3/files/{fileId}/comments/{commentId}",
148717
- "GET /v3/files/{fileId}/comments/{commentId}/replies",
148718
- "POST /v3/files/{fileId}/comments/{commentId}/replies",
148719
- "GET /v3/files/{fileId}/comments/{commentId}/replies/{replyId}",
148720
- "PATCH /v3/files/{fileId}/comments/{commentId}/replies/{replyId}",
148721
- "DELETE /v3/files/{fileId}/comments/{commentId}/replies/{replyId}",
148722
- "POST /v3/files/{fileId}/copy",
148723
- "POST /v3/files/{fileId}/download",
148724
- "GET /v3/files/{fileId}/export",
148725
- "GET /v3/files/{fileId}/listLabels",
148726
- "POST /v3/files/{fileId}/modifyLabels",
148727
- "GET /v3/files/{fileId}/permissions",
148728
- "POST /v3/files/{fileId}/permissions",
148729
- "GET /v3/files/{fileId}/permissions/{permissionId}",
148730
- "PATCH /v3/files/{fileId}/permissions/{permissionId}",
148731
- "DELETE /v3/files/{fileId}/permissions/{permissionId}",
148732
- "GET /v3/files/{fileId}/revisions",
148733
- "GET /v3/files/{fileId}/revisions/{revisionId}",
148734
- "PATCH /v3/files/{fileId}/revisions/{revisionId}",
148735
- "DELETE /v3/files/{fileId}/revisions/{revisionId}",
148736
- "POST /v3/files/{fileId}/watch",
148737
- "GET /v3/operations/{name}",
148738
- "GET /v3/teamdrives",
148739
148710
  "POST /v3/teamdrives",
148740
- "GET /v3/teamdrives/{teamDriveId}",
148741
- "PATCH /v3/teamdrives/{teamDriveId}",
148742
- "DELETE /v3/teamdrives/{teamDriveId}"
148711
+ "PATCH /v3/teamdrives/{teamDriveId}"
148743
148712
  ]
148744
148713
  },
148745
148714
  {
148746
- name: "drive.appdata",
148747
- description: "See, create, and delete its own configuration data in your Google Drive",
148715
+ name: "files.delete",
148716
+ description: "Delete, trash, untrash, and empty trashed Drive files.",
148717
+ rules: [
148718
+ "DELETE /v2/files/trash",
148719
+ "DELETE /v2/files/{fileId}",
148720
+ "POST /v2/files/{fileId}/trash",
148721
+ "POST /v2/files/{fileId}/untrash",
148722
+ "DELETE /v3/files/trash",
148723
+ "DELETE /v3/files/{fileId}"
148724
+ ]
148725
+ },
148726
+ {
148727
+ name: "files.read",
148728
+ description: "Read Drive files, file metadata, labels, and content.",
148748
148729
  rules: [
148749
- "GET /v2/about",
148750
- "GET /v2/apps/{appId}",
148751
- "GET /v2/changes",
148752
- "GET /v2/changes/startPageToken",
148753
- "POST /v2/changes/watch",
148754
- "GET /v2/changes/{changeId}",
148755
- "POST /v2/channels/stop",
148756
148730
  "GET /v2/files",
148757
- "POST /v2/files",
148731
+ "GET /v2/files/generateCseToken",
148758
148732
  "GET /v2/files/generateIds",
148759
148733
  "GET /v2/files/{fileId}",
148760
- "PUT /v2/files/{fileId}",
148761
- "PATCH /v2/files/{fileId}",
148762
- "DELETE /v2/files/{fileId}",
148763
- "POST /v2/files/{fileId}/copy",
148734
+ "GET /v2/files/{fileId}/export",
148735
+ "GET /v2/files/{fileId}/listLabels",
148764
148736
  "GET /v2/files/{fileId}/parents",
148765
- "POST /v2/files/{fileId}/parents",
148766
148737
  "GET /v2/files/{fileId}/parents/{parentId}",
148767
148738
  "GET /v2/files/{fileId}/properties",
148768
- "POST /v2/files/{fileId}/properties",
148769
148739
  "GET /v2/files/{fileId}/properties/{propertyKey}",
148770
- "PUT /v2/files/{fileId}/properties/{propertyKey}",
148771
- "PATCH /v2/files/{fileId}/properties/{propertyKey}",
148772
- "DELETE /v2/files/{fileId}/properties/{propertyKey}",
148773
- "GET /v2/files/{fileId}/revisions",
148774
- "GET /v2/files/{fileId}/revisions/{revisionId}",
148775
- "PUT /v2/files/{fileId}/revisions/{revisionId}",
148776
- "PATCH /v2/files/{fileId}/revisions/{revisionId}",
148777
- "DELETE /v2/files/{fileId}/revisions/{revisionId}",
148778
- "POST /v2/files/{fileId}/touch",
148779
- "POST /v2/files/{fileId}/trash",
148780
- "POST /v2/files/{fileId}/untrash",
148781
- "POST /v2/files/{fileId}/watch",
148782
148740
  "GET /v2/files/{folderId}/children",
148783
- "POST /v2/files/{folderId}/children",
148784
148741
  "GET /v2/files/{folderId}/children/{childId}",
148785
- "GET /v2/permissionIds/{email}",
148786
- "GET /v3/about",
148787
- "GET /v3/apps/{appId}",
148788
- "GET /v3/changes",
148789
- "GET /v3/changes/startPageToken",
148790
- "POST /v3/changes/watch",
148791
- "POST /v3/channels/stop",
148792
148742
  "GET /v3/files",
148793
- "POST /v3/files",
148743
+ "GET /v3/files/generateCseToken",
148794
148744
  "GET /v3/files/generateIds",
148795
148745
  "GET /v3/files/{fileId}",
148796
- "PATCH /v3/files/{fileId}",
148797
- "DELETE /v3/files/{fileId}",
148798
148746
  "GET /v3/files/{fileId}/approvals",
148799
148747
  "GET /v3/files/{fileId}/approvals/{approvalId}",
148800
- "POST /v3/files/{fileId}/copy",
148801
- "GET /v3/files/{fileId}/revisions",
148802
- "GET /v3/files/{fileId}/revisions/{revisionId}",
148803
- "PATCH /v3/files/{fileId}/revisions/{revisionId}",
148804
- "DELETE /v3/files/{fileId}/revisions/{revisionId}",
148805
- "POST /v3/files/{fileId}/watch"
148748
+ "POST /v3/files/{fileId}/download",
148749
+ "GET /v3/files/{fileId}/export",
148750
+ "GET /v3/files/{fileId}/listLabels"
148806
148751
  ]
148807
148752
  },
148808
148753
  {
148809
- name: "drive.apps.readonly",
148810
- description: "View your Google Drive apps",
148754
+ name: "files.share",
148755
+ description: "Read and manage Drive file permissions and access requests.",
148811
148756
  rules: [
148812
- "GET /v2/apps",
148813
- "GET /v2/apps/{appId}",
148814
- "GET /v2/changes",
148815
- "GET /v2/changes/startPageToken",
148816
- "POST /v2/changes/watch",
148817
- "GET /v2/changes/{changeId}",
148818
- "POST /v2/channels/stop",
148819
- "GET /v2/files",
148820
- "POST /v2/files",
148821
- "PUT /v2/files/{fileId}",
148822
- "PATCH /v2/files/{fileId}",
148823
- "POST /v2/files/{fileId}/copy",
148824
- "POST /v2/files/{fileId}/touch",
148825
- "POST /v2/files/{fileId}/trash",
148826
- "POST /v2/files/{fileId}/untrash",
148757
+ "GET /v2/files/{fileId}/permissions",
148758
+ "POST /v2/files/{fileId}/permissions",
148759
+ "GET /v2/files/{fileId}/permissions/{permissionId}",
148760
+ "PUT /v2/files/{fileId}/permissions/{permissionId}",
148761
+ "PATCH /v2/files/{fileId}/permissions/{permissionId}",
148762
+ "DELETE /v2/files/{fileId}/permissions/{permissionId}",
148827
148763
  "GET /v2/permissionIds/{email}",
148828
- "GET /v3/apps",
148829
- "GET /v3/apps/{appId}"
148764
+ "GET /v3/files/{fileId}/accessproposals",
148765
+ "GET /v3/files/{fileId}/accessproposals/{proposalId}",
148766
+ "POST /v3/files/{fileId}/accessproposals/{proposalId}:resolve",
148767
+ "GET /v3/files/{fileId}/permissions",
148768
+ "POST /v3/files/{fileId}/permissions",
148769
+ "GET /v3/files/{fileId}/permissions/{permissionId}",
148770
+ "PATCH /v3/files/{fileId}/permissions/{permissionId}",
148771
+ "DELETE /v3/files/{fileId}/permissions/{permissionId}"
148830
148772
  ]
148831
148773
  },
148832
148774
  {
148833
- name: "drive.file",
148834
- description: "See, edit, create, and delete only the specific Google Drive files you use with this app",
148775
+ name: "files.write",
148776
+ description: "Create, update, upload, copy, organize, and label files.",
148835
148777
  rules: [
148836
- "GET /v2/about",
148837
- "GET /v2/apps/{appId}",
148838
- "GET /v2/changes",
148839
- "GET /v2/changes/startPageToken",
148840
- "POST /v2/changes/watch",
148841
- "GET /v2/changes/{changeId}",
148842
- "POST /v2/channels/stop",
148843
- "GET /v2/files",
148844
148778
  "POST /v2/files",
148845
- "GET /v2/files/generateIds",
148846
- "GET /v2/files/{fileId}",
148847
148779
  "PUT /v2/files/{fileId}",
148848
148780
  "PATCH /v2/files/{fileId}",
148849
- "DELETE /v2/files/{fileId}",
148850
- "GET /v2/files/{fileId}/comments",
148851
- "POST /v2/files/{fileId}/comments",
148852
- "GET /v2/files/{fileId}/comments/{commentId}",
148853
- "PUT /v2/files/{fileId}/comments/{commentId}",
148854
- "PATCH /v2/files/{fileId}/comments/{commentId}",
148855
- "DELETE /v2/files/{fileId}/comments/{commentId}",
148856
- "GET /v2/files/{fileId}/comments/{commentId}/replies",
148857
- "POST /v2/files/{fileId}/comments/{commentId}/replies",
148858
- "GET /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148859
- "PUT /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148860
- "PATCH /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148861
- "DELETE /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148862
148781
  "POST /v2/files/{fileId}/copy",
148863
- "GET /v2/files/{fileId}/export",
148864
- "GET /v2/files/{fileId}/listLabels",
148865
148782
  "POST /v2/files/{fileId}/modifyLabels",
148866
- "GET /v2/files/{fileId}/parents",
148867
148783
  "POST /v2/files/{fileId}/parents",
148868
- "GET /v2/files/{fileId}/parents/{parentId}",
148869
148784
  "DELETE /v2/files/{fileId}/parents/{parentId}",
148870
- "GET /v2/files/{fileId}/permissions",
148871
- "POST /v2/files/{fileId}/permissions",
148872
- "GET /v2/files/{fileId}/permissions/{permissionId}",
148873
- "PUT /v2/files/{fileId}/permissions/{permissionId}",
148874
- "PATCH /v2/files/{fileId}/permissions/{permissionId}",
148875
- "DELETE /v2/files/{fileId}/permissions/{permissionId}",
148876
- "GET /v2/files/{fileId}/properties",
148877
148785
  "POST /v2/files/{fileId}/properties",
148878
- "GET /v2/files/{fileId}/properties/{propertyKey}",
148879
148786
  "PUT /v2/files/{fileId}/properties/{propertyKey}",
148880
148787
  "PATCH /v2/files/{fileId}/properties/{propertyKey}",
148881
148788
  "DELETE /v2/files/{fileId}/properties/{propertyKey}",
148882
- "GET /v2/files/{fileId}/revisions",
148883
- "GET /v2/files/{fileId}/revisions/{revisionId}",
148884
- "PUT /v2/files/{fileId}/revisions/{revisionId}",
148885
- "PATCH /v2/files/{fileId}/revisions/{revisionId}",
148886
- "DELETE /v2/files/{fileId}/revisions/{revisionId}",
148887
148789
  "POST /v2/files/{fileId}/touch",
148888
- "POST /v2/files/{fileId}/trash",
148889
- "POST /v2/files/{fileId}/untrash",
148890
- "POST /v2/files/{fileId}/watch",
148891
- "GET /v2/files/{folderId}/children",
148892
148790
  "POST /v2/files/{folderId}/children",
148893
- "GET /v2/files/{folderId}/children/{childId}",
148894
148791
  "DELETE /v2/files/{folderId}/children/{childId}",
148895
- "GET /v2/permissionIds/{email}",
148896
- "GET /v3/about",
148897
- "GET /v3/apps/{appId}",
148898
- "GET /v3/changes",
148899
- "GET /v3/changes/startPageToken",
148900
- "POST /v3/changes/watch",
148901
- "POST /v3/channels/stop",
148902
- "GET /v3/files",
148903
148792
  "POST /v3/files",
148904
- "GET /v3/files/generateIds",
148905
- "GET /v3/files/{fileId}",
148906
148793
  "PATCH /v3/files/{fileId}",
148907
- "DELETE /v3/files/{fileId}",
148908
- "GET /v3/files/{fileId}/accessproposals",
148909
- "GET /v3/files/{fileId}/accessproposals/{proposalId}",
148910
- "POST /v3/files/{fileId}/accessproposals/{proposalId}:resolve",
148911
- "GET /v3/files/{fileId}/approvals",
148912
- "GET /v3/files/{fileId}/approvals/{approvalId}",
148913
- "GET /v3/files/{fileId}/comments",
148914
- "POST /v3/files/{fileId}/comments",
148915
- "GET /v3/files/{fileId}/comments/{commentId}",
148916
- "PATCH /v3/files/{fileId}/comments/{commentId}",
148917
- "DELETE /v3/files/{fileId}/comments/{commentId}",
148918
- "GET /v3/files/{fileId}/comments/{commentId}/replies",
148919
- "POST /v3/files/{fileId}/comments/{commentId}/replies",
148920
- "GET /v3/files/{fileId}/comments/{commentId}/replies/{replyId}",
148921
- "PATCH /v3/files/{fileId}/comments/{commentId}/replies/{replyId}",
148922
- "DELETE /v3/files/{fileId}/comments/{commentId}/replies/{replyId}",
148923
148794
  "POST /v3/files/{fileId}/copy",
148924
- "POST /v3/files/{fileId}/download",
148925
- "GET /v3/files/{fileId}/export",
148926
- "GET /v3/files/{fileId}/listLabels",
148927
- "POST /v3/files/{fileId}/modifyLabels",
148928
- "GET /v3/files/{fileId}/permissions",
148929
- "POST /v3/files/{fileId}/permissions",
148930
- "GET /v3/files/{fileId}/permissions/{permissionId}",
148931
- "PATCH /v3/files/{fileId}/permissions/{permissionId}",
148932
- "DELETE /v3/files/{fileId}/permissions/{permissionId}",
148933
- "GET /v3/files/{fileId}/revisions",
148934
- "GET /v3/files/{fileId}/revisions/{revisionId}",
148935
- "PATCH /v3/files/{fileId}/revisions/{revisionId}",
148936
- "DELETE /v3/files/{fileId}/revisions/{revisionId}",
148937
- "POST /v3/files/{fileId}/watch",
148938
- "GET /v3/operations/{name}"
148795
+ "POST /v3/files/{fileId}/modifyLabels"
148939
148796
  ]
148940
148797
  },
148941
148798
  {
148942
- name: "drive.meet.readonly",
148943
- description: "See and download your Google Drive files that were created or edited by Google Meet.",
148799
+ name: "operations.read",
148800
+ description: "Read long-running Drive operations.",
148944
148801
  rules: [
148945
- "GET /v2/changes",
148946
- "GET /v2/changes/startPageToken",
148947
- "POST /v2/changes/watch",
148948
- "GET /v2/changes/{changeId}",
148949
- "POST /v2/channels/stop",
148950
- "GET /v2/files",
148951
- "GET /v2/files/{fileId}",
148952
- "GET /v2/files/{fileId}/comments",
148953
- "GET /v2/files/{fileId}/comments/{commentId}",
148954
- "GET /v2/files/{fileId}/comments/{commentId}/replies",
148955
- "GET /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148956
- "GET /v2/files/{fileId}/export",
148957
- "GET /v2/files/{fileId}/listLabels",
148958
- "GET /v2/files/{fileId}/parents",
148959
- "GET /v2/files/{fileId}/parents/{parentId}",
148960
- "GET /v2/files/{fileId}/permissions",
148961
- "GET /v2/files/{fileId}/permissions/{permissionId}",
148962
- "GET /v2/files/{fileId}/properties",
148963
- "GET /v2/files/{fileId}/properties/{propertyKey}",
148964
- "GET /v2/files/{fileId}/revisions",
148965
- "GET /v2/files/{fileId}/revisions/{revisionId}",
148966
- "POST /v2/files/{fileId}/watch",
148967
- "GET /v2/files/{folderId}/children",
148968
- "GET /v2/files/{folderId}/children/{childId}",
148969
- "GET /v3/changes",
148970
- "GET /v3/changes/startPageToken",
148971
- "POST /v3/changes/watch",
148972
- "POST /v3/channels/stop",
148973
- "GET /v3/files",
148974
- "GET /v3/files/{fileId}",
148975
- "GET /v3/files/{fileId}/comments",
148976
- "GET /v3/files/{fileId}/comments/{commentId}",
148977
- "GET /v3/files/{fileId}/comments/{commentId}/replies",
148978
- "GET /v3/files/{fileId}/comments/{commentId}/replies/{replyId}",
148979
- "GET /v3/files/{fileId}/export",
148980
- "GET /v3/files/{fileId}/listLabels",
148981
- "GET /v3/files/{fileId}/permissions",
148982
- "GET /v3/files/{fileId}/permissions/{permissionId}",
148983
- "GET /v3/files/{fileId}/revisions",
148984
- "GET /v3/files/{fileId}/revisions/{revisionId}",
148985
- "POST /v3/files/{fileId}/watch",
148986
148802
  "GET /v3/operations/{name}"
148987
148803
  ]
148988
148804
  },
148989
148805
  {
148990
- name: "drive.metadata",
148991
- description: "View and manage metadata of files in your Google Drive",
148806
+ name: "replies.read",
148807
+ description: "Read Drive comment replies.",
148992
148808
  rules: [
148993
- "GET /v2/about",
148994
- "GET /v2/apps/{appId}",
148995
- "GET /v2/changes",
148996
- "GET /v2/changes/startPageToken",
148997
- "POST /v2/changes/watch",
148998
- "GET /v2/changes/{changeId}",
148999
- "POST /v2/channels/stop",
149000
- "GET /v2/files",
149001
- "GET /v2/files/{fileId}",
149002
- "PUT /v2/files/{fileId}",
149003
- "PATCH /v2/files/{fileId}",
149004
- "GET /v2/files/{fileId}/listLabels",
149005
- "POST /v2/files/{fileId}/modifyLabels",
149006
- "GET /v2/files/{fileId}/parents",
149007
- "GET /v2/files/{fileId}/parents/{parentId}",
149008
- "GET /v2/files/{fileId}/permissions",
149009
- "GET /v2/files/{fileId}/permissions/{permissionId}",
149010
- "GET /v2/files/{fileId}/properties",
149011
- "POST /v2/files/{fileId}/properties",
149012
- "GET /v2/files/{fileId}/properties/{propertyKey}",
149013
- "PUT /v2/files/{fileId}/properties/{propertyKey}",
149014
- "PATCH /v2/files/{fileId}/properties/{propertyKey}",
149015
- "DELETE /v2/files/{fileId}/properties/{propertyKey}",
149016
- "GET /v2/files/{fileId}/revisions",
149017
- "GET /v2/files/{fileId}/revisions/{revisionId}",
149018
- "POST /v2/files/{fileId}/touch",
149019
- "POST /v2/files/{fileId}/watch",
149020
- "GET /v2/files/{folderId}/children",
149021
- "GET /v2/files/{folderId}/children/{childId}",
149022
- "GET /v2/permissionIds/{email}",
149023
- "GET /v3/about",
149024
- "GET /v3/apps/{appId}",
149025
- "GET /v3/changes",
149026
- "GET /v3/changes/startPageToken",
149027
- "POST /v3/changes/watch",
149028
- "POST /v3/channels/stop",
149029
- "GET /v3/files",
149030
- "GET /v3/files/{fileId}",
149031
- "PATCH /v3/files/{fileId}",
149032
- "GET /v3/files/{fileId}/accessproposals",
149033
- "GET /v3/files/{fileId}/accessproposals/{proposalId}",
149034
- "GET /v3/files/{fileId}/approvals",
149035
- "GET /v3/files/{fileId}/approvals/{approvalId}",
149036
- "GET /v3/files/{fileId}/listLabels",
149037
- "POST /v3/files/{fileId}/modifyLabels",
149038
- "GET /v3/files/{fileId}/permissions",
149039
- "GET /v3/files/{fileId}/permissions/{permissionId}",
149040
- "GET /v3/files/{fileId}/revisions",
149041
- "GET /v3/files/{fileId}/revisions/{revisionId}",
149042
- "POST /v3/files/{fileId}/watch"
148809
+ "GET /v2/files/{fileId}/comments/{commentId}/replies",
148810
+ "GET /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148811
+ "GET /v3/files/{fileId}/comments/{commentId}/replies",
148812
+ "GET /v3/files/{fileId}/comments/{commentId}/replies/{replyId}"
149043
148813
  ]
149044
148814
  },
149045
148815
  {
149046
- name: "drive.metadata.readonly",
149047
- description: "See information about your Google Drive files",
148816
+ name: "replies.write",
148817
+ description: "Create, update, and delete Drive comment replies.",
149048
148818
  rules: [
149049
- "GET /v2/about",
149050
- "GET /v2/apps/{appId}",
149051
- "GET /v2/changes",
149052
- "GET /v2/changes/startPageToken",
149053
- "POST /v2/changes/watch",
149054
- "GET /v2/changes/{changeId}",
149055
- "POST /v2/channels/stop",
149056
- "GET /v2/files",
149057
- "GET /v2/files/{fileId}",
149058
- "GET /v2/files/{fileId}/listLabels",
149059
- "GET /v2/files/{fileId}/parents",
149060
- "GET /v2/files/{fileId}/parents/{parentId}",
149061
- "GET /v2/files/{fileId}/permissions",
149062
- "GET /v2/files/{fileId}/permissions/{permissionId}",
149063
- "GET /v2/files/{fileId}/properties",
149064
- "GET /v2/files/{fileId}/properties/{propertyKey}",
149065
- "GET /v2/files/{fileId}/revisions",
149066
- "GET /v2/files/{fileId}/revisions/{revisionId}",
149067
- "POST /v2/files/{fileId}/watch",
149068
- "GET /v2/files/{folderId}/children",
149069
- "GET /v2/files/{folderId}/children/{childId}",
149070
- "GET /v2/permissionIds/{email}",
149071
- "GET /v3/about",
149072
- "GET /v3/apps/{appId}",
149073
- "GET /v3/changes",
149074
- "GET /v3/changes/startPageToken",
149075
- "POST /v3/changes/watch",
149076
- "POST /v3/channels/stop",
149077
- "GET /v3/files",
149078
- "GET /v3/files/{fileId}",
149079
- "GET /v3/files/{fileId}/accessproposals",
149080
- "GET /v3/files/{fileId}/accessproposals/{proposalId}",
149081
- "GET /v3/files/{fileId}/approvals",
149082
- "GET /v3/files/{fileId}/approvals/{approvalId}",
149083
- "GET /v3/files/{fileId}/listLabels",
149084
- "GET /v3/files/{fileId}/permissions",
149085
- "GET /v3/files/{fileId}/permissions/{permissionId}",
149086
- "GET /v3/files/{fileId}/revisions",
149087
- "GET /v3/files/{fileId}/revisions/{revisionId}",
149088
- "POST /v3/files/{fileId}/watch"
148819
+ "POST /v2/files/{fileId}/comments/{commentId}/replies",
148820
+ "PUT /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148821
+ "PATCH /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148822
+ "DELETE /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
148823
+ "POST /v3/files/{fileId}/comments/{commentId}/replies",
148824
+ "PATCH /v3/files/{fileId}/comments/{commentId}/replies/{replyId}",
148825
+ "DELETE /v3/files/{fileId}/comments/{commentId}/replies/{replyId}"
149089
148826
  ]
149090
148827
  },
149091
148828
  {
149092
- name: "drive.photos.readonly",
149093
- description: "View the photos, videos and albums in your Google Photos",
148829
+ name: "revisions.delete",
148830
+ description: "Delete Drive file revisions.",
149094
148831
  rules: [
149095
- "GET /v2/about",
149096
- "GET /v2/changes",
149097
- "GET /v2/changes/startPageToken",
149098
- "POST /v2/changes/watch",
149099
- "GET /v2/changes/{changeId}",
149100
- "POST /v2/channels/stop",
149101
- "GET /v2/files",
149102
- "GET /v2/files/{fileId}",
149103
- "POST /v2/files/{fileId}/copy",
149104
- "GET /v2/files/{fileId}/parents",
149105
- "GET /v2/files/{fileId}/parents/{parentId}",
149106
- "GET /v2/files/{fileId}/permissions",
149107
- "GET /v2/files/{fileId}/permissions/{permissionId}",
149108
- "GET /v2/files/{fileId}/properties",
149109
- "GET /v2/files/{fileId}/properties/{propertyKey}",
149110
- "GET /v2/files/{fileId}/revisions",
149111
- "GET /v2/files/{fileId}/revisions/{revisionId}",
149112
- "POST /v2/files/{fileId}/watch",
149113
- "GET /v2/files/{folderId}/children",
149114
- "GET /v2/files/{folderId}/children/{childId}",
149115
- "GET /v2/permissionIds/{email}",
149116
- "GET /v3/about",
149117
- "GET /v3/changes",
149118
- "GET /v3/changes/startPageToken",
149119
- "POST /v3/changes/watch",
149120
- "POST /v3/channels/stop",
149121
- "GET /v3/files",
149122
- "GET /v3/files/{fileId}",
149123
- "POST /v3/files/{fileId}/copy",
149124
- "GET /v3/files/{fileId}/permissions",
149125
- "GET /v3/files/{fileId}/permissions/{permissionId}",
149126
- "GET /v3/files/{fileId}/revisions",
149127
- "GET /v3/files/{fileId}/revisions/{revisionId}",
149128
- "POST /v3/files/{fileId}/watch"
148832
+ "DELETE /v2/files/{fileId}/revisions/{revisionId}",
148833
+ "DELETE /v3/files/{fileId}/revisions/{revisionId}"
149129
148834
  ]
149130
148835
  },
149131
148836
  {
149132
- name: "drive.readonly",
149133
- description: "See and download all your Google Drive files",
148837
+ name: "revisions.read",
148838
+ description: "Read Drive file revisions.",
149134
148839
  rules: [
149135
- "GET /v2/about",
149136
- "GET /v2/apps/{appId}",
149137
- "GET /v2/changes",
149138
- "GET /v2/changes/startPageToken",
149139
- "POST /v2/changes/watch",
149140
- "GET /v2/changes/{changeId}",
149141
- "POST /v2/channels/stop",
149142
- "GET /v2/drives",
149143
- "GET /v2/drives/{driveId}",
149144
- "GET /v2/files",
149145
- "GET /v2/files/{fileId}",
149146
- "GET /v2/files/{fileId}/comments",
149147
- "GET /v2/files/{fileId}/comments/{commentId}",
149148
- "GET /v2/files/{fileId}/comments/{commentId}/replies",
149149
- "GET /v2/files/{fileId}/comments/{commentId}/replies/{replyId}",
149150
- "GET /v2/files/{fileId}/export",
149151
- "GET /v2/files/{fileId}/listLabels",
149152
- "GET /v2/files/{fileId}/parents",
149153
- "GET /v2/files/{fileId}/parents/{parentId}",
149154
- "GET /v2/files/{fileId}/permissions",
149155
- "GET /v2/files/{fileId}/permissions/{permissionId}",
149156
- "GET /v2/files/{fileId}/properties",
149157
- "GET /v2/files/{fileId}/properties/{propertyKey}",
149158
148840
  "GET /v2/files/{fileId}/revisions",
149159
148841
  "GET /v2/files/{fileId}/revisions/{revisionId}",
149160
- "POST /v2/files/{fileId}/watch",
149161
- "GET /v2/files/{folderId}/children",
149162
- "GET /v2/files/{folderId}/children/{childId}",
149163
- "GET /v2/permissionIds/{email}",
149164
- "GET /v2/teamdrives",
149165
- "GET /v2/teamdrives/{teamDriveId}",
149166
- "GET /v3/about",
149167
- "GET /v3/apps/{appId}",
149168
- "GET /v3/changes",
149169
- "GET /v3/changes/startPageToken",
149170
- "POST /v3/changes/watch",
149171
- "POST /v3/channels/stop",
149172
- "GET /v3/drives",
149173
- "GET /v3/drives/{driveId}",
149174
- "GET /v3/files",
149175
- "GET /v3/files/{fileId}",
149176
- "GET /v3/files/{fileId}/accessproposals",
149177
- "GET /v3/files/{fileId}/accessproposals/{proposalId}",
149178
- "GET /v3/files/{fileId}/approvals",
149179
- "GET /v3/files/{fileId}/approvals/{approvalId}",
149180
- "GET /v3/files/{fileId}/comments",
149181
- "GET /v3/files/{fileId}/comments/{commentId}",
149182
- "GET /v3/files/{fileId}/comments/{commentId}/replies",
149183
- "GET /v3/files/{fileId}/comments/{commentId}/replies/{replyId}",
149184
- "POST /v3/files/{fileId}/download",
149185
- "GET /v3/files/{fileId}/export",
149186
- "GET /v3/files/{fileId}/listLabels",
149187
- "GET /v3/files/{fileId}/permissions",
149188
- "GET /v3/files/{fileId}/permissions/{permissionId}",
149189
148842
  "GET /v3/files/{fileId}/revisions",
149190
- "GET /v3/files/{fileId}/revisions/{revisionId}",
149191
- "POST /v3/files/{fileId}/watch",
149192
- "GET /v3/operations/{name}",
149193
- "GET /v3/teamdrives",
149194
- "GET /v3/teamdrives/{teamDriveId}"
148843
+ "GET /v3/files/{fileId}/revisions/{revisionId}"
149195
148844
  ]
149196
148845
  },
149197
148846
  {
149198
- name: "drive.scripts",
149199
- description: "Modify your Google Apps Script scripts' behavior",
148847
+ name: "revisions.write",
148848
+ description: "Update Drive file revisions.",
149200
148849
  rules: [
149201
- "PUT /v2/files/{fileId}",
149202
- "PATCH /v2/files/{fileId}",
149203
- "PATCH /v3/files/{fileId}"
148850
+ "PUT /v2/files/{fileId}/revisions/{revisionId}",
148851
+ "PATCH /v2/files/{fileId}/revisions/{revisionId}",
148852
+ "PATCH /v3/files/{fileId}/revisions/{revisionId}"
149204
148853
  ]
149205
148854
  }
149206
148855
  ]
@@ -149209,63 +148858,19 @@ var googleDriveFirewall = {
149209
148858
  base: "https://www.googleapis.com/upload/drive",
149210
148859
  auth: {
149211
148860
  headers: {
149212
- "Authorization": "Bearer ${{ secrets.GOOGLE_DRIVE_TOKEN }}"
148861
+ Authorization: "Bearer ${{ secrets.GOOGLE_DRIVE_TOKEN }}"
149213
148862
  }
149214
148863
  },
149215
148864
  permissions: [
149216
148865
  {
149217
- name: "drive",
149218
- description: "See, edit, create, and delete all of your Google Drive files",
149219
- rules: [
149220
- "POST /v2/files",
149221
- "PUT /v2/files/{fileId}",
149222
- "POST /v3/files",
149223
- "PATCH /v3/files/{fileId}"
149224
- ]
149225
- },
149226
- {
149227
- name: "drive.appdata",
149228
- description: "See, create, and delete its own configuration data in your Google Drive",
148866
+ name: "files.write",
148867
+ description: "Create, update, upload, copy, organize, and label files.",
149229
148868
  rules: [
149230
148869
  "POST /v2/files",
149231
148870
  "PUT /v2/files/{fileId}",
149232
148871
  "POST /v3/files",
149233
148872
  "PATCH /v3/files/{fileId}"
149234
148873
  ]
149235
- },
149236
- {
149237
- name: "drive.apps.readonly",
149238
- description: "View your Google Drive apps",
149239
- rules: [
149240
- "POST /v2/files",
149241
- "PUT /v2/files/{fileId}"
149242
- ]
149243
- },
149244
- {
149245
- name: "drive.file",
149246
- description: "See, edit, create, and delete only the specific Google Drive files you use with this app",
149247
- rules: [
149248
- "POST /v2/files",
149249
- "PUT /v2/files/{fileId}",
149250
- "POST /v3/files",
149251
- "PATCH /v3/files/{fileId}"
149252
- ]
149253
- },
149254
- {
149255
- name: "drive.metadata",
149256
- description: "View and manage metadata of files in your Google Drive",
149257
- rules: [
149258
- "PUT /v2/files/{fileId}",
149259
- "PATCH /v3/files/{fileId}"
149260
- ]
149261
- },
149262
- {
149263
- name: "drive.scripts",
149264
- description: "Modify your Google Apps Script scripts' behavior",
149265
- rules: [
149266
- "PUT /v2/files/{fileId}",
149267
- "PATCH /v3/files/{fileId}"
149268
- ]
149269
148874
  }
149270
148875
  ]
149271
148876
  },
@@ -149273,68 +148878,36 @@ var googleDriveFirewall = {
149273
148878
  base: "https://www.googleapis.com/resumable/upload/drive",
149274
148879
  auth: {
149275
148880
  headers: {
149276
- "Authorization": "Bearer ${{ secrets.GOOGLE_DRIVE_TOKEN }}"
148881
+ Authorization: "Bearer ${{ secrets.GOOGLE_DRIVE_TOKEN }}"
149277
148882
  }
149278
148883
  },
149279
148884
  permissions: [
149280
148885
  {
149281
- name: "drive",
149282
- description: "See, edit, create, and delete all of your Google Drive files",
149283
- rules: [
149284
- "POST /v2/files",
149285
- "PUT /v2/files/{fileId}",
149286
- "POST /v3/files",
149287
- "PATCH /v3/files/{fileId}"
149288
- ]
149289
- },
149290
- {
149291
- name: "drive.appdata",
149292
- description: "See, create, and delete its own configuration data in your Google Drive",
148886
+ name: "files.write",
148887
+ description: "Create, update, upload, copy, organize, and label files.",
149293
148888
  rules: [
149294
148889
  "POST /v2/files",
149295
148890
  "PUT /v2/files/{fileId}",
149296
148891
  "POST /v3/files",
149297
148892
  "PATCH /v3/files/{fileId}"
149298
148893
  ]
149299
- },
149300
- {
149301
- name: "drive.apps.readonly",
149302
- description: "View your Google Drive apps",
149303
- rules: [
149304
- "POST /v2/files",
149305
- "PUT /v2/files/{fileId}"
149306
- ]
149307
- },
149308
- {
149309
- name: "drive.file",
149310
- description: "See, edit, create, and delete only the specific Google Drive files you use with this app",
149311
- rules: [
149312
- "POST /v2/files",
149313
- "PUT /v2/files/{fileId}",
149314
- "POST /v3/files",
149315
- "PATCH /v3/files/{fileId}"
149316
- ]
149317
- },
149318
- {
149319
- name: "drive.metadata",
149320
- description: "View and manage metadata of files in your Google Drive",
149321
- rules: [
149322
- "PUT /v2/files/{fileId}",
149323
- "PATCH /v3/files/{fileId}"
149324
- ]
149325
- },
149326
- {
149327
- name: "drive.scripts",
149328
- description: "Modify your Google Apps Script scripts' behavior",
149329
- rules: [
149330
- "PUT /v2/files/{fileId}",
149331
- "PATCH /v3/files/{fileId}"
149332
- ]
149333
148894
  }
149334
148895
  ]
149335
148896
  }
149336
148897
  ]
149337
148898
  };
148899
+ var googleDriveDefaultAllowed = [
148900
+ "about.read",
148901
+ "apps.read",
148902
+ "changes.read",
148903
+ "comments.read",
148904
+ "drives.read",
148905
+ "files.read",
148906
+ "operations.read",
148907
+ "replies.read",
148908
+ "revisions.read"
148909
+ ];
148910
+ var googleDriveDefaultUnknownPolicy = "deny";
149338
148911
 
149339
148912
  // ../../packages/connectors/src/firewalls/google-meet.generated.ts
149340
148913
  init_esm_shims();
@@ -158478,6 +158051,7 @@ var DEFAULT_ALLOWED = {
158478
158051
  clerk: clerkDefaultAllowed,
158479
158052
  cloudflare: cloudflareDefaultAllowed,
158480
158053
  "google-cloud": googleCloudDefaultAllowed,
158054
+ "google-drive": googleDriveDefaultAllowed,
158481
158055
  gmail: gmailDefaultAllowed,
158482
158056
  maskdb: maskdbDefaultAllowed,
158483
158057
  slack: slackDefaultAllowed,
@@ -158486,6 +158060,7 @@ var DEFAULT_ALLOWED = {
158486
158060
  var DEFAULT_UNKNOWN_POLICY = {
158487
158061
  cloudflare: cloudflareDefaultUnknownPolicy,
158488
158062
  "google-cloud": googleCloudDefaultUnknownPolicy,
158063
+ "google-drive": googleDriveDefaultUnknownPolicy,
158489
158064
  maskdb: maskdbDefaultUnknownPolicy
158490
158065
  };
158491
158066
  function getDefaultFirewallPolicies(type) {
@@ -166633,4 +166208,4 @@ undici/lib/web/fetch/body.js:
166633
166208
  undici/lib/web/websocket/frame.js:
166634
166209
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
166635
166210
  */
166636
- //# sourceMappingURL=chunk-RHSNJ3DN.js.map
166211
+ //# sourceMappingURL=chunk-DLDLLT36.js.map