node-red-contrib-tak-registration 0.15.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 (374) 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 +99 -0
  66. package/node_modules/axios/README.md +105 -28
  67. package/node_modules/axios/dist/axios.js +395 -292
  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 +333 -219
  72. package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
  73. package/node_modules/axios/dist/esm/axios.js +333 -219
  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 +424 -219
  78. package/node_modules/axios/dist/node/axios.cjs.map +1 -1
  79. package/node_modules/axios/index.d.cts +26 -8
  80. package/node_modules/axios/index.d.ts +14 -5
  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 +2 -4
  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/core/mergeConfig.js +1 -1
  89. package/node_modules/axios/lib/defaults/index.js +1 -1
  90. package/node_modules/axios/lib/env/data.js +1 -1
  91. package/node_modules/axios/lib/helpers/buildURL.js +1 -3
  92. package/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +73 -0
  93. package/node_modules/axios/lib/helpers/resolveConfig.js +13 -9
  94. package/node_modules/axios/lib/helpers/throttle.js +1 -1
  95. package/node_modules/axios/lib/helpers/toFormData.js +4 -0
  96. package/node_modules/axios/lib/helpers/toURLEncodedForm.js +4 -3
  97. package/node_modules/axios/lib/utils.js +40 -2
  98. package/node_modules/axios/package.json +30 -15
  99. package/node_modules/bignumber.js/CHANGELOG.md +6 -1
  100. package/node_modules/bignumber.js/README.md +5 -4
  101. package/node_modules/bignumber.js/bignumber.js +2 -2
  102. package/node_modules/bignumber.js/bignumber.mjs +2 -2
  103. package/node_modules/bignumber.js/package.json +1 -1
  104. package/node_modules/fast-xml-parser/CHANGELOG.md +7 -0
  105. package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
  106. package/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
  107. package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
  108. package/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
  109. package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
  110. package/node_modules/fast-xml-parser/package.json +1 -2
  111. package/node_modules/fast-xml-parser/src/cli/cli.js +4 -0
  112. package/node_modules/fast-xml-parser/src/fxp.d.ts +5 -5
  113. package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +3 -3
  114. package/node_modules/follow-redirects/package.json +1 -1
  115. package/node_modules/form-data/CHANGELOG.md +601 -0
  116. package/node_modules/form-data/{Readme.md → README.md} +34 -37
  117. package/node_modules/form-data/lib/browser.js +3 -1
  118. package/node_modules/form-data/lib/form_data.js +126 -135
  119. package/node_modules/form-data/lib/populate.js +5 -5
  120. package/node_modules/form-data/package.json +24 -16
  121. package/node_modules/protobufjs/dist/light/protobuf.js +8 -7
  122. package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
  123. package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
  124. package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
  125. package/node_modules/protobufjs/dist/minimal/protobuf.js +2 -2
  126. package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
  127. package/node_modules/protobufjs/dist/protobuf.js +8 -7
  128. package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
  129. package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
  130. package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
  131. package/node_modules/protobufjs/ext/descriptor/index.js +179 -69
  132. package/node_modules/protobufjs/google/protobuf/descriptor.json +660 -17
  133. package/node_modules/protobufjs/google/protobuf/descriptor.proto +255 -6
  134. package/node_modules/protobufjs/package.json +1 -1
  135. package/node_modules/protobufjs/src/namespace.js +3 -1
  136. package/node_modules/protobufjs/src/root.js +3 -4
  137. package/node_modules/undici-types/agent.d.ts +11 -7
  138. package/node_modules/undici-types/api.d.ts +24 -24
  139. package/node_modules/undici-types/balanced-pool.d.ts +11 -11
  140. package/node_modules/undici-types/cache-interceptor.d.ts +172 -0
  141. package/node_modules/undici-types/client-stats.d.ts +15 -0
  142. package/node_modules/undici-types/client.d.ts +18 -16
  143. package/node_modules/undici-types/cookies.d.ts +2 -0
  144. package/node_modules/undici-types/diagnostics-channel.d.ts +19 -10
  145. package/node_modules/undici-types/dispatcher.d.ts +119 -93
  146. package/node_modules/undici-types/env-http-proxy-agent.d.ts +4 -3
  147. package/node_modules/undici-types/errors.d.ts +69 -47
  148. package/node_modules/undici-types/eventsource.d.ts +3 -3
  149. package/node_modules/undici-types/fetch.d.ts +18 -16
  150. package/node_modules/undici-types/formdata.d.ts +7 -7
  151. package/node_modules/undici-types/global-dispatcher.d.ts +4 -4
  152. package/node_modules/undici-types/global-origin.d.ts +5 -5
  153. package/node_modules/undici-types/h2c-client.d.ts +75 -0
  154. package/node_modules/undici-types/handlers.d.ts +8 -8
  155. package/node_modules/undici-types/header.d.ts +157 -1
  156. package/node_modules/undici-types/index.d.ts +51 -47
  157. package/node_modules/undici-types/interceptors.d.ts +25 -8
  158. package/node_modules/undici-types/mock-agent.d.ts +36 -18
  159. package/node_modules/undici-types/mock-call-history.d.ts +111 -0
  160. package/node_modules/undici-types/mock-client.d.ts +6 -4
  161. package/node_modules/undici-types/mock-errors.d.ts +3 -3
  162. package/node_modules/undici-types/mock-interceptor.d.ts +21 -19
  163. package/node_modules/undici-types/mock-pool.d.ts +6 -4
  164. package/node_modules/undici-types/package.json +1 -1
  165. package/node_modules/undici-types/patch.d.ts +0 -4
  166. package/node_modules/undici-types/pool-stats.d.ts +8 -8
  167. package/node_modules/undici-types/pool.d.ts +14 -12
  168. package/node_modules/undici-types/proxy-agent.d.ts +5 -4
  169. package/node_modules/undici-types/readable.d.ts +18 -15
  170. package/node_modules/undici-types/retry-agent.d.ts +1 -1
  171. package/node_modules/undici-types/retry-handler.d.ts +19 -10
  172. package/node_modules/undici-types/util.d.ts +3 -3
  173. package/node_modules/undici-types/utility.d.ts +7 -0
  174. package/node_modules/undici-types/webidl.d.ts +50 -8
  175. package/node_modules/undici-types/websocket.d.ts +36 -2
  176. package/node_modules/uuid/README.md +8 -19
  177. package/node_modules/uuid/dist/{esm-browser/uuid-bin.js → uuid-bin.js} +1 -1
  178. package/node_modules/uuid/dist/{esm-browser/v4.js → v4.js} +7 -4
  179. package/node_modules/uuid/{dist/esm → dist-node}/md5.js +1 -1
  180. package/node_modules/uuid/dist-node/native.js +2 -0
  181. package/node_modules/uuid/{dist/esm → dist-node}/rng.js +1 -1
  182. package/node_modules/uuid/{dist/esm → dist-node}/sha1.js +1 -1
  183. package/node_modules/uuid/{dist/esm → dist-node}/uuid-bin.js +1 -1
  184. package/node_modules/uuid/{dist/esm → dist-node}/v4.js +7 -4
  185. package/node_modules/uuid/package.json +28 -41
  186. package/package.json +6 -6
  187. package/tak-registration.bak +557 -0
  188. package/tak-registration.js +14 -12
  189. package/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  190. package/node_modules/@types/node/compatibility/index.d.ts +0 -9
  191. package/node_modules/@types/node/compatibility/indexable.d.ts +0 -23
  192. package/node_modules/@types/node/dom-events.d.ts +0 -124
  193. package/node_modules/undici-types/file.d.ts +0 -39
  194. package/node_modules/undici-types/filereader.d.ts +0 -54
  195. package/node_modules/uuid/dist/cjs/index.d.ts +0 -15
  196. package/node_modules/uuid/dist/cjs/index.js +0 -31
  197. package/node_modules/uuid/dist/cjs/max.d.ts +0 -2
  198. package/node_modules/uuid/dist/cjs/max.js +0 -3
  199. package/node_modules/uuid/dist/cjs/md5.d.ts +0 -4
  200. package/node_modules/uuid/dist/cjs/md5.js +0 -13
  201. package/node_modules/uuid/dist/cjs/native.d.ts +0 -6
  202. package/node_modules/uuid/dist/cjs/native.js +0 -4
  203. package/node_modules/uuid/dist/cjs/nil.d.ts +0 -2
  204. package/node_modules/uuid/dist/cjs/nil.js +0 -3
  205. package/node_modules/uuid/dist/cjs/package.json +0 -1
  206. package/node_modules/uuid/dist/cjs/parse.d.ts +0 -2
  207. package/node_modules/uuid/dist/cjs/parse.js +0 -11
  208. package/node_modules/uuid/dist/cjs/regex.d.ts +0 -2
  209. package/node_modules/uuid/dist/cjs/regex.js +0 -3
  210. package/node_modules/uuid/dist/cjs/rng.d.ts +0 -1
  211. package/node_modules/uuid/dist/cjs/rng.js +0 -13
  212. package/node_modules/uuid/dist/cjs/sha1.d.ts +0 -4
  213. package/node_modules/uuid/dist/cjs/sha1.js +0 -13
  214. package/node_modules/uuid/dist/cjs/stringify.d.ts +0 -3
  215. package/node_modules/uuid/dist/cjs/stringify.js +0 -39
  216. package/node_modules/uuid/dist/cjs/types.d.ts +0 -21
  217. package/node_modules/uuid/dist/cjs/types.js +0 -2
  218. package/node_modules/uuid/dist/cjs/uuid-bin.d.ts +0 -1
  219. package/node_modules/uuid/dist/cjs/uuid-bin.js +0 -72
  220. package/node_modules/uuid/dist/cjs/v1.d.ts +0 -11
  221. package/node_modules/uuid/dist/cjs/v1.js +0 -87
  222. package/node_modules/uuid/dist/cjs/v1ToV6.d.ts +0 -2
  223. package/node_modules/uuid/dist/cjs/v1ToV6.js +0 -13
  224. package/node_modules/uuid/dist/cjs/v3.d.ts +0 -9
  225. package/node_modules/uuid/dist/cjs/v3.js +0 -14
  226. package/node_modules/uuid/dist/cjs/v35.d.ts +0 -7
  227. package/node_modules/uuid/dist/cjs/v35.js +0 -41
  228. package/node_modules/uuid/dist/cjs/v4.d.ts +0 -4
  229. package/node_modules/uuid/dist/cjs/v4.js +0 -29
  230. package/node_modules/uuid/dist/cjs/v5.d.ts +0 -9
  231. package/node_modules/uuid/dist/cjs/v5.js +0 -14
  232. package/node_modules/uuid/dist/cjs/v6.d.ts +0 -4
  233. package/node_modules/uuid/dist/cjs/v6.js +0 -19
  234. package/node_modules/uuid/dist/cjs/v6ToV1.d.ts +0 -2
  235. package/node_modules/uuid/dist/cjs/v6ToV1.js +0 -13
  236. package/node_modules/uuid/dist/cjs/v7.d.ts +0 -9
  237. package/node_modules/uuid/dist/cjs/v7.js +0 -69
  238. package/node_modules/uuid/dist/cjs/validate.d.ts +0 -2
  239. package/node_modules/uuid/dist/cjs/validate.js +0 -7
  240. package/node_modules/uuid/dist/cjs/version.d.ts +0 -2
  241. package/node_modules/uuid/dist/cjs/version.js +0 -10
  242. package/node_modules/uuid/dist/cjs-browser/index.js +0 -31
  243. package/node_modules/uuid/dist/cjs-browser/max.js +0 -3
  244. package/node_modules/uuid/dist/cjs-browser/md5.js +0 -137
  245. package/node_modules/uuid/dist/cjs-browser/native.js +0 -4
  246. package/node_modules/uuid/dist/cjs-browser/nil.js +0 -3
  247. package/node_modules/uuid/dist/cjs-browser/package.json +0 -1
  248. package/node_modules/uuid/dist/cjs-browser/parse.js +0 -11
  249. package/node_modules/uuid/dist/cjs-browser/regex.js +0 -3
  250. package/node_modules/uuid/dist/cjs-browser/rng.js +0 -14
  251. package/node_modules/uuid/dist/cjs-browser/sha1.js +0 -72
  252. package/node_modules/uuid/dist/cjs-browser/stringify.js +0 -39
  253. package/node_modules/uuid/dist/cjs-browser/types.js +0 -2
  254. package/node_modules/uuid/dist/cjs-browser/uuid-bin.js +0 -72
  255. package/node_modules/uuid/dist/cjs-browser/v1.js +0 -87
  256. package/node_modules/uuid/dist/cjs-browser/v1ToV6.js +0 -13
  257. package/node_modules/uuid/dist/cjs-browser/v3.js +0 -14
  258. package/node_modules/uuid/dist/cjs-browser/v35.js +0 -41
  259. package/node_modules/uuid/dist/cjs-browser/v4.js +0 -29
  260. package/node_modules/uuid/dist/cjs-browser/v5.js +0 -14
  261. package/node_modules/uuid/dist/cjs-browser/v6.js +0 -19
  262. package/node_modules/uuid/dist/cjs-browser/v6ToV1.js +0 -13
  263. package/node_modules/uuid/dist/cjs-browser/v7.js +0 -69
  264. package/node_modules/uuid/dist/cjs-browser/validate.js +0 -7
  265. package/node_modules/uuid/dist/cjs-browser/version.js +0 -10
  266. package/node_modules/uuid/dist/esm/index.d.ts +0 -15
  267. package/node_modules/uuid/dist/esm/max.d.ts +0 -2
  268. package/node_modules/uuid/dist/esm/md5.d.ts +0 -4
  269. package/node_modules/uuid/dist/esm/native.d.ts +0 -6
  270. package/node_modules/uuid/dist/esm/native.js +0 -2
  271. package/node_modules/uuid/dist/esm/nil.d.ts +0 -2
  272. package/node_modules/uuid/dist/esm/parse.d.ts +0 -2
  273. package/node_modules/uuid/dist/esm/regex.d.ts +0 -2
  274. package/node_modules/uuid/dist/esm/rng.d.ts +0 -1
  275. package/node_modules/uuid/dist/esm/sha1.d.ts +0 -4
  276. package/node_modules/uuid/dist/esm/stringify.d.ts +0 -3
  277. package/node_modules/uuid/dist/esm/types.d.ts +0 -21
  278. package/node_modules/uuid/dist/esm/uuid-bin.d.ts +0 -1
  279. package/node_modules/uuid/dist/esm/v1.d.ts +0 -11
  280. package/node_modules/uuid/dist/esm/v1ToV6.d.ts +0 -2
  281. package/node_modules/uuid/dist/esm/v3.d.ts +0 -9
  282. package/node_modules/uuid/dist/esm/v35.d.ts +0 -7
  283. package/node_modules/uuid/dist/esm/v4.d.ts +0 -4
  284. package/node_modules/uuid/dist/esm/v5.d.ts +0 -9
  285. package/node_modules/uuid/dist/esm/v6.d.ts +0 -4
  286. package/node_modules/uuid/dist/esm/v6ToV1.d.ts +0 -2
  287. package/node_modules/uuid/dist/esm/v7.d.ts +0 -9
  288. package/node_modules/uuid/dist/esm/validate.d.ts +0 -2
  289. package/node_modules/uuid/dist/esm/version.d.ts +0 -2
  290. package/node_modules/uuid/dist/esm-browser/index.d.ts +0 -15
  291. package/node_modules/uuid/dist/esm-browser/max.d.ts +0 -2
  292. package/node_modules/uuid/dist/esm-browser/md5.d.ts +0 -2
  293. package/node_modules/uuid/dist/esm-browser/native.d.ts +0 -4
  294. package/node_modules/uuid/dist/esm-browser/nil.d.ts +0 -2
  295. package/node_modules/uuid/dist/esm-browser/parse.d.ts +0 -2
  296. package/node_modules/uuid/dist/esm-browser/regex.d.ts +0 -2
  297. package/node_modules/uuid/dist/esm-browser/rng.d.ts +0 -1
  298. package/node_modules/uuid/dist/esm-browser/sha1.d.ts +0 -2
  299. package/node_modules/uuid/dist/esm-browser/stringify.d.ts +0 -3
  300. package/node_modules/uuid/dist/esm-browser/types.d.ts +0 -21
  301. package/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +0 -1
  302. package/node_modules/uuid/dist/esm-browser/v1.d.ts +0 -11
  303. package/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +0 -2
  304. package/node_modules/uuid/dist/esm-browser/v3.d.ts +0 -9
  305. package/node_modules/uuid/dist/esm-browser/v35.d.ts +0 -7
  306. package/node_modules/uuid/dist/esm-browser/v4.d.ts +0 -4
  307. package/node_modules/uuid/dist/esm-browser/v5.d.ts +0 -9
  308. package/node_modules/uuid/dist/esm-browser/v6.d.ts +0 -4
  309. package/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +0 -2
  310. package/node_modules/uuid/dist/esm-browser/v7.d.ts +0 -9
  311. package/node_modules/uuid/dist/esm-browser/validate.d.ts +0 -2
  312. package/node_modules/uuid/dist/esm-browser/version.d.ts +0 -2
  313. /package/node_modules/uuid/dist/{cjs-browser/index.d.ts → index.d.ts} +0 -0
  314. /package/node_modules/uuid/dist/{esm/index.js → index.js} +0 -0
  315. /package/node_modules/uuid/dist/{cjs-browser/max.d.ts → max.d.ts} +0 -0
  316. /package/node_modules/uuid/dist/{esm/max.js → max.js} +0 -0
  317. /package/node_modules/uuid/dist/{cjs-browser/md5.d.ts → md5.d.ts} +0 -0
  318. /package/node_modules/uuid/dist/{esm-browser/md5.js → md5.js} +0 -0
  319. /package/node_modules/uuid/dist/{cjs-browser/native.d.ts → native.d.ts} +0 -0
  320. /package/node_modules/uuid/dist/{esm-browser/native.js → native.js} +0 -0
  321. /package/node_modules/uuid/dist/{cjs-browser/nil.d.ts → nil.d.ts} +0 -0
  322. /package/node_modules/uuid/dist/{esm/nil.js → nil.js} +0 -0
  323. /package/node_modules/uuid/dist/{cjs-browser/parse.d.ts → parse.d.ts} +0 -0
  324. /package/node_modules/uuid/dist/{esm/parse.js → parse.js} +0 -0
  325. /package/node_modules/uuid/dist/{cjs-browser/regex.d.ts → regex.d.ts} +0 -0
  326. /package/node_modules/uuid/dist/{esm/regex.js → regex.js} +0 -0
  327. /package/node_modules/uuid/dist/{cjs-browser/rng.d.ts → rng.d.ts} +0 -0
  328. /package/node_modules/uuid/dist/{esm-browser/rng.js → rng.js} +0 -0
  329. /package/node_modules/uuid/dist/{cjs-browser/sha1.d.ts → sha1.d.ts} +0 -0
  330. /package/node_modules/uuid/dist/{esm-browser/sha1.js → sha1.js} +0 -0
  331. /package/node_modules/uuid/dist/{cjs-browser/stringify.d.ts → stringify.d.ts} +0 -0
  332. /package/node_modules/uuid/dist/{esm/stringify.js → stringify.js} +0 -0
  333. /package/node_modules/uuid/dist/{cjs-browser/types.d.ts → types.d.ts} +0 -0
  334. /package/node_modules/uuid/dist/{esm/types.js → types.js} +0 -0
  335. /package/node_modules/uuid/dist/{cjs-browser/uuid-bin.d.ts → uuid-bin.d.ts} +0 -0
  336. /package/node_modules/uuid/dist/{cjs-browser/v1.d.ts → v1.d.ts} +0 -0
  337. /package/node_modules/uuid/dist/{esm/v1.js → v1.js} +0 -0
  338. /package/node_modules/uuid/dist/{cjs-browser/v1ToV6.d.ts → v1ToV6.d.ts} +0 -0
  339. /package/node_modules/uuid/dist/{esm/v1ToV6.js → v1ToV6.js} +0 -0
  340. /package/node_modules/uuid/dist/{cjs-browser/v3.d.ts → v3.d.ts} +0 -0
  341. /package/node_modules/uuid/dist/{esm/v3.js → v3.js} +0 -0
  342. /package/node_modules/uuid/dist/{cjs-browser/v35.d.ts → v35.d.ts} +0 -0
  343. /package/node_modules/uuid/dist/{esm/v35.js → v35.js} +0 -0
  344. /package/node_modules/uuid/dist/{cjs-browser/v4.d.ts → v4.d.ts} +0 -0
  345. /package/node_modules/uuid/dist/{cjs-browser/v5.d.ts → v5.d.ts} +0 -0
  346. /package/node_modules/uuid/dist/{esm/v5.js → v5.js} +0 -0
  347. /package/node_modules/uuid/dist/{cjs-browser/v6.d.ts → v6.d.ts} +0 -0
  348. /package/node_modules/uuid/dist/{esm/v6.js → v6.js} +0 -0
  349. /package/node_modules/uuid/dist/{cjs-browser/v6ToV1.d.ts → v6ToV1.d.ts} +0 -0
  350. /package/node_modules/uuid/dist/{esm/v6ToV1.js → v6ToV1.js} +0 -0
  351. /package/node_modules/uuid/dist/{cjs-browser/v7.d.ts → v7.d.ts} +0 -0
  352. /package/node_modules/uuid/dist/{esm/v7.js → v7.js} +0 -0
  353. /package/node_modules/uuid/dist/{cjs-browser/validate.d.ts → validate.d.ts} +0 -0
  354. /package/node_modules/uuid/dist/{esm/validate.js → validate.js} +0 -0
  355. /package/node_modules/uuid/dist/{cjs-browser/version.d.ts → version.d.ts} +0 -0
  356. /package/node_modules/uuid/dist/{esm/version.js → version.js} +0 -0
  357. /package/node_modules/uuid/{dist/esm → dist-node}/bin/uuid +0 -0
  358. /package/node_modules/uuid/{dist/esm-browser → dist-node}/index.js +0 -0
  359. /package/node_modules/uuid/{dist/esm-browser → dist-node}/max.js +0 -0
  360. /package/node_modules/uuid/{dist/esm-browser → dist-node}/nil.js +0 -0
  361. /package/node_modules/uuid/{dist/esm-browser → dist-node}/parse.js +0 -0
  362. /package/node_modules/uuid/{dist/esm-browser → dist-node}/regex.js +0 -0
  363. /package/node_modules/uuid/{dist/esm-browser → dist-node}/stringify.js +0 -0
  364. /package/node_modules/uuid/{dist/esm-browser → dist-node}/types.js +0 -0
  365. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v1.js +0 -0
  366. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v1ToV6.js +0 -0
  367. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v3.js +0 -0
  368. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v35.js +0 -0
  369. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v5.js +0 -0
  370. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v6.js +0 -0
  371. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v6ToV1.js +0 -0
  372. /package/node_modules/uuid/{dist/esm-browser → dist-node}/v7.js +0 -0
  373. /package/node_modules/uuid/{dist/esm-browser → dist-node}/validate.js +0 -0
  374. /package/node_modules/uuid/{dist/esm-browser → dist-node}/version.js +0 -0
