@orq-ai/node 4.4.2 → 4.4.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.
Files changed (114) hide show
  1. package/jsr.json +1 -1
  2. package/lib/config.d.ts +3 -3
  3. package/lib/config.js +3 -3
  4. package/lib/event-streams.d.ts +3 -3
  5. package/lib/event-streams.d.ts.map +1 -1
  6. package/models/components/partdoneevent.js +1 -1
  7. package/models/components/reasoningpart.js +1 -1
  8. package/models/operations/createcontact.js +1 -1
  9. package/models/operations/createdataset.js +1 -1
  10. package/models/operations/createdatasetitem.js +4 -4
  11. package/models/operations/createdatasource.js +1 -1
  12. package/models/operations/createeval.js +16 -16
  13. package/models/operations/createidentity.js +1 -1
  14. package/models/operations/createtool.js +6 -6
  15. package/models/operations/fileget.js +1 -1
  16. package/models/operations/filelist.js +1 -1
  17. package/models/operations/fileupload.js +1 -1
  18. package/models/operations/getalltools.js +6 -6
  19. package/models/operations/getevals.js +16 -16
  20. package/models/operations/listdatasetdatapoints.js +4 -4
  21. package/models/operations/listdatasets.js +1 -1
  22. package/models/operations/listdatasources.js +1 -1
  23. package/models/operations/listidentities.js +1 -1
  24. package/models/operations/retrievedatapoint.js +4 -4
  25. package/models/operations/retrievedataset.js +1 -1
  26. package/models/operations/retrievedatasource.js +1 -1
  27. package/models/operations/retrieveidentity.js +1 -1
  28. package/models/operations/retrievetool.js +6 -6
  29. package/models/operations/runagent.js +1 -1
  30. package/models/operations/streamrunagent.js +1 -1
  31. package/models/operations/updatedatapoint.js +4 -4
  32. package/models/operations/updatedataset.js +1 -1
  33. package/models/operations/updatedatasource.js +1 -1
  34. package/models/operations/updateeval.js +16 -16
  35. package/models/operations/updateidentity.js +1 -1
  36. package/models/operations/updatetool.js +7 -7
  37. package/package.json +1 -1
  38. package/packages/orq-rc/src/lib/config.ts +3 -3
  39. package/packages/orq-rc/src/lib/event-streams.ts +3 -3
  40. package/packages/orq-rc/src/models/components/partdoneevent.ts +1 -1
  41. package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
  42. package/packages/orq-rc/src/models/operations/createcontact.ts +1 -1
  43. package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
  44. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
  45. package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
  46. package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
  47. package/packages/orq-rc/src/models/operations/createidentity.ts +1 -1
  48. package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
  49. package/packages/orq-rc/src/models/operations/fileget.ts +1 -1
  50. package/packages/orq-rc/src/models/operations/filelist.ts +1 -1
  51. package/packages/orq-rc/src/models/operations/fileupload.ts +1 -1
  52. package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
  53. package/packages/orq-rc/src/models/operations/getevals.ts +16 -16
  54. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
  55. package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
  56. package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
  57. package/packages/orq-rc/src/models/operations/listidentities.ts +1 -1
  58. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
  59. package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
  60. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
  61. package/packages/orq-rc/src/models/operations/retrieveidentity.ts +1 -1
  62. package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
  63. package/packages/orq-rc/src/models/operations/runagent.ts +1 -1
  64. package/packages/orq-rc/src/models/operations/streamrunagent.ts +1 -1
  65. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
  66. package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
  67. package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
  68. package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
  69. package/packages/orq-rc/src/models/operations/updateidentity.ts +1 -1
  70. package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
  71. package/src/lib/config.ts +3 -3
  72. package/src/lib/event-streams.ts +3 -3
  73. package/src/models/components/partdoneevent.ts +1 -1
  74. package/src/models/components/reasoningpart.ts +1 -1
  75. package/src/models/operations/createcontact.ts +1 -1
  76. package/src/models/operations/createdataset.ts +1 -1
  77. package/src/models/operations/createdatasetitem.ts +4 -4
  78. package/src/models/operations/createdatasource.ts +1 -1
  79. package/src/models/operations/createeval.ts +16 -16
  80. package/src/models/operations/createidentity.ts +1 -1
  81. package/src/models/operations/createtool.ts +6 -6
  82. package/src/models/operations/fileget.ts +1 -1
  83. package/src/models/operations/filelist.ts +1 -1
  84. package/src/models/operations/fileupload.ts +1 -1
  85. package/src/models/operations/getalltools.ts +6 -6
  86. package/src/models/operations/getevals.ts +16 -16
  87. package/src/models/operations/listdatasetdatapoints.ts +4 -4
  88. package/src/models/operations/listdatasets.ts +1 -1
  89. package/src/models/operations/listdatasources.ts +1 -1
  90. package/src/models/operations/listidentities.ts +1 -1
  91. package/src/models/operations/retrievedatapoint.ts +4 -4
  92. package/src/models/operations/retrievedataset.ts +1 -1
  93. package/src/models/operations/retrievedatasource.ts +1 -1
  94. package/src/models/operations/retrieveidentity.ts +1 -1
  95. package/src/models/operations/retrievetool.ts +6 -6
  96. package/src/models/operations/runagent.ts +1 -1
  97. package/src/models/operations/streamrunagent.ts +1 -1
  98. package/src/models/operations/updatedatapoint.ts +4 -4
  99. package/src/models/operations/updatedataset.ts +1 -1
  100. package/src/models/operations/updatedatasource.ts +1 -1
  101. package/src/models/operations/updateeval.ts +16 -16
  102. package/src/models/operations/updateidentity.ts +1 -1
  103. package/src/models/operations/updatetool.ts +7 -7
  104. package/_speakeasy/.github/action-inputs-config.json +0 -53
  105. package/_speakeasy/.github/action-security-config.json +0 -88
  106. package/examples/package-lock.json +0 -613
  107. package/examples/package.json +0 -18
  108. package/packages/orq-rc/examples/package-lock.json +0 -610
  109. package/packages/orq-rc/examples/package.json +0 -18
  110. package/packages/orq-rc/jsr.json +0 -28
  111. package/packages/orq-rc/package-lock.json +0 -1740
  112. package/packages/orq-rc/package.json +0 -30
  113. package/packages/orq-rc/tsconfig.json +0 -40
  114. package/tsconfig.json +0 -40
