node-red-contrib-tak-registration 0.16.0 → 0.16.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 (347) hide show
  1. package/node_modules/@types/node/README.md +2 -2
  2. package/node_modules/@types/node/assert.d.ts +8 -6
  3. package/node_modules/@types/node/async_hooks.d.ts +26 -6
  4. package/node_modules/@types/node/buffer.d.ts +7 -3
  5. package/node_modules/@types/node/child_process.d.ts +28 -124
  6. package/node_modules/@types/node/cluster.d.ts +15 -15
  7. package/node_modules/@types/node/console.d.ts +17 -17
  8. package/node_modules/@types/node/crypto.d.ts +95 -38
  9. package/node_modules/@types/node/dgram.d.ts +1 -1
  10. package/node_modules/@types/node/diagnostics_channel.d.ts +18 -13
  11. package/node_modules/@types/node/dns/promises.d.ts +36 -9
  12. package/node_modules/@types/node/dns.d.ts +89 -36
  13. package/node_modules/@types/node/domain.d.ts +1 -1
  14. package/node_modules/@types/node/events.d.ts +1 -2
  15. package/node_modules/@types/node/fs/promises.d.ts +67 -40
  16. package/node_modules/@types/node/fs.d.ts +88 -52
  17. package/node_modules/@types/node/globals.d.ts +148 -351
  18. package/node_modules/@types/node/globals.typedarray.d.ts +1 -0
  19. package/node_modules/@types/node/http.d.ts +73 -7
  20. package/node_modules/@types/node/http2.d.ts +88 -15
  21. package/node_modules/@types/node/https.d.ts +1 -1
  22. package/node_modules/@types/node/index.d.ts +13 -6
  23. package/node_modules/@types/node/inspector.d.ts +222 -13
  24. package/node_modules/@types/node/module.d.ts +153 -31
  25. package/node_modules/@types/node/net.d.ts +3 -6
  26. package/node_modules/@types/node/os.d.ts +8 -7
  27. package/node_modules/@types/node/package.json +14 -84
  28. package/node_modules/@types/node/path.d.ts +1 -1
  29. package/node_modules/@types/node/perf_hooks.d.ts +24 -10
  30. package/node_modules/@types/node/process.d.ts +21 -11
  31. package/node_modules/@types/node/punycode.d.ts +1 -1
  32. package/node_modules/@types/node/querystring.d.ts +1 -1
  33. package/node_modules/@types/node/readline/promises.d.ts +0 -1
  34. package/node_modules/@types/node/readline.d.ts +13 -13
  35. package/node_modules/@types/node/repl.d.ts +25 -17
  36. package/node_modules/@types/node/sea.d.ts +1 -1
  37. package/node_modules/@types/node/sqlite.d.ts +209 -3
  38. package/node_modules/@types/node/stream/web.d.ts +8 -0
  39. package/node_modules/@types/node/stream.d.ts +30 -24
  40. package/node_modules/@types/node/string_decoder.d.ts +1 -1
  41. package/node_modules/@types/node/test.d.ts +2029 -1975
  42. package/node_modules/@types/node/timers/promises.d.ts +1 -1
  43. package/node_modules/@types/node/timers.d.ts +1 -3
  44. package/node_modules/@types/node/tls.d.ts +2 -48
  45. package/node_modules/@types/node/trace_events.d.ts +6 -6
  46. package/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  47. package/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +1 -0
  48. package/node_modules/@types/node/ts5.6/index.d.ts +15 -6
  49. package/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  50. package/node_modules/@types/node/ts5.7/index.d.ts +101 -0
  51. package/node_modules/@types/node/tty.d.ts +1 -1
  52. package/node_modules/@types/node/url.d.ts +73 -20
  53. package/node_modules/@types/node/util.d.ts +23 -298
  54. package/node_modules/@types/node/v8.d.ts +62 -32
  55. package/node_modules/@types/node/vm.d.ts +132 -24
  56. package/node_modules/@types/node/wasi.d.ts +22 -1
  57. package/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  58. package/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  59. package/node_modules/@types/node/web-globals/events.d.ts +94 -0
  60. package/node_modules/@types/node/web-globals/fetch.d.ts +50 -0
  61. package/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
  62. package/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  63. package/node_modules/@types/node/worker_threads.d.ts +85 -26
  64. package/node_modules/@types/node/zlib.d.ts +13 -9
  65. package/node_modules/axios/CHANGELOG.md +58 -0
  66. package/node_modules/axios/README.md +87 -10
  67. package/node_modules/axios/dist/axios.js +355 -289
  68. package/node_modules/axios/dist/axios.js.map +1 -1
  69. package/node_modules/axios/dist/axios.min.js +2 -2
  70. package/node_modules/axios/dist/axios.min.js.map +1 -1
  71. package/node_modules/axios/dist/browser/axios.cjs +286 -213
  72. package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
  73. package/node_modules/axios/dist/esm/axios.js +286 -213
  74. package/node_modules/axios/dist/esm/axios.js.map +1 -1
  75. package/node_modules/axios/dist/esm/axios.min.js +2 -2
  76. package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
  77. package/node_modules/axios/dist/node/axios.cjs +377 -213
  78. package/node_modules/axios/dist/node/axios.cjs.map +1 -1
  79. package/node_modules/axios/index.d.cts +12 -5
  80. package/node_modules/axios/index.d.ts +13 -4
  81. package/node_modules/axios/lib/adapters/adapters.js +6 -4
  82. package/node_modules/axios/lib/adapters/fetch.js +221 -162
  83. package/node_modules/axios/lib/adapters/http.js +18 -0
  84. package/node_modules/axios/lib/adapters/xhr.js +11 -8
  85. package/node_modules/axios/lib/core/Axios.js +0 -2
  86. package/node_modules/axios/lib/core/AxiosError.js +10 -3
  87. package/node_modules/axios/lib/core/dispatchRequest.js +1 -1
  88. package/node_modules/axios/lib/defaults/index.js +1 -1
  89. package/node_modules/axios/lib/env/data.js +1 -1
  90. package/node_modules/axios/lib/helpers/buildURL.js +1 -3
  91. package/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +73 -0
  92. package/node_modules/axios/lib/helpers/resolveConfig.js +13 -9
  93. package/node_modules/axios/lib/utils.js +5 -3
  94. package/node_modules/axios/package.json +18 -12
  95. package/node_modules/bignumber.js/CHANGELOG.md +6 -1
  96. package/node_modules/bignumber.js/README.md +5 -4
  97. package/node_modules/bignumber.js/bignumber.js +2 -2
  98. package/node_modules/bignumber.js/bignumber.mjs +2 -2
  99. package/node_modules/bignumber.js/package.json +1 -1
  100. package/node_modules/follow-redirects/package.json +1 -1
  101. package/node_modules/protobufjs/dist/light/protobuf.js +2 -2
  102. package/node_modules/protobufjs/dist/light/protobuf.min.js +2 -2
  103. package/node_modules/protobufjs/dist/minimal/protobuf.js +2 -2
  104. package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
  105. package/node_modules/protobufjs/dist/protobuf.js +2 -2
  106. package/node_modules/protobufjs/dist/protobuf.min.js +2 -2
  107. package/node_modules/protobufjs/google/protobuf/descriptor.json +2 -2
  108. package/node_modules/protobufjs/google/protobuf/descriptor.proto +2 -1
  109. package/node_modules/protobufjs/package.json +1 -1
  110. package/node_modules/undici-types/agent.d.ts +11 -7
  111. package/node_modules/undici-types/api.d.ts +24 -24
  112. package/node_modules/undici-types/balanced-pool.d.ts +11 -11
  113. package/node_modules/undici-types/cache-interceptor.d.ts +172 -0
  114. package/node_modules/undici-types/client-stats.d.ts +15 -0
  115. package/node_modules/undici-types/client.d.ts +18 -16
  116. package/node_modules/undici-types/cookies.d.ts +2 -0
  117. package/node_modules/undici-types/diagnostics-channel.d.ts +19 -10
  118. package/node_modules/undici-types/dispatcher.d.ts +119 -93
  119. package/node_modules/undici-types/env-http-proxy-agent.d.ts +4 -3
  120. package/node_modules/undici-types/errors.d.ts +69 -47
  121. package/node_modules/undici-types/eventsource.d.ts +3 -3
  122. package/node_modules/undici-types/fetch.d.ts +18 -16
  123. package/node_modules/undici-types/formdata.d.ts +7 -7
  124. package/node_modules/undici-types/global-dispatcher.d.ts +4 -4
  125. package/node_modules/undici-types/global-origin.d.ts +5 -5
  126. package/node_modules/undici-types/h2c-client.d.ts +75 -0
  127. package/node_modules/undici-types/handlers.d.ts +8 -8
  128. package/node_modules/undici-types/header.d.ts +157 -1
  129. package/node_modules/undici-types/index.d.ts +51 -47
  130. package/node_modules/undici-types/interceptors.d.ts +25 -8
  131. package/node_modules/undici-types/mock-agent.d.ts +36 -18
  132. package/node_modules/undici-types/mock-call-history.d.ts +111 -0
  133. package/node_modules/undici-types/mock-client.d.ts +6 -4
  134. package/node_modules/undici-types/mock-errors.d.ts +3 -3
  135. package/node_modules/undici-types/mock-interceptor.d.ts +21 -19
  136. package/node_modules/undici-types/mock-pool.d.ts +6 -4
  137. package/node_modules/undici-types/package.json +1 -1
  138. package/node_modules/undici-types/patch.d.ts +0 -4
  139. package/node_modules/undici-types/pool-stats.d.ts +8 -8
  140. package/node_modules/undici-types/pool.d.ts +14 -12
  141. package/node_modules/undici-types/proxy-agent.d.ts +5 -4
  142. package/node_modules/undici-types/readable.d.ts +18 -15
  143. package/node_modules/undici-types/retry-agent.d.ts +1 -1
  144. package/node_modules/undici-types/retry-handler.d.ts +19 -10
  145. package/node_modules/undici-types/util.d.ts +3 -3
  146. package/node_modules/undici-types/utility.d.ts +7 -0
  147. package/node_modules/undici-types/webidl.d.ts +50 -8
  148. package/node_modules/undici-types/websocket.d.ts +36 -2
  149. package/node_modules/uuid/README.md +8 -19
  150. package/node_modules/uuid/dist/{esm-browser/uuid-bin.js → uuid-bin.js} +1 -1
  151. package/node_modules/uuid/dist/{esm-browser/v4.js → v4.js} +7 -4
  152. package/node_modules/uuid/{dist/esm → dist-node}/md5.js +1 -1
  153. package/node_modules/uuid/dist-node/native.js +2 -0
  154. package/node_modules/uuid/{dist/esm → dist-node}/rng.js +1 -1
  155. package/node_modules/uuid/{dist/esm → dist-node}/sha1.js +1 -1
  156. package/node_modules/uuid/{dist/esm → dist-node}/uuid-bin.js +1 -1
  157. package/node_modules/uuid/{dist/esm → dist-node}/v4.js +7 -4
  158. package/node_modules/uuid/package.json +28 -41
  159. package/package.json +4 -4
  160. package/tak-registration.bak +557 -0
  161. package/tak-registration.js +8 -8
  162. package/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  163. package/node_modules/@types/node/compatibility/index.d.ts +0 -9
  164. package/node_modules/@types/node/compatibility/indexable.d.ts +0 -23
  165. package/node_modules/@types/node/dom-events.d.ts +0 -124
  166. package/node_modules/undici-types/file.d.ts +0 -39
  167. package/node_modules/undici-types/filereader.d.ts +0 -54
  168. package/node_modules/uuid/dist/cjs/index.d.ts +0 -15
  169. package/node_modules/uuid/dist/cjs/index.js +0 -31
  170. package/node_modules/uuid/dist/cjs/max.d.ts +0 -2
  171. package/node_modules/uuid/dist/cjs/max.js +0 -3
  172. package/node_modules/uuid/dist/cjs/md5.d.ts +0 -4
  173. package/node_modules/uuid/dist/cjs/md5.js +0 -13
  174. package/node_modules/uuid/dist/cjs/native.d.ts +0 -6
  175. package/node_modules/uuid/dist/cjs/native.js +0 -4
  176. package/node_modules/uuid/dist/cjs/nil.d.ts +0 -2
  177. package/node_modules/uuid/dist/cjs/nil.js +0 -3
  178. package/node_modules/uuid/dist/cjs/package.json +0 -1
  179. package/node_modules/uuid/dist/cjs/parse.d.ts +0 -2
  180. package/node_modules/uuid/dist/cjs/parse.js +0 -11
  181. package/node_modules/uuid/dist/cjs/regex.d.ts +0 -2
  182. package/node_modules/uuid/dist/cjs/regex.js +0 -3
  183. package/node_modules/uuid/dist/cjs/rng.d.ts +0 -1
  184. package/node_modules/uuid/dist/cjs/rng.js +0 -13
  185. package/node_modules/uuid/dist/cjs/sha1.d.ts +0 -4
  186. package/node_modules/uuid/dist/cjs/sha1.js +0 -13
  187. package/node_modules/uuid/dist/cjs/stringify.d.ts +0 -3
  188. package/node_modules/uuid/dist/cjs/stringify.js +0 -39
  189. package/node_modules/uuid/dist/cjs/types.d.ts +0 -21
  190. package/node_modules/uuid/dist/cjs/types.js +0 -2
  191. package/node_modules/uuid/dist/cjs/uuid-bin.d.ts +0 -1
  192. package/node_modules/uuid/dist/cjs/uuid-bin.js +0 -72
  193. package/node_modules/uuid/dist/cjs/v1.d.ts +0 -11
  194. package/node_modules/uuid/dist/cjs/v1.js +0 -87
  195. package/node_modules/uuid/dist/cjs/v1ToV6.d.ts +0 -2
  196. package/node_modules/uuid/dist/cjs/v1ToV6.js +0 -13
  197. package/node_modules/uuid/dist/cjs/v3.d.ts +0 -9
  198. package/node_modules/uuid/dist/cjs/v3.js +0 -14
  199. package/node_modules/uuid/dist/cjs/v35.d.ts +0 -7
  200. package/node_modules/uuid/dist/cjs/v35.js +0 -41
  201. package/node_modules/uuid/dist/cjs/v4.d.ts +0 -4
  202. package/node_modules/uuid/dist/cjs/v4.js +0 -29
  203. package/node_modules/uuid/dist/cjs/v5.d.ts +0 -9
  204. package/node_modules/uuid/dist/cjs/v5.js +0 -14
  205. package/node_modules/uuid/dist/cjs/v6.d.ts +0 -4
  206. package/node_modules/uuid/dist/cjs/v6.js +0 -19
  207. package/node_modules/uuid/dist/cjs/v6ToV1.d.ts +0 -2
  208. package/node_modules/uuid/dist/cjs/v6ToV1.js +0 -13
  209. package/node_modules/uuid/dist/cjs/v7.d.ts +0 -9
  210. package/node_modules/uuid/dist/cjs/v7.js +0 -69
  211. package/node_modules/uuid/dist/cjs/validate.d.ts +0 -2
  212. package/node_modules/uuid/dist/cjs/validate.js +0 -7
  213. package/node_modules/uuid/dist/cjs/version.d.ts +0 -2
  214. package/node_modules/uuid/dist/cjs/version.js +0 -10
  215. package/node_modules/uuid/dist/cjs-browser/index.js +0 -31
  216. package/node_modules/uuid/dist/cjs-browser/max.js +0 -3
  217. package/node_modules/uuid/dist/cjs-browser/md5.js +0 -137
  218. package/node_modules/uuid/dist/cjs-browser/native.js +0 -4
  219. package/node_modules/uuid/dist/cjs-browser/nil.js +0 -3
  220. package/node_modules/uuid/dist/cjs-browser/package.json +0 -1
  221. package/node_modules/uuid/dist/cjs-browser/parse.js +0 -11
  222. package/node_modules/uuid/dist/cjs-browser/regex.js +0 -3
  223. package/node_modules/uuid/dist/cjs-browser/rng.js +0 -14
  224. package/node_modules/uuid/dist/cjs-browser/sha1.js +0 -72
  225. package/node_modules/uuid/dist/cjs-browser/stringify.js +0 -39
  226. package/node_modules/uuid/dist/cjs-browser/types.js +0 -2
  227. package/node_modules/uuid/dist/cjs-browser/uuid-bin.js +0 -72
  228. package/node_modules/uuid/dist/cjs-browser/v1.js +0 -87
  229. package/node_modules/uuid/dist/cjs-browser/v1ToV6.js +0 -13
  230. package/node_modules/uuid/dist/cjs-browser/v3.js +0 -14
  231. package/node_modules/uuid/dist/cjs-browser/v35.js +0 -41
  232. package/node_modules/uuid/dist/cjs-browser/v4.js +0 -29
  233. package/node_modules/uuid/dist/cjs-browser/v5.js +0 -14
  234. package/node_modules/uuid/dist/cjs-browser/v6.js +0 -19
  235. package/node_modules/uuid/dist/cjs-browser/v6ToV1.js +0 -13
  236. package/node_modules/uuid/dist/cjs-browser/v7.js +0 -69
  237. package/node_modules/uuid/dist/cjs-browser/validate.js +0 -7
  238. package/node_modules/uuid/dist/cjs-browser/version.js +0 -10
  239. package/node_modules/uuid/dist/esm/index.d.ts +0 -15
  240. package/node_modules/uuid/dist/esm/max.d.ts +0 -2
  241. package/node_modules/uuid/dist/esm/md5.d.ts +0 -4
  242. package/node_modules/uuid/dist/esm/native.d.ts +0 -6
  243. package/node_modules/uuid/dist/esm/native.js +0 -2
  244. package/node_modules/uuid/dist/esm/nil.d.ts +0 -2
  245. package/node_modules/uuid/dist/esm/parse.d.ts +0 -2
  246. package/node_modules/uuid/dist/esm/regex.d.ts +0 -2
  247. package/node_modules/uuid/dist/esm/rng.d.ts +0 -1
  248. package/node_modules/uuid/dist/esm/sha1.d.ts +0 -4
  249. package/node_modules/uuid/dist/esm/stringify.d.ts +0 -3
  250. package/node_modules/uuid/dist/esm/types.d.ts +0 -21
  251. package/node_modules/uuid/dist/esm/uuid-bin.d.ts +0 -1
  252. package/node_modules/uuid/dist/esm/v1.d.ts +0 -11
  253. package/node_modules/uuid/dist/esm/v1ToV6.d.ts +0 -2
  254. package/node_modules/uuid/dist/esm/v3.d.ts +0 -9
  255. package/node_modules/uuid/dist/esm/v35.d.ts +0 -7
  256. package/node_modules/uuid/dist/esm/v4.d.ts +0 -4
  257. package/node_modules/uuid/dist/esm/v5.d.ts +0 -9
  258. package/node_modules/uuid/dist/esm/v6.d.ts +0 -4
  259. package/node_modules/uuid/dist/esm/v6ToV1.d.ts +0 -2
  260. package/node_modules/uuid/dist/esm/v7.d.ts +0 -9
  261. package/node_modules/uuid/dist/esm/validate.d.ts +0 -2
  262. package/node_modules/uuid/dist/esm/version.d.ts +0 -2
  263. package/node_modules/uuid/dist/esm-browser/index.d.ts +0 -15
  264. package/node_modules/uuid/dist/esm-browser/max.d.ts +0 -2
  265. package/node_modules/uuid/dist/esm-browser/md5.d.ts +0 -2
  266. package/node_modules/uuid/dist/esm-browser/native.d.ts +0 -4
  267. package/node_modules/uuid/dist/esm-browser/nil.d.ts +0 -2
  268. package/node_modules/uuid/dist/esm-browser/parse.d.ts +0 -2
  269. package/node_modules/uuid/dist/esm-browser/regex.d.ts +0 -2
  270. package/node_modules/uuid/dist/esm-browser/rng.d.ts +0 -1
  271. package/node_modules/uuid/dist/esm-browser/sha1.d.ts +0 -2
  272. package/node_modules/uuid/dist/esm-browser/stringify.d.ts +0 -3
  273. package/node_modules/uuid/dist/esm-browser/types.d.ts +0 -21
  274. package/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +0 -1
  275. package/node_modules/uuid/dist/esm-browser/v1.d.ts +0 -11
  276. package/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +0 -2
  277. package/node_modules/uuid/dist/esm-browser/v3.d.ts +0 -9
  278. package/node_modules/uuid/dist/esm-browser/v35.d.ts +0 -7
  279. package/node_modules/uuid/dist/esm-browser/v4.d.ts +0 -4
  280. package/node_modules/uuid/dist/esm-browser/v5.d.ts +0 -9
  281. package/node_modules/uuid/dist/esm-browser/v6.d.ts +0 -4
  282. package/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +0 -2
  283. package/node_modules/uuid/dist/esm-browser/v7.d.ts +0 -9
  284. package/node_modules/uuid/dist/esm-browser/validate.d.ts +0 -2
  285. package/node_modules/uuid/dist/esm-browser/version.d.ts +0 -2
  286. /package/node_modules/uuid/dist/{cjs-browser/index.d.ts → index.d.ts} +0 -0
  287. /package/node_modules/uuid/dist/{esm/index.js → index.js} +0 -0
  288. /package/node_modules/uuid/dist/{cjs-browser/max.d.ts → max.d.ts} +0 -0
  289. /package/node_modules/uuid/dist/{esm/max.js → max.js} +0 -0
  290. /package/node_modules/uuid/dist/{cjs-browser/md5.d.ts → md5.d.ts} +0 -0
  291. /package/node_modules/uuid/dist/{esm-browser/md5.js → md5.js} +0 -0
  292. /package/node_modules/uuid/dist/{cjs-browser/native.d.ts → native.d.ts} +0 -0
  293. /package/node_modules/uuid/dist/{esm-browser/native.js → native.js} +0 -0
  294. /package/node_modules/uuid/dist/{cjs-browser/nil.d.ts → nil.d.ts} +0 -0
  295. /package/node_modules/uuid/dist/{esm/nil.js → nil.js} +0 -0
  296. /package/node_modules/uuid/dist/{cjs-browser/parse.d.ts → parse.d.ts} +0 -0
  297. /package/node_modules/uuid/dist/{esm/parse.js → parse.js} +0 -0
  298. /package/node_modules/uuid/dist/{cjs-browser/regex.d.ts → regex.d.ts} +0 -0
  299. /package/node_modules/uuid/dist/{esm/regex.js → regex.js} +0 -0
  300. /package/node_modules/uuid/dist/{cjs-browser/rng.d.ts → rng.d.ts} +0 -0
  301. /package/node_modules/uuid/dist/{esm-browser/rng.js → rng.js} +0 -0
  302. /package/node_modules/uuid/dist/{cjs-browser/sha1.d.ts → sha1.d.ts} +0 -0
  303. /package/node_modules/uuid/dist/{esm-browser/sha1.js → sha1.js} +0 -0
  304. /package/node_modules/uuid/dist/{cjs-browser/stringify.d.ts → stringify.d.ts} +0 -0
  305. /package/node_modules/uuid/dist/{esm/stringify.js → stringify.js} +0 -0
  306. /package/node_modules/uuid/dist/{cjs-browser/types.d.ts → types.d.ts} +0 -0
  307. /package/node_modules/uuid/dist/{esm/types.js → types.js} +0 -0
  308. /package/node_modules/uuid/dist/{cjs-browser/uuid-bin.d.ts → uuid-bin.d.ts} +0 -0
  309. /package/node_modules/uuid/dist/{cjs-browser/v1.d.ts → v1.d.ts} +0 -0
  310. /package/node_modules/uuid/dist/{esm/v1.js → v1.js} +0 -0
  311. /package/node_modules/uuid/dist/{cjs-browser/v1ToV6.d.ts → v1ToV6.d.ts} +0 -0
  312. /package/node_modules/uuid/dist/{esm/v1ToV6.js → v1ToV6.js} +0 -0
  313. /package/node_modules/uuid/dist/{cjs-browser/v3.d.ts → v3.d.ts} +0 -0
  314. /package/node_modules/uuid/dist/{esm/v3.js → v3.js} +0 -0
  315. /package/node_modules/uuid/dist/{cjs-browser/v35.d.ts → v35.d.ts} +0 -0
  316. /package/node_modules/uuid/dist/{esm/v35.js → v35.js} +0 -0
  317. /package/node_modules/uuid/dist/{cjs-browser/v4.d.ts → v4.d.ts} +0 -0
  318. /package/node_modules/uuid/dist/{cjs-browser/v5.d.ts → v5.d.ts} +0 -0
  319. /package/node_modules/uuid/dist/{esm/v5.js → v5.js} +0 -0
  320. /package/node_modules/uuid/dist/{cjs-browser/v6.d.ts → v6.d.ts} +0 -0
  321. /package/node_modules/uuid/dist/{esm/v6.js → v6.js} +0 -0
  322. /package/node_modules/uuid/dist/{cjs-browser/v6ToV1.d.ts → v6ToV1.d.ts} +0 -0
  323. /package/node_modules/uuid/dist/{esm/v6ToV1.js → v6ToV1.js} +0 -0
  324. /package/node_modules/uuid/dist/{cjs-browser/v7.d.ts → v7.d.ts} +0 -0
  325. /package/node_modules/uuid/dist/{esm/v7.js → v7.js} +0 -0
  326. /package/node_modules/uuid/dist/{cjs-browser/validate.d.ts → validate.d.ts} +0 -0
  327. /package/node_modules/uuid/dist/{esm/validate.js → validate.js} +0 -0
  328. /package/node_modules/uuid/dist/{cjs-browser/version.d.ts → version.d.ts} +0 -0
  329. /package/node_modules/uuid/dist/{esm/version.js → version.js} +0 -0
  330. /package/node_modules/uuid/{dist/esm → dist-node}/bin/uuid +0 -0
  331. /package/node_modules/uuid/{dist/esm-browser → dist-node}/index.js +0 -0
  332. /package/node_modules/uuid/{dist/esm-browser → dist-node}/max.js +0 -0
  333. /package/node_modules/uuid/{dist/esm-browser → dist-node}/nil.js +0 -0
  334. /package/node_modules/uuid/{dist/esm-browser → dist-node}/parse.js +0 -0
  335. /package/node_modules/uuid/{dist/esm-browser → dist-node}/regex.js +0 -0
  336. /package/node_modules/uuid/{dist/esm-browser → dist-node}/stringify.js +0 -0
  337. /package/node_modules/uuid/{dist/esm-browser → dist-node}/types.js +0 -0
  338. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v1.js +0 -0
  339. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v1ToV6.js +0 -0
  340. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v3.js +0 -0
  341. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v35.js +0 -0
  342. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v5.js +0 -0
  343. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v6.js +0 -0
  344. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v6ToV1.js +0 -0
  345. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v7.js +0 -0
  346. /package/node_modules/uuid/{dist/esm-browser → dist-node}/validate.js +0 -0
  347. /package/node_modules/uuid/{dist/esm-browser → dist-node}/version.js +0 -0
