node-red-contrib-tak-registration 0.11.6 → 0.12.0
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 +88 -44
- package/node_modules/@types/node/async_hooks.d.ts +17 -15
- package/node_modules/@types/node/buffer.d.ts +29 -29
- package/node_modules/@types/node/child_process.d.ts +38 -34
- package/node_modules/@types/node/cluster.d.ts +165 -19
- package/node_modules/@types/node/console.d.ts +64 -27
- package/node_modules/@types/node/crypto.d.ts +101 -65
- package/node_modules/@types/node/dgram.d.ts +14 -14
- package/node_modules/@types/node/diagnostics_channel.d.ts +12 -3
- package/node_modules/@types/node/dns/promises.d.ts +79 -28
- package/node_modules/@types/node/dns.d.ts +124 -69
- package/node_modules/@types/node/dom-events.d.ts +2 -0
- package/node_modules/@types/node/domain.d.ts +4 -4
- package/node_modules/@types/node/events.d.ts +115 -63
- package/node_modules/@types/node/fs/promises.d.ts +18 -12
- package/node_modules/@types/node/fs.d.ts +45 -39
- package/node_modules/@types/node/globals.d.ts +1 -0
- package/node_modules/@types/node/http.d.ts +69 -48
- package/node_modules/@types/node/http2.d.ts +83 -47
- package/node_modules/@types/node/https.d.ts +3 -3
- package/node_modules/@types/node/index.d.ts +1 -0
- package/node_modules/@types/node/inspector.d.ts +5 -6
- package/node_modules/@types/node/net.d.ts +58 -13
- package/node_modules/@types/node/os.d.ts +29 -12
- package/node_modules/@types/node/package.json +3 -15
- package/node_modules/@types/node/path.d.ts +1 -1
- package/node_modules/@types/node/perf_hooks.d.ts +308 -48
- package/node_modules/@types/node/process.d.ts +241 -48
- package/node_modules/@types/node/punycode.d.ts +4 -4
- package/node_modules/@types/node/querystring.d.ts +18 -6
- package/node_modules/@types/node/readline/promises.d.ts +9 -9
- package/node_modules/@types/node/readline.d.ts +21 -20
- package/node_modules/@types/node/repl.d.ts +10 -10
- package/node_modules/@types/node/sea.d.ts +153 -0
- package/node_modules/@types/node/stream/web.d.ts +3 -2
- package/node_modules/@types/node/stream.d.ts +62 -56
- package/node_modules/@types/node/string_decoder.d.ts +3 -3
- package/node_modules/@types/node/test.d.ts +350 -97
- package/node_modules/@types/node/timers/promises.d.ts +10 -6
- package/node_modules/@types/node/timers.d.ts +5 -5
- package/node_modules/@types/node/tls.d.ts +39 -32
- package/node_modules/@types/node/trace_events.d.ts +40 -25
- package/node_modules/@types/node/tty.d.ts +8 -8
- package/node_modules/@types/node/url.d.ts +15 -7
- package/node_modules/@types/node/util.d.ts +131 -22
- package/node_modules/@types/node/v8.d.ts +50 -6
- package/node_modules/@types/node/vm.d.ts +43 -22
- package/node_modules/@types/node/wasi.d.ts +12 -10
- package/node_modules/@types/node/worker_threads.d.ts +19 -16
- package/node_modules/@types/node/zlib.d.ts +16 -3
- package/node_modules/adm-zip/README.md +2 -1
- package/node_modules/adm-zip/adm-zip.js +46 -45
- package/node_modules/adm-zip/headers/entryHeader.js +14 -12
- package/node_modules/adm-zip/headers/mainHeader.js +1 -1
- package/node_modules/adm-zip/methods/inflater.js +6 -3
- package/node_modules/adm-zip/methods/zipcrypto.js +6 -2
- package/node_modules/adm-zip/package.json +2 -2
- package/node_modules/adm-zip/util/errors.js +1 -0
- package/node_modules/adm-zip/zipEntry.js +64 -43
- package/node_modules/adm-zip/zipFile.js +35 -35
- package/node_modules/axios/CHANGELOG.md +868 -759
- package/node_modules/axios/README.md +65 -17
- package/node_modules/axios/dist/axios.js +1330 -583
- 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 +696 -316
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +696 -316
- 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 +607 -257
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/index.d.cts +5 -2
- package/node_modules/axios/index.d.ts +5 -2
- package/node_modules/axios/lib/adapters/adapters.js +3 -1
- package/node_modules/axios/lib/adapters/fetch.js +227 -0
- package/node_modules/axios/lib/adapters/http.js +1 -1
- package/node_modules/axios/lib/adapters/xhr.js +31 -101
- package/node_modules/axios/lib/core/Axios.js +17 -11
- package/node_modules/axios/lib/core/AxiosHeaders.js +4 -0
- package/node_modules/axios/lib/core/mergeConfig.js +1 -1
- package/node_modules/axios/lib/defaults/index.js +7 -5
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/helpers/AxiosTransformStream.js +9 -8
- package/node_modules/axios/lib/helpers/composeSignals.js +46 -0
- package/node_modules/axios/lib/helpers/progressEventReducer.js +32 -0
- package/node_modules/axios/lib/helpers/resolveConfig.js +57 -0
- package/node_modules/axios/lib/helpers/throttle.js +5 -3
- package/node_modules/axios/lib/helpers/trackStream.js +55 -0
- package/node_modules/axios/lib/platform/common/utils.js +4 -1
- package/node_modules/axios/lib/utils.js +7 -2
- package/node_modules/axios/package.json +27 -26
- package/node_modules/fast-xml-parser/CHANGELOG.md +14 -0
- package/node_modules/fast-xml-parser/README.md +7 -14
- package/node_modules/fast-xml-parser/package.json +1 -1
- package/node_modules/fast-xml-parser/src/fxp.d.ts +4 -4
- package/node_modules/fast-xml-parser/src/v5/CharsSymbol.js +16 -0
- package/node_modules/fast-xml-parser/src/v5/EntitiesParser.js +107 -0
- package/node_modules/fast-xml-parser/src/v5/OptionsBuilder.js +64 -0
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/BaseOutputBuilder.js +71 -0
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsArrBuilder.js +103 -0
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsMinArrBuilder.js +102 -0
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsObjBuilder.js +156 -0
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/ParserOptionsBuilder.js +96 -0
- package/node_modules/fast-xml-parser/src/v5/Report.js +0 -0
- package/node_modules/fast-xml-parser/src/v5/TagPath.js +81 -0
- package/node_modules/fast-xml-parser/src/v5/TagPathMatcher.js +15 -0
- package/node_modules/fast-xml-parser/src/v5/XMLParser.js +85 -0
- package/node_modules/fast-xml-parser/src/v5/Xml2JsParser.js +237 -0
- package/node_modules/fast-xml-parser/src/v5/XmlPartReader.js +212 -0
- package/node_modules/fast-xml-parser/src/v5/XmlSpecialTagsReader.js +118 -0
- package/node_modules/fast-xml-parser/src/v5/inputSource/BufferSource.js +118 -0
- package/node_modules/fast-xml-parser/src/v5/inputSource/StringSource.js +123 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/EntitiesParser.js +107 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParser.js +23 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParserExt.js +20 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/currency.js +31 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/join.js +14 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/number.js +16 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/trim.js +8 -0
- package/node_modules/fast-xml-parser/src/validator.js +2 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +13 -4
- package/node_modules/follow-redirects/index.js +1 -1
- package/node_modules/follow-redirects/package.json +1 -1
- package/node_modules/hasown/CHANGELOG.md +12 -0
- package/node_modules/hasown/index.d.ts +2 -2
- package/node_modules/hasown/package.json +5 -2
- package/node_modules/hasown/tsconfig.json +3 -46
- package/node_modules/object-is/.eslintrc +1 -1
- package/node_modules/object-is/.nycrc +0 -4
- package/node_modules/object-is/CHANGELOG.md +25 -0
- package/node_modules/object-is/README.md +20 -20
- package/node_modules/object-is/package.json +23 -14
- package/node_modules/protobufjs/LICENSE +39 -39
- package/node_modules/protobufjs/README.md +727 -740
- package/node_modules/protobufjs/dist/light/protobuf.js +6264 -6264
- package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/light/protobuf.min.js +2 -2
- package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.js +1928 -1928
- package/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.js +7978 -7961
- 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/debug/README.md +4 -4
- package/node_modules/protobufjs/ext/debug/index.js +71 -71
- package/node_modules/protobufjs/ext/descriptor/README.md +72 -72
- package/node_modules/protobufjs/ext/descriptor/index.d.ts +191 -191
- package/node_modules/protobufjs/ext/descriptor/index.js +1052 -1052
- package/node_modules/protobufjs/ext/descriptor/test.js +54 -54
- package/node_modules/protobufjs/google/LICENSE +27 -27
- package/node_modules/protobufjs/google/README.md +1 -1
- package/node_modules/protobufjs/google/api/annotations.json +82 -82
- package/node_modules/protobufjs/google/api/annotations.proto +10 -10
- package/node_modules/protobufjs/google/api/http.json +85 -85
- package/node_modules/protobufjs/google/api/http.proto +30 -30
- package/node_modules/protobufjs/google/protobuf/api.json +117 -117
- package/node_modules/protobufjs/google/protobuf/api.proto +33 -33
- package/node_modules/protobufjs/google/protobuf/descriptor.json +738 -738
- package/node_modules/protobufjs/google/protobuf/descriptor.proto +286 -286
- package/node_modules/protobufjs/google/protobuf/source_context.json +19 -19
- package/node_modules/protobufjs/google/protobuf/source_context.proto +7 -7
- package/node_modules/protobufjs/google/protobuf/type.json +201 -201
- package/node_modules/protobufjs/google/protobuf/type.proto +89 -89
- package/node_modules/protobufjs/index.d.ts +2741 -2741
- package/node_modules/protobufjs/index.js +4 -4
- package/node_modules/protobufjs/light.d.ts +2 -2
- package/node_modules/protobufjs/light.js +3 -3
- package/node_modules/protobufjs/minimal.d.ts +2 -2
- package/node_modules/protobufjs/minimal.js +4 -4
- package/node_modules/protobufjs/package.json +111 -111
- package/node_modules/protobufjs/scripts/postinstall.js +32 -32
- package/node_modules/protobufjs/src/common.js +399 -399
- package/node_modules/protobufjs/src/converter.js +301 -301
- package/node_modules/protobufjs/src/decoder.js +129 -129
- package/node_modules/protobufjs/src/encoder.js +100 -100
- package/node_modules/protobufjs/src/enum.js +198 -198
- package/node_modules/protobufjs/src/field.js +377 -377
- package/node_modules/protobufjs/src/index-light.js +104 -104
- package/node_modules/protobufjs/src/index-minimal.js +36 -36
- package/node_modules/protobufjs/src/index.js +12 -12
- package/node_modules/protobufjs/src/mapfield.js +126 -126
- package/node_modules/protobufjs/src/message.js +138 -138
- package/node_modules/protobufjs/src/method.js +160 -160
- package/node_modules/protobufjs/src/namespace.js +433 -433
- package/node_modules/protobufjs/src/object.js +243 -243
- package/node_modules/protobufjs/src/oneof.js +203 -203
- package/node_modules/protobufjs/src/parse.js +889 -872
- package/node_modules/protobufjs/src/reader.js +416 -416
- package/node_modules/protobufjs/src/reader_buffer.js +51 -51
- package/node_modules/protobufjs/src/root.js +368 -368
- package/node_modules/protobufjs/src/roots.js +18 -18
- package/node_modules/protobufjs/src/rpc/service.js +142 -142
- package/node_modules/protobufjs/src/rpc.js +36 -36
- package/node_modules/protobufjs/src/service.js +167 -167
- package/node_modules/protobufjs/src/tokenize.js +416 -416
- package/node_modules/protobufjs/src/type.js +589 -589
- package/node_modules/protobufjs/src/types.js +196 -196
- package/node_modules/protobufjs/src/typescript.jsdoc +15 -15
- package/node_modules/protobufjs/src/util/longbits.js +200 -200
- package/node_modules/protobufjs/src/util/minimal.js +438 -438
- package/node_modules/protobufjs/src/util.js +212 -212
- package/node_modules/protobufjs/src/verifier.js +176 -176
- package/node_modules/protobufjs/src/wrappers.js +102 -102
- package/node_modules/protobufjs/src/writer.js +465 -465
- package/node_modules/protobufjs/src/writer_buffer.js +85 -85
- package/node_modules/protobufjs/tsconfig.json +7 -7
- package/node_modules/set-function-length/CHANGELOG.md +11 -0
- package/node_modules/set-function-length/env.d.ts +9 -6
- package/node_modules/set-function-length/env.js +1 -0
- package/node_modules/set-function-length/index.d.ts +6 -6
- package/node_modules/set-function-length/index.js +1 -3
- package/node_modules/set-function-length/package.json +11 -13
- package/node_modules/set-function-length/tsconfig.json +7 -57
- package/node_modules/uuid/CHANGELOG.md +18 -0
- package/node_modules/uuid/README.md +134 -16
- package/node_modules/uuid/dist/commonjs-browser/index.js +40 -15
- package/node_modules/uuid/dist/commonjs-browser/max.js +7 -0
- package/node_modules/uuid/dist/commonjs-browser/md5.js +30 -53
- package/node_modules/uuid/dist/commonjs-browser/native.js +3 -4
- package/node_modules/uuid/dist/commonjs-browser/nil.js +1 -2
- package/node_modules/uuid/dist/commonjs-browser/parse.js +14 -15
- package/node_modules/uuid/dist/commonjs-browser/regex.js +1 -2
- package/node_modules/uuid/dist/commonjs-browser/rng.js +2 -4
- package/node_modules/uuid/dist/commonjs-browser/sha1.js +27 -49
- package/node_modules/uuid/dist/commonjs-browser/stringify.js +10 -16
- package/node_modules/uuid/dist/commonjs-browser/v1.js +73 -49
- package/node_modules/uuid/dist/commonjs-browser/v1ToV6.js +26 -0
- package/node_modules/uuid/dist/commonjs-browser/v3.js +3 -8
- package/node_modules/uuid/dist/commonjs-browser/v35.js +15 -32
- package/node_modules/uuid/dist/commonjs-browser/v4.js +7 -18
- package/node_modules/uuid/dist/commonjs-browser/v5.js +3 -8
- package/node_modules/uuid/dist/commonjs-browser/v6.js +42 -0
- package/node_modules/uuid/dist/commonjs-browser/v6ToV1.js +26 -0
- package/node_modules/uuid/dist/commonjs-browser/v7.js +152 -0
- package/node_modules/uuid/dist/commonjs-browser/validate.js +2 -7
- package/node_modules/uuid/dist/commonjs-browser/version.js +2 -8
- package/node_modules/uuid/dist/esm-browser/index.js +9 -4
- package/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/node_modules/uuid/dist/esm-browser/md5.js +29 -50
- package/node_modules/uuid/dist/esm-browser/native.js +1 -1
- package/node_modules/uuid/dist/esm-browser/parse.js +12 -10
- package/node_modules/uuid/dist/esm-browser/regex.js +1 -1
- package/node_modules/uuid/dist/esm-browser/rng.js +3 -4
- package/node_modules/uuid/dist/esm-browser/sha1.js +26 -46
- package/node_modules/uuid/dist/esm-browser/stringify.js +9 -11
- package/node_modules/uuid/dist/esm-browser/v1.js +74 -44
- package/node_modules/uuid/dist/esm-browser/v1ToV6.js +20 -0
- package/node_modules/uuid/dist/esm-browser/v3.js +1 -1
- package/node_modules/uuid/dist/esm-browser/v35.js +14 -25
- package/node_modules/uuid/dist/esm-browser/v4.js +5 -9
- package/node_modules/uuid/dist/esm-browser/v5.js +1 -1
- package/node_modules/uuid/dist/esm-browser/v6.js +36 -0
- package/node_modules/uuid/dist/esm-browser/v6ToV1.js +20 -0
- package/node_modules/uuid/dist/esm-browser/v7.js +146 -0
- package/node_modules/uuid/dist/esm-browser/validate.js +0 -2
- package/node_modules/uuid/dist/esm-browser/version.js +0 -3
- package/node_modules/uuid/dist/esm-node/index.js +9 -4
- package/node_modules/uuid/dist/esm-node/max.js +1 -0
- package/node_modules/uuid/dist/esm-node/md5.js +1 -4
- package/node_modules/uuid/dist/esm-node/native.js +1 -1
- package/node_modules/uuid/dist/esm-node/parse.js +11 -9
- package/node_modules/uuid/dist/esm-node/regex.js +1 -1
- package/node_modules/uuid/dist/esm-node/rng.js +1 -3
- package/node_modules/uuid/dist/esm-node/sha1.js +1 -4
- package/node_modules/uuid/dist/esm-node/stringify.js +7 -9
- package/node_modules/uuid/dist/esm-node/v1.js +66 -36
- package/node_modules/uuid/dist/esm-node/v1ToV6.js +20 -0
- package/node_modules/uuid/dist/esm-node/v35.js +8 -19
- package/node_modules/uuid/dist/esm-node/v4.js +4 -8
- package/node_modules/uuid/dist/esm-node/v6.js +32 -0
- package/node_modules/uuid/dist/esm-node/v6ToV1.js +20 -0
- package/node_modules/uuid/dist/esm-node/v7.js +146 -0
- package/node_modules/uuid/dist/esm-node/validate.js +0 -2
- package/node_modules/uuid/dist/esm-node/version.js +0 -3
- package/node_modules/uuid/dist/index.js +40 -15
- package/node_modules/uuid/dist/max.js +7 -0
- package/node_modules/uuid/dist/md5-browser.js +8 -31
- package/node_modules/uuid/dist/md5.js +4 -10
- package/node_modules/uuid/dist/native-browser.js +2 -3
- package/node_modules/uuid/dist/native.js +5 -9
- package/node_modules/uuid/dist/nil.js +1 -2
- package/node_modules/uuid/dist/parse.js +13 -14
- package/node_modules/uuid/dist/regex.js +1 -2
- package/node_modules/uuid/dist/rng-browser.js +1 -3
- package/node_modules/uuid/dist/rng.js +3 -10
- package/node_modules/uuid/dist/sha1-browser.js +1 -23
- package/node_modules/uuid/dist/sha1.js +4 -10
- package/node_modules/uuid/dist/stringify.js +8 -14
- package/node_modules/uuid/dist/uuid-bin.js +12 -22
- package/node_modules/uuid/dist/v1.js +66 -42
- package/node_modules/uuid/dist/v1ToV6.js +26 -0
- package/node_modules/uuid/dist/v3.js +2 -7
- package/node_modules/uuid/dist/v35.js +11 -28
- package/node_modules/uuid/dist/v4.js +6 -17
- package/node_modules/uuid/dist/v5.js +2 -7
- package/node_modules/uuid/dist/v6.js +38 -0
- package/node_modules/uuid/dist/v6ToV1.js +26 -0
- package/node_modules/uuid/dist/v7.js +152 -0
- package/node_modules/uuid/dist/validate.js +2 -7
- package/node_modules/uuid/dist/version.js +2 -8
- package/node_modules/uuid/package.json +41 -34
- package/node_modules/uuid/wrapper.mjs +5 -0
- package/package.json +6 -6
- package/tak-ingest.js +1 -1
- package/tak-registration.js +8 -1
- package/node_modules/@types/node/ts4.8/assert/strict.d.ts +0 -8
- package/node_modules/@types/node/ts4.8/assert.d.ts +0 -996
- package/node_modules/@types/node/ts4.8/async_hooks.d.ts +0 -539
- package/node_modules/@types/node/ts4.8/buffer.d.ts +0 -2363
- package/node_modules/@types/node/ts4.8/child_process.d.ts +0 -1540
- package/node_modules/@types/node/ts4.8/cluster.d.ts +0 -432
- package/node_modules/@types/node/ts4.8/console.d.ts +0 -415
- package/node_modules/@types/node/ts4.8/constants.d.ts +0 -19
- package/node_modules/@types/node/ts4.8/crypto.d.ts +0 -4487
- package/node_modules/@types/node/ts4.8/dgram.d.ts +0 -596
- package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +0 -545
- package/node_modules/@types/node/ts4.8/dns/promises.d.ts +0 -425
- package/node_modules/@types/node/ts4.8/dns.d.ts +0 -809
- package/node_modules/@types/node/ts4.8/dom-events.d.ts +0 -122
- package/node_modules/@types/node/ts4.8/domain.d.ts +0 -170
- package/node_modules/@types/node/ts4.8/events.d.ts +0 -879
- package/node_modules/@types/node/ts4.8/fs/promises.d.ts +0 -1239
- package/node_modules/@types/node/ts4.8/fs.d.ts +0 -4311
- package/node_modules/@types/node/ts4.8/globals.d.ts +0 -411
- package/node_modules/@types/node/ts4.8/globals.global.d.ts +0 -1
- package/node_modules/@types/node/ts4.8/http.d.ts +0 -1887
- package/node_modules/@types/node/ts4.8/http2.d.ts +0 -2382
- package/node_modules/@types/node/ts4.8/https.d.ts +0 -550
- package/node_modules/@types/node/ts4.8/index.d.ts +0 -88
- package/node_modules/@types/node/ts4.8/inspector.d.ts +0 -2747
- package/node_modules/@types/node/ts4.8/module.d.ts +0 -315
- package/node_modules/@types/node/ts4.8/net.d.ts +0 -954
- package/node_modules/@types/node/ts4.8/os.d.ts +0 -478
- package/node_modules/@types/node/ts4.8/path.d.ts +0 -191
- package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +0 -645
- package/node_modules/@types/node/ts4.8/process.d.ts +0 -1561
- package/node_modules/@types/node/ts4.8/punycode.d.ts +0 -117
- package/node_modules/@types/node/ts4.8/querystring.d.ts +0 -141
- package/node_modules/@types/node/ts4.8/readline/promises.d.ts +0 -150
- package/node_modules/@types/node/ts4.8/readline.d.ts +0 -539
- package/node_modules/@types/node/ts4.8/repl.d.ts +0 -430
- package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +0 -12
- package/node_modules/@types/node/ts4.8/stream/promises.d.ts +0 -83
- package/node_modules/@types/node/ts4.8/stream/web.d.ts +0 -366
- package/node_modules/@types/node/ts4.8/stream.d.ts +0 -1701
- package/node_modules/@types/node/ts4.8/string_decoder.d.ts +0 -67
- package/node_modules/@types/node/ts4.8/test.d.ts +0 -1465
- package/node_modules/@types/node/ts4.8/timers/promises.d.ts +0 -93
- package/node_modules/@types/node/ts4.8/timers.d.ts +0 -240
- package/node_modules/@types/node/ts4.8/tls.d.ts +0 -1210
- package/node_modules/@types/node/ts4.8/trace_events.d.ts +0 -182
- package/node_modules/@types/node/ts4.8/tty.d.ts +0 -208
- package/node_modules/@types/node/ts4.8/url.d.ts +0 -944
- package/node_modules/@types/node/ts4.8/util.d.ts +0 -2183
- package/node_modules/@types/node/ts4.8/v8.d.ts +0 -764
- package/node_modules/@types/node/ts4.8/vm.d.ts +0 -903
- package/node_modules/@types/node/ts4.8/wasi.d.ts +0 -179
- package/node_modules/@types/node/ts4.8/worker_threads.d.ts +0 -691
- package/node_modules/@types/node/ts4.8/zlib.d.ts +0 -517
- package/node_modules/object-is/.eslintignore +0 -1
- package/node_modules/set-function-length/env.d.ts.map +0 -1
- package/node_modules/set-function-length/index.d.ts.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Axios v1.
|
|
1
|
+
// Axios v1.7.2 Copyright (c) 2024 Matt Zabriskie and contributors
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
const FormData$1 = require('form-data');
|
|
@@ -10,7 +10,7 @@ const util = require('util');
|
|
|
10
10
|
const followRedirects = require('follow-redirects');
|
|
11
11
|
const zlib = require('zlib');
|
|
12
12
|
const stream = require('stream');
|
|
13
|
-
const
|
|
13
|
+
const events = require('events');
|
|
14
14
|
|
|
15
15
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
16
16
|
|
|
@@ -22,7 +22,6 @@ const util__default = /*#__PURE__*/_interopDefaultLegacy(util);
|
|
|
22
22
|
const followRedirects__default = /*#__PURE__*/_interopDefaultLegacy(followRedirects);
|
|
23
23
|
const zlib__default = /*#__PURE__*/_interopDefaultLegacy(zlib);
|
|
24
24
|
const stream__default = /*#__PURE__*/_interopDefaultLegacy(stream);
|
|
25
|
-
const EventEmitter__default = /*#__PURE__*/_interopDefaultLegacy(EventEmitter);
|
|
26
25
|
|
|
27
26
|
function bind(fn, thisArg) {
|
|
28
27
|
return function wrap() {
|
|
@@ -237,6 +236,8 @@ const isFormData = (thing) => {
|
|
|
237
236
|
*/
|
|
238
237
|
const isURLSearchParams = kindOfTest('URLSearchParams');
|
|
239
238
|
|
|
239
|
+
const [isReadableStream, isRequest, isResponse, isHeaders] = ['ReadableStream', 'Request', 'Response', 'Headers'].map(kindOfTest);
|
|
240
|
+
|
|
240
241
|
/**
|
|
241
242
|
* Trim excess whitespace off the beginning and end of a string
|
|
242
243
|
*
|
|
@@ -625,8 +626,7 @@ const toObjectSet = (arrayOrString, delimiter) => {
|
|
|
625
626
|
const noop = () => {};
|
|
626
627
|
|
|
627
628
|
const toFiniteNumber = (value, defaultValue) => {
|
|
628
|
-
value = +value;
|
|
629
|
-
return Number.isFinite(value) ? value : defaultValue;
|
|
629
|
+
return value != null && Number.isFinite(value = +value) ? value : defaultValue;
|
|
630
630
|
};
|
|
631
631
|
|
|
632
632
|
const ALPHA = 'abcdefghijklmnopqrstuvwxyz';
|
|
@@ -707,6 +707,10 @@ const utils$1 = {
|
|
|
707
707
|
isBoolean,
|
|
708
708
|
isObject,
|
|
709
709
|
isPlainObject,
|
|
710
|
+
isReadableStream,
|
|
711
|
+
isRequest,
|
|
712
|
+
isResponse,
|
|
713
|
+
isHeaders,
|
|
710
714
|
isUndefined,
|
|
711
715
|
isDate,
|
|
712
716
|
isFile,
|
|
@@ -1296,11 +1300,14 @@ const hasStandardBrowserWebWorkerEnv = (() => {
|
|
|
1296
1300
|
);
|
|
1297
1301
|
})();
|
|
1298
1302
|
|
|
1303
|
+
const origin = hasBrowserEnv && window.location.href || 'http://localhost';
|
|
1304
|
+
|
|
1299
1305
|
const utils = /*#__PURE__*/Object.freeze({
|
|
1300
1306
|
__proto__: null,
|
|
1301
1307
|
hasBrowserEnv: hasBrowserEnv,
|
|
1302
1308
|
hasStandardBrowserWebWorkerEnv: hasStandardBrowserWebWorkerEnv,
|
|
1303
|
-
hasStandardBrowserEnv: hasStandardBrowserEnv
|
|
1309
|
+
hasStandardBrowserEnv: hasStandardBrowserEnv,
|
|
1310
|
+
origin: origin
|
|
1304
1311
|
});
|
|
1305
1312
|
|
|
1306
1313
|
const platform = {
|
|
@@ -1440,7 +1447,7 @@ const defaults = {
|
|
|
1440
1447
|
|
|
1441
1448
|
transitional: transitionalDefaults,
|
|
1442
1449
|
|
|
1443
|
-
adapter: ['xhr', 'http'],
|
|
1450
|
+
adapter: ['xhr', 'http', 'fetch'],
|
|
1444
1451
|
|
|
1445
1452
|
transformRequest: [function transformRequest(data, headers) {
|
|
1446
1453
|
const contentType = headers.getContentType() || '';
|
|
@@ -1454,9 +1461,6 @@ const defaults = {
|
|
|
1454
1461
|
const isFormData = utils$1.isFormData(data);
|
|
1455
1462
|
|
|
1456
1463
|
if (isFormData) {
|
|
1457
|
-
if (!hasJSONContentType) {
|
|
1458
|
-
return data;
|
|
1459
|
-
}
|
|
1460
1464
|
return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;
|
|
1461
1465
|
}
|
|
1462
1466
|
|
|
@@ -1464,7 +1468,8 @@ const defaults = {
|
|
|
1464
1468
|
utils$1.isBuffer(data) ||
|
|
1465
1469
|
utils$1.isStream(data) ||
|
|
1466
1470
|
utils$1.isFile(data) ||
|
|
1467
|
-
utils$1.isBlob(data)
|
|
1471
|
+
utils$1.isBlob(data) ||
|
|
1472
|
+
utils$1.isReadableStream(data)
|
|
1468
1473
|
) {
|
|
1469
1474
|
return data;
|
|
1470
1475
|
}
|
|
@@ -1507,6 +1512,10 @@ const defaults = {
|
|
|
1507
1512
|
const forcedJSONParsing = transitional && transitional.forcedJSONParsing;
|
|
1508
1513
|
const JSONRequested = this.responseType === 'json';
|
|
1509
1514
|
|
|
1515
|
+
if (utils$1.isResponse(data) || utils$1.isReadableStream(data)) {
|
|
1516
|
+
return data;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1510
1519
|
if (data && utils$1.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) {
|
|
1511
1520
|
const silentJSONParsing = transitional && transitional.silentJSONParsing;
|
|
1512
1521
|
const strictJSONParsing = !silentJSONParsing && JSONRequested;
|
|
@@ -1710,6 +1719,10 @@ class AxiosHeaders {
|
|
|
1710
1719
|
setHeaders(header, valueOrRewrite);
|
|
1711
1720
|
} else if(utils$1.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
|
|
1712
1721
|
setHeaders(parseHeaders(header), valueOrRewrite);
|
|
1722
|
+
} else if (utils$1.isHeaders(header)) {
|
|
1723
|
+
for (const [key, value] of header.entries()) {
|
|
1724
|
+
setHeader(value, key, rewrite);
|
|
1725
|
+
}
|
|
1713
1726
|
} else {
|
|
1714
1727
|
header != null && setHeader(valueOrRewrite, header, rewrite);
|
|
1715
1728
|
}
|
|
@@ -2022,7 +2035,7 @@ function buildFullPath(baseURL, requestedURL) {
|
|
|
2022
2035
|
return requestedURL;
|
|
2023
2036
|
}
|
|
2024
2037
|
|
|
2025
|
-
const VERSION = "1.
|
|
2038
|
+
const VERSION = "1.7.2";
|
|
2026
2039
|
|
|
2027
2040
|
function parseProtocol(url) {
|
|
2028
2041
|
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
|
|
@@ -2087,7 +2100,9 @@ function throttle(fn, freq) {
|
|
|
2087
2100
|
let timestamp = 0;
|
|
2088
2101
|
const threshold = 1000 / freq;
|
|
2089
2102
|
let timer = null;
|
|
2090
|
-
return function throttled(
|
|
2103
|
+
return function throttled() {
|
|
2104
|
+
const force = this === true;
|
|
2105
|
+
|
|
2091
2106
|
const now = Date.now();
|
|
2092
2107
|
if (force || now - timestamp > threshold) {
|
|
2093
2108
|
if (timer) {
|
|
@@ -2095,13 +2110,13 @@ function throttle(fn, freq) {
|
|
|
2095
2110
|
timer = null;
|
|
2096
2111
|
}
|
|
2097
2112
|
timestamp = now;
|
|
2098
|
-
return fn.apply(null,
|
|
2113
|
+
return fn.apply(null, arguments);
|
|
2099
2114
|
}
|
|
2100
2115
|
if (!timer) {
|
|
2101
2116
|
timer = setTimeout(() => {
|
|
2102
2117
|
timer = null;
|
|
2103
2118
|
timestamp = Date.now();
|
|
2104
|
-
return fn.apply(null,
|
|
2119
|
+
return fn.apply(null, arguments);
|
|
2105
2120
|
}, threshold - (now - timestamp));
|
|
2106
2121
|
}
|
|
2107
2122
|
};
|
|
@@ -2219,19 +2234,20 @@ class AxiosTransformStream extends stream__default["default"].Transform{
|
|
|
2219
2234
|
|
|
2220
2235
|
process.nextTick(() => {
|
|
2221
2236
|
self.emit('progress', {
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
(totalBytes - bytesTransferred) / rate : undefined
|
|
2237
|
+
loaded: bytesTransferred,
|
|
2238
|
+
total: totalBytes,
|
|
2239
|
+
progress: totalBytes ? (bytesTransferred / totalBytes) : undefined,
|
|
2240
|
+
bytes: progressBytes,
|
|
2241
|
+
rate: rate ? rate : undefined,
|
|
2242
|
+
estimated: rate && totalBytes && bytesTransferred <= totalBytes ?
|
|
2243
|
+
(totalBytes - bytesTransferred) / rate : undefined,
|
|
2244
|
+
lengthComputable: totalBytes != null
|
|
2229
2245
|
});
|
|
2230
2246
|
});
|
|
2231
2247
|
}, internals.ticksRate);
|
|
2232
2248
|
|
|
2233
2249
|
const onFinish = () => {
|
|
2234
|
-
internals.updateProgress(true);
|
|
2250
|
+
internals.updateProgress.call(true);
|
|
2235
2251
|
};
|
|
2236
2252
|
|
|
2237
2253
|
this.once('end', onFinish);
|
|
@@ -2665,7 +2681,7 @@ const httpAdapter = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
2665
2681
|
}
|
|
2666
2682
|
|
|
2667
2683
|
// temporary internal emitter until the AxiosRequest class will be implemented
|
|
2668
|
-
const emitter = new
|
|
2684
|
+
const emitter = new events.EventEmitter();
|
|
2669
2685
|
|
|
2670
2686
|
const onFinished = () => {
|
|
2671
2687
|
if (config.cancelToken) {
|
|
@@ -3162,44 +3178,35 @@ const httpAdapter = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3162
3178
|
});
|
|
3163
3179
|
};
|
|
3164
3180
|
|
|
3165
|
-
const
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
{
|
|
3169
|
-
write(name, value, expires, path, domain, secure) {
|
|
3170
|
-
const cookie = [name + '=' + encodeURIComponent(value)];
|
|
3171
|
-
|
|
3172
|
-
utils$1.isNumber(expires) && cookie.push('expires=' + new Date(expires).toGMTString());
|
|
3173
|
-
|
|
3174
|
-
utils$1.isString(path) && cookie.push('path=' + path);
|
|
3175
|
-
|
|
3176
|
-
utils$1.isString(domain) && cookie.push('domain=' + domain);
|
|
3177
|
-
|
|
3178
|
-
secure === true && cookie.push('secure');
|
|
3181
|
+
const progressEventReducer = (listener, isDownloadStream, freq = 3) => {
|
|
3182
|
+
let bytesNotified = 0;
|
|
3183
|
+
const _speedometer = speedometer(50, 250);
|
|
3179
3184
|
|
|
3180
|
-
|
|
3181
|
-
|
|
3185
|
+
return throttle(e => {
|
|
3186
|
+
const loaded = e.loaded;
|
|
3187
|
+
const total = e.lengthComputable ? e.total : undefined;
|
|
3188
|
+
const progressBytes = loaded - bytesNotified;
|
|
3189
|
+
const rate = _speedometer(progressBytes);
|
|
3190
|
+
const inRange = loaded <= total;
|
|
3182
3191
|
|
|
3183
|
-
|
|
3184
|
-
const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
|
|
3185
|
-
return (match ? decodeURIComponent(match[3]) : null);
|
|
3186
|
-
},
|
|
3192
|
+
bytesNotified = loaded;
|
|
3187
3193
|
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3194
|
+
const data = {
|
|
3195
|
+
loaded,
|
|
3196
|
+
total,
|
|
3197
|
+
progress: total ? (loaded / total) : undefined,
|
|
3198
|
+
bytes: progressBytes,
|
|
3199
|
+
rate: rate ? rate : undefined,
|
|
3200
|
+
estimated: rate && total && inRange ? (total - loaded) / rate : undefined,
|
|
3201
|
+
event: e,
|
|
3202
|
+
lengthComputable: total != null
|
|
3203
|
+
};
|
|
3192
3204
|
|
|
3193
|
-
|
|
3205
|
+
data[isDownloadStream ? 'download' : 'upload'] = true;
|
|
3194
3206
|
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
read() {
|
|
3199
|
-
return null;
|
|
3200
|
-
},
|
|
3201
|
-
remove() {}
|
|
3202
|
-
};
|
|
3207
|
+
listener(data);
|
|
3208
|
+
}, freq);
|
|
3209
|
+
};
|
|
3203
3210
|
|
|
3204
3211
|
const isURLSameOrigin = platform.hasStandardBrowserEnv ?
|
|
3205
3212
|
|
|
@@ -3264,80 +3271,220 @@ const isURLSameOrigin = platform.hasStandardBrowserEnv ?
|
|
|
3264
3271
|
};
|
|
3265
3272
|
})();
|
|
3266
3273
|
|
|
3267
|
-
|
|
3268
|
-
let bytesNotified = 0;
|
|
3269
|
-
const _speedometer = speedometer(50, 250);
|
|
3274
|
+
const cookies = platform.hasStandardBrowserEnv ?
|
|
3270
3275
|
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
const rate = _speedometer(progressBytes);
|
|
3276
|
-
const inRange = loaded <= total;
|
|
3276
|
+
// Standard browser envs support document.cookie
|
|
3277
|
+
{
|
|
3278
|
+
write(name, value, expires, path, domain, secure) {
|
|
3279
|
+
const cookie = [name + '=' + encodeURIComponent(value)];
|
|
3277
3280
|
|
|
3278
|
-
|
|
3281
|
+
utils$1.isNumber(expires) && cookie.push('expires=' + new Date(expires).toGMTString());
|
|
3279
3282
|
|
|
3280
|
-
|
|
3281
|
-
loaded,
|
|
3282
|
-
total,
|
|
3283
|
-
progress: total ? (loaded / total) : undefined,
|
|
3284
|
-
bytes: progressBytes,
|
|
3285
|
-
rate: rate ? rate : undefined,
|
|
3286
|
-
estimated: rate && total && inRange ? (total - loaded) / rate : undefined,
|
|
3287
|
-
event: e
|
|
3288
|
-
};
|
|
3283
|
+
utils$1.isString(path) && cookie.push('path=' + path);
|
|
3289
3284
|
|
|
3290
|
-
|
|
3285
|
+
utils$1.isString(domain) && cookie.push('domain=' + domain);
|
|
3291
3286
|
|
|
3292
|
-
|
|
3287
|
+
secure === true && cookie.push('secure');
|
|
3288
|
+
|
|
3289
|
+
document.cookie = cookie.join('; ');
|
|
3290
|
+
},
|
|
3291
|
+
|
|
3292
|
+
read(name) {
|
|
3293
|
+
const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
|
|
3294
|
+
return (match ? decodeURIComponent(match[3]) : null);
|
|
3295
|
+
},
|
|
3296
|
+
|
|
3297
|
+
remove(name) {
|
|
3298
|
+
this.write(name, '', Date.now() - 86400000);
|
|
3299
|
+
}
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
:
|
|
3303
|
+
|
|
3304
|
+
// Non-standard browser env (web workers, react-native) lack needed support.
|
|
3305
|
+
{
|
|
3306
|
+
write() {},
|
|
3307
|
+
read() {
|
|
3308
|
+
return null;
|
|
3309
|
+
},
|
|
3310
|
+
remove() {}
|
|
3311
|
+
};
|
|
3312
|
+
|
|
3313
|
+
const headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? { ...thing } : thing;
|
|
3314
|
+
|
|
3315
|
+
/**
|
|
3316
|
+
* Config-specific merge-function which creates a new config-object
|
|
3317
|
+
* by merging two configuration objects together.
|
|
3318
|
+
*
|
|
3319
|
+
* @param {Object} config1
|
|
3320
|
+
* @param {Object} config2
|
|
3321
|
+
*
|
|
3322
|
+
* @returns {Object} New object resulting from merging config2 to config1
|
|
3323
|
+
*/
|
|
3324
|
+
function mergeConfig(config1, config2) {
|
|
3325
|
+
// eslint-disable-next-line no-param-reassign
|
|
3326
|
+
config2 = config2 || {};
|
|
3327
|
+
const config = {};
|
|
3328
|
+
|
|
3329
|
+
function getMergedValue(target, source, caseless) {
|
|
3330
|
+
if (utils$1.isPlainObject(target) && utils$1.isPlainObject(source)) {
|
|
3331
|
+
return utils$1.merge.call({caseless}, target, source);
|
|
3332
|
+
} else if (utils$1.isPlainObject(source)) {
|
|
3333
|
+
return utils$1.merge({}, source);
|
|
3334
|
+
} else if (utils$1.isArray(source)) {
|
|
3335
|
+
return source.slice();
|
|
3336
|
+
}
|
|
3337
|
+
return source;
|
|
3338
|
+
}
|
|
3339
|
+
|
|
3340
|
+
// eslint-disable-next-line consistent-return
|
|
3341
|
+
function mergeDeepProperties(a, b, caseless) {
|
|
3342
|
+
if (!utils$1.isUndefined(b)) {
|
|
3343
|
+
return getMergedValue(a, b, caseless);
|
|
3344
|
+
} else if (!utils$1.isUndefined(a)) {
|
|
3345
|
+
return getMergedValue(undefined, a, caseless);
|
|
3346
|
+
}
|
|
3347
|
+
}
|
|
3348
|
+
|
|
3349
|
+
// eslint-disable-next-line consistent-return
|
|
3350
|
+
function valueFromConfig2(a, b) {
|
|
3351
|
+
if (!utils$1.isUndefined(b)) {
|
|
3352
|
+
return getMergedValue(undefined, b);
|
|
3353
|
+
}
|
|
3354
|
+
}
|
|
3355
|
+
|
|
3356
|
+
// eslint-disable-next-line consistent-return
|
|
3357
|
+
function defaultToConfig2(a, b) {
|
|
3358
|
+
if (!utils$1.isUndefined(b)) {
|
|
3359
|
+
return getMergedValue(undefined, b);
|
|
3360
|
+
} else if (!utils$1.isUndefined(a)) {
|
|
3361
|
+
return getMergedValue(undefined, a);
|
|
3362
|
+
}
|
|
3363
|
+
}
|
|
3364
|
+
|
|
3365
|
+
// eslint-disable-next-line consistent-return
|
|
3366
|
+
function mergeDirectKeys(a, b, prop) {
|
|
3367
|
+
if (prop in config2) {
|
|
3368
|
+
return getMergedValue(a, b);
|
|
3369
|
+
} else if (prop in config1) {
|
|
3370
|
+
return getMergedValue(undefined, a);
|
|
3371
|
+
}
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3374
|
+
const mergeMap = {
|
|
3375
|
+
url: valueFromConfig2,
|
|
3376
|
+
method: valueFromConfig2,
|
|
3377
|
+
data: valueFromConfig2,
|
|
3378
|
+
baseURL: defaultToConfig2,
|
|
3379
|
+
transformRequest: defaultToConfig2,
|
|
3380
|
+
transformResponse: defaultToConfig2,
|
|
3381
|
+
paramsSerializer: defaultToConfig2,
|
|
3382
|
+
timeout: defaultToConfig2,
|
|
3383
|
+
timeoutMessage: defaultToConfig2,
|
|
3384
|
+
withCredentials: defaultToConfig2,
|
|
3385
|
+
withXSRFToken: defaultToConfig2,
|
|
3386
|
+
adapter: defaultToConfig2,
|
|
3387
|
+
responseType: defaultToConfig2,
|
|
3388
|
+
xsrfCookieName: defaultToConfig2,
|
|
3389
|
+
xsrfHeaderName: defaultToConfig2,
|
|
3390
|
+
onUploadProgress: defaultToConfig2,
|
|
3391
|
+
onDownloadProgress: defaultToConfig2,
|
|
3392
|
+
decompress: defaultToConfig2,
|
|
3393
|
+
maxContentLength: defaultToConfig2,
|
|
3394
|
+
maxBodyLength: defaultToConfig2,
|
|
3395
|
+
beforeRedirect: defaultToConfig2,
|
|
3396
|
+
transport: defaultToConfig2,
|
|
3397
|
+
httpAgent: defaultToConfig2,
|
|
3398
|
+
httpsAgent: defaultToConfig2,
|
|
3399
|
+
cancelToken: defaultToConfig2,
|
|
3400
|
+
socketPath: defaultToConfig2,
|
|
3401
|
+
responseEncoding: defaultToConfig2,
|
|
3402
|
+
validateStatus: mergeDirectKeys,
|
|
3403
|
+
headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
|
|
3293
3404
|
};
|
|
3405
|
+
|
|
3406
|
+
utils$1.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
|
3407
|
+
const merge = mergeMap[prop] || mergeDeepProperties;
|
|
3408
|
+
const configValue = merge(config1[prop], config2[prop], prop);
|
|
3409
|
+
(utils$1.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
|
|
3410
|
+
});
|
|
3411
|
+
|
|
3412
|
+
return config;
|
|
3294
3413
|
}
|
|
3295
3414
|
|
|
3415
|
+
const resolveConfig = (config) => {
|
|
3416
|
+
const newConfig = mergeConfig({}, config);
|
|
3417
|
+
|
|
3418
|
+
let {data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth} = newConfig;
|
|
3419
|
+
|
|
3420
|
+
newConfig.headers = headers = AxiosHeaders$1.from(headers);
|
|
3421
|
+
|
|
3422
|
+
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
|
|
3423
|
+
|
|
3424
|
+
// HTTP basic authentication
|
|
3425
|
+
if (auth) {
|
|
3426
|
+
headers.set('Authorization', 'Basic ' +
|
|
3427
|
+
btoa((auth.username || '') + ':' + (auth.password ? unescape(encodeURIComponent(auth.password)) : ''))
|
|
3428
|
+
);
|
|
3429
|
+
}
|
|
3430
|
+
|
|
3431
|
+
let contentType;
|
|
3432
|
+
|
|
3433
|
+
if (utils$1.isFormData(data)) {
|
|
3434
|
+
if (platform.hasStandardBrowserEnv || platform.hasStandardBrowserWebWorkerEnv) {
|
|
3435
|
+
headers.setContentType(undefined); // Let the browser set it
|
|
3436
|
+
} else if ((contentType = headers.getContentType()) !== false) {
|
|
3437
|
+
// fix semicolon duplication issue for ReactNative FormData implementation
|
|
3438
|
+
const [type, ...tokens] = contentType ? contentType.split(';').map(token => token.trim()).filter(Boolean) : [];
|
|
3439
|
+
headers.setContentType([type || 'multipart/form-data', ...tokens].join('; '));
|
|
3440
|
+
}
|
|
3441
|
+
}
|
|
3442
|
+
|
|
3443
|
+
// Add xsrf header
|
|
3444
|
+
// This is only done if running in a standard browser environment.
|
|
3445
|
+
// Specifically not if we're in a web worker, or react-native.
|
|
3446
|
+
|
|
3447
|
+
if (platform.hasStandardBrowserEnv) {
|
|
3448
|
+
withXSRFToken && utils$1.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(newConfig));
|
|
3449
|
+
|
|
3450
|
+
if (withXSRFToken || (withXSRFToken !== false && isURLSameOrigin(newConfig.url))) {
|
|
3451
|
+
// Add xsrf header
|
|
3452
|
+
const xsrfValue = xsrfHeaderName && xsrfCookieName && cookies.read(xsrfCookieName);
|
|
3453
|
+
|
|
3454
|
+
if (xsrfValue) {
|
|
3455
|
+
headers.set(xsrfHeaderName, xsrfValue);
|
|
3456
|
+
}
|
|
3457
|
+
}
|
|
3458
|
+
}
|
|
3459
|
+
|
|
3460
|
+
return newConfig;
|
|
3461
|
+
};
|
|
3462
|
+
|
|
3296
3463
|
const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
3297
3464
|
|
|
3298
3465
|
const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
3299
3466
|
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3467
|
+
const _config = resolveConfig(config);
|
|
3468
|
+
let requestData = _config.data;
|
|
3469
|
+
const requestHeaders = AxiosHeaders$1.from(_config.headers).normalize();
|
|
3470
|
+
let {responseType} = _config;
|
|
3303
3471
|
let onCanceled;
|
|
3304
3472
|
function done() {
|
|
3305
|
-
if (
|
|
3306
|
-
|
|
3473
|
+
if (_config.cancelToken) {
|
|
3474
|
+
_config.cancelToken.unsubscribe(onCanceled);
|
|
3307
3475
|
}
|
|
3308
3476
|
|
|
3309
|
-
if (
|
|
3310
|
-
|
|
3311
|
-
}
|
|
3312
|
-
}
|
|
3313
|
-
|
|
3314
|
-
let contentType;
|
|
3315
|
-
|
|
3316
|
-
if (utils$1.isFormData(requestData)) {
|
|
3317
|
-
if (platform.hasStandardBrowserEnv || platform.hasStandardBrowserWebWorkerEnv) {
|
|
3318
|
-
requestHeaders.setContentType(false); // Let the browser set it
|
|
3319
|
-
} else if ((contentType = requestHeaders.getContentType()) !== false) {
|
|
3320
|
-
// fix semicolon duplication issue for ReactNative FormData implementation
|
|
3321
|
-
const [type, ...tokens] = contentType ? contentType.split(';').map(token => token.trim()).filter(Boolean) : [];
|
|
3322
|
-
requestHeaders.setContentType([type || 'multipart/form-data', ...tokens].join('; '));
|
|
3477
|
+
if (_config.signal) {
|
|
3478
|
+
_config.signal.removeEventListener('abort', onCanceled);
|
|
3323
3479
|
}
|
|
3324
3480
|
}
|
|
3325
3481
|
|
|
3326
3482
|
let request = new XMLHttpRequest();
|
|
3327
3483
|
|
|
3328
|
-
|
|
3329
|
-
if (config.auth) {
|
|
3330
|
-
const username = config.auth.username || '';
|
|
3331
|
-
const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';
|
|
3332
|
-
requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password));
|
|
3333
|
-
}
|
|
3334
|
-
|
|
3335
|
-
const fullPath = buildFullPath(config.baseURL, config.url);
|
|
3336
|
-
|
|
3337
|
-
request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);
|
|
3484
|
+
request.open(_config.method.toUpperCase(), _config.url, true);
|
|
3338
3485
|
|
|
3339
3486
|
// Set the request timeout in MS
|
|
3340
|
-
request.timeout =
|
|
3487
|
+
request.timeout = _config.timeout;
|
|
3341
3488
|
|
|
3342
3489
|
function onloadend() {
|
|
3343
3490
|
if (!request) {
|
|
@@ -3399,7 +3546,7 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3399
3546
|
return;
|
|
3400
3547
|
}
|
|
3401
3548
|
|
|
3402
|
-
reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED,
|
|
3549
|
+
reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, _config, request));
|
|
3403
3550
|
|
|
3404
3551
|
// Clean up request
|
|
3405
3552
|
request = null;
|
|
@@ -3409,7 +3556,7 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3409
3556
|
request.onerror = function handleError() {
|
|
3410
3557
|
// Real errors are hidden from us by the browser
|
|
3411
3558
|
// onerror should only fire if it's a network error
|
|
3412
|
-
reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK,
|
|
3559
|
+
reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, _config, request));
|
|
3413
3560
|
|
|
3414
3561
|
// Clean up request
|
|
3415
3562
|
request = null;
|
|
@@ -3417,37 +3564,21 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3417
3564
|
|
|
3418
3565
|
// Handle timeout
|
|
3419
3566
|
request.ontimeout = function handleTimeout() {
|
|
3420
|
-
let timeoutErrorMessage =
|
|
3421
|
-
const transitional =
|
|
3422
|
-
if (
|
|
3423
|
-
timeoutErrorMessage =
|
|
3567
|
+
let timeoutErrorMessage = _config.timeout ? 'timeout of ' + _config.timeout + 'ms exceeded' : 'timeout exceeded';
|
|
3568
|
+
const transitional = _config.transitional || transitionalDefaults;
|
|
3569
|
+
if (_config.timeoutErrorMessage) {
|
|
3570
|
+
timeoutErrorMessage = _config.timeoutErrorMessage;
|
|
3424
3571
|
}
|
|
3425
3572
|
reject(new AxiosError(
|
|
3426
3573
|
timeoutErrorMessage,
|
|
3427
3574
|
transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,
|
|
3428
|
-
|
|
3575
|
+
_config,
|
|
3429
3576
|
request));
|
|
3430
3577
|
|
|
3431
3578
|
// Clean up request
|
|
3432
3579
|
request = null;
|
|
3433
3580
|
};
|
|
3434
3581
|
|
|
3435
|
-
// Add xsrf header
|
|
3436
|
-
// This is only done if running in a standard browser environment.
|
|
3437
|
-
// Specifically not if we're in a web worker, or react-native.
|
|
3438
|
-
if(platform.hasStandardBrowserEnv) {
|
|
3439
|
-
withXSRFToken && utils$1.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(config));
|
|
3440
|
-
|
|
3441
|
-
if (withXSRFToken || (withXSRFToken !== false && isURLSameOrigin(fullPath))) {
|
|
3442
|
-
// Add xsrf header
|
|
3443
|
-
const xsrfValue = config.xsrfHeaderName && config.xsrfCookieName && cookies.read(config.xsrfCookieName);
|
|
3444
|
-
|
|
3445
|
-
if (xsrfValue) {
|
|
3446
|
-
requestHeaders.set(config.xsrfHeaderName, xsrfValue);
|
|
3447
|
-
}
|
|
3448
|
-
}
|
|
3449
|
-
}
|
|
3450
|
-
|
|
3451
3582
|
// Remove Content-Type if data is undefined
|
|
3452
3583
|
requestData === undefined && requestHeaders.setContentType(null);
|
|
3453
3584
|
|
|
@@ -3459,26 +3590,26 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3459
3590
|
}
|
|
3460
3591
|
|
|
3461
3592
|
// Add withCredentials to request if needed
|
|
3462
|
-
if (!utils$1.isUndefined(
|
|
3463
|
-
request.withCredentials = !!
|
|
3593
|
+
if (!utils$1.isUndefined(_config.withCredentials)) {
|
|
3594
|
+
request.withCredentials = !!_config.withCredentials;
|
|
3464
3595
|
}
|
|
3465
3596
|
|
|
3466
3597
|
// Add responseType to request if needed
|
|
3467
3598
|
if (responseType && responseType !== 'json') {
|
|
3468
|
-
request.responseType =
|
|
3599
|
+
request.responseType = _config.responseType;
|
|
3469
3600
|
}
|
|
3470
3601
|
|
|
3471
3602
|
// Handle progress if needed
|
|
3472
|
-
if (typeof
|
|
3473
|
-
request.addEventListener('progress', progressEventReducer(
|
|
3603
|
+
if (typeof _config.onDownloadProgress === 'function') {
|
|
3604
|
+
request.addEventListener('progress', progressEventReducer(_config.onDownloadProgress, true));
|
|
3474
3605
|
}
|
|
3475
3606
|
|
|
3476
3607
|
// Not all browsers support upload events
|
|
3477
|
-
if (typeof
|
|
3478
|
-
request.upload.addEventListener('progress', progressEventReducer(
|
|
3608
|
+
if (typeof _config.onUploadProgress === 'function' && request.upload) {
|
|
3609
|
+
request.upload.addEventListener('progress', progressEventReducer(_config.onUploadProgress));
|
|
3479
3610
|
}
|
|
3480
3611
|
|
|
3481
|
-
if (
|
|
3612
|
+
if (_config.cancelToken || _config.signal) {
|
|
3482
3613
|
// Handle cancellation
|
|
3483
3614
|
// eslint-disable-next-line func-names
|
|
3484
3615
|
onCanceled = cancel => {
|
|
@@ -3490,13 +3621,13 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3490
3621
|
request = null;
|
|
3491
3622
|
};
|
|
3492
3623
|
|
|
3493
|
-
|
|
3494
|
-
if (
|
|
3495
|
-
|
|
3624
|
+
_config.cancelToken && _config.cancelToken.subscribe(onCanceled);
|
|
3625
|
+
if (_config.signal) {
|
|
3626
|
+
_config.signal.aborted ? onCanceled() : _config.signal.addEventListener('abort', onCanceled);
|
|
3496
3627
|
}
|
|
3497
3628
|
}
|
|
3498
3629
|
|
|
3499
|
-
const protocol = parseProtocol(
|
|
3630
|
+
const protocol = parseProtocol(_config.url);
|
|
3500
3631
|
|
|
3501
3632
|
if (protocol && platform.protocols.indexOf(protocol) === -1) {
|
|
3502
3633
|
reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));
|
|
@@ -3509,9 +3640,324 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3509
3640
|
});
|
|
3510
3641
|
};
|
|
3511
3642
|
|
|
3643
|
+
const composeSignals = (signals, timeout) => {
|
|
3644
|
+
let controller = new AbortController();
|
|
3645
|
+
|
|
3646
|
+
let aborted;
|
|
3647
|
+
|
|
3648
|
+
const onabort = function (cancel) {
|
|
3649
|
+
if (!aborted) {
|
|
3650
|
+
aborted = true;
|
|
3651
|
+
unsubscribe();
|
|
3652
|
+
const err = cancel instanceof Error ? cancel : this.reason;
|
|
3653
|
+
controller.abort(err instanceof AxiosError ? err : new CanceledError(err instanceof Error ? err.message : err));
|
|
3654
|
+
}
|
|
3655
|
+
};
|
|
3656
|
+
|
|
3657
|
+
let timer = timeout && setTimeout(() => {
|
|
3658
|
+
onabort(new AxiosError(`timeout ${timeout} of ms exceeded`, AxiosError.ETIMEDOUT));
|
|
3659
|
+
}, timeout);
|
|
3660
|
+
|
|
3661
|
+
const unsubscribe = () => {
|
|
3662
|
+
if (signals) {
|
|
3663
|
+
timer && clearTimeout(timer);
|
|
3664
|
+
timer = null;
|
|
3665
|
+
signals.forEach(signal => {
|
|
3666
|
+
signal &&
|
|
3667
|
+
(signal.removeEventListener ? signal.removeEventListener('abort', onabort) : signal.unsubscribe(onabort));
|
|
3668
|
+
});
|
|
3669
|
+
signals = null;
|
|
3670
|
+
}
|
|
3671
|
+
};
|
|
3672
|
+
|
|
3673
|
+
signals.forEach((signal) => signal && signal.addEventListener && signal.addEventListener('abort', onabort));
|
|
3674
|
+
|
|
3675
|
+
const {signal} = controller;
|
|
3676
|
+
|
|
3677
|
+
signal.unsubscribe = unsubscribe;
|
|
3678
|
+
|
|
3679
|
+
return [signal, () => {
|
|
3680
|
+
timer && clearTimeout(timer);
|
|
3681
|
+
timer = null;
|
|
3682
|
+
}];
|
|
3683
|
+
};
|
|
3684
|
+
|
|
3685
|
+
const composeSignals$1 = composeSignals;
|
|
3686
|
+
|
|
3687
|
+
const streamChunk = function* (chunk, chunkSize) {
|
|
3688
|
+
let len = chunk.byteLength;
|
|
3689
|
+
|
|
3690
|
+
if (!chunkSize || len < chunkSize) {
|
|
3691
|
+
yield chunk;
|
|
3692
|
+
return;
|
|
3693
|
+
}
|
|
3694
|
+
|
|
3695
|
+
let pos = 0;
|
|
3696
|
+
let end;
|
|
3697
|
+
|
|
3698
|
+
while (pos < len) {
|
|
3699
|
+
end = pos + chunkSize;
|
|
3700
|
+
yield chunk.slice(pos, end);
|
|
3701
|
+
pos = end;
|
|
3702
|
+
}
|
|
3703
|
+
};
|
|
3704
|
+
|
|
3705
|
+
const readBytes = async function* (iterable, chunkSize, encode) {
|
|
3706
|
+
for await (const chunk of iterable) {
|
|
3707
|
+
yield* streamChunk(ArrayBuffer.isView(chunk) ? chunk : (await encode(String(chunk))), chunkSize);
|
|
3708
|
+
}
|
|
3709
|
+
};
|
|
3710
|
+
|
|
3711
|
+
const trackStream = (stream, chunkSize, onProgress, onFinish, encode) => {
|
|
3712
|
+
const iterator = readBytes(stream, chunkSize, encode);
|
|
3713
|
+
|
|
3714
|
+
let bytes = 0;
|
|
3715
|
+
|
|
3716
|
+
return new ReadableStream({
|
|
3717
|
+
type: 'bytes',
|
|
3718
|
+
|
|
3719
|
+
async pull(controller) {
|
|
3720
|
+
const {done, value} = await iterator.next();
|
|
3721
|
+
|
|
3722
|
+
if (done) {
|
|
3723
|
+
controller.close();
|
|
3724
|
+
onFinish();
|
|
3725
|
+
return;
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
let len = value.byteLength;
|
|
3729
|
+
onProgress && onProgress(bytes += len);
|
|
3730
|
+
controller.enqueue(new Uint8Array(value));
|
|
3731
|
+
},
|
|
3732
|
+
cancel(reason) {
|
|
3733
|
+
onFinish(reason);
|
|
3734
|
+
return iterator.return();
|
|
3735
|
+
}
|
|
3736
|
+
}, {
|
|
3737
|
+
highWaterMark: 2
|
|
3738
|
+
})
|
|
3739
|
+
};
|
|
3740
|
+
|
|
3741
|
+
const fetchProgressDecorator = (total, fn) => {
|
|
3742
|
+
const lengthComputable = total != null;
|
|
3743
|
+
return (loaded) => setTimeout(() => fn({
|
|
3744
|
+
lengthComputable,
|
|
3745
|
+
total,
|
|
3746
|
+
loaded
|
|
3747
|
+
}));
|
|
3748
|
+
};
|
|
3749
|
+
|
|
3750
|
+
const isFetchSupported = typeof fetch === 'function' && typeof Request === 'function' && typeof Response === 'function';
|
|
3751
|
+
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream === 'function';
|
|
3752
|
+
|
|
3753
|
+
// used only inside the fetch adapter
|
|
3754
|
+
const encodeText = isFetchSupported && (typeof TextEncoder === 'function' ?
|
|
3755
|
+
((encoder) => (str) => encoder.encode(str))(new TextEncoder()) :
|
|
3756
|
+
async (str) => new Uint8Array(await new Response(str).arrayBuffer())
|
|
3757
|
+
);
|
|
3758
|
+
|
|
3759
|
+
const supportsRequestStream = isReadableStreamSupported && (() => {
|
|
3760
|
+
let duplexAccessed = false;
|
|
3761
|
+
|
|
3762
|
+
const hasContentType = new Request(platform.origin, {
|
|
3763
|
+
body: new ReadableStream(),
|
|
3764
|
+
method: 'POST',
|
|
3765
|
+
get duplex() {
|
|
3766
|
+
duplexAccessed = true;
|
|
3767
|
+
return 'half';
|
|
3768
|
+
},
|
|
3769
|
+
}).headers.has('Content-Type');
|
|
3770
|
+
|
|
3771
|
+
return duplexAccessed && !hasContentType;
|
|
3772
|
+
})();
|
|
3773
|
+
|
|
3774
|
+
const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
3775
|
+
|
|
3776
|
+
const supportsResponseStream = isReadableStreamSupported && !!(()=> {
|
|
3777
|
+
try {
|
|
3778
|
+
return utils$1.isReadableStream(new Response('').body);
|
|
3779
|
+
} catch(err) {
|
|
3780
|
+
// return undefined
|
|
3781
|
+
}
|
|
3782
|
+
})();
|
|
3783
|
+
|
|
3784
|
+
const resolvers = {
|
|
3785
|
+
stream: supportsResponseStream && ((res) => res.body)
|
|
3786
|
+
};
|
|
3787
|
+
|
|
3788
|
+
isFetchSupported && (((res) => {
|
|
3789
|
+
['text', 'arrayBuffer', 'blob', 'formData', 'stream'].forEach(type => {
|
|
3790
|
+
!resolvers[type] && (resolvers[type] = utils$1.isFunction(res[type]) ? (res) => res[type]() :
|
|
3791
|
+
(_, config) => {
|
|
3792
|
+
throw new AxiosError(`Response type '${type}' is not supported`, AxiosError.ERR_NOT_SUPPORT, config);
|
|
3793
|
+
});
|
|
3794
|
+
});
|
|
3795
|
+
})(new Response));
|
|
3796
|
+
|
|
3797
|
+
const getBodyLength = async (body) => {
|
|
3798
|
+
if (body == null) {
|
|
3799
|
+
return 0;
|
|
3800
|
+
}
|
|
3801
|
+
|
|
3802
|
+
if(utils$1.isBlob(body)) {
|
|
3803
|
+
return body.size;
|
|
3804
|
+
}
|
|
3805
|
+
|
|
3806
|
+
if(utils$1.isSpecCompliantForm(body)) {
|
|
3807
|
+
return (await new Request(body).arrayBuffer()).byteLength;
|
|
3808
|
+
}
|
|
3809
|
+
|
|
3810
|
+
if(utils$1.isArrayBufferView(body)) {
|
|
3811
|
+
return body.byteLength;
|
|
3812
|
+
}
|
|
3813
|
+
|
|
3814
|
+
if(utils$1.isURLSearchParams(body)) {
|
|
3815
|
+
body = body + '';
|
|
3816
|
+
}
|
|
3817
|
+
|
|
3818
|
+
if(utils$1.isString(body)) {
|
|
3819
|
+
return (await encodeText(body)).byteLength;
|
|
3820
|
+
}
|
|
3821
|
+
};
|
|
3822
|
+
|
|
3823
|
+
const resolveBodyLength = async (headers, body) => {
|
|
3824
|
+
const length = utils$1.toFiniteNumber(headers.getContentLength());
|
|
3825
|
+
|
|
3826
|
+
return length == null ? getBodyLength(body) : length;
|
|
3827
|
+
};
|
|
3828
|
+
|
|
3829
|
+
const fetchAdapter = isFetchSupported && (async (config) => {
|
|
3830
|
+
let {
|
|
3831
|
+
url,
|
|
3832
|
+
method,
|
|
3833
|
+
data,
|
|
3834
|
+
signal,
|
|
3835
|
+
cancelToken,
|
|
3836
|
+
timeout,
|
|
3837
|
+
onDownloadProgress,
|
|
3838
|
+
onUploadProgress,
|
|
3839
|
+
responseType,
|
|
3840
|
+
headers,
|
|
3841
|
+
withCredentials = 'same-origin',
|
|
3842
|
+
fetchOptions
|
|
3843
|
+
} = resolveConfig(config);
|
|
3844
|
+
|
|
3845
|
+
responseType = responseType ? (responseType + '').toLowerCase() : 'text';
|
|
3846
|
+
|
|
3847
|
+
let [composedSignal, stopTimeout] = (signal || cancelToken || timeout) ?
|
|
3848
|
+
composeSignals$1([signal, cancelToken], timeout) : [];
|
|
3849
|
+
|
|
3850
|
+
let finished, request;
|
|
3851
|
+
|
|
3852
|
+
const onFinish = () => {
|
|
3853
|
+
!finished && setTimeout(() => {
|
|
3854
|
+
composedSignal && composedSignal.unsubscribe();
|
|
3855
|
+
});
|
|
3856
|
+
|
|
3857
|
+
finished = true;
|
|
3858
|
+
};
|
|
3859
|
+
|
|
3860
|
+
let requestContentLength;
|
|
3861
|
+
|
|
3862
|
+
try {
|
|
3863
|
+
if (
|
|
3864
|
+
onUploadProgress && supportsRequestStream && method !== 'get' && method !== 'head' &&
|
|
3865
|
+
(requestContentLength = await resolveBodyLength(headers, data)) !== 0
|
|
3866
|
+
) {
|
|
3867
|
+
let _request = new Request(url, {
|
|
3868
|
+
method: 'POST',
|
|
3869
|
+
body: data,
|
|
3870
|
+
duplex: "half"
|
|
3871
|
+
});
|
|
3872
|
+
|
|
3873
|
+
let contentTypeHeader;
|
|
3874
|
+
|
|
3875
|
+
if (utils$1.isFormData(data) && (contentTypeHeader = _request.headers.get('content-type'))) {
|
|
3876
|
+
headers.setContentType(contentTypeHeader);
|
|
3877
|
+
}
|
|
3878
|
+
|
|
3879
|
+
if (_request.body) {
|
|
3880
|
+
data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, fetchProgressDecorator(
|
|
3881
|
+
requestContentLength,
|
|
3882
|
+
progressEventReducer(onUploadProgress)
|
|
3883
|
+
), null, encodeText);
|
|
3884
|
+
}
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
if (!utils$1.isString(withCredentials)) {
|
|
3888
|
+
withCredentials = withCredentials ? 'cors' : 'omit';
|
|
3889
|
+
}
|
|
3890
|
+
|
|
3891
|
+
request = new Request(url, {
|
|
3892
|
+
...fetchOptions,
|
|
3893
|
+
signal: composedSignal,
|
|
3894
|
+
method: method.toUpperCase(),
|
|
3895
|
+
headers: headers.normalize().toJSON(),
|
|
3896
|
+
body: data,
|
|
3897
|
+
duplex: "half",
|
|
3898
|
+
withCredentials
|
|
3899
|
+
});
|
|
3900
|
+
|
|
3901
|
+
let response = await fetch(request);
|
|
3902
|
+
|
|
3903
|
+
const isStreamResponse = supportsResponseStream && (responseType === 'stream' || responseType === 'response');
|
|
3904
|
+
|
|
3905
|
+
if (supportsResponseStream && (onDownloadProgress || isStreamResponse)) {
|
|
3906
|
+
const options = {};
|
|
3907
|
+
|
|
3908
|
+
['status', 'statusText', 'headers'].forEach(prop => {
|
|
3909
|
+
options[prop] = response[prop];
|
|
3910
|
+
});
|
|
3911
|
+
|
|
3912
|
+
const responseContentLength = utils$1.toFiniteNumber(response.headers.get('content-length'));
|
|
3913
|
+
|
|
3914
|
+
response = new Response(
|
|
3915
|
+
trackStream(response.body, DEFAULT_CHUNK_SIZE, onDownloadProgress && fetchProgressDecorator(
|
|
3916
|
+
responseContentLength,
|
|
3917
|
+
progressEventReducer(onDownloadProgress, true)
|
|
3918
|
+
), isStreamResponse && onFinish, encodeText),
|
|
3919
|
+
options
|
|
3920
|
+
);
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
responseType = responseType || 'text';
|
|
3924
|
+
|
|
3925
|
+
let responseData = await resolvers[utils$1.findKey(resolvers, responseType) || 'text'](response, config);
|
|
3926
|
+
|
|
3927
|
+
!isStreamResponse && onFinish();
|
|
3928
|
+
|
|
3929
|
+
stopTimeout && stopTimeout();
|
|
3930
|
+
|
|
3931
|
+
return await new Promise((resolve, reject) => {
|
|
3932
|
+
settle(resolve, reject, {
|
|
3933
|
+
data: responseData,
|
|
3934
|
+
headers: AxiosHeaders$1.from(response.headers),
|
|
3935
|
+
status: response.status,
|
|
3936
|
+
statusText: response.statusText,
|
|
3937
|
+
config,
|
|
3938
|
+
request
|
|
3939
|
+
});
|
|
3940
|
+
})
|
|
3941
|
+
} catch (err) {
|
|
3942
|
+
onFinish();
|
|
3943
|
+
|
|
3944
|
+
if (err && err.name === 'TypeError' && /fetch/i.test(err.message)) {
|
|
3945
|
+
throw Object.assign(
|
|
3946
|
+
new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request),
|
|
3947
|
+
{
|
|
3948
|
+
cause: err.cause || err
|
|
3949
|
+
}
|
|
3950
|
+
)
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3953
|
+
throw AxiosError.from(err, err && err.code, config, request);
|
|
3954
|
+
}
|
|
3955
|
+
});
|
|
3956
|
+
|
|
3512
3957
|
const knownAdapters = {
|
|
3513
3958
|
http: httpAdapter,
|
|
3514
|
-
xhr: xhrAdapter
|
|
3959
|
+
xhr: xhrAdapter,
|
|
3960
|
+
fetch: fetchAdapter
|
|
3515
3961
|
};
|
|
3516
3962
|
|
|
3517
3963
|
utils$1.forEach(knownAdapters, (fn, value) => {
|
|
@@ -3655,108 +4101,6 @@ function dispatchRequest(config) {
|
|
|
3655
4101
|
});
|
|
3656
4102
|
}
|
|
3657
4103
|
|
|
3658
|
-
const headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? thing.toJSON() : thing;
|
|
3659
|
-
|
|
3660
|
-
/**
|
|
3661
|
-
* Config-specific merge-function which creates a new config-object
|
|
3662
|
-
* by merging two configuration objects together.
|
|
3663
|
-
*
|
|
3664
|
-
* @param {Object} config1
|
|
3665
|
-
* @param {Object} config2
|
|
3666
|
-
*
|
|
3667
|
-
* @returns {Object} New object resulting from merging config2 to config1
|
|
3668
|
-
*/
|
|
3669
|
-
function mergeConfig(config1, config2) {
|
|
3670
|
-
// eslint-disable-next-line no-param-reassign
|
|
3671
|
-
config2 = config2 || {};
|
|
3672
|
-
const config = {};
|
|
3673
|
-
|
|
3674
|
-
function getMergedValue(target, source, caseless) {
|
|
3675
|
-
if (utils$1.isPlainObject(target) && utils$1.isPlainObject(source)) {
|
|
3676
|
-
return utils$1.merge.call({caseless}, target, source);
|
|
3677
|
-
} else if (utils$1.isPlainObject(source)) {
|
|
3678
|
-
return utils$1.merge({}, source);
|
|
3679
|
-
} else if (utils$1.isArray(source)) {
|
|
3680
|
-
return source.slice();
|
|
3681
|
-
}
|
|
3682
|
-
return source;
|
|
3683
|
-
}
|
|
3684
|
-
|
|
3685
|
-
// eslint-disable-next-line consistent-return
|
|
3686
|
-
function mergeDeepProperties(a, b, caseless) {
|
|
3687
|
-
if (!utils$1.isUndefined(b)) {
|
|
3688
|
-
return getMergedValue(a, b, caseless);
|
|
3689
|
-
} else if (!utils$1.isUndefined(a)) {
|
|
3690
|
-
return getMergedValue(undefined, a, caseless);
|
|
3691
|
-
}
|
|
3692
|
-
}
|
|
3693
|
-
|
|
3694
|
-
// eslint-disable-next-line consistent-return
|
|
3695
|
-
function valueFromConfig2(a, b) {
|
|
3696
|
-
if (!utils$1.isUndefined(b)) {
|
|
3697
|
-
return getMergedValue(undefined, b);
|
|
3698
|
-
}
|
|
3699
|
-
}
|
|
3700
|
-
|
|
3701
|
-
// eslint-disable-next-line consistent-return
|
|
3702
|
-
function defaultToConfig2(a, b) {
|
|
3703
|
-
if (!utils$1.isUndefined(b)) {
|
|
3704
|
-
return getMergedValue(undefined, b);
|
|
3705
|
-
} else if (!utils$1.isUndefined(a)) {
|
|
3706
|
-
return getMergedValue(undefined, a);
|
|
3707
|
-
}
|
|
3708
|
-
}
|
|
3709
|
-
|
|
3710
|
-
// eslint-disable-next-line consistent-return
|
|
3711
|
-
function mergeDirectKeys(a, b, prop) {
|
|
3712
|
-
if (prop in config2) {
|
|
3713
|
-
return getMergedValue(a, b);
|
|
3714
|
-
} else if (prop in config1) {
|
|
3715
|
-
return getMergedValue(undefined, a);
|
|
3716
|
-
}
|
|
3717
|
-
}
|
|
3718
|
-
|
|
3719
|
-
const mergeMap = {
|
|
3720
|
-
url: valueFromConfig2,
|
|
3721
|
-
method: valueFromConfig2,
|
|
3722
|
-
data: valueFromConfig2,
|
|
3723
|
-
baseURL: defaultToConfig2,
|
|
3724
|
-
transformRequest: defaultToConfig2,
|
|
3725
|
-
transformResponse: defaultToConfig2,
|
|
3726
|
-
paramsSerializer: defaultToConfig2,
|
|
3727
|
-
timeout: defaultToConfig2,
|
|
3728
|
-
timeoutMessage: defaultToConfig2,
|
|
3729
|
-
withCredentials: defaultToConfig2,
|
|
3730
|
-
withXSRFToken: defaultToConfig2,
|
|
3731
|
-
adapter: defaultToConfig2,
|
|
3732
|
-
responseType: defaultToConfig2,
|
|
3733
|
-
xsrfCookieName: defaultToConfig2,
|
|
3734
|
-
xsrfHeaderName: defaultToConfig2,
|
|
3735
|
-
onUploadProgress: defaultToConfig2,
|
|
3736
|
-
onDownloadProgress: defaultToConfig2,
|
|
3737
|
-
decompress: defaultToConfig2,
|
|
3738
|
-
maxContentLength: defaultToConfig2,
|
|
3739
|
-
maxBodyLength: defaultToConfig2,
|
|
3740
|
-
beforeRedirect: defaultToConfig2,
|
|
3741
|
-
transport: defaultToConfig2,
|
|
3742
|
-
httpAgent: defaultToConfig2,
|
|
3743
|
-
httpsAgent: defaultToConfig2,
|
|
3744
|
-
cancelToken: defaultToConfig2,
|
|
3745
|
-
socketPath: defaultToConfig2,
|
|
3746
|
-
responseEncoding: defaultToConfig2,
|
|
3747
|
-
validateStatus: mergeDirectKeys,
|
|
3748
|
-
headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
|
|
3749
|
-
};
|
|
3750
|
-
|
|
3751
|
-
utils$1.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
|
3752
|
-
const merge = mergeMap[prop] || mergeDeepProperties;
|
|
3753
|
-
const configValue = merge(config1[prop], config2[prop], prop);
|
|
3754
|
-
(utils$1.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
|
|
3755
|
-
});
|
|
3756
|
-
|
|
3757
|
-
return config;
|
|
3758
|
-
}
|
|
3759
|
-
|
|
3760
4104
|
const validators$1 = {};
|
|
3761
4105
|
|
|
3762
4106
|
// eslint-disable-next-line func-names
|
|
@@ -3874,17 +4218,23 @@ class Axios {
|
|
|
3874
4218
|
try {
|
|
3875
4219
|
return await this._request(configOrUrl, config);
|
|
3876
4220
|
} catch (err) {
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
4221
|
+
if (err instanceof Error) {
|
|
4222
|
+
let dummy;
|
|
4223
|
+
|
|
4224
|
+
Error.captureStackTrace ? Error.captureStackTrace(dummy = {}) : (dummy = new Error());
|
|
4225
|
+
|
|
4226
|
+
// slice off the Error: ... line
|
|
4227
|
+
const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, '') : '';
|
|
4228
|
+
try {
|
|
4229
|
+
if (!err.stack) {
|
|
4230
|
+
err.stack = stack;
|
|
4231
|
+
// match without the 2 top stack lines
|
|
4232
|
+
} else if (stack && !String(err.stack).endsWith(stack.replace(/^.+\n.+\n/, ''))) {
|
|
4233
|
+
err.stack += '\n' + stack;
|
|
4234
|
+
}
|
|
4235
|
+
} catch (e) {
|
|
4236
|
+
// ignore the case where "stack" is an un-writable property
|
|
4237
|
+
}
|
|
3888
4238
|
}
|
|
3889
4239
|
|
|
3890
4240
|
throw err;
|