@harperfast/harper 5.2.13 → 5.3.0-beta.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.
Files changed (655) hide show
  1. package/agent/mcpTools.ts +1 -1
  2. package/agent/session.ts +25 -14
  3. package/bin/cliOperations.ts +58 -9
  4. package/bin/copyDb.ts +282 -59
  5. package/bin/deploySetup.ts +16 -5
  6. package/bin/harper.ts +1 -1
  7. package/bin/help.ts +4 -1
  8. package/bin/lite.ts +4 -1
  9. package/bin/restart.ts +120 -4
  10. package/bin/run.ts +6 -11
  11. package/bin/upgrade.js +7 -3
  12. package/bin/workloadIdentity.ts +119 -0
  13. package/components/Application.ts +3436 -242
  14. package/components/ApplicationScope.ts +8 -0
  15. package/components/EntryHandler.ts +59 -39
  16. package/components/OptionsWatcher.ts +440 -98
  17. package/components/RuntimeModuleTracker.ts +38 -7
  18. package/components/Scope.ts +56 -15
  19. package/components/awaitRestart.ts +84 -0
  20. package/components/componentLoader.ts +381 -32
  21. package/components/componentPreparationLock.ts +16 -5
  22. package/components/deploymentOperations.ts +4 -1
  23. package/components/deploymentRecorder.ts +9 -2
  24. package/components/mcp/adapters/harperHttp.ts +4 -0
  25. package/components/mcp/listChanged.ts +4 -0
  26. package/components/mcp/toolRegistry.ts +2 -0
  27. package/components/mcp/tools/operations.ts +9 -0
  28. package/components/mcp/tools/schemas/operationDescriptions.ts +2 -2
  29. package/components/operations.js +537 -113
  30. package/components/operationsValidation.js +98 -3
  31. package/components/packageComponent.ts +25 -1
  32. package/components/requestRestart.ts +11 -0
  33. package/components/status/ComponentStatusRegistry.ts +59 -0
  34. package/config/RootConfigWatcher.ts +240 -40
  35. package/config/configReadRetry.ts +62 -0
  36. package/config/configUtils.ts +357 -48
  37. package/config/harperConfigEnvVars.ts +170 -27
  38. package/config/parseConfigFile.ts +34 -0
  39. package/config/readConfigFileSync.ts +44 -0
  40. package/config/watcherArming.ts +59 -0
  41. package/config-root.schema.json +33 -0
  42. package/dataLayer/blobBackup.ts +160 -50
  43. package/dataLayer/delete.ts +6 -1
  44. package/dataLayer/harperBridge/ResourceBridge.ts +80 -10
  45. package/dataLayer/harperBridge/lmdbBridge/lmdbMethods/DeleteAuditLogsBeforeResults.js +3 -1
  46. package/dataLayer/hdbInfoController.ts +34 -1
  47. package/dataLayer/insert.ts +44 -1
  48. package/dataLayer/rocksdbBackup.ts +53 -10
  49. package/dataLayer/schema.ts +11 -1
  50. package/dataLayer/schemaDescribe.ts +8 -1
  51. package/dist/agent/mcpTools.js +1 -1
  52. package/dist/agent/mcpTools.js.map +1 -1
  53. package/dist/agent/session.d.ts +22 -0
  54. package/dist/agent/session.js +26 -15
  55. package/dist/agent/session.js.map +1 -1
  56. package/dist/bin/cliOperations.js +61 -9
  57. package/dist/bin/cliOperations.js.map +1 -1
  58. package/dist/bin/copyDb.d.ts +12 -1
  59. package/dist/bin/copyDb.js +248 -60
  60. package/dist/bin/copyDb.js.map +1 -1
  61. package/dist/bin/deploySetup.d.ts +2 -0
  62. package/dist/bin/deploySetup.js +11 -3
  63. package/dist/bin/deploySetup.js.map +1 -1
  64. package/dist/bin/harper.js +1 -1
  65. package/dist/bin/harper.js.map +1 -1
  66. package/dist/bin/help.js +4 -1
  67. package/dist/bin/help.js.map +1 -1
  68. package/dist/bin/lite.js +4 -1
  69. package/dist/bin/lite.js.map +1 -1
  70. package/dist/bin/restart.js +91 -6
  71. package/dist/bin/restart.js.map +1 -1
  72. package/dist/bin/run.js +4 -10
  73. package/dist/bin/run.js.map +1 -1
  74. package/dist/bin/upgrade.js +4 -3
  75. package/dist/bin/upgrade.js.map +1 -1
  76. package/dist/bin/workloadIdentity.d.ts +18 -0
  77. package/dist/bin/workloadIdentity.js +100 -0
  78. package/dist/bin/workloadIdentity.js.map +1 -0
  79. package/dist/components/Application.d.ts +235 -17
  80. package/dist/components/Application.js +3038 -238
  81. package/dist/components/Application.js.map +1 -1
  82. package/dist/components/ApplicationScope.d.ts +8 -0
  83. package/dist/components/ApplicationScope.js +7 -0
  84. package/dist/components/ApplicationScope.js.map +1 -1
  85. package/dist/components/EntryHandler.js +26 -10
  86. package/dist/components/EntryHandler.js.map +1 -1
  87. package/dist/components/OptionsWatcher.d.ts +4 -0
  88. package/dist/components/OptionsWatcher.js +440 -99
  89. package/dist/components/OptionsWatcher.js.map +1 -1
  90. package/dist/components/RuntimeModuleTracker.js +40 -6
  91. package/dist/components/RuntimeModuleTracker.js.map +1 -1
  92. package/dist/components/Scope.js +52 -13
  93. package/dist/components/Scope.js.map +1 -1
  94. package/dist/components/awaitRestart.d.ts +33 -0
  95. package/dist/components/awaitRestart.js +61 -0
  96. package/dist/components/awaitRestart.js.map +1 -0
  97. package/dist/components/componentLoader.d.ts +38 -1
  98. package/dist/components/componentLoader.js +313 -24
  99. package/dist/components/componentLoader.js.map +1 -1
  100. package/dist/components/componentPreparationLock.d.ts +5 -0
  101. package/dist/components/componentPreparationLock.js +14 -6
  102. package/dist/components/componentPreparationLock.js.map +1 -1
  103. package/dist/components/deploymentOperations.js +4 -1
  104. package/dist/components/deploymentOperations.js.map +1 -1
  105. package/dist/components/deploymentRecorder.d.ts +4 -2
  106. package/dist/components/deploymentRecorder.js +1 -0
  107. package/dist/components/deploymentRecorder.js.map +1 -1
  108. package/dist/components/mcp/adapters/harperHttp.js +4 -0
  109. package/dist/components/mcp/adapters/harperHttp.js.map +1 -1
  110. package/dist/components/mcp/listChanged.js +5 -0
  111. package/dist/components/mcp/listChanged.js.map +1 -1
  112. package/dist/components/mcp/toolRegistry.d.ts +1 -0
  113. package/dist/components/mcp/toolRegistry.js.map +1 -1
  114. package/dist/components/mcp/tools/operations.d.ts +5 -0
  115. package/dist/components/mcp/tools/operations.js +9 -0
  116. package/dist/components/mcp/tools/operations.js.map +1 -1
  117. package/dist/components/mcp/tools/schemas/operationDescriptions.js +2 -2
  118. package/dist/components/mcp/tools/schemas/operationDescriptions.js.map +1 -1
  119. package/dist/components/operations.d.ts +28 -0
  120. package/dist/components/operations.js +476 -113
  121. package/dist/components/operations.js.map +1 -1
  122. package/dist/components/operationsValidation.js +97 -3
  123. package/dist/components/operationsValidation.js.map +1 -1
  124. package/dist/components/packageComponent.js +24 -0
  125. package/dist/components/packageComponent.js.map +1 -1
  126. package/dist/components/requestRestart.d.ts +1 -0
  127. package/dist/components/requestRestart.js +7 -0
  128. package/dist/components/requestRestart.js.map +1 -1
  129. package/dist/components/status/ComponentStatusRegistry.d.ts +0 -4
  130. package/dist/components/status/ComponentStatusRegistry.js +63 -0
  131. package/dist/components/status/ComponentStatusRegistry.js.map +1 -1
  132. package/dist/config/RootConfigWatcher.d.ts +9 -1
  133. package/dist/config/RootConfigWatcher.js +228 -37
  134. package/dist/config/RootConfigWatcher.js.map +1 -1
  135. package/dist/config/configReadRetry.d.ts +8 -0
  136. package/dist/config/configReadRetry.js +62 -0
  137. package/dist/config/configReadRetry.js.map +1 -0
  138. package/dist/config/configUtils.d.ts +11 -2
  139. package/dist/config/configUtils.js +304 -47
  140. package/dist/config/configUtils.js.map +1 -1
  141. package/dist/config/harperConfigEnvVars.d.ts +16 -0
  142. package/dist/config/harperConfigEnvVars.js +162 -25
  143. package/dist/config/harperConfigEnvVars.js.map +1 -1
  144. package/dist/config/parseConfigFile.d.ts +4 -0
  145. package/dist/config/parseConfigFile.js +35 -0
  146. package/dist/config/parseConfigFile.js.map +1 -0
  147. package/dist/config/readConfigFileSync.d.ts +1 -0
  148. package/dist/config/readConfigFileSync.js +47 -0
  149. package/dist/config/readConfigFileSync.js.map +1 -0
  150. package/dist/config/watcherArming.d.ts +15 -0
  151. package/dist/config/watcherArming.js +59 -0
  152. package/dist/config/watcherArming.js.map +1 -0
  153. package/dist/dataLayer/blobBackup.d.ts +49 -20
  154. package/dist/dataLayer/blobBackup.js +139 -50
  155. package/dist/dataLayer/blobBackup.js.map +1 -1
  156. package/dist/dataLayer/delete.js +1 -1
  157. package/dist/dataLayer/delete.js.map +1 -1
  158. package/dist/dataLayer/harperBridge/ResourceBridge.d.ts +14 -1
  159. package/dist/dataLayer/harperBridge/ResourceBridge.js +72 -12
  160. package/dist/dataLayer/harperBridge/ResourceBridge.js.map +1 -1
  161. package/dist/dataLayer/harperBridge/lmdbBridge/lmdbMethods/DeleteAuditLogsBeforeResults.d.ts +3 -1
  162. package/dist/dataLayer/harperBridge/lmdbBridge/lmdbMethods/DeleteAuditLogsBeforeResults.js +3 -1
  163. package/dist/dataLayer/harperBridge/lmdbBridge/lmdbMethods/DeleteAuditLogsBeforeResults.js.map +1 -1
  164. package/dist/dataLayer/hdbInfoController.d.ts +10 -0
  165. package/dist/dataLayer/hdbInfoController.js +30 -1
  166. package/dist/dataLayer/hdbInfoController.js.map +1 -1
  167. package/dist/dataLayer/insert.d.ts +9 -1
  168. package/dist/dataLayer/insert.js +30 -0
  169. package/dist/dataLayer/insert.js.map +1 -1
  170. package/dist/dataLayer/rocksdbBackup.d.ts +2 -2
  171. package/dist/dataLayer/rocksdbBackup.js +45 -8
  172. package/dist/dataLayer/rocksdbBackup.js.map +1 -1
  173. package/dist/dataLayer/schema.js +8 -0
  174. package/dist/dataLayer/schema.js.map +1 -1
  175. package/dist/dataLayer/schemaDescribe.js +8 -1
  176. package/dist/dataLayer/schemaDescribe.js.map +1 -1
  177. package/dist/index.d.ts +2 -1
  178. package/dist/index.js +4 -1
  179. package/dist/index.js.map +1 -1
  180. package/dist/json/systemSchema.json +55 -0
  181. package/dist/resources/DatabaseTransaction.d.ts +77 -0
  182. package/dist/resources/DatabaseTransaction.js +586 -54
  183. package/dist/resources/DatabaseTransaction.js.map +1 -1
  184. package/dist/resources/LMDBTransaction.d.ts +2 -1
  185. package/dist/resources/LMDBTransaction.js +43 -6
  186. package/dist/resources/LMDBTransaction.js.map +1 -1
  187. package/dist/resources/PrimaryRocksDatabase.d.ts +1 -0
  188. package/dist/resources/PrimaryRocksDatabase.js +49 -5
  189. package/dist/resources/PrimaryRocksDatabase.js.map +1 -1
  190. package/dist/resources/RecordEncoder.d.ts +20 -0
  191. package/dist/resources/RecordEncoder.js +110 -9
  192. package/dist/resources/RecordEncoder.js.map +1 -1
  193. package/dist/resources/RequestTarget.d.ts +2 -0
  194. package/dist/resources/RequestTarget.js.map +1 -1
  195. package/dist/resources/Resource.js +117 -24
  196. package/dist/resources/Resource.js.map +1 -1
  197. package/dist/resources/ResourceInterface.d.ts +28 -1
  198. package/dist/resources/ResourceInterface.js.map +1 -1
  199. package/dist/resources/RocksIndexStore.d.ts +6 -1
  200. package/dist/resources/RocksIndexStore.js +24 -9
  201. package/dist/resources/RocksIndexStore.js.map +1 -1
  202. package/dist/resources/RocksTransactionLogStore.d.ts +24 -1
  203. package/dist/resources/RocksTransactionLogStore.js +160 -49
  204. package/dist/resources/RocksTransactionLogStore.js.map +1 -1
  205. package/dist/resources/Table.d.ts +165 -10
  206. package/dist/resources/Table.js +1805 -303
  207. package/dist/resources/Table.js.map +1 -1
  208. package/dist/resources/analytics/write.js +10 -3
  209. package/dist/resources/analytics/write.js.map +1 -1
  210. package/dist/resources/auditStore.d.ts +181 -2
  211. package/dist/resources/auditStore.js +640 -29
  212. package/dist/resources/auditStore.js.map +1 -1
  213. package/dist/resources/blob.d.ts +129 -9
  214. package/dist/resources/blob.js +992 -114
  215. package/dist/resources/blob.js.map +1 -1
  216. package/dist/resources/branchDatabase.d.ts +48 -0
  217. package/dist/resources/branchDatabase.js +892 -0
  218. package/dist/resources/branchDatabase.js.map +1 -0
  219. package/dist/resources/crdt.js +50 -12
  220. package/dist/resources/crdt.js.map +1 -1
  221. package/dist/resources/dataLoader.js +3 -4
  222. package/dist/resources/dataLoader.js.map +1 -1
  223. package/dist/resources/databases.d.ts +157 -14
  224. package/dist/resources/databases.js +1462 -325
  225. package/dist/resources/databases.js.map +1 -1
  226. package/dist/resources/defineTable.d.ts +10 -2
  227. package/dist/resources/defineTable.js +9 -1
  228. package/dist/resources/defineTable.js.map +1 -1
  229. package/dist/resources/derivedIndexRegistry.d.ts +5 -0
  230. package/dist/resources/derivedIndexRegistry.js +68 -0
  231. package/dist/resources/derivedIndexRegistry.js.map +1 -0
  232. package/dist/resources/derivedIndexRuntime.d.ts +215 -0
  233. package/dist/resources/derivedIndexRuntime.js +2027 -0
  234. package/dist/resources/derivedIndexRuntime.js.map +1 -0
  235. package/dist/resources/graphql.d.ts +1 -1
  236. package/dist/resources/graphql.js +52 -16
  237. package/dist/resources/graphql.js.map +1 -1
  238. package/dist/resources/indexes/HierarchicalNavigableSmallWorld.d.ts +103 -9
  239. package/dist/resources/indexes/HierarchicalNavigableSmallWorld.js +854 -41
  240. package/dist/resources/indexes/HierarchicalNavigableSmallWorld.js.map +1 -1
  241. package/dist/resources/indexes/hnswDerivedIndex.d.ts +67 -0
  242. package/dist/resources/indexes/hnswDerivedIndex.js +464 -0
  243. package/dist/resources/indexes/hnswDerivedIndex.js.map +1 -0
  244. package/dist/resources/indexes/hnswPlaneBinding.d.ts +65 -0
  245. package/dist/resources/indexes/hnswPlaneBinding.js +91 -0
  246. package/dist/resources/indexes/hnswPlaneBinding.js.map +1 -0
  247. package/dist/resources/longLivedTransactions.d.ts +71 -0
  248. package/dist/resources/longLivedTransactions.js +358 -0
  249. package/dist/resources/longLivedTransactions.js.map +1 -0
  250. package/dist/resources/models/backendRegistry.d.ts +26 -0
  251. package/dist/resources/models/backendRegistry.js +60 -2
  252. package/dist/resources/models/backendRegistry.js.map +1 -1
  253. package/dist/resources/models/bootstrap.d.ts +33 -1
  254. package/dist/resources/models/bootstrap.js +416 -31
  255. package/dist/resources/models/bootstrap.js.map +1 -1
  256. package/dist/resources/nodeIdMapping.d.ts +5 -0
  257. package/dist/resources/nodeIdMapping.js +49 -0
  258. package/dist/resources/nodeIdMapping.js.map +1 -1
  259. package/dist/resources/recordLock.d.ts +123 -0
  260. package/dist/resources/recordLock.js +315 -0
  261. package/dist/resources/recordLock.js.map +1 -0
  262. package/dist/resources/recordLockCoordinator.d.ts +557 -0
  263. package/dist/resources/recordLockCoordinator.js +2565 -0
  264. package/dist/resources/recordLockCoordinator.js.map +1 -0
  265. package/dist/resources/replayLogs.d.ts +14 -1
  266. package/dist/resources/replayLogs.js +157 -24
  267. package/dist/resources/replayLogs.js.map +1 -1
  268. package/dist/resources/replayLogsGuards.d.ts +94 -7
  269. package/dist/resources/replayLogsGuards.js +111 -7
  270. package/dist/resources/replayLogsGuards.js.map +1 -1
  271. package/dist/resources/replicatedApplyFailure.d.ts +16 -0
  272. package/dist/resources/replicatedApplyFailure.js +63 -0
  273. package/dist/resources/replicatedApplyFailure.js.map +1 -0
  274. package/dist/resources/scheduler/scheduler.js +3 -3
  275. package/dist/resources/scheduler/scheduler.js.map +1 -1
  276. package/dist/resources/search.d.ts +10 -4
  277. package/dist/resources/search.js +283 -37
  278. package/dist/resources/search.js.map +1 -1
  279. package/dist/resources/tracked.d.ts +5 -1
  280. package/dist/resources/tracked.js +74 -23
  281. package/dist/resources/tracked.js.map +1 -1
  282. package/dist/resources/transactionBroadcast.d.ts +1 -1
  283. package/dist/resources/transactionBroadcast.js +2 -2
  284. package/dist/resources/transactionBroadcast.js.map +1 -1
  285. package/dist/security/auth.js +61 -30
  286. package/dist/security/auth.js.map +1 -1
  287. package/dist/security/authn/oidc/claims.d.ts +22 -0
  288. package/dist/security/authn/oidc/claims.js +71 -0
  289. package/dist/security/authn/oidc/claims.js.map +1 -0
  290. package/dist/security/authn/oidc/identityToken.d.ts +27 -0
  291. package/dist/security/authn/oidc/identityToken.js +111 -0
  292. package/dist/security/authn/oidc/identityToken.js.map +1 -0
  293. package/dist/security/authn/oidc/jwks.d.ts +25 -0
  294. package/dist/security/authn/oidc/jwks.js +261 -0
  295. package/dist/security/authn/oidc/jwks.js.map +1 -0
  296. package/dist/security/authn/oidc/providers/generic.d.ts +13 -0
  297. package/dist/security/authn/oidc/providers/generic.js +34 -0
  298. package/dist/security/authn/oidc/providers/generic.js.map +1 -0
  299. package/dist/security/authn/oidc/providers/githubActions.d.ts +11 -0
  300. package/dist/security/authn/oidc/providers/githubActions.js +129 -0
  301. package/dist/security/authn/oidc/providers/githubActions.js.map +1 -0
  302. package/dist/security/authn/oidc/providers/index.d.ts +37 -0
  303. package/dist/security/authn/oidc/providers/index.js +24 -0
  304. package/dist/security/authn/oidc/providers/index.js.map +1 -0
  305. package/dist/security/authn/oidc/tokenExchange.d.ts +12 -0
  306. package/dist/security/authn/oidc/tokenExchange.js +306 -0
  307. package/dist/security/authn/oidc/tokenExchange.js.map +1 -0
  308. package/dist/security/authn/oidc/trustPolicyOperations.d.ts +49 -0
  309. package/dist/security/authn/oidc/trustPolicyOperations.js +358 -0
  310. package/dist/security/authn/oidc/trustPolicyOperations.js.map +1 -0
  311. package/dist/security/authn/oidc/types.d.ts +38 -0
  312. package/dist/security/authn/oidc/types.js +6 -0
  313. package/dist/security/authn/oidc/types.js.map +1 -0
  314. package/dist/security/certificateVerification/index.js +40 -11
  315. package/dist/security/certificateVerification/index.js.map +1 -1
  316. package/dist/security/certificateVerification/trustedIssuers.d.ts +24 -0
  317. package/dist/security/certificateVerification/trustedIssuers.js +79 -0
  318. package/dist/security/certificateVerification/trustedIssuers.js.map +1 -0
  319. package/dist/security/certificateVerification/types.d.ts +1 -0
  320. package/dist/security/credentialProvenance.d.ts +35 -0
  321. package/dist/security/credentialProvenance.js +51 -0
  322. package/dist/security/credentialProvenance.js.map +1 -0
  323. package/dist/security/credentialRejection.d.ts +4 -0
  324. package/dist/security/credentialRejection.js +24 -0
  325. package/dist/security/credentialRejection.js.map +1 -0
  326. package/dist/security/deferredAuthentication.d.ts +36 -0
  327. package/dist/security/deferredAuthentication.js +70 -0
  328. package/dist/security/deferredAuthentication.js.map +1 -0
  329. package/dist/security/impersonation.d.ts +21 -0
  330. package/dist/security/impersonation.js +108 -9
  331. package/dist/security/impersonation.js.map +1 -1
  332. package/dist/security/jsLoader.d.ts +6 -0
  333. package/dist/security/jsLoader.js +77 -15
  334. package/dist/security/jsLoader.js.map +1 -1
  335. package/dist/security/keys.js +301 -71
  336. package/dist/security/keys.js.map +1 -1
  337. package/dist/security/operationScope.d.ts +21 -0
  338. package/dist/security/operationScope.js +36 -0
  339. package/dist/security/operationScope.js.map +1 -0
  340. package/dist/security/permissionsTranslator.js +21 -0
  341. package/dist/security/permissionsTranslator.js.map +1 -1
  342. package/dist/security/tokenAuthentication.d.ts +19 -1
  343. package/dist/security/tokenAuthentication.js +191 -10
  344. package/dist/security/tokenAuthentication.js.map +1 -1
  345. package/dist/security/user.js +4 -3
  346. package/dist/security/user.js.map +1 -1
  347. package/dist/server/DurableSubscriptionsSession.d.ts +2 -2
  348. package/dist/server/DurableSubscriptionsSession.js +67 -10
  349. package/dist/server/DurableSubscriptionsSession.js.map +1 -1
  350. package/dist/server/REST.js +106 -2
  351. package/dist/server/REST.js.map +1 -1
  352. package/dist/server/graphqlQuerying.js +4 -0
  353. package/dist/server/graphqlQuerying.js.map +1 -1
  354. package/dist/server/http.d.ts +16 -1
  355. package/dist/server/http.js +122 -17
  356. package/dist/server/http.js.map +1 -1
  357. package/dist/server/itc/serverHandlers.js +8 -1
  358. package/dist/server/itc/serverHandlers.js.map +1 -1
  359. package/dist/server/jobs/jobProcess.js +6 -2
  360. package/dist/server/jobs/jobProcess.js.map +1 -1
  361. package/dist/server/jobs/jobs.js +4 -1
  362. package/dist/server/jobs/jobs.js.map +1 -1
  363. package/dist/server/liveSubscriptionAuth.d.ts +26 -4
  364. package/dist/server/liveSubscriptionAuth.js +105 -39
  365. package/dist/server/liveSubscriptionAuth.js.map +1 -1
  366. package/dist/server/loadRootComponents.js +49 -10
  367. package/dist/server/loadRootComponents.js.map +1 -1
  368. package/dist/server/mqtt.d.ts +2 -0
  369. package/dist/server/mqtt.js +165 -30
  370. package/dist/server/mqtt.js.map +1 -1
  371. package/dist/server/nodeName.d.ts +2 -0
  372. package/dist/server/nodeName.js +107 -23
  373. package/dist/server/nodeName.js.map +1 -1
  374. package/dist/server/serverHelpers/Headers.d.ts +27 -0
  375. package/dist/server/serverHelpers/Headers.js +145 -1
  376. package/dist/server/serverHelpers/Headers.js.map +1 -1
  377. package/dist/server/serverHelpers/NodeAdapterResponse.d.ts +48 -0
  378. package/dist/server/serverHelpers/NodeAdapterResponse.js +220 -0
  379. package/dist/server/serverHelpers/NodeAdapterResponse.js.map +1 -0
  380. package/dist/server/serverHelpers/Request.d.ts +5 -10
  381. package/dist/server/serverHelpers/Request.js +38 -136
  382. package/dist/server/serverHelpers/Request.js.map +1 -1
  383. package/dist/server/serverHelpers/contentTypes.d.ts +11 -0
  384. package/dist/server/serverHelpers/contentTypes.js +221 -40
  385. package/dist/server/serverHelpers/contentTypes.js.map +1 -1
  386. package/dist/server/serverHelpers/deployValidationState.d.ts +3 -0
  387. package/dist/server/serverHelpers/deployValidationState.js +9 -19
  388. package/dist/server/serverHelpers/deployValidationState.js.map +1 -1
  389. package/dist/server/serverHelpers/operationAuthorizationState.d.ts +12 -0
  390. package/dist/server/serverHelpers/operationAuthorizationState.js +24 -2
  391. package/dist/server/serverHelpers/operationAuthorizationState.js.map +1 -1
  392. package/dist/server/serverHelpers/registeredOperations.d.ts +5 -4
  393. package/dist/server/serverHelpers/registeredOperations.js +74 -21
  394. package/dist/server/serverHelpers/registeredOperations.js.map +1 -1
  395. package/dist/server/serverHelpers/requestSanitization.d.ts +11 -0
  396. package/dist/server/serverHelpers/requestSanitization.js +20 -0
  397. package/dist/server/serverHelpers/requestSanitization.js.map +1 -0
  398. package/dist/server/serverHelpers/serverHandlers.js +6 -3
  399. package/dist/server/serverHelpers/serverHandlers.js.map +1 -1
  400. package/dist/server/serverHelpers/serverUtilities.d.ts +18 -0
  401. package/dist/server/serverHelpers/serverUtilities.js +178 -29
  402. package/dist/server/serverHelpers/serverUtilities.js.map +1 -1
  403. package/dist/server/serverHelpers/sharedMessageEncoding.d.ts +67 -0
  404. package/dist/server/serverHelpers/sharedMessageEncoding.js +280 -0
  405. package/dist/server/serverHelpers/sharedMessageEncoding.js.map +1 -0
  406. package/dist/server/serverHelpers/uwsServer.js +19 -1
  407. package/dist/server/serverHelpers/uwsServer.js.map +1 -1
  408. package/dist/server/static.js +24 -28
  409. package/dist/server/static.js.map +1 -1
  410. package/dist/server/storageReclamation.d.ts +5 -0
  411. package/dist/server/storageReclamation.js +17 -1
  412. package/dist/server/storageReclamation.js.map +1 -1
  413. package/dist/server/threads/isolatedApplications.d.ts +47 -0
  414. package/dist/server/threads/isolatedApplications.js +171 -0
  415. package/dist/server/threads/isolatedApplications.js.map +1 -0
  416. package/dist/server/threads/itc.d.ts +7 -2
  417. package/dist/server/threads/itc.js +5 -1
  418. package/dist/server/threads/itc.js.map +1 -1
  419. package/dist/server/threads/logRotationTransport.d.ts +1 -0
  420. package/dist/server/threads/logRotationTransport.js +33 -0
  421. package/dist/server/threads/logRotationTransport.js.map +1 -0
  422. package/dist/server/threads/manageThreads.d.ts +83 -3
  423. package/dist/server/threads/manageThreads.js +769 -75
  424. package/dist/server/threads/manageThreads.js.map +1 -1
  425. package/dist/server/threads/socketRouter.d.ts +1 -0
  426. package/dist/server/threads/socketRouter.js +277 -31
  427. package/dist/server/threads/socketRouter.js.map +1 -1
  428. package/dist/server/threads/threadHeapMemory.d.ts +2 -0
  429. package/dist/server/threads/threadHeapMemory.js +31 -0
  430. package/dist/server/threads/threadHeapMemory.js.map +1 -0
  431. package/dist/server/threads/threadServer.js +76 -22
  432. package/dist/server/threads/threadServer.js.map +1 -1
  433. package/dist/sqlEngine/config.d.ts +1 -3
  434. package/dist/sqlEngine/config.js +19 -16
  435. package/dist/sqlEngine/config.js.map +1 -1
  436. package/dist/sqlTranslator/index.d.ts +1 -1
  437. package/dist/sqlTranslator/index.js +30 -7
  438. package/dist/sqlTranslator/index.js.map +1 -1
  439. package/dist/upgrade/directives/5-3-0.d.ts +7 -0
  440. package/dist/upgrade/directives/5-3-0.js +148 -0
  441. package/dist/upgrade/directives/5-3-0.js.map +1 -0
  442. package/dist/upgrade/directives/directivesController.js +2 -1
  443. package/dist/upgrade/directives/directivesController.js.map +1 -1
  444. package/dist/utility/OperationFunctionCaller.js +2 -1
  445. package/dist/utility/OperationFunctionCaller.js.map +1 -1
  446. package/dist/utility/common_utils.d.ts +16 -0
  447. package/dist/utility/common_utils.js +32 -6
  448. package/dist/utility/common_utils.js.map +1 -1
  449. package/dist/utility/componentNames.d.ts +8 -0
  450. package/dist/utility/componentNames.js +12 -1
  451. package/dist/utility/componentNames.js.map +1 -1
  452. package/dist/utility/environment/environmentManager.js +3 -6
  453. package/dist/utility/environment/environmentManager.js.map +1 -1
  454. package/dist/utility/environment/systemInformation.d.ts +1 -0
  455. package/dist/utility/environment/systemInformation.js +1 -0
  456. package/dist/utility/environment/systemInformation.js.map +1 -1
  457. package/dist/utility/errors/commonErrors.d.ts +2 -0
  458. package/dist/utility/errors/commonErrors.js +2 -0
  459. package/dist/utility/errors/commonErrors.js.map +1 -1
  460. package/dist/utility/errors/hdbError.d.ts +33 -0
  461. package/dist/utility/errors/hdbError.js +58 -1
  462. package/dist/utility/errors/hdbError.js.map +1 -1
  463. package/dist/utility/globalSchema.d.ts +18 -0
  464. package/dist/utility/hdbTerms.d.ts +18 -0
  465. package/dist/utility/hdbTerms.js +20 -2
  466. package/dist/utility/hdbTerms.js.map +1 -1
  467. package/dist/utility/logging/harper_logger.d.ts +2 -0
  468. package/dist/utility/logging/harper_logger.js +286 -30
  469. package/dist/utility/logging/harper_logger.js.map +1 -1
  470. package/dist/utility/logging/logGenerationCoordinator.d.ts +35 -0
  471. package/dist/utility/logging/logGenerationCoordinator.js +184 -0
  472. package/dist/utility/logging/logGenerationCoordinator.js.map +1 -0
  473. package/dist/utility/logging/logRotation.d.ts +46 -0
  474. package/dist/utility/logging/logRotation.js +365 -0
  475. package/dist/utility/logging/logRotation.js.map +1 -0
  476. package/dist/utility/logging/logRotator.d.ts +1 -1
  477. package/dist/utility/logging/logRotator.js +192 -85
  478. package/dist/utility/logging/logRotator.js.map +1 -1
  479. package/dist/utility/nodeIdentity.d.ts +9 -0
  480. package/dist/utility/nodeIdentity.js +58 -0
  481. package/dist/utility/nodeIdentity.js.map +1 -0
  482. package/dist/utility/npmUtilities.js +11 -7
  483. package/dist/utility/npmUtilities.js.map +1 -1
  484. package/dist/utility/operationPermissions.d.ts +3 -1
  485. package/dist/utility/operationPermissions.js +16 -1
  486. package/dist/utility/operationPermissions.js.map +1 -1
  487. package/dist/utility/operation_authorization.d.ts +10 -7
  488. package/dist/utility/operation_authorization.js +212 -41
  489. package/dist/utility/operation_authorization.js.map +1 -1
  490. package/dist/utility/watchPath.d.ts +29 -0
  491. package/dist/utility/watchPath.js +68 -0
  492. package/dist/utility/watchPath.js.map +1 -0
  493. package/dist/utility/watcherFallback.d.ts +41 -0
  494. package/dist/utility/watcherFallback.js +153 -0
  495. package/dist/utility/watcherFallback.js.map +1 -1
  496. package/dist/validation/configValidator.d.ts +12 -0
  497. package/dist/validation/configValidator.js +205 -75
  498. package/dist/validation/configValidator.js.map +1 -1
  499. package/dist/validation/installValidator.js +12 -0
  500. package/dist/validation/installValidator.js.map +1 -1
  501. package/dist/validation/validationWrapper.d.ts +11 -0
  502. package/dist/validation/validationWrapper.js +16 -3
  503. package/dist/validation/validationWrapper.js.map +1 -1
  504. package/index.ts +8 -0
  505. package/json/systemSchema.json +55 -0
  506. package/npm-shrinkwrap.json +286 -194
  507. package/package.json +15 -7
  508. package/resources/DESIGN.md +219 -52
  509. package/resources/DatabaseTransaction.ts +657 -52
  510. package/resources/LMDBTransaction.ts +46 -6
  511. package/resources/PrimaryRocksDatabase.ts +46 -7
  512. package/resources/RecordEncoder.ts +124 -9
  513. package/resources/RequestTarget.ts +2 -0
  514. package/resources/Resource.ts +114 -22
  515. package/resources/ResourceInterface.ts +31 -0
  516. package/resources/RocksIndexStore.ts +30 -9
  517. package/resources/RocksTransactionLogStore.ts +188 -51
  518. package/resources/Table.ts +1960 -301
  519. package/resources/analytics/write.ts +10 -3
  520. package/resources/auditStore.ts +647 -32
  521. package/resources/blob.ts +1029 -110
  522. package/resources/branchDatabase.ts +941 -0
  523. package/resources/crdt.ts +76 -12
  524. package/resources/dataLoader.ts +3 -4
  525. package/resources/databases.ts +1584 -320
  526. package/resources/defineTable.ts +18 -2
  527. package/resources/derivedIndexRegistry.ts +56 -0
  528. package/resources/derivedIndexRuntime.ts +2292 -0
  529. package/resources/graphql.ts +72 -17
  530. package/resources/indexes/HierarchicalNavigableSmallWorld.ts +911 -48
  531. package/resources/indexes/hnswDerivedIndex.ts +531 -0
  532. package/resources/indexes/hnswPlaneBinding.ts +174 -0
  533. package/resources/longLivedTransactions.ts +360 -0
  534. package/resources/models/backendRegistry.ts +84 -2
  535. package/resources/models/bootstrap.ts +473 -28
  536. package/resources/nodeIdMapping.ts +50 -0
  537. package/resources/recordLock.ts +419 -0
  538. package/resources/recordLockCoordinator.ts +3043 -0
  539. package/resources/replayLogs.ts +152 -26
  540. package/resources/replayLogsGuards.ts +171 -8
  541. package/resources/replicatedApplyFailure.ts +77 -0
  542. package/resources/scheduler/scheduler.ts +4 -4
  543. package/resources/search.ts +288 -46
  544. package/resources/tracked.ts +73 -22
  545. package/resources/transactionBroadcast.ts +3 -3
  546. package/security/auth.ts +68 -29
  547. package/security/authn/oidc/claims.ts +72 -0
  548. package/security/authn/oidc/identityToken.ts +129 -0
  549. package/security/authn/oidc/jwks.ts +260 -0
  550. package/security/authn/oidc/providers/generic.ts +40 -0
  551. package/security/authn/oidc/providers/githubActions.ts +137 -0
  552. package/security/authn/oidc/providers/index.ts +52 -0
  553. package/security/authn/oidc/tokenExchange.ts +300 -0
  554. package/security/authn/oidc/trustPolicyOperations.ts +343 -0
  555. package/security/authn/oidc/types.ts +41 -0
  556. package/security/certificateVerification/index.ts +54 -13
  557. package/security/certificateVerification/trustedIssuers.ts +76 -0
  558. package/security/certificateVerification/types.ts +1 -0
  559. package/security/credentialProvenance.ts +47 -0
  560. package/security/credentialRejection.ts +22 -0
  561. package/security/deferredAuthentication.ts +71 -0
  562. package/security/impersonation.ts +117 -12
  563. package/security/jsLoader.ts +83 -18
  564. package/security/keys.ts +298 -72
  565. package/security/operationScope.ts +33 -0
  566. package/security/permissionsTranslator.js +23 -0
  567. package/security/tokenAuthentication.ts +233 -12
  568. package/security/user.ts +4 -3
  569. package/server/DESIGN.md +194 -16
  570. package/server/DurableSubscriptionsSession.ts +71 -11
  571. package/server/REST.ts +115 -4
  572. package/server/graphqlQuerying.ts +4 -0
  573. package/server/http.ts +133 -20
  574. package/server/itc/serverHandlers.js +8 -1
  575. package/server/jobs/jobProcess.ts +8 -2
  576. package/server/jobs/jobs.ts +4 -1
  577. package/server/liveSubscriptionAuth.ts +129 -46
  578. package/server/loadRootComponents.js +50 -8
  579. package/server/mqtt.ts +179 -38
  580. package/server/nodeName.ts +103 -21
  581. package/server/serverHelpers/Headers.ts +135 -0
  582. package/server/serverHelpers/NodeAdapterResponse.ts +221 -0
  583. package/server/serverHelpers/Request.ts +33 -131
  584. package/server/serverHelpers/contentTypes.ts +217 -36
  585. package/server/serverHelpers/deployValidationState.ts +24 -13
  586. package/server/serverHelpers/operationAuthorizationState.ts +34 -3
  587. package/server/serverHelpers/registeredOperations.ts +79 -22
  588. package/server/serverHelpers/requestSanitization.ts +15 -0
  589. package/server/serverHelpers/serverHandlers.js +6 -3
  590. package/server/serverHelpers/serverUtilities.ts +232 -40
  591. package/server/serverHelpers/sharedMessageEncoding.ts +307 -0
  592. package/server/serverHelpers/uwsServer.ts +17 -2
  593. package/server/static.ts +23 -29
  594. package/server/storageReclamation.ts +15 -2
  595. package/server/threads/isolatedApplications.ts +157 -0
  596. package/server/threads/itc.js +11 -1
  597. package/server/threads/logRotationTransport.ts +40 -0
  598. package/server/threads/manageThreads.js +771 -66
  599. package/server/threads/socketRouter.ts +291 -30
  600. package/server/threads/threadHeapMemory.ts +26 -0
  601. package/server/threads/threadServer.js +73 -22
  602. package/sqlTranslator/index.ts +31 -8
  603. package/studio/web/assets/{Chat-4RrB5134.js → Chat-D3j-1yY1.js} +1 -1
  604. package/studio/web/assets/{FloatingChat-omlNMDcJ.js → FloatingChat-BxJGYcfB.js} +3 -3
  605. package/studio/web/assets/{apiToken-Bke3wvfZ.js → apiToken-CT55oWOe.js} +1 -1
  606. package/studio/web/assets/{applications-DvFDYJgK.js → applications-D9Ct9_vm.js} +1 -1
  607. package/studio/web/assets/{cssMode-C1vRa7zh.js → cssMode-DV8H7VwA.js} +1 -1
  608. package/studio/web/assets/{editor-3XRWEDWX.js → editor-uatc0unt.js} +1 -1
  609. package/studio/web/assets/{html-CTY5tdMr.js → html-Bm6D6paN.js} +1 -1
  610. package/studio/web/assets/{htmlMode-CG1vSD9t.js → htmlMode-CEn7tpLG.js} +1 -1
  611. package/studio/web/assets/{index-Dfpeofdu.js → index-BIXW6Pu4.js} +5 -5
  612. package/studio/web/assets/{index.lazy-B1VOIv-t.js → index.lazy-UI7L-Vrk.js} +1 -1
  613. package/studio/web/assets/{javascript-CJeJzGnI.js → javascript-CJ0G3AFZ.js} +1 -1
  614. package/studio/web/assets/{jsonMode-CYPBwM82.js → jsonMode-DQADAYEa.js} +1 -1
  615. package/studio/web/assets/{languageServices-IKH4GUHl.js → languageServices-CAQJXWcI.js} +1 -1
  616. package/studio/web/assets/{lspLanguageFeatures-BC8_gxKG.js → lspLanguageFeatures-CCQ8P5sY.js} +1 -1
  617. package/studio/web/assets/{notifications-BfKBpYcq.js → notifications-BbxTU6Aw.js} +1 -1
  618. package/studio/web/assets/{notifications-DFbArTfC.js → notifications-Cvb3P1lB.js} +1 -1
  619. package/studio/web/assets/{profile-Q4-T6c-S.js → profile-Yyb7gsvL.js} +1 -1
  620. package/studio/web/assets/{regions-CtkV0xje.js → regions-OgjGHlU5.js} +1 -1
  621. package/studio/web/assets/{register-1ZZuMsiA.js → register-6qwNEOY3.js} +2 -2
  622. package/studio/web/assets/{setComponentFile-ZWLcWv5X.js → setComponentFile-BilDMtgB.js} +1 -1
  623. package/studio/web/assets/{setup-DWprJyJy.js → setup-J6qJ7OIU.js} +2 -2
  624. package/studio/web/assets/{status--aNm8isn.js → status-0RWGcfyD.js} +1 -1
  625. package/studio/web/assets/{toggleHighContrast-Cq_lt3XD.js → toggleHighContrast-BIn-vErT.js} +1 -1
  626. package/studio/web/assets/{tsMode-pjgytARx.js → tsMode-DgUXku4d.js} +1 -1
  627. package/studio/web/assets/{typescript-Cdg0mqUh.js → typescript-C9orXcsM.js} +1 -1
  628. package/studio/web/assets/{useEntityRestURL-RZhaY8Rn.js → useEntityRestURL-BEoXXbUB.js} +1 -1
  629. package/studio/web/assets/{workers-BgoXIqQe.js → workers-JVzSDmgx.js} +1 -1
  630. package/studio/web/assets/{xml-BwSeDMiP.js → xml-Cq-S8S4X.js} +1 -1
  631. package/studio/web/assets/{yaml-DotCUG5l.js → yaml-sfoRdh1M.js} +1 -1
  632. package/studio/web/index.html +1 -1
  633. package/upgrade/directives/5-3-0.ts +132 -0
  634. package/upgrade/directives/directivesController.ts +2 -1
  635. package/utility/OperationFunctionCaller.ts +2 -1
  636. package/utility/common_utils.ts +30 -5
  637. package/utility/componentNames.ts +12 -0
  638. package/utility/environment/environmentManager.ts +3 -7
  639. package/utility/environment/systemInformation.ts +7 -0
  640. package/utility/errors/commonErrors.ts +4 -0
  641. package/utility/errors/hdbError.ts +57 -0
  642. package/utility/hdbTerms.ts +19 -0
  643. package/utility/logging/harper_logger.ts +278 -26
  644. package/utility/logging/logGenerationCoordinator.ts +196 -0
  645. package/utility/logging/logRotation.ts +367 -0
  646. package/utility/logging/logRotator.ts +213 -81
  647. package/utility/nodeIdentity.ts +45 -0
  648. package/utility/npmUtilities.ts +12 -8
  649. package/utility/operationPermissions.ts +18 -1
  650. package/utility/operation_authorization.ts +231 -42
  651. package/utility/watchPath.ts +63 -0
  652. package/utility/watcherFallback.ts +148 -0
  653. package/validation/configValidator.ts +215 -75
  654. package/validation/installValidator.ts +15 -0
  655. package/validation/validationWrapper.ts +18 -4
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "harper",
3
- "version": "5.2.13",
3
+ "version": "5.3.0-beta.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "harper",
9
- "version": "5.2.13",
9
+ "version": "5.3.0-beta.1",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@aws-sdk/client-s3": "^3.1012.0",
13
- "@aws-sdk/lib-storage": "3.1106.0",
13
+ "@aws-sdk/lib-storage": "3.1116.0",
14
14
  "@endo/static-module-record": "^1.1.2",