@@ -1,30 +0,0 @@
1
- {
2
- "name": "@orq-ai/node",
3
- "version": "4.5.0-rc.0",
4
- "author": "Orq",
5
- "main": "./index.js",
6
- "sideEffects": false,
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/orq-ai/orq-node.git",
10
- "directory": "packages/orq-rc"
11
- },
12
- "scripts": {
13
- "lint": "eslint --cache --max-warnings=0 src",
14
- "build": "tsc",
15
- "prepublishOnly": "npm run build"
16
- },
17
- "peerDependencies": {
18
-
19
- },
20
- "devDependencies": {
21
- "@eslint/js": "^9.26.0",
22
- "eslint": "^9.26.0",
23
- "globals": "^15.14.0",
24
- "typescript": "~5.8.3",
25
- "typescript-eslint": "^8.26.0"
26
- },
27
- "dependencies": {
28
- "zod": "^3.25.0 || ^4.0.0"
29
- }
30
- }
@@ -1,40 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "incremental": false,
4
- "target": "ES2020",
5
- "lib": ["ES2022", "DOM", "DOM.Iterable"],
6
- "jsx": "react-jsx",
7
-
8
- "module": "Node16",
9
- "moduleResolution": "Node16",
10
-
11
- "allowJs": true,
12
-
13
- "declaration": true,
14
- "declarationMap": true,
15
- "sourceMap": true,
16
- "outDir": ".",
17
-
18
-
19
- // https://github.com/tsconfig/bases/blob/a1bf7c0fa2e094b068ca3e1448ca2ece4157977e/bases/strictest.json
20
- "strict": true,
21
- "allowUnusedLabels": false,
22
- "allowUnreachableCode": false,
23
- "exactOptionalPropertyTypes": true,
24
- "useUnknownInCatchVariables": true,
25
- "noFallthroughCasesInSwitch": true,
26
- "noImplicitOverride": true,
27
- "noImplicitReturns": true,
28
- "noPropertyAccessFromIndexSignature": true,
29
- "noUncheckedIndexedAccess": true,
30
- "noUnusedLocals": true,
31
- "noUnusedParameters": true,
32
- "isolatedModules": true,
33
- "checkJs": true,
34
- "esModuleInterop": true,
35
- "skipLibCheck": true,
36
- "forceConsistentCasingInFileNames": true
37
- },
38
- "include": ["src"],
39
- "exclude": ["node_modules"]
40
- }
package/tsconfig.json DELETED
@@ -1,40 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "incremental": false,
4
- "target": "ES2020",
5
- "lib": ["ES2022", "DOM", "DOM.Iterable"],
6
- "jsx": "react-jsx",
7
-
8
- "module": "Node16",
9
- "moduleResolution": "Node16",
10
-
11
- "allowJs": true,
12
-
13
- "declaration": true,
14
- "declarationMap": true,
15
- "sourceMap": true,
16
- "outDir": ".",
17
-
18
-
19
- // https://github.com/tsconfig/bases/blob/a1bf7c0fa2e094b068ca3e1448ca2ece4157977e/bases/strictest.json
20
- "strict": true,
21
- "allowUnusedLabels": false,
22
- "allowUnreachableCode": false,
23
- "exactOptionalPropertyTypes": true,
24
- "useUnknownInCatchVariables": true,
25
- "noFallthroughCasesInSwitch": true,
26
- "noImplicitOverride": true,
27
- "noImplicitReturns": true,
28
- "noPropertyAccessFromIndexSignature": true,
29
- "noUncheckedIndexedAccess": true,
30
- "noUnusedLocals": true,
31
- "noUnusedParameters": true,
32
- "isolatedModules": true,
33
- "checkJs": true,
34
- "esModuleInterop": true,
35
- "skipLibCheck": true,
36
- "forceConsistentCasingInFileNames": true
37
- },
38
- "include": ["src"],
39
- "exclude": ["node_modules"]
40
- }