node-red-contrib-tak-registration 0.13.0 → 0.13.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/@turf/jsts/dist/jsts.min.js +1 -1
- package/node_modules/@turf/jsts/dist/jsts.min.js.map +1 -0
- package/node_modules/@turf/jsts/package.json +17 -17
- package/node_modules/@types/geojson/README.md +1 -1
- package/node_modules/@types/geojson/index.d.ts +4 -1
- package/node_modules/@types/geojson/package.json +4 -3
- package/node_modules/@types/node/README.md +2 -2
- package/node_modules/@types/node/assert.d.ts +2 -2
- package/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
- package/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/node_modules/@types/node/compatibility/indexable.d.ts +23 -0
- package/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/node_modules/@types/node/crypto.d.ts +33 -9
- package/node_modules/@types/node/events.d.ts +2 -2
- package/node_modules/@types/node/fs/promises.d.ts +16 -5
- package/node_modules/@types/node/fs.d.ts +14 -8
- package/node_modules/@types/node/globals.d.ts +17 -48
- package/node_modules/@types/node/http.d.ts +38 -1
- package/node_modules/@types/node/http2.d.ts +4 -1
- package/node_modules/@types/node/https.d.ts +0 -1
- package/node_modules/@types/node/index.d.ts +8 -10
- package/node_modules/@types/node/module.d.ts +102 -1
- package/node_modules/@types/node/package.json +5 -9
- package/node_modules/@types/node/perf_hooks.d.ts +24 -0
- package/node_modules/@types/node/process.d.ts +61 -10
- package/node_modules/@types/node/readline/promises.d.ts +14 -2
- package/node_modules/@types/node/readline.d.ts +58 -9
- package/node_modules/@types/node/stream/promises.d.ts +8 -1
- package/node_modules/@types/node/stream/web.d.ts +5 -2
- package/node_modules/@types/node/stream.d.ts +2 -2
- package/node_modules/@types/node/test.d.ts +155 -5
- package/node_modules/@types/node/timers/promises.d.ts +1 -1
- package/node_modules/@types/node/tls.d.ts +6 -0
- package/node_modules/@types/node/ts5.6/index.d.ts +8 -10
- package/node_modules/@types/node/url.d.ts +7 -4
- package/node_modules/@types/node/util.d.ts +80 -10
- package/node_modules/@types/node/v8.d.ts +1 -1
- package/node_modules/@types/node/vm.d.ts +81 -27
- package/node_modules/@types/node/worker_threads.d.ts +34 -1
- package/node_modules/axios/CHANGELOG.md +49 -0
- package/node_modules/axios/README.md +20 -8
- package/node_modules/axios/dist/axios.js +34 -63
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +1 -1
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +40 -71
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +40 -71
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +1 -1
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +45 -75
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/index.d.cts +5 -1
- package/node_modules/axios/index.d.ts +8 -1
- package/node_modules/axios/lib/adapters/http.js +4 -4
- package/node_modules/axios/lib/core/Axios.js +7 -2
- package/node_modules/axios/lib/core/mergeConfig.js +5 -5
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/helpers/buildURL.js +7 -1
- package/node_modules/axios/lib/helpers/formDataToStream.js +2 -2
- package/node_modules/axios/lib/helpers/isURLSameOrigin.js +12 -65
- package/node_modules/axios/lib/helpers/validator.js +8 -0
- package/node_modules/axios/package.json +3 -3
- package/node_modules/fast-xml-parser/CHANGELOG.md +4 -0
- package/node_modules/fast-xml-parser/README.md +3 -2
- package/node_modules/fast-xml-parser/package.json +1 -1
- package/node_modules/fast-xml-parser/src/v5/XmlPartReader.js +21 -17
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +1 -0
- package/node_modules/point-in-polygon-hao/README.md +8 -7
- package/node_modules/point-in-polygon-hao/dist/cjs/index.cjs +322 -0
- package/node_modules/point-in-polygon-hao/dist/esm/index.d.ts +10 -0
- package/node_modules/point-in-polygon-hao/dist/esm/index.js +56 -0
- package/node_modules/point-in-polygon-hao/dist/pointInPolygon.js +286 -42
- package/node_modules/point-in-polygon-hao/dist/pointInPolygon.min.js +1 -1
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/LICENSE +24 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/README.md +82 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/esm/incircle.js +765 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/esm/insphere.js +766 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/esm/orient2d.js +184 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/esm/orient3d.js +462 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/esm/util.js +138 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/index.d.ts +49 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/index.js +5 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/package.json +75 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/umd/incircle.js +908 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/umd/incircle.min.js +1 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/umd/insphere.js +914 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/umd/insphere.min.js +1 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/umd/orient2d.js +280 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/umd/orient2d.min.js +1 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/umd/orient3d.js +601 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/umd/orient3d.min.js +1 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/umd/predicates.js +2328 -0
- package/node_modules/point-in-polygon-hao/node_modules/robust-predicates/umd/predicates.min.js +1 -0
- package/node_modules/point-in-polygon-hao/package.json +24 -20
- package/node_modules/tslib/modules/index.d.ts +1 -0
- package/node_modules/tslib/modules/index.js +2 -0
- package/node_modules/tslib/package.json +1 -1
- package/node_modules/tslib/tslib.d.ts +7 -0
- package/node_modules/tslib/tslib.es6.js +24 -1
- package/node_modules/tslib/tslib.es6.mjs +24 -1
- package/node_modules/tslib/tslib.js +56 -1
- package/node_modules/undici-types/eventsource.d.ts +0 -2
- package/node_modules/undici-types/filereader.d.ts +1 -1
- package/node_modules/undici-types/interceptors.d.ts +3 -1
- package/node_modules/undici-types/package.json +1 -1
- package/node_modules/undici-types/patch.d.ts +0 -38
- package/node_modules/undici-types/websocket.d.ts +0 -2
- package/node_modules/uuid/CHANGELOG.md +45 -2
- package/node_modules/uuid/README.md +71 -158
- package/node_modules/uuid/dist/cjs/index.d.ts +15 -0
- package/node_modules/uuid/dist/cjs/index.js +31 -0
- package/node_modules/uuid/dist/cjs/max.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/max.js +3 -0
- package/node_modules/uuid/dist/cjs/md5.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/md5.js +13 -0
- package/node_modules/uuid/dist/cjs/native.d.ts +5 -0
- package/node_modules/uuid/dist/cjs/native.js +4 -0
- package/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/nil.js +3 -0
- package/node_modules/uuid/dist/cjs/package.json +1 -0
- package/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/parse.js +11 -0
- package/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/regex.js +3 -0
- package/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/rng.js +13 -0
- package/node_modules/uuid/dist/cjs/sha1.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/sha1.js +13 -0
- package/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
- package/node_modules/uuid/dist/cjs/stringify.js +38 -0
- package/node_modules/uuid/dist/cjs/test/parse.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/test/parse.test.js +50 -0
- package/node_modules/uuid/dist/cjs/test/rng.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/test/rng.test.js +14 -0
- package/node_modules/uuid/dist/cjs/test/stringify.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/test/stringify.test.js +23 -0
- package/node_modules/uuid/dist/cjs/test/test_constants.d.ts +33 -0
- package/node_modules/uuid/dist/cjs/test/test_constants.js +91 -0
- package/node_modules/uuid/dist/cjs/test/v1.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/test/v1.test.js +127 -0
- package/node_modules/uuid/dist/cjs/test/v35.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/test/v35.test.js +143 -0
- package/node_modules/uuid/dist/cjs/test/v4.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/test/v4.test.js +60 -0
- package/node_modules/uuid/dist/cjs/test/v6.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/test/v6.test.js +56 -0
- package/node_modules/uuid/dist/cjs/test/v7.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/test/v7.test.js +194 -0
- package/node_modules/uuid/dist/cjs/test/validate.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/test/validate.test.js +13 -0
- package/node_modules/uuid/dist/cjs/test/version.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/test/version.test.js +20 -0
- package/node_modules/uuid/dist/cjs/types.d.ts +21 -0
- package/node_modules/uuid/dist/cjs/types.js +2 -0
- package/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
- package/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
- package/node_modules/uuid/dist/cjs/v1.js +78 -0
- package/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
- package/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
- package/node_modules/uuid/dist/cjs/v3.js +14 -0
- package/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
- package/node_modules/uuid/dist/cjs/v35.js +41 -0
- package/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
- package/node_modules/uuid/dist/cjs/v4.js +23 -0
- package/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
- package/node_modules/uuid/dist/cjs/v5.js +14 -0
- package/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
- package/node_modules/uuid/dist/cjs/v6.js +19 -0
- package/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
- package/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
- package/node_modules/uuid/dist/cjs/v7.js +60 -0
- package/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/validate.js +7 -0
- package/node_modules/uuid/dist/cjs/version.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/version.js +10 -0
- package/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
- package/node_modules/uuid/dist/cjs-browser/index.js +31 -0
- package/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/max.js +3 -0
- package/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
- package/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
- package/node_modules/uuid/dist/cjs-browser/native.js +4 -0
- package/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
- package/node_modules/uuid/dist/cjs-browser/package.json +1 -0
- package/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
- package/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
- package/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
- package/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
- package/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
- package/node_modules/uuid/dist/cjs-browser/stringify.js +38 -0
- package/node_modules/uuid/dist/cjs-browser/test/parse.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/test/parse.test.js +50 -0
- package/node_modules/uuid/dist/cjs-browser/test/rng.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/test/rng.test.js +14 -0
- package/node_modules/uuid/dist/cjs-browser/test/stringify.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/test/stringify.test.js +23 -0
- package/node_modules/uuid/dist/cjs-browser/test/test_constants.d.ts +33 -0
- package/node_modules/uuid/dist/cjs-browser/test/test_constants.js +91 -0
- package/node_modules/uuid/dist/cjs-browser/test/v1.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/test/v1.test.js +127 -0
- package/node_modules/uuid/dist/cjs-browser/test/v35.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/test/v35.test.js +143 -0
- package/node_modules/uuid/dist/cjs-browser/test/v4.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/test/v4.test.js +60 -0
- package/node_modules/uuid/dist/cjs-browser/test/v6.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/test/v6.test.js +56 -0
- package/node_modules/uuid/dist/cjs-browser/test/v7.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/test/v7.test.js +194 -0
- package/node_modules/uuid/dist/cjs-browser/test/validate.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/test/validate.test.js +13 -0
- package/node_modules/uuid/dist/cjs-browser/test/version.test.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/test/version.test.js +20 -0
- package/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
- package/node_modules/uuid/dist/cjs-browser/types.js +2 -0
- package/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
- package/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
- package/node_modules/uuid/dist/cjs-browser/v1.js +78 -0
- package/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
- package/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
- package/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
- package/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
- package/node_modules/uuid/dist/cjs-browser/v35.js +41 -0
- package/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
- package/node_modules/uuid/dist/cjs-browser/v4.js +23 -0
- package/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
- package/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
- package/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
- package/node_modules/uuid/dist/cjs-browser/v6.js +19 -0
- package/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
- package/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
- package/node_modules/uuid/dist/cjs-browser/v7.js +60 -0
- package/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
- package/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/version.js +10 -0
- package/node_modules/uuid/dist/esm/bin/uuid +2 -0
- package/node_modules/uuid/dist/esm/index.d.ts +15 -0
- package/node_modules/uuid/dist/{esm-node → esm}/index.js +1 -1
- package/node_modules/uuid/dist/esm/max.d.ts +2 -0
- package/node_modules/uuid/dist/esm/max.js +1 -0
- package/node_modules/uuid/dist/esm/md5.d.ts +2 -0
- package/node_modules/uuid/dist/esm/md5.js +11 -0
- package/node_modules/uuid/dist/esm/native.d.ts +5 -0
- package/node_modules/uuid/dist/esm/native.js +2 -0
- package/node_modules/uuid/dist/esm/nil.d.ts +2 -0
- package/node_modules/uuid/dist/esm/nil.js +1 -0
- package/node_modules/uuid/dist/esm/parse.d.ts +2 -0
- package/node_modules/uuid/dist/esm/parse.js +9 -0
- package/node_modules/uuid/dist/esm/regex.d.ts +2 -0
- package/node_modules/uuid/dist/{esm-node → esm}/regex.js +1 -1
- package/node_modules/uuid/dist/esm/rng.d.ts +1 -0
- package/node_modules/uuid/dist/esm/rng.js +10 -0
- package/node_modules/uuid/dist/esm/sha1.d.ts +2 -0
- package/node_modules/uuid/dist/esm/sha1.js +11 -0
- package/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
- package/node_modules/uuid/dist/esm/stringify.js +35 -0
- package/node_modules/uuid/dist/esm/test/parse.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm/test/parse.test.js +48 -0
- package/node_modules/uuid/dist/esm/test/rng.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm/test/rng.test.js +12 -0
- package/node_modules/uuid/dist/esm/test/stringify.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm/test/stringify.test.js +21 -0
- package/node_modules/uuid/dist/esm/test/test_constants.d.ts +33 -0
- package/node_modules/uuid/dist/esm/test/test_constants.js +88 -0
- package/node_modules/uuid/dist/esm/test/v1.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm/test/v1.test.js +125 -0
- package/node_modules/uuid/dist/esm/test/v35.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm/test/v35.test.js +141 -0
- package/node_modules/uuid/dist/esm/test/v4.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm/test/v4.test.js +58 -0
- package/node_modules/uuid/dist/esm/test/v6.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm/test/v6.test.js +54 -0
- package/node_modules/uuid/dist/esm/test/v7.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm/test/v7.test.js +192 -0
- package/node_modules/uuid/dist/esm/test/validate.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm/test/validate.test.js +11 -0
- package/node_modules/uuid/dist/esm/test/version.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm/test/version.test.js +18 -0
- package/node_modules/uuid/dist/esm/types.d.ts +21 -0
- package/node_modules/uuid/dist/esm/types.js +1 -0
- package/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
- package/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
- package/node_modules/uuid/dist/esm/v1.d.ts +11 -0
- package/node_modules/uuid/dist/esm/v1.js +75 -0
- package/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
- package/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
- package/node_modules/uuid/dist/esm/v3.d.ts +9 -0
- package/node_modules/uuid/dist/esm/v3.js +9 -0
- package/node_modules/uuid/dist/esm/v35.d.ts +7 -0
- package/node_modules/uuid/dist/esm/v35.js +36 -0
- package/node_modules/uuid/dist/esm/v4.d.ts +4 -0
- package/node_modules/uuid/dist/esm/v4.js +21 -0
- package/node_modules/uuid/dist/esm/v5.d.ts +9 -0
- package/node_modules/uuid/dist/esm/v5.js +9 -0
- package/node_modules/uuid/dist/esm/v6.d.ts +4 -0
- package/node_modules/uuid/dist/esm/v6.js +17 -0
- package/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
- package/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
- package/node_modules/uuid/dist/esm/v7.d.ts +9 -0
- package/node_modules/uuid/dist/esm/v7.js +57 -0
- package/node_modules/uuid/dist/esm/validate.d.ts +2 -0
- package/node_modules/uuid/dist/esm/validate.js +5 -0
- package/node_modules/uuid/dist/esm/version.d.ts +2 -0
- package/node_modules/uuid/dist/esm/version.js +8 -0
- package/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
- package/node_modules/uuid/dist/esm-browser/index.js +1 -1
- package/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/max.js +1 -1
- package/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/md5.js +113 -172
- package/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
- package/node_modules/uuid/dist/esm-browser/native.js +2 -4
- package/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/nil.js +1 -1
- package/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/parse.js +6 -34
- package/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/regex.js +1 -1
- package/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/rng.js +8 -14
- package/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/sha1.js +62 -68
- package/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
- package/node_modules/uuid/dist/esm-browser/stringify.js +29 -25
- package/node_modules/uuid/dist/esm-browser/test/parse.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/test/parse.test.js +48 -0
- package/node_modules/uuid/dist/esm-browser/test/rng.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/test/rng.test.js +12 -0
- package/node_modules/uuid/dist/esm-browser/test/stringify.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/test/stringify.test.js +21 -0
- package/node_modules/uuid/dist/esm-browser/test/test_constants.d.ts +33 -0
- package/node_modules/uuid/dist/esm-browser/test/test_constants.js +88 -0
- package/node_modules/uuid/dist/esm-browser/test/v1.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/test/v1.test.js +125 -0
- package/node_modules/uuid/dist/esm-browser/test/v35.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/test/v35.test.js +141 -0
- package/node_modules/uuid/dist/esm-browser/test/v4.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/test/v4.test.js +58 -0
- package/node_modules/uuid/dist/esm-browser/test/v6.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/test/v6.test.js +54 -0
- package/node_modules/uuid/dist/esm-browser/test/v7.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/test/v7.test.js +192 -0
- package/node_modules/uuid/dist/esm-browser/test/validate.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/test/validate.test.js +11 -0
- package/node_modules/uuid/dist/esm-browser/test/version.test.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/test/version.test.js +18 -0
- package/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
- package/node_modules/uuid/dist/esm-browser/types.js +1 -0
- package/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
- package/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
- package/node_modules/uuid/dist/esm-browser/v1.js +67 -117
- package/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/v1ToV6.js +6 -16
- package/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
- package/node_modules/uuid/dist/esm-browser/v3.js +8 -3
- package/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
- package/node_modules/uuid/dist/esm-browser/v35.js +28 -47
- package/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
- package/node_modules/uuid/dist/esm-browser/v4.js +15 -19
- package/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
- package/node_modules/uuid/dist/esm-browser/v5.js +8 -3
- package/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
- package/node_modules/uuid/dist/esm-browser/v6.js +13 -32
- package/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/v6ToV1.js +5 -15
- package/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
- package/node_modules/uuid/dist/esm-browser/v7.js +50 -139
- package/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/validate.js +2 -2
- package/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/version.js +5 -5
- package/node_modules/uuid/package.json +58 -66
- package/package.json +4 -4
- package/tak-registration.js +1 -4
- package/node_modules/@types/node/globals.global.d.ts +0 -1
- package/node_modules/point-in-polygon-hao/.eslintrc +0 -10
- package/node_modules/point-in-polygon-hao/CHANGES.md +0 -8
- package/node_modules/point-in-polygon-hao/FUNDING.yml +0 -2
- package/node_modules/point-in-polygon-hao/dist/pointInPolygon.mjs +0 -76
- package/node_modules/point-in-polygon-hao/rollup.config.js +0 -19
- package/node_modules/point-in-polygon-hao/src/index.js +0 -74
- package/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/uuid/dist/commonjs-browser/index.js +0 -104
- package/node_modules/uuid/dist/commonjs-browser/max.js +0 -7
- package/node_modules/uuid/dist/commonjs-browser/md5.js +0 -200
- package/node_modules/uuid/dist/commonjs-browser/native.js +0 -10
- package/node_modules/uuid/dist/commonjs-browser/nil.js +0 -7
- package/node_modules/uuid/dist/commonjs-browser/parse.js +0 -44
- package/node_modules/uuid/dist/commonjs-browser/regex.js +0 -7
- package/node_modules/uuid/dist/commonjs-browser/rng.js +0 -23
- package/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -82
- package/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -38
- package/node_modules/uuid/dist/commonjs-browser/v1.js +0 -131
- package/node_modules/uuid/dist/commonjs-browser/v1ToV6.js +0 -26
- package/node_modules/uuid/dist/commonjs-browser/v3.js +0 -11
- package/node_modules/uuid/dist/commonjs-browser/v35.js +0 -63
- package/node_modules/uuid/dist/commonjs-browser/v4.js +0 -32
- package/node_modules/uuid/dist/commonjs-browser/v5.js +0 -11
- package/node_modules/uuid/dist/commonjs-browser/v6.js +0 -42
- package/node_modules/uuid/dist/commonjs-browser/v6ToV1.js +0 -26
- package/node_modules/uuid/dist/commonjs-browser/v7.js +0 -152
- package/node_modules/uuid/dist/commonjs-browser/validate.js +0 -12
- package/node_modules/uuid/dist/commonjs-browser/version.js +0 -15
- package/node_modules/uuid/dist/esm-node/max.js +0 -1
- package/node_modules/uuid/dist/esm-node/md5.js +0 -10
- package/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/uuid/dist/esm-node/parse.js +0 -37
- package/node_modules/uuid/dist/esm-node/rng.js +0 -10
- package/node_modules/uuid/dist/esm-node/sha1.js +0 -10
- package/node_modules/uuid/dist/esm-node/stringify.js +0 -31
- package/node_modules/uuid/dist/esm-node/v1.js +0 -125
- package/node_modules/uuid/dist/esm-node/v1ToV6.js +0 -20
- package/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/uuid/dist/esm-node/v35.js +0 -55
- package/node_modules/uuid/dist/esm-node/v4.js +0 -25
- package/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/uuid/dist/esm-node/v6.js +0 -32
- package/node_modules/uuid/dist/esm-node/v6ToV1.js +0 -20
- package/node_modules/uuid/dist/esm-node/v7.js +0 -146
- package/node_modules/uuid/dist/esm-node/validate.js +0 -5
- package/node_modules/uuid/dist/esm-node/version.js +0 -8
- package/node_modules/uuid/dist/index.js +0 -104
- package/node_modules/uuid/dist/max.js +0 -7
- package/node_modules/uuid/dist/md5-browser.js +0 -200
- package/node_modules/uuid/dist/md5.js +0 -17
- package/node_modules/uuid/dist/native-browser.js +0 -10
- package/node_modules/uuid/dist/native.js +0 -11
- package/node_modules/uuid/dist/nil.js +0 -7
- package/node_modules/uuid/dist/parse.js +0 -44
- package/node_modules/uuid/dist/regex.js +0 -7
- package/node_modules/uuid/dist/rng-browser.js +0 -23
- package/node_modules/uuid/dist/rng.js +0 -17
- package/node_modules/uuid/dist/sha1-browser.js +0 -82
- package/node_modules/uuid/dist/sha1.js +0 -17
- package/node_modules/uuid/dist/stringify.js +0 -38
- package/node_modules/uuid/dist/uuid-bin.js +0 -75
- package/node_modules/uuid/dist/v1.js +0 -131
- package/node_modules/uuid/dist/v1ToV6.js +0 -26
- package/node_modules/uuid/dist/v3.js +0 -11
- package/node_modules/uuid/dist/v35.js +0 -63
- package/node_modules/uuid/dist/v4.js +0 -32
- package/node_modules/uuid/dist/v5.js +0 -11
- package/node_modules/uuid/dist/v6.js +0 -38
- package/node_modules/uuid/dist/v6ToV1.js +0 -26
- package/node_modules/uuid/dist/v7.js +0 -152
- package/node_modules/uuid/dist/validate.js +0 -12
- package/node_modules/uuid/dist/version.js +0 -15
- package/node_modules/uuid/wrapper.mjs +0 -15
- /package/node_modules/point-in-polygon-hao/{index.d.ts → dist/cjs/index.d.cts} +0 -0
|
@@ -340,11 +340,22 @@ declare module "node:test" {
|
|
|
340
340
|
globPatterns?: readonly string[] | undefined;
|
|
341
341
|
/**
|
|
342
342
|
* Sets inspector port of test child process.
|
|
343
|
-
*
|
|
344
|
-
*
|
|
343
|
+
* This can be a number, or a function that takes no arguments and returns a
|
|
344
|
+
* number. If a nullish value is provided, each process gets its own port,
|
|
345
|
+
* incremented from the primary's `process.debugPort`. This option is ignored
|
|
346
|
+
* if the `isolation` option is set to `'none'` as no child processes are
|
|
347
|
+
* spawned.
|
|
345
348
|
* @default undefined
|
|
346
349
|
*/
|
|
347
350
|
inspectPort?: number | (() => number) | undefined;
|
|
351
|
+
/**
|
|
352
|
+
* Configures the type of test isolation. If set to
|
|
353
|
+
* `'process'`, each test file is run in a separate child process. If set to
|
|
354
|
+
* `'none'`, all test files run in the current process.
|
|
355
|
+
* @default 'process'
|
|
356
|
+
* @since v22.8.0
|
|
357
|
+
*/
|
|
358
|
+
isolation?: "process" | "none" | undefined;
|
|
348
359
|
/**
|
|
349
360
|
* If truthy, the test context will only run tests that have the `only` option set
|
|
350
361
|
*/
|
|
@@ -354,6 +365,20 @@ declare module "node:test" {
|
|
|
354
365
|
* @default undefined
|
|
355
366
|
*/
|
|
356
367
|
setup?: ((reporter: TestsStream) => void | Promise<void>) | undefined;
|
|
368
|
+
/**
|
|
369
|
+
* An array of CLI flags to pass to the `node` executable when
|
|
370
|
+
* spawning the subprocesses. This option has no effect when `isolation` is `'none`'.
|
|
371
|
+
* @since v22.10.0
|
|
372
|
+
* @default []
|
|
373
|
+
*/
|
|
374
|
+
execArgv?: readonly string[] | undefined;
|
|
375
|
+
/**
|
|
376
|
+
* An array of CLI flags to pass to each test file when spawning the
|
|
377
|
+
* subprocesses. This option has no effect when `isolation` is `'none'`.
|
|
378
|
+
* @since v22.10.0
|
|
379
|
+
* @default []
|
|
380
|
+
*/
|
|
381
|
+
argv?: readonly string[] | undefined;
|
|
357
382
|
/**
|
|
358
383
|
* Allows aborting an in-progress test execution.
|
|
359
384
|
*/
|
|
@@ -389,6 +414,53 @@ declare module "node:test" {
|
|
|
389
414
|
* @default undefined
|
|
390
415
|
*/
|
|
391
416
|
shard?: TestShard | undefined;
|
|
417
|
+
/**
|
|
418
|
+
* enable [code coverage](https://nodejs.org/docs/latest-v22.x/api/test.html#collecting-code-coverage) collection.
|
|
419
|
+
* @since v22.10.0
|
|
420
|
+
* @default false
|
|
421
|
+
*/
|
|
422
|
+
coverage?: boolean | undefined;
|
|
423
|
+
/**
|
|
424
|
+
* Excludes specific files from code coverage
|
|
425
|
+
* using a glob pattern, which can match both absolute and relative file paths.
|
|
426
|
+
* This property is only applicable when `coverage` was set to `true`.
|
|
427
|
+
* If both `coverageExcludeGlobs` and `coverageIncludeGlobs` are provided,
|
|
428
|
+
* files must meet **both** criteria to be included in the coverage report.
|
|
429
|
+
* @since v22.10.0
|
|
430
|
+
* @default undefined
|
|
431
|
+
*/
|
|
432
|
+
coverageExcludeGlobs?: string | readonly string[] | undefined;
|
|
433
|
+
/**
|
|
434
|
+
* Includes specific files in code coverage
|
|
435
|
+
* using a glob pattern, which can match both absolute and relative file paths.
|
|
436
|
+
* This property is only applicable when `coverage` was set to `true`.
|
|
437
|
+
* If both `coverageExcludeGlobs` and `coverageIncludeGlobs` are provided,
|
|
438
|
+
* files must meet **both** criteria to be included in the coverage report.
|
|
439
|
+
* @since v22.10.0
|
|
440
|
+
* @default undefined
|
|
441
|
+
*/
|
|
442
|
+
coverageIncludeGlobs?: string | readonly string[] | undefined;
|
|
443
|
+
/**
|
|
444
|
+
* Require a minimum percent of covered lines. If code
|
|
445
|
+
* coverage does not reach the threshold specified, the process will exit with code `1`.
|
|
446
|
+
* @since v22.10.0
|
|
447
|
+
* @default 0
|
|
448
|
+
*/
|
|
449
|
+
lineCoverage?: number | undefined;
|
|
450
|
+
/**
|
|
451
|
+
* Require a minimum percent of covered branches. If code
|
|
452
|
+
* coverage does not reach the threshold specified, the process will exit with code `1`.
|
|
453
|
+
* @since v22.10.0
|
|
454
|
+
* @default 0
|
|
455
|
+
*/
|
|
456
|
+
branchCoverage?: number | undefined;
|
|
457
|
+
/**
|
|
458
|
+
* Require a minimum percent of covered functions. If code
|
|
459
|
+
* coverage does not reach the threshold specified, the process will exit with code `1`.
|
|
460
|
+
* @since v22.10.0
|
|
461
|
+
* @default 0
|
|
462
|
+
*/
|
|
463
|
+
functionCoverage?: number | undefined;
|
|
392
464
|
}
|
|
393
465
|
/**
|
|
394
466
|
* A successful call to `run()` will return a new `TestsStream` object, streaming a series of events representing the execution of the tests.
|
|
@@ -408,6 +480,7 @@ declare module "node:test" {
|
|
|
408
480
|
addListener(event: "test:start", listener: (data: TestStart) => void): this;
|
|
409
481
|
addListener(event: "test:stderr", listener: (data: TestStderr) => void): this;
|
|
410
482
|
addListener(event: "test:stdout", listener: (data: TestStdout) => void): this;
|
|
483
|
+
addListener(event: "test:summary", listener: (data: TestSummary) => void): this;
|
|
411
484
|
addListener(event: "test:watch:drained", listener: () => void): this;
|
|
412
485
|
addListener(event: string, listener: (...args: any[]) => void): this;
|
|
413
486
|
emit(event: "test:coverage", data: TestCoverage): boolean;
|
|
@@ -421,6 +494,7 @@ declare module "node:test" {
|
|
|
421
494
|
emit(event: "test:start", data: TestStart): boolean;
|
|
422
495
|
emit(event: "test:stderr", data: TestStderr): boolean;
|
|
423
496
|
emit(event: "test:stdout", data: TestStdout): boolean;
|
|
497
|
+
emit(event: "test:summary", data: TestSummary): boolean;
|
|
424
498
|
emit(event: "test:watch:drained"): boolean;
|
|
425
499
|
emit(event: string | symbol, ...args: any[]): boolean;
|
|
426
500
|
on(event: "test:coverage", listener: (data: TestCoverage) => void): this;
|
|
@@ -434,6 +508,7 @@ declare module "node:test" {
|
|
|
434
508
|
on(event: "test:start", listener: (data: TestStart) => void): this;
|
|
435
509
|
on(event: "test:stderr", listener: (data: TestStderr) => void): this;
|
|
436
510
|
on(event: "test:stdout", listener: (data: TestStdout) => void): this;
|
|
511
|
+
on(event: "test:summary", listener: (data: TestSummary) => void): this;
|
|
437
512
|
on(event: "test:watch:drained", listener: () => void): this;
|
|
438
513
|
on(event: string, listener: (...args: any[]) => void): this;
|
|
439
514
|
once(event: "test:coverage", listener: (data: TestCoverage) => void): this;
|
|
@@ -447,6 +522,7 @@ declare module "node:test" {
|
|
|
447
522
|
once(event: "test:start", listener: (data: TestStart) => void): this;
|
|
448
523
|
once(event: "test:stderr", listener: (data: TestStderr) => void): this;
|
|
449
524
|
once(event: "test:stdout", listener: (data: TestStdout) => void): this;
|
|
525
|
+
once(event: "test:summary", listener: (data: TestSummary) => void): this;
|
|
450
526
|
once(event: "test:watch:drained", listener: () => void): this;
|
|
451
527
|
once(event: string, listener: (...args: any[]) => void): this;
|
|
452
528
|
prependListener(event: "test:coverage", listener: (data: TestCoverage) => void): this;
|
|
@@ -460,6 +536,7 @@ declare module "node:test" {
|
|
|
460
536
|
prependListener(event: "test:start", listener: (data: TestStart) => void): this;
|
|
461
537
|
prependListener(event: "test:stderr", listener: (data: TestStderr) => void): this;
|
|
462
538
|
prependListener(event: "test:stdout", listener: (data: TestStdout) => void): this;
|
|
539
|
+
prependListener(event: "test:summary", listener: (data: TestSummary) => void): this;
|
|
463
540
|
prependListener(event: "test:watch:drained", listener: () => void): this;
|
|
464
541
|
prependListener(event: string, listener: (...args: any[]) => void): this;
|
|
465
542
|
prependOnceListener(event: "test:coverage", listener: (data: TestCoverage) => void): this;
|
|
@@ -473,6 +550,7 @@ declare module "node:test" {
|
|
|
473
550
|
prependOnceListener(event: "test:start", listener: (data: TestStart) => void): this;
|
|
474
551
|
prependOnceListener(event: "test:stderr", listener: (data: TestStderr) => void): this;
|
|
475
552
|
prependOnceListener(event: "test:stdout", listener: (data: TestStdout) => void): this;
|
|
553
|
+
prependOnceListener(event: "test:summary", listener: (data: TestSummary) => void): this;
|
|
476
554
|
prependOnceListener(event: "test:watch:drained", listener: () => void): this;
|
|
477
555
|
prependOnceListener(event: string, listener: (...args: any[]) => void): this;
|
|
478
556
|
}
|
|
@@ -1635,9 +1713,10 @@ declare module "node:test" {
|
|
|
1635
1713
|
* This function is used to set a custom resolver for the location of the snapshot file used for snapshot testing.
|
|
1636
1714
|
* By default, the snapshot filename is the same as the entry point filename with `.snapshot` appended.
|
|
1637
1715
|
* @since v22.3.0
|
|
1638
|
-
* @param fn A function
|
|
1639
|
-
* The function receives the path of the test file as its only argument.
|
|
1640
|
-
*
|
|
1716
|
+
* @param fn A function used to compute the location of the snapshot file.
|
|
1717
|
+
* The function receives the path of the test file as its only argument. If the
|
|
1718
|
+
* test is not associated with a file (for example in the REPL), the input is
|
|
1719
|
+
* undefined. `fn()` must return a string specifying the location of the snapshot file.
|
|
1641
1720
|
*/
|
|
1642
1721
|
function setResolveSnapshotPath(fn: (path: string | undefined) => string): void;
|
|
1643
1722
|
}
|
|
@@ -1784,6 +1863,25 @@ interface TestCoverage {
|
|
|
1784
1863
|
count: number;
|
|
1785
1864
|
}>;
|
|
1786
1865
|
}>;
|
|
1866
|
+
/**
|
|
1867
|
+
* An object containing whether or not the coverage for
|
|
1868
|
+
* each coverage type.
|
|
1869
|
+
* @since v22.9.0
|
|
1870
|
+
*/
|
|
1871
|
+
thresholds: {
|
|
1872
|
+
/**
|
|
1873
|
+
* The function coverage threshold.
|
|
1874
|
+
*/
|
|
1875
|
+
function: number;
|
|
1876
|
+
/**
|
|
1877
|
+
* The branch coverage threshold.
|
|
1878
|
+
*/
|
|
1879
|
+
branch: number;
|
|
1880
|
+
/**
|
|
1881
|
+
* The line coverage threshold.
|
|
1882
|
+
*/
|
|
1883
|
+
line: number;
|
|
1884
|
+
};
|
|
1787
1885
|
/**
|
|
1788
1886
|
* An object containing a summary of coverage for all files.
|
|
1789
1887
|
*/
|
|
@@ -2016,6 +2114,57 @@ interface TestStdout {
|
|
|
2016
2114
|
*/
|
|
2017
2115
|
message: string;
|
|
2018
2116
|
}
|
|
2117
|
+
interface TestSummary {
|
|
2118
|
+
/**
|
|
2119
|
+
* An object containing the counts of various test results.
|
|
2120
|
+
*/
|
|
2121
|
+
counts: {
|
|
2122
|
+
/**
|
|
2123
|
+
* The total number of cancelled tests.
|
|
2124
|
+
*/
|
|
2125
|
+
cancelled: number;
|
|
2126
|
+
/**
|
|
2127
|
+
* The total number of passed tests.
|
|
2128
|
+
*/
|
|
2129
|
+
passed: number;
|
|
2130
|
+
/**
|
|
2131
|
+
* The total number of skipped tests.
|
|
2132
|
+
*/
|
|
2133
|
+
skipped: number;
|
|
2134
|
+
/**
|
|
2135
|
+
* The total number of suites run.
|
|
2136
|
+
*/
|
|
2137
|
+
suites: number;
|
|
2138
|
+
/**
|
|
2139
|
+
* The total number of tests run, excluding suites.
|
|
2140
|
+
*/
|
|
2141
|
+
tests: number;
|
|
2142
|
+
/**
|
|
2143
|
+
* The total number of TODO tests.
|
|
2144
|
+
*/
|
|
2145
|
+
todo: number;
|
|
2146
|
+
/**
|
|
2147
|
+
* The total number of top level tests and suites.
|
|
2148
|
+
*/
|
|
2149
|
+
topLevel: number;
|
|
2150
|
+
};
|
|
2151
|
+
/**
|
|
2152
|
+
* The duration of the test run in milliseconds.
|
|
2153
|
+
*/
|
|
2154
|
+
duration_ms: number;
|
|
2155
|
+
/**
|
|
2156
|
+
* The path of the test file that generated the
|
|
2157
|
+
* summary. If the summary corresponds to multiple files, this value is
|
|
2158
|
+
* `undefined`.
|
|
2159
|
+
*/
|
|
2160
|
+
file: string | undefined;
|
|
2161
|
+
/**
|
|
2162
|
+
* Indicates whether or not the test run is considered
|
|
2163
|
+
* successful or not. If any error condition occurs, such as a failing test or
|
|
2164
|
+
* unmet coverage threshold, this value will be set to `false`.
|
|
2165
|
+
*/
|
|
2166
|
+
success: boolean;
|
|
2167
|
+
}
|
|
2019
2168
|
|
|
2020
2169
|
/**
|
|
2021
2170
|
* The `node:test/reporters` module exposes the builtin-reporters for `node:test`.
|
|
@@ -2049,6 +2198,7 @@ declare module "node:test/reporters" {
|
|
|
2049
2198
|
| { type: "test:start"; data: TestStart }
|
|
2050
2199
|
| { type: "test:stderr"; data: TestStderr }
|
|
2051
2200
|
| { type: "test:stdout"; data: TestStdout }
|
|
2201
|
+
| { type: "test:summary"; data: TestSummary }
|
|
2052
2202
|
| { type: "test:watch:drained"; data: undefined };
|
|
2053
2203
|
type TestEventGenerator = AsyncGenerator<TestEvent, void>;
|
|
2054
2204
|
|
|
@@ -80,7 +80,7 @@ declare module "timers/promises" {
|
|
|
80
80
|
* @experimental
|
|
81
81
|
* @param [delay=1] The number of milliseconds to wait before fulfilling the promise.
|
|
82
82
|
*/
|
|
83
|
-
wait: (delay?: number, options?:
|
|
83
|
+
wait: (delay?: number, options?: TimerOptions) => Promise<void>;
|
|
84
84
|
/**
|
|
85
85
|
* An experimental API defined by the [Scheduling APIs](https://nodejs.org/docs/latest-v20.x/api/async_hooks.html#promise-execution-tracking) draft specification
|
|
86
86
|
* being developed as a standard Web Platform API.
|
|
@@ -809,6 +809,12 @@ declare module "tls" {
|
|
|
809
809
|
* This option cannot be used with the `ALPNProtocols` option, and setting both options will throw an error.
|
|
810
810
|
*/
|
|
811
811
|
ALPNCallback?: ((arg: { servername: string; protocols: string[] }) => string | undefined) | undefined;
|
|
812
|
+
/**
|
|
813
|
+
* Treat intermediate (non-self-signed)
|
|
814
|
+
* certificates in the trust CA certificate list as trusted.
|
|
815
|
+
* @since v22.9.0, v20.18.0
|
|
816
|
+
*/
|
|
817
|
+
allowPartialTrustChain?: boolean | undefined;
|
|
812
818
|
/**
|
|
813
819
|
* Optionally override the trusted CA certificates. Default is to trust
|
|
814
820
|
* the well-known CAs curated by Mozilla. Mozilla's CAs are completely
|
|
@@ -22,22 +22,22 @@
|
|
|
22
22
|
* IN THE SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
// NOTE: These definitions support
|
|
25
|
+
// NOTE: These definitions support Node.js and TypeScript 4.9 through 5.6.
|
|
26
26
|
|
|
27
|
-
// Reference required
|
|
27
|
+
// Reference required TypeScript libs:
|
|
28
28
|
/// <reference lib="es2020" />
|
|
29
|
-
/// <reference lib="esnext.asynciterable" />
|
|
30
|
-
/// <reference lib="esnext.intl" />
|
|
31
|
-
/// <reference lib="esnext.bigint" />
|
|
32
29
|
|
|
33
|
-
//
|
|
30
|
+
// TypeScript backwards-compatibility definitions:
|
|
31
|
+
/// <reference path="../compatibility/index.d.ts" />
|
|
32
|
+
|
|
33
|
+
// Definitions specific to TypeScript 4.9 through 5.6:
|
|
34
34
|
/// <reference path="./globals.typedarray.d.ts" />
|
|
35
35
|
/// <reference path="./buffer.buffer.d.ts" />
|
|
36
36
|
|
|
37
|
-
//
|
|
37
|
+
// Definitions for Node.js modules that are not specific to any version of TypeScript:
|
|
38
|
+
/// <reference path="../globals.d.ts" />
|
|
38
39
|
/// <reference path="../assert.d.ts" />
|
|
39
40
|
/// <reference path="../assert/strict.d.ts" />
|
|
40
|
-
/// <reference path="../globals.d.ts" />
|
|
41
41
|
/// <reference path="../async_hooks.d.ts" />
|
|
42
42
|
/// <reference path="../buffer.d.ts" />
|
|
43
43
|
/// <reference path="../child_process.d.ts" />
|
|
@@ -90,5 +90,3 @@
|
|
|
90
90
|
/// <reference path="../wasi.d.ts" />
|
|
91
91
|
/// <reference path="../worker_threads.d.ts" />
|
|
92
92
|
/// <reference path="../zlib.d.ts" />
|
|
93
|
-
|
|
94
|
-
/// <reference path="../globals.global.d.ts" />
|
|
@@ -757,6 +757,9 @@ declare module "url" {
|
|
|
757
757
|
*/
|
|
758
758
|
toJSON(): string;
|
|
759
759
|
}
|
|
760
|
+
interface URLSearchParamsIterator<T> extends NodeJS.Iterator<T, NodeJS.BuiltinIteratorReturn, unknown> {
|
|
761
|
+
[Symbol.iterator](): URLSearchParamsIterator<T>;
|
|
762
|
+
}
|
|
760
763
|
/**
|
|
761
764
|
* The `URLSearchParams` API provides read and write access to the query of a `URL`. The `URLSearchParams` class can also be used standalone with one of the
|
|
762
765
|
* four following constructors.
|
|
@@ -827,7 +830,7 @@ declare module "url" {
|
|
|
827
830
|
*
|
|
828
831
|
* Alias for `urlSearchParams[@@iterator]()`.
|
|
829
832
|
*/
|
|
830
|
-
entries():
|
|
833
|
+
entries(): URLSearchParamsIterator<[string, string]>;
|
|
831
834
|
/**
|
|
832
835
|
* Iterates over each name-value pair in the query and invokes the given function.
|
|
833
836
|
*
|
|
@@ -881,7 +884,7 @@ declare module "url" {
|
|
|
881
884
|
* // foo
|
|
882
885
|
* ```
|
|
883
886
|
*/
|
|
884
|
-
keys():
|
|
887
|
+
keys(): URLSearchParamsIterator<string>;
|
|
885
888
|
/**
|
|
886
889
|
* Sets the value in the `URLSearchParams` object associated with `name` to `value`. If there are any pre-existing name-value pairs whose names are `name`,
|
|
887
890
|
* set the first such pair's value to `value` and remove all others. If not,
|
|
@@ -931,8 +934,8 @@ declare module "url" {
|
|
|
931
934
|
/**
|
|
932
935
|
* Returns an ES6 `Iterator` over the values of each name-value pair.
|
|
933
936
|
*/
|
|
934
|
-
values():
|
|
935
|
-
[Symbol.iterator]():
|
|
937
|
+
values(): URLSearchParamsIterator<string>;
|
|
938
|
+
[Symbol.iterator](): URLSearchParamsIterator<[string, string]>;
|
|
936
939
|
}
|
|
937
940
|
import { URL as _URL, URLSearchParams as _URLSearchParams } from "url";
|
|
938
941
|
global {
|
|
@@ -108,6 +108,25 @@ declare module "util" {
|
|
|
108
108
|
export interface InspectOptionsStylized extends InspectOptions {
|
|
109
109
|
stylize(text: string, styleType: Style): string;
|
|
110
110
|
}
|
|
111
|
+
export interface StacktraceObject {
|
|
112
|
+
/**
|
|
113
|
+
* Returns the name of the function associated with this stack frame.
|
|
114
|
+
*/
|
|
115
|
+
functionName: string;
|
|
116
|
+
/**
|
|
117
|
+
* Returns the name of the resource that contains the script for the
|
|
118
|
+
* function for this StackFrame.
|
|
119
|
+
*/
|
|
120
|
+
scriptName: string;
|
|
121
|
+
/**
|
|
122
|
+
* Returns the number, 1-based, of the line for the associate function call.
|
|
123
|
+
*/
|
|
124
|
+
lineNumber: number;
|
|
125
|
+
/**
|
|
126
|
+
* Returns the 1-based column offset on the line for the associated function call.
|
|
127
|
+
*/
|
|
128
|
+
column: number;
|
|
129
|
+
}
|
|
111
130
|
/**
|
|
112
131
|
* The `util.format()` method returns a formatted string using the first argument
|
|
113
132
|
* as a `printf`-like format string which can contain zero or more format
|
|
@@ -166,6 +185,52 @@ declare module "util" {
|
|
|
166
185
|
* @since v10.0.0
|
|
167
186
|
*/
|
|
168
187
|
export function formatWithOptions(inspectOptions: InspectOptions, format?: any, ...param: any[]): string;
|
|
188
|
+
/**
|
|
189
|
+
* Returns an array of stacktrace objects containing the stack of
|
|
190
|
+
* the caller function.
|
|
191
|
+
*
|
|
192
|
+
* ```js
|
|
193
|
+
* const util = require('node:util');
|
|
194
|
+
*
|
|
195
|
+
* function exampleFunction() {
|
|
196
|
+
* const callSites = util.getCallSite();
|
|
197
|
+
*
|
|
198
|
+
* console.log('Call Sites:');
|
|
199
|
+
* callSites.forEach((callSite, index) => {
|
|
200
|
+
* console.log(`CallSite ${index + 1}:`);
|
|
201
|
+
* console.log(`Function Name: ${callSite.functionName}`);
|
|
202
|
+
* console.log(`Script Name: ${callSite.scriptName}`);
|
|
203
|
+
* console.log(`Line Number: ${callSite.lineNumber}`);
|
|
204
|
+
* console.log(`Column Number: ${callSite.column}`);
|
|
205
|
+
* });
|
|
206
|
+
* // CallSite 1:
|
|
207
|
+
* // Function Name: exampleFunction
|
|
208
|
+
* // Script Name: /home/example.js
|
|
209
|
+
* // Line Number: 5
|
|
210
|
+
* // Column Number: 26
|
|
211
|
+
*
|
|
212
|
+
* // CallSite 2:
|
|
213
|
+
* // Function Name: anotherFunction
|
|
214
|
+
* // Script Name: /home/example.js
|
|
215
|
+
* // Line Number: 22
|
|
216
|
+
* // Column Number: 3
|
|
217
|
+
*
|
|
218
|
+
* // ...
|
|
219
|
+
* }
|
|
220
|
+
*
|
|
221
|
+
* // A function to simulate another stack layer
|
|
222
|
+
* function anotherFunction() {
|
|
223
|
+
* exampleFunction();
|
|
224
|
+
* }
|
|
225
|
+
*
|
|
226
|
+
* anotherFunction();
|
|
227
|
+
* ```
|
|
228
|
+
* @param frames Number of frames returned in the stacktrace.
|
|
229
|
+
* **Default:** `10`. Allowable range is between 1 and 200.
|
|
230
|
+
* @return An array of stacktrace objects
|
|
231
|
+
* @since v22.9.0
|
|
232
|
+
*/
|
|
233
|
+
export function getCallSite(frames?: number): StacktraceObject[];
|
|
169
234
|
/**
|
|
170
235
|
* Returns the string name for a numeric error code that comes from a Node.js API.
|
|
171
236
|
* The mapping between error codes and error names is platform-dependent.
|
|
@@ -1517,18 +1582,23 @@ declare module "util" {
|
|
|
1517
1582
|
string | boolean
|
|
1518
1583
|
>;
|
|
1519
1584
|
|
|
1585
|
+
type ApplyOptionalModifiers<O extends ParseArgsOptionsConfig, V extends Record<keyof O, unknown>> = (
|
|
1586
|
+
& { -readonly [LongOption in keyof O]?: V[LongOption] }
|
|
1587
|
+
& { [LongOption in keyof O as O[LongOption]["default"] extends {} ? LongOption : never]: V[LongOption] }
|
|
1588
|
+
) extends infer P ? { [K in keyof P]: P[K] } : never; // resolve intersection to object
|
|
1589
|
+
|
|
1520
1590
|
type ParsedValues<T extends ParseArgsConfig> =
|
|
1521
1591
|
& IfDefaultsTrue<T["strict"], unknown, { [longOption: string]: undefined | string | boolean }>
|
|
1522
|
-
& (T["options"] extends ParseArgsOptionsConfig ?
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
| IfDefaultsFalse<
|
|
1592
|
+
& (T["options"] extends ParseArgsOptionsConfig ? ApplyOptionalModifiers<
|
|
1593
|
+
T["options"],
|
|
1594
|
+
{
|
|
1595
|
+
[LongOption in keyof T["options"]]: IfDefaultsFalse<
|
|
1527
1596
|
T["options"][LongOption]["multiple"],
|
|
1528
1597
|
Array<ExtractOptionValue<T, T["options"][LongOption]>>,
|
|
1529
1598
|
ExtractOptionValue<T, T["options"][LongOption]>
|
|
1530
1599
|
>;
|
|
1531
|
-
|
|
1600
|
+
}
|
|
1601
|
+
>
|
|
1532
1602
|
: {});
|
|
1533
1603
|
|
|
1534
1604
|
type ParsedPositionals<T extends ParseArgsConfig> = IfDefaultsTrue<
|
|
@@ -1720,7 +1790,7 @@ declare module "util" {
|
|
|
1720
1790
|
* Each item of the iterator is a JavaScript `Array`. The first item of the array
|
|
1721
1791
|
* is the `name`, the second item of the array is the `value`.
|
|
1722
1792
|
*/
|
|
1723
|
-
entries():
|
|
1793
|
+
entries(): NodeJS.Iterator<[name: string, value: string]>;
|
|
1724
1794
|
/**
|
|
1725
1795
|
* Returns the value of the first name-value pair whose name is `name`. If there
|
|
1726
1796
|
* are no such pairs, `null` is returned.
|
|
@@ -1746,7 +1816,7 @@ declare module "util" {
|
|
|
1746
1816
|
* // bar
|
|
1747
1817
|
* ```
|
|
1748
1818
|
*/
|
|
1749
|
-
keys():
|
|
1819
|
+
keys(): NodeJS.Iterator<string>;
|
|
1750
1820
|
/**
|
|
1751
1821
|
* Sets the value in the `MIMEParams` object associated with `name` to `value`. If there are any pre-existing name-value pairs whose names are `name`,
|
|
1752
1822
|
* set the first such pair's value to `value`.
|
|
@@ -1765,11 +1835,11 @@ declare module "util" {
|
|
|
1765
1835
|
/**
|
|
1766
1836
|
* Returns an iterator over the values of each name-value pair.
|
|
1767
1837
|
*/
|
|
1768
|
-
values():
|
|
1838
|
+
values(): NodeJS.Iterator<string>;
|
|
1769
1839
|
/**
|
|
1770
1840
|
* Returns an iterator over each of the name-value pairs in the parameters.
|
|
1771
1841
|
*/
|
|
1772
|
-
[Symbol.iterator]:
|
|
1842
|
+
[Symbol.iterator](): NodeJS.Iterator<[name: string, value: string]>;
|
|
1773
1843
|
}
|
|
1774
1844
|
}
|
|
1775
1845
|
declare module "util/types" {
|
|
@@ -445,7 +445,7 @@ declare module "v8" {
|
|
|
445
445
|
* @since v8.0.0
|
|
446
446
|
* @param buffer A buffer returned by {@link serialize}.
|
|
447
447
|
*/
|
|
448
|
-
function deserialize(buffer: NodeJS.
|
|
448
|
+
function deserialize(buffer: NodeJS.ArrayBufferView): any;
|
|
449
449
|
/**
|
|
450
450
|
* The `v8.takeCoverage()` method allows the user to write the coverage started by `NODE_V8_COVERAGE` to disk on demand. This method can be invoked multiple
|
|
451
451
|
* times during the lifetime of the process. Each time the execution counter will
|