15
15
  "@fastify/autoload": "^6.3.1",
16
16
  "@fastify/compress": "^8.3.1",
@@ -28,7 +28,7 @@
28
28
  "@turf/distance": "6.5.0",
29
29
  "@turf/helpers": "6.5.0",
30
30
  "@turf/length": "6.5.0",
31
- "alasql": "4.17.3",
31
+ "alasql": "4.19.0",
32
32
  "amaro": "^1.1.8",
33
33
  "argon2": "0.45.1",
34
34
  "asn1js": "3.0.10",
@@ -50,7 +50,7 @@
50
50
  "human-readable-ids": "1.0.4",
51
51
  "inquirer": "8.2.7",
52
52
  "is-number": "7.0.0",
53
- "joi": "17.13.4",
53
+ "joi": "17.13.6",
54
54
  "json-bigint-fixes": "1.1.0",
55
55
  "jsonata": "1.8.9",
56
56
  "jsonwebtoken": "9.0.3",
@@ -68,7 +68,7 @@
68
68
  "normalize-path": "^3.0.0",
69
69
  "ora": "8.2.0",
70
70
  "ordered-binary": "1.6.1",
71
- "papaparse": "5.5.4",
71
+ "papaparse": "5.6.0",
72
72
  "passport": "0.7.0",
