@orq-ai/node 3.10.2 → 3.10.5
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.
- package/bin/mcp-server.js +119 -104
- package/bin/mcp-server.js.map +28 -28
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/searchknowledge.d.ts +40 -0
- package/models/operations/searchknowledge.d.ts.map +1 -1
- package/models/operations/searchknowledge.js +32 -4
- package/models/operations/searchknowledge.js.map +1 -1
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +2 -2
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +288 -235
- package/packages/orq-rc/package.json +2 -2
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/searchknowledge.ts +42 -0
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orq-ai/node",
|
|
3
|
-
"version": "3.11.0-rc.
|
|
3
|
+
"version": "3.11.0-rc.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@orq-ai/node",
|
|
9
|
-
"version": "3.11.0-rc.
|
|
9
|
+
"version": "3.11.0-rc.1",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"zod": "^3.20.0"
|
|
12
12
|
},
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"express": "^4.21.2",
|
|
25
25
|
"globals": "^15.14.0",
|
|
26
26
|
"typescript": "~5.8.3",
|
|
27
|
-
"typescript-eslint": "^8.
|
|
27
|
+
"typescript-eslint": "^8.26.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"@modelcontextprotocol/sdk": ">=1.5.0 <1.10.0"
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"node_modules/@eslint-community/eslint-utils": {
|
|
39
|
-
"version": "4.
|
|
40
|
-
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.
|
|
41
|
-
"integrity": "sha512-
|
|
39
|
+
"version": "4.7.0",
|
|
40
|
+
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz",
|
|
41
|
+
"integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==",
|
|
42
42
|
"dev": true,
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"dependencies": {
|
|
@@ -615,6 +615,251 @@
|
|
|
615
615
|
"@types/send": "*"
|
|
616
616
|
}
|
|
617
617
|
},
|
|
618
|
+
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
619
|
+
"version": "8.39.0",
|
|
620
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.39.0.tgz",
|
|
621
|
+
"integrity": "sha512-bhEz6OZeUR+O/6yx9Jk6ohX6H9JSFTaiY0v9/PuKT3oGK0rn0jNplLmyFUGV+a9gfYnVNwGDwS/UkLIuXNb2Rw==",
|
|
622
|
+
"dev": true,
|
|
623
|
+
"license": "MIT",
|
|
624
|
+
"dependencies": {
|
|
625
|
+
"@eslint-community/regexpp": "^4.10.0",
|
|
626
|
+
"@typescript-eslint/scope-manager": "8.39.0",
|
|
627
|
+
"@typescript-eslint/type-utils": "8.39.0",
|
|
628
|
+
"@typescript-eslint/utils": "8.39.0",
|
|
629
|
+
"@typescript-eslint/visitor-keys": "8.39.0",
|
|
630
|
+
"graphemer": "^1.4.0",
|
|
631
|
+
"ignore": "^7.0.0",
|
|
632
|
+
"natural-compare": "^1.4.0",
|
|
633
|
+
"ts-api-utils": "^2.1.0"
|
|
634
|
+
},
|
|
635
|
+
"engines": {
|
|
636
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
637
|
+
},
|
|
638
|
+
"funding": {
|
|
639
|
+
"type": "opencollective",
|
|
640
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
641
|
+
},
|
|
642
|
+
"peerDependencies": {
|
|
643
|
+
"@typescript-eslint/parser": "^8.39.0",
|
|
644
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
645
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
|
649
|
+
"version": "7.0.5",
|
|
650
|
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
|
|
651
|
+
"integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
|
|
652
|
+
"dev": true,
|
|
653
|
+
"license": "MIT",
|
|
654
|
+
"engines": {
|
|
655
|
+
"node": ">= 4"
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
"node_modules/@typescript-eslint/parser": {
|
|
659
|
+
"version": "8.39.0",
|
|
660
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.39.0.tgz",
|
|
661
|
+
"integrity": "sha512-g3WpVQHngx0aLXn6kfIYCZxM6rRJlWzEkVpqEFLT3SgEDsp9cpCbxxgwnE504q4H+ruSDh/VGS6nqZIDynP+vg==",
|
|
662
|
+
"dev": true,
|
|
663
|
+
"license": "MIT",
|
|
664
|
+
"dependencies": {
|
|
665
|
+
"@typescript-eslint/scope-manager": "8.39.0",
|
|
666
|
+
"@typescript-eslint/types": "8.39.0",
|
|
667
|
+
"@typescript-eslint/typescript-estree": "8.39.0",
|
|
668
|
+
"@typescript-eslint/visitor-keys": "8.39.0",
|
|
669
|
+
"debug": "^4.3.4"
|
|
670
|
+
},
|
|
671
|
+
"engines": {
|
|
672
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
673
|
+
},
|
|
674
|
+
"funding": {
|
|
675
|
+
"type": "opencollective",
|
|
676
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
677
|
+
},
|
|
678
|
+
"peerDependencies": {
|
|
679
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
680
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
"node_modules/@typescript-eslint/project-service": {
|
|
684
|
+
"version": "8.39.0",
|
|
685
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.39.0.tgz",
|
|
686
|
+
"integrity": "sha512-CTzJqaSq30V/Z2Og9jogzZt8lJRR5TKlAdXmWgdu4hgcC9Kww5flQ+xFvMxIBWVNdxJO7OifgdOK4PokMIWPew==",
|
|
687
|
+
"dev": true,
|
|
688
|
+
"license": "MIT",
|
|
689
|
+
"dependencies": {
|
|
690
|
+
"@typescript-eslint/tsconfig-utils": "^8.39.0",
|
|
691
|
+
"@typescript-eslint/types": "^8.39.0",
|
|
692
|
+
"debug": "^4.3.4"
|
|
693
|
+
},
|
|
694
|
+
"engines": {
|
|
695
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
696
|
+
},
|
|
697
|
+
"funding": {
|
|
698
|
+
"type": "opencollective",
|
|
699
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
700
|
+
},
|
|
701
|
+
"peerDependencies": {
|
|
702
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
703
|
+
}
|
|
704
|
+
},
|
|
705
|
+
"node_modules/@typescript-eslint/scope-manager": {
|
|
706
|
+
"version": "8.39.0",
|
|
707
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.39.0.tgz",
|
|
708
|
+
"integrity": "sha512-8QOzff9UKxOh6npZQ/4FQu4mjdOCGSdO3p44ww0hk8Vu+IGbg0tB/H1LcTARRDzGCC8pDGbh2rissBuuoPgH8A==",
|
|
709
|
+
"dev": true,
|
|
710
|
+
"license": "MIT",
|
|
711
|
+
"dependencies": {
|
|
712
|
+
"@typescript-eslint/types": "8.39.0",
|
|
713
|
+
"@typescript-eslint/visitor-keys": "8.39.0"
|
|
714
|
+
},
|
|
715
|
+
"engines": {
|
|
716
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
717
|
+
},
|
|
718
|
+
"funding": {
|
|
719
|
+
"type": "opencollective",
|
|
720
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
721
|
+
}
|
|
722
|
+
},
|
|
723
|
+
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
724
|
+
"version": "8.39.0",
|
|
725
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.39.0.tgz",
|
|
726
|
+
"integrity": "sha512-Fd3/QjmFV2sKmvv3Mrj8r6N8CryYiCS8Wdb/6/rgOXAWGcFuc+VkQuG28uk/4kVNVZBQuuDHEDUpo/pQ32zsIQ==",
|
|
727
|
+
"dev": true,
|
|
728
|
+
"license": "MIT",
|
|
729
|
+
"engines": {
|
|
730
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
731
|
+
},
|
|
732
|
+
"funding": {
|
|
733
|
+
"type": "opencollective",
|
|
734
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
735
|
+
},
|
|
736
|
+
"peerDependencies": {
|
|
737
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
738
|
+
}
|
|
739
|
+
},
|
|
740
|
+
"node_modules/@typescript-eslint/type-utils": {
|
|
741
|
+
"version": "8.39.0",
|
|
742
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.39.0.tgz",
|
|
743
|
+
"integrity": "sha512-6B3z0c1DXVT2vYA9+z9axjtc09rqKUPRmijD5m9iv8iQpHBRYRMBcgxSiKTZKm6FwWw1/cI4v6em35OsKCiN5Q==",
|
|
744
|
+
"dev": true,
|
|
745
|
+
"license": "MIT",
|
|
746
|
+
"dependencies": {
|
|
747
|
+
"@typescript-eslint/types": "8.39.0",
|
|
748
|
+
"@typescript-eslint/typescript-estree": "8.39.0",
|
|
749
|
+
"@typescript-eslint/utils": "8.39.0",
|
|
750
|
+
"debug": "^4.3.4",
|
|
751
|
+
"ts-api-utils": "^2.1.0"
|
|
752
|
+
},
|
|
753
|
+
"engines": {
|
|
754
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
755
|
+
},
|
|
756
|
+
"funding": {
|
|
757
|
+
"type": "opencollective",
|
|
758
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
759
|
+
},
|
|
760
|
+
"peerDependencies": {
|
|
761
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
762
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
"node_modules/@typescript-eslint/types": {
|
|
766
|
+
"version": "8.39.0",
|
|
767
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.39.0.tgz",
|
|
768
|
+
"integrity": "sha512-ArDdaOllnCj3yn/lzKn9s0pBQYmmyme/v1HbGIGB0GB/knFI3fWMHloC+oYTJW46tVbYnGKTMDK4ah1sC2v0Kg==",
|
|
769
|
+
"dev": true,
|
|
770
|
+
"license": "MIT",
|
|
771
|
+
"engines": {
|
|
772
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
773
|
+
},
|
|
774
|
+
"funding": {
|
|
775
|
+
"type": "opencollective",
|
|
776
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
777
|
+
}
|
|
778
|
+
},
|
|
779
|
+
"node_modules/@typescript-eslint/typescript-estree": {
|
|
780
|
+
"version": "8.39.0",
|
|
781
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.39.0.tgz",
|
|
782
|
+
"integrity": "sha512-ndWdiflRMvfIgQRpckQQLiB5qAKQ7w++V4LlCHwp62eym1HLB/kw7D9f2e8ytONls/jt89TEasgvb+VwnRprsw==",
|
|
783
|
+
"dev": true,
|
|
784
|
+
"license": "MIT",
|
|
785
|
+
"dependencies": {
|
|
786
|
+
"@typescript-eslint/project-service": "8.39.0",
|
|
787
|
+
"@typescript-eslint/tsconfig-utils": "8.39.0",
|
|
788
|
+
"@typescript-eslint/types": "8.39.0",
|
|
789
|
+
"@typescript-eslint/visitor-keys": "8.39.0",
|
|
790
|
+
"debug": "^4.3.4",
|
|
791
|
+
"fast-glob": "^3.3.2",
|
|
792
|
+
"is-glob": "^4.0.3",
|
|
793
|
+
"minimatch": "^9.0.4",
|
|
794
|
+
"semver": "^7.6.0",
|
|
795
|
+
"ts-api-utils": "^2.1.0"
|
|
796
|
+
},
|
|
797
|
+
"engines": {
|
|
798
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
799
|
+
},
|
|
800
|
+
"funding": {
|
|
801
|
+
"type": "opencollective",
|
|
802
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
803
|
+
},
|
|
804
|
+
"peerDependencies": {
|
|
805
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
806
|
+
}
|
|
807
|
+
},
|
|
808
|
+
"node_modules/@typescript-eslint/utils": {
|
|
809
|
+
"version": "8.39.0",
|
|
810
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.39.0.tgz",
|
|
811
|
+
"integrity": "sha512-4GVSvNA0Vx1Ktwvf4sFE+exxJ3QGUorQG1/A5mRfRNZtkBT2xrA/BCO2H0eALx/PnvCS6/vmYwRdDA41EoffkQ==",
|
|
812
|
+
"dev": true,
|
|
813
|
+
"license": "MIT",
|
|
814
|
+
"dependencies": {
|
|
815
|
+
"@eslint-community/eslint-utils": "^4.7.0",
|
|
816
|
+
"@typescript-eslint/scope-manager": "8.39.0",
|
|
817
|
+
"@typescript-eslint/types": "8.39.0",
|
|
818
|
+
"@typescript-eslint/typescript-estree": "8.39.0"
|
|
819
|
+
},
|
|
820
|
+
"engines": {
|
|
821
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
822
|
+
},
|
|
823
|
+
"funding": {
|
|
824
|
+
"type": "opencollective",
|
|
825
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
826
|
+
},
|
|
827
|
+
"peerDependencies": {
|
|
828
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
829
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
830
|
+
}
|
|
831
|
+
},
|
|
832
|
+
"node_modules/@typescript-eslint/visitor-keys": {
|
|
833
|
+
"version": "8.39.0",
|
|
834
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.39.0.tgz",
|
|
835
|
+
"integrity": "sha512-ldgiJ+VAhQCfIjeOgu8Kj5nSxds0ktPOSO9p4+0VDH2R2pLvQraaM5Oen2d7NxzMCm+Sn/vJT+mv2H5u6b/3fA==",
|
|
836
|
+
"dev": true,
|
|
837
|
+
"license": "MIT",
|
|
838
|
+
"dependencies": {
|
|
839
|
+
"@typescript-eslint/types": "8.39.0",
|
|
840
|
+
"eslint-visitor-keys": "^4.2.1"
|
|
841
|
+
},
|
|
842
|
+
"engines": {
|
|
843
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
844
|
+
},
|
|
845
|
+
"funding": {
|
|
846
|
+
"type": "opencollective",
|
|
847
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
848
|
+
}
|
|
849
|
+
},
|
|
850
|
+
"node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
|
|
851
|
+
"version": "4.2.1",
|
|
852
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
|
|
853
|
+
"integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
|
|
854
|
+
"dev": true,
|
|
855
|
+
"license": "Apache-2.0",
|
|
856
|
+
"engines": {
|
|
857
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
858
|
+
},
|
|
859
|
+
"funding": {
|
|
860
|
+
"url": "https://opencollective.com/eslint"
|
|
861
|
+
}
|
|
862
|
+
},
|
|
618
863
|
"node_modules/accepts": {
|
|
619
864
|
"version": "1.3.8",
|
|
620
865
|
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
|
|
@@ -765,9 +1010,9 @@
|
|
|
765
1010
|
}
|
|
766
1011
|
},
|
|
767
1012
|
"node_modules/brace-expansion": {
|
|
768
|
-
"version": "2.0.
|
|
769
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.
|
|
770
|
-
"integrity": "sha512-
|
|
1013
|
+
"version": "2.0.2",
|
|
1014
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
|
|
1015
|
+
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
|
|
771
1016
|
"dev": true,
|
|
772
1017
|
"license": "MIT",
|
|
773
1018
|
"dependencies": {
|
|
@@ -1422,9 +1667,9 @@
|
|
|
1422
1667
|
"license": "MIT"
|
|
1423
1668
|
},
|
|
1424
1669
|
"node_modules/fast-glob": {
|
|
1425
|
-
"version": "3.3.
|
|
1426
|
-
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.
|
|
1427
|
-
"integrity": "sha512-
|
|
1670
|
+
"version": "3.3.3",
|
|
1671
|
+
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
|
|
1672
|
+
"integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
|
|
1428
1673
|
"dev": true,
|
|
1429
1674
|
"license": "MIT",
|
|
1430
1675
|
"dependencies": {
|
|
@@ -1432,7 +1677,7 @@
|
|
|
1432
1677
|
"@nodelib/fs.walk": "^1.2.3",
|
|
1433
1678
|
"glob-parent": "^5.1.2",
|
|
1434
1679
|
"merge2": "^1.3.0",
|
|
1435
|
-
"micromatch": "^4.0.
|
|
1680
|
+
"micromatch": "^4.0.8"
|
|
1436
1681
|
},
|
|
1437
1682
|
"engines": {
|
|
1438
1683
|
"node": ">=8.6.0"
|
|
@@ -1466,9 +1711,9 @@
|
|
|
1466
1711
|
"license": "MIT"
|
|
1467
1712
|
},
|
|
1468
1713
|
"node_modules/fastq": {
|
|
1469
|
-
"version": "1.
|
|
1470
|
-
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.
|
|
1471
|
-
"integrity": "sha512-
|
|
1714
|
+
"version": "1.19.1",
|
|
1715
|
+
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
|
|
1716
|
+
"integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
|
|
1472
1717
|
"dev": true,
|
|
1473
1718
|
"license": "ISC",
|
|
1474
1719
|
"dependencies": {
|
|
@@ -2331,9 +2576,9 @@
|
|
|
2331
2576
|
}
|
|
2332
2577
|
},
|
|
2333
2578
|
"node_modules/reusify": {
|
|
2334
|
-
"version": "1.0
|
|
2335
|
-
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.
|
|
2336
|
-
"integrity": "sha512-
|
|
2579
|
+
"version": "1.1.0",
|
|
2580
|
+
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
|
|
2581
|
+
"integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
|
|
2337
2582
|
"dev": true,
|
|
2338
2583
|
"license": "MIT",
|
|
2339
2584
|
"engines": {
|
|
@@ -2394,9 +2639,9 @@
|
|
|
2394
2639
|
"license": "MIT"
|
|
2395
2640
|
},
|
|
2396
2641
|
"node_modules/semver": {
|
|
2397
|
-
"version": "7.
|
|
2398
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
2399
|
-
"integrity": "sha512-
|
|
2642
|
+
"version": "7.7.2",
|
|
2643
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
|
|
2644
|
+
"integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
|
|
2400
2645
|
"dev": true,
|
|
2401
2646
|
"license": "ISC",
|
|
2402
2647
|
"bin": {
|
|
@@ -2639,6 +2884,19 @@
|
|
|
2639
2884
|
"node": ">=0.6"
|
|
2640
2885
|
}
|
|
2641
2886
|
},
|
|
2887
|
+
"node_modules/ts-api-utils": {
|
|
2888
|
+
"version": "2.1.0",
|
|
2889
|
+
"resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz",
|
|
2890
|
+
"integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==",
|
|
2891
|
+
"dev": true,
|
|
2892
|
+
"license": "MIT",
|
|
2893
|
+
"engines": {
|
|
2894
|
+
"node": ">=18.12"
|
|
2895
|
+
},
|
|
2896
|
+
"peerDependencies": {
|
|
2897
|
+
"typescript": ">=4.8.4"
|
|
2898
|
+
}
|
|
2899
|
+
},
|
|
2642
2900
|
"node_modules/type-check": {
|
|
2643
2901
|
"version": "0.4.0",
|
|
2644
2902
|
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
|
|
@@ -2681,177 +2939,16 @@
|
|
|
2681
2939
|
}
|
|
2682
2940
|
},
|
|
2683
2941
|
"node_modules/typescript-eslint": {
|
|
2684
|
-
"version": "8.
|
|
2685
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.
|
|
2686
|
-
"integrity": "sha512-
|
|
2687
|
-
"dev": true,
|
|
2688
|
-
"license": "MIT",
|
|
2689
|
-
"dependencies": {
|
|
2690
|
-
"@typescript-eslint/eslint-plugin": "8.22.0",
|
|
2691
|
-
"@typescript-eslint/parser": "8.22.0",
|
|
2692
|
-
"@typescript-eslint/utils": "8.22.0"
|
|
2693
|
-
},
|
|
2694
|
-
"engines": {
|
|
2695
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2696
|
-
},
|
|
2697
|
-
"funding": {
|
|
2698
|
-
"type": "opencollective",
|
|
2699
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
2700
|
-
},
|
|
2701
|
-
"peerDependencies": {
|
|
2702
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
2703
|
-
"typescript": ">=4.8.4 <5.8.0"
|
|
2704
|
-
}
|
|
2705
|
-
},
|
|
2706
|
-
"node_modules/typescript-eslint/node_modules/@typescript-eslint/eslint-plugin": {
|
|
2707
|
-
"version": "8.22.0",
|
|
2708
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.22.0.tgz",
|
|
2709
|
-
"integrity": "sha512-4Uta6REnz/xEJMvwf72wdUnC3rr4jAQf5jnTkeRQ9b6soxLxhDEbS/pfMPoJLDfFPNVRdryqWUIV/2GZzDJFZw==",
|
|
2710
|
-
"dev": true,
|
|
2711
|
-
"license": "MIT",
|
|
2712
|
-
"dependencies": {
|
|
2713
|
-
"@eslint-community/regexpp": "^4.10.0",
|
|
2714
|
-
"@typescript-eslint/scope-manager": "8.22.0",
|
|
2715
|
-
"@typescript-eslint/type-utils": "8.22.0",
|
|
2716
|
-
"@typescript-eslint/utils": "8.22.0",
|
|
2717
|
-
"@typescript-eslint/visitor-keys": "8.22.0",
|
|
2718
|
-
"graphemer": "^1.4.0",
|
|
2719
|
-
"ignore": "^5.3.1",
|
|
2720
|
-
"natural-compare": "^1.4.0",
|
|
2721
|
-
"ts-api-utils": "^2.0.0"
|
|
2722
|
-
},
|
|
2723
|
-
"engines": {
|
|
2724
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2725
|
-
},
|
|
2726
|
-
"funding": {
|
|
2727
|
-
"type": "opencollective",
|
|
2728
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
2729
|
-
},
|
|
2730
|
-
"peerDependencies": {
|
|
2731
|
-
"@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0",
|
|
2732
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
2733
|
-
"typescript": ">=4.8.4 <5.8.0"
|
|
2734
|
-
}
|
|
2735
|
-
},
|
|
2736
|
-
"node_modules/typescript-eslint/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": {
|
|
2737
|
-
"version": "8.22.0",
|
|
2738
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.22.0.tgz",
|
|
2739
|
-
"integrity": "sha512-NzE3aB62fDEaGjaAYZE4LH7I1MUwHooQ98Byq0G0y3kkibPJQIXVUspzlFOmOfHhiDLwKzMlWxaNv+/qcZurJA==",
|
|
2740
|
-
"dev": true,
|
|
2741
|
-
"license": "MIT",
|
|
2742
|
-
"dependencies": {
|
|
2743
|
-
"@typescript-eslint/typescript-estree": "8.22.0",
|
|
2744
|
-
"@typescript-eslint/utils": "8.22.0",
|
|
2745
|
-
"debug": "^4.3.4",
|
|
2746
|
-
"ts-api-utils": "^2.0.0"
|
|
2747
|
-
},
|
|
2748
|
-
"engines": {
|
|
2749
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2750
|
-
},
|
|
2751
|
-
"funding": {
|
|
2752
|
-
"type": "opencollective",
|
|
2753
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
2754
|
-
},
|
|
2755
|
-
"peerDependencies": {
|
|
2756
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
2757
|
-
"typescript": ">=4.8.4 <5.8.0"
|
|
2758
|
-
}
|
|
2759
|
-
},
|
|
2760
|
-
"node_modules/typescript-eslint/node_modules/@typescript-eslint/parser": {
|
|
2761
|
-
"version": "8.22.0",
|
|
2762
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.22.0.tgz",
|
|
2763
|
-
"integrity": "sha512-MqtmbdNEdoNxTPzpWiWnqNac54h8JDAmkWtJExBVVnSrSmi9z+sZUt0LfKqk9rjqmKOIeRhO4fHHJ1nQIjduIQ==",
|
|
2764
|
-
"dev": true,
|
|
2765
|
-
"license": "MIT",
|
|
2766
|
-
"dependencies": {
|
|
2767
|
-
"@typescript-eslint/scope-manager": "8.22.0",
|
|
2768
|
-
"@typescript-eslint/types": "8.22.0",
|
|
2769
|
-
"@typescript-eslint/typescript-estree": "8.22.0",
|
|
2770
|
-
"@typescript-eslint/visitor-keys": "8.22.0",
|
|
2771
|
-
"debug": "^4.3.4"
|
|
2772
|
-
},
|
|
2773
|
-
"engines": {
|
|
2774
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2775
|
-
},
|
|
2776
|
-
"funding": {
|
|
2777
|
-
"type": "opencollective",
|
|
2778
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
2779
|
-
},
|
|
2780
|
-
"peerDependencies": {
|
|
2781
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
2782
|
-
"typescript": ">=4.8.4 <5.8.0"
|
|
2783
|
-
}
|
|
2784
|
-
},
|
|
2785
|
-
"node_modules/typescript-eslint/node_modules/@typescript-eslint/scope-manager": {
|
|
2786
|
-
"version": "8.22.0",
|
|
2787
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.22.0.tgz",
|
|
2788
|
-
"integrity": "sha512-/lwVV0UYgkj7wPSw0o8URy6YI64QmcOdwHuGuxWIYznO6d45ER0wXUbksr9pYdViAofpUCNJx/tAzNukgvaaiQ==",
|
|
2789
|
-
"dev": true,
|
|
2790
|
-
"license": "MIT",
|
|
2791
|
-
"dependencies": {
|
|
2792
|
-
"@typescript-eslint/types": "8.22.0",
|
|
2793
|
-
"@typescript-eslint/visitor-keys": "8.22.0"
|
|
2794
|
-
},
|
|
2795
|
-
"engines": {
|
|
2796
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2797
|
-
},
|
|
2798
|
-
"funding": {
|
|
2799
|
-
"type": "opencollective",
|
|
2800
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
2801
|
-
}
|
|
2802
|
-
},
|
|
2803
|
-
"node_modules/typescript-eslint/node_modules/@typescript-eslint/types": {
|
|
2804
|
-
"version": "8.22.0",
|
|
2805
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.22.0.tgz",
|
|
2806
|
-
"integrity": "sha512-0S4M4baNzp612zwpD4YOieP3VowOARgK2EkN/GBn95hpyF8E2fbMT55sRHWBq+Huaqk3b3XK+rxxlM8sPgGM6A==",
|
|
2807
|
-
"dev": true,
|
|
2808
|
-
"license": "MIT",
|
|
2809
|
-
"engines": {
|
|
2810
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2811
|
-
},
|
|
2812
|
-
"funding": {
|
|
2813
|
-
"type": "opencollective",
|
|
2814
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
2815
|
-
}
|
|
2816
|
-
},
|
|
2817
|
-
"node_modules/typescript-eslint/node_modules/@typescript-eslint/typescript-estree": {
|
|
2818
|
-
"version": "8.22.0",
|
|
2819
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.22.0.tgz",
|
|
2820
|
-
"integrity": "sha512-SJX99NAS2ugGOzpyhMza/tX+zDwjvwAtQFLsBo3GQxiGcvaKlqGBkmZ+Y1IdiSi9h4Q0Lr5ey+Cp9CGWNY/F/w==",
|
|
2942
|
+
"version": "8.39.0",
|
|
2943
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.39.0.tgz",
|
|
2944
|
+
"integrity": "sha512-lH8FvtdtzcHJCkMOKnN73LIn6SLTpoojgJqDAxPm1jCR14eWSGPX8ul/gggBdPMk/d5+u9V854vTYQ8T5jF/1Q==",
|
|
2821
2945
|
"dev": true,
|
|
2822
2946
|
"license": "MIT",
|
|
2823
2947
|
"dependencies": {
|
|
2824
|
-
"@typescript-eslint/
|
|
2825
|
-
"@typescript-eslint/
|
|
2826
|
-
"
|
|
2827
|
-
"
|
|
2828
|
-
"is-glob": "^4.0.3",
|
|
2829
|
-
"minimatch": "^9.0.4",
|
|
2830
|
-
"semver": "^7.6.0",
|
|
2831
|
-
"ts-api-utils": "^2.0.0"
|
|
2832
|
-
},
|
|
2833
|
-
"engines": {
|
|
2834
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2835
|
-
},
|
|
2836
|
-
"funding": {
|
|
2837
|
-
"type": "opencollective",
|
|
2838
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
2839
|
-
},
|
|
2840
|
-
"peerDependencies": {
|
|
2841
|
-
"typescript": ">=4.8.4 <5.8.0"
|
|
2842
|
-
}
|
|
2843
|
-
},
|
|
2844
|
-
"node_modules/typescript-eslint/node_modules/@typescript-eslint/utils": {
|
|
2845
|
-
"version": "8.22.0",
|
|
2846
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.22.0.tgz",
|
|
2847
|
-
"integrity": "sha512-T8oc1MbF8L+Bk2msAvCUzjxVB2Z2f+vXYfcucE2wOmYs7ZUwco5Ep0fYZw8quNwOiw9K8GYVL+Kgc2pETNTLOg==",
|
|
2848
|
-
"dev": true,
|
|
2849
|
-
"license": "MIT",
|
|
2850
|
-
"dependencies": {
|
|
2851
|
-
"@eslint-community/eslint-utils": "^4.4.0",
|
|
2852
|
-
"@typescript-eslint/scope-manager": "8.22.0",
|
|
2853
|
-
"@typescript-eslint/types": "8.22.0",
|
|
2854
|
-
"@typescript-eslint/typescript-estree": "8.22.0"
|
|
2948
|
+
"@typescript-eslint/eslint-plugin": "8.39.0",
|
|
2949
|
+
"@typescript-eslint/parser": "8.39.0",
|
|
2950
|
+
"@typescript-eslint/typescript-estree": "8.39.0",
|
|
2951
|
+
"@typescript-eslint/utils": "8.39.0"
|
|
2855
2952
|
},
|
|
2856
2953
|
"engines": {
|
|
2857
2954
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -2862,51 +2959,7 @@
|
|
|
2862
2959
|
},
|
|
2863
2960
|
"peerDependencies": {
|
|
2864
2961
|
"eslint": "^8.57.0 || ^9.0.0",
|
|
2865
|
-
"typescript": ">=4.8.4 <
|
|
2866
|
-
}
|
|
2867
|
-
},
|
|
2868
|
-
"node_modules/typescript-eslint/node_modules/@typescript-eslint/visitor-keys": {
|
|
2869
|
-
"version": "8.22.0",
|
|
2870
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.22.0.tgz",
|
|
2871
|
-
"integrity": "sha512-AWpYAXnUgvLNabGTy3uBylkgZoosva/miNd1I8Bz3SjotmQPbVqhO4Cczo8AsZ44XVErEBPr/CRSgaj8sG7g0w==",
|
|
2872
|
-
"dev": true,
|
|
2873
|
-
"license": "MIT",
|
|
2874
|
-
"dependencies": {
|
|
2875
|
-
"@typescript-eslint/types": "8.22.0",
|
|
2876
|
-
"eslint-visitor-keys": "^4.2.0"
|
|
2877
|
-
},
|
|
2878
|
-
"engines": {
|
|
2879
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2880
|
-
},
|
|
2881
|
-
"funding": {
|
|
2882
|
-
"type": "opencollective",
|
|
2883
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
2884
|
-
}
|
|
2885
|
-
},
|
|
2886
|
-
"node_modules/typescript-eslint/node_modules/eslint-visitor-keys": {
|
|
2887
|
-
"version": "4.2.0",
|
|
2888
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
|
|
2889
|
-
"integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
|
|
2890
|
-
"dev": true,
|
|
2891
|
-
"license": "Apache-2.0",
|
|
2892
|
-
"engines": {
|
|
2893
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2894
|
-
},
|
|
2895
|
-
"funding": {
|
|
2896
|
-
"url": "https://opencollective.com/eslint"
|
|
2897
|
-
}
|
|
2898
|
-
},
|
|
2899
|
-
"node_modules/typescript-eslint/node_modules/ts-api-utils": {
|
|
2900
|
-
"version": "2.0.0",
|
|
2901
|
-
"resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.0.tgz",
|
|
2902
|
-
"integrity": "sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==",
|
|
2903
|
-
"dev": true,
|
|
2904
|
-
"license": "MIT",
|
|
2905
|
-
"engines": {
|
|
2906
|
-
"node": ">=18.12"
|
|
2907
|
-
},
|
|
2908
|
-
"peerDependencies": {
|
|
2909
|
-
"typescript": ">=4.8.4"
|
|
2962
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
2910
2963
|
}
|
|
2911
2964
|
},
|
|
2912
2965
|
"node_modules/undici-types": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orq-ai/node",
|
|
3
|
-
"version": "3.11.0-rc.
|
|
3
|
+
"version": "3.11.0-rc.1",
|
|
4
4
|
"author": "Orq",
|
|
5
5
|
"bin": {
|
|
6
6
|
"mcp": "bin/mcp-server.js"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"express": "^4.21.2",
|
|
36
36
|
"globals": "^15.14.0",
|
|
37
37
|
"typescript": "~5.8.3",
|
|
38
|
-
"typescript-eslint": "^8.
|
|
38
|
+
"typescript-eslint": "^8.26.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"zod": "^3.20.0"
|
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "3.11.0-rc.
|
|
72
|
-
genVersion: "2.674.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.11.0-rc.
|
|
71
|
+
sdkVersion: "3.11.0-rc.1",
|
|
72
|
+
genVersion: "2.674.3",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.11.0-rc.1 2.674.3 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|