@@ -6,7 +6,7 @@
6
6
  * import http2 from 'node:http2';
7
7
  * ```
8
8
  * @since v8.4.0
9
- * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/http2.js)
9
+ * @see [source](https://github.com/nodejs/node/blob/v24.x/lib/http2.js)
10
10
  */
11
11
  declare module "http2" {
12
12
  import EventEmitter = require("node:events");
@@ -32,18 +32,14 @@ declare module "http2" {
32
32
  ":scheme"?: string | undefined;
33
33
  }
34
34
  // Http2Stream
35
- export interface StreamPriorityOptions {
36
- exclusive?: boolean | undefined;
37
- parent?: number | undefined;
38
- weight?: number | undefined;
39
- silent?: boolean | undefined;
40
- }
41
35
  export interface StreamState {
42
36
  localWindowSize?: number | undefined;
43
37
  state?: number | undefined;
44
38
  localClose?: number | undefined;
45
39
  remoteClose?: number | undefined;
40
+ /** @deprecated */
46
41
  sumDependencyWeight?: number | undefined;
42
+ /** @deprecated */
47
43
  weight?: number | undefined;
48
44
  }
49
45
  export interface ServerStreamResponseOptions {
@@ -151,10 +147,9 @@ declare module "http2" {
151
147
  */
152
148
  close(code?: number, callback?: () => void): void;
153
149
  /**
154
- * Updates the priority for this `Http2Stream` instance.
155
- * @since v8.4.0
150
+ * @deprecated Priority signaling is no longer supported in Node.js.
156
151
  */
157
- priority(options: StreamPriorityOptions): void;
152
+ priority(options: unknown): void;
158
153
  /**
159
154
  * ```js