73
73
  "passport-http": "0.3.0",
74
74
  "passport-local": "1.0.0",
@@ -100,6 +100,7 @@
100
100
  "node": "^22.18.0 || >=24.0.0"
101
101
  },
102
102
  "optionalDependencies": {
103
+ "@harperfast/hnsw": "0.3.0",
103
104
  "bufferutil": "4.1.0",
104
105
  "segfault-handler": "1.3.0",
105
106
  "utf-8-validate": "5.0.10"
@@ -137,15 +138,15 @@
137
138
  }
138
139
  },
139
140
  "node_modules/@aws-sdk/checksums": {
140
- "version": "3.1000.26",
141
- "resolved": "https://registry.npmjs.org/@aws-sdk/checksums/-/checksums-3.1000.26.tgz",
142
- "integrity": "sha512-CGznePoL+1oWCSzqmkvlYMpWQEZohPR3LntjKXXfVH+oh6Kd8d+yHLkjpiAGwPIHAxFe4OAq3aKfRnv/wqWIyA==",
141
+ "version": "3.1000.29",
142
+ "resolved": "https://registry.npmjs.org/@aws-sdk/checksums/-/checksums-3.1000.29.tgz",
143
+ "integrity": "sha512-Dtu0gr4dnATZAPwEYbpCsG+MpLM7OAliy2gTepEFQwl1vZ6DL3QMH2FveMa3HLvPsOdhJsPRB3KtxVhph9T75A==",
143
144
  "license": "Apache-2.0",
144
145
  "dependencies": {
145
- "@aws-sdk/core": "^3.977.6",
146
- "@aws-sdk/types": "^3.974.2",
147
- "@smithy/core": "^3.31.1",
148
- "@smithy/types": "^4.16.1",
146
+ "@aws-sdk/core": "^3.977.9",
147
+ "@aws-sdk/types": "^3.974.5",
148
+ "@smithy/core": "^3.33.3",
149
+ "@smithy/types": "^4.17.2",
149
150
  "tslib": "^2.6.2"
150
151
  },
151
152
  "engines": {
@@ -153,21 +154,21 @@
153
154
  }
154
155
  },
