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.
- package/node_modules/@types/node/README.md +2 -2
- package/node_modules/@types/node/assert.d.ts +8 -6
- package/node_modules/@types/node/async_hooks.d.ts +26 -6
- package/node_modules/@types/node/buffer.d.ts +7 -3
- package/node_modules/@types/node/child_process.d.ts +28 -124
- package/node_modules/@types/node/cluster.d.ts +15 -15
- package/node_modules/@types/node/console.d.ts +17 -17
- package/node_modules/@types/node/crypto.d.ts +95 -38
- package/node_modules/@types/node/dgram.d.ts +1 -1
- package/node_modules/@types/node/diagnostics_channel.d.ts +18 -13
- package/node_modules/@types/node/dns/promises.d.ts +36 -9
- package/node_modules/@types/node/dns.d.ts +89 -36
- package/node_modules/@types/node/domain.d.ts +1 -1
- package/node_modules/@types/node/events.d.ts +1 -2
- package/node_modules/@types/node/fs/promises.d.ts +67 -40
- package/node_modules/@types/node/fs.d.ts +88 -52
- package/node_modules/@types/node/globals.d.ts +148 -351
- package/node_modules/@types/node/globals.typedarray.d.ts +1 -0
- package/node_modules/@types/node/http.d.ts +73 -7
- package/node_modules/@types/node/http2.d.ts +88 -15
- package/node_modules/@types/node/https.d.ts +1 -1
- package/node_modules/@types/node/index.d.ts +13 -6
- package/node_modules/@types/node/inspector.d.ts +222 -13
- package/node_modules/@types/node/module.d.ts +153 -31
- package/node_modules/@types/node/net.d.ts +3 -6
- package/node_modules/@types/node/os.d.ts +8 -7
- package/node_modules/@types/node/package.json +14 -84
- package/node_modules/@types/node/path.d.ts +1 -1
- package/node_modules/@types/node/perf_hooks.d.ts +24 -10
- package/node_modules/@types/node/process.d.ts +21 -11
- package/node_modules/@types/node/punycode.d.ts +1 -1
- package/node_modules/@types/node/querystring.d.ts +1 -1
- package/node_modules/@types/node/readline/promises.d.ts +0 -1
- package/node_modules/@types/node/readline.d.ts +13 -13
- package/node_modules/@types/node/repl.d.ts +25 -17
- package/node_modules/@types/node/sea.d.ts +1 -1
- package/node_modules/@types/node/sqlite.d.ts +209 -3
- package/node_modules/@types/node/stream/web.d.ts +8 -0
- package/node_modules/@types/node/stream.d.ts +30 -24
- package/node_modules/@types/node/string_decoder.d.ts +1 -1
- package/node_modules/@types/node/test.d.ts +2029 -1975
- package/node_modules/@types/node/timers/promises.d.ts +1 -1
- package/node_modules/@types/node/timers.d.ts +1 -3
- package/node_modules/@types/node/tls.d.ts +2 -48
- package/node_modules/@types/node/trace_events.d.ts +6 -6
- package/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
- package/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +1 -0
- package/node_modules/@types/node/ts5.6/index.d.ts +15 -6
- package/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
- package/node_modules/@types/node/ts5.7/index.d.ts +101 -0
- package/node_modules/@types/node/tty.d.ts +1 -1
- package/node_modules/@types/node/url.d.ts +73 -20
- package/node_modules/@types/node/util.d.ts +23 -298
- package/node_modules/@types/node/v8.d.ts +62 -32
- package/node_modules/@types/node/vm.d.ts +132 -24
- package/node_modules/@types/node/wasi.d.ts +22 -1
- package/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/node_modules/@types/node/web-globals/events.d.ts +94 -0
- package/node_modules/@types/node/web-globals/fetch.d.ts +50 -0
- package/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
- package/node_modules/@types/node/web-globals/storage.d.ts +24 -0
- package/node_modules/@types/node/worker_threads.d.ts +85 -26
- package/node_modules/@types/node/zlib.d.ts +13 -9
- package/node_modules/axios/CHANGELOG.md +99 -0
- package/node_modules/axios/README.md +105 -28
- package/node_modules/axios/dist/axios.js +395 -292
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +2 -2
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +333 -219
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +333 -219
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +2 -2
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +424 -219
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/index.d.cts +26 -8
- package/node_modules/axios/index.d.ts +14 -5
- package/node_modules/axios/lib/adapters/adapters.js +6 -4
- package/node_modules/axios/lib/adapters/fetch.js +221 -162
- package/node_modules/axios/lib/adapters/http.js +18 -0
- package/node_modules/axios/lib/adapters/xhr.js +11 -8
- package/node_modules/axios/lib/core/Axios.js +2 -4
- package/node_modules/axios/lib/core/AxiosError.js +10 -3
- package/node_modules/axios/lib/core/dispatchRequest.js +1 -1
- package/node_modules/axios/lib/core/mergeConfig.js +1 -1
- package/node_modules/axios/lib/defaults/index.js +1 -1
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/helpers/buildURL.js +1 -3
- package/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +73 -0
- package/node_modules/axios/lib/helpers/resolveConfig.js +13 -9
- package/node_modules/axios/lib/helpers/throttle.js +1 -1
- package/node_modules/axios/lib/helpers/toFormData.js +4 -0
- package/node_modules/axios/lib/helpers/toURLEncodedForm.js +4 -3
- package/node_modules/axios/lib/utils.js +40 -2
- package/node_modules/axios/package.json +30 -15
- package/node_modules/bignumber.js/CHANGELOG.md +6 -1
- package/node_modules/bignumber.js/README.md +5 -4
- package/node_modules/bignumber.js/bignumber.js +2 -2
- package/node_modules/bignumber.js/bignumber.mjs +2 -2
- package/node_modules/bignumber.js/package.json +1 -1
- package/node_modules/fast-xml-parser/CHANGELOG.md +7 -0
- package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
- package/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
- package/node_modules/fast-xml-parser/package.json +1 -2
- package/node_modules/fast-xml-parser/src/cli/cli.js +4 -0
- package/node_modules/fast-xml-parser/src/fxp.d.ts +5 -5
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +3 -3
- package/node_modules/follow-redirects/package.json +1 -1
- package/node_modules/form-data/CHANGELOG.md +601 -0
- package/node_modules/form-data/{Readme.md → README.md} +34 -37
- package/node_modules/form-data/lib/browser.js +3 -1
- package/node_modules/form-data/lib/form_data.js +126 -135
- package/node_modules/form-data/lib/populate.js +5 -5
- package/node_modules/form-data/package.json +24 -16
- package/node_modules/protobufjs/dist/light/protobuf.js +8 -7
- package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.js +2 -2
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
- package/node_modules/protobufjs/dist/protobuf.js +8 -7
- package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/ext/descriptor/index.js +179 -69
- package/node_modules/protobufjs/google/protobuf/descriptor.json +660 -17
- package/node_modules/protobufjs/google/protobuf/descriptor.proto +255 -6
- package/node_modules/protobufjs/package.json +1 -1
- package/node_modules/protobufjs/src/namespace.js +3 -1
- package/node_modules/protobufjs/src/root.js +3 -4
- package/node_modules/undici-types/agent.d.ts +11 -7
- package/node_modules/undici-types/api.d.ts +24 -24
- package/node_modules/undici-types/balanced-pool.d.ts +11 -11
- package/node_modules/undici-types/cache-interceptor.d.ts +172 -0
- package/node_modules/undici-types/client-stats.d.ts +15 -0
- package/node_modules/undici-types/client.d.ts +18 -16
- package/node_modules/undici-types/cookies.d.ts +2 -0
- package/node_modules/undici-types/diagnostics-channel.d.ts +19 -10
- package/node_modules/undici-types/dispatcher.d.ts +119 -93
- package/node_modules/undici-types/env-http-proxy-agent.d.ts +4 -3
- package/node_modules/undici-types/errors.d.ts +69 -47
- package/node_modules/undici-types/eventsource.d.ts +3 -3
- package/node_modules/undici-types/fetch.d.ts +18 -16
- package/node_modules/undici-types/formdata.d.ts +7 -7
- package/node_modules/undici-types/global-dispatcher.d.ts +4 -4
- package/node_modules/undici-types/global-origin.d.ts +5 -5
- package/node_modules/undici-types/h2c-client.d.ts +75 -0
- package/node_modules/undici-types/handlers.d.ts +8 -8
- package/node_modules/undici-types/header.d.ts +157 -1
- package/node_modules/undici-types/index.d.ts +51 -47
- package/node_modules/undici-types/interceptors.d.ts +25 -8
- package/node_modules/undici-types/mock-agent.d.ts +36 -18
- package/node_modules/undici-types/mock-call-history.d.ts +111 -0
- package/node_modules/undici-types/mock-client.d.ts +6 -4
- package/node_modules/undici-types/mock-errors.d.ts +3 -3
- package/node_modules/undici-types/mock-interceptor.d.ts +21 -19
- package/node_modules/undici-types/mock-pool.d.ts +6 -4
- package/node_modules/undici-types/package.json +1 -1
- package/node_modules/undici-types/patch.d.ts +0 -4
- package/node_modules/undici-types/pool-stats.d.ts +8 -8
- package/node_modules/undici-types/pool.d.ts +14 -12
- package/node_modules/undici-types/proxy-agent.d.ts +5 -4
- package/node_modules/undici-types/readable.d.ts +18 -15
- package/node_modules/undici-types/retry-agent.d.ts +1 -1
- package/node_modules/undici-types/retry-handler.d.ts +19 -10
- package/node_modules/undici-types/util.d.ts +3 -3
- package/node_modules/undici-types/utility.d.ts +7 -0
- package/node_modules/undici-types/webidl.d.ts +50 -8
- package/node_modules/undici-types/websocket.d.ts +36 -2
- package/node_modules/uuid/README.md +8 -19
- package/node_modules/uuid/dist/{esm-browser/uuid-bin.js → uuid-bin.js} +1 -1
- package/node_modules/uuid/dist/{esm-browser/v4.js → v4.js} +7 -4
- package/node_modules/uuid/{dist/esm → dist-node}/md5.js +1 -1
- package/node_modules/uuid/dist-node/native.js +2 -0
- package/node_modules/uuid/{dist/esm → dist-node}/rng.js +1 -1
- package/node_modules/uuid/{dist/esm → dist-node}/sha1.js +1 -1
- package/node_modules/uuid/{dist/esm → dist-node}/uuid-bin.js +1 -1
- package/node_modules/uuid/{dist/esm → dist-node}/v4.js +7 -4
- package/node_modules/uuid/package.json +28 -41
- package/package.json +6 -6
- package/tak-registration.bak +557 -0
- package/tak-registration.js +14 -12
- package/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
- package/node_modules/@types/node/compatibility/index.d.ts +0 -9
- package/node_modules/@types/node/compatibility/indexable.d.ts +0 -23
- package/node_modules/@types/node/dom-events.d.ts +0 -124
- package/node_modules/undici-types/file.d.ts +0 -39
- package/node_modules/undici-types/filereader.d.ts +0 -54
- package/node_modules/uuid/dist/cjs/index.d.ts +0 -15
- package/node_modules/uuid/dist/cjs/index.js +0 -31
- package/node_modules/uuid/dist/cjs/max.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/max.js +0 -3
- package/node_modules/uuid/dist/cjs/md5.d.ts +0 -4
- package/node_modules/uuid/dist/cjs/md5.js +0 -13
- package/node_modules/uuid/dist/cjs/native.d.ts +0 -6
- package/node_modules/uuid/dist/cjs/native.js +0 -4
- package/node_modules/uuid/dist/cjs/nil.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/nil.js +0 -3
- package/node_modules/uuid/dist/cjs/package.json +0 -1
- package/node_modules/uuid/dist/cjs/parse.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/parse.js +0 -11
- package/node_modules/uuid/dist/cjs/regex.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/regex.js +0 -3
- package/node_modules/uuid/dist/cjs/rng.d.ts +0 -1
- package/node_modules/uuid/dist/cjs/rng.js +0 -13
- package/node_modules/uuid/dist/cjs/sha1.d.ts +0 -4
- package/node_modules/uuid/dist/cjs/sha1.js +0 -13
- package/node_modules/uuid/dist/cjs/stringify.d.ts +0 -3
- package/node_modules/uuid/dist/cjs/stringify.js +0 -39
- package/node_modules/uuid/dist/cjs/types.d.ts +0 -21
- package/node_modules/uuid/dist/cjs/types.js +0 -2
- package/node_modules/uuid/dist/cjs/uuid-bin.d.ts +0 -1
- package/node_modules/uuid/dist/cjs/uuid-bin.js +0 -72
- package/node_modules/uuid/dist/cjs/v1.d.ts +0 -11
- package/node_modules/uuid/dist/cjs/v1.js +0 -87
- package/node_modules/uuid/dist/cjs/v1ToV6.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/v1ToV6.js +0 -13
- package/node_modules/uuid/dist/cjs/v3.d.ts +0 -9
- package/node_modules/uuid/dist/cjs/v3.js +0 -14
- package/node_modules/uuid/dist/cjs/v35.d.ts +0 -7
- package/node_modules/uuid/dist/cjs/v35.js +0 -41
- package/node_modules/uuid/dist/cjs/v4.d.ts +0 -4
- package/node_modules/uuid/dist/cjs/v4.js +0 -29
- package/node_modules/uuid/dist/cjs/v5.d.ts +0 -9
- package/node_modules/uuid/dist/cjs/v5.js +0 -14
- package/node_modules/uuid/dist/cjs/v6.d.ts +0 -4
- package/node_modules/uuid/dist/cjs/v6.js +0 -19
- package/node_modules/uuid/dist/cjs/v6ToV1.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/v6ToV1.js +0 -13
- package/node_modules/uuid/dist/cjs/v7.d.ts +0 -9
- package/node_modules/uuid/dist/cjs/v7.js +0 -69
- package/node_modules/uuid/dist/cjs/validate.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/validate.js +0 -7
- package/node_modules/uuid/dist/cjs/version.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/version.js +0 -10
- package/node_modules/uuid/dist/cjs-browser/index.js +0 -31
- package/node_modules/uuid/dist/cjs-browser/max.js +0 -3
- package/node_modules/uuid/dist/cjs-browser/md5.js +0 -137
- package/node_modules/uuid/dist/cjs-browser/native.js +0 -4
- package/node_modules/uuid/dist/cjs-browser/nil.js +0 -3
- package/node_modules/uuid/dist/cjs-browser/package.json +0 -1
- package/node_modules/uuid/dist/cjs-browser/parse.js +0 -11
- package/node_modules/uuid/dist/cjs-browser/regex.js +0 -3
- package/node_modules/uuid/dist/cjs-browser/rng.js +0 -14
- package/node_modules/uuid/dist/cjs-browser/sha1.js +0 -72
- package/node_modules/uuid/dist/cjs-browser/stringify.js +0 -39
- package/node_modules/uuid/dist/cjs-browser/types.js +0 -2
- package/node_modules/uuid/dist/cjs-browser/uuid-bin.js +0 -72
- package/node_modules/uuid/dist/cjs-browser/v1.js +0 -87
- package/node_modules/uuid/dist/cjs-browser/v1ToV6.js +0 -13
- package/node_modules/uuid/dist/cjs-browser/v3.js +0 -14
- package/node_modules/uuid/dist/cjs-browser/v35.js +0 -41
- package/node_modules/uuid/dist/cjs-browser/v4.js +0 -29
- package/node_modules/uuid/dist/cjs-browser/v5.js +0 -14
- package/node_modules/uuid/dist/cjs-browser/v6.js +0 -19
- package/node_modules/uuid/dist/cjs-browser/v6ToV1.js +0 -13
- package/node_modules/uuid/dist/cjs-browser/v7.js +0 -69
- package/node_modules/uuid/dist/cjs-browser/validate.js +0 -7
- package/node_modules/uuid/dist/cjs-browser/version.js +0 -10
- package/node_modules/uuid/dist/esm/index.d.ts +0 -15
- package/node_modules/uuid/dist/esm/max.d.ts +0 -2
- package/node_modules/uuid/dist/esm/md5.d.ts +0 -4
- package/node_modules/uuid/dist/esm/native.d.ts +0 -6
- package/node_modules/uuid/dist/esm/native.js +0 -2
- package/node_modules/uuid/dist/esm/nil.d.ts +0 -2
- package/node_modules/uuid/dist/esm/parse.d.ts +0 -2
- package/node_modules/uuid/dist/esm/regex.d.ts +0 -2
- package/node_modules/uuid/dist/esm/rng.d.ts +0 -1
- package/node_modules/uuid/dist/esm/sha1.d.ts +0 -4
- package/node_modules/uuid/dist/esm/stringify.d.ts +0 -3
- package/node_modules/uuid/dist/esm/types.d.ts +0 -21
- package/node_modules/uuid/dist/esm/uuid-bin.d.ts +0 -1
- package/node_modules/uuid/dist/esm/v1.d.ts +0 -11
- package/node_modules/uuid/dist/esm/v1ToV6.d.ts +0 -2
- package/node_modules/uuid/dist/esm/v3.d.ts +0 -9
- package/node_modules/uuid/dist/esm/v35.d.ts +0 -7
- package/node_modules/uuid/dist/esm/v4.d.ts +0 -4
- package/node_modules/uuid/dist/esm/v5.d.ts +0 -9
- package/node_modules/uuid/dist/esm/v6.d.ts +0 -4
- package/node_modules/uuid/dist/esm/v6ToV1.d.ts +0 -2
- package/node_modules/uuid/dist/esm/v7.d.ts +0 -9
- package/node_modules/uuid/dist/esm/validate.d.ts +0 -2
- package/node_modules/uuid/dist/esm/version.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/index.d.ts +0 -15
- package/node_modules/uuid/dist/esm-browser/max.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/md5.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/native.d.ts +0 -4
- package/node_modules/uuid/dist/esm-browser/nil.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/parse.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/regex.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/rng.d.ts +0 -1
- package/node_modules/uuid/dist/esm-browser/sha1.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/stringify.d.ts +0 -3
- package/node_modules/uuid/dist/esm-browser/types.d.ts +0 -21
- package/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +0 -1
- package/node_modules/uuid/dist/esm-browser/v1.d.ts +0 -11
- package/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/v3.d.ts +0 -9
- package/node_modules/uuid/dist/esm-browser/v35.d.ts +0 -7
- package/node_modules/uuid/dist/esm-browser/v4.d.ts +0 -4
- package/node_modules/uuid/dist/esm-browser/v5.d.ts +0 -9
- package/node_modules/uuid/dist/esm-browser/v6.d.ts +0 -4
- package/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/v7.d.ts +0 -9
- package/node_modules/uuid/dist/esm-browser/validate.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/version.d.ts +0 -2
- /package/node_modules/uuid/dist/{cjs-browser/index.d.ts → index.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/index.js → index.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/max.d.ts → max.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/max.js → max.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/md5.d.ts → md5.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm-browser/md5.js → md5.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/native.d.ts → native.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm-browser/native.js → native.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/nil.d.ts → nil.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/nil.js → nil.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/parse.d.ts → parse.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/parse.js → parse.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/regex.d.ts → regex.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/regex.js → regex.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/rng.d.ts → rng.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm-browser/rng.js → rng.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/sha1.d.ts → sha1.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm-browser/sha1.js → sha1.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/stringify.d.ts → stringify.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/stringify.js → stringify.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/types.d.ts → types.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/types.js → types.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/uuid-bin.d.ts → uuid-bin.d.ts} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v1.d.ts → v1.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v1.js → v1.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v1ToV6.d.ts → v1ToV6.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v1ToV6.js → v1ToV6.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v3.d.ts → v3.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v3.js → v3.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v35.d.ts → v35.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v35.js → v35.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v4.d.ts → v4.d.ts} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v5.d.ts → v5.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v5.js → v5.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v6.d.ts → v6.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v6.js → v6.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v6ToV1.d.ts → v6ToV1.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v6ToV1.js → v6ToV1.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v7.d.ts → v7.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v7.js → v7.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/validate.d.ts → validate.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/validate.js → validate.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/version.d.ts → version.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/version.js → version.js} +0 -0
- /package/node_modules/uuid/{dist/esm → dist-node}/bin/uuid +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/index.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/max.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/nil.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/parse.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/regex.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/stringify.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/types.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v1.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v1ToV6.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v3.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v35.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v5.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v6.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v6ToV1.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v7.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/validate.js +0 -0
- /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
|
|
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-
|
|
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
|
|
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>(
|
|
240
|
+
interfaceConverter <Interface>(typeCheck: WebidlIsFunction<Interface>, name: string): (
|
|
200
241
|
V: unknown,
|
|
201
|
-
|
|
202
|
-
|
|
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:
|
|
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
|
-
>
|
|
23
|
-
>
|
|
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
|
-
|
|
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-
|
|
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(); // ⇨ '
|
|
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-
|
|
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-
|
|
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@
|
|
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,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
|
|
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,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
|
|
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": "
|
|
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/
|
|
23
|
+
"uuid": "./dist-node/bin/uuid"
|
|
24
24
|
},
|
|
25
25
|
"sideEffects": false,
|
|
26
|
-
"
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
27
|
"exports": {
|
|
28
28
|
".": {
|
|
29
|
-
"node":
|
|
30
|
-
|
|
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
|
-
"
|
|
36
|
+
"dist-node",
|
|
37
|
+
"!**/test"
|
|
49
38
|
],
|
|
50
39
|
"devDependencies": {
|
|
51
|
-
"@babel/eslint-parser": "7.
|
|
52
|
-
"@commitlint/cli": "19.
|
|
53
|
-
"@commitlint/config-conventional": "19.
|
|
54
|
-
"@eslint/js": "9.
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"eslint": "
|
|
59
|
-
"eslint-
|
|
60
|
-
"
|
|
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
|
|
65
|
-
"neostandard": "0.12.
|
|
52
|
+
"lint-staged": "15.5.2",
|
|
53
|
+
"neostandard": "0.12.1",
|
|
66
54
|
"npm-run-all": "4.1.5",
|
|
67
|
-
"prettier": "3.
|
|
68
|
-
"release-please": "
|
|
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.
|
|
72
|
-
"typescript-eslint": "8.
|
|
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.
|
|
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/
|
|
112
|
-
"test": "node --test --enable-source-maps dist/
|
|
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.
|
|
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.
|
|
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
|
-
"fast-xml-parser": "5.2.
|
|
10
|
-
"form-data": "4.0.
|
|
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.
|
|
13
|
-
"uuid": "
|
|
12
|
+
"protobufjs": "7.5.4",
|
|
13
|
+
"uuid": "13.0.0"
|
|
14
14
|
},
|
|
15
15
|
"bundledDependencies": [
|
|
16
16
|
"@turf/turf",
|