node-red-contrib-tak-registration 0.15.0 → 0.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node_modules/@types/node/README.md +2 -2
- package/node_modules/@types/node/assert.d.ts +8 -6
- package/node_modules/@types/node/async_hooks.d.ts +26 -6
- package/node_modules/@types/node/buffer.d.ts +7 -3
- package/node_modules/@types/node/child_process.d.ts +28 -124
- package/node_modules/@types/node/cluster.d.ts +15 -15
- package/node_modules/@types/node/console.d.ts +17 -17
- package/node_modules/@types/node/crypto.d.ts +95 -38
- package/node_modules/@types/node/dgram.d.ts +1 -1
- package/node_modules/@types/node/diagnostics_channel.d.ts +18 -13
- package/node_modules/@types/node/dns/promises.d.ts +36 -9
- package/node_modules/@types/node/dns.d.ts +89 -36
- package/node_modules/@types/node/domain.d.ts +1 -1
- package/node_modules/@types/node/events.d.ts +1 -2
- package/node_modules/@types/node/fs/promises.d.ts +67 -40
- package/node_modules/@types/node/fs.d.ts +88 -52
- package/node_modules/@types/node/globals.d.ts +148 -351
- package/node_modules/@types/node/globals.typedarray.d.ts +1 -0
- package/node_modules/@types/node/http.d.ts +73 -7
- package/node_modules/@types/node/http2.d.ts +88 -15
- package/node_modules/@types/node/https.d.ts +1 -1
- package/node_modules/@types/node/index.d.ts +13 -6
- package/node_modules/@types/node/inspector.d.ts +222 -13
- package/node_modules/@types/node/module.d.ts +153 -31
- package/node_modules/@types/node/net.d.ts +3 -6
- package/node_modules/@types/node/os.d.ts +8 -7
- package/node_modules/@types/node/package.json +14 -84
- package/node_modules/@types/node/path.d.ts +1 -1
- package/node_modules/@types/node/perf_hooks.d.ts +24 -10
- package/node_modules/@types/node/process.d.ts +21 -11
- package/node_modules/@types/node/punycode.d.ts +1 -1
- package/node_modules/@types/node/querystring.d.ts +1 -1
- package/node_modules/@types/node/readline/promises.d.ts +0 -1
- package/node_modules/@types/node/readline.d.ts +13 -13
- package/node_modules/@types/node/repl.d.ts +25 -17
- package/node_modules/@types/node/sea.d.ts +1 -1
- package/node_modules/@types/node/sqlite.d.ts +209 -3
- package/node_modules/@types/node/stream/web.d.ts +8 -0
- package/node_modules/@types/node/stream.d.ts +30 -24
- package/node_modules/@types/node/string_decoder.d.ts +1 -1
- package/node_modules/@types/node/test.d.ts +2029 -1975
- package/node_modules/@types/node/timers/promises.d.ts +1 -1
- package/node_modules/@types/node/timers.d.ts +1 -3
- package/node_modules/@types/node/tls.d.ts +2 -48
- package/node_modules/@types/node/trace_events.d.ts +6 -6
- package/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
- package/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +1 -0
- package/node_modules/@types/node/ts5.6/index.d.ts +15 -6
- package/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
- package/node_modules/@types/node/ts5.7/index.d.ts +101 -0
- package/node_modules/@types/node/tty.d.ts +1 -1
- package/node_modules/@types/node/url.d.ts +73 -20
- package/node_modules/@types/node/util.d.ts +23 -298
- package/node_modules/@types/node/v8.d.ts +62 -32
- package/node_modules/@types/node/vm.d.ts +132 -24
- package/node_modules/@types/node/wasi.d.ts +22 -1
- package/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/node_modules/@types/node/web-globals/events.d.ts +94 -0
- package/node_modules/@types/node/web-globals/fetch.d.ts +50 -0
- package/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
- package/node_modules/@types/node/web-globals/storage.d.ts +24 -0
- package/node_modules/@types/node/worker_threads.d.ts +85 -26
- package/node_modules/@types/node/zlib.d.ts +13 -9
- package/node_modules/axios/CHANGELOG.md +99 -0
- package/node_modules/axios/README.md +105 -28
- package/node_modules/axios/dist/axios.js +395 -292
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +2 -2
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +333 -219
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +333 -219
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +2 -2
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +424 -219
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/index.d.cts +26 -8
- package/node_modules/axios/index.d.ts +14 -5
- package/node_modules/axios/lib/adapters/adapters.js +6 -4
- package/node_modules/axios/lib/adapters/fetch.js +221 -162
- package/node_modules/axios/lib/adapters/http.js +18 -0
- package/node_modules/axios/lib/adapters/xhr.js +11 -8
- package/node_modules/axios/lib/core/Axios.js +2 -4
- package/node_modules/axios/lib/core/AxiosError.js +10 -3
- package/node_modules/axios/lib/core/dispatchRequest.js +1 -1
- package/node_modules/axios/lib/core/mergeConfig.js +1 -1
- package/node_modules/axios/lib/defaults/index.js +1 -1
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/helpers/buildURL.js +1 -3
- package/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +73 -0
- package/node_modules/axios/lib/helpers/resolveConfig.js +13 -9
- package/node_modules/axios/lib/helpers/throttle.js +1 -1
- package/node_modules/axios/lib/helpers/toFormData.js +4 -0
- package/node_modules/axios/lib/helpers/toURLEncodedForm.js +4 -3
- package/node_modules/axios/lib/utils.js +40 -2
- package/node_modules/axios/package.json +30 -15
- package/node_modules/bignumber.js/CHANGELOG.md +6 -1
- package/node_modules/bignumber.js/README.md +5 -4
- package/node_modules/bignumber.js/bignumber.js +2 -2
- package/node_modules/bignumber.js/bignumber.mjs +2 -2
- package/node_modules/bignumber.js/package.json +1 -1
- package/node_modules/fast-xml-parser/CHANGELOG.md +7 -0
- package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
- package/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
- package/node_modules/fast-xml-parser/package.json +1 -2
- package/node_modules/fast-xml-parser/src/cli/cli.js +4 -0
- package/node_modules/fast-xml-parser/src/fxp.d.ts +5 -5
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +3 -3
- package/node_modules/follow-redirects/package.json +1 -1
- package/node_modules/form-data/CHANGELOG.md +601 -0
- package/node_modules/form-data/{Readme.md → README.md} +34 -37
- package/node_modules/form-data/lib/browser.js +3 -1
- package/node_modules/form-data/lib/form_data.js +126 -135
- package/node_modules/form-data/lib/populate.js +5 -5
- package/node_modules/form-data/package.json +24 -16
- package/node_modules/protobufjs/dist/light/protobuf.js +8 -7
- package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.js +2 -2
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
- package/node_modules/protobufjs/dist/protobuf.js +8 -7
- package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/ext/descriptor/index.js +179 -69
- package/node_modules/protobufjs/google/protobuf/descriptor.json +660 -17
- package/node_modules/protobufjs/google/protobuf/descriptor.proto +255 -6
- package/node_modules/protobufjs/package.json +1 -1
- package/node_modules/protobufjs/src/namespace.js +3 -1
- package/node_modules/protobufjs/src/root.js +3 -4
- package/node_modules/undici-types/agent.d.ts +11 -7
- package/node_modules/undici-types/api.d.ts +24 -24
- package/node_modules/undici-types/balanced-pool.d.ts +11 -11
- package/node_modules/undici-types/cache-interceptor.d.ts +172 -0
- package/node_modules/undici-types/client-stats.d.ts +15 -0
- package/node_modules/undici-types/client.d.ts +18 -16
- package/node_modules/undici-types/cookies.d.ts +2 -0
- package/node_modules/undici-types/diagnostics-channel.d.ts +19 -10
- package/node_modules/undici-types/dispatcher.d.ts +119 -93
- package/node_modules/undici-types/env-http-proxy-agent.d.ts +4 -3
- package/node_modules/undici-types/errors.d.ts +69 -47
- package/node_modules/undici-types/eventsource.d.ts +3 -3
- package/node_modules/undici-types/fetch.d.ts +18 -16
- package/node_modules/undici-types/formdata.d.ts +7 -7
- package/node_modules/undici-types/global-dispatcher.d.ts +4 -4
- package/node_modules/undici-types/global-origin.d.ts +5 -5
- package/node_modules/undici-types/h2c-client.d.ts +75 -0
- package/node_modules/undici-types/handlers.d.ts +8 -8
- package/node_modules/undici-types/header.d.ts +157 -1
- package/node_modules/undici-types/index.d.ts +51 -47
- package/node_modules/undici-types/interceptors.d.ts +25 -8
- package/node_modules/undici-types/mock-agent.d.ts +36 -18
- package/node_modules/undici-types/mock-call-history.d.ts +111 -0
- package/node_modules/undici-types/mock-client.d.ts +6 -4
- package/node_modules/undici-types/mock-errors.d.ts +3 -3
- package/node_modules/undici-types/mock-interceptor.d.ts +21 -19
- package/node_modules/undici-types/mock-pool.d.ts +6 -4
- package/node_modules/undici-types/package.json +1 -1
- package/node_modules/undici-types/patch.d.ts +0 -4
- package/node_modules/undici-types/pool-stats.d.ts +8 -8
- package/node_modules/undici-types/pool.d.ts +14 -12
- package/node_modules/undici-types/proxy-agent.d.ts +5 -4
- package/node_modules/undici-types/readable.d.ts +18 -15
- package/node_modules/undici-types/retry-agent.d.ts +1 -1
- package/node_modules/undici-types/retry-handler.d.ts +19 -10
- package/node_modules/undici-types/util.d.ts +3 -3
- package/node_modules/undici-types/utility.d.ts +7 -0
- package/node_modules/undici-types/webidl.d.ts +50 -8
- package/node_modules/undici-types/websocket.d.ts +36 -2
- package/node_modules/uuid/README.md +8 -19
- package/node_modules/uuid/dist/{esm-browser/uuid-bin.js → uuid-bin.js} +1 -1
- package/node_modules/uuid/dist/{esm-browser/v4.js → v4.js} +7 -4
- package/node_modules/uuid/{dist/esm → dist-node}/md5.js +1 -1
- package/node_modules/uuid/dist-node/native.js +2 -0
- package/node_modules/uuid/{dist/esm → dist-node}/rng.js +1 -1
- package/node_modules/uuid/{dist/esm → dist-node}/sha1.js +1 -1
- package/node_modules/uuid/{dist/esm → dist-node}/uuid-bin.js +1 -1
- package/node_modules/uuid/{dist/esm → dist-node}/v4.js +7 -4
- package/node_modules/uuid/package.json +28 -41
- package/package.json +6 -6
- package/tak-registration.bak +557 -0
- package/tak-registration.js +14 -12
- package/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
- package/node_modules/@types/node/compatibility/index.d.ts +0 -9
- package/node_modules/@types/node/compatibility/indexable.d.ts +0 -23
- package/node_modules/@types/node/dom-events.d.ts +0 -124
- package/node_modules/undici-types/file.d.ts +0 -39
- package/node_modules/undici-types/filereader.d.ts +0 -54
- package/node_modules/uuid/dist/cjs/index.d.ts +0 -15
- package/node_modules/uuid/dist/cjs/index.js +0 -31
- package/node_modules/uuid/dist/cjs/max.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/max.js +0 -3
- package/node_modules/uuid/dist/cjs/md5.d.ts +0 -4
- package/node_modules/uuid/dist/cjs/md5.js +0 -13
- package/node_modules/uuid/dist/cjs/native.d.ts +0 -6
- package/node_modules/uuid/dist/cjs/native.js +0 -4
- package/node_modules/uuid/dist/cjs/nil.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/nil.js +0 -3
- package/node_modules/uuid/dist/cjs/package.json +0 -1
- package/node_modules/uuid/dist/cjs/parse.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/parse.js +0 -11
- package/node_modules/uuid/dist/cjs/regex.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/regex.js +0 -3
- package/node_modules/uuid/dist/cjs/rng.d.ts +0 -1
- package/node_modules/uuid/dist/cjs/rng.js +0 -13
- package/node_modules/uuid/dist/cjs/sha1.d.ts +0 -4
- package/node_modules/uuid/dist/cjs/sha1.js +0 -13
- package/node_modules/uuid/dist/cjs/stringify.d.ts +0 -3
- package/node_modules/uuid/dist/cjs/stringify.js +0 -39
- package/node_modules/uuid/dist/cjs/types.d.ts +0 -21
- package/node_modules/uuid/dist/cjs/types.js +0 -2
- package/node_modules/uuid/dist/cjs/uuid-bin.d.ts +0 -1
- package/node_modules/uuid/dist/cjs/uuid-bin.js +0 -72
- package/node_modules/uuid/dist/cjs/v1.d.ts +0 -11
- package/node_modules/uuid/dist/cjs/v1.js +0 -87
- package/node_modules/uuid/dist/cjs/v1ToV6.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/v1ToV6.js +0 -13
- package/node_modules/uuid/dist/cjs/v3.d.ts +0 -9
- package/node_modules/uuid/dist/cjs/v3.js +0 -14
- package/node_modules/uuid/dist/cjs/v35.d.ts +0 -7
- package/node_modules/uuid/dist/cjs/v35.js +0 -41
- package/node_modules/uuid/dist/cjs/v4.d.ts +0 -4
- package/node_modules/uuid/dist/cjs/v4.js +0 -29
- package/node_modules/uuid/dist/cjs/v5.d.ts +0 -9
- package/node_modules/uuid/dist/cjs/v5.js +0 -14
- package/node_modules/uuid/dist/cjs/v6.d.ts +0 -4
- package/node_modules/uuid/dist/cjs/v6.js +0 -19
- package/node_modules/uuid/dist/cjs/v6ToV1.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/v6ToV1.js +0 -13
- package/node_modules/uuid/dist/cjs/v7.d.ts +0 -9
- package/node_modules/uuid/dist/cjs/v7.js +0 -69
- package/node_modules/uuid/dist/cjs/validate.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/validate.js +0 -7
- package/node_modules/uuid/dist/cjs/version.d.ts +0 -2
- package/node_modules/uuid/dist/cjs/version.js +0 -10
- package/node_modules/uuid/dist/cjs-browser/index.js +0 -31
- package/node_modules/uuid/dist/cjs-browser/max.js +0 -3
- package/node_modules/uuid/dist/cjs-browser/md5.js +0 -137
- package/node_modules/uuid/dist/cjs-browser/native.js +0 -4
- package/node_modules/uuid/dist/cjs-browser/nil.js +0 -3
- package/node_modules/uuid/dist/cjs-browser/package.json +0 -1
- package/node_modules/uuid/dist/cjs-browser/parse.js +0 -11
- package/node_modules/uuid/dist/cjs-browser/regex.js +0 -3
- package/node_modules/uuid/dist/cjs-browser/rng.js +0 -14
- package/node_modules/uuid/dist/cjs-browser/sha1.js +0 -72
- package/node_modules/uuid/dist/cjs-browser/stringify.js +0 -39
- package/node_modules/uuid/dist/cjs-browser/types.js +0 -2
- package/node_modules/uuid/dist/cjs-browser/uuid-bin.js +0 -72
- package/node_modules/uuid/dist/cjs-browser/v1.js +0 -87
- package/node_modules/uuid/dist/cjs-browser/v1ToV6.js +0 -13
- package/node_modules/uuid/dist/cjs-browser/v3.js +0 -14
- package/node_modules/uuid/dist/cjs-browser/v35.js +0 -41
- package/node_modules/uuid/dist/cjs-browser/v4.js +0 -29
- package/node_modules/uuid/dist/cjs-browser/v5.js +0 -14
- package/node_modules/uuid/dist/cjs-browser/v6.js +0 -19
- package/node_modules/uuid/dist/cjs-browser/v6ToV1.js +0 -13
- package/node_modules/uuid/dist/cjs-browser/v7.js +0 -69
- package/node_modules/uuid/dist/cjs-browser/validate.js +0 -7
- package/node_modules/uuid/dist/cjs-browser/version.js +0 -10
- package/node_modules/uuid/dist/esm/index.d.ts +0 -15
- package/node_modules/uuid/dist/esm/max.d.ts +0 -2
- package/node_modules/uuid/dist/esm/md5.d.ts +0 -4
- package/node_modules/uuid/dist/esm/native.d.ts +0 -6
- package/node_modules/uuid/dist/esm/native.js +0 -2
- package/node_modules/uuid/dist/esm/nil.d.ts +0 -2
- package/node_modules/uuid/dist/esm/parse.d.ts +0 -2
- package/node_modules/uuid/dist/esm/regex.d.ts +0 -2
- package/node_modules/uuid/dist/esm/rng.d.ts +0 -1
- package/node_modules/uuid/dist/esm/sha1.d.ts +0 -4
- package/node_modules/uuid/dist/esm/stringify.d.ts +0 -3
- package/node_modules/uuid/dist/esm/types.d.ts +0 -21
- package/node_modules/uuid/dist/esm/uuid-bin.d.ts +0 -1
- package/node_modules/uuid/dist/esm/v1.d.ts +0 -11
- package/node_modules/uuid/dist/esm/v1ToV6.d.ts +0 -2
- package/node_modules/uuid/dist/esm/v3.d.ts +0 -9
- package/node_modules/uuid/dist/esm/v35.d.ts +0 -7
- package/node_modules/uuid/dist/esm/v4.d.ts +0 -4
- package/node_modules/uuid/dist/esm/v5.d.ts +0 -9
- package/node_modules/uuid/dist/esm/v6.d.ts +0 -4
- package/node_modules/uuid/dist/esm/v6ToV1.d.ts +0 -2
- package/node_modules/uuid/dist/esm/v7.d.ts +0 -9
- package/node_modules/uuid/dist/esm/validate.d.ts +0 -2
- package/node_modules/uuid/dist/esm/version.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/index.d.ts +0 -15
- package/node_modules/uuid/dist/esm-browser/max.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/md5.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/native.d.ts +0 -4
- package/node_modules/uuid/dist/esm-browser/nil.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/parse.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/regex.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/rng.d.ts +0 -1
- package/node_modules/uuid/dist/esm-browser/sha1.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/stringify.d.ts +0 -3
- package/node_modules/uuid/dist/esm-browser/types.d.ts +0 -21
- package/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +0 -1
- package/node_modules/uuid/dist/esm-browser/v1.d.ts +0 -11
- package/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/v3.d.ts +0 -9
- package/node_modules/uuid/dist/esm-browser/v35.d.ts +0 -7
- package/node_modules/uuid/dist/esm-browser/v4.d.ts +0 -4
- package/node_modules/uuid/dist/esm-browser/v5.d.ts +0 -9
- package/node_modules/uuid/dist/esm-browser/v6.d.ts +0 -4
- package/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/v7.d.ts +0 -9
- package/node_modules/uuid/dist/esm-browser/validate.d.ts +0 -2
- package/node_modules/uuid/dist/esm-browser/version.d.ts +0 -2
- /package/node_modules/uuid/dist/{cjs-browser/index.d.ts → index.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/index.js → index.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/max.d.ts → max.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/max.js → max.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/md5.d.ts → md5.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm-browser/md5.js → md5.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/native.d.ts → native.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm-browser/native.js → native.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/nil.d.ts → nil.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/nil.js → nil.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/parse.d.ts → parse.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/parse.js → parse.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/regex.d.ts → regex.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/regex.js → regex.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/rng.d.ts → rng.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm-browser/rng.js → rng.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/sha1.d.ts → sha1.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm-browser/sha1.js → sha1.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/stringify.d.ts → stringify.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/stringify.js → stringify.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/types.d.ts → types.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/types.js → types.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/uuid-bin.d.ts → uuid-bin.d.ts} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v1.d.ts → v1.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v1.js → v1.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v1ToV6.d.ts → v1ToV6.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v1ToV6.js → v1ToV6.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v3.d.ts → v3.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v3.js → v3.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v35.d.ts → v35.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v35.js → v35.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v4.d.ts → v4.d.ts} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v5.d.ts → v5.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v5.js → v5.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v6.d.ts → v6.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v6.js → v6.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v6ToV1.d.ts → v6ToV1.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v6ToV1.js → v6ToV1.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/v7.d.ts → v7.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/v7.js → v7.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/validate.d.ts → validate.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/validate.js → validate.js} +0 -0
- /package/node_modules/uuid/dist/{cjs-browser/version.d.ts → version.d.ts} +0 -0
- /package/node_modules/uuid/dist/{esm/version.js → version.js} +0 -0
- /package/node_modules/uuid/{dist/esm → dist-node}/bin/uuid +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/index.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/max.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/nil.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/parse.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/regex.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/stringify.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/types.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v1.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v1ToV6.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v3.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v35.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v5.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v6.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v6ToV1.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/v7.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/validate.js +0 -0
- /package/node_modules/uuid/{dist/esm-browser → dist-node}/version.js +0 -0
|
@@ -3,17 +3,51 @@
|
|
|
3
3
|
"google": {
|
|
4
4
|
"nested": {
|
|
5
5
|
"protobuf": {
|
|
6
|
+
"options": {
|
|
7
|
+
"go_package": "google.golang.org/protobuf/types/descriptorpb",
|
|
8
|
+
"java_package": "com.google.protobuf",
|
|
9
|
+
"java_outer_classname": "DescriptorProtos",
|
|
10
|
+
"csharp_namespace": "Google.Protobuf.Reflection",
|
|
11
|
+
"objc_class_prefix": "GPB",
|
|
12
|
+
"cc_enable_arenas": true,
|
|
13
|
+
"optimize_for": "SPEED"
|
|
14
|
+
},
|
|
6
15
|
"nested": {
|
|
7
16
|
"FileDescriptorSet": {
|
|
17
|
+
"edition": "proto2",
|
|
8
18
|
"fields": {
|
|
9
19
|
"file": {
|
|
10
20
|
"rule": "repeated",
|
|
11
21
|
"type": "FileDescriptorProto",
|
|
12
22
|
"id": 1
|
|
13
23
|
}
|
|
24
|
+
},
|
|
25
|
+
"extensions": [
|
|
26
|
+
[
|
|
27
|
+
536000000,
|
|
28
|
+
536000000
|
|
29
|
+
]
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"Edition": {
|
|
33
|
+
"edition": "proto2",
|
|
34
|
+
"values": {
|
|
35
|
+
"EDITION_UNKNOWN": 0,
|
|
36
|
+
"EDITION_LEGACY": 900,
|
|
37
|
+
"EDITION_PROTO2": 998,
|
|
38
|
+
"EDITION_PROTO3": 999,
|
|
39
|
+
"EDITION_2023": 1000,
|
|
40
|
+
"EDITION_2024": 1001,
|
|
41
|
+
"EDITION_1_TEST_ONLY": 1,
|
|
42
|
+
"EDITION_2_TEST_ONLY": 2,
|
|
43
|
+
"EDITION_99997_TEST_ONLY": 99997,
|
|
44
|
+
"EDITION_99998_TEST_ONLY": 99998,
|
|
45
|
+
"EDITION_99999_TEST_ONLY": 99999,
|
|
46
|
+
"EDITION_MAX": 2147483647
|
|
14
47
|
}
|
|
15
48
|
},
|
|
16
49
|
"FileDescriptorProto": {
|
|
50
|
+
"edition": "proto2",
|
|
17
51
|
"fields": {
|
|
18
52
|
"name": {
|
|
19
53
|
"type": "string",
|
|
@@ -31,18 +65,17 @@
|
|
|
31
65
|
"publicDependency": {
|
|
32
66
|
"rule": "repeated",
|
|
33
67
|
"type": "int32",
|
|
34
|
-
"id": 10
|
|
35
|
-
"options": {
|
|
36
|
-
"packed": false
|
|
37
|
-
}
|
|
68
|
+
"id": 10
|
|
38
69
|
},
|
|
39
70
|
"weakDependency": {
|
|
40
71
|
"rule": "repeated",
|
|
41
72
|
"type": "int32",
|
|
42
|
-
"id": 11
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
73
|
+
"id": 11
|
|
74
|
+
},
|
|
75
|
+
"optionDependency": {
|
|
76
|
+
"rule": "repeated",
|
|
77
|
+
"type": "string",
|
|
78
|
+
"id": 15
|
|
46
79
|
},
|
|
47
80
|
"messageType": {
|
|
48
81
|
"rule": "repeated",
|
|
@@ -75,10 +108,15 @@
|
|
|
75
108
|
"syntax": {
|
|
76
109
|
"type": "string",
|
|
77
110
|
"id": 12
|
|
111
|
+
},
|
|
112
|
+
"edition": {
|
|
113
|
+
"type": "Edition",
|
|
114
|
+
"id": 14
|
|
78
115
|
}
|
|
79
116
|
}
|
|
80
117
|
},
|
|
81
118
|
"DescriptorProto": {
|
|
119
|
+
"edition": "proto2",
|
|
82
120
|
"fields": {
|
|
83
121
|
"name": {
|
|
84
122
|
"type": "string",
|
|
@@ -127,6 +165,10 @@
|
|
|
127
165
|
"rule": "repeated",
|
|
128
166
|
"type": "string",
|
|
129
167
|
"id": 10
|
|
168
|
+
},
|
|
169
|
+
"visibility": {
|
|
170
|
+
"type": "SymbolVisibility",
|
|
171
|
+
"id": 11
|
|
130
172
|
}
|
|
131
173
|
},
|
|
132
174
|
"nested": {
|
|
@@ -139,6 +181,10 @@
|
|
|
139
181
|
"end": {
|
|
140
182
|
"type": "int32",
|
|
141
183
|
"id": 2
|
|
184
|
+
},
|
|
185
|
+
"options": {
|
|
186
|
+
"type": "ExtensionRangeOptions",
|
|
187
|
+
"id": 3
|
|
142
188
|
}
|
|
143
189
|
}
|
|
144
190
|
},
|
|
@@ -156,7 +202,82 @@
|
|
|
156
202
|
}
|
|
157
203
|
}
|
|
158
204
|
},
|
|
205
|
+
"ExtensionRangeOptions": {
|
|
206
|
+
"edition": "proto2",
|
|
207
|
+
"fields": {
|
|
208
|
+
"uninterpretedOption": {
|
|
209
|
+
"rule": "repeated",
|
|
210
|
+
"type": "UninterpretedOption",
|
|
211
|
+
"id": 999
|
|
212
|
+
},
|
|
213
|
+
"declaration": {
|
|
214
|
+
"rule": "repeated",
|
|
215
|
+
"type": "Declaration",
|
|
216
|
+
"id": 2,
|
|
217
|
+
"options": {
|
|
218
|
+
"retention": "RETENTION_SOURCE"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"features": {
|
|
222
|
+
"type": "FeatureSet",
|
|
223
|
+
"id": 50
|
|
224
|
+
},
|
|
225
|
+
"verification": {
|
|
226
|
+
"type": "VerificationState",
|
|
227
|
+
"id": 3,
|
|
228
|
+
"options": {
|
|
229
|
+
"default": "UNVERIFIED",
|
|
230
|
+
"retention": "RETENTION_SOURCE"
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"extensions": [
|
|
235
|
+
[
|
|
236
|
+
1000,
|
|
237
|
+
536870911
|
|
238
|
+
]
|
|
239
|
+
],
|
|
240
|
+
"nested": {
|
|
241
|
+
"Declaration": {
|
|
242
|
+
"fields": {
|
|
243
|
+
"number": {
|
|
244
|
+
"type": "int32",
|
|
245
|
+
"id": 1
|
|
246
|
+
},
|
|
247
|
+
"fullName": {
|
|
248
|
+
"type": "string",
|
|
249
|
+
"id": 2
|
|
250
|
+
},
|
|
251
|
+
"type": {
|
|
252
|
+
"type": "string",
|
|
253
|
+
"id": 3
|
|
254
|
+
},
|
|
255
|
+
"reserved": {
|
|
256
|
+
"type": "bool",
|
|
257
|
+
"id": 5
|
|
258
|
+
},
|
|
259
|
+
"repeated": {
|
|
260
|
+
"type": "bool",
|
|
261
|
+
"id": 6
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"reserved": [
|
|
265
|
+
[
|
|
266
|
+
4,
|
|
267
|
+
4
|
|
268
|
+
]
|
|
269
|
+
]
|
|
270
|
+
},
|
|
271
|
+
"VerificationState": {
|
|
272
|
+
"values": {
|
|
273
|
+
"DECLARATION": 0,
|
|
274
|
+
"UNVERIFIED": 1
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
},
|
|
159
279
|
"FieldDescriptorProto": {
|
|
280
|
+
"edition": "proto2",
|
|
160
281
|
"fields": {
|
|
161
282
|
"name": {
|
|
162
283
|
"type": "string",
|
|
@@ -197,6 +318,10 @@
|
|
|
197
318
|
"options": {
|
|
198
319
|
"type": "FieldOptions",
|
|
199
320
|
"id": 8
|
|
321
|
+
},
|
|
322
|
+
"proto3Optional": {
|
|
323
|
+
"type": "bool",
|
|
324
|
+
"id": 17
|
|
200
325
|
}
|
|
201
326
|
},
|
|
202
327
|
"nested": {
|
|
@@ -225,13 +350,14 @@
|
|
|
225
350
|
"Label": {
|
|
226
351
|
"values": {
|
|
227
352
|
"LABEL_OPTIONAL": 1,
|
|
228
|
-
"
|
|
229
|
-
"
|
|
353
|
+
"LABEL_REPEATED": 3,
|
|
354
|
+
"LABEL_REQUIRED": 2
|
|
230
355
|
}
|
|
231
356
|
}
|
|
232
357
|
}
|
|
233
358
|
},
|
|
234
359
|
"OneofDescriptorProto": {
|
|
360
|
+
"edition": "proto2",
|
|
235
361
|
"fields": {
|
|
236
362
|
"name": {
|
|
237
363
|
"type": "string",
|
|
@@ -244,6 +370,7 @@
|
|
|
244
370
|
}
|
|
245
371
|
},
|
|
246
372
|
"EnumDescriptorProto": {
|
|
373
|
+
"edition": "proto2",
|
|
247
374
|
"fields": {
|
|
248
375
|
"name": {
|
|
249
376
|
"type": "string",
|
|
@@ -257,10 +384,39 @@
|
|
|
257
384
|
"options": {
|
|
258
385
|
"type": "EnumOptions",
|
|
259
386
|
"id": 3
|
|
387
|
+
},
|
|
388
|
+
"reservedRange": {
|
|
389
|
+
"rule": "repeated",
|
|
390
|
+
"type": "EnumReservedRange",
|
|
391
|
+
"id": 4
|
|
392
|
+
},
|
|
393
|
+
"reservedName": {
|
|
394
|
+
"rule": "repeated",
|
|
395
|
+
"type": "string",
|
|
396
|
+
"id": 5
|
|
397
|
+
},
|
|
398
|
+
"visibility": {
|
|
399
|
+
"type": "SymbolVisibility",
|
|
400
|
+
"id": 6
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"nested": {
|
|
404
|
+
"EnumReservedRange": {
|
|
405
|
+
"fields": {
|
|
406
|
+
"start": {
|
|
407
|
+
"type": "int32",
|
|
408
|
+
"id": 1
|
|
409
|
+
},
|
|
410
|
+
"end": {
|
|
411
|
+
"type": "int32",
|
|
412
|
+
"id": 2
|
|
413
|
+
}
|
|
414
|
+
}
|
|
260
415
|
}
|
|
261
416
|
}
|
|
262
417
|
},
|
|
263
418
|
"EnumValueDescriptorProto": {
|
|
419
|
+
"edition": "proto2",
|
|
264
420
|
"fields": {
|
|
265
421
|
"name": {
|
|
266
422
|
"type": "string",
|
|
@@ -277,6 +433,7 @@
|
|
|
277
433
|
}
|
|
278
434
|
},
|
|
279
435
|
"ServiceDescriptorProto": {
|
|
436
|
+
"edition": "proto2",
|
|
280
437
|
"fields": {
|
|
281
438
|
"name": {
|
|
282
439
|
"type": "string",
|
|
@@ -294,6 +451,7 @@
|
|
|
294
451
|
}
|
|
295
452
|
},
|
|
296
453
|
"MethodDescriptorProto": {
|
|
454
|
+
"edition": "proto2",
|
|
297
455
|
"fields": {
|
|
298
456
|
"name": {
|
|
299
457
|
"type": "string",
|
|
@@ -322,6 +480,7 @@
|
|
|
322
480
|
}
|
|
323
481
|
},
|
|
324
482
|
"FileOptions": {
|
|
483
|
+
"edition": "proto2",
|
|
325
484
|
"fields": {
|
|
326
485
|
"javaPackage": {
|
|
327
486
|
"type": "string",
|
|
@@ -375,7 +534,10 @@
|
|
|
375
534
|
},
|
|
376
535
|
"ccEnableArenas": {
|
|
377
536
|
"type": "bool",
|
|
378
|
-
"id": 31
|
|
537
|
+
"id": 31,
|
|
538
|
+
"options": {
|
|
539
|
+
"default": true
|
|
540
|
+
}
|
|
379
541
|
},
|
|
380
542
|
"objcClassPrefix": {
|
|
381
543
|
"type": "string",
|
|
@@ -385,6 +547,30 @@
|
|
|
385
547
|
"type": "string",
|
|
386
548
|
"id": 37
|
|
387
549
|
},
|
|
550
|
+
"swiftPrefix": {
|
|
551
|
+
"type": "string",
|
|
552
|
+
"id": 39
|
|
553
|
+
},
|
|
554
|
+
"phpClassPrefix": {
|
|
555
|
+
"type": "string",
|
|
556
|
+
"id": 40
|
|
557
|
+
},
|
|
558
|
+
"phpNamespace": {
|
|
559
|
+
"type": "string",
|
|
560
|
+
"id": 41
|
|
561
|
+
},
|
|
562
|
+
"phpMetadataNamespace": {
|
|
563
|
+
"type": "string",
|
|
564
|
+
"id": 44
|
|
565
|
+
},
|
|
566
|
+
"rubyPackage": {
|
|
567
|
+
"type": "string",
|
|
568
|
+
"id": 45
|
|
569
|
+
},
|
|
570
|
+
"features": {
|
|
571
|
+
"type": "FeatureSet",
|
|
572
|
+
"id": 50
|
|
573
|
+
},
|
|
388
574
|
"uninterpretedOption": {
|
|
389
575
|
"rule": "repeated",
|
|
390
576
|
"type": "UninterpretedOption",
|
|
@@ -398,10 +584,15 @@
|
|
|
398
584
|
]
|
|
399
585
|
],
|
|
400
586
|
"reserved": [
|
|
587
|
+
[
|
|
588
|
+
42,
|
|
589
|
+
42
|
|
590
|
+
],
|
|
401
591
|
[
|
|
402
592
|
38,
|
|
403
593
|
38
|
|
404
|
-
]
|
|
594
|
+
],
|
|
595
|
+
"php_generic_services"
|
|
405
596
|
],
|
|
406
597
|
"nested": {
|
|
407
598
|
"OptimizeMode": {
|
|
@@ -414,6 +605,7 @@
|
|
|
414
605
|
}
|
|
415
606
|
},
|
|
416
607
|
"MessageOptions": {
|
|
608
|
+
"edition": "proto2",
|
|
417
609
|
"fields": {
|
|
418
610
|
"messageSetWireFormat": {
|
|
419
611
|
"type": "bool",
|
|
@@ -431,6 +623,17 @@
|
|
|
431
623
|
"type": "bool",
|
|
432
624
|
"id": 7
|
|
433
625
|
},
|
|
626
|
+
"deprecatedLegacyJsonFieldConflicts": {
|
|
627
|
+
"type": "bool",
|
|
628
|
+
"id": 11,
|
|
629
|
+
"options": {
|
|
630
|
+
"deprecated": true
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
"features": {
|
|
634
|
+
"type": "FeatureSet",
|
|
635
|
+
"id": 12
|
|
636
|
+
},
|
|
434
637
|
"uninterpretedOption": {
|
|
435
638
|
"rule": "repeated",
|
|
436
639
|
"type": "UninterpretedOption",
|
|
@@ -444,13 +647,30 @@
|
|
|
444
647
|
]
|
|
445
648
|
],
|
|
446
649
|
"reserved": [
|
|
650
|
+
[
|
|
651
|
+
4,
|
|
652
|
+
4
|
|
653
|
+
],
|
|
654
|
+
[
|
|
655
|
+
5,
|
|
656
|
+
5
|
|
657
|
+
],
|
|
658
|
+
[
|
|
659
|
+
6,
|
|
660
|
+
6
|
|
661
|
+
],
|
|
447
662
|
[
|
|
448
663
|
8,
|
|
449
664
|
8
|
|
665
|
+
],
|
|
666
|
+
[
|
|
667
|
+
9,
|
|
668
|
+
9
|
|
450
669
|
]
|
|
451
670
|
]
|
|
452
671
|
},
|
|
453
672
|
"FieldOptions": {
|
|
673
|
+
"edition": "proto2",
|
|
454
674
|
"fields": {
|
|
455
675
|
"ctype": {
|
|
456
676
|
"type": "CType",
|
|
@@ -474,13 +694,46 @@
|
|
|
474
694
|
"type": "bool",
|
|
475
695
|
"id": 5
|
|
476
696
|
},
|
|
697
|
+
"unverifiedLazy": {
|
|
698
|
+
"type": "bool",
|
|
699
|
+
"id": 15
|
|
700
|
+
},
|
|
477
701
|
"deprecated": {
|
|
478
702
|
"type": "bool",
|
|
479
703
|
"id": 3
|
|
480
704
|
},
|
|
481
705
|
"weak": {
|
|
482
706
|
"type": "bool",
|
|
483
|
-
"id": 10
|
|
707
|
+
"id": 10,
|
|
708
|
+
"options": {
|
|
709
|
+
"deprecated": true
|
|
710
|
+
}
|
|
711
|
+
},
|
|
712
|
+
"debugRedact": {
|
|
713
|
+
"type": "bool",
|
|
714
|
+
"id": 16
|
|
715
|
+
},
|
|
716
|
+
"retention": {
|
|
717
|
+
"type": "OptionRetention",
|
|
718
|
+
"id": 17
|
|
719
|
+
},
|
|
720
|
+
"targets": {
|
|
721
|
+
"rule": "repeated",
|
|
722
|
+
"type": "OptionTargetType",
|
|
723
|
+
"id": 19
|
|
724
|
+
},
|
|
725
|
+
"editionDefaults": {
|
|
726
|
+
"rule": "repeated",
|
|
727
|
+
"type": "EditionDefault",
|
|
728
|
+
"id": 20
|
|
729
|
+
},
|
|
730
|
+
"features": {
|
|
731
|
+
"type": "FeatureSet",
|
|
732
|
+
"id": 21
|
|
733
|
+
},
|
|
734
|
+
"featureSupport": {
|
|
735
|
+
"type": "FeatureSupport",
|
|
736
|
+
"id": 22
|
|
484
737
|
},
|
|
485
738
|
"uninterpretedOption": {
|
|
486
739
|
"rule": "repeated",
|
|
@@ -498,6 +751,10 @@
|
|
|
498
751
|
[
|
|
499
752
|
4,
|
|
500
753
|
4
|
|
754
|
+
],
|
|
755
|
+
[
|
|
756
|
+
18,
|
|
757
|
+
18
|
|
501
758
|
]
|
|
502
759
|
],
|
|
503
760
|
"nested": {
|
|
@@ -514,11 +771,69 @@
|
|
|
514
771
|
"JS_STRING": 1,
|
|
515
772
|
"JS_NUMBER": 2
|
|
516
773
|
}
|
|
774
|
+
},
|
|
775
|
+
"OptionRetention": {
|
|
776
|
+
"values": {
|
|
777
|
+
"RETENTION_UNKNOWN": 0,
|
|
778
|
+
"RETENTION_RUNTIME": 1,
|
|
779
|
+
"RETENTION_SOURCE": 2
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
"OptionTargetType": {
|
|
783
|
+
"values": {
|
|
784
|
+
"TARGET_TYPE_UNKNOWN": 0,
|
|
785
|
+
"TARGET_TYPE_FILE": 1,
|
|
786
|
+
"TARGET_TYPE_EXTENSION_RANGE": 2,
|
|
787
|
+
"TARGET_TYPE_MESSAGE": 3,
|
|
788
|
+
"TARGET_TYPE_FIELD": 4,
|
|
789
|
+
"TARGET_TYPE_ONEOF": 5,
|
|
790
|
+
"TARGET_TYPE_ENUM": 6,
|
|
791
|
+
"TARGET_TYPE_ENUM_ENTRY": 7,
|
|
792
|
+
"TARGET_TYPE_SERVICE": 8,
|
|
793
|
+
"TARGET_TYPE_METHOD": 9
|
|
794
|
+
}
|
|
795
|
+
},
|
|
796
|
+
"EditionDefault": {
|
|
797
|
+
"fields": {
|
|
798
|
+
"edition": {
|
|
799
|
+
"type": "Edition",
|
|
800
|
+
"id": 3
|
|
801
|
+
},
|
|
802
|
+
"value": {
|
|
803
|
+
"type": "string",
|
|
804
|
+
"id": 2
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
},
|
|
808
|
+
"FeatureSupport": {
|
|
809
|
+
"fields": {
|
|
810
|
+
"editionIntroduced": {
|
|
811
|
+
"type": "Edition",
|
|
812
|
+
"id": 1
|
|
813
|
+
},
|
|
814
|
+
"editionDeprecated": {
|
|
815
|
+
"type": "Edition",
|
|
816
|
+
"id": 2
|
|
817
|
+
},
|
|
818
|
+
"deprecationWarning": {
|
|
819
|
+
"type": "string",
|
|
820
|
+
"id": 3
|
|
821
|
+
},
|
|
822
|
+
"editionRemoved": {
|
|
823
|
+
"type": "Edition",
|
|
824
|
+
"id": 4
|
|
825
|
+
}
|
|
826
|
+
}
|
|
517
827
|
}
|
|
518
828
|
}
|
|
519
829
|
},
|
|
520
830
|
"OneofOptions": {
|
|
831
|
+
"edition": "proto2",
|
|
521
832
|
"fields": {
|
|
833
|
+
"features": {
|
|
834
|
+
"type": "FeatureSet",
|
|
835
|
+
"id": 1
|
|
836
|
+
},
|
|
522
837
|
"uninterpretedOption": {
|
|
523
838
|
"rule": "repeated",
|
|
524
839
|
"type": "UninterpretedOption",
|
|
@@ -533,6 +848,7 @@
|
|
|
533
848
|
]
|
|
534
849
|
},
|
|
535
850
|
"EnumOptions": {
|
|
851
|
+
"edition": "proto2",
|
|
536
852
|
"fields": {
|
|
537
853
|
"allowAlias": {
|
|
538
854
|
"type": "bool",
|
|
@@ -542,6 +858,17 @@
|
|
|
542
858
|
"type": "bool",
|
|
543
859
|
"id": 3
|
|
544
860
|
},
|
|
861
|
+
"deprecatedLegacyJsonFieldConflicts": {
|
|
862
|
+
"type": "bool",
|
|
863
|
+
"id": 6,
|
|
864
|
+
"options": {
|
|
865
|
+
"deprecated": true
|
|
866
|
+
}
|
|
867
|
+
},
|
|
868
|
+
"features": {
|
|
869
|
+
"type": "FeatureSet",
|
|
870
|
+
"id": 7
|
|
871
|
+
},
|
|
545
872
|
"uninterpretedOption": {
|
|
546
873
|
"rule": "repeated",
|
|
547
874
|
"type": "UninterpretedOption",
|
|
@@ -553,14 +880,33 @@
|
|
|
553
880
|
1000,
|
|
554
881
|
536870911
|
|
555
882
|
]
|
|
883
|
+
],
|
|
884
|
+
"reserved": [
|
|
885
|
+
[
|
|
886
|
+
5,
|
|
887
|
+
5
|
|
888
|
+
]
|
|
556
889
|
]
|
|
557
890
|
},
|
|
558
891
|
"EnumValueOptions": {
|
|
892
|
+
"edition": "proto2",
|
|
559
893
|
"fields": {
|
|
560
894
|
"deprecated": {
|
|
561
895
|
"type": "bool",
|
|
562
896
|
"id": 1
|
|
563
897
|
},
|
|
898
|
+
"features": {
|
|
899
|
+
"type": "FeatureSet",
|
|
900
|
+
"id": 2
|
|
901
|
+
},
|
|
902
|
+
"debugRedact": {
|
|
903
|
+
"type": "bool",
|
|
904
|
+
"id": 3
|
|
905
|
+
},
|
|
906
|
+
"featureSupport": {
|
|
907
|
+
"type": "FieldOptions.FeatureSupport",
|
|
908
|
+
"id": 4
|
|
909
|
+
},
|
|
564
910
|
"uninterpretedOption": {
|
|
565
911
|
"rule": "repeated",
|
|
566
912
|
"type": "UninterpretedOption",
|
|
@@ -575,7 +921,12 @@
|
|
|
575
921
|
]
|
|
576
922
|
},
|
|
577
923
|
"ServiceOptions": {
|
|
924
|
+
"edition": "proto2",
|
|
578
925
|
"fields": {
|
|
926
|
+
"features": {
|
|
927
|
+
"type": "FeatureSet",
|
|
928
|
+
"id": 34
|
|
929
|
+
},
|
|
579
930
|
"deprecated": {
|
|
580
931
|
"type": "bool",
|
|
581
932
|
"id": 33
|
|
@@ -594,11 +945,23 @@
|
|
|
594
945
|
]
|
|
595
946
|
},
|
|
596
947
|
"MethodOptions": {
|
|
948
|
+
"edition": "proto2",
|
|
597
949
|
"fields": {
|
|
598
950
|
"deprecated": {
|
|
599
951
|
"type": "bool",
|
|
600
952
|
"id": 33
|
|
601
953
|
},
|
|
954
|
+
"idempotencyLevel": {
|
|
955
|
+
"type": "IdempotencyLevel",
|
|
956
|
+
"id": 34,
|
|
957
|
+
"options": {
|
|
958
|
+
"default": "IDEMPOTENCY_UNKNOWN"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"features": {
|
|
962
|
+
"type": "FeatureSet",
|
|
963
|
+
"id": 35
|
|
964
|
+
},
|
|
602
965
|
"uninterpretedOption": {
|
|
603
966
|
"rule": "repeated",
|
|
604
967
|
"type": "UninterpretedOption",
|
|
@@ -610,9 +973,19 @@
|
|
|
610
973
|
1000,
|
|
611
974
|
536870911
|
|
612
975
|
]
|
|
613
|
-
]
|
|
976
|
+
],
|
|
977
|
+
"nested": {
|
|
978
|
+
"IdempotencyLevel": {
|
|
979
|
+
"values": {
|
|
980
|
+
"IDEMPOTENCY_UNKNOWN": 0,
|
|
981
|
+
"NO_SIDE_EFFECTS": 1,
|
|
982
|
+
"IDEMPOTENT": 2
|
|
983
|
+
}
|
|
984
|
+
}
|
|
985
|
+
}
|
|
614
986
|
},
|
|
615
987
|
"UninterpretedOption": {
|
|
988
|
+
"edition": "proto2",
|
|
616
989
|
"fields": {
|
|
617
990
|
"name": {
|
|
618
991
|
"rule": "repeated",
|
|
@@ -661,7 +1034,240 @@
|
|
|
661
1034
|
}
|
|
662
1035
|
}
|
|
663
1036
|
},
|
|
1037
|
+
"FeatureSet": {
|
|
1038
|
+
"edition": "proto2",
|
|
1039
|
+
"fields": {
|
|
1040
|
+
"fieldPresence": {
|
|
1041
|
+
"type": "FieldPresence",
|
|
1042
|
+
"id": 1,
|
|
1043
|
+
"options": {
|
|
1044
|
+
"retention": "RETENTION_RUNTIME",
|
|
1045
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1046
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1047
|
+
"edition_defaults.edition": "EDITION_2023",
|
|
1048
|
+
"edition_defaults.value": "EXPLICIT"
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
"enumType": {
|
|
1052
|
+
"type": "EnumType",
|
|
1053
|
+
"id": 2,
|
|
1054
|
+
"options": {
|
|
1055
|
+
"retention": "RETENTION_RUNTIME",
|
|
1056
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1057
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1058
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
1059
|
+
"edition_defaults.value": "OPEN"
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
"repeatedFieldEncoding": {
|
|
1063
|
+
"type": "RepeatedFieldEncoding",
|
|
1064
|
+
"id": 3,
|
|
1065
|
+
"options": {
|
|
1066
|
+
"retention": "RETENTION_RUNTIME",
|
|
1067
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1068
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1069
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
1070
|
+
"edition_defaults.value": "PACKED"
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
"utf8Validation": {
|
|
1074
|
+
"type": "Utf8Validation",
|
|
1075
|
+
"id": 4,
|
|
1076
|
+
"options": {
|
|
1077
|
+
"retention": "RETENTION_RUNTIME",
|
|
1078
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1079
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1080
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
1081
|
+
"edition_defaults.value": "VERIFY"
|
|
1082
|
+
}
|
|
1083
|
+
},
|
|
1084
|
+
"messageEncoding": {
|
|
1085
|
+
"type": "MessageEncoding",
|
|
1086
|
+
"id": 5,
|
|
1087
|
+
"options": {
|
|
1088
|
+
"retention": "RETENTION_RUNTIME",
|
|
1089
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1090
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1091
|
+
"edition_defaults.edition": "EDITION_LEGACY",
|
|
1092
|
+
"edition_defaults.value": "LENGTH_PREFIXED"
|
|
1093
|
+
}
|
|
1094
|
+
},
|
|
1095
|
+
"jsonFormat": {
|
|
1096
|
+
"type": "JsonFormat",
|
|
1097
|
+
"id": 6,
|
|
1098
|
+
"options": {
|
|
1099
|
+
"retention": "RETENTION_RUNTIME",
|
|
1100
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1101
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1102
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
1103
|
+
"edition_defaults.value": "ALLOW"
|
|
1104
|
+
}
|
|
1105
|
+
},
|
|
1106
|
+
"enforceNamingStyle": {
|
|
1107
|
+
"type": "EnforceNamingStyle",
|
|
1108
|
+
"id": 7,
|
|
1109
|
+
"options": {
|
|
1110
|
+
"retention": "RETENTION_SOURCE",
|
|
1111
|
+
"targets": "TARGET_TYPE_METHOD",
|
|
1112
|
+
"feature_support.edition_introduced": "EDITION_2024",
|
|
1113
|
+
"edition_defaults.edition": "EDITION_2024",
|
|
1114
|
+
"edition_defaults.value": "STYLE2024"
|
|
1115
|
+
}
|
|
1116
|
+
},
|
|
1117
|
+
"defaultSymbolVisibility": {
|
|
1118
|
+
"type": "VisibilityFeature.DefaultSymbolVisibility",
|
|
1119
|
+
"id": 8,
|
|
1120
|
+
"options": {
|
|
1121
|
+
"retention": "RETENTION_SOURCE",
|
|
1122
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1123
|
+
"feature_support.edition_introduced": "EDITION_2024",
|
|
1124
|
+
"edition_defaults.edition": "EDITION_2024",
|
|
1125
|
+
"edition_defaults.value": "EXPORT_TOP_LEVEL"
|
|
1126
|
+
}
|
|
1127
|
+
}
|
|
1128
|
+
},
|
|
1129
|
+
"extensions": [
|
|
1130
|
+
[
|
|
1131
|
+
1000,
|
|
1132
|
+
9994
|
|
1133
|
+
],
|
|
1134
|
+
[
|
|
1135
|
+
9995,
|
|
1136
|
+
9999
|
|
1137
|
+
],
|
|
1138
|
+
[
|
|
1139
|
+
10000,
|
|
1140
|
+
10000
|
|
1141
|
+
]
|
|
1142
|
+
],
|
|
1143
|
+
"reserved": [
|
|
1144
|
+
[
|
|
1145
|
+
999,
|
|
1146
|
+
999
|
|
1147
|
+
]
|
|
1148
|
+
],
|
|
1149
|
+
"nested": {
|
|
1150
|
+
"FieldPresence": {
|
|
1151
|
+
"values": {
|
|
1152
|
+
"FIELD_PRESENCE_UNKNOWN": 0,
|
|
1153
|
+
"EXPLICIT": 1,
|
|
1154
|
+
"IMPLICIT": 2,
|
|
1155
|
+
"LEGACY_REQUIRED": 3
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
"EnumType": {
|
|
1159
|
+
"values": {
|
|
1160
|
+
"ENUM_TYPE_UNKNOWN": 0,
|
|
1161
|
+
"OPEN": 1,
|
|
1162
|
+
"CLOSED": 2
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
"RepeatedFieldEncoding": {
|
|
1166
|
+
"values": {
|
|
1167
|
+
"REPEATED_FIELD_ENCODING_UNKNOWN": 0,
|
|
1168
|
+
"PACKED": 1,
|
|
1169
|
+
"EXPANDED": 2
|
|
1170
|
+
}
|
|
1171
|
+
},
|
|
1172
|
+
"Utf8Validation": {
|
|
1173
|
+
"values": {
|
|
1174
|
+
"UTF8_VALIDATION_UNKNOWN": 0,
|
|
1175
|
+
"VERIFY": 2,
|
|
1176
|
+
"NONE": 3
|
|
1177
|
+
}
|
|
1178
|
+
},
|
|
1179
|
+
"MessageEncoding": {
|
|
1180
|
+
"values": {
|
|
1181
|
+
"MESSAGE_ENCODING_UNKNOWN": 0,
|
|
1182
|
+
"LENGTH_PREFIXED": 1,
|
|
1183
|
+
"DELIMITED": 2
|
|
1184
|
+
}
|
|
1185
|
+
},
|
|
1186
|
+
"JsonFormat": {
|
|
1187
|
+
"values": {
|
|
1188
|
+
"JSON_FORMAT_UNKNOWN": 0,
|
|
1189
|
+
"ALLOW": 1,
|
|
1190
|
+
"LEGACY_BEST_EFFORT": 2
|
|
1191
|
+
}
|
|
1192
|
+
},
|
|
1193
|
+
"EnforceNamingStyle": {
|
|
1194
|
+
"values": {
|
|
1195
|
+
"ENFORCE_NAMING_STYLE_UNKNOWN": 0,
|
|
1196
|
+
"STYLE2024": 1,
|
|
1197
|
+
"STYLE_LEGACY": 2
|
|
1198
|
+
}
|
|
1199
|
+
},
|
|
1200
|
+
"VisibilityFeature": {
|
|
1201
|
+
"fields": {},
|
|
1202
|
+
"reserved": [
|
|
1203
|
+
[
|
|
1204
|
+
1,
|
|
1205
|
+
536870911
|
|
1206
|
+
]
|
|
1207
|
+
],
|
|
1208
|
+
"nested": {
|
|
1209
|
+
"DefaultSymbolVisibility": {
|
|
1210
|
+
"values": {
|
|
1211
|
+
"DEFAULT_SYMBOL_VISIBILITY_UNKNOWN": 0,
|
|
1212
|
+
"EXPORT_ALL": 1,
|
|
1213
|
+
"EXPORT_TOP_LEVEL": 2,
|
|
1214
|
+
"LOCAL_ALL": 3,
|
|
1215
|
+
"STRICT": 4
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
}
|
|
1220
|
+
}
|
|
1221
|
+
},
|
|
1222
|
+
"FeatureSetDefaults": {
|
|
1223
|
+
"edition": "proto2",
|
|
1224
|
+
"fields": {
|
|
1225
|
+
"defaults": {
|
|
1226
|
+
"rule": "repeated",
|
|
1227
|
+
"type": "FeatureSetEditionDefault",
|
|
1228
|
+
"id": 1
|
|
1229
|
+
},
|
|
1230
|
+
"minimumEdition": {
|
|
1231
|
+
"type": "Edition",
|
|
1232
|
+
"id": 4
|
|
1233
|
+
},
|
|
1234
|
+
"maximumEdition": {
|
|
1235
|
+
"type": "Edition",
|
|
1236
|
+
"id": 5
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
"nested": {
|
|
1240
|
+
"FeatureSetEditionDefault": {
|
|
1241
|
+
"fields": {
|
|
1242
|
+
"edition": {
|
|
1243
|
+
"type": "Edition",
|
|
1244
|
+
"id": 3
|
|
1245
|
+
},
|
|
1246
|
+
"overridableFeatures": {
|
|
1247
|
+
"type": "FeatureSet",
|
|
1248
|
+
"id": 4
|
|
1249
|
+
},
|
|
1250
|
+
"fixedFeatures": {
|
|
1251
|
+
"type": "FeatureSet",
|
|
1252
|
+
"id": 5
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1255
|
+
"reserved": [
|
|
1256
|
+
[
|
|
1257
|
+
1,
|
|
1258
|
+
1
|
|
1259
|
+
],
|
|
1260
|
+
[
|
|
1261
|
+
2,
|
|
1262
|
+
2
|
|
1263
|
+
],
|
|
1264
|
+
"features"
|
|
1265
|
+
]
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
},
|
|
664
1269
|
"SourceCodeInfo": {
|
|
1270
|
+
"edition": "proto2",
|
|
665
1271
|
"fields": {
|
|
666
1272
|
"location": {
|
|
667
1273
|
"rule": "repeated",
|
|
@@ -669,18 +1275,30 @@
|
|
|
669
1275
|
"id": 1
|
|
670
1276
|
}
|
|
671
1277
|
},
|
|
1278
|
+
"extensions": [
|
|
1279
|
+
[
|
|
1280
|
+
536000000,
|
|
1281
|
+
536000000
|
|
1282
|
+
]
|
|
1283
|
+
],
|
|
672
1284
|
"nested": {
|
|
673
1285
|
"Location": {
|
|
674
1286
|
"fields": {
|
|
675
1287
|
"path": {
|
|
676
1288
|
"rule": "repeated",
|
|
677
1289
|
"type": "int32",
|
|
678
|
-
"id": 1
|
|
1290
|
+
"id": 1,
|
|
1291
|
+
"options": {
|
|
1292
|
+
"packed": true
|
|
1293
|
+
}
|
|
679
1294
|
},
|
|
680
1295
|
"span": {
|
|
681
1296
|
"rule": "repeated",
|
|
682
1297
|
"type": "int32",
|
|
683
|
-
"id": 2
|
|
1298
|
+
"id": 2,
|
|
1299
|
+
"options": {
|
|
1300
|
+
"packed": true
|
|
1301
|
+
}
|
|
684
1302
|
},
|
|
685
1303
|
"leadingComments": {
|
|
686
1304
|
"type": "string",
|
|
@@ -700,6 +1318,7 @@
|
|
|
700
1318
|
}
|
|
701
1319
|
},
|
|
702
1320
|
"GeneratedCodeInfo": {
|
|
1321
|
+
"edition": "proto2",
|
|
703
1322
|
"fields": {
|
|
704
1323
|
"annotation": {
|
|
705
1324
|
"rule": "repeated",
|
|
@@ -713,7 +1332,10 @@
|
|
|
713
1332
|
"path": {
|
|
714
1333
|
"rule": "repeated",
|
|
715
1334
|
"type": "int32",
|
|
716
|
-
"id": 1
|
|
1335
|
+
"id": 1,
|
|
1336
|
+
"options": {
|
|
1337
|
+
"packed": true
|
|
1338
|
+
}
|
|
717
1339
|
},
|
|
718
1340
|
"sourceFile": {
|
|
719
1341
|
"type": "string",
|
|
@@ -726,10 +1348,31 @@
|
|
|
726
1348
|
"end": {
|
|
727
1349
|
"type": "int32",
|
|
728
1350
|
"id": 4
|
|
1351
|
+
},
|
|
1352
|
+
"semantic": {
|
|
1353
|
+
"type": "Semantic",
|
|
1354
|
+
"id": 5
|
|
1355
|
+
}
|
|
1356
|
+
},
|
|
1357
|
+
"nested": {
|
|
1358
|
+
"Semantic": {
|
|
1359
|
+
"values": {
|
|
1360
|
+
"NONE": 0,
|
|
1361
|
+
"SET": 1,
|
|
1362
|
+
"ALIAS": 2
|
|
1363
|
+
}
|
|
729
1364
|
}
|
|
730
1365
|
}
|
|
731
1366
|
}
|
|
732
1367
|
}
|
|
1368
|
+
},
|
|
1369
|
+
"SymbolVisibility": {
|
|
1370
|
+
"edition": "proto2",
|
|
1371
|
+
"values": {
|
|
1372
|
+
"VISIBILITY_UNSET": 0,
|
|
1373
|
+
"VISIBILITY_LOCAL": 1,
|
|
1374
|
+
"VISIBILITY_EXPORT": 2
|
|
1375
|
+
}
|
|
733
1376
|
}
|
|
734
1377
|
}
|
|
735
1378
|
}
|