155
156
  "node_modules/@aws-sdk/client-s3": {
156
- "version": "3.1106.0",
157
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.1106.0.tgz",
158
- "integrity": "sha512-hUTlnyRRGlVdfvJLL3hCEnMm7CmunSzc/lxFVRX8g1fjJTMUVbyQCfhfMhp7dZ7JBftLU6OYresu3Hje4nvkJw==",
157
+ "version": "3.1116.0",
158
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.1116.0.tgz",
159
+ "integrity": "sha512-UKRl9qSVW0rZpvSOauQNpYAy8+ONBAVYnpfKVtCyOF+FZVT1tl6MunYuHvuarCrroD2/YJs+tHTALYNgAlec3Q==",
159
160
  "license": "Apache-2.0",
160
161
  "dependencies": {
161
- "@aws-sdk/checksums": "^3.1000.26",
162
- "@aws-sdk/core": "^3.977.6",
163
- "@aws-sdk/credential-provider-node": "^3.972.78",
164
- "@aws-sdk/middleware-sdk-s3": "^3.972.72",
165
- "@aws-sdk/signature-v4-multi-region": "^3.996.43",
166
- "@aws-sdk/types": "^3.974.2",
167
- "@smithy/core": "^3.31.1",
168
- "@smithy/fetch-http-handler": "^5.6.13",
169
- "@smithy/node-http-handler": "^4.9.13",
170
- "@smithy/types": "^4.16.1",
162
+ "@aws-sdk/checksums": "^3.1000.29",
163
+ "@aws-sdk/core": "^3.977.9",
164
+ "@aws-sdk/credential-provider-node": "^3.972.81",
165
+ "@aws-sdk/middleware-sdk-s3": "^3.972.75",
166
+ "@aws-sdk/signature-v4-multi-region": "^3.996.46",
167
+ "@aws-sdk/types": "^3.974.5",
168
+ "@smithy/core": "^3.33.3",
169
+ "@smithy/fetch-http-handler": "^5.7.2",
170
+ "@smithy/node-http-handler": "^4.11.3",
171
+ "@smithy/types": "^4.17.2",
171
172
  "tslib": "^2.6.2"
172
173
  },
173
174
  "engines": {
@@ -175,17 +176,17 @@
175
176
  }
176
177
  },