160
155
  * import http2 from 'node:http2';
@@ -395,7 +390,7 @@ declare module "http2" {
395
390
  ): void;
396
391
  pushStream(
397
392
  headers: OutgoingHttpHeaders,
398
- options?: StreamPriorityOptions,
393
+ options?: Pick<ClientSessionRequestOptions, "exclusive" | "parent">,
399
394
  callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void,
400
395
  ): void;
401
396
  /**
@@ -629,7 +624,6 @@ declare module "http2" {
629
624
  endStream?: boolean | undefined;
630
625
  exclusive?: boolean | undefined;
631
626
  parent?: number | undefined;
632
- weight?: number | undefined;
633
627
  waitForTrailers?: boolean | undefined;
634
628
  signal?: AbortSignal | undefined;
635
629
  }
@@ -965,7 +959,10 @@ declare module "http2" {
965
959
  * * `:path` \= `/`
966
960
  * @since v8.4.0
967
961
  */
968
- request(headers?: OutgoingHttpHeaders, options?: ClientSessionRequestOptions): ClientHttp2Stream;
962
+ request(
963
+ headers?: OutgoingHttpHeaders | readonly string[],
964
+ options?: ClientSessionRequestOptions,
965
+ ): ClientHttp2Stream;
969
966
  addListener(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this;
970
967
  addListener(event: "origin", listener: (origins: string[]) => void): this;
971
968
  addListener(
@@ -1223,14 +1220,66 @@ declare module "http2" {
1223
1220
  }
1224
1221
  // Http2Server
1225
1222
  export interface SessionOptions {
1223
+ /**
1224
+ * Sets the maximum dynamic table size for deflating header fields.
1225
+ * @default 4Kib
1226
+ */
1226
1227
  maxDeflateDynamicTableSize?: number | undefined;
1228
+ /**
1229
+ * Sets the maximum number of settings entries per `SETTINGS` frame.
1230
+ * The minimum value allowed is `1`.
1231
+ * @default 32
1232
+ */
1233
+ maxSettings?: number | undefined;
1234
+ /**
1235
+ * Sets the maximum memory that the `Http2Session` is permitted to use.
1236
+ * The value is expressed in terms of number of megabytes, e.g. `1` equal 1 megabyte.
1237
+ * The minimum value allowed is `1`.
1238
+ * This is a credit based limit, existing `Http2Stream`s may cause this limit to be exceeded,
1239
+ * but new `Http2Stream` instances will be rejected while this limit is exceeded.
1240
+ * The current number of `Http2Stream` sessions, the current memory use of the header compression tables,
1241
+ * current data queued to be sent, and unacknowledged `PING` and `SETTINGS` frames are all counted towards the current limit.
1242
+ * @default 10
1243
+ */
1227
1244
  maxSessionMemory?: number | undefined;
1245
+ /**
1246
+ * Sets the maximum number of header entries.
1247
+ * This is similar to `server.maxHeadersCount` or `request.maxHeadersCount` in the `node:http` module.
1248
+ * The minimum value is `1`.
1249
+ * @default 128
1250
+ */
1228
1251
  maxHeaderListPairs?: number | undefined;
1252
+ /**
1253
+ * Sets the maximum number of outstanding, unacknowledged pings.
1254
+ * @default 10
1255
+ */
1229
1256
  maxOutstandingPings?: number | undefined;
1257
+ /**
1258
+ * Sets the maximum allowed size for a serialized, compressed block of headers.
1259
+ * Attempts to send headers that exceed this limit will result in
1260
+ * a `'frameError'` event being emitted and the stream being closed and destroyed.
1261
+ */
1230
1262
  maxSendHeaderBlockLength?: number | undefined;
1263
+ /**
1264
+ * Strategy used for determining the amount of padding to use for `HEADERS` and `DATA` frames.
1265
+ * @default http2.constants.PADDING_STRATEGY_NONE
1266
+ */
1231
1267
  paddingStrategy?: number | undefined;
1268
+ /**
1269
+ * Sets the maximum number of concurrent streams for the remote peer as if a `SETTINGS` frame had been received.
1270
+ * Will be overridden if the remote peer sets its own value for `maxConcurrentStreams`.
1271
+ * @default 100
1272
+ */
1232
1273
  peerMaxConcurrentStreams?: number | undefined;
1274
+ /**
1275
+ * The initial settings to send to the remote peer upon connection.
1276
+ */
1233
1277
  settings?: Settings | undefined;
1278
+ /**
1279
+ * The array of integer values determines the settings types,
1280
+ * which are included in the `CustomSettings`-property of the received remoteSettings.
1281
+ * Please see the `CustomSettings`-property of the `Http2Settings` object for more information, on the allowed setting types.
1282
+ */
1234
1283
  remoteCustomSettings?: number[] | undefined;
1235
1284
  /**
1236
1285
  * Specifies a timeout in milliseconds that
@@ -1239,11 +1288,35 @@ declare module "http2" {
1239
1288
  * @default 100000
1240
1289
  */
1241
1290
  unknownProtocolTimeout?: number | undefined;
1242
- selectPadding?(frameLen: number, maxFrameLen: number): number;
1291
+ /**
1292
+ * If `true`, it turns on strict leading
1293
+ * and trailing whitespace validation for HTTP/2 header field names and values
1294
+ * as per [RFC-9113](https://www.rfc-editor.org/rfc/rfc9113.html#section-8.2.1).
1295
+ * @since v24.2.0
1296
+ * @default true
1297
+ */
1298
+ strictFieldWhitespaceValidation?: boolean | undefined;
1243
1299
  }
1244
1300
  export interface ClientSessionOptions extends SessionOptions {
1301
+ /**
1302
+ * Sets the maximum number of reserved push streams the client will accept at any given time.
1303
+ * Once the current number of currently reserved push streams exceeds reaches this limit,
1304
+ * new push streams sent by the server will be automatically rejected.
1305
+ * The minimum allowed value is 0. The maximum allowed value is 2<sup>32</sup>-1.
1306
+ * A negative value sets this option to the maximum allowed value.
1307
+ * @default 200
1308
+ */
1245
1309
  maxReservedRemoteStreams?: number | undefined;
1310
+ /**
1311
+ * An optional callback that receives the `URL` instance passed to `connect` and the `options` object,
1312
+ * and returns any `Duplex` stream that is to be used as the connection for this session.
1313
+ */
1246
1314
  createConnection?: ((authority: url.URL, option: SessionOptions) => stream.Duplex) | undefined;
1315
+ /**
1316
+ * The protocol to connect with, if not set in the `authority`.
1317
+ * Value may be either `'http:'` or `'https:'`.
1318
+ * @default 'https:'
1319
+ */
1247
1320
  protocol?: "http:" | "https:" | undefined;
1248
1321
  }
1249
1322
  export interface ServerSessionOptions<
@@ -1789,7 +1862,7 @@ declare module "http2" {
1789
1862
  * If there were no previous values for the header, this is equivalent to calling {@link setHeader}.
1790
1863
  *
1791
1864
  * Attempting to set a header field name or value that contains invalid characters will result in a
1792
- * [TypeError](https://nodejs.org/docs/latest-v22.x/api/errors.html#class-typeerror) being thrown.
1865
+ * [TypeError](https://nodejs.org/docs/latest-v24.x/api/errors.html#class-typeerror) being thrown.
1793
1866
  *
1794
1867
  * ```js
1795
1868
  * // Returns headers including "set-cookie: a" and "set-cookie: b"
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a
3
3
  * separate module.
4
- * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/https.js)
4
+ * @see [source](https://github.com/nodejs/node/blob/v24.x/lib/https.js)
5
5
  */
6
6
  declare module "https" {
7
7
  import { Duplex } from "node:stream";
@@ -22,20 +22,28 @@
22
22
  * IN THE SOFTWARE.
23
23
  */
24
24
 
25
- // NOTE: These definitions support Node.js and TypeScript 5.7+.
25
+ // NOTE: These definitions support Node.js and TypeScript 5.8+.
26
26
 
27
- // Reference required TypeScript libs:
27
+ // Reference required TypeScript libraries:
28
28
  /// <reference lib="es2020" />
29
+ /// <reference lib="esnext.disposable" />
30
+ /// <reference lib="esnext.float16" />
29
31
 
30
- // TypeScript backwards-compatibility definitions:
31
- /// <reference path="compatibility/index.d.ts" />
32
+ // Iterator definitions required for compatibility with TypeScript <5.6:
33
+ /// <reference path="compatibility/iterators.d.ts" />
32
34
 
33
- // Definitions specific to TypeScript 5.7+:
35
+ // Definitions for Node.js modules specific to TypeScript 5.7+:
34
36
  /// <reference path="globals.typedarray.d.ts" />
35
37
  /// <reference path="buffer.buffer.d.ts" />
36
38
 
37
39
  // Definitions for Node.js modules that are not specific to any version of TypeScript:
38
40
  /// <reference path="globals.d.ts" />
41
+ /// <reference path="web-globals/abortcontroller.d.ts" />
42
+ /// <reference path="web-globals/domexception.d.ts" />
43
+ /// <reference path="web-globals/events.d.ts" />
44
+ /// <reference path="web-globals/fetch.d.ts" />
45
+ /// <reference path="web-globals/navigator.d.ts" />
46
+ /// <reference path="web-globals/storage.d.ts" />
39
47
  /// <reference path="assert.d.ts" />
40
48
  /// <reference path="assert/strict.d.ts" />
41
49
  /// <reference path="async_hooks.d.ts" />
@@ -51,7 +59,6 @@
51
59
  /// <reference path="dns/promises.d.ts" />
52
60
  /// <reference path="dns/promises.d.ts" />
53
61
  /// <reference path="domain.d.ts" />
54
- /// <reference path="dom-events.d.ts" />
55
62
  /// <reference path="events.d.ts" />
56
63
  /// <reference path="fs.d.ts" />
57
64
  /// <reference path="fs/promises.d.ts" />