@@ -1,4 +1,5 @@
1
1
  // These types are not exported, and are only used internally
2
+ import * as undici from './index'
2
3
 
3
4
  /**
4
5
  * Take in an unknown value and return one that is of type T
@@ -15,9 +16,12 @@ interface ConvertToIntOpts {
15
16
  }
16
17
 
17
18
  interface WebidlErrors {
19
+ /**
20
+ * @description Instantiate an error
21
+ */
18
22
  exception (opts: { header: string, message: string }): TypeError
19
23
  /**
20
- * @description Throw an error when conversion from one type to another has failed
24
+ * @description Instantiate an error when conversion from one type to another has failed
21
25
  */
22
26
  conversionFailed (opts: {
23
27
  prefix: string
@@ -34,11 +38,24 @@ interface WebidlErrors {
34
38
  }): TypeError
35
39
  }
36
40
 
41
+ interface WebIDLTypes {
42
+ UNDEFINED: 1,
43
+ BOOLEAN: 2,
44
+ STRING: 3,
45
+ SYMBOL: 4,
46
+ NUMBER: 5,
47
+ BIGINT: 6,
48
+ NULL: 7
49
+ OBJECT: 8
50
+ }
51
+
37
52
  interface WebidlUtil {
38
53
  /**
39
54
  * @see https://tc39.es/ecma262/#sec-ecmascript-data-types-and-values
40
55
  */
41
- Type (object: unknown):
56
+ Type (object: unknown): WebIDLTypes[keyof WebIDLTypes]
57
+
58
+ TypeValueToString (o: unknown):
42
59
  | 'Undefined'
43
60
  | 'Boolean'
44
61
  | 'String'
@@ -48,6 +65,8 @@ interface WebidlUtil {
48
65
  | 'Null'
49
66
  | 'Object'
50
67
 
68
+ Types: WebIDLTypes
69
+
51
70
  /**
52
71
  * @see https://webidl.spec.whatwg.org/#abstract-opdef-converttoint
53
72
  */
@@ -59,7 +78,7 @@ interface WebidlUtil {
59
78
  ): number
60
79
 
61
80
  /**
62
- * @see https://webidl.spec.whatwg.org/#abstract-opdef-converttoint
81
+ * @see https://webidl.spec.whatwg.org/#abstract-opdef-integerpart
63
82
  */
64
83
  IntegerPart (N: number): number
65
84
 
@@ -68,6 +87,8 @@ interface WebidlUtil {
68
87
  */
69
88
  Stringify (V: any): string
70
89
 
90
+ MakeTypeAssertion <I>(I: I): (arg: any) => arg is I
91
+
71
92
  /**
72
93
  * Mark a value as uncloneable for Node.js.
73
94
  * This is only effective in some newer Node.js versions.
@@ -156,7 +177,7 @@ interface WebidlConverters {
156
177
  ): NodeJS.TypedArray | ArrayBufferLike | DataView
157
178
 
158
179
  ['sequence<ByteString>']: SequenceConverter<string>
159
-
180
+
160
181
  ['sequence<sequence<ByteString>>']: SequenceConverter<string[]>
161
182
 
162
183
  ['record<ByteString, ByteString>']: RecordConverter<string, string>
@@ -164,16 +185,36 @@ interface WebidlConverters {
164
185
  [Key: string]: (...args: any[]) => unknown
165
186
  }
166
187
 
188
+ type WebidlIsFunction<T> = (arg: any) => arg is T
189
+
190
+ interface WebidlIs {
191
+ Request: WebidlIsFunction<undici.Request>
192
+ Response: WebidlIsFunction<undici.Response>
193
+ ReadableStream: WebidlIsFunction<ReadableStream>
194
+ Blob: WebidlIsFunction<Blob>
195
+ URLSearchParams: WebidlIsFunction<URLSearchParams>
196
+ File: WebidlIsFunction<File>
197
+ FormData: WebidlIsFunction<undici.FormData>
198
+ URL: WebidlIsFunction<URL>
199
+ WebSocketError: WebidlIsFunction<undici.WebSocketError>
200
+ AbortSignal: WebidlIsFunction<AbortSignal>
201
+ MessagePort: WebidlIsFunction<MessagePort>
202
+ USVString: WebidlIsFunction<string>
203
+ }
204
+
167
205
  export interface Webidl {
168
206
  errors: WebidlErrors
169
207
  util: WebidlUtil
170
208
  converters: WebidlConverters
209
+ is: WebidlIs
171
210
 
172
211
  /**
173
212
  * @description Performs a brand-check on {@param V} to ensure it is a
174
213
  * {@param cls} object.
175
214
  */
176
- brandCheck <Interface>(V: unknown, cls: Interface, opts?: { strict?: boolean }): asserts V is Interface
215
+ brandCheck <Interface extends new () => unknown>(V: unknown, cls: Interface): asserts V is Interface
216
+
217
+ brandCheckMultiple <Interfaces extends (new () => unknown)[]> (list: Interfaces): (V: any) => asserts V is Interfaces[number]
177
218
 
178
219
  /**
179
220
  * @see https://webidl.spec.whatwg.org/#es-sequence
@@ -196,10 +237,11 @@ export interface Webidl {
196
237
  * Similar to {@link Webidl.brandCheck} but allows skipping the check if third party
197
238
  * interfaces are allowed.
198
239
  */
199
- interfaceConverter <Interface>(cls: Interface): (
240
+ interfaceConverter <Interface>(typeCheck: WebidlIsFunction<Interface>, name: string): (
200
241
  V: unknown,
201
- opts?: { strict: boolean }
202
- ) => asserts V is typeof cls
242
+ prefix: string,
243
+ argument: string
244
+ ) => asserts V is Interface
203
245
 
204
246
  // TODO(@KhafraDev): a type could likely be implemented that can infer the return type
205
247
  // from the converters given?
@@ -1,6 +1,7 @@
1
1
  /// <reference types="node" />
2
2
 
3
3
  import type { Blob } from 'buffer'
4
+ import type { ReadableStream, WritableStream } from 'stream/web'
4
5
  import type { MessagePort } from 'worker_threads'
5
6
  import {
6
7
  EventInit,
@@ -22,7 +23,7 @@ interface WebSocketEventMap {
22
23
 
23
24
  interface WebSocket extends EventTarget {
24
25
  binaryType: BinaryType
25
-
26
+
26
27
  readonly bufferedAmount: number
27
28
  readonly extensions: string
28
29
 
@@ -135,7 +136,7 @@ interface ErrorEvent extends Event {
135
136
  readonly filename: string
136
137
  readonly lineno: number
137
138
  readonly colno: number
138
- readonly error: any
139
+ readonly error: Error
139
140
  }
140
141
 
141
142
  export declare const ErrorEvent: {
@@ -148,3 +149,36 @@ interface WebSocketInit {
148
149
  dispatcher?: Dispatcher,
149
150
  headers?: HeadersInit
150
151
  }
152
+
153
+ interface WebSocketStreamOptions {
154
+ protocols?: string | string[]
155
+ signal?: AbortSignal
156
+ }
157
+
158
+ interface WebSocketCloseInfo {
159
+ closeCode: number
160
+ reason: string
161
+ }
162
+
163
+ interface WebSocketStream {
164
+ closed: Promise<WebSocketCloseInfo>
165
+ opened: Promise<{
166
+ extensions: string
167
+ protocol: string
168
+ readable: ReadableStream
169
+ writable: WritableStream
170
+ }>
171
+ url: string
172
+ }
173
+
174
+ export declare const WebSocketStream: {
175
+ prototype: WebSocketStream
176
+ new (url: string | URL, options?: WebSocketStreamOptions): WebSocketStream
177
+ }
178
+
179
+ interface WebSocketError extends Event, WebSocketCloseInfo {}
180
+
181
+ export declare const WebSocketError: {
182
+ prototype: WebSocketError
183
+ new (type: string, init?: WebSocketCloseInfo): WebSocketError
184
+ }
@@ -8,7 +8,6 @@ For the creation of [RFC9562](https://www.rfc-editor.org/rfc/rfc9562.html) (form
8
8
 
9
9
  - **Complete** - Support for all RFC9562 UUID versions
10
10
  - **Cross-platform** - Support for...
11
- - ESM & Common JS
12
11
  - [Typescript](#support)
13
12
  - [Chrome, Safari, Firefox, and Edge](#support)
14
13
  - [NodeJS](#support)
@@ -19,10 +18,8 @@ For the creation of [RFC9562](https://www.rfc-editor.org/rfc/rfc9562.html) (form
19
18
 
20
19
  <!-- prettier-ignore -->
21
20
  > [!NOTE]
22
- > `uuid@11` is now available: See the [CHANGELOG](./CHANGELOG.md) for details. TL;DR:
23
- > * TypeScript support is now included (remove `@types/uuid` from your dependencies)
24
- > * Subtle changes to how the `options` arg is interpreted for `v1()`, `v6()`, and `v7()`. [See details](#options-handling-for-timestamp-uuids)
25
- > * Binary UUIDs are now `Uint8Array`s. (May impact callers of `parse()`, `stringify()`, or that pass an `option#buf` argument to `v1()`-`v7()`.)
21
+ >
22
+ > Starting with `uuid@12` CommonJS is no longer supported. See [implications](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) and [motivation](https://github.com/uuidjs/uuid/issues/881) for details.
26
23
 
27
24
  ## Quickstart
28
25
 
@@ -34,18 +31,10 @@ npm install uuid
34
31
 
35
32
  **2. Create a UUID**
36
33
 
37
- ESM-syntax (must use named exports):
38
-
39
34
  ```javascript
40
35
  import { v4 as uuidv4 } from 'uuid';
41
- uuidv4(); // ⇨ '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d'
42
- ```
43
36
 
44
- ... CommonJS:
45
-
46
- ```javascript
47
- const { v4: uuidv4 } = require('uuid');
48
- uuidv4(); // ⇨ '1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed'
37
+ uuidv4(); // ⇨ '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d'
49
38
  ```
50
39
 
51
40
  For timestamp UUIDs, namespace UUIDs, and other options read on ...
@@ -198,7 +187,7 @@ Example:
198
187
  ```javascript
199
188
  import { v1 as uuidv1 } from 'uuid';
200
189
 
201
- uuidv1(); // ⇨ '2c5ea4c0-4067-11e9-9bdd-2b0d7b3dcb6d'
190
+ uuidv1(); // ⇨ '2c5ea4c0-4067-11e9-9b5d-ab8dfbbd4bed'
202
191
  ```
203
192
 
204
193
  Example using `options`:
@@ -253,7 +242,7 @@ Example:
253
242
  ```javascript
254
243
  import { v4 as uuidv4 } from 'uuid';
255
244
 
256
- uuidv4(); // ⇨ '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d'
245
+ uuidv4(); // ⇨ '1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed'
257
246
  ```
258
247
 
259
248
  Example using predefined `random` values:
@@ -329,7 +318,7 @@ This method takes the same arguments as uuid.v1().
329
318
  ```javascript
330
319
  import { v6 as uuidv6 } from 'uuid';
331
320
 
332
- uuidv6(); // ⇨ '1e940672-c5ea-64c0-9b5d-ab8dfbbd4bed'
321
+ uuidv6(); // ⇨ '1e940672-c5ea-64c1-9bdd-2b0d7b3dcb6d'
333
322
  ```
334
323
 
335
324
  Example using `options`:
@@ -376,7 +365,7 @@ Example:
376
365
  ```javascript
377
366
  import { v7 as uuidv7 } from 'uuid';
378
367
 
379
- uuidv7(); // ⇨ '01695553-c90c-705a-b56d-778dfbbd4bed'
368
+ uuidv7(); // ⇨ '01695553-c90c-745a-b76f-770d7b3dcb6d'
380
369
  ```
381
370
 
382
371
  ### ~~uuid.v8()~~
@@ -483,7 +472,7 @@ Prior to `uuid@11`, it was possible for `options` state to interfere with the in
483
472
 
484
473
  **Browsers**: `uuid` [builds are tested](/uuidjs/uuid/blob/main/wdio.conf.js) against the latest version of desktop Chrome, Safari, Firefox, and Edge. Mobile versions of these same browsers are expected to work but aren't currently tested.
485
474
 
486
- **Node**: `uuid` [builds are tested](https://github.com/uuidjs/uuid/blob/main/.github/workflows/ci.yml#L26-L27) against node ([LTS releases](https://github.com/nodejs/Release)), plus one prior. E.g. `node@18` is in maintainence mode, and `node@22` is the current LTS release. So `uuid` supports `node@16`-`node@22`.
475
+ **Node**: `uuid` [builds are tested](https://github.com/uuidjs/uuid/blob/main/.github/workflows/ci.yml#L26-L27) against node ([LTS releases](https://github.com/nodejs/Release)), plus one prior. E.g. At the time of this writing `node@20` is the "maintenance" release and `node@24` is the "current" release, so `uuid` supports `node@18`-`node@24`.
487
476
 
488
477
  **Typescript**: TS versions released within the past two years are supported. [source](https://github.com/microsoft/TypeScript/issues/49088#issuecomment-2468723715)
489
478
 
@@ -1,4 +1,4 @@
1
- import * as assert from 'assert';
1
+ import * as assert from 'node:assert/strict';
2
2
  import v1 from './v1.js';
3
3
  import v3 from './v3.js';
4
4
  import v4 from './v4.js';
@@ -1,10 +1,7 @@
1
1
  import native from './native.js';
2
2
  import rng from './rng.js';
3
3
  import { unsafeStringify } from './stringify.js';
4
- function v4(options, buf, offset) {
5
- if (native.randomUUID && !buf && !options) {
6
- return native.randomUUID();
7
- }
4
+ function _v4(options, buf, offset) {
8
5
  options = options || {};
9
6
  const rnds = options.random ?? options.rng?.() ?? rng();
10
7
  if (rnds.length < 16) {
@@ -24,4 +21,10 @@ function v4(options, buf, offset) {
24
21
  }
25
22
  return unsafeStringify(rnds);
26
23
  }
24
+ function v4(options, buf, offset) {
25
+ if (native.randomUUID && !buf && !options) {
26
+ return native.randomUUID();
27
+ }
28
+ return _v4(options, buf, offset);
29
+ }
27
30
  export default v4;
@@ -1,4 +1,4 @@
1
- import { createHash } from 'crypto';
1
+ import { createHash } from 'node:crypto';
2
2
  function md5(bytes) {
3
3
  if (Array.isArray(bytes)) {
4
4
  bytes = Buffer.from(bytes);
@@ -0,0 +1,2 @@
1
+ import { randomUUID } from 'node:crypto';
2
+ export default { randomUUID };
@@ -1,4 +1,4 @@
1
- import { randomFillSync } from 'crypto';
1
+ import { randomFillSync } from 'node:crypto';
2
2
  const rnds8Pool = new Uint8Array(256);
3
3
  let poolPtr = rnds8Pool.length;
4
4
  export default function rng() {
@@ -1,4 +1,4 @@
1
- import { createHash } from 'crypto';
1
+ import { createHash } from 'node:crypto';
2
2
  function sha1(bytes) {
3
3
  if (Array.isArray(bytes)) {
4
4
  bytes = Buffer.from(bytes);
@@ -1,4 +1,4 @@
1
- import * as assert from 'assert';
1
+ import * as assert from 'node:assert/strict';
2
2
  import v1 from './v1.js';
3
3
  import v3 from './v3.js';
4
4
  import v4 from './v4.js';
@@ -1,10 +1,7 @@
1
1
  import native from './native.js';
2
2
  import rng from './rng.js';
3
3
  import { unsafeStringify } from './stringify.js';
4
- function v4(options, buf, offset) {
5
- if (native.randomUUID && !buf && !options) {
6
- return native.randomUUID();
7
- }
4
+ function _v4(options, buf, offset) {
8
5
  options = options || {};
9
6
  const rnds = options.random ?? options.rng?.() ?? rng();
10
7
  if (rnds.length < 16) {
@@ -24,4 +21,10 @@ function v4(options, buf, offset) {
24
21
  }
25
22
  return unsafeStringify(rnds);
26
23
  }
24
+ function v4(options, buf, offset) {
25
+ if (native.randomUUID && !buf && !options) {
26
+ return native.randomUUID();
27
+ }
28
+ return _v4(options, buf, offset);
29
+ }
27
30
  export default v4;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uuid",
3
- "version": "11.1.0",
3
+ "version": "13.0.0",
4
4
  "description": "RFC9562 UUIDs",
5
5
  "type": "module",
6
6
  "funding": [
@@ -20,56 +20,44 @@
20
20
  ],
21
21
  "license": "MIT",
22
22
  "bin": {
23
- "uuid": "./dist/esm/bin/uuid"
23
+ "uuid": "./dist-node/bin/uuid"
24
24
  },
25
25
  "sideEffects": false,
26
- "main": "./dist/cjs/index.js",
26
+ "types": "./dist/index.d.ts",
27
27
  "exports": {
28
28
  ".": {
29
- "node": {
30
- "import": "./dist/esm/index.js",
31
- "require": "./dist/cjs/index.js"
32
- },
33
- "browser": {
34
- "import": "./dist/esm-browser/index.js",
35
- "require": "./dist/cjs-browser/index.js"
36
- },
37
- "default": "./dist/esm-browser/index.js"
29
+ "node": "./dist-node/index.js",
30
+ "default": "./dist/index.js"
38
31
  },
39
32
  "./package.json": "./package.json"
40
33
  },
41
- "module": "./dist/esm/index.js",
42
- "browser": {
43
- "./dist/esm/index.js": "./dist/esm-browser/index.js",
44
- "./dist/cjs/index.js": "./dist/cjs-browser/index.js"
45
- },
46
34
  "files": [
47
35
  "dist",
48
- "!dist/**/test"
36
+ "dist-node",
37
+ "!**/test"
49
38
  ],
50
39
  "devDependencies": {
51
- "@babel/eslint-parser": "7.25.9",
52
- "@commitlint/cli": "19.6.1",
53
- "@commitlint/config-conventional": "19.6.0",
54
- "@eslint/js": "9.17.0",
55
- "@types/eslint__js": "8.42.3",
56
- "bundlewatch": "0.4.0",
57
- "commander": "12.1.0",
58
- "eslint": "9.17.0",
59
- "eslint-config-prettier": "9.1.0",
60
- "eslint-plugin-prettier": "5.2.1",
61
- "globals": "15.14.0",
40
+ "@babel/eslint-parser": "7.27.1",
41
+ "@commitlint/cli": "19.8.0",
42
+ "@commitlint/config-conventional": "19.8.0",
43
+ "@eslint/js": "9.26.0",
44
+ "bundlewatch": "0.4.1",
45
+ "commander": "13.1.0",
46
+ "eslint": "9.26.0",
47
+ "eslint-config-prettier": "10.1.2",
48
+ "eslint-plugin-prettier": "5.4.0",
49
+ "globals": "16.0.0",
62
50
  "husky": "9.1.7",
63
51
  "jest": "29.7.0",
64
- "lint-staged": "15.2.11",
65
- "neostandard": "0.12.0",
52
+ "lint-staged": "15.5.2",
53
+ "neostandard": "0.12.1",
66
54
  "npm-run-all": "4.1.5",
67
- "prettier": "3.4.2",
68
- "release-please": "16.15.0",
55
+ "prettier": "3.5.3",
56
+ "release-please": "17.0.0",
69
57
  "runmd": "1.4.1",
70
58
  "standard-version": "9.5.0",
71
- "typescript": "5.0.4",
72
- "typescript-eslint": "8.18.2"
59
+ "typescript": "5.2.2",
60
+ "typescript-eslint": "8.32.0"
73
61
  },
74
62
  "optionalDevDependencies": {
75
63
  "@wdio/browserstack-service": "9.2.1",
@@ -81,15 +69,14 @@
81
69
  },
82
70
  "scripts": {
83
71
  "build": "./scripts/build.sh",
84
- "build:watch": "tsc --watch -p tsconfig.esm.json",
72
+ "build:watch": "tsc --watch -p tsconfig.json",
85
73
  "bundlewatch": "npm run pretest:browser && bundlewatch --config bundlewatch.config.json",
86
- "docs:diff": "npm run docs && git diff --quiet README.md",
74
+ "docs:diff": "npm run docs && git diff --quiet -I \"[0-9a-f-]{36}\" README.md",
87
75
  "docs": "npm run build && npx runmd --output=README.md README_js.md",
88
76
  "eslint:check": "eslint src/ test/ examples/ *.[jt]s",
89
77
  "eslint:fix": "eslint --fix src/ test/ examples/ *.[jt]s",
90
78
  "examples:browser:rollup:build": "cd examples/browser-rollup && npm run build",
91
79
  "examples:browser:webpack:build": "cd examples/browser-webpack && npm run build",
92
- "examples:node:commonjs:test": "cd examples/node-commonjs && npm test",
93
80
  "examples:node:esmodules:test": "cd examples/node-esmodules && npm test",
94
81
  "examples:node:jest:test": "cd examples/node-jest && npm test",
95
82
  "examples:node:typescript:test": "cd examples/typescript && npm test",
@@ -108,8 +95,8 @@
108
95
  "test:benchmark": "cd examples/benchmark && npm test",
109
96
  "test:browser": "wdio run ./wdio.conf.js",
110
97
  "test:node": "npm-run-all --parallel examples:node:**",
111
- "test:watch": "node --test --enable-source-maps --watch dist/esm/test/*.js",
112
- "test": "node --test --enable-source-maps dist/esm/test/*.js"
98
+ "test:watch": "node --test --enable-source-maps --watch dist-node/test/*.js",
99
+ "test": "node --test --enable-source-maps dist-node/test/*.js"
113
100
  },
114
101
  "repository": {
115
102
  "type": "git",
@@ -128,5 +115,5 @@
128
115
  "postchangelog": "prettier --write CHANGELOG.md"
129
116
  }
130
117
  },
131
- "packageManager": "npm@11.0.0"
118
+ "packageManager": "npm@11.3.0"
132
119
  }
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "node-red-contrib-tak-registration",
3
- "version": "0.15.0",
3
+ "version": "0.16.1",
4
4
  "description": "A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK",
5
5
  "dependencies": {
6
6
  "@turf/turf": "7.2.0",
7
7
  "adm-zip": "0.5.16",
8
- "axios": "1.9.0",
9
- "fast-xml-parser": "5.2.3",
10
- "form-data": "4.0.2",
8
+ "axios": "1.12.2",
9
+ "fast-xml-parser": "5.2.5",
10
+ "form-data": "4.0.4",
11
11
  "long": "5.3.2",
12
- "protobufjs": "7.5.2",
13
- "uuid": "11.1.0"
12
+ "protobufjs": "7.5.4",
13
+ "uuid": "13.0.0"
14
14
  },
15
15
  "bundledDependencies": [
16
16
  "@turf/turf",