177
178
  "node_modules/@aws-sdk/core": {
178
- "version": "3.977.6",
179
- "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.977.6.tgz",
180
- "integrity": "sha512-QiaJV4/zDrB4ZY2mfeSXSzSTc36W16sZXcGz+SPFk0CJ26gziO0cS+4LjJUMAbdeeBOvS0k0Aq1cZpfGdUXxSw==",
179
+ "version": "3.977.9",
180
+ "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.977.9.tgz",
181
+ "integrity": "sha512-reqPFEQrZxDZpeGj4PFMepBeR5LGYHRqq/L0motTzgFkCRBA4rFdaVXDSLYyGHhxVz7sT2PDnPN9CluGSfgyJA==",
181
182
  "license": "Apache-2.0",
182
183
  "dependencies": {
183
- "@aws-sdk/types": "^3.974.2",
184
- "@aws-sdk/xml-builder": "^3.972.37",
184
+ "@aws-sdk/types": "^3.974.5",
185
+ "@aws-sdk/xml-builder": "^3.972.40",
185
186
  "@aws/lambda-invoke-store": "^0.3.0",
186
- "@smithy/core": "^3.31.1",
187
+ "@smithy/core": "^3.33.3",
187
188
  "@smithy/signature-v4": "^5.6.12",
188
- "@smithy/types": "^4.16.1",
189
+ "@smithy/types": "^4.17.2",
189
190
  "bowser": "^2.11.0",
190
191
  "tslib": "^2.6.2"
191
192
  },
@@ -194,15 +195,15 @@
194
195
  }
195
196
  },
196
197
  "node_modules/@aws-sdk/credential-provider-env": {
197
- "version": "3.972.67",
198
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.67.tgz",
199
- "integrity": "sha512-rcIpk5kxUqDaaNa6Xk23pQ6ViY7jlqzmfFWCahQcBT97ddXaXYYwzCen9Tz1Jvo6aJft6wDl5bN44/Jw5B4oLA==",
198
+ "version": "3.972.70",
199
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.70.tgz",
200
+ "integrity": "sha512-H404B7dJl2mCrBqahDEYsanB0xhdDp6tXnXcTUnXmmpy2Q3J0Ho0bUajZ2jr/RdwzCyS59Gi8xXIFwPLGBl6Uw==",
200
201
  "license": "Apache-2.0",
201
202
  "dependencies": {
202
- "@aws-sdk/core": "^3.977.6",
203
- "@aws-sdk/types": "^3.974.2",
204
- "@smithy/core": "^3.31.1",
205
- "@smithy/types": "^4.16.1",
203
+ "@aws-sdk/core": "^3.977.9",
204
+ "@aws-sdk/types": "^3.974.5",
205
+ "@smithy/core": "^3.33.3",
206
+ "@smithy/types": "^4.17.2",
206
207
  "tslib": "^2.6.2"
207
208
  },
208
209
  "engines": {
@@ -210,17 +211,17 @@
210
211
  }
211
212
  },
212
213
  "node_modules/@aws-sdk/credential-provider-http": {
213
- "version": "3.972.69",
214
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.69.tgz",
215
- "integrity": "sha512-nggwJtZ4eeNsUw5IeWBMXsi1ryct5idi0K+/SCRF3kybLubOMaNTb3XCihXpWMiVpyzyPeIrl0zTkzhBH9porA==",
214
+ "version": "3.972.72",
215
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.72.tgz",
216
+ "integrity": "sha512-X98zYOrVOeuosCX+6ktf29FC2N2GHPLia7qv6mzPzTc+RPAuHWCDS++Z6JK7eGYqb/v6uaW7bAXaOvDBfol+0w==",
216
217
  "license": "Apache-2.0",
217
218
  "dependencies": {
218
- "@aws-sdk/core": "^3.977.6",
219
- "@aws-sdk/types": "^3.974.2",
220
- "@smithy/core": "^3.31.1",
221
- "@smithy/fetch-http-handler": "^5.6.13",
222
- "@smithy/node-http-handler": "^4.9.13",
223
- "@smithy/types": "^4.16.1",
219
+ "@aws-sdk/core": "^3.977.9",
220
+ "@aws-sdk/types": "^3.974.5",
221
+ "@smithy/core": "^3.33.3",
222
+ "@smithy/fetch-http-handler": "^5.7.2",
223
+ "@smithy/node-http-handler": "^4.11.3",
224
+ "@smithy/types": "^4.17.2",
224
225
  "tslib": "^2.6.2"
225
226
  },
226
227
  "engines": {
@@ -228,23 +229,23 @@
228
229
  }
229
230
  },
230
231
  "node_modules/@aws-sdk/credential-provider-ini": {
231
- "version": "3.973.12",
232
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.973.12.tgz",
233
- "integrity": "sha512-pNEf/OeyN5X3VmLKlgSO6TqaWmW10CvI3TfwL1XhsuhYjSLT2VDaxFnCPHnOeQXSaFisMX4jNhpETriqN8DOmg==",
232
+ "version": "3.973.15",
233
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.973.15.tgz",
234
+ "integrity": "sha512-Rykg6s5ceBuynMOGWgoowO4N+27JfnqXAnVaSunZl0hOO1XodSrxGNz6sCEbnmS0lAfQZDKyb3fbr46gSuv6Sg==",
234
235
  "license": "Apache-2.0",
235
236
  "dependencies": {
236
- "@aws-sdk/core": "^3.977.6",
237
- "@aws-sdk/credential-provider-env": "^3.972.67",
238
- "@aws-sdk/credential-provider-http": "^3.972.69",
239
- "@aws-sdk/credential-provider-login": "^3.972.74",
240
- "@aws-sdk/credential-provider-process": "^3.972.67",
241
- "@aws-sdk/credential-provider-sso": "^3.973.11",
242
- "@aws-sdk/credential-provider-web-identity": "^3.972.73",
243
- "@aws-sdk/nested-clients": "^3.997.41",
244
- "@aws-sdk/types": "^3.974.2",
245
- "@smithy/core": "^3.31.1",
237
+ "@aws-sdk/core": "^3.977.9",
238
+ "@aws-sdk/credential-provider-env": "^3.972.70",
239
+ "@aws-sdk/credential-provider-http": "^3.972.72",
240
+ "@aws-sdk/credential-provider-login": "^3.972.77",
241
+ "@aws-sdk/credential-provider-process": "^3.972.70",
242
+ "@aws-sdk/credential-provider-sso": "^3.973.14",
243
+ "@aws-sdk/credential-provider-web-identity": "^3.972.76",
244
+ "@aws-sdk/nested-clients": "^3.997.44",
245
+ "@aws-sdk/types": "^3.974.5",
246
+ "@smithy/core": "^3.33.3",
246
247
  "@smithy/credential-provider-imds": "^4.4.16",
247
- "@smithy/types": "^4.16.1",
248
+ "@smithy/types": "^4.17.2",
248
249
  "tslib": "^2.6.2"
249
250
  },
250
251
  "engines": {
@@ -252,16 +253,16 @@
252
253
  }
253
254
  },
254
255
  "node_modules/@aws-sdk/credential-provider-login": {
255
- "version": "3.972.74",
256
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.74.tgz",
257
- "integrity": "sha512-0AQfDcf99TNmqVKv0owHrw/TQs6i4ZE5t9qmz6NvO53bE/sA/tpXhXL9AAcEP1qHc6Zzjd1UMb69+/9zdhvY3g==",
256
+ "version": "3.972.77",
257
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.77.tgz",
258
+ "integrity": "sha512-Jb59xfEISoN5mmbnA+HYqdtrSX3CgCtJoof+V5D8/TgUI56W63GEEd5Y58WijU3Ou6+WEgaLD1feVzaRXV5IDQ==",
258
259
  "license": "Apache-2.0",
259
260
  "dependencies": {
260
- "@aws-sdk/core": "^3.977.6",
261
- "@aws-sdk/nested-clients": "^3.997.41",
262
- "@aws-sdk/types": "^3.974.2",
263
- "@smithy/core": "^3.31.1",
264
- "@smithy/types": "^4.16.1",
261
+ "@aws-sdk/core": "^3.977.9",
262
+ "@aws-sdk/nested-clients": "^3.997.44",
263
+ "@aws-sdk/types": "^3.974.5",
264
+ "@smithy/core": "^3.33.3",
265
+ "@smithy/types": "^4.17.2",
265
266
  "tslib": "^2.6.2"
266
267
  },
267
268
  "engines": {
@@ -269,21 +270,21 @@
269
270
  }
270
271
  },
271
272
  "node_modules/@aws-sdk/credential-provider-node": {
272
- "version": "3.972.78",
273
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.78.tgz",
274
- "integrity": "sha512-OgPAnfvbGAMWac6yvxJ1ihslrvDpPVwR68D2csospdNCCyPvHk9JLzYKwz48SNiS1T2znDwHauywRKRFfpyYng==",
273
+ "version": "3.972.81",
274
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.81.tgz",
275
+ "integrity": "sha512-Rml+WitoFvXmv6JZ18U/xGdGDGGvB/mOin0ya0lTnTrdC0Z1lrVxTYh7iNklZBcvcRMrs4DoEf6xy1KWyrLQQw==",
275
276
  "license": "Apache-2.0",
276
277
  "dependencies": {
277
- "@aws-sdk/credential-provider-env": "^3.972.67",
278
- "@aws-sdk/credential-provider-http": "^3.972.69",
279
- "@aws-sdk/credential-provider-ini": "^3.973.12",
280
- "@aws-sdk/credential-provider-process": "^3.972.67",
281
- "@aws-sdk/credential-provider-sso": "^3.973.11",
282
- "@aws-sdk/credential-provider-web-identity": "^3.972.73",
283
- "@aws-sdk/types": "^3.974.2",
284
- "@smithy/core": "^3.31.1",
278
+ "@aws-sdk/credential-provider-env": "^3.972.70",
279
+ "@aws-sdk/credential-provider-http": "^3.972.72",
280
+ "@aws-sdk/credential-provider-ini": "^3.973.15",
281
+ "@aws-sdk/credential-provider-process": "^3.972.70",
282
+ "@aws-sdk/credential-provider-sso": "^3.973.14",
283
+ "@aws-sdk/credential-provider-web-identity": "^3.972.76",
284
+ "@aws-sdk/types": "^3.974.5",
285
+ "@smithy/core": "^3.33.3",
285
286
  "@smithy/credential-provider-imds": "^4.4.16",
286
- "@smithy/types": "^4.16.1",
287
+ "@smithy/types": "^4.17.2",
287
288
  "tslib": "^2.6.2"
288
289
  },
289
290
  "engines": {
@@ -291,15 +292,15 @@
291
292
  }
292
293
  },
293
294
  "node_modules/@aws-sdk/credential-provider-process": {
294
- "version": "3.972.67",
295
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.67.tgz",
296
- "integrity": "sha512-IlUEejorGTWKb4/Dm7K5Yw4QxUmXLThLhrvBmzVBqZFTbW72cv9LTcITmo1dsnYriALE4h68mOq4LB99x6sQ7Q==",
295
+ "version": "3.972.70",
296
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.70.tgz",
297
+ "integrity": "sha512-2ry03fGRJr4sV3jI+ocjj5JqALnFD6ymM5KiNCDZMvq8bX2GSbE0vji4aM43TVCl2nXqqLRZaUxdq/KeWRAY4Q==",
297
298
  "license": "Apache-2.0",
298
299
  "dependencies": {
299
- "@aws-sdk/core": "^3.977.6",
300
- "@aws-sdk/types": "^3.974.2",
301
- "@smithy/core": "^3.31.1",
302
- "@smithy/types": "^4.16.1",
300
+ "@aws-sdk/core": "^3.977.9",
301
+ "@aws-sdk/types": "^3.974.5",
302
+ "@smithy/core": "^3.33.3",
303
+ "@smithy/types": "^4.17.2",
303
304
  "tslib": "^2.6.2"
304
305
  },
305
306
  "engines": {
@@ -307,17 +308,17 @@
307
308
  }
308
309
  },
309
310
  "node_modules/@aws-sdk/credential-provider-sso": {
310
- "version": "3.973.11",
311
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.973.11.tgz",
312
- "integrity": "sha512-gAQBkBZxUB84d71+pPcI9L+jh2ujhuAVxc/4FgGiWFDjkPBlMKxzd5XDtkSXTFX8Ro7ansnT88+XadasxMeCRw==",
311
+ "version": "3.973.14",
312
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.973.14.tgz",
313
+ "integrity": "sha512-jkhg/8ocAAoc0RFyLMhCw+/zZh7gystQgd4F4hznNa8P4Cc501PQmxd+jGLiMHodPJ+7Zv/3znM62gZojyasmA==",
313
314
  "license": "Apache-2.0",
314
315
  "dependencies": {
315
- "@aws-sdk/core": "^3.977.6",
316
- "@aws-sdk/nested-clients": "^3.997.41",
317
- "@aws-sdk/token-providers": "3.1103.0",
318
- "@aws-sdk/types": "^3.974.2",
319
- "@smithy/core": "^3.31.1",
320
- "@smithy/types": "^4.16.1",
316
+ "@aws-sdk/core": "^3.977.9",
317
+ "@aws-sdk/nested-clients": "^3.997.44",
318
+ "@aws-sdk/token-providers": "3.1116.0",
319
+ "@aws-sdk/types": "^3.974.5",
320
+ "@smithy/core": "^3.33.3",
321
+ "@smithy/types": "^4.17.2",
321
322
  "tslib": "^2.6.2"
322
323
  },
323
324
  "engines": {
@@ -325,16 +326,16 @@
325
326
  }
326
327
  },
327
328
  "node_modules/@aws-sdk/credential-provider-web-identity": {
328
- "version": "3.972.73",
329
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.73.tgz",
330
- "integrity": "sha512-SnlEmQa6SjOgs6iOPLUQl1Eyq4AKiAdPQlkOhFhqNfDtDCwibMGvL6QlkSmf3o6vAUSImzdPCxowT5dfQUZP1A==",
329
+ "version": "3.972.76",
330
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.76.tgz",
331
+ "integrity": "sha512-d3AGyVu759PGr35mEB2s22xxlNEA5rpdxtSPJthfPFJvoQ8dt357iVPECqWfUxXp1toJAvKmbtcIYVGigaGsCA==",
331
332
  "license": "Apache-2.0",
332
333
  "dependencies": {
333
- "@aws-sdk/core": "^3.977.6",
334
- "@aws-sdk/nested-clients": "^3.997.41",
335
- "@aws-sdk/types": "^3.974.2",
336
- "@smithy/core": "^3.31.1",
337
- "@smithy/types": "^4.16.1",
334
+ "@aws-sdk/core": "^3.977.9",
335
+ "@aws-sdk/nested-clients": "^3.997.44",
336
+ "@aws-sdk/types": "^3.974.5",
337
+ "@smithy/core": "^3.33.3",
338
+ "@smithy/types": "^4.17.2",
338
339
  "tslib": "^2.6.2"
339
340
  },
340
341
  "engines": {
@@ -342,13 +343,13 @@
342
343
  }
343
344
  },
344
345
  "node_modules/@aws-sdk/lib-storage": {
345
- "version": "3.1106.0",
346
- "resolved": "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.1106.0.tgz",
347
- "integrity": "sha512-xAK/baB/XLoiWYXEBFt9/YXtegqBVYfJbTWJMSXkeWSL8kuAHaCZiqJ6BRnpftKMgOyEuQ56os1hHxdaWk99mA==",
346
+ "version": "3.1116.0",
347
+ "resolved": "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.1116.0.tgz",
348
+ "integrity": "sha512-40z1NyzCbRX9bD6g3dJ6E4WDbYPDod6XHTIbNZPnGDYMYH2TPIj6LyRZ94fWPKGYnJpO0Q0Uhi2lSnn2E7PIdg==",
348
349
  "license": "Apache-2.0",
349
350
  "dependencies": {
350
- "@smithy/core": "^3.31.1",
351
- "@smithy/types": "^4.16.1",
351
+ "@smithy/core": "^3.33.3",
352
+ "@smithy/types": "^4.17.2",
352
353
  "buffer": "5.6.0",
353
354
  "events": "3.3.0",
354
355
  "stream-browserify": "3.0.0",
@@ -358,20 +359,20 @@
358
359
  "node": ">=20.0.0"
359
360
  },
360
361
  "peerDependencies": {
361
- "@aws-sdk/client-s3": "^3.1106.0"
362
+ "@aws-sdk/client-s3": "^3.1116.0"
362
363
  }
363
364
  },
364
365
  "node_modules/@aws-sdk/middleware-sdk-s3": {
365
- "version": "3.972.72",
366
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.972.72.tgz",
367
- "integrity": "sha512-lSAoVPvQxX1d8TOM6waKDBQrvvZcm4w6pCldFAsRUffEaXq6lYY0pPyew3KlLu6Xqb74DXI42hGvSsbGBLljlw==",
366
+ "version": "3.972.75",
367
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.972.75.tgz",
368
+ "integrity": "sha512-wMIsNumRVKaNMKhvU/s9VrdEwE8S6gSzXp4RygFG5BEMnGkkXf8cjh8zf7cKJBpUDpqTWqwbz5isEgp9rH6Lng==",
368
369
  "license": "Apache-2.0",
369
370
  "dependencies": {
370
- "@aws-sdk/core": "^3.977.6",
371
- "@aws-sdk/signature-v4-multi-region": "^3.996.43",
372
- "@aws-sdk/types": "^3.974.2",
373
- "@smithy/core": "^3.31.1",
374
- "@smithy/types": "^4.16.1",
371
+ "@aws-sdk/core": "^3.977.9",
372
+ "@aws-sdk/signature-v4-multi-region": "^3.996.46",
373
+ "@aws-sdk/types": "^3.974.5",
374
+ "@smithy/core": "^3.33.3",
375
+ "@smithy/types": "^4.17.2",
375
376
  "tslib": "^2.6.2"
376
377
  },
377
378
  "engines": {
@@ -379,18 +380,18 @@
379
380
  }
380
381
  },
381
382
  "node_modules/@aws-sdk/nested-clients": {
382
- "version": "3.997.41",
383
- "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.997.41.tgz",
384
- "integrity": "sha512-RDHqPGQWlF6tatA/Tp3rg6oIwtgN9IVderxE+9av2Y93Dfyu+mO1hZ5Bu2jpfZg2rwdNbsssnwM+sLafIczMlQ==",
383
+ "version": "3.997.44",
384
+ "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.997.44.tgz",
385
+ "integrity": "sha512-NhEgryjlBF9w38ZXqGymQV28IhkYa1mKhlbYnqIis57AYwWGVYfUPgg/qC2rLRqOUfblxx++irvju10kVTa8Vw==",
385
386
  "license": "Apache-2.0",
386
387
  "dependencies": {
387
- "@aws-sdk/core": "^3.977.6",
388
- "@aws-sdk/signature-v4-multi-region": "^3.996.43",
389
- "@aws-sdk/types": "^3.974.2",
390
- "@smithy/core": "^3.31.1",
391
- "@smithy/fetch-http-handler": "^5.6.13",
392
- "@smithy/node-http-handler": "^4.9.13",
393
- "@smithy/types": "^4.16.1",
388
+ "@aws-sdk/core": "^3.977.9",
389
+ "@aws-sdk/signature-v4-multi-region": "^3.996.46",
390
+ "@aws-sdk/types": "^3.974.5",
391
+ "@smithy/core": "^3.33.3",
392
+ "@smithy/fetch-http-handler": "^5.7.2",
393
+ "@smithy/node-http-handler": "^4.11.3",
394
+ "@smithy/types": "^4.17.2",
394
395
  "tslib": "^2.6.2"
395
396
  },
396
397
  "engines": {
@@ -398,14 +399,14 @@
398
399
  }
399
400
  },
400
401
  "node_modules/@aws-sdk/signature-v4-multi-region": {
401
- "version": "3.996.43",
402
- "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.996.43.tgz",
403
- "integrity": "sha512-lKekx8bLBXSv4O+cslk9Zfnw2XKSkWBs3uWL5QGhH2ZAQfNS7FE0vcSSN2vD/AhxX54ZTywWxR4STThoeOXlBA==",
402
+ "version": "3.996.46",
403
+ "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.996.46.tgz",
404
+ "integrity": "sha512-L+2xZTye/2T96f3lwCws0Zw6GG2JHZW9e8FpVgGBeeExSKyeoZ6CWRpBml/7DNiK/O26jrgPM9F+Ay8VkgzUWQ==",
404
405
  "license": "Apache-2.0",
405
406
  "dependencies": {
406
- "@aws-sdk/types": "^3.974.2",
407
+ "@aws-sdk/types": "^3.974.5",
407
408
  "@smithy/signature-v4": "^5.6.12",
408
- "@smithy/types": "^4.16.1",
409
+ "@smithy/types": "^4.17.2",
409
410
  "tslib": "^2.6.2"
410
411
  },
411
412
  "engines": {
@@ -413,16 +414,16 @@
413
414
  }
414
415
  },
415
416
  "node_modules/@aws-sdk/token-providers": {
416
- "version": "3.1103.0",
417
- "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1103.0.tgz",
418
- "integrity": "sha512-N4wy26MNn31ItGVHYHPrEuCIFY4MBBjC+C5v1lJKqIUSA7OZBdhleCY53zCCrXn27hsk7YNOaTuhQu807S4AfQ==",
417
+ "version": "3.1116.0",
418
+ "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1116.0.tgz",
419
+ "integrity": "sha512-ygIivKqh8aHzNkucOCXHyIBgBpLPfrSI0mCqXF+vLBsPTUKqj0VSqAY0GFPe7lQl4HntjOcQ+KSyS7oUV2C54Q==",
419
420
  "license": "Apache-2.0",
420
421
  "dependencies": {
421
- "@aws-sdk/core": "^3.977.6",
422
- "@aws-sdk/nested-clients": "^3.997.41",
423
- "@aws-sdk/types": "^3.974.2",
424
- "@smithy/core": "^3.31.1",
425
- "@smithy/types": "^4.16.1",
422
+ "@aws-sdk/core": "^3.977.9",
423
+ "@aws-sdk/nested-clients": "^3.997.44",
424
+ "@aws-sdk/types": "^3.974.5",
425
+ "@smithy/core": "^3.33.3",
426
+ "@smithy/types": "^4.17.2",
426
427
  "tslib": "^2.6.2"
427
428
  },
428
429
  "engines": {
@@ -430,12 +431,12 @@
430
431
  }
431
432
  },
432
433
  "node_modules/@aws-sdk/types": {
433
- "version": "3.974.2",
434
- "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.974.2.tgz",
435
- "integrity": "sha512-3W6IUtSxFbH6X7Wb7DzGCV5QiFQsd0g8bOfntpmDxQlzBoKWUMBu/JPQR0DwkE+Hpnxd6db1tXbOwdeHddG6cA==",
434
+ "version": "3.974.5",
435
+ "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.974.5.tgz",
436
+ "integrity": "sha512-LkwLL2BLbC6wNNm4JaH9mbEqBMdOZCct6VAYqhdN4U1xrWM+fUJQEfbHwQgDypapOWTRtlk25akb5afM0P8CIQ==",
436
437
  "license": "Apache-2.0",
437
438
  "dependencies": {
438
- "@smithy/types": "^4.16.1",
439
+ "@smithy/types": "^4.17.2",
439
440
  "tslib": "^2.6.2"
440
441
  },
441
442
  "engines": {
@@ -443,12 +444,12 @@
443
444
  }
444
445
  },
445
446
  "node_modules/@aws-sdk/xml-builder": {
446
- "version": "3.972.37",
447
- "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.37.tgz",
448
- "integrity": "sha512-zKq4HQum8JwDyEuyfuI4bbiAcU0KxP6qy+9PR/IsR92IyE/DaBAikzAS50tjxip4bqIIANpCcG+Yyj6CVhXupg==",
447
+ "version": "3.972.40",
448
+ "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.40.tgz",
449
+ "integrity": "sha512-wlFmCIGUlwF4zx/kncw+bmxTQh1HeSJq4mYV/V5cZUSJadDP3kXvGW8Rn21cimj/7y9ju+47oYWXi97vF7czaA==",
449
450
  "license": "Apache-2.0",
450
451
  "dependencies": {
451
- "@smithy/types": "^4.16.1",
452
+ "@smithy/types": "^4.17.2",
452
453
  "tslib": "^2.6.2"
453
454
  },
454
455
  "engines": {
@@ -1062,6 +1063,93 @@
1062
1063
  "version": "1.0.3",
1063
1064
  "license": "Apache-2.0"
1064
1065
  },
1066
+ "node_modules/@harperfast/hnsw": {
1067
+ "version": "0.3.0",
1068
+ "resolved": "https://registry.npmjs.org/@harperfast/hnsw/-/hnsw-0.3.0.tgz",
1069
+ "integrity": "sha512-EEFZCymBMeTJjJBj6uetTB7v1I4DQ9NU+kg7z999wf4knFX9MGVz3GLcKHKWePC3MzcrcExo+xasyFM8PY8U6w==",
1070
+ "hasInstallScript": true,
1071
+ "license": "Apache-2.0",
1072
+ "optional": true,
1073
+ "engines": {
1074
+ "node": ">=18"
1075
+ },
1076
+ "optionalDependencies": {
1077
+ "@harperfast/hnsw-darwin-arm64": "0.3.0",
1078
+ "@harperfast/hnsw-linux-arm64-glibc": "0.3.0",
1079
+ "@harperfast/hnsw-linux-x64-glibc": "0.3.0",
1080
+ "@harperfast/hnsw-win32-x64": "0.3.0"
1081
+ }
1082
+ },
1083
+ "node_modules/@harperfast/hnsw-darwin-arm64": {
1084
+ "version": "0.3.0",
1085
+ "resolved": "https://registry.npmjs.org/@harperfast/hnsw-darwin-arm64/-/hnsw-darwin-arm64-0.3.0.tgz",
1086
+ "integrity": "sha512-YLMQdCba2lnfsFzHvmgcKeu2/OgPpDfBDcB6AOMm9MK+fMmMGUlLHkBaAT0i/EcbweBgudEsj3wkvxy2OWk6aA==",
1087
+ "cpu": [
1088
+ "arm64"
1089
+ ],
1090
+ "license": "Apache-2.0",
1091
+ "optional": true,
1092
+ "os": [
1093
+ "darwin"
1094
+ ],
1095
+ "engines": {
1096
+ "node": ">=18"
1097
+ }
1098
+ },
1099
+ "node_modules/@harperfast/hnsw-linux-arm64-glibc": {
1100
+ "version": "0.3.0",
1101
+ "resolved": "https://registry.npmjs.org/@harperfast/hnsw-linux-arm64-glibc/-/hnsw-linux-arm64-glibc-0.3.0.tgz",
1102
+ "integrity": "sha512-Ma/7sfWKmN9DKXPSOMdIW1TyfIDncpKvf1RaZLVFg4YeE3XWbnljQwEDVi8WpdvohkMxRUgtEfJLxK4i5eASFw==",
1103
+ "cpu": [
1104
+ "arm64"
1105
+ ],
1106
+ "libc": [
1107
+ "glibc"
1108
+ ],
1109
+ "license": "Apache-2.0",
1110
+ "optional": true,
1111
+ "os": [
1112
+ "linux"
1113
+ ],
1114
+ "engines": {
1115
+ "node": ">=18"
1116
+ }
1117
+ },
1118
+ "node_modules/@harperfast/hnsw-linux-x64-glibc": {
1119
+ "version": "0.3.0",
1120
+ "resolved": "https://registry.npmjs.org/@harperfast/hnsw-linux-x64-glibc/-/hnsw-linux-x64-glibc-0.3.0.tgz",
1121
+ "integrity": "sha512-ifosHasupr9c6QTLeQHUsAwSpdhgnxsRWtL8V9heJ8yUEAge16PVN0VLqaFrN0QXNQSF94tlsYhStCAKPF7X3Q==",
1122
+ "cpu": [
1123
+ "x64"
1124
+ ],
1125
+ "libc": [
1126
+ "glibc"
1127
+ ],
1128
+ "license": "Apache-2.0",
1129
+ "optional": true,
1130
+ "os": [
1131
+ "linux"
1132
+ ],
1133
+ "engines": {
1134
+ "node": ">=18"
1135
+ }
1136
+ },
1137
+ "node_modules/@harperfast/hnsw-win32-x64": {
1138
+ "version": "0.3.0",
1139
+ "resolved": "https://registry.npmjs.org/@harperfast/hnsw-win32-x64/-/hnsw-win32-x64-0.3.0.tgz",
1140
+ "integrity": "sha512-q8+Bv88y7QhaXSH9M3LGKxv4kSulAr3KDoSlopS6YUrmdKxCo8IM+YkbxUKxvPYhL0VAfEe475n5BkXpOenkHg==",
1141
+ "cpu": [
1142
+ "x64"
1143
+ ],
1144
+ "license": "Apache-2.0",
1145
+ "optional": true,
1146
+ "os": [
1147
+ "win32"
1148
+ ],
1149
+ "engines": {
1150
+ "node": ">=18"
1151
+ }
1152
+ },
1065
1153
  "node_modules/@harperfast/rocksdb-js": {
1066
1154
  "version": "2.9.1",
1067
1155
  "resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js/-/rocksdb-js-2.9.1.tgz",
@@ -1230,9 +1318,9 @@
1230
1318
  }
1231
1319
  },
1232
1320
  "node_modules/@harperfast/skills": {
1233
- "version": "1.12.1",
1234
- "resolved": "https://registry.npmjs.org/@harperfast/skills/-/skills-1.12.1.tgz",
1235
- "integrity": "sha512-gO1YBfo7e2P7qEmmVyXMy+R8BcQnqOTItzRcxBZcVTrWGDiT0XRUs4FMCUM79/r4tPC6IEjZvsm0cgTzDQQXIg==",
1321
+ "version": "1.12.2",
1322
+ "resolved": "https://registry.npmjs.org/@harperfast/skills/-/skills-1.12.2.tgz",
1323
+ "integrity": "sha512-qzf/K1d/oxySZBfQHmlnTJtA+zRs8CjfpmHy1xf4SGeNlIl1LOVdzx4d3j0y0uNLplUAGzbPi287+410CW7m0A==",
1236
1324
  "license": "Apache License 2.0"
1237
1325
  },
1238
1326
  "node_modules/@inquirer/external-editor": {
@@ -1513,12 +1601,12 @@
1513
1601
  "license": "BSD-3-Clause"
1514
1602
  },
1515
1603
  "node_modules/@smithy/core": {
1516
- "version": "3.31.1",
1517
- "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.31.1.tgz",
1518
- "integrity": "sha512-CyogUINxvi7C7LDsh8Syo6hVJOT9ckz4rG8dRZfTJ8r91HkMY59PnNooaj7WcHyxEkxPfBAmbgztZU+xTo76lg==",
1604
+ "version": "3.33.3",
1605
+ "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.33.3.tgz",
1606
+ "integrity": "sha512-CsOeKq/9kA3y6VJHt+/+VTCtBaxJ4OTFpgrjIUhPpDIKxBci1k2bJaQASF2h/ELWrulGp+t97DZ0mevfAD8idg==",
1519
1607
  "license": "Apache-2.0",
1520
1608
  "dependencies": {
1521
- "@smithy/types": "^4.16.1",
1609
+ "@smithy/types": "^4.17.2",
1522
1610
  "tslib": "^2.6.2"
1523
1611
  },
1524
1612
  "engines": {
@@ -1526,13 +1614,13 @@
1526
1614
  }
1527
1615
  },
1528
1616
  "node_modules/@smithy/credential-provider-imds": {
1529
- "version": "4.4.16",
1530
- "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.4.16.tgz",
1531
- "integrity": "sha512-QfuLWAkLzptffFW980AFeHZFdqds2B64rpEd3uJ6lgs3xVn9QegGMUgUcj+4d7dRrAsya3r58ZKpku97WcFb4w==",
1617
+ "version": "4.5.2",
1618
+ "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.5.2.tgz",
1619
+ "integrity": "sha512-A9uSdn72ozbRUSit0eib0TW7nXuNPlaeM0zcGkJ+nE6tFcSDbnmtwoxbTCFBukVQcszDAyvsd7+rTduPTXpygg==",
1532
1620
  "license": "Apache-2.0",
1533
1621
  "dependencies": {
1534
- "@smithy/core": "^3.31.1",
1535
- "@smithy/types": "^4.16.1",
1622
+ "@smithy/core": "^3.33.2",
1623
+ "@smithy/types": "^4.17.2",
1536
1624
  "tslib": "^2.6.2"
1537
1625
  },
1538
1626
  "engines": {
@@ -1540,13 +1628,13 @@
1540
1628
  }
1541
1629
  },
1542
1630
  "node_modules/@smithy/fetch-http-handler": {
1543
- "version": "5.6.13",
1544
- "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.6.13.tgz",
1545
- "integrity": "sha512-4fW86pEUOMbrD5nkbyl/tTvPHHWJFbuB2odl6ps9lWfHoXf9HWh3Q/Smh59qH1g7+c/BSZghX6bbUk4gsiMs8A==",
1631
+ "version": "5.7.2",
1632
+ "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.7.2.tgz",
1633
+ "integrity": "sha512-nZyWTmSpJEXl6VtWVMBJve/7x12DZu6sIX1z1a+ZMaHlQQRs9Zpu6NbTe/gmxYXVRpkjxyDYpZ5gx2IM6f/Wkw==",
1546
1634
  "license": "Apache-2.0",
1547
1635
  "dependencies": {
1548
- "@smithy/core": "^3.31.1",
1549
- "@smithy/types": "^4.16.1",
1636
+ "@smithy/core": "^3.33.2",
1637
+ "@smithy/types": "^4.17.2",
1550
1638
  "tslib": "^2.6.2"
1551
1639
  },
1552
1640
  "engines": {
@@ -1554,13 +1642,13 @@
1554
1642
  }
1555
1643
  },
1556
1644
  "node_modules/@smithy/node-http-handler": {
1557
- "version": "4.9.13",
1558
- "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.9.13.tgz",
1559
- "integrity": "sha512-Nmd/Nl35zfYrd+a6OO2cDJb3GPh9bgTjIUhcM+JFfjpp8/osCgboDV5nCT1I01Pv6R13eSKDKLSoVa5ZB6Zsfw==",
1645
+ "version": "4.11.3",
1646
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.11.3.tgz",
1647
+ "integrity": "sha512-2jY1tSpERfPfWqyBV2pH+iGFaghVsIJszJNsT7hxtQYhVJpWDyc0LqOWI+nXOxOAHaEfZ4PXXtp1wW1TGpHhkA==",
1560
1648
  "license": "Apache-2.0",
1561
1649
  "dependencies": {
1562
- "@smithy/core": "^3.31.1",
1563
- "@smithy/types": "^4.16.1",
1650
+ "@smithy/core": "^3.33.3",
1651
+ "@smithy/types": "^4.17.2",
1564
1652
  "tslib": "^2.6.2"
1565
1653
  },
1566
1654
  "engines": {
@@ -1582,9 +1670,9 @@
1582
1670
  }
1583
1671
  },
1584
1672
  "node_modules/@smithy/types": {
1585
- "version": "4.16.1",
1586
- "resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.16.1.tgz",
1587
- "integrity": "sha512-0JFs3V2y2M9tKW5na/qxe69Zv+uxLMO7QBbhxF/FHu/Gp2NFZAAL9tWl9PU02xxo07pb3G9FTyjNc6D5uZrJIg==",
1673
+ "version": "4.17.2",
1674
+ "resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.17.2.tgz",
1675
+ "integrity": "sha512-FOKpVZob9MPTn2znRzGrnsMHv7BOsKVw3XiP/cOyYLDVZ9qKp4nifIiSCuUU/fIj5Vu0UOAxCFr+qRAtG0NUkA==",
1588
1676
  "license": "Apache-2.0",
1589
1677
  "dependencies": {
1590
1678
  "tslib": "^2.6.2"
@@ -1876,9 +1964,9 @@
1876
1964
  "license": "MIT"
1877
1965
  },
1878
1966
  "node_modules/alasql": {
1879
- "version": "4.17.3",
1880
- "resolved": "https://registry.npmjs.org/alasql/-/alasql-4.17.3.tgz",
1881
- "integrity": "sha512-EOBD6zfZJ1u6Y76672MapJOyahzjDIQGE7nspt4yKhBWZB2k0cIHHakx6iJaolKkjB4vMPIo09ysw52aQfZ9rw==",
1967
+ "version": "4.19.0",
1968
+ "resolved": "https://registry.npmjs.org/alasql/-/alasql-4.19.0.tgz",
1969
+ "integrity": "sha512-HpoGEwaoGJl/L9OGs9aah1QFhC4tPYBLCR5P1DUIjP68IZ41G6+hhBPxbNCF/XBvuoWeDLomqD+b+0IwlcYGdA==",
1882
1970
  "license": "MIT",
1883
1971
  "dependencies": {
1884
1972
  "cross-fetch": "4.1.0",
@@ -2915,9 +3003,9 @@
2915
3003
  "license": "BSD-3-Clause"
2916
3004
  },
2917
3005
  "node_modules/fastify": {
2918
- "version": "5.11.3",
2919
- "resolved": "https://registry.npmjs.org/fastify/-/fastify-5.11.3.tgz",
2920
- "integrity": "sha512-W6hzDP8s0iSeL7LGwY6Oc/ZxuXWOvFEMs6p2L0Si415YRo27W5pBKdOTXxhemBDeSTAcpYf5evRA9onF2OYhPA==",
3006
+ "version": "5.12.1",
3007
+ "resolved": "https://registry.npmjs.org/fastify/-/fastify-5.12.1.tgz",
3008
+ "integrity": "sha512-FWi+tQvwxR/PeRX7Z2mhfEF5ozJ3jn9asiiclzKXNSzJRHAYcU924aIOKAdHFJ+YIKieh3cqr1IwCOvTr41B3Q==",
2921
3009
  "funding": [
2922
3010
  {
2923
3011
  "type": "github",
@@ -2940,7 +3028,7 @@
2940
3028
  "find-my-way": "^9.6.0",
2941
3029
  "light-my-request": "^6.0.0",
2942
3030
  "pino": "^9.14.0 || ^10.1.0",
2943
- "process-warning": "^5.0.0",
3031
+ "process-warning": "^5.1.0",
2944
3032
  "rfdc": "^1.3.1",
2945
3033
  "secure-json-parse": "^4.0.0",
2946
3034
  "semver": "^7.6.0",
@@ -3002,9 +3090,9 @@
3002
3090
  }
3003
3091
  },
3004
3092
  "node_modules/fastify/node_modules/fast-json-stringify/node_modules/fast-uri": {
3005
- "version": "4.1.2",
3006
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-4.1.2.tgz",
3007
- "integrity": "sha512-TyGmBcbDTZXcb2cj5MV89DrF42DKvb3y5DDUNh95iO+IMeAzMkVSxK1PZRrRIpc9yg8U2GhGdbofNa0LS/a4Bw==",
3093
+ "version": "4.1.3",
3094
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-4.1.3.tgz",
3095
+ "integrity": "sha512-7+72G6vLt7jjNas8SmSATx2qeyRIjxeqO3i4IkmDTxlqYZRKANhOe1bnovcp4WZmvsYrp60WyqPyHqgRiX0yXw==",
3008
3096
  "funding": [
3009
3097
  {
3010
3098
  "type": "github",
@@ -3644,9 +3732,9 @@
3644
3732
  "license": "MIT"
3645
3733
  },
3646
3734
  "node_modules/joi": {
3647
- "version": "17.13.4",
3648
- "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.4.tgz",
3649
- "integrity": "sha512-1RuuER6kmt8K8I3nIWvPZKi5RQCb568ZPyY4Pwjlua+yo+63ZTmIwxLZH0heBmiKN4uxjvCiarDrjaeH84xicQ==",
3735
+ "version": "17.13.6",
3736
+ "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.6.tgz",
3737
+ "integrity": "sha512-ImNZaq/LSysofih+xIGYfR0WUXMA9GLUNB//YTCSrZptoRmVgaNAdJyi6K1kXi9pkLEoSkoI8I4UwtNiu/D7nw==",
3650
3738
  "license": "BSD-3-Clause",
3651
3739
  "dependencies": {
3652
3740
  "@hapi/hoek": "^9.3.0",
@@ -4204,6 +4292,8 @@
4204
4292
  },
4205
4293
  "node_modules/on-finished": {
4206
4294
  "version": "2.4.1",
4295
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
4296
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
4207
4297
  "license": "MIT",
4208
4298
  "dependencies": {
4209
4299
  "ee-first": "1.1.1"
@@ -4388,9 +4478,9 @@
4388
4478
  "license": "MIT"
4389
4479
  },
4390
4480
  "node_modules/papaparse": {
4391
- "version": "5.5.4",
4392
- "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.5.4.tgz",
4393
- "integrity": "sha512-SwzWD9gl/ElwYLCI0nUja1mFJzjq2D8ziShfNBa7zCHzkOozeOGDwHWQ+tvCzEZcewecWZ5U7kUopDnG+DFYEQ==",
4481
+ "version": "5.6.0",
4482
+ "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.6.0.tgz",
4483
+ "integrity": "sha512-N2vuNQAYGK1/4vs6HJX86+VYU6OkiSTgdJz3JQfTk1y51cFCO/U8gnaeTF4iNE4r57Tt0sV47dUua1/19pxO6Q==",
4394
4484
  "license": "MIT"
4395
4485
  },
4396
4486
  "node_modules/passport": {
@@ -4614,7 +4704,9 @@
4614
4704
  "license": "MIT"
4615
4705
  },
4616
4706
  "node_modules/process-warning": {
4617
- "version": "5.0.0",
4707
+ "version": "5.1.0",
4708
+ "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-5.1.0.tgz",
4709
+ "integrity": "sha512-jQSaVHsPgtyw60e1rQ/A+/ArPEj/S8pS/vFnyGa/gYFXrKk/6RuDkoqVDQ5NI5MmS01698ltlAk0NoDBNLujRw==",
4618
4710
  "funding": [
4619
4711
  {
4620
4712
  "type": "github",