diff --git a/.nvmrc b/.nvmrc index b492b086..87ec8842 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18.16 +18.18.2 diff --git a/.prettierignore b/.prettierignore index fd680837..1e224cf2 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,3 +2,4 @@ dist cdk.out coverage public.package.json +pnpm-lock.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd0cb2a..87d9e858 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.0.69 + +- Updates to [ProtoScript 0.0.20](https://github.com/tatethurston/ProtoScript/blob/main/CHANGELOG.md#v0020). This updates JSON serializtion of Timestamp and Duration well known types to conform to the Protobuf3 specification. + ## v0.0.68 - All header names are now lowercased. This was already true for users using `createTwirpServer` in conjunction with Node.js' `createServer`, but previously users of `createTwirpServerless` did not receive this standardization. diff --git a/e2e/clientcompat/package.json b/e2e/clientcompat/package.json index 2153da10..0454251c 100644 --- a/e2e/clientcompat/package.json +++ b/e2e/clientcompat/package.json @@ -10,7 +10,7 @@ "twirpscript": "workspace:*" }, "devDependencies": { - "@types/jest": "^29.5.4", + "@types/jest": "^29.5.6", "typescript": "^5.2.2" } } diff --git a/e2e/clientcompat/src/clientcompat.pb.ts b/e2e/clientcompat/src/clientcompat.pb.ts index 3b63ed7e..8790c192 100644 --- a/e2e/clientcompat/src/clientcompat.pb.ts +++ b/e2e/clientcompat/src/clientcompat.pb.ts @@ -3,12 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { - BinaryReader, - BinaryWriter, - encodeBase64Bytes, - decodeBase64Bytes, -} from "protoscript"; +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this @@ -147,8 +142,10 @@ export const Empty = { /** * Initializes Empty with all fields set to their default value. */ - initialize: function (): Empty { - return {}; + initialize: function (msg?: Partial): Empty { + return { + ...msg, + }; }, /** @@ -156,15 +153,18 @@ export const Empty = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, /** * @private */ - _readMessage: function (_msg: Empty, _reader: BinaryReader): Empty { + _readMessage: function ( + _msg: Empty, + _reader: protoscript.BinaryReader, + ): Empty { return _msg; }, }; @@ -174,22 +174,29 @@ export const Req = { * Serializes Req to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Req._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Req._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Req from protobuf. */ decode: function (bytes: ByteSource): Req { - return Req._readMessage(Req.initialize(), new BinaryReader(bytes)); + return Req._readMessage( + Req.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Req with all fields set to their default value. */ - initialize: function (): Req { + initialize: function (msg?: Partial): Req { return { v: "", + ...msg, }; }, @@ -198,8 +205,8 @@ export const Req = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.v) { writer.writeString(1, msg.v); } @@ -209,7 +216,7 @@ export const Req = { /** * @private */ - _readMessage: function (msg: Req, reader: BinaryReader): Req { + _readMessage: function (msg: Req, reader: protoscript.BinaryReader): Req { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -232,22 +239,29 @@ export const Resp = { * Serializes Resp to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Resp._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Resp._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Resp from protobuf. */ decode: function (bytes: ByteSource): Resp { - return Resp._readMessage(Resp.initialize(), new BinaryReader(bytes)); + return Resp._readMessage( + Resp.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Resp with all fields set to their default value. */ - initialize: function (): Resp { + initialize: function (msg?: Partial): Resp { return { v: 0, + ...msg, }; }, @@ -256,8 +270,8 @@ export const Resp = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.v) { writer.writeInt32(1, msg.v); } @@ -267,7 +281,7 @@ export const Resp = { /** * @private */ - _readMessage: function (msg: Resp, reader: BinaryReader): Resp { + _readMessage: function (msg: Resp, reader: protoscript.BinaryReader): Resp { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -292,7 +306,7 @@ export const ClientCompatMessage = { encode: function (msg: PartialDeep): Uint8Array { return ClientCompatMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -302,18 +316,21 @@ export const ClientCompatMessage = { decode: function (bytes: ByteSource): ClientCompatMessage { return ClientCompatMessage._readMessage( ClientCompatMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes ClientCompatMessage with all fields set to their default value. */ - initialize: function (): ClientCompatMessage { + initialize: function ( + msg?: Partial, + ): ClientCompatMessage { return { serviceAddress: "", method: ClientCompatMessage.CompatServiceMethod._fromInt(0), request: new Uint8Array(), + ...msg, }; }, @@ -322,8 +339,8 @@ export const ClientCompatMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.serviceAddress) { writer.writeString(1, msg.serviceAddress); } @@ -347,7 +364,7 @@ export const ClientCompatMessage = { */ _readMessage: function ( msg: ClientCompatMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): ClientCompatMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -437,8 +454,10 @@ export const EmptyJSON = { /** * Initializes Empty with all fields set to their default value. */ - initialize: function (): Empty { - return {}; + initialize: function (msg?: Partial): Empty { + return { + ...msg, + }; }, /** @@ -474,9 +493,10 @@ export const ReqJSON = { /** * Initializes Req with all fields set to their default value. */ - initialize: function (): Req { + initialize: function (msg?: Partial): Req { return { v: "", + ...msg, }; }, @@ -521,9 +541,10 @@ export const RespJSON = { /** * Initializes Resp with all fields set to their default value. */ - initialize: function (): Resp { + initialize: function (msg?: Partial): Resp { return { v: 0, + ...msg, }; }, @@ -544,7 +565,7 @@ export const RespJSON = { _readMessage: function (msg: Resp, json: any): Resp { const _v_ = json["v"]; if (_v_) { - msg.v = _v_; + msg.v = protoscript.parseNumber(_v_); } return msg; }, @@ -571,11 +592,14 @@ export const ClientCompatMessageJSON = { /** * Initializes ClientCompatMessage with all fields set to their default value. */ - initialize: function (): ClientCompatMessage { + initialize: function ( + msg?: Partial, + ): ClientCompatMessage { return { serviceAddress: "", method: ClientCompatMessage.CompatServiceMethod._fromInt(0), request: new Uint8Array(), + ...msg, }; }, @@ -596,7 +620,7 @@ export const ClientCompatMessageJSON = { json["method"] = msg.method; } if (msg.request?.length) { - json["request"] = encodeBase64Bytes(msg.request); + json["request"] = protoscript.serializeBytes(msg.request); } return json; }, @@ -614,11 +638,11 @@ export const ClientCompatMessageJSON = { } const _method_ = json["method"]; if (_method_) { - msg.method = _method_; + msg.method = ClientCompatMessage.CompatServiceMethod._fromInt(_method_); } const _request_ = json["request"]; if (_request_) { - msg.request = decodeBase64Bytes(_request_); + msg.request = protoscript.parseBytes(_request_); } return msg; }, diff --git a/e2e/protos/google/protobuf/map_unittest.pb.ts b/e2e/protos/google/protobuf/map_unittest.pb.ts index 7ecf9cdf..b9c1621d 100644 --- a/e2e/protos/google/protobuf/map_unittest.pb.ts +++ b/e2e/protos/google/protobuf/map_unittest.pb.ts @@ -3,12 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { - BinaryReader, - BinaryWriter, - encodeBase64Bytes, - decodeBase64Bytes, -} from "protoscript"; +import * as protoscript from "protoscript"; import * as googleProtobufUnittest from "./unittest.pb"; @@ -451,20 +446,26 @@ export const TestMap = { * Serializes TestMap to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return TestMap._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return TestMap._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes TestMap from protobuf. */ decode: function (bytes: ByteSource): TestMap { - return TestMap._readMessage(TestMap.initialize(), new BinaryReader(bytes)); + return TestMap._readMessage( + TestMap.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes TestMap with all fields set to their default value. */ - initialize: function (): TestMap { + initialize: function (msg?: Partial): TestMap { return { mapInt32Int32: {}, mapInt64Int64: {}, @@ -485,6 +486,7 @@ export const TestMap = { mapInt32ForeignMessage: {}, mapStringForeignMessage: {}, mapInt32AllTypes: {}, + ...msg, }; }, @@ -493,8 +495,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.mapInt32Int32) { writer.writeRepeatedMessage( 1, @@ -691,7 +693,10 @@ export const TestMap = { /** * @private */ - _readMessage: function (msg: TestMap, reader: BinaryReader): TestMap { + _readMessage: function ( + msg: TestMap, + reader: protoscript.BinaryReader, + ): TestMap { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -824,8 +829,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -840,7 +845,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapInt32Int32, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapInt32Int32 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -869,8 +874,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt64String(1, msg.key.toString() as any); } @@ -885,7 +890,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapInt64Int64, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapInt64Int64 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -914,8 +919,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeUint32(1, msg.key); } @@ -930,7 +935,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapUint32Uint32, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapUint32Uint32 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -959,8 +964,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeUint64String(1, msg.key.toString() as any); } @@ -975,7 +980,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapUint64Uint64, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapUint64Uint64 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1004,8 +1009,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeSint32(1, msg.key); } @@ -1020,7 +1025,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapSint32Sint32, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapSint32Sint32 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1049,8 +1054,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeSint64String(1, msg.key.toString() as any); } @@ -1065,7 +1070,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapSint64Sint64, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapSint64Sint64 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1094,8 +1099,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeFixed32(1, msg.key); } @@ -1110,7 +1115,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapFixed32Fixed32, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapFixed32Fixed32 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1139,8 +1144,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeFixed64String(1, msg.key.toString() as any); } @@ -1155,7 +1160,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapFixed64Fixed64, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapFixed64Fixed64 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1184,8 +1189,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeSfixed32(1, msg.key); } @@ -1200,7 +1205,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapSfixed32Sfixed32, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapSfixed32Sfixed32 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1229,8 +1234,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeSfixed64String(1, msg.key.toString() as any); } @@ -1245,7 +1250,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapSfixed64Sfixed64, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapSfixed64Sfixed64 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1274,8 +1279,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1290,7 +1295,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapInt32Float, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapInt32Float { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1319,8 +1324,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1335,7 +1340,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapInt32Double, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapInt32Double { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1364,8 +1369,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeBool(1, msg.key); } @@ -1380,7 +1385,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapBoolBool, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapBoolBool { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1409,8 +1414,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeString(1, msg.key); } @@ -1425,7 +1430,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapStringString, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapStringString { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1454,8 +1459,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1470,7 +1475,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapInt32Bytes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapInt32Bytes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1499,8 +1504,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1515,7 +1520,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapInt32Enum, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapInt32Enum { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1544,8 +1549,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1564,7 +1569,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapInt32ForeignMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapInt32ForeignMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1597,8 +1602,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeString(1, msg.key); } @@ -1617,7 +1622,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapStringForeignMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapStringForeignMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1650,8 +1655,8 @@ export const TestMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1670,7 +1675,7 @@ export const TestMap = { */ _readMessage: function ( msg: TestMap.MapInt32AllTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMap.MapInt32AllTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1705,7 +1710,7 @@ export const TestMapSubmessage = { encode: function (msg: PartialDeep): Uint8Array { return TestMapSubmessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -1715,16 +1720,17 @@ export const TestMapSubmessage = { decode: function (bytes: ByteSource): TestMapSubmessage { return TestMapSubmessage._readMessage( TestMapSubmessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestMapSubmessage with all fields set to their default value. */ - initialize: function (): TestMapSubmessage { + initialize: function (msg?: Partial): TestMapSubmessage { return { testMap: TestMap.initialize(), + ...msg, }; }, @@ -1733,8 +1739,8 @@ export const TestMapSubmessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.testMap) { writer.writeMessage(1, msg.testMap, TestMap._writeMessage); } @@ -1746,7 +1752,7 @@ export const TestMapSubmessage = { */ _readMessage: function ( msg: TestMapSubmessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMapSubmessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1772,7 +1778,7 @@ export const TestMessageMap = { encode: function (msg: PartialDeep): Uint8Array { return TestMessageMap._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -1782,16 +1788,17 @@ export const TestMessageMap = { decode: function (bytes: ByteSource): TestMessageMap { return TestMessageMap._readMessage( TestMessageMap.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestMessageMap with all fields set to their default value. */ - initialize: function (): TestMessageMap { + initialize: function (msg?: Partial): TestMessageMap { return { mapInt32Message: {}, + ...msg, }; }, @@ -1800,8 +1807,8 @@ export const TestMessageMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.mapInt32Message) { writer.writeRepeatedMessage( 1, @@ -1820,7 +1827,7 @@ export const TestMessageMap = { */ _readMessage: function ( msg: TestMessageMap, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMessageMap { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1846,8 +1853,8 @@ export const TestMessageMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1866,7 +1873,7 @@ export const TestMessageMap = { */ _readMessage: function ( msg: TestMessageMap.MapInt32Message, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMessageMap.MapInt32Message { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1901,7 +1908,7 @@ export const TestSameTypeMap = { encode: function (msg: PartialDeep): Uint8Array { return TestSameTypeMap._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -1911,17 +1918,18 @@ export const TestSameTypeMap = { decode: function (bytes: ByteSource): TestSameTypeMap { return TestSameTypeMap._readMessage( TestSameTypeMap.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestSameTypeMap with all fields set to their default value. */ - initialize: function (): TestSameTypeMap { + initialize: function (msg?: Partial): TestSameTypeMap { return { map1: {}, map2: {}, + ...msg, }; }, @@ -1930,8 +1938,8 @@ export const TestSameTypeMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.map1) { writer.writeRepeatedMessage( 1, @@ -1960,7 +1968,7 @@ export const TestSameTypeMap = { */ _readMessage: function ( msg: TestSameTypeMap, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestSameTypeMap { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1992,8 +2000,8 @@ export const TestSameTypeMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2008,7 +2016,7 @@ export const TestSameTypeMap = { */ _readMessage: function ( msg: TestSameTypeMap.Map1, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestSameTypeMap.Map1 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2037,8 +2045,8 @@ export const TestSameTypeMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2053,7 +2061,7 @@ export const TestSameTypeMap = { */ _readMessage: function ( msg: TestSameTypeMap.Map2, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestSameTypeMap.Map2 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2084,7 +2092,7 @@ export const TestRequiredMessageMap = { encode: function (msg: PartialDeep): Uint8Array { return TestRequiredMessageMap._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -2094,16 +2102,19 @@ export const TestRequiredMessageMap = { decode: function (bytes: ByteSource): TestRequiredMessageMap { return TestRequiredMessageMap._readMessage( TestRequiredMessageMap.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestRequiredMessageMap with all fields set to their default value. */ - initialize: function (): TestRequiredMessageMap { + initialize: function ( + msg?: Partial, + ): TestRequiredMessageMap { return { mapField: {}, + ...msg, }; }, @@ -2112,8 +2123,8 @@ export const TestRequiredMessageMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.mapField) { writer.writeRepeatedMessage( 1, @@ -2132,7 +2143,7 @@ export const TestRequiredMessageMap = { */ _readMessage: function ( msg: TestRequiredMessageMap, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRequiredMessageMap { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2158,8 +2169,8 @@ export const TestRequiredMessageMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2178,7 +2189,7 @@ export const TestRequiredMessageMap = { */ _readMessage: function ( msg: TestRequiredMessageMap.MapField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRequiredMessageMap.MapField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2213,7 +2224,7 @@ export const TestArenaMap = { encode: function (msg: PartialDeep): Uint8Array { return TestArenaMap._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -2223,14 +2234,14 @@ export const TestArenaMap = { decode: function (bytes: ByteSource): TestArenaMap { return TestArenaMap._readMessage( TestArenaMap.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestArenaMap with all fields set to their default value. */ - initialize: function (): TestArenaMap { + initialize: function (msg?: Partial): TestArenaMap { return { mapInt32Int32: {}, mapInt64Int64: {}, @@ -2249,6 +2260,7 @@ export const TestArenaMap = { mapInt32Bytes: {}, mapInt32Enum: {}, mapInt32ForeignMessage: {}, + ...msg, }; }, @@ -2257,8 +2269,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.mapInt32Int32) { writer.writeRepeatedMessage( 1, @@ -2437,7 +2449,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2568,8 +2580,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2584,7 +2596,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapInt32Int32, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapInt32Int32 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2613,8 +2625,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt64String(1, msg.key.toString() as any); } @@ -2629,7 +2641,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapInt64Int64, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapInt64Int64 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2658,8 +2670,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeUint32(1, msg.key); } @@ -2674,7 +2686,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapUint32Uint32, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapUint32Uint32 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2703,8 +2715,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeUint64String(1, msg.key.toString() as any); } @@ -2719,7 +2731,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapUint64Uint64, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapUint64Uint64 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2748,8 +2760,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeSint32(1, msg.key); } @@ -2764,7 +2776,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapSint32Sint32, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapSint32Sint32 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2793,8 +2805,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeSint64String(1, msg.key.toString() as any); } @@ -2809,7 +2821,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapSint64Sint64, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapSint64Sint64 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2838,8 +2850,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeFixed32(1, msg.key); } @@ -2854,7 +2866,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapFixed32Fixed32, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapFixed32Fixed32 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2883,8 +2895,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeFixed64String(1, msg.key.toString() as any); } @@ -2899,7 +2911,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapFixed64Fixed64, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapFixed64Fixed64 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2928,8 +2940,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeSfixed32(1, msg.key); } @@ -2944,7 +2956,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapSfixed32Sfixed32, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapSfixed32Sfixed32 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2973,8 +2985,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeSfixed64String(1, msg.key.toString() as any); } @@ -2989,7 +3001,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapSfixed64Sfixed64, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapSfixed64Sfixed64 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3018,8 +3030,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -3034,7 +3046,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapInt32Float, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapInt32Float { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3063,8 +3075,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -3079,7 +3091,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapInt32Double, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapInt32Double { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3108,8 +3120,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeBool(1, msg.key); } @@ -3124,7 +3136,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapBoolBool, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapBoolBool { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3153,8 +3165,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeString(1, msg.key); } @@ -3169,7 +3181,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapStringString, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapStringString { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3198,8 +3210,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -3214,7 +3226,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapInt32Bytes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapInt32Bytes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3243,8 +3255,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -3259,7 +3271,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapInt32Enum, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapInt32Enum { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3288,8 +3300,8 @@ export const TestArenaMap = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -3308,7 +3320,7 @@ export const TestArenaMap = { */ _readMessage: function ( msg: TestArenaMap.MapInt32ForeignMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestArenaMap.MapInt32ForeignMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3345,7 +3357,7 @@ export const MessageContainingMapCalledEntry = { ): Uint8Array { return MessageContainingMapCalledEntry._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3355,16 +3367,19 @@ export const MessageContainingMapCalledEntry = { decode: function (bytes: ByteSource): MessageContainingMapCalledEntry { return MessageContainingMapCalledEntry._readMessage( MessageContainingMapCalledEntry.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes MessageContainingMapCalledEntry with all fields set to their default value. */ - initialize: function (): MessageContainingMapCalledEntry { + initialize: function ( + msg?: Partial, + ): MessageContainingMapCalledEntry { return { entry: {}, + ...msg, }; }, @@ -3373,8 +3388,8 @@ export const MessageContainingMapCalledEntry = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.entry) { writer.writeRepeatedMessage( 1, @@ -3393,7 +3408,7 @@ export const MessageContainingMapCalledEntry = { */ _readMessage: function ( msg: MessageContainingMapCalledEntry, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MessageContainingMapCalledEntry { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3422,8 +3437,8 @@ export const MessageContainingMapCalledEntry = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -3438,7 +3453,7 @@ export const MessageContainingMapCalledEntry = { */ _readMessage: function ( msg: MessageContainingMapCalledEntry.Entry, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MessageContainingMapCalledEntry.Entry { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3469,7 +3484,7 @@ export const TestRecursiveMapMessage = { encode: function (msg: PartialDeep): Uint8Array { return TestRecursiveMapMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3479,16 +3494,19 @@ export const TestRecursiveMapMessage = { decode: function (bytes: ByteSource): TestRecursiveMapMessage { return TestRecursiveMapMessage._readMessage( TestRecursiveMapMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestRecursiveMapMessage with all fields set to their default value. */ - initialize: function (): TestRecursiveMapMessage { + initialize: function ( + msg?: Partial, + ): TestRecursiveMapMessage { return { a: {}, + ...msg, }; }, @@ -3497,8 +3515,8 @@ export const TestRecursiveMapMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeRepeatedMessage( 1, @@ -3517,7 +3535,7 @@ export const TestRecursiveMapMessage = { */ _readMessage: function ( msg: TestRecursiveMapMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRecursiveMapMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3543,8 +3561,8 @@ export const TestRecursiveMapMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeString(1, msg.key); } @@ -3563,7 +3581,7 @@ export const TestRecursiveMapMessage = { */ _readMessage: function ( msg: TestRecursiveMapMessage.A, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRecursiveMapMessage.A { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3656,7 +3674,7 @@ export const TestMapJSON = { /** * Initializes TestMap with all fields set to their default value. */ - initialize: function (): TestMap { + initialize: function (msg?: Partial): TestMap { return { mapInt32Int32: {}, mapInt64Int64: {}, @@ -3677,6 +3695,7 @@ export const TestMapJSON = { mapInt32ForeignMessage: {}, mapStringForeignMessage: {}, mapInt32AllTypes: {}, + ...msg, }; }, @@ -4113,11 +4132,11 @@ export const TestMapJSON = { ): TestMap.MapInt32Int32 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -4132,10 +4151,10 @@ export const TestMapJSON = { ): Record { const json: Record = {}; if (msg.key) { - json["key"] = msg.key.toString(); + json["key"] = String(msg.key); } if (msg.value) { - json["value"] = msg.value.toString(); + json["value"] = String(msg.value); } return json; }, @@ -4185,11 +4204,11 @@ export const TestMapJSON = { ): TestMap.MapUint32Uint32 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -4204,10 +4223,10 @@ export const TestMapJSON = { ): Record { const json: Record = {}; if (msg.key) { - json["key"] = msg.key.toString(); + json["key"] = String(msg.key); } if (msg.value) { - json["value"] = msg.value.toString(); + json["value"] = String(msg.value); } return json; }, @@ -4257,11 +4276,11 @@ export const TestMapJSON = { ): TestMap.MapSint32Sint32 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -4276,10 +4295,10 @@ export const TestMapJSON = { ): Record { const json: Record = {}; if (msg.key) { - json["key"] = msg.key.toString(); + json["key"] = String(msg.key); } if (msg.value) { - json["value"] = msg.value.toString(); + json["value"] = String(msg.value); } return json; }, @@ -4329,11 +4348,11 @@ export const TestMapJSON = { ): TestMap.MapFixed32Fixed32 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -4348,10 +4367,10 @@ export const TestMapJSON = { ): Record { const json: Record = {}; if (msg.key) { - json["key"] = msg.key.toString(); + json["key"] = String(msg.key); } if (msg.value) { - json["value"] = msg.value.toString(); + json["value"] = String(msg.value); } return json; }, @@ -4401,11 +4420,11 @@ export const TestMapJSON = { ): TestMap.MapSfixed32Sfixed32 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -4420,10 +4439,10 @@ export const TestMapJSON = { ): Record { const json: Record = {}; if (msg.key) { - json["key"] = msg.key.toString(); + json["key"] = String(msg.key); } if (msg.value) { - json["value"] = msg.value.toString(); + json["value"] = String(msg.value); } return json; }, @@ -4473,11 +4492,11 @@ export const TestMapJSON = { ): TestMap.MapInt32Float { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseDouble(_value_); } return msg; }, @@ -4509,11 +4528,11 @@ export const TestMapJSON = { ): TestMap.MapInt32Double { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseDouble(_value_); } return msg; }, @@ -4603,7 +4622,7 @@ export const TestMapJSON = { json["key"] = msg.key; } if (msg.value?.length) { - json["value"] = encodeBase64Bytes(msg.value); + json["value"] = protoscript.serializeBytes(msg.value); } return json; }, @@ -4617,11 +4636,11 @@ export const TestMapJSON = { ): TestMap.MapInt32Bytes { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = decodeBase64Bytes(_value_); + msg.value = protoscript.parseBytes(_value_); } return msg; }, @@ -4653,11 +4672,11 @@ export const TestMapJSON = { ): TestMap.MapInt32Enum { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = MapEnum._fromInt(_value_); } return msg; }, @@ -4694,7 +4713,7 @@ export const TestMapJSON = { ): TestMap.MapInt32ForeignMessage { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4782,7 +4801,7 @@ export const TestMapJSON = { ): TestMap.MapInt32AllTypes { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4817,9 +4836,10 @@ export const TestMapSubmessageJSON = { /** * Initializes TestMapSubmessage with all fields set to their default value. */ - initialize: function (): TestMapSubmessage { + initialize: function (msg?: Partial): TestMapSubmessage { return { testMap: TestMapJSON.initialize(), + ...msg, }; }, @@ -4875,9 +4895,10 @@ export const TestMessageMapJSON = { /** * Initializes TestMessageMap with all fields set to their default value. */ - initialize: function (): TestMessageMap { + initialize: function (msg?: Partial): TestMessageMap { return { mapInt32Message: {}, + ...msg, }; }, @@ -4950,7 +4971,7 @@ export const TestMessageMapJSON = { ): TestMessageMap.MapInt32Message { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4985,10 +5006,11 @@ export const TestSameTypeMapJSON = { /** * Initializes TestSameTypeMap with all fields set to their default value. */ - initialize: function (): TestSameTypeMap { + initialize: function (msg?: Partial): TestSameTypeMap { return { map1: {}, map2: {}, + ...msg, }; }, @@ -5075,11 +5097,11 @@ export const TestSameTypeMapJSON = { ): TestSameTypeMap.Map1 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -5111,11 +5133,11 @@ export const TestSameTypeMapJSON = { ): TestSameTypeMap.Map2 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -5143,9 +5165,12 @@ export const TestRequiredMessageMapJSON = { /** * Initializes TestRequiredMessageMap with all fields set to their default value. */ - initialize: function (): TestRequiredMessageMap { + initialize: function ( + msg?: Partial, + ): TestRequiredMessageMap { return { mapField: {}, + ...msg, }; }, @@ -5220,7 +5245,7 @@ export const TestRequiredMessageMapJSON = { ): TestRequiredMessageMap.MapField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -5255,7 +5280,7 @@ export const TestArenaMapJSON = { /** * Initializes TestArenaMap with all fields set to their default value. */ - initialize: function (): TestArenaMap { + initialize: function (msg?: Partial): TestArenaMap { return { mapInt32Int32: {}, mapInt64Int64: {}, @@ -5274,6 +5299,7 @@ export const TestArenaMapJSON = { mapInt32Bytes: {}, mapInt32Enum: {}, mapInt32ForeignMessage: {}, + ...msg, }; }, @@ -5670,11 +5696,11 @@ export const TestArenaMapJSON = { ): TestArenaMap.MapInt32Int32 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -5689,10 +5715,10 @@ export const TestArenaMapJSON = { ): Record { const json: Record = {}; if (msg.key) { - json["key"] = msg.key.toString(); + json["key"] = String(msg.key); } if (msg.value) { - json["value"] = msg.value.toString(); + json["value"] = String(msg.value); } return json; }, @@ -5742,11 +5768,11 @@ export const TestArenaMapJSON = { ): TestArenaMap.MapUint32Uint32 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -5761,10 +5787,10 @@ export const TestArenaMapJSON = { ): Record { const json: Record = {}; if (msg.key) { - json["key"] = msg.key.toString(); + json["key"] = String(msg.key); } if (msg.value) { - json["value"] = msg.value.toString(); + json["value"] = String(msg.value); } return json; }, @@ -5814,11 +5840,11 @@ export const TestArenaMapJSON = { ): TestArenaMap.MapSint32Sint32 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -5833,10 +5859,10 @@ export const TestArenaMapJSON = { ): Record { const json: Record = {}; if (msg.key) { - json["key"] = msg.key.toString(); + json["key"] = String(msg.key); } if (msg.value) { - json["value"] = msg.value.toString(); + json["value"] = String(msg.value); } return json; }, @@ -5886,11 +5912,11 @@ export const TestArenaMapJSON = { ): TestArenaMap.MapFixed32Fixed32 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -5905,10 +5931,10 @@ export const TestArenaMapJSON = { ): Record { const json: Record = {}; if (msg.key) { - json["key"] = msg.key.toString(); + json["key"] = String(msg.key); } if (msg.value) { - json["value"] = msg.value.toString(); + json["value"] = String(msg.value); } return json; }, @@ -5958,11 +5984,11 @@ export const TestArenaMapJSON = { ): TestArenaMap.MapSfixed32Sfixed32 { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -5977,10 +6003,10 @@ export const TestArenaMapJSON = { ): Record { const json: Record = {}; if (msg.key) { - json["key"] = msg.key.toString(); + json["key"] = String(msg.key); } if (msg.value) { - json["value"] = msg.value.toString(); + json["value"] = String(msg.value); } return json; }, @@ -6030,11 +6056,11 @@ export const TestArenaMapJSON = { ): TestArenaMap.MapInt32Float { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseDouble(_value_); } return msg; }, @@ -6066,11 +6092,11 @@ export const TestArenaMapJSON = { ): TestArenaMap.MapInt32Double { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseDouble(_value_); } return msg; }, @@ -6160,7 +6186,7 @@ export const TestArenaMapJSON = { json["key"] = msg.key; } if (msg.value?.length) { - json["value"] = encodeBase64Bytes(msg.value); + json["value"] = protoscript.serializeBytes(msg.value); } return json; }, @@ -6174,11 +6200,11 @@ export const TestArenaMapJSON = { ): TestArenaMap.MapInt32Bytes { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = decodeBase64Bytes(_value_); + msg.value = protoscript.parseBytes(_value_); } return msg; }, @@ -6210,11 +6236,11 @@ export const TestArenaMapJSON = { ): TestArenaMap.MapInt32Enum { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = MapEnum._fromInt(_value_); } return msg; }, @@ -6251,7 +6277,7 @@ export const TestArenaMapJSON = { ): TestArenaMap.MapInt32ForeignMessage { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -6288,9 +6314,12 @@ export const MessageContainingMapCalledEntryJSON = { /** * Initializes MessageContainingMapCalledEntry with all fields set to their default value. */ - initialize: function (): MessageContainingMapCalledEntry { + initialize: function ( + msg?: Partial, + ): MessageContainingMapCalledEntry { return { entry: {}, + ...msg, }; }, @@ -6360,11 +6389,11 @@ export const MessageContainingMapCalledEntryJSON = { ): MessageContainingMapCalledEntry.Entry { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - msg.value = _value_; + msg.value = protoscript.parseNumber(_value_); } return msg; }, @@ -6392,9 +6421,12 @@ export const TestRecursiveMapMessageJSON = { /** * Initializes TestRecursiveMapMessage with all fields set to their default value. */ - initialize: function (): TestRecursiveMapMessage { + initialize: function ( + msg?: Partial, + ): TestRecursiveMapMessage { return { a: {}, + ...msg, }; }, diff --git a/e2e/protos/google/protobuf/unittest.pb.ts b/e2e/protos/google/protobuf/unittest.pb.ts index 9e58d24e..f14ce779 100644 --- a/e2e/protos/google/protobuf/unittest.pb.ts +++ b/e2e/protos/google/protobuf/unittest.pb.ts @@ -3,12 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { - BinaryReader, - BinaryWriter, - encodeBase64Bytes, - decodeBase64Bytes, -} from "protoscript"; +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this @@ -1971,7 +1966,7 @@ export const TestAllTypes = { encode: function (msg: PartialDeep): Uint8Array { return TestAllTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -1981,14 +1976,14 @@ export const TestAllTypes = { decode: function (bytes: ByteSource): TestAllTypes { return TestAllTypes._readMessage( TestAllTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestAllTypes with all fields set to their default value. */ - initialize: function (): TestAllTypes { + initialize: function (msg?: Partial): TestAllTypes { return { optionalInt32: 0, optionalInt64: 0n, @@ -2065,6 +2060,7 @@ export const TestAllTypes = { oneofNestedMessage: undefined, oneofString: undefined, oneofBytes: undefined, + ...msg, }; }, @@ -2073,8 +2069,8 @@ export const TestAllTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.optionalInt32) { writer.writeInt32(1, msg.optionalInt32); } @@ -2395,7 +2391,7 @@ export const TestAllTypes = { */ _readMessage: function ( msg: TestAllTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestAllTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2894,7 +2890,7 @@ export const TestAllTypes = { ): Uint8Array { return TestAllTypes.NestedMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -2904,16 +2900,19 @@ export const TestAllTypes = { decode: function (bytes: ByteSource): TestAllTypes.NestedMessage { return TestAllTypes.NestedMessage._readMessage( TestAllTypes.NestedMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestAllTypes.NestedMessage with all fields set to their default value. */ - initialize: function (): TestAllTypes.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestAllTypes.NestedMessage { return { bb: 0, + ...msg, }; }, @@ -2922,8 +2921,8 @@ export const TestAllTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.bb) { writer.writeInt32(1, msg.bb); } @@ -2935,7 +2934,7 @@ export const TestAllTypes = { */ _readMessage: function ( msg: TestAllTypes.NestedMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestAllTypes.NestedMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2963,7 +2962,7 @@ export const TestAllTypes = { ): Uint8Array { return TestAllTypes.OptionalGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -2973,16 +2972,19 @@ export const TestAllTypes = { decode: function (bytes: ByteSource): TestAllTypes.OptionalGroup { return TestAllTypes.OptionalGroup._readMessage( TestAllTypes.OptionalGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestAllTypes.OptionalGroup with all fields set to their default value. */ - initialize: function (): TestAllTypes.OptionalGroup { + initialize: function ( + msg?: Partial, + ): TestAllTypes.OptionalGroup { return { a: 0, + ...msg, }; }, @@ -2991,8 +2993,8 @@ export const TestAllTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(17, msg.a); } @@ -3004,7 +3006,7 @@ export const TestAllTypes = { */ _readMessage: function ( msg: TestAllTypes.OptionalGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestAllTypes.OptionalGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3032,7 +3034,7 @@ export const TestAllTypes = { ): Uint8Array { return TestAllTypes.RepeatedGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3042,16 +3044,19 @@ export const TestAllTypes = { decode: function (bytes: ByteSource): TestAllTypes.RepeatedGroup { return TestAllTypes.RepeatedGroup._readMessage( TestAllTypes.RepeatedGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestAllTypes.RepeatedGroup with all fields set to their default value. */ - initialize: function (): TestAllTypes.RepeatedGroup { + initialize: function ( + msg?: Partial, + ): TestAllTypes.RepeatedGroup { return { a: 0, + ...msg, }; }, @@ -3060,8 +3065,8 @@ export const TestAllTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(47, msg.a); } @@ -3073,7 +3078,7 @@ export const TestAllTypes = { */ _readMessage: function ( msg: TestAllTypes.RepeatedGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestAllTypes.RepeatedGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3100,7 +3105,7 @@ export const NestedTestAllTypes = { encode: function (msg: PartialDeep): Uint8Array { return NestedTestAllTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3110,18 +3115,19 @@ export const NestedTestAllTypes = { decode: function (bytes: ByteSource): NestedTestAllTypes { return NestedTestAllTypes._readMessage( NestedTestAllTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes NestedTestAllTypes with all fields set to their default value. */ - initialize: function (): NestedTestAllTypes { + initialize: function (msg?: Partial): NestedTestAllTypes { return { child: undefined, payload: TestAllTypes.initialize(), repeatedChild: [], + ...msg, }; }, @@ -3130,8 +3136,8 @@ export const NestedTestAllTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.child) { writer.writeMessage(1, msg.child, NestedTestAllTypes._writeMessage); } @@ -3153,7 +3159,7 @@ export const NestedTestAllTypes = { */ _readMessage: function ( msg: NestedTestAllTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): NestedTestAllTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3190,7 +3196,7 @@ export const TestDeprecatedFields = { encode: function (msg: PartialDeep): Uint8Array { return TestDeprecatedFields._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3200,17 +3206,20 @@ export const TestDeprecatedFields = { decode: function (bytes: ByteSource): TestDeprecatedFields { return TestDeprecatedFields._readMessage( TestDeprecatedFields.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestDeprecatedFields with all fields set to their default value. */ - initialize: function (): TestDeprecatedFields { + initialize: function ( + msg?: Partial, + ): TestDeprecatedFields { return { deprecatedInt32: 0, deprecatedInt32InOneof: undefined, + ...msg, }; }, @@ -3219,8 +3228,8 @@ export const TestDeprecatedFields = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.deprecatedInt32) { writer.writeInt32(1, msg.deprecatedInt32); } @@ -3235,7 +3244,7 @@ export const TestDeprecatedFields = { */ _readMessage: function ( msg: TestDeprecatedFields, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestDeprecatedFields { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3276,8 +3285,12 @@ export const TestDeprecatedMessage = { /** * Initializes TestDeprecatedMessage with all fields set to their default value. */ - initialize: function (): TestDeprecatedMessage { - return {}; + initialize: function ( + msg?: Partial, + ): TestDeprecatedMessage { + return { + ...msg, + }; }, /** @@ -3285,8 +3298,8 @@ export const TestDeprecatedMessage = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -3295,7 +3308,7 @@ export const TestDeprecatedMessage = { */ _readMessage: function ( _msg: TestDeprecatedMessage, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestDeprecatedMessage { return _msg; }, @@ -3308,7 +3321,7 @@ export const ForeignMessage = { encode: function (msg: PartialDeep): Uint8Array { return ForeignMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3318,17 +3331,18 @@ export const ForeignMessage = { decode: function (bytes: ByteSource): ForeignMessage { return ForeignMessage._readMessage( ForeignMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes ForeignMessage with all fields set to their default value. */ - initialize: function (): ForeignMessage { + initialize: function (msg?: Partial): ForeignMessage { return { c: 0, d: 0, + ...msg, }; }, @@ -3337,8 +3351,8 @@ export const ForeignMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.c) { writer.writeInt32(1, msg.c); } @@ -3353,7 +3367,7 @@ export const ForeignMessage = { */ _readMessage: function ( msg: ForeignMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): ForeignMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3394,8 +3408,10 @@ export const TestReservedFields = { /** * Initializes TestReservedFields with all fields set to their default value. */ - initialize: function (): TestReservedFields { - return {}; + initialize: function (msg?: Partial): TestReservedFields { + return { + ...msg, + }; }, /** @@ -3403,8 +3419,8 @@ export const TestReservedFields = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -3413,7 +3429,7 @@ export const TestReservedFields = { */ _readMessage: function ( _msg: TestReservedFields, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestReservedFields { return _msg; }, @@ -3437,8 +3453,10 @@ export const TestAllExtensions = { /** * Initializes TestAllExtensions with all fields set to their default value. */ - initialize: function (): TestAllExtensions { - return {}; + initialize: function (msg?: Partial): TestAllExtensions { + return { + ...msg, + }; }, /** @@ -3446,8 +3464,8 @@ export const TestAllExtensions = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -3456,7 +3474,7 @@ export const TestAllExtensions = { */ _readMessage: function ( _msg: TestAllExtensions, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestAllExtensions { return _msg; }, @@ -3469,7 +3487,7 @@ export const OptionalGroup_extension = { encode: function (msg: PartialDeep): Uint8Array { return OptionalGroup_extension._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3479,16 +3497,19 @@ export const OptionalGroup_extension = { decode: function (bytes: ByteSource): OptionalGroup_extension { return OptionalGroup_extension._readMessage( OptionalGroup_extension.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes OptionalGroup_extension with all fields set to their default value. */ - initialize: function (): OptionalGroup_extension { + initialize: function ( + msg?: Partial, + ): OptionalGroup_extension { return { a: 0, + ...msg, }; }, @@ -3497,8 +3518,8 @@ export const OptionalGroup_extension = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(17, msg.a); } @@ -3510,7 +3531,7 @@ export const OptionalGroup_extension = { */ _readMessage: function ( msg: OptionalGroup_extension, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): OptionalGroup_extension { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3536,7 +3557,7 @@ export const RepeatedGroup_extension = { encode: function (msg: PartialDeep): Uint8Array { return RepeatedGroup_extension._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3546,16 +3567,19 @@ export const RepeatedGroup_extension = { decode: function (bytes: ByteSource): RepeatedGroup_extension { return RepeatedGroup_extension._readMessage( RepeatedGroup_extension.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes RepeatedGroup_extension with all fields set to their default value. */ - initialize: function (): RepeatedGroup_extension { + initialize: function ( + msg?: Partial, + ): RepeatedGroup_extension { return { a: 0, + ...msg, }; }, @@ -3564,8 +3588,8 @@ export const RepeatedGroup_extension = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(47, msg.a); } @@ -3577,7 +3601,7 @@ export const RepeatedGroup_extension = { */ _readMessage: function ( msg: RepeatedGroup_extension, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): RepeatedGroup_extension { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3601,7 +3625,10 @@ export const TestGroup = { * Serializes TestGroup to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return TestGroup._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return TestGroup._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -3610,16 +3637,17 @@ export const TestGroup = { decode: function (bytes: ByteSource): TestGroup { return TestGroup._readMessage( TestGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestGroup with all fields set to their default value. */ - initialize: function (): TestGroup { + initialize: function (msg?: Partial): TestGroup { return { optionalForeignEnum: ForeignEnum._fromInt(0), + ...msg, }; }, @@ -3628,8 +3656,8 @@ export const TestGroup = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if ( msg.optionalForeignEnum && ForeignEnum._toInt(msg.optionalForeignEnum) @@ -3642,7 +3670,10 @@ export const TestGroup = { /** * @private */ - _readMessage: function (msg: TestGroup, reader: BinaryReader): TestGroup { + _readMessage: function ( + msg: TestGroup, + reader: protoscript.BinaryReader, + ): TestGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -3666,7 +3697,7 @@ export const TestGroup = { encode: function (msg: PartialDeep): Uint8Array { return TestGroup.OptionalGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3676,16 +3707,19 @@ export const TestGroup = { decode: function (bytes: ByteSource): TestGroup.OptionalGroup { return TestGroup.OptionalGroup._readMessage( TestGroup.OptionalGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestGroup.OptionalGroup with all fields set to their default value. */ - initialize: function (): TestGroup.OptionalGroup { + initialize: function ( + msg?: Partial, + ): TestGroup.OptionalGroup { return { a: 0, + ...msg, }; }, @@ -3694,8 +3728,8 @@ export const TestGroup = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(17, msg.a); } @@ -3707,7 +3741,7 @@ export const TestGroup = { */ _readMessage: function ( msg: TestGroup.OptionalGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestGroup.OptionalGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3745,8 +3779,10 @@ export const TestGroupExtension = { /** * Initializes TestGroupExtension with all fields set to their default value. */ - initialize: function (): TestGroupExtension { - return {}; + initialize: function (msg?: Partial): TestGroupExtension { + return { + ...msg, + }; }, /** @@ -3754,8 +3790,8 @@ export const TestGroupExtension = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -3764,7 +3800,7 @@ export const TestGroupExtension = { */ _readMessage: function ( _msg: TestGroupExtension, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestGroupExtension { return _msg; }, @@ -3788,8 +3824,12 @@ export const TestNestedExtension = { /** * Initializes TestNestedExtension with all fields set to their default value. */ - initialize: function (): TestNestedExtension { - return {}; + initialize: function ( + msg?: Partial, + ): TestNestedExtension { + return { + ...msg, + }; }, /** @@ -3797,8 +3837,8 @@ export const TestNestedExtension = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -3807,7 +3847,7 @@ export const TestNestedExtension = { */ _readMessage: function ( _msg: TestNestedExtension, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestNestedExtension { return _msg; }, @@ -3821,7 +3861,7 @@ export const TestNestedExtension = { ): Uint8Array { return TestNestedExtension.OptionalGroup_extension._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3833,16 +3873,19 @@ export const TestNestedExtension = { ): TestNestedExtension.OptionalGroup_extension { return TestNestedExtension.OptionalGroup_extension._readMessage( TestNestedExtension.OptionalGroup_extension.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestNestedExtension.OptionalGroup_extension with all fields set to their default value. */ - initialize: function (): TestNestedExtension.OptionalGroup_extension { + initialize: function ( + msg?: Partial, + ): TestNestedExtension.OptionalGroup_extension { return { a: 0, + ...msg, }; }, @@ -3851,8 +3894,8 @@ export const TestNestedExtension = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(17, msg.a); } @@ -3864,7 +3907,7 @@ export const TestNestedExtension = { */ _readMessage: function ( msg: TestNestedExtension.OptionalGroup_extension, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestNestedExtension.OptionalGroup_extension { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3891,7 +3934,7 @@ export const TestChildExtension = { encode: function (msg: PartialDeep): Uint8Array { return TestChildExtension._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3901,18 +3944,19 @@ export const TestChildExtension = { decode: function (bytes: ByteSource): TestChildExtension { return TestChildExtension._readMessage( TestChildExtension.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestChildExtension with all fields set to their default value. */ - initialize: function (): TestChildExtension { + initialize: function (msg?: Partial): TestChildExtension { return { a: "", b: "", optionalExtension: TestAllExtensions.initialize(), + ...msg, }; }, @@ -3921,8 +3965,8 @@ export const TestChildExtension = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeString(1, msg.a); } @@ -3944,7 +3988,7 @@ export const TestChildExtension = { */ _readMessage: function ( msg: TestChildExtension, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestChildExtension { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -3981,7 +4025,7 @@ export const TestRequired = { encode: function (msg: PartialDeep): Uint8Array { return TestRequired._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -3991,14 +4035,14 @@ export const TestRequired = { decode: function (bytes: ByteSource): TestRequired { return TestRequired._readMessage( TestRequired.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestRequired with all fields set to their default value. */ - initialize: function (): TestRequired { + initialize: function (msg?: Partial): TestRequired { return { a: 0, dummy2: 0, @@ -4033,6 +4077,7 @@ export const TestRequired = { dummy31: 0, dummy32: 0, c: 0, + ...msg, }; }, @@ -4041,8 +4086,8 @@ export const TestRequired = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(1, msg.a); } @@ -4150,7 +4195,7 @@ export const TestRequired = { */ _readMessage: function ( msg: TestRequired, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRequired { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -4304,7 +4349,7 @@ export const TestRequiredForeign = { encode: function (msg: PartialDeep): Uint8Array { return TestRequiredForeign._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -4314,18 +4359,21 @@ export const TestRequiredForeign = { decode: function (bytes: ByteSource): TestRequiredForeign { return TestRequiredForeign._readMessage( TestRequiredForeign.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestRequiredForeign with all fields set to their default value. */ - initialize: function (): TestRequiredForeign { + initialize: function ( + msg?: Partial, + ): TestRequiredForeign { return { optionalMessage: TestRequired.initialize(), repeatedMessage: [], dummy: 0, + ...msg, }; }, @@ -4334,8 +4382,8 @@ export const TestRequiredForeign = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.optionalMessage) { writer.writeMessage(1, msg.optionalMessage, TestRequired._writeMessage); } @@ -4357,7 +4405,7 @@ export const TestRequiredForeign = { */ _readMessage: function ( msg: TestRequiredForeign, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRequiredForeign { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -4393,7 +4441,7 @@ export const TestRequiredMessage = { encode: function (msg: PartialDeep): Uint8Array { return TestRequiredMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -4403,18 +4451,21 @@ export const TestRequiredMessage = { decode: function (bytes: ByteSource): TestRequiredMessage { return TestRequiredMessage._readMessage( TestRequiredMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestRequiredMessage with all fields set to their default value. */ - initialize: function (): TestRequiredMessage { + initialize: function ( + msg?: Partial, + ): TestRequiredMessage { return { optionalMessage: TestRequired.initialize(), repeatedMessage: [], requiredMessage: TestRequired.initialize(), + ...msg, }; }, @@ -4423,8 +4474,8 @@ export const TestRequiredMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.optionalMessage) { writer.writeMessage(1, msg.optionalMessage, TestRequired._writeMessage); } @@ -4446,7 +4497,7 @@ export const TestRequiredMessage = { */ _readMessage: function ( msg: TestRequiredMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRequiredMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -4482,7 +4533,7 @@ export const TestForeignNested = { encode: function (msg: PartialDeep): Uint8Array { return TestForeignNested._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -4492,16 +4543,17 @@ export const TestForeignNested = { decode: function (bytes: ByteSource): TestForeignNested { return TestForeignNested._readMessage( TestForeignNested.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestForeignNested with all fields set to their default value. */ - initialize: function (): TestForeignNested { + initialize: function (msg?: Partial): TestForeignNested { return { foreignNested: TestAllTypes.NestedMessage.initialize(), + ...msg, }; }, @@ -4510,8 +4562,8 @@ export const TestForeignNested = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.foreignNested) { writer.writeMessage( 1, @@ -4527,7 +4579,7 @@ export const TestForeignNested = { */ _readMessage: function ( msg: TestForeignNested, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestForeignNested { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -4567,8 +4619,10 @@ export const TestEmptyMessage = { /** * Initializes TestEmptyMessage with all fields set to their default value. */ - initialize: function (): TestEmptyMessage { - return {}; + initialize: function (msg?: Partial): TestEmptyMessage { + return { + ...msg, + }; }, /** @@ -4576,8 +4630,8 @@ export const TestEmptyMessage = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -4586,7 +4640,7 @@ export const TestEmptyMessage = { */ _readMessage: function ( _msg: TestEmptyMessage, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestEmptyMessage { return _msg; }, @@ -4612,8 +4666,12 @@ export const TestEmptyMessageWithExtensions = { /** * Initializes TestEmptyMessageWithExtensions with all fields set to their default value. */ - initialize: function (): TestEmptyMessageWithExtensions { - return {}; + initialize: function ( + msg?: Partial, + ): TestEmptyMessageWithExtensions { + return { + ...msg, + }; }, /** @@ -4621,8 +4679,8 @@ export const TestEmptyMessageWithExtensions = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -4631,7 +4689,7 @@ export const TestEmptyMessageWithExtensions = { */ _readMessage: function ( _msg: TestEmptyMessageWithExtensions, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestEmptyMessageWithExtensions { return _msg; }, @@ -4655,8 +4713,12 @@ export const TestPickleNestedMessage = { /** * Initializes TestPickleNestedMessage with all fields set to their default value. */ - initialize: function (): TestPickleNestedMessage { - return {}; + initialize: function ( + msg?: Partial, + ): TestPickleNestedMessage { + return { + ...msg, + }; }, /** @@ -4664,8 +4726,8 @@ export const TestPickleNestedMessage = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -4674,7 +4736,7 @@ export const TestPickleNestedMessage = { */ _readMessage: function ( _msg: TestPickleNestedMessage, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestPickleNestedMessage { return _msg; }, @@ -4688,7 +4750,7 @@ export const TestPickleNestedMessage = { ): Uint8Array { return TestPickleNestedMessage.NestedMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -4700,16 +4762,19 @@ export const TestPickleNestedMessage = { ): TestPickleNestedMessage.NestedMessage { return TestPickleNestedMessage.NestedMessage._readMessage( TestPickleNestedMessage.NestedMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestPickleNestedMessage.NestedMessage with all fields set to their default value. */ - initialize: function (): TestPickleNestedMessage.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestPickleNestedMessage.NestedMessage { return { bb: 0, + ...msg, }; }, @@ -4718,8 +4783,8 @@ export const TestPickleNestedMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.bb) { writer.writeInt32(1, msg.bb); } @@ -4731,7 +4796,7 @@ export const TestPickleNestedMessage = { */ _readMessage: function ( msg: TestPickleNestedMessage.NestedMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestPickleNestedMessage.NestedMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -4758,7 +4823,7 @@ export const TestPickleNestedMessage = { ): Uint8Array { return TestPickleNestedMessage.NestedMessage.NestedNestedMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -4770,27 +4835,29 @@ export const TestPickleNestedMessage = { ): TestPickleNestedMessage.NestedMessage.NestedNestedMessage { return TestPickleNestedMessage.NestedMessage.NestedNestedMessage._readMessage( TestPickleNestedMessage.NestedMessage.NestedNestedMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestPickleNestedMessage.NestedMessage.NestedNestedMessage with all fields set to their default value. */ - initialize: - function (): TestPickleNestedMessage.NestedMessage.NestedNestedMessage { - return { - cc: 0, - }; - }, + initialize: function ( + msg?: Partial, + ): TestPickleNestedMessage.NestedMessage.NestedNestedMessage { + return { + cc: 0, + ...msg, + }; + }, /** * @private */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.cc) { writer.writeInt32(1, msg.cc); } @@ -4802,7 +4869,7 @@ export const TestPickleNestedMessage = { */ _readMessage: function ( msg: TestPickleNestedMessage.NestedMessage.NestedNestedMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestPickleNestedMessage.NestedMessage.NestedNestedMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -4843,8 +4910,12 @@ export const TestMultipleExtensionRanges = { /** * Initializes TestMultipleExtensionRanges with all fields set to their default value. */ - initialize: function (): TestMultipleExtensionRanges { - return {}; + initialize: function ( + msg?: Partial, + ): TestMultipleExtensionRanges { + return { + ...msg, + }; }, /** @@ -4852,8 +4923,8 @@ export const TestMultipleExtensionRanges = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -4862,7 +4933,7 @@ export const TestMultipleExtensionRanges = { */ _readMessage: function ( _msg: TestMultipleExtensionRanges, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestMultipleExtensionRanges { return _msg; }, @@ -4875,7 +4946,7 @@ export const TestReallyLargeTagNumber = { encode: function (msg: PartialDeep): Uint8Array { return TestReallyLargeTagNumber._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -4885,17 +4956,20 @@ export const TestReallyLargeTagNumber = { decode: function (bytes: ByteSource): TestReallyLargeTagNumber { return TestReallyLargeTagNumber._readMessage( TestReallyLargeTagNumber.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestReallyLargeTagNumber with all fields set to their default value. */ - initialize: function (): TestReallyLargeTagNumber { + initialize: function ( + msg?: Partial, + ): TestReallyLargeTagNumber { return { a: 0, bb: 0, + ...msg, }; }, @@ -4904,8 +4978,8 @@ export const TestReallyLargeTagNumber = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(1, msg.a); } @@ -4920,7 +4994,7 @@ export const TestReallyLargeTagNumber = { */ _readMessage: function ( msg: TestReallyLargeTagNumber, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestReallyLargeTagNumber { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -4950,7 +5024,7 @@ export const TestRecursiveMessage = { encode: function (msg: PartialDeep): Uint8Array { return TestRecursiveMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -4960,17 +5034,20 @@ export const TestRecursiveMessage = { decode: function (bytes: ByteSource): TestRecursiveMessage { return TestRecursiveMessage._readMessage( TestRecursiveMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestRecursiveMessage with all fields set to their default value. */ - initialize: function (): TestRecursiveMessage { + initialize: function ( + msg?: Partial, + ): TestRecursiveMessage { return { a: undefined, i: 0, + ...msg, }; }, @@ -4979,8 +5056,8 @@ export const TestRecursiveMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeMessage(1, msg.a, TestRecursiveMessage._writeMessage); } @@ -4995,7 +5072,7 @@ export const TestRecursiveMessage = { */ _readMessage: function ( msg: TestRecursiveMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRecursiveMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5026,7 +5103,7 @@ export const TestMutualRecursionA = { encode: function (msg: PartialDeep): Uint8Array { return TestMutualRecursionA._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5036,16 +5113,19 @@ export const TestMutualRecursionA = { decode: function (bytes: ByteSource): TestMutualRecursionA { return TestMutualRecursionA._readMessage( TestMutualRecursionA.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestMutualRecursionA with all fields set to their default value. */ - initialize: function (): TestMutualRecursionA { + initialize: function ( + msg?: Partial, + ): TestMutualRecursionA { return { bb: TestMutualRecursionB.initialize(), + ...msg, }; }, @@ -5054,8 +5134,8 @@ export const TestMutualRecursionA = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.bb) { writer.writeMessage(1, msg.bb, TestMutualRecursionB._writeMessage); } @@ -5067,7 +5147,7 @@ export const TestMutualRecursionA = { */ _readMessage: function ( msg: TestMutualRecursionA, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMutualRecursionA { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5094,7 +5174,7 @@ export const TestMutualRecursionA = { ): Uint8Array { return TestMutualRecursionA.SubMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5104,16 +5184,19 @@ export const TestMutualRecursionA = { decode: function (bytes: ByteSource): TestMutualRecursionA.SubMessage { return TestMutualRecursionA.SubMessage._readMessage( TestMutualRecursionA.SubMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestMutualRecursionA.SubMessage with all fields set to their default value. */ - initialize: function (): TestMutualRecursionA.SubMessage { + initialize: function ( + msg?: Partial, + ): TestMutualRecursionA.SubMessage { return { b: TestMutualRecursionB.initialize(), + ...msg, }; }, @@ -5122,8 +5205,8 @@ export const TestMutualRecursionA = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.b) { writer.writeMessage(1, msg.b, TestMutualRecursionB._writeMessage); } @@ -5135,7 +5218,7 @@ export const TestMutualRecursionA = { */ _readMessage: function ( msg: TestMutualRecursionA.SubMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMutualRecursionA.SubMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5163,7 +5246,7 @@ export const TestMutualRecursionA = { ): Uint8Array { return TestMutualRecursionA.SubGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5173,17 +5256,20 @@ export const TestMutualRecursionA = { decode: function (bytes: ByteSource): TestMutualRecursionA.SubGroup { return TestMutualRecursionA.SubGroup._readMessage( TestMutualRecursionA.SubGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestMutualRecursionA.SubGroup with all fields set to their default value. */ - initialize: function (): TestMutualRecursionA.SubGroup { + initialize: function ( + msg?: Partial, + ): TestMutualRecursionA.SubGroup { return { subMessage: TestMutualRecursionA.SubMessage.initialize(), notInThisScc: TestAllTypes.initialize(), + ...msg, }; }, @@ -5192,8 +5278,8 @@ export const TestMutualRecursionA = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.subMessage) { writer.writeMessage( 3, @@ -5212,7 +5298,7 @@ export const TestMutualRecursionA = { */ _readMessage: function ( msg: TestMutualRecursionA.SubGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMutualRecursionA.SubGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5246,7 +5332,7 @@ export const TestMutualRecursionB = { encode: function (msg: PartialDeep): Uint8Array { return TestMutualRecursionB._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5256,17 +5342,20 @@ export const TestMutualRecursionB = { decode: function (bytes: ByteSource): TestMutualRecursionB { return TestMutualRecursionB._readMessage( TestMutualRecursionB.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestMutualRecursionB with all fields set to their default value. */ - initialize: function (): TestMutualRecursionB { + initialize: function ( + msg?: Partial, + ): TestMutualRecursionB { return { a: TestMutualRecursionA.initialize(), optionalInt32: 0, + ...msg, }; }, @@ -5275,8 +5364,8 @@ export const TestMutualRecursionB = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeMessage(1, msg.a, TestMutualRecursionA._writeMessage); } @@ -5291,7 +5380,7 @@ export const TestMutualRecursionB = { */ _readMessage: function ( msg: TestMutualRecursionB, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMutualRecursionB { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5321,7 +5410,7 @@ export const TestIsInitialized = { encode: function (msg: PartialDeep): Uint8Array { return TestIsInitialized._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5331,16 +5420,17 @@ export const TestIsInitialized = { decode: function (bytes: ByteSource): TestIsInitialized { return TestIsInitialized._readMessage( TestIsInitialized.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestIsInitialized with all fields set to their default value. */ - initialize: function (): TestIsInitialized { + initialize: function (msg?: Partial): TestIsInitialized { return { subMessage: TestIsInitialized.SubMessage.initialize(), + ...msg, }; }, @@ -5349,8 +5439,8 @@ export const TestIsInitialized = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.subMessage) { writer.writeMessage( 1, @@ -5366,7 +5456,7 @@ export const TestIsInitialized = { */ _readMessage: function ( msg: TestIsInitialized, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestIsInitialized { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5407,8 +5497,12 @@ export const TestIsInitialized = { /** * Initializes TestIsInitialized.SubMessage with all fields set to their default value. */ - initialize: function (): TestIsInitialized.SubMessage { - return {}; + initialize: function ( + msg?: Partial, + ): TestIsInitialized.SubMessage { + return { + ...msg, + }; }, /** @@ -5416,8 +5510,8 @@ export const TestIsInitialized = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -5426,7 +5520,7 @@ export const TestIsInitialized = { */ _readMessage: function ( _msg: TestIsInitialized.SubMessage, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestIsInitialized.SubMessage { return _msg; }, @@ -5440,7 +5534,7 @@ export const TestIsInitialized = { ): Uint8Array { return TestIsInitialized.SubMessage.SubGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5452,16 +5546,19 @@ export const TestIsInitialized = { ): TestIsInitialized.SubMessage.SubGroup { return TestIsInitialized.SubMessage.SubGroup._readMessage( TestIsInitialized.SubMessage.SubGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestIsInitialized.SubMessage.SubGroup with all fields set to their default value. */ - initialize: function (): TestIsInitialized.SubMessage.SubGroup { + initialize: function ( + msg?: Partial, + ): TestIsInitialized.SubMessage.SubGroup { return { i: 0, + ...msg, }; }, @@ -5470,8 +5567,8 @@ export const TestIsInitialized = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.i) { writer.writeInt32(2, msg.i); } @@ -5483,7 +5580,7 @@ export const TestIsInitialized = { */ _readMessage: function ( msg: TestIsInitialized.SubMessage.SubGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestIsInitialized.SubMessage.SubGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5511,7 +5608,7 @@ export const TestDupFieldNumber = { encode: function (msg: PartialDeep): Uint8Array { return TestDupFieldNumber._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5521,16 +5618,17 @@ export const TestDupFieldNumber = { decode: function (bytes: ByteSource): TestDupFieldNumber { return TestDupFieldNumber._readMessage( TestDupFieldNumber.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestDupFieldNumber with all fields set to their default value. */ - initialize: function (): TestDupFieldNumber { + initialize: function (msg?: Partial): TestDupFieldNumber { return { a: 0, + ...msg, }; }, @@ -5539,8 +5637,8 @@ export const TestDupFieldNumber = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(1, msg.a); } @@ -5552,7 +5650,7 @@ export const TestDupFieldNumber = { */ _readMessage: function ( msg: TestDupFieldNumber, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestDupFieldNumber { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5577,7 +5675,7 @@ export const TestDupFieldNumber = { encode: function (msg: PartialDeep): Uint8Array { return TestDupFieldNumber.Foo._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5587,16 +5685,19 @@ export const TestDupFieldNumber = { decode: function (bytes: ByteSource): TestDupFieldNumber.Foo { return TestDupFieldNumber.Foo._readMessage( TestDupFieldNumber.Foo.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestDupFieldNumber.Foo with all fields set to their default value. */ - initialize: function (): TestDupFieldNumber.Foo { + initialize: function ( + msg?: Partial, + ): TestDupFieldNumber.Foo { return { a: 0, + ...msg, }; }, @@ -5605,8 +5706,8 @@ export const TestDupFieldNumber = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(1, msg.a); } @@ -5618,7 +5719,7 @@ export const TestDupFieldNumber = { */ _readMessage: function ( msg: TestDupFieldNumber.Foo, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestDupFieldNumber.Foo { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5644,7 +5745,7 @@ export const TestDupFieldNumber = { encode: function (msg: PartialDeep): Uint8Array { return TestDupFieldNumber.Bar._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5654,16 +5755,19 @@ export const TestDupFieldNumber = { decode: function (bytes: ByteSource): TestDupFieldNumber.Bar { return TestDupFieldNumber.Bar._readMessage( TestDupFieldNumber.Bar.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestDupFieldNumber.Bar with all fields set to their default value. */ - initialize: function (): TestDupFieldNumber.Bar { + initialize: function ( + msg?: Partial, + ): TestDupFieldNumber.Bar { return { a: 0, + ...msg, }; }, @@ -5672,8 +5776,8 @@ export const TestDupFieldNumber = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(1, msg.a); } @@ -5685,7 +5789,7 @@ export const TestDupFieldNumber = { */ _readMessage: function ( msg: TestDupFieldNumber.Bar, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestDupFieldNumber.Bar { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5712,7 +5816,7 @@ export const TestEagerMessage = { encode: function (msg: PartialDeep): Uint8Array { return TestEagerMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5722,16 +5826,17 @@ export const TestEagerMessage = { decode: function (bytes: ByteSource): TestEagerMessage { return TestEagerMessage._readMessage( TestEagerMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestEagerMessage with all fields set to their default value. */ - initialize: function (): TestEagerMessage { + initialize: function (msg?: Partial): TestEagerMessage { return { subMessage: TestAllTypes.initialize(), + ...msg, }; }, @@ -5740,8 +5845,8 @@ export const TestEagerMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.subMessage) { writer.writeMessage(1, msg.subMessage, TestAllTypes._writeMessage); } @@ -5753,7 +5858,7 @@ export const TestEagerMessage = { */ _readMessage: function ( msg: TestEagerMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestEagerMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5779,7 +5884,7 @@ export const TestLazyMessage = { encode: function (msg: PartialDeep): Uint8Array { return TestLazyMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5789,16 +5894,17 @@ export const TestLazyMessage = { decode: function (bytes: ByteSource): TestLazyMessage { return TestLazyMessage._readMessage( TestLazyMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestLazyMessage with all fields set to their default value. */ - initialize: function (): TestLazyMessage { + initialize: function (msg?: Partial): TestLazyMessage { return { subMessage: TestAllTypes.initialize(), + ...msg, }; }, @@ -5807,8 +5913,8 @@ export const TestLazyMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.subMessage) { writer.writeMessage(1, msg.subMessage, TestAllTypes._writeMessage); } @@ -5820,7 +5926,7 @@ export const TestLazyMessage = { */ _readMessage: function ( msg: TestLazyMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestLazyMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5846,7 +5952,7 @@ export const TestNestedMessageHasBits = { encode: function (msg: PartialDeep): Uint8Array { return TestNestedMessageHasBits._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5856,17 +5962,20 @@ export const TestNestedMessageHasBits = { decode: function (bytes: ByteSource): TestNestedMessageHasBits { return TestNestedMessageHasBits._readMessage( TestNestedMessageHasBits.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestNestedMessageHasBits with all fields set to their default value. */ - initialize: function (): TestNestedMessageHasBits { + initialize: function ( + msg?: Partial, + ): TestNestedMessageHasBits { return { optionalNestedMessage: TestNestedMessageHasBits.NestedMessage.initialize(), + ...msg, }; }, @@ -5875,8 +5984,8 @@ export const TestNestedMessageHasBits = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.optionalNestedMessage) { writer.writeMessage( 1, @@ -5892,7 +6001,7 @@ export const TestNestedMessageHasBits = { */ _readMessage: function ( msg: TestNestedMessageHasBits, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestNestedMessageHasBits { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -5922,7 +6031,7 @@ export const TestNestedMessageHasBits = { ): Uint8Array { return TestNestedMessageHasBits.NestedMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -5934,17 +6043,20 @@ export const TestNestedMessageHasBits = { ): TestNestedMessageHasBits.NestedMessage { return TestNestedMessageHasBits.NestedMessage._readMessage( TestNestedMessageHasBits.NestedMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestNestedMessageHasBits.NestedMessage with all fields set to their default value. */ - initialize: function (): TestNestedMessageHasBits.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestNestedMessageHasBits.NestedMessage { return { nestedmessageRepeatedInt32: [], nestedmessageRepeatedForeignmessage: [], + ...msg, }; }, @@ -5953,8 +6065,8 @@ export const TestNestedMessageHasBits = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.nestedmessageRepeatedInt32?.length) { writer.writePackedInt32(1, msg.nestedmessageRepeatedInt32); } @@ -5973,7 +6085,7 @@ export const TestNestedMessageHasBits = { */ _readMessage: function ( msg: TestNestedMessageHasBits.NestedMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestNestedMessageHasBits.NestedMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -6010,7 +6122,7 @@ export const TestCamelCaseFieldNames = { encode: function (msg: PartialDeep): Uint8Array { return TestCamelCaseFieldNames._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -6020,14 +6132,16 @@ export const TestCamelCaseFieldNames = { decode: function (bytes: ByteSource): TestCamelCaseFieldNames { return TestCamelCaseFieldNames._readMessage( TestCamelCaseFieldNames.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestCamelCaseFieldNames with all fields set to their default value. */ - initialize: function (): TestCamelCaseFieldNames { + initialize: function ( + msg?: Partial, + ): TestCamelCaseFieldNames { return { PrimitiveField: 0, StringField: "", @@ -6041,6 +6155,7 @@ export const TestCamelCaseFieldNames = { RepeatedMessageField: [], RepeatedStringPieceField: [], RepeatedCordField: [], + ...msg, }; }, @@ -6049,8 +6164,8 @@ export const TestCamelCaseFieldNames = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.PrimitiveField) { writer.writeInt32(1, msg.PrimitiveField); } @@ -6099,7 +6214,7 @@ export const TestCamelCaseFieldNames = { */ _readMessage: function ( msg: TestCamelCaseFieldNames, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestCamelCaseFieldNames { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -6181,7 +6296,7 @@ export const TestFieldOrderings = { encode: function (msg: PartialDeep): Uint8Array { return TestFieldOrderings._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -6191,19 +6306,20 @@ export const TestFieldOrderings = { decode: function (bytes: ByteSource): TestFieldOrderings { return TestFieldOrderings._readMessage( TestFieldOrderings.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestFieldOrderings with all fields set to their default value. */ - initialize: function (): TestFieldOrderings { + initialize: function (msg?: Partial): TestFieldOrderings { return { myString: "", myInt: 0n, myFloat: 0, optionalNestedMessage: TestFieldOrderings.NestedMessage.initialize(), + ...msg, }; }, @@ -6212,8 +6328,8 @@ export const TestFieldOrderings = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.myString) { writer.writeString(11, msg.myString); } @@ -6238,7 +6354,7 @@ export const TestFieldOrderings = { */ _readMessage: function ( msg: TestFieldOrderings, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestFieldOrderings { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -6280,7 +6396,7 @@ export const TestFieldOrderings = { ): Uint8Array { return TestFieldOrderings.NestedMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -6290,17 +6406,20 @@ export const TestFieldOrderings = { decode: function (bytes: ByteSource): TestFieldOrderings.NestedMessage { return TestFieldOrderings.NestedMessage._readMessage( TestFieldOrderings.NestedMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestFieldOrderings.NestedMessage with all fields set to their default value. */ - initialize: function (): TestFieldOrderings.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestFieldOrderings.NestedMessage { return { oo: 0n, bb: 0, + ...msg, }; }, @@ -6309,8 +6428,8 @@ export const TestFieldOrderings = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.oo) { writer.writeInt64String(2, msg.oo.toString() as any); } @@ -6325,7 +6444,7 @@ export const TestFieldOrderings = { */ _readMessage: function ( msg: TestFieldOrderings.NestedMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestFieldOrderings.NestedMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -6356,7 +6475,7 @@ export const TestExtensionOrderings1 = { encode: function (msg: PartialDeep): Uint8Array { return TestExtensionOrderings1._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -6366,16 +6485,19 @@ export const TestExtensionOrderings1 = { decode: function (bytes: ByteSource): TestExtensionOrderings1 { return TestExtensionOrderings1._readMessage( TestExtensionOrderings1.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestExtensionOrderings1 with all fields set to their default value. */ - initialize: function (): TestExtensionOrderings1 { + initialize: function ( + msg?: Partial, + ): TestExtensionOrderings1 { return { myString: "", + ...msg, }; }, @@ -6384,8 +6506,8 @@ export const TestExtensionOrderings1 = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.myString) { writer.writeString(1, msg.myString); } @@ -6397,7 +6519,7 @@ export const TestExtensionOrderings1 = { */ _readMessage: function ( msg: TestExtensionOrderings1, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestExtensionOrderings1 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -6423,7 +6545,7 @@ export const TestExtensionOrderings2 = { encode: function (msg: PartialDeep): Uint8Array { return TestExtensionOrderings2._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -6433,16 +6555,19 @@ export const TestExtensionOrderings2 = { decode: function (bytes: ByteSource): TestExtensionOrderings2 { return TestExtensionOrderings2._readMessage( TestExtensionOrderings2.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestExtensionOrderings2 with all fields set to their default value. */ - initialize: function (): TestExtensionOrderings2 { + initialize: function ( + msg?: Partial, + ): TestExtensionOrderings2 { return { myString: "", + ...msg, }; }, @@ -6451,8 +6576,8 @@ export const TestExtensionOrderings2 = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.myString) { writer.writeString(1, msg.myString); } @@ -6464,7 +6589,7 @@ export const TestExtensionOrderings2 = { */ _readMessage: function ( msg: TestExtensionOrderings2, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestExtensionOrderings2 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -6491,7 +6616,7 @@ export const TestExtensionOrderings2 = { ): Uint8Array { return TestExtensionOrderings2.TestExtensionOrderings3._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -6503,16 +6628,19 @@ export const TestExtensionOrderings2 = { ): TestExtensionOrderings2.TestExtensionOrderings3 { return TestExtensionOrderings2.TestExtensionOrderings3._readMessage( TestExtensionOrderings2.TestExtensionOrderings3.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestExtensionOrderings2.TestExtensionOrderings3 with all fields set to their default value. */ - initialize: function (): TestExtensionOrderings2.TestExtensionOrderings3 { + initialize: function ( + msg?: Partial, + ): TestExtensionOrderings2.TestExtensionOrderings3 { return { myString: "", + ...msg, }; }, @@ -6521,8 +6649,8 @@ export const TestExtensionOrderings2 = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.myString) { writer.writeString(1, msg.myString); } @@ -6534,7 +6662,7 @@ export const TestExtensionOrderings2 = { */ _readMessage: function ( msg: TestExtensionOrderings2.TestExtensionOrderings3, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestExtensionOrderings2.TestExtensionOrderings3 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -6561,7 +6689,7 @@ export const TestExtremeDefaultValues = { encode: function (msg: PartialDeep): Uint8Array { return TestExtremeDefaultValues._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -6571,14 +6699,16 @@ export const TestExtremeDefaultValues = { decode: function (bytes: ByteSource): TestExtremeDefaultValues { return TestExtremeDefaultValues._readMessage( TestExtremeDefaultValues.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestExtremeDefaultValues with all fields set to their default value. */ - initialize: function (): TestExtremeDefaultValues { + initialize: function ( + msg?: Partial, + ): TestExtremeDefaultValues { return { escapedBytes: new Uint8Array(), largeUint32: 0, @@ -6607,6 +6737,7 @@ export const TestExtremeDefaultValues = { stringPieceWithZero: "", cordWithZero: "", replacementString: "", + ...msg, }; }, @@ -6615,8 +6746,8 @@ export const TestExtremeDefaultValues = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.escapedBytes?.length) { writer.writeBytes(1, msg.escapedBytes); } @@ -6706,7 +6837,7 @@ export const TestExtremeDefaultValues = { */ _readMessage: function ( msg: TestExtremeDefaultValues, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestExtremeDefaultValues { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -6836,7 +6967,7 @@ export const SparseEnumMessage = { encode: function (msg: PartialDeep): Uint8Array { return SparseEnumMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -6846,16 +6977,17 @@ export const SparseEnumMessage = { decode: function (bytes: ByteSource): SparseEnumMessage { return SparseEnumMessage._readMessage( SparseEnumMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes SparseEnumMessage with all fields set to their default value. */ - initialize: function (): SparseEnumMessage { + initialize: function (msg?: Partial): SparseEnumMessage { return { sparseEnum: TestSparseEnum._fromInt(0), + ...msg, }; }, @@ -6864,8 +6996,8 @@ export const SparseEnumMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.sparseEnum && TestSparseEnum._toInt(msg.sparseEnum)) { writer.writeEnum(1, TestSparseEnum._toInt(msg.sparseEnum)); } @@ -6877,7 +7009,7 @@ export const SparseEnumMessage = { */ _readMessage: function ( msg: SparseEnumMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): SparseEnumMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -6901,7 +7033,10 @@ export const OneString = { * Serializes OneString to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return OneString._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return OneString._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -6910,16 +7045,17 @@ export const OneString = { decode: function (bytes: ByteSource): OneString { return OneString._readMessage( OneString.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes OneString with all fields set to their default value. */ - initialize: function (): OneString { + initialize: function (msg?: Partial): OneString { return { data: "", + ...msg, }; }, @@ -6928,8 +7064,8 @@ export const OneString = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.data) { writer.writeString(1, msg.data); } @@ -6939,7 +7075,10 @@ export const OneString = { /** * @private */ - _readMessage: function (msg: OneString, reader: BinaryReader): OneString { + _readMessage: function ( + msg: OneString, + reader: protoscript.BinaryReader, + ): OneString { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -6962,7 +7101,10 @@ export const MoreString = { * Serializes MoreString to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return MoreString._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return MoreString._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -6971,16 +7113,17 @@ export const MoreString = { decode: function (bytes: ByteSource): MoreString { return MoreString._readMessage( MoreString.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes MoreString with all fields set to their default value. */ - initialize: function (): MoreString { + initialize: function (msg?: Partial): MoreString { return { data: [], + ...msg, }; }, @@ -6989,8 +7132,8 @@ export const MoreString = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.data?.length) { writer.writeRepeatedString(1, msg.data); } @@ -7000,7 +7143,10 @@ export const MoreString = { /** * @private */ - _readMessage: function (msg: MoreString, reader: BinaryReader): MoreString { + _readMessage: function ( + msg: MoreString, + reader: protoscript.BinaryReader, + ): MoreString { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -7023,7 +7169,10 @@ export const OneBytes = { * Serializes OneBytes to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return OneBytes._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return OneBytes._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -7032,16 +7181,17 @@ export const OneBytes = { decode: function (bytes: ByteSource): OneBytes { return OneBytes._readMessage( OneBytes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes OneBytes with all fields set to their default value. */ - initialize: function (): OneBytes { + initialize: function (msg?: Partial): OneBytes { return { data: new Uint8Array(), + ...msg, }; }, @@ -7050,8 +7200,8 @@ export const OneBytes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.data?.length) { writer.writeBytes(1, msg.data); } @@ -7061,7 +7211,10 @@ export const OneBytes = { /** * @private */ - _readMessage: function (msg: OneBytes, reader: BinaryReader): OneBytes { + _readMessage: function ( + msg: OneBytes, + reader: protoscript.BinaryReader, + ): OneBytes { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -7084,7 +7237,10 @@ export const MoreBytes = { * Serializes MoreBytes to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return MoreBytes._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return MoreBytes._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -7093,16 +7249,17 @@ export const MoreBytes = { decode: function (bytes: ByteSource): MoreBytes { return MoreBytes._readMessage( MoreBytes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes MoreBytes with all fields set to their default value. */ - initialize: function (): MoreBytes { + initialize: function (msg?: Partial): MoreBytes { return { data: [], + ...msg, }; }, @@ -7111,8 +7268,8 @@ export const MoreBytes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.data?.length) { writer.writeRepeatedBytes(1, msg.data); } @@ -7122,7 +7279,10 @@ export const MoreBytes = { /** * @private */ - _readMessage: function (msg: MoreBytes, reader: BinaryReader): MoreBytes { + _readMessage: function ( + msg: MoreBytes, + reader: protoscript.BinaryReader, + ): MoreBytes { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -7147,7 +7307,7 @@ export const Int32Message = { encode: function (msg: PartialDeep): Uint8Array { return Int32Message._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -7157,16 +7317,17 @@ export const Int32Message = { decode: function (bytes: ByteSource): Int32Message { return Int32Message._readMessage( Int32Message.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes Int32Message with all fields set to their default value. */ - initialize: function (): Int32Message { + initialize: function (msg?: Partial): Int32Message { return { data: 0, + ...msg, }; }, @@ -7175,8 +7336,8 @@ export const Int32Message = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.data) { writer.writeInt32(1, msg.data); } @@ -7188,7 +7349,7 @@ export const Int32Message = { */ _readMessage: function ( msg: Int32Message, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): Int32Message { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -7214,7 +7375,7 @@ export const Uint32Message = { encode: function (msg: PartialDeep): Uint8Array { return Uint32Message._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -7224,16 +7385,17 @@ export const Uint32Message = { decode: function (bytes: ByteSource): Uint32Message { return Uint32Message._readMessage( Uint32Message.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes Uint32Message with all fields set to their default value. */ - initialize: function (): Uint32Message { + initialize: function (msg?: Partial): Uint32Message { return { data: 0, + ...msg, }; }, @@ -7242,8 +7404,8 @@ export const Uint32Message = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.data) { writer.writeUint32(1, msg.data); } @@ -7255,7 +7417,7 @@ export const Uint32Message = { */ _readMessage: function ( msg: Uint32Message, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): Uint32Message { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -7281,7 +7443,7 @@ export const Int64Message = { encode: function (msg: PartialDeep): Uint8Array { return Int64Message._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -7291,16 +7453,17 @@ export const Int64Message = { decode: function (bytes: ByteSource): Int64Message { return Int64Message._readMessage( Int64Message.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes Int64Message with all fields set to their default value. */ - initialize: function (): Int64Message { + initialize: function (msg?: Partial): Int64Message { return { data: 0n, + ...msg, }; }, @@ -7309,8 +7472,8 @@ export const Int64Message = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.data) { writer.writeInt64String(1, msg.data.toString() as any); } @@ -7322,7 +7485,7 @@ export const Int64Message = { */ _readMessage: function ( msg: Int64Message, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): Int64Message { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -7348,7 +7511,7 @@ export const Uint64Message = { encode: function (msg: PartialDeep): Uint8Array { return Uint64Message._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -7358,16 +7521,17 @@ export const Uint64Message = { decode: function (bytes: ByteSource): Uint64Message { return Uint64Message._readMessage( Uint64Message.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes Uint64Message with all fields set to their default value. */ - initialize: function (): Uint64Message { + initialize: function (msg?: Partial): Uint64Message { return { data: 0n, + ...msg, }; }, @@ -7376,8 +7540,8 @@ export const Uint64Message = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.data) { writer.writeUint64String(1, msg.data.toString() as any); } @@ -7389,7 +7553,7 @@ export const Uint64Message = { */ _readMessage: function ( msg: Uint64Message, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): Uint64Message { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -7413,7 +7577,10 @@ export const BoolMessage = { * Serializes BoolMessage to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return BoolMessage._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return BoolMessage._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -7422,16 +7589,17 @@ export const BoolMessage = { decode: function (bytes: ByteSource): BoolMessage { return BoolMessage._readMessage( BoolMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes BoolMessage with all fields set to their default value. */ - initialize: function (): BoolMessage { + initialize: function (msg?: Partial): BoolMessage { return { data: false, + ...msg, }; }, @@ -7440,8 +7608,8 @@ export const BoolMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.data) { writer.writeBool(1, msg.data); } @@ -7451,7 +7619,10 @@ export const BoolMessage = { /** * @private */ - _readMessage: function (msg: BoolMessage, reader: BinaryReader): BoolMessage { + _readMessage: function ( + msg: BoolMessage, + reader: protoscript.BinaryReader, + ): BoolMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -7474,7 +7645,10 @@ export const TestOneof = { * Serializes TestOneof to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return TestOneof._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return TestOneof._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -7483,18 +7657,19 @@ export const TestOneof = { decode: function (bytes: ByteSource): TestOneof { return TestOneof._readMessage( TestOneof.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestOneof with all fields set to their default value. */ - initialize: function (): TestOneof { + initialize: function (msg?: Partial): TestOneof { return { fooInt: undefined, fooString: undefined, fooMessage: undefined, + ...msg, }; }, @@ -7503,8 +7678,8 @@ export const TestOneof = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.fooInt != undefined) { writer.writeInt32(1, msg.fooInt); } @@ -7520,7 +7695,10 @@ export const TestOneof = { /** * @private */ - _readMessage: function (msg: TestOneof, reader: BinaryReader): TestOneof { + _readMessage: function ( + msg: TestOneof, + reader: protoscript.BinaryReader, + ): TestOneof { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -7553,7 +7731,7 @@ export const TestOneof = { encode: function (msg: PartialDeep): Uint8Array { return TestOneof.FooGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -7563,17 +7741,20 @@ export const TestOneof = { decode: function (bytes: ByteSource): TestOneof.FooGroup { return TestOneof.FooGroup._readMessage( TestOneof.FooGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestOneof.FooGroup with all fields set to their default value. */ - initialize: function (): TestOneof.FooGroup { + initialize: function ( + msg?: Partial, + ): TestOneof.FooGroup { return { a: 0, b: "", + ...msg, }; }, @@ -7582,8 +7763,8 @@ export const TestOneof = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(5, msg.a); } @@ -7598,7 +7779,7 @@ export const TestOneof = { */ _readMessage: function ( msg: TestOneof.FooGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestOneof.FooGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -7631,7 +7812,7 @@ export const TestOneofBackwardsCompatible = { ): Uint8Array { return TestOneofBackwardsCompatible._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -7641,18 +7822,21 @@ export const TestOneofBackwardsCompatible = { decode: function (bytes: ByteSource): TestOneofBackwardsCompatible { return TestOneofBackwardsCompatible._readMessage( TestOneofBackwardsCompatible.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestOneofBackwardsCompatible with all fields set to their default value. */ - initialize: function (): TestOneofBackwardsCompatible { + initialize: function ( + msg?: Partial, + ): TestOneofBackwardsCompatible { return { fooInt: 0, fooString: "", fooMessage: TestAllTypes.initialize(), + ...msg, }; }, @@ -7661,8 +7845,8 @@ export const TestOneofBackwardsCompatible = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.fooInt) { writer.writeInt32(1, msg.fooInt); } @@ -7680,7 +7864,7 @@ export const TestOneofBackwardsCompatible = { */ _readMessage: function ( msg: TestOneofBackwardsCompatible, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestOneofBackwardsCompatible { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -7715,7 +7899,7 @@ export const TestOneofBackwardsCompatible = { ): Uint8Array { return TestOneofBackwardsCompatible.FooGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -7727,17 +7911,20 @@ export const TestOneofBackwardsCompatible = { ): TestOneofBackwardsCompatible.FooGroup { return TestOneofBackwardsCompatible.FooGroup._readMessage( TestOneofBackwardsCompatible.FooGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestOneofBackwardsCompatible.FooGroup with all fields set to their default value. */ - initialize: function (): TestOneofBackwardsCompatible.FooGroup { + initialize: function ( + msg?: Partial, + ): TestOneofBackwardsCompatible.FooGroup { return { a: 0, b: "", + ...msg, }; }, @@ -7746,8 +7933,8 @@ export const TestOneofBackwardsCompatible = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(5, msg.a); } @@ -7762,7 +7949,7 @@ export const TestOneofBackwardsCompatible = { */ _readMessage: function ( msg: TestOneofBackwardsCompatible.FooGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestOneofBackwardsCompatible.FooGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -7791,7 +7978,10 @@ export const TestOneof2 = { * Serializes TestOneof2 to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return TestOneof2._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return TestOneof2._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -7800,14 +7990,14 @@ export const TestOneof2 = { decode: function (bytes: ByteSource): TestOneof2 { return TestOneof2._readMessage( TestOneof2.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestOneof2 with all fields set to their default value. */ - initialize: function (): TestOneof2 { + initialize: function (msg?: Partial): TestOneof2 { return { fooInt: undefined, fooString: undefined, @@ -7829,6 +8019,7 @@ export const TestOneof2 = { barBytesWithEmptyDefault: undefined, bazInt: 0, bazString: "", + ...msg, }; }, @@ -7837,8 +8028,8 @@ export const TestOneof2 = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.fooInt != undefined) { writer.writeInt32(1, msg.fooInt); } @@ -7913,7 +8104,10 @@ export const TestOneof2 = { /** * @private */ - _readMessage: function (msg: TestOneof2, reader: BinaryReader): TestOneof2 { + _readMessage: function ( + msg: TestOneof2, + reader: protoscript.BinaryReader, + ): TestOneof2 { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -8067,7 +8261,7 @@ export const TestOneof2 = { encode: function (msg: PartialDeep): Uint8Array { return TestOneof2.FooGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -8077,17 +8271,20 @@ export const TestOneof2 = { decode: function (bytes: ByteSource): TestOneof2.FooGroup { return TestOneof2.FooGroup._readMessage( TestOneof2.FooGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestOneof2.FooGroup with all fields set to their default value. */ - initialize: function (): TestOneof2.FooGroup { + initialize: function ( + msg?: Partial, + ): TestOneof2.FooGroup { return { a: 0, b: "", + ...msg, }; }, @@ -8096,8 +8293,8 @@ export const TestOneof2 = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeInt32(9, msg.a); } @@ -8112,7 +8309,7 @@ export const TestOneof2 = { */ _readMessage: function ( msg: TestOneof2.FooGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestOneof2.FooGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -8142,7 +8339,7 @@ export const TestOneof2 = { encode: function (msg: PartialDeep): Uint8Array { return TestOneof2.NestedMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -8152,17 +8349,20 @@ export const TestOneof2 = { decode: function (bytes: ByteSource): TestOneof2.NestedMessage { return TestOneof2.NestedMessage._readMessage( TestOneof2.NestedMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestOneof2.NestedMessage with all fields set to their default value. */ - initialize: function (): TestOneof2.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestOneof2.NestedMessage { return { quxInt: 0n, corgeInt: [], + ...msg, }; }, @@ -8171,8 +8371,8 @@ export const TestOneof2 = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.quxInt) { writer.writeInt64String(1, msg.quxInt.toString() as any); } @@ -8187,7 +8387,7 @@ export const TestOneof2 = { */ _readMessage: function ( msg: TestOneof2.NestedMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestOneof2.NestedMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -8222,7 +8422,7 @@ export const TestRequiredOneof = { encode: function (msg: PartialDeep): Uint8Array { return TestRequiredOneof._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -8232,18 +8432,19 @@ export const TestRequiredOneof = { decode: function (bytes: ByteSource): TestRequiredOneof { return TestRequiredOneof._readMessage( TestRequiredOneof.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestRequiredOneof with all fields set to their default value. */ - initialize: function (): TestRequiredOneof { + initialize: function (msg?: Partial): TestRequiredOneof { return { fooInt: undefined, fooString: undefined, fooMessage: undefined, + ...msg, }; }, @@ -8252,8 +8453,8 @@ export const TestRequiredOneof = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.fooInt != undefined) { writer.writeInt32(1, msg.fooInt); } @@ -8275,7 +8476,7 @@ export const TestRequiredOneof = { */ _readMessage: function ( msg: TestRequiredOneof, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRequiredOneof { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -8314,7 +8515,7 @@ export const TestRequiredOneof = { ): Uint8Array { return TestRequiredOneof.NestedMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -8324,16 +8525,19 @@ export const TestRequiredOneof = { decode: function (bytes: ByteSource): TestRequiredOneof.NestedMessage { return TestRequiredOneof.NestedMessage._readMessage( TestRequiredOneof.NestedMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestRequiredOneof.NestedMessage with all fields set to their default value. */ - initialize: function (): TestRequiredOneof.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestRequiredOneof.NestedMessage { return { requiredDouble: 0, + ...msg, }; }, @@ -8342,8 +8546,8 @@ export const TestRequiredOneof = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.requiredDouble) { writer.writeDouble(1, msg.requiredDouble); } @@ -8355,7 +8559,7 @@ export const TestRequiredOneof = { */ _readMessage: function ( msg: TestRequiredOneof.NestedMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRequiredOneof.NestedMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -8382,7 +8586,7 @@ export const TestPackedTypes = { encode: function (msg: PartialDeep): Uint8Array { return TestPackedTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -8392,14 +8596,14 @@ export const TestPackedTypes = { decode: function (bytes: ByteSource): TestPackedTypes { return TestPackedTypes._readMessage( TestPackedTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestPackedTypes with all fields set to their default value. */ - initialize: function (): TestPackedTypes { + initialize: function (msg?: Partial): TestPackedTypes { return { packedInt32: [], packedInt64: [], @@ -8415,6 +8619,7 @@ export const TestPackedTypes = { packedDouble: [], packedBool: [], packedEnum: [], + ...msg, }; }, @@ -8423,8 +8628,8 @@ export const TestPackedTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.packedInt32?.length) { writer.writePackedInt32(90, msg.packedInt32); } @@ -8490,7 +8695,7 @@ export const TestPackedTypes = { */ _readMessage: function ( msg: TestPackedTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestPackedTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -8634,7 +8839,7 @@ export const TestUnpackedTypes = { encode: function (msg: PartialDeep): Uint8Array { return TestUnpackedTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -8644,14 +8849,14 @@ export const TestUnpackedTypes = { decode: function (bytes: ByteSource): TestUnpackedTypes { return TestUnpackedTypes._readMessage( TestUnpackedTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestUnpackedTypes with all fields set to their default value. */ - initialize: function (): TestUnpackedTypes { + initialize: function (msg?: Partial): TestUnpackedTypes { return { unpackedInt32: [], unpackedInt64: [], @@ -8667,6 +8872,7 @@ export const TestUnpackedTypes = { unpackedDouble: [], unpackedBool: [], unpackedEnum: [], + ...msg, }; }, @@ -8675,8 +8881,8 @@ export const TestUnpackedTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.unpackedInt32?.length) { writer.writePackedInt32(90, msg.unpackedInt32); } @@ -8742,7 +8948,7 @@ export const TestUnpackedTypes = { */ _readMessage: function ( msg: TestUnpackedTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestUnpackedTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -8899,8 +9105,12 @@ export const TestPackedExtensions = { /** * Initializes TestPackedExtensions with all fields set to their default value. */ - initialize: function (): TestPackedExtensions { - return {}; + initialize: function ( + msg?: Partial, + ): TestPackedExtensions { + return { + ...msg, + }; }, /** @@ -8908,8 +9118,8 @@ export const TestPackedExtensions = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -8918,7 +9128,7 @@ export const TestPackedExtensions = { */ _readMessage: function ( _msg: TestPackedExtensions, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestPackedExtensions { return _msg; }, @@ -8942,8 +9152,12 @@ export const TestUnpackedExtensions = { /** * Initializes TestUnpackedExtensions with all fields set to their default value. */ - initialize: function (): TestUnpackedExtensions { - return {}; + initialize: function ( + msg?: Partial, + ): TestUnpackedExtensions { + return { + ...msg, + }; }, /** @@ -8951,8 +9165,8 @@ export const TestUnpackedExtensions = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -8961,7 +9175,7 @@ export const TestUnpackedExtensions = { */ _readMessage: function ( _msg: TestUnpackedExtensions, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestUnpackedExtensions { return _msg; }, @@ -8974,7 +9188,7 @@ export const TestDynamicExtensions = { encode: function (msg: PartialDeep): Uint8Array { return TestDynamicExtensions._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -8984,14 +9198,16 @@ export const TestDynamicExtensions = { decode: function (bytes: ByteSource): TestDynamicExtensions { return TestDynamicExtensions._readMessage( TestDynamicExtensions.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestDynamicExtensions with all fields set to their default value. */ - initialize: function (): TestDynamicExtensions { + initialize: function ( + msg?: Partial, + ): TestDynamicExtensions { return { scalarExtension: 0, enumExtension: ForeignEnum._fromInt(0), @@ -9001,6 +9217,7 @@ export const TestDynamicExtensions = { TestDynamicExtensions.DynamicMessageType.initialize(), repeatedExtension: [], packedExtension: [], + ...msg, }; }, @@ -9009,8 +9226,8 @@ export const TestDynamicExtensions = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.scalarExtension) { writer.writeFixed32(2000, msg.scalarExtension); } @@ -9054,7 +9271,7 @@ export const TestDynamicExtensions = { */ _readMessage: function ( msg: TestDynamicExtensions, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestDynamicExtensions { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -9159,7 +9376,7 @@ export const TestDynamicExtensions = { ): Uint8Array { return TestDynamicExtensions.DynamicMessageType._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -9171,16 +9388,19 @@ export const TestDynamicExtensions = { ): TestDynamicExtensions.DynamicMessageType { return TestDynamicExtensions.DynamicMessageType._readMessage( TestDynamicExtensions.DynamicMessageType.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestDynamicExtensions.DynamicMessageType with all fields set to their default value. */ - initialize: function (): TestDynamicExtensions.DynamicMessageType { + initialize: function ( + msg?: Partial, + ): TestDynamicExtensions.DynamicMessageType { return { dynamicField: 0, + ...msg, }; }, @@ -9189,8 +9409,8 @@ export const TestDynamicExtensions = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.dynamicField) { writer.writeInt32(2100, msg.dynamicField); } @@ -9202,7 +9422,7 @@ export const TestDynamicExtensions = { */ _readMessage: function ( msg: TestDynamicExtensions.DynamicMessageType, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestDynamicExtensions.DynamicMessageType { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -9231,7 +9451,7 @@ export const TestRepeatedScalarDifferentTagSizes = { ): Uint8Array { return TestRepeatedScalarDifferentTagSizes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -9241,14 +9461,16 @@ export const TestRepeatedScalarDifferentTagSizes = { decode: function (bytes: ByteSource): TestRepeatedScalarDifferentTagSizes { return TestRepeatedScalarDifferentTagSizes._readMessage( TestRepeatedScalarDifferentTagSizes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestRepeatedScalarDifferentTagSizes with all fields set to their default value. */ - initialize: function (): TestRepeatedScalarDifferentTagSizes { + initialize: function ( + msg?: Partial, + ): TestRepeatedScalarDifferentTagSizes { return { repeatedFixed32: [], repeatedInt32: [], @@ -9256,6 +9478,7 @@ export const TestRepeatedScalarDifferentTagSizes = { repeatedInt64: [], repeatedFloat: [], repeatedUint64: [], + ...msg, }; }, @@ -9264,8 +9487,8 @@ export const TestRepeatedScalarDifferentTagSizes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.repeatedFixed32?.length) { writer.writePackedFixed32(12, msg.repeatedFixed32); } @@ -9301,7 +9524,7 @@ export const TestRepeatedScalarDifferentTagSizes = { */ _readMessage: function ( msg: TestRepeatedScalarDifferentTagSizes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestRepeatedScalarDifferentTagSizes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -9377,7 +9600,7 @@ export const TestParsingMerge = { encode: function (msg: PartialDeep): Uint8Array { return TestParsingMerge._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -9387,18 +9610,19 @@ export const TestParsingMerge = { decode: function (bytes: ByteSource): TestParsingMerge { return TestParsingMerge._readMessage( TestParsingMerge.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestParsingMerge with all fields set to their default value. */ - initialize: function (): TestParsingMerge { + initialize: function (msg?: Partial): TestParsingMerge { return { requiredAllTypes: TestAllTypes.initialize(), optionalAllTypes: TestAllTypes.initialize(), repeatedAllTypes: [], + ...msg, }; }, @@ -9407,8 +9631,8 @@ export const TestParsingMerge = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.requiredAllTypes) { writer.writeMessage(1, msg.requiredAllTypes, TestAllTypes._writeMessage); } @@ -9430,7 +9654,7 @@ export const TestParsingMerge = { */ _readMessage: function ( msg: TestParsingMerge, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestParsingMerge { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -9467,7 +9691,7 @@ export const TestParsingMerge = { ): Uint8Array { return TestParsingMerge.RepeatedFieldsGenerator._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -9479,20 +9703,23 @@ export const TestParsingMerge = { ): TestParsingMerge.RepeatedFieldsGenerator { return TestParsingMerge.RepeatedFieldsGenerator._readMessage( TestParsingMerge.RepeatedFieldsGenerator.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestParsingMerge.RepeatedFieldsGenerator with all fields set to their default value. */ - initialize: function (): TestParsingMerge.RepeatedFieldsGenerator { + initialize: function ( + msg?: Partial, + ): TestParsingMerge.RepeatedFieldsGenerator { return { field1: [], field2: [], field3: [], ext1: [], ext2: [], + ...msg, }; }, @@ -9501,8 +9728,8 @@ export const TestParsingMerge = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.field1?.length) { writer.writeRepeatedMessage( 1, @@ -9546,7 +9773,7 @@ export const TestParsingMerge = { */ _readMessage: function ( msg: TestParsingMerge.RepeatedFieldsGenerator, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestParsingMerge.RepeatedFieldsGenerator { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -9599,7 +9826,7 @@ export const TestParsingMerge = { ): Uint8Array { return TestParsingMerge.RepeatedFieldsGenerator.Group1._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -9611,16 +9838,19 @@ export const TestParsingMerge = { ): TestParsingMerge.RepeatedFieldsGenerator.Group1 { return TestParsingMerge.RepeatedFieldsGenerator.Group1._readMessage( TestParsingMerge.RepeatedFieldsGenerator.Group1.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestParsingMerge.RepeatedFieldsGenerator.Group1 with all fields set to their default value. */ - initialize: function (): TestParsingMerge.RepeatedFieldsGenerator.Group1 { + initialize: function ( + msg?: Partial, + ): TestParsingMerge.RepeatedFieldsGenerator.Group1 { return { field1: TestAllTypes.initialize(), + ...msg, }; }, @@ -9629,8 +9859,8 @@ export const TestParsingMerge = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.field1) { writer.writeMessage(11, msg.field1, TestAllTypes._writeMessage); } @@ -9642,7 +9872,7 @@ export const TestParsingMerge = { */ _readMessage: function ( msg: TestParsingMerge.RepeatedFieldsGenerator.Group1, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestParsingMerge.RepeatedFieldsGenerator.Group1 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -9670,7 +9900,7 @@ export const TestParsingMerge = { ): Uint8Array { return TestParsingMerge.RepeatedFieldsGenerator.Group2._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -9682,16 +9912,19 @@ export const TestParsingMerge = { ): TestParsingMerge.RepeatedFieldsGenerator.Group2 { return TestParsingMerge.RepeatedFieldsGenerator.Group2._readMessage( TestParsingMerge.RepeatedFieldsGenerator.Group2.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestParsingMerge.RepeatedFieldsGenerator.Group2 with all fields set to their default value. */ - initialize: function (): TestParsingMerge.RepeatedFieldsGenerator.Group2 { + initialize: function ( + msg?: Partial, + ): TestParsingMerge.RepeatedFieldsGenerator.Group2 { return { field1: TestAllTypes.initialize(), + ...msg, }; }, @@ -9700,8 +9933,8 @@ export const TestParsingMerge = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.field1) { writer.writeMessage(21, msg.field1, TestAllTypes._writeMessage); } @@ -9713,7 +9946,7 @@ export const TestParsingMerge = { */ _readMessage: function ( msg: TestParsingMerge.RepeatedFieldsGenerator.Group2, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestParsingMerge.RepeatedFieldsGenerator.Group2 { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -9742,7 +9975,7 @@ export const TestParsingMerge = { ): Uint8Array { return TestParsingMerge.OptionalGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -9752,16 +9985,19 @@ export const TestParsingMerge = { decode: function (bytes: ByteSource): TestParsingMerge.OptionalGroup { return TestParsingMerge.OptionalGroup._readMessage( TestParsingMerge.OptionalGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestParsingMerge.OptionalGroup with all fields set to their default value. */ - initialize: function (): TestParsingMerge.OptionalGroup { + initialize: function ( + msg?: Partial, + ): TestParsingMerge.OptionalGroup { return { optionalGroupAllTypes: TestAllTypes.initialize(), + ...msg, }; }, @@ -9770,8 +10006,8 @@ export const TestParsingMerge = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.optionalGroupAllTypes) { writer.writeMessage( 11, @@ -9787,7 +10023,7 @@ export const TestParsingMerge = { */ _readMessage: function ( msg: TestParsingMerge.OptionalGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestParsingMerge.OptionalGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -9818,7 +10054,7 @@ export const TestParsingMerge = { ): Uint8Array { return TestParsingMerge.RepeatedGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -9828,16 +10064,19 @@ export const TestParsingMerge = { decode: function (bytes: ByteSource): TestParsingMerge.RepeatedGroup { return TestParsingMerge.RepeatedGroup._readMessage( TestParsingMerge.RepeatedGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestParsingMerge.RepeatedGroup with all fields set to their default value. */ - initialize: function (): TestParsingMerge.RepeatedGroup { + initialize: function ( + msg?: Partial, + ): TestParsingMerge.RepeatedGroup { return { repeatedGroupAllTypes: TestAllTypes.initialize(), + ...msg, }; }, @@ -9846,8 +10085,8 @@ export const TestParsingMerge = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.repeatedGroupAllTypes) { writer.writeMessage( 21, @@ -9863,7 +10102,7 @@ export const TestParsingMerge = { */ _readMessage: function ( msg: TestParsingMerge.RepeatedGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestParsingMerge.RepeatedGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -9893,7 +10132,7 @@ export const TestCommentInjectionMessage = { encode: function (msg: PartialDeep): Uint8Array { return TestCommentInjectionMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -9903,16 +10142,19 @@ export const TestCommentInjectionMessage = { decode: function (bytes: ByteSource): TestCommentInjectionMessage { return TestCommentInjectionMessage._readMessage( TestCommentInjectionMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestCommentInjectionMessage with all fields set to their default value. */ - initialize: function (): TestCommentInjectionMessage { + initialize: function ( + msg?: Partial, + ): TestCommentInjectionMessage { return { a: "", + ...msg, }; }, @@ -9921,8 +10163,8 @@ export const TestCommentInjectionMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.a) { writer.writeString(1, msg.a); } @@ -9934,7 +10176,7 @@ export const TestCommentInjectionMessage = { */ _readMessage: function ( msg: TestCommentInjectionMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestCommentInjectionMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -9971,8 +10213,10 @@ export const FooRequest = { /** * Initializes FooRequest with all fields set to their default value. */ - initialize: function (): FooRequest { - return {}; + initialize: function (msg?: Partial): FooRequest { + return { + ...msg, + }; }, /** @@ -9980,15 +10224,18 @@ export const FooRequest = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, /** * @private */ - _readMessage: function (_msg: FooRequest, _reader: BinaryReader): FooRequest { + _readMessage: function ( + _msg: FooRequest, + _reader: protoscript.BinaryReader, + ): FooRequest { return _msg; }, }; @@ -10011,8 +10258,10 @@ export const FooResponse = { /** * Initializes FooResponse with all fields set to their default value. */ - initialize: function (): FooResponse { - return {}; + initialize: function (msg?: Partial): FooResponse { + return { + ...msg, + }; }, /** @@ -10020,8 +10269,8 @@ export const FooResponse = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -10030,7 +10279,7 @@ export const FooResponse = { */ _readMessage: function ( _msg: FooResponse, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): FooResponse { return _msg; }, @@ -10054,8 +10303,10 @@ export const FooClientMessage = { /** * Initializes FooClientMessage with all fields set to their default value. */ - initialize: function (): FooClientMessage { - return {}; + initialize: function (msg?: Partial): FooClientMessage { + return { + ...msg, + }; }, /** @@ -10063,8 +10314,8 @@ export const FooClientMessage = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -10073,7 +10324,7 @@ export const FooClientMessage = { */ _readMessage: function ( _msg: FooClientMessage, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): FooClientMessage { return _msg; }, @@ -10097,8 +10348,10 @@ export const FooServerMessage = { /** * Initializes FooServerMessage with all fields set to their default value. */ - initialize: function (): FooServerMessage { - return {}; + initialize: function (msg?: Partial): FooServerMessage { + return { + ...msg, + }; }, /** @@ -10106,8 +10359,8 @@ export const FooServerMessage = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -10116,7 +10369,7 @@ export const FooServerMessage = { */ _readMessage: function ( _msg: FooServerMessage, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): FooServerMessage { return _msg; }, @@ -10140,8 +10393,10 @@ export const BarRequest = { /** * Initializes BarRequest with all fields set to their default value. */ - initialize: function (): BarRequest { - return {}; + initialize: function (msg?: Partial): BarRequest { + return { + ...msg, + }; }, /** @@ -10149,15 +10404,18 @@ export const BarRequest = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, /** * @private */ - _readMessage: function (_msg: BarRequest, _reader: BinaryReader): BarRequest { + _readMessage: function ( + _msg: BarRequest, + _reader: protoscript.BinaryReader, + ): BarRequest { return _msg; }, }; @@ -10180,8 +10438,10 @@ export const BarResponse = { /** * Initializes BarResponse with all fields set to their default value. */ - initialize: function (): BarResponse { - return {}; + initialize: function (msg?: Partial): BarResponse { + return { + ...msg, + }; }, /** @@ -10189,8 +10449,8 @@ export const BarResponse = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -10199,7 +10459,7 @@ export const BarResponse = { */ _readMessage: function ( _msg: BarResponse, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): BarResponse { return _msg; }, @@ -10212,7 +10472,7 @@ export const TestJsonName = { encode: function (msg: PartialDeep): Uint8Array { return TestJsonName._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -10222,14 +10482,14 @@ export const TestJsonName = { decode: function (bytes: ByteSource): TestJsonName { return TestJsonName._readMessage( TestJsonName.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestJsonName with all fields set to their default value. */ - initialize: function (): TestJsonName { + initialize: function (msg?: Partial): TestJsonName { return { fieldName1: 0, fieldName2: 0, @@ -10238,6 +10498,7 @@ export const TestJsonName = { FIELDNAME5: 0, fieldName6: 0, fieldname7: 0, + ...msg, }; }, @@ -10246,8 +10507,8 @@ export const TestJsonName = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.fieldName1) { writer.writeInt32(1, msg.fieldName1); } @@ -10277,7 +10538,7 @@ export const TestJsonName = { */ _readMessage: function ( msg: TestJsonName, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestJsonName { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -10327,7 +10588,7 @@ export const TestHugeFieldNumbers = { encode: function (msg: PartialDeep): Uint8Array { return TestHugeFieldNumbers._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -10337,14 +10598,16 @@ export const TestHugeFieldNumbers = { decode: function (bytes: ByteSource): TestHugeFieldNumbers { return TestHugeFieldNumbers._readMessage( TestHugeFieldNumbers.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestHugeFieldNumbers with all fields set to their default value. */ - initialize: function (): TestHugeFieldNumbers { + initialize: function ( + msg?: Partial, + ): TestHugeFieldNumbers { return { optionalInt32: 0, fixed32: 0, @@ -10359,6 +10622,7 @@ export const TestHugeFieldNumbers = { oneofTestAllTypes: undefined, oneofString: undefined, oneofBytes: undefined, + ...msg, }; }, @@ -10367,8 +10631,8 @@ export const TestHugeFieldNumbers = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.optionalInt32) { writer.writeInt32(536870000, msg.optionalInt32); } @@ -10431,7 +10695,7 @@ export const TestHugeFieldNumbers = { */ _readMessage: function ( msg: TestHugeFieldNumbers, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestHugeFieldNumbers { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -10520,7 +10784,7 @@ export const TestHugeFieldNumbers = { ): Uint8Array { return TestHugeFieldNumbers.OptionalGroup._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -10530,16 +10794,19 @@ export const TestHugeFieldNumbers = { decode: function (bytes: ByteSource): TestHugeFieldNumbers.OptionalGroup { return TestHugeFieldNumbers.OptionalGroup._readMessage( TestHugeFieldNumbers.OptionalGroup.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestHugeFieldNumbers.OptionalGroup with all fields set to their default value. */ - initialize: function (): TestHugeFieldNumbers.OptionalGroup { + initialize: function ( + msg?: Partial, + ): TestHugeFieldNumbers.OptionalGroup { return { groupA: 0, + ...msg, }; }, @@ -10548,8 +10815,8 @@ export const TestHugeFieldNumbers = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.groupA) { writer.writeInt32(536870009, msg.groupA); } @@ -10561,7 +10828,7 @@ export const TestHugeFieldNumbers = { */ _readMessage: function ( msg: TestHugeFieldNumbers.OptionalGroup, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestHugeFieldNumbers.OptionalGroup { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -10586,8 +10853,8 @@ export const TestHugeFieldNumbers = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeString(1, msg.key); } @@ -10602,7 +10869,7 @@ export const TestHugeFieldNumbers = { */ _readMessage: function ( msg: TestHugeFieldNumbers.StringStringMap, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestHugeFieldNumbers.StringStringMap { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -10633,7 +10900,7 @@ export const TestExtensionInsideTable = { encode: function (msg: PartialDeep): Uint8Array { return TestExtensionInsideTable._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -10643,14 +10910,16 @@ export const TestExtensionInsideTable = { decode: function (bytes: ByteSource): TestExtensionInsideTable { return TestExtensionInsideTable._readMessage( TestExtensionInsideTable.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestExtensionInsideTable with all fields set to their default value. */ - initialize: function (): TestExtensionInsideTable { + initialize: function ( + msg?: Partial, + ): TestExtensionInsideTable { return { field1: 0, field2: 0, @@ -10661,6 +10930,7 @@ export const TestExtensionInsideTable = { field8: 0, field9: 0, field10: 0, + ...msg, }; }, @@ -10669,8 +10939,8 @@ export const TestExtensionInsideTable = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.field1) { writer.writeInt32(1, msg.field1); } @@ -10706,7 +10976,7 @@ export const TestExtensionInsideTable = { */ _readMessage: function ( msg: TestExtensionInsideTable, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestExtensionInsideTable { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -10764,7 +11034,7 @@ export const TestExtensionRangeSerialize = { encode: function (msg: PartialDeep): Uint8Array { return TestExtensionRangeSerialize._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -10774,19 +11044,22 @@ export const TestExtensionRangeSerialize = { decode: function (bytes: ByteSource): TestExtensionRangeSerialize { return TestExtensionRangeSerialize._readMessage( TestExtensionRangeSerialize.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestExtensionRangeSerialize with all fields set to their default value. */ - initialize: function (): TestExtensionRangeSerialize { + initialize: function ( + msg?: Partial, + ): TestExtensionRangeSerialize { return { fooOne: 0, fooTwo: 0, fooThree: 0, fooFour: 0, + ...msg, }; }, @@ -10795,8 +11068,8 @@ export const TestExtensionRangeSerialize = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.fooOne) { writer.writeInt32(1, msg.fooOne); } @@ -10817,7 +11090,7 @@ export const TestExtensionRangeSerialize = { */ _readMessage: function ( msg: TestExtensionRangeSerialize, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestExtensionRangeSerialize { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -11779,7 +12052,7 @@ export const TestAllTypesJSON = { /** * Initializes TestAllTypes with all fields set to their default value. */ - initialize: function (): TestAllTypes { + initialize: function (msg?: Partial): TestAllTypes { return { optionalInt32: 0, optionalInt64: 0n, @@ -11856,6 +12129,7 @@ export const TestAllTypesJSON = { oneofNestedMessage: undefined, oneofString: undefined, oneofBytes: undefined, + ...msg, }; }, @@ -11870,31 +12144,31 @@ export const TestAllTypesJSON = { json["optionalInt32"] = msg.optionalInt32; } if (msg.optionalInt64) { - json["optionalInt64"] = msg.optionalInt64.toString(); + json["optionalInt64"] = String(msg.optionalInt64); } if (msg.optionalUint32) { json["optionalUint32"] = msg.optionalUint32; } if (msg.optionalUint64) { - json["optionalUint64"] = msg.optionalUint64.toString(); + json["optionalUint64"] = String(msg.optionalUint64); } if (msg.optionalSint32) { json["optionalSint32"] = msg.optionalSint32; } if (msg.optionalSint64) { - json["optionalSint64"] = msg.optionalSint64.toString(); + json["optionalSint64"] = String(msg.optionalSint64); } if (msg.optionalFixed32) { json["optionalFixed32"] = msg.optionalFixed32; } if (msg.optionalFixed64) { - json["optionalFixed64"] = msg.optionalFixed64.toString(); + json["optionalFixed64"] = String(msg.optionalFixed64); } if (msg.optionalSfixed32) { json["optionalSfixed32"] = msg.optionalSfixed32; } if (msg.optionalSfixed64) { - json["optionalSfixed64"] = msg.optionalSfixed64.toString(); + json["optionalSfixed64"] = String(msg.optionalSfixed64); } if (msg.optionalFloat) { json["optionalFloat"] = msg.optionalFloat; @@ -11909,7 +12183,7 @@ export const TestAllTypesJSON = { json["optionalString"] = msg.optionalString; } if (msg.optionalBytes?.length) { - json["optionalBytes"] = encodeBase64Bytes(msg.optionalBytes); + json["optionalBytes"] = protoscript.serializeBytes(msg.optionalBytes); } if (msg.optionalNestedMessage) { const _optionalNestedMessage_ = @@ -11981,31 +12255,31 @@ export const TestAllTypesJSON = { json["repeatedInt32"] = msg.repeatedInt32; } if (msg.repeatedInt64?.length) { - json["repeatedInt64"] = msg.repeatedInt64.map((x) => x.toString()); + json["repeatedInt64"] = msg.repeatedInt64.map(String); } if (msg.repeatedUint32?.length) { json["repeatedUint32"] = msg.repeatedUint32; } if (msg.repeatedUint64?.length) { - json["repeatedUint64"] = msg.repeatedUint64.map((x) => x.toString()); + json["repeatedUint64"] = msg.repeatedUint64.map(String); } if (msg.repeatedSint32?.length) { json["repeatedSint32"] = msg.repeatedSint32; } if (msg.repeatedSint64?.length) { - json["repeatedSint64"] = msg.repeatedSint64.map((x) => x.toString()); + json["repeatedSint64"] = msg.repeatedSint64.map(String); } if (msg.repeatedFixed32?.length) { json["repeatedFixed32"] = msg.repeatedFixed32; } if (msg.repeatedFixed64?.length) { - json["repeatedFixed64"] = msg.repeatedFixed64.map((x) => x.toString()); + json["repeatedFixed64"] = msg.repeatedFixed64.map(String); } if (msg.repeatedSfixed32?.length) { json["repeatedSfixed32"] = msg.repeatedSfixed32; } if (msg.repeatedSfixed64?.length) { - json["repeatedSfixed64"] = msg.repeatedSfixed64.map((x) => x.toString()); + json["repeatedSfixed64"] = msg.repeatedSfixed64.map(String); } if (msg.repeatedFloat?.length) { json["repeatedFloat"] = msg.repeatedFloat; @@ -12020,7 +12294,7 @@ export const TestAllTypesJSON = { json["repeatedString"] = msg.repeatedString; } if (msg.repeatedBytes?.length) { - json["repeatedBytes"] = msg.repeatedBytes.map(encodeBase64Bytes); + json["repeatedBytes"] = msg.repeatedBytes.map(protoscript.serializeBytes); } if (msg.repeatedNestedMessage?.length) { json["repeatedNestedMessage"] = msg.repeatedNestedMessage.map( @@ -12061,31 +12335,31 @@ export const TestAllTypesJSON = { json["defaultInt32"] = msg.defaultInt32; } if (msg.defaultInt64) { - json["defaultInt64"] = msg.defaultInt64.toString(); + json["defaultInt64"] = String(msg.defaultInt64); } if (msg.defaultUint32) { json["defaultUint32"] = msg.defaultUint32; } if (msg.defaultUint64) { - json["defaultUint64"] = msg.defaultUint64.toString(); + json["defaultUint64"] = String(msg.defaultUint64); } if (msg.defaultSint32) { json["defaultSint32"] = msg.defaultSint32; } if (msg.defaultSint64) { - json["defaultSint64"] = msg.defaultSint64.toString(); + json["defaultSint64"] = String(msg.defaultSint64); } if (msg.defaultFixed32) { json["defaultFixed32"] = msg.defaultFixed32; } if (msg.defaultFixed64) { - json["defaultFixed64"] = msg.defaultFixed64.toString(); + json["defaultFixed64"] = String(msg.defaultFixed64); } if (msg.defaultSfixed32) { json["defaultSfixed32"] = msg.defaultSfixed32; } if (msg.defaultSfixed64) { - json["defaultSfixed64"] = msg.defaultSfixed64.toString(); + json["defaultSfixed64"] = String(msg.defaultSfixed64); } if (msg.defaultFloat) { json["defaultFloat"] = msg.defaultFloat; @@ -12100,7 +12374,7 @@ export const TestAllTypesJSON = { json["defaultString"] = msg.defaultString; } if (msg.defaultBytes?.length) { - json["defaultBytes"] = encodeBase64Bytes(msg.defaultBytes); + json["defaultBytes"] = protoscript.serializeBytes(msg.defaultBytes); } if ( msg.defaultNestedEnum && @@ -12139,7 +12413,7 @@ export const TestAllTypesJSON = { json["oneofString"] = msg.oneofString; } if (msg.oneofBytes?.length) { - json["oneofBytes"] = encodeBase64Bytes(msg.oneofBytes); + json["oneofBytes"] = protoscript.serializeBytes(msg.oneofBytes); } return json; }, @@ -12150,7 +12424,7 @@ export const TestAllTypesJSON = { _readMessage: function (msg: TestAllTypes, json: any): TestAllTypes { const _optionalInt32_ = json["optionalInt32"] ?? json["optional_int32"]; if (_optionalInt32_) { - msg.optionalInt32 = _optionalInt32_; + msg.optionalInt32 = protoscript.parseNumber(_optionalInt32_); } const _optionalInt64_ = json["optionalInt64"] ?? json["optional_int64"]; if (_optionalInt64_) { @@ -12158,7 +12432,7 @@ export const TestAllTypesJSON = { } const _optionalUint32_ = json["optionalUint32"] ?? json["optional_uint32"]; if (_optionalUint32_) { - msg.optionalUint32 = _optionalUint32_; + msg.optionalUint32 = protoscript.parseNumber(_optionalUint32_); } const _optionalUint64_ = json["optionalUint64"] ?? json["optional_uint64"]; if (_optionalUint64_) { @@ -12166,7 +12440,7 @@ export const TestAllTypesJSON = { } const _optionalSint32_ = json["optionalSint32"] ?? json["optional_sint32"]; if (_optionalSint32_) { - msg.optionalSint32 = _optionalSint32_; + msg.optionalSint32 = protoscript.parseNumber(_optionalSint32_); } const _optionalSint64_ = json["optionalSint64"] ?? json["optional_sint64"]; if (_optionalSint64_) { @@ -12175,7 +12449,7 @@ export const TestAllTypesJSON = { const _optionalFixed32_ = json["optionalFixed32"] ?? json["optional_fixed32"]; if (_optionalFixed32_) { - msg.optionalFixed32 = _optionalFixed32_; + msg.optionalFixed32 = protoscript.parseNumber(_optionalFixed32_); } const _optionalFixed64_ = json["optionalFixed64"] ?? json["optional_fixed64"]; @@ -12185,7 +12459,7 @@ export const TestAllTypesJSON = { const _optionalSfixed32_ = json["optionalSfixed32"] ?? json["optional_sfixed32"]; if (_optionalSfixed32_) { - msg.optionalSfixed32 = _optionalSfixed32_; + msg.optionalSfixed32 = protoscript.parseNumber(_optionalSfixed32_); } const _optionalSfixed64_ = json["optionalSfixed64"] ?? json["optional_sfixed64"]; @@ -12194,11 +12468,11 @@ export const TestAllTypesJSON = { } const _optionalFloat_ = json["optionalFloat"] ?? json["optional_float"]; if (_optionalFloat_) { - msg.optionalFloat = _optionalFloat_; + msg.optionalFloat = protoscript.parseDouble(_optionalFloat_); } const _optionalDouble_ = json["optionalDouble"] ?? json["optional_double"]; if (_optionalDouble_) { - msg.optionalDouble = _optionalDouble_; + msg.optionalDouble = protoscript.parseDouble(_optionalDouble_); } const _optionalBool_ = json["optionalBool"] ?? json["optional_bool"]; if (_optionalBool_) { @@ -12210,7 +12484,7 @@ export const TestAllTypesJSON = { } const _optionalBytes_ = json["optionalBytes"] ?? json["optional_bytes"]; if (_optionalBytes_) { - msg.optionalBytes = decodeBase64Bytes(_optionalBytes_); + msg.optionalBytes = protoscript.parseBytes(_optionalBytes_); } const _optionalNestedMessage_ = json["optionalNestedMessage"] ?? json["optional_nested_message"]; @@ -12239,17 +12513,19 @@ export const TestAllTypesJSON = { const _optionalNestedEnum_ = json["optionalNestedEnum"] ?? json["optional_nested_enum"]; if (_optionalNestedEnum_) { - msg.optionalNestedEnum = _optionalNestedEnum_; + msg.optionalNestedEnum = + TestAllTypes.NestedEnum._fromInt(_optionalNestedEnum_); } const _optionalForeignEnum_ = json["optionalForeignEnum"] ?? json["optional_foreign_enum"]; if (_optionalForeignEnum_) { - msg.optionalForeignEnum = _optionalForeignEnum_; + msg.optionalForeignEnum = ForeignEnum._fromInt(_optionalForeignEnum_); } const _optionalImportEnum_ = json["optionalImportEnum"] ?? json["optional_import_enum"]; if (_optionalImportEnum_) { - msg.optionalImportEnum = _optionalImportEnum_; + msg.optionalImportEnum = + googleProtobufUnittest_import.ImportEnum._fromInt(_optionalImportEnum_); } const _optionalStringPiece_ = json["optionalStringPiece"] ?? json["optional_string_piece"]; @@ -12279,7 +12555,7 @@ export const TestAllTypesJSON = { } const _repeatedInt32_ = json["repeatedInt32"] ?? json["repeated_int32"]; if (_repeatedInt32_) { - msg.repeatedInt32 = _repeatedInt32_; + msg.repeatedInt32 = _repeatedInt32_.map(protoscript.parseNumber); } const _repeatedInt64_ = json["repeatedInt64"] ?? json["repeated_int64"]; if (_repeatedInt64_) { @@ -12287,7 +12563,7 @@ export const TestAllTypesJSON = { } const _repeatedUint32_ = json["repeatedUint32"] ?? json["repeated_uint32"]; if (_repeatedUint32_) { - msg.repeatedUint32 = _repeatedUint32_; + msg.repeatedUint32 = _repeatedUint32_.map(protoscript.parseNumber); } const _repeatedUint64_ = json["repeatedUint64"] ?? json["repeated_uint64"]; if (_repeatedUint64_) { @@ -12295,7 +12571,7 @@ export const TestAllTypesJSON = { } const _repeatedSint32_ = json["repeatedSint32"] ?? json["repeated_sint32"]; if (_repeatedSint32_) { - msg.repeatedSint32 = _repeatedSint32_; + msg.repeatedSint32 = _repeatedSint32_.map(protoscript.parseNumber); } const _repeatedSint64_ = json["repeatedSint64"] ?? json["repeated_sint64"]; if (_repeatedSint64_) { @@ -12304,7 +12580,7 @@ export const TestAllTypesJSON = { const _repeatedFixed32_ = json["repeatedFixed32"] ?? json["repeated_fixed32"]; if (_repeatedFixed32_) { - msg.repeatedFixed32 = _repeatedFixed32_; + msg.repeatedFixed32 = _repeatedFixed32_.map(protoscript.parseNumber); } const _repeatedFixed64_ = json["repeatedFixed64"] ?? json["repeated_fixed64"]; @@ -12314,7 +12590,7 @@ export const TestAllTypesJSON = { const _repeatedSfixed32_ = json["repeatedSfixed32"] ?? json["repeated_sfixed32"]; if (_repeatedSfixed32_) { - msg.repeatedSfixed32 = _repeatedSfixed32_; + msg.repeatedSfixed32 = _repeatedSfixed32_.map(protoscript.parseNumber); } const _repeatedSfixed64_ = json["repeatedSfixed64"] ?? json["repeated_sfixed64"]; @@ -12323,11 +12599,11 @@ export const TestAllTypesJSON = { } const _repeatedFloat_ = json["repeatedFloat"] ?? json["repeated_float"]; if (_repeatedFloat_) { - msg.repeatedFloat = _repeatedFloat_; + msg.repeatedFloat = _repeatedFloat_.map(protoscript.parseDouble); } const _repeatedDouble_ = json["repeatedDouble"] ?? json["repeated_double"]; if (_repeatedDouble_) { - msg.repeatedDouble = _repeatedDouble_; + msg.repeatedDouble = _repeatedDouble_.map(protoscript.parseDouble); } const _repeatedBool_ = json["repeatedBool"] ?? json["repeated_bool"]; if (_repeatedBool_) { @@ -12339,7 +12615,7 @@ export const TestAllTypesJSON = { } const _repeatedBytes_ = json["repeatedBytes"] ?? json["repeated_bytes"]; if (_repeatedBytes_) { - msg.repeatedBytes = _repeatedBytes_.map(decodeBase64Bytes); + msg.repeatedBytes = _repeatedBytes_.map(protoscript.parseBytes); } const _repeatedNestedMessage_ = json["repeatedNestedMessage"] ?? json["repeated_nested_message"]; @@ -12371,17 +12647,21 @@ export const TestAllTypesJSON = { const _repeatedNestedEnum_ = json["repeatedNestedEnum"] ?? json["repeated_nested_enum"]; if (_repeatedNestedEnum_) { - msg.repeatedNestedEnum = _repeatedNestedEnum_; + msg.repeatedNestedEnum = _repeatedNestedEnum_.map( + TestAllTypes.NestedEnum._fromInt, + ); } const _repeatedForeignEnum_ = json["repeatedForeignEnum"] ?? json["repeated_foreign_enum"]; if (_repeatedForeignEnum_) { - msg.repeatedForeignEnum = _repeatedForeignEnum_; + msg.repeatedForeignEnum = _repeatedForeignEnum_.map(ForeignEnum._fromInt); } const _repeatedImportEnum_ = json["repeatedImportEnum"] ?? json["repeated_import_enum"]; if (_repeatedImportEnum_) { - msg.repeatedImportEnum = _repeatedImportEnum_; + msg.repeatedImportEnum = _repeatedImportEnum_.map( + googleProtobufUnittest_import.ImportEnum._fromInt, + ); } const _repeatedStringPiece_ = json["repeatedStringPiece"] ?? json["repeated_string_piece"]; @@ -12403,7 +12683,7 @@ export const TestAllTypesJSON = { } const _defaultInt32_ = json["defaultInt32"] ?? json["default_int32"]; if (_defaultInt32_) { - msg.defaultInt32 = _defaultInt32_; + msg.defaultInt32 = protoscript.parseNumber(_defaultInt32_); } const _defaultInt64_ = json["defaultInt64"] ?? json["default_int64"]; if (_defaultInt64_) { @@ -12411,7 +12691,7 @@ export const TestAllTypesJSON = { } const _defaultUint32_ = json["defaultUint32"] ?? json["default_uint32"]; if (_defaultUint32_) { - msg.defaultUint32 = _defaultUint32_; + msg.defaultUint32 = protoscript.parseNumber(_defaultUint32_); } const _defaultUint64_ = json["defaultUint64"] ?? json["default_uint64"]; if (_defaultUint64_) { @@ -12419,7 +12699,7 @@ export const TestAllTypesJSON = { } const _defaultSint32_ = json["defaultSint32"] ?? json["default_sint32"]; if (_defaultSint32_) { - msg.defaultSint32 = _defaultSint32_; + msg.defaultSint32 = protoscript.parseNumber(_defaultSint32_); } const _defaultSint64_ = json["defaultSint64"] ?? json["default_sint64"]; if (_defaultSint64_) { @@ -12427,7 +12707,7 @@ export const TestAllTypesJSON = { } const _defaultFixed32_ = json["defaultFixed32"] ?? json["default_fixed32"]; if (_defaultFixed32_) { - msg.defaultFixed32 = _defaultFixed32_; + msg.defaultFixed32 = protoscript.parseNumber(_defaultFixed32_); } const _defaultFixed64_ = json["defaultFixed64"] ?? json["default_fixed64"]; if (_defaultFixed64_) { @@ -12436,7 +12716,7 @@ export const TestAllTypesJSON = { const _defaultSfixed32_ = json["defaultSfixed32"] ?? json["default_sfixed32"]; if (_defaultSfixed32_) { - msg.defaultSfixed32 = _defaultSfixed32_; + msg.defaultSfixed32 = protoscript.parseNumber(_defaultSfixed32_); } const _defaultSfixed64_ = json["defaultSfixed64"] ?? json["default_sfixed64"]; @@ -12445,11 +12725,11 @@ export const TestAllTypesJSON = { } const _defaultFloat_ = json["defaultFloat"] ?? json["default_float"]; if (_defaultFloat_) { - msg.defaultFloat = _defaultFloat_; + msg.defaultFloat = protoscript.parseDouble(_defaultFloat_); } const _defaultDouble_ = json["defaultDouble"] ?? json["default_double"]; if (_defaultDouble_) { - msg.defaultDouble = _defaultDouble_; + msg.defaultDouble = protoscript.parseDouble(_defaultDouble_); } const _defaultBool_ = json["defaultBool"] ?? json["default_bool"]; if (_defaultBool_) { @@ -12461,22 +12741,24 @@ export const TestAllTypesJSON = { } const _defaultBytes_ = json["defaultBytes"] ?? json["default_bytes"]; if (_defaultBytes_) { - msg.defaultBytes = decodeBase64Bytes(_defaultBytes_); + msg.defaultBytes = protoscript.parseBytes(_defaultBytes_); } const _defaultNestedEnum_ = json["defaultNestedEnum"] ?? json["default_nested_enum"]; if (_defaultNestedEnum_) { - msg.defaultNestedEnum = _defaultNestedEnum_; + msg.defaultNestedEnum = + TestAllTypes.NestedEnum._fromInt(_defaultNestedEnum_); } const _defaultForeignEnum_ = json["defaultForeignEnum"] ?? json["default_foreign_enum"]; if (_defaultForeignEnum_) { - msg.defaultForeignEnum = _defaultForeignEnum_; + msg.defaultForeignEnum = ForeignEnum._fromInt(_defaultForeignEnum_); } const _defaultImportEnum_ = json["defaultImportEnum"] ?? json["default_import_enum"]; if (_defaultImportEnum_) { - msg.defaultImportEnum = _defaultImportEnum_; + msg.defaultImportEnum = + googleProtobufUnittest_import.ImportEnum._fromInt(_defaultImportEnum_); } const _defaultStringPiece_ = json["defaultStringPiece"] ?? json["default_string_piece"]; @@ -12489,7 +12771,7 @@ export const TestAllTypesJSON = { } const _oneofUint32_ = json["oneofUint32"] ?? json["oneof_uint32"]; if (_oneofUint32_) { - msg.oneofUint32 = _oneofUint32_; + msg.oneofUint32 = protoscript.parseNumber(_oneofUint32_); } const _oneofNestedMessage_ = json["oneofNestedMessage"] ?? json["oneof_nested_message"]; @@ -12506,7 +12788,7 @@ export const TestAllTypesJSON = { } const _oneofBytes_ = json["oneofBytes"] ?? json["oneof_bytes"]; if (_oneofBytes_) { - msg.oneofBytes = decodeBase64Bytes(_oneofBytes_); + msg.oneofBytes = protoscript.parseBytes(_oneofBytes_); } return msg; }, @@ -12585,9 +12867,12 @@ export const TestAllTypesJSON = { /** * Initializes TestAllTypes.NestedMessage with all fields set to their default value. */ - initialize: function (): TestAllTypes.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestAllTypes.NestedMessage { return { bb: 0, + ...msg, }; }, @@ -12613,7 +12898,7 @@ export const TestAllTypesJSON = { ): TestAllTypes.NestedMessage { const _bb_ = json["bb"]; if (_bb_) { - msg.bb = _bb_; + msg.bb = protoscript.parseNumber(_bb_); } return msg; }, @@ -12640,9 +12925,12 @@ export const TestAllTypesJSON = { /** * Initializes TestAllTypes.OptionalGroup with all fields set to their default value. */ - initialize: function (): TestAllTypes.OptionalGroup { + initialize: function ( + msg?: Partial, + ): TestAllTypes.OptionalGroup { return { a: 0, + ...msg, }; }, @@ -12668,7 +12956,7 @@ export const TestAllTypesJSON = { ): TestAllTypes.OptionalGroup { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } return msg; }, @@ -12695,9 +12983,12 @@ export const TestAllTypesJSON = { /** * Initializes TestAllTypes.RepeatedGroup with all fields set to their default value. */ - initialize: function (): TestAllTypes.RepeatedGroup { + initialize: function ( + msg?: Partial, + ): TestAllTypes.RepeatedGroup { return { a: 0, + ...msg, }; }, @@ -12723,7 +13014,7 @@ export const TestAllTypesJSON = { ): TestAllTypes.RepeatedGroup { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } return msg; }, @@ -12751,11 +13042,12 @@ export const NestedTestAllTypesJSON = { /** * Initializes NestedTestAllTypes with all fields set to their default value. */ - initialize: function (): NestedTestAllTypes { + initialize: function (msg?: Partial): NestedTestAllTypes { return { child: undefined, payload: TestAllTypesJSON.initialize(), repeatedChild: [], + ...msg, }; }, @@ -12835,10 +13127,13 @@ export const TestDeprecatedFieldsJSON = { /** * Initializes TestDeprecatedFields with all fields set to their default value. */ - initialize: function (): TestDeprecatedFields { + initialize: function ( + msg?: Partial, + ): TestDeprecatedFields { return { deprecatedInt32: 0, deprecatedInt32InOneof: undefined, + ...msg, }; }, @@ -12868,12 +13163,14 @@ export const TestDeprecatedFieldsJSON = { const _deprecatedInt32_ = json["deprecatedInt32"] ?? json["deprecated_int32"]; if (_deprecatedInt32_) { - msg.deprecatedInt32 = _deprecatedInt32_; + msg.deprecatedInt32 = protoscript.parseNumber(_deprecatedInt32_); } const _deprecatedInt32InOneof_ = json["deprecatedInt32InOneof"] ?? json["deprecated_int32_in_oneof"]; if (_deprecatedInt32InOneof_) { - msg.deprecatedInt32InOneof = _deprecatedInt32InOneof_; + msg.deprecatedInt32InOneof = protoscript.parseNumber( + _deprecatedInt32InOneof_, + ); } return msg; }, @@ -12897,8 +13194,12 @@ export const TestDeprecatedMessageJSON = { /** * Initializes TestDeprecatedMessage with all fields set to their default value. */ - initialize: function (): TestDeprecatedMessage { - return {}; + initialize: function ( + msg?: Partial, + ): TestDeprecatedMessage { + return { + ...msg, + }; }, /** @@ -12942,10 +13243,11 @@ export const ForeignMessageJSON = { /** * Initializes ForeignMessage with all fields set to their default value. */ - initialize: function (): ForeignMessage { + initialize: function (msg?: Partial): ForeignMessage { return { c: 0, d: 0, + ...msg, }; }, @@ -12971,11 +13273,11 @@ export const ForeignMessageJSON = { _readMessage: function (msg: ForeignMessage, json: any): ForeignMessage { const _c_ = json["c"]; if (_c_) { - msg.c = _c_; + msg.c = protoscript.parseNumber(_c_); } const _d_ = json["d"]; if (_d_) { - msg.d = _d_; + msg.d = protoscript.parseNumber(_d_); } return msg; }, @@ -12999,8 +13301,10 @@ export const TestReservedFieldsJSON = { /** * Initializes TestReservedFields with all fields set to their default value. */ - initialize: function (): TestReservedFields { - return {}; + initialize: function (msg?: Partial): TestReservedFields { + return { + ...msg, + }; }, /** @@ -13041,8 +13345,10 @@ export const TestAllExtensionsJSON = { /** * Initializes TestAllExtensions with all fields set to their default value. */ - initialize: function (): TestAllExtensions { - return {}; + initialize: function (msg?: Partial): TestAllExtensions { + return { + ...msg, + }; }, /** @@ -13086,9 +13392,12 @@ export const OptionalGroup_extensionJSON = { /** * Initializes OptionalGroup_extension with all fields set to their default value. */ - initialize: function (): OptionalGroup_extension { + initialize: function ( + msg?: Partial, + ): OptionalGroup_extension { return { a: 0, + ...msg, }; }, @@ -13114,7 +13423,7 @@ export const OptionalGroup_extensionJSON = { ): OptionalGroup_extension { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } return msg; }, @@ -13141,9 +13450,12 @@ export const RepeatedGroup_extensionJSON = { /** * Initializes RepeatedGroup_extension with all fields set to their default value. */ - initialize: function (): RepeatedGroup_extension { + initialize: function ( + msg?: Partial, + ): RepeatedGroup_extension { return { a: 0, + ...msg, }; }, @@ -13169,7 +13481,7 @@ export const RepeatedGroup_extensionJSON = { ): RepeatedGroup_extension { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } return msg; }, @@ -13196,9 +13508,10 @@ export const TestGroupJSON = { /** * Initializes TestGroup with all fields set to their default value. */ - initialize: function (): TestGroup { + initialize: function (msg?: Partial): TestGroup { return { optionalForeignEnum: ForeignEnum._fromInt(0), + ...msg, }; }, @@ -13225,7 +13538,7 @@ export const TestGroupJSON = { const _optionalForeignEnum_ = json["optionalForeignEnum"] ?? json["optional_foreign_enum"]; if (_optionalForeignEnum_) { - msg.optionalForeignEnum = _optionalForeignEnum_; + msg.optionalForeignEnum = ForeignEnum._fromInt(_optionalForeignEnum_); } return msg; }, @@ -13251,9 +13564,12 @@ export const TestGroupJSON = { /** * Initializes TestGroup.OptionalGroup with all fields set to their default value. */ - initialize: function (): TestGroup.OptionalGroup { + initialize: function ( + msg?: Partial, + ): TestGroup.OptionalGroup { return { a: 0, + ...msg, }; }, @@ -13279,7 +13595,7 @@ export const TestGroupJSON = { ): TestGroup.OptionalGroup { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } return msg; }, @@ -13304,8 +13620,10 @@ export const TestGroupExtensionJSON = { /** * Initializes TestGroupExtension with all fields set to their default value. */ - initialize: function (): TestGroupExtension { - return {}; + initialize: function (msg?: Partial): TestGroupExtension { + return { + ...msg, + }; }, /** @@ -13346,8 +13664,12 @@ export const TestNestedExtensionJSON = { /** * Initializes TestNestedExtension with all fields set to their default value. */ - initialize: function (): TestNestedExtension { - return {}; + initialize: function ( + msg?: Partial, + ): TestNestedExtension { + return { + ...msg, + }; }, /** @@ -13396,9 +13718,12 @@ export const TestNestedExtensionJSON = { /** * Initializes TestNestedExtension.OptionalGroup_extension with all fields set to their default value. */ - initialize: function (): TestNestedExtension.OptionalGroup_extension { + initialize: function ( + msg?: Partial, + ): TestNestedExtension.OptionalGroup_extension { return { a: 0, + ...msg, }; }, @@ -13424,7 +13749,7 @@ export const TestNestedExtensionJSON = { ): TestNestedExtension.OptionalGroup_extension { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } return msg; }, @@ -13452,11 +13777,12 @@ export const TestChildExtensionJSON = { /** * Initializes TestChildExtension with all fields set to their default value. */ - initialize: function (): TestChildExtension { + initialize: function (msg?: Partial): TestChildExtension { return { a: "", b: "", optionalExtension: TestAllExtensionsJSON.initialize(), + ...msg, }; }, @@ -13532,7 +13858,7 @@ export const TestRequiredJSON = { /** * Initializes TestRequired with all fields set to their default value. */ - initialize: function (): TestRequired { + initialize: function (msg?: Partial): TestRequired { return { a: 0, dummy2: 0, @@ -13567,6 +13893,7 @@ export const TestRequiredJSON = { dummy31: 0, dummy32: 0, c: 0, + ...msg, }; }, @@ -13685,135 +14012,135 @@ export const TestRequiredJSON = { _readMessage: function (msg: TestRequired, json: any): TestRequired { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } const _dummy2_ = json["dummy2"]; if (_dummy2_) { - msg.dummy2 = _dummy2_; + msg.dummy2 = protoscript.parseNumber(_dummy2_); } const _b_ = json["b"]; if (_b_) { - msg.b = _b_; + msg.b = protoscript.parseNumber(_b_); } const _dummy4_ = json["dummy4"]; if (_dummy4_) { - msg.dummy4 = _dummy4_; + msg.dummy4 = protoscript.parseNumber(_dummy4_); } const _dummy5_ = json["dummy5"]; if (_dummy5_) { - msg.dummy5 = _dummy5_; + msg.dummy5 = protoscript.parseNumber(_dummy5_); } const _dummy6_ = json["dummy6"]; if (_dummy6_) { - msg.dummy6 = _dummy6_; + msg.dummy6 = protoscript.parseNumber(_dummy6_); } const _dummy7_ = json["dummy7"]; if (_dummy7_) { - msg.dummy7 = _dummy7_; + msg.dummy7 = protoscript.parseNumber(_dummy7_); } const _dummy8_ = json["dummy8"]; if (_dummy8_) { - msg.dummy8 = _dummy8_; + msg.dummy8 = protoscript.parseNumber(_dummy8_); } const _dummy9_ = json["dummy9"]; if (_dummy9_) { - msg.dummy9 = _dummy9_; + msg.dummy9 = protoscript.parseNumber(_dummy9_); } const _dummy10_ = json["dummy10"]; if (_dummy10_) { - msg.dummy10 = _dummy10_; + msg.dummy10 = protoscript.parseNumber(_dummy10_); } const _dummy11_ = json["dummy11"]; if (_dummy11_) { - msg.dummy11 = _dummy11_; + msg.dummy11 = protoscript.parseNumber(_dummy11_); } const _dummy12_ = json["dummy12"]; if (_dummy12_) { - msg.dummy12 = _dummy12_; + msg.dummy12 = protoscript.parseNumber(_dummy12_); } const _dummy13_ = json["dummy13"]; if (_dummy13_) { - msg.dummy13 = _dummy13_; + msg.dummy13 = protoscript.parseNumber(_dummy13_); } const _dummy14_ = json["dummy14"]; if (_dummy14_) { - msg.dummy14 = _dummy14_; + msg.dummy14 = protoscript.parseNumber(_dummy14_); } const _dummy15_ = json["dummy15"]; if (_dummy15_) { - msg.dummy15 = _dummy15_; + msg.dummy15 = protoscript.parseNumber(_dummy15_); } const _dummy16_ = json["dummy16"]; if (_dummy16_) { - msg.dummy16 = _dummy16_; + msg.dummy16 = protoscript.parseNumber(_dummy16_); } const _dummy17_ = json["dummy17"]; if (_dummy17_) { - msg.dummy17 = _dummy17_; + msg.dummy17 = protoscript.parseNumber(_dummy17_); } const _dummy18_ = json["dummy18"]; if (_dummy18_) { - msg.dummy18 = _dummy18_; + msg.dummy18 = protoscript.parseNumber(_dummy18_); } const _dummy19_ = json["dummy19"]; if (_dummy19_) { - msg.dummy19 = _dummy19_; + msg.dummy19 = protoscript.parseNumber(_dummy19_); } const _dummy20_ = json["dummy20"]; if (_dummy20_) { - msg.dummy20 = _dummy20_; + msg.dummy20 = protoscript.parseNumber(_dummy20_); } const _dummy21_ = json["dummy21"]; if (_dummy21_) { - msg.dummy21 = _dummy21_; + msg.dummy21 = protoscript.parseNumber(_dummy21_); } const _dummy22_ = json["dummy22"]; if (_dummy22_) { - msg.dummy22 = _dummy22_; + msg.dummy22 = protoscript.parseNumber(_dummy22_); } const _dummy23_ = json["dummy23"]; if (_dummy23_) { - msg.dummy23 = _dummy23_; + msg.dummy23 = protoscript.parseNumber(_dummy23_); } const _dummy24_ = json["dummy24"]; if (_dummy24_) { - msg.dummy24 = _dummy24_; + msg.dummy24 = protoscript.parseNumber(_dummy24_); } const _dummy25_ = json["dummy25"]; if (_dummy25_) { - msg.dummy25 = _dummy25_; + msg.dummy25 = protoscript.parseNumber(_dummy25_); } const _dummy26_ = json["dummy26"]; if (_dummy26_) { - msg.dummy26 = _dummy26_; + msg.dummy26 = protoscript.parseNumber(_dummy26_); } const _dummy27_ = json["dummy27"]; if (_dummy27_) { - msg.dummy27 = _dummy27_; + msg.dummy27 = protoscript.parseNumber(_dummy27_); } const _dummy28_ = json["dummy28"]; if (_dummy28_) { - msg.dummy28 = _dummy28_; + msg.dummy28 = protoscript.parseNumber(_dummy28_); } const _dummy29_ = json["dummy29"]; if (_dummy29_) { - msg.dummy29 = _dummy29_; + msg.dummy29 = protoscript.parseNumber(_dummy29_); } const _dummy30_ = json["dummy30"]; if (_dummy30_) { - msg.dummy30 = _dummy30_; + msg.dummy30 = protoscript.parseNumber(_dummy30_); } const _dummy31_ = json["dummy31"]; if (_dummy31_) { - msg.dummy31 = _dummy31_; + msg.dummy31 = protoscript.parseNumber(_dummy31_); } const _dummy32_ = json["dummy32"]; if (_dummy32_) { - msg.dummy32 = _dummy32_; + msg.dummy32 = protoscript.parseNumber(_dummy32_); } const _c_ = json["c"]; if (_c_) { - msg.c = _c_; + msg.c = protoscript.parseNumber(_c_); } return msg; }, @@ -13840,11 +14167,14 @@ export const TestRequiredForeignJSON = { /** * Initializes TestRequiredForeign with all fields set to their default value. */ - initialize: function (): TestRequiredForeign { + initialize: function ( + msg?: Partial, + ): TestRequiredForeign { return { optionalMessage: TestRequiredJSON.initialize(), repeatedMessage: [], dummy: 0, + ...msg, }; }, @@ -13897,7 +14227,7 @@ export const TestRequiredForeignJSON = { } const _dummy_ = json["dummy"]; if (_dummy_) { - msg.dummy = _dummy_; + msg.dummy = protoscript.parseNumber(_dummy_); } return msg; }, @@ -13924,11 +14254,14 @@ export const TestRequiredMessageJSON = { /** * Initializes TestRequiredMessage with all fields set to their default value. */ - initialize: function (): TestRequiredMessage { + initialize: function ( + msg?: Partial, + ): TestRequiredMessage { return { optionalMessage: TestRequiredJSON.initialize(), repeatedMessage: [], requiredMessage: TestRequiredJSON.initialize(), + ...msg, }; }, @@ -14014,9 +14347,10 @@ export const TestForeignNestedJSON = { /** * Initializes TestForeignNested with all fields set to their default value. */ - initialize: function (): TestForeignNested { + initialize: function (msg?: Partial): TestForeignNested { return { foreignNested: TestAllTypesJSON.NestedMessage.initialize(), + ...msg, }; }, @@ -14074,8 +14408,10 @@ export const TestEmptyMessageJSON = { /** * Initializes TestEmptyMessage with all fields set to their default value. */ - initialize: function (): TestEmptyMessage { - return {}; + initialize: function (msg?: Partial): TestEmptyMessage { + return { + ...msg, + }; }, /** @@ -14115,8 +14451,12 @@ export const TestEmptyMessageWithExtensionsJSON = { /** * Initializes TestEmptyMessageWithExtensions with all fields set to their default value. */ - initialize: function (): TestEmptyMessageWithExtensions { - return {}; + initialize: function ( + msg?: Partial, + ): TestEmptyMessageWithExtensions { + return { + ...msg, + }; }, /** @@ -14157,8 +14497,12 @@ export const TestPickleNestedMessageJSON = { /** * Initializes TestPickleNestedMessage with all fields set to their default value. */ - initialize: function (): TestPickleNestedMessage { - return {}; + initialize: function ( + msg?: Partial, + ): TestPickleNestedMessage { + return { + ...msg, + }; }, /** @@ -14205,9 +14549,12 @@ export const TestPickleNestedMessageJSON = { /** * Initializes TestPickleNestedMessage.NestedMessage with all fields set to their default value. */ - initialize: function (): TestPickleNestedMessage.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestPickleNestedMessage.NestedMessage { return { bb: 0, + ...msg, }; }, @@ -14233,7 +14580,7 @@ export const TestPickleNestedMessageJSON = { ): TestPickleNestedMessage.NestedMessage { const _bb_ = json["bb"]; if (_bb_) { - msg.bb = _bb_; + msg.bb = protoscript.parseNumber(_bb_); } return msg; }, @@ -14267,12 +14614,14 @@ export const TestPickleNestedMessageJSON = { /** * Initializes TestPickleNestedMessage.NestedMessage.NestedNestedMessage with all fields set to their default value. */ - initialize: - function (): TestPickleNestedMessage.NestedMessage.NestedNestedMessage { - return { - cc: 0, - }; - }, + initialize: function ( + msg?: Partial, + ): TestPickleNestedMessage.NestedMessage.NestedNestedMessage { + return { + cc: 0, + ...msg, + }; + }, /** * @private @@ -14296,7 +14645,7 @@ export const TestPickleNestedMessageJSON = { ): TestPickleNestedMessage.NestedMessage.NestedNestedMessage { const _cc_ = json["cc"]; if (_cc_) { - msg.cc = _cc_; + msg.cc = protoscript.parseNumber(_cc_); } return msg; }, @@ -14322,8 +14671,12 @@ export const TestMultipleExtensionRangesJSON = { /** * Initializes TestMultipleExtensionRanges with all fields set to their default value. */ - initialize: function (): TestMultipleExtensionRanges { - return {}; + initialize: function ( + msg?: Partial, + ): TestMultipleExtensionRanges { + return { + ...msg, + }; }, /** @@ -14367,10 +14720,13 @@ export const TestReallyLargeTagNumberJSON = { /** * Initializes TestReallyLargeTagNumber with all fields set to their default value. */ - initialize: function (): TestReallyLargeTagNumber { + initialize: function ( + msg?: Partial, + ): TestReallyLargeTagNumber { return { a: 0, bb: 0, + ...msg, }; }, @@ -14399,11 +14755,11 @@ export const TestReallyLargeTagNumberJSON = { ): TestReallyLargeTagNumber { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } const _bb_ = json["bb"]; if (_bb_) { - msg.bb = _bb_; + msg.bb = protoscript.parseNumber(_bb_); } return msg; }, @@ -14430,10 +14786,13 @@ export const TestRecursiveMessageJSON = { /** * Initializes TestRecursiveMessage with all fields set to their default value. */ - initialize: function (): TestRecursiveMessage { + initialize: function ( + msg?: Partial, + ): TestRecursiveMessage { return { a: undefined, i: 0, + ...msg, }; }, @@ -14470,7 +14829,7 @@ export const TestRecursiveMessageJSON = { } const _i_ = json["i"]; if (_i_) { - msg.i = _i_; + msg.i = protoscript.parseNumber(_i_); } return msg; }, @@ -14497,9 +14856,12 @@ export const TestMutualRecursionAJSON = { /** * Initializes TestMutualRecursionA with all fields set to their default value. */ - initialize: function (): TestMutualRecursionA { + initialize: function ( + msg?: Partial, + ): TestMutualRecursionA { return { bb: TestMutualRecursionBJSON.initialize(), + ...msg, }; }, @@ -14558,9 +14920,12 @@ export const TestMutualRecursionAJSON = { /** * Initializes TestMutualRecursionA.SubMessage with all fields set to their default value. */ - initialize: function (): TestMutualRecursionA.SubMessage { + initialize: function ( + msg?: Partial, + ): TestMutualRecursionA.SubMessage { return { b: TestMutualRecursionBJSON.initialize(), + ...msg, }; }, @@ -14618,10 +14983,13 @@ export const TestMutualRecursionAJSON = { /** * Initializes TestMutualRecursionA.SubGroup with all fields set to their default value. */ - initialize: function (): TestMutualRecursionA.SubGroup { + initialize: function ( + msg?: Partial, + ): TestMutualRecursionA.SubGroup { return { subMessage: TestMutualRecursionAJSON.SubMessage.initialize(), notInThisScc: TestAllTypesJSON.initialize(), + ...msg, }; }, @@ -14693,10 +15061,13 @@ export const TestMutualRecursionBJSON = { /** * Initializes TestMutualRecursionB with all fields set to their default value. */ - initialize: function (): TestMutualRecursionB { + initialize: function ( + msg?: Partial, + ): TestMutualRecursionB { return { a: TestMutualRecursionAJSON.initialize(), optionalInt32: 0, + ...msg, }; }, @@ -14732,7 +15103,7 @@ export const TestMutualRecursionBJSON = { } const _optionalInt32_ = json["optionalInt32"] ?? json["optional_int32"]; if (_optionalInt32_) { - msg.optionalInt32 = _optionalInt32_; + msg.optionalInt32 = protoscript.parseNumber(_optionalInt32_); } return msg; }, @@ -14759,9 +15130,10 @@ export const TestIsInitializedJSON = { /** * Initializes TestIsInitialized with all fields set to their default value. */ - initialize: function (): TestIsInitialized { + initialize: function (msg?: Partial): TestIsInitialized { return { subMessage: TestIsInitializedJSON.SubMessage.initialize(), + ...msg, }; }, @@ -14820,8 +15192,12 @@ export const TestIsInitializedJSON = { /** * Initializes TestIsInitialized.SubMessage with all fields set to their default value. */ - initialize: function (): TestIsInitialized.SubMessage { - return {}; + initialize: function ( + msg?: Partial, + ): TestIsInitialized.SubMessage { + return { + ...msg, + }; }, /** @@ -14868,9 +15244,12 @@ export const TestIsInitializedJSON = { /** * Initializes TestIsInitialized.SubMessage.SubGroup with all fields set to their default value. */ - initialize: function (): TestIsInitialized.SubMessage.SubGroup { + initialize: function ( + msg?: Partial, + ): TestIsInitialized.SubMessage.SubGroup { return { i: 0, + ...msg, }; }, @@ -14896,7 +15275,7 @@ export const TestIsInitializedJSON = { ): TestIsInitialized.SubMessage.SubGroup { const _i_ = json["i"]; if (_i_) { - msg.i = _i_; + msg.i = protoscript.parseNumber(_i_); } return msg; }, @@ -14925,9 +15304,10 @@ export const TestDupFieldNumberJSON = { /** * Initializes TestDupFieldNumber with all fields set to their default value. */ - initialize: function (): TestDupFieldNumber { + initialize: function (msg?: Partial): TestDupFieldNumber { return { a: 0, + ...msg, }; }, @@ -14953,7 +15333,7 @@ export const TestDupFieldNumberJSON = { ): TestDupFieldNumber { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } return msg; }, @@ -14979,9 +15359,12 @@ export const TestDupFieldNumberJSON = { /** * Initializes TestDupFieldNumber.Foo with all fields set to their default value. */ - initialize: function (): TestDupFieldNumber.Foo { + initialize: function ( + msg?: Partial, + ): TestDupFieldNumber.Foo { return { a: 0, + ...msg, }; }, @@ -15007,7 +15390,7 @@ export const TestDupFieldNumberJSON = { ): TestDupFieldNumber.Foo { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } return msg; }, @@ -15034,9 +15417,12 @@ export const TestDupFieldNumberJSON = { /** * Initializes TestDupFieldNumber.Bar with all fields set to their default value. */ - initialize: function (): TestDupFieldNumber.Bar { + initialize: function ( + msg?: Partial, + ): TestDupFieldNumber.Bar { return { a: 0, + ...msg, }; }, @@ -15062,7 +15448,7 @@ export const TestDupFieldNumberJSON = { ): TestDupFieldNumber.Bar { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } return msg; }, @@ -15090,9 +15476,10 @@ export const TestEagerMessageJSON = { /** * Initializes TestEagerMessage with all fields set to their default value. */ - initialize: function (): TestEagerMessage { + initialize: function (msg?: Partial): TestEagerMessage { return { subMessage: TestAllTypesJSON.initialize(), + ...msg, }; }, @@ -15145,9 +15532,10 @@ export const TestLazyMessageJSON = { /** * Initializes TestLazyMessage with all fields set to their default value. */ - initialize: function (): TestLazyMessage { + initialize: function (msg?: Partial): TestLazyMessage { return { subMessage: TestAllTypesJSON.initialize(), + ...msg, }; }, @@ -15200,10 +15588,13 @@ export const TestNestedMessageHasBitsJSON = { /** * Initializes TestNestedMessageHasBits with all fields set to their default value. */ - initialize: function (): TestNestedMessageHasBits { + initialize: function ( + msg?: Partial, + ): TestNestedMessageHasBits { return { optionalNestedMessage: TestNestedMessageHasBitsJSON.NestedMessage.initialize(), + ...msg, }; }, @@ -15269,10 +15660,13 @@ export const TestNestedMessageHasBitsJSON = { /** * Initializes TestNestedMessageHasBits.NestedMessage with all fields set to their default value. */ - initialize: function (): TestNestedMessageHasBits.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestNestedMessageHasBits.NestedMessage { return { nestedmessageRepeatedInt32: [], nestedmessageRepeatedForeignmessage: [], + ...msg, }; }, @@ -15306,7 +15700,9 @@ export const TestNestedMessageHasBitsJSON = { json["nestedmessageRepeatedInt32"] ?? json["nestedmessage_repeated_int32"]; if (_nestedmessageRepeatedInt32_) { - msg.nestedmessageRepeatedInt32 = _nestedmessageRepeatedInt32_; + msg.nestedmessageRepeatedInt32 = _nestedmessageRepeatedInt32_.map( + protoscript.parseNumber, + ); } const _nestedmessageRepeatedForeignmessage_ = json["nestedmessageRepeatedForeignmessage"] ?? @@ -15344,7 +15740,9 @@ export const TestCamelCaseFieldNamesJSON = { /** * Initializes TestCamelCaseFieldNames with all fields set to their default value. */ - initialize: function (): TestCamelCaseFieldNames { + initialize: function ( + msg?: Partial, + ): TestCamelCaseFieldNames { return { PrimitiveField: 0, StringField: "", @@ -15358,6 +15756,7 @@ export const TestCamelCaseFieldNamesJSON = { RepeatedMessageField: [], RepeatedStringPieceField: [], RepeatedCordField: [], + ...msg, }; }, @@ -15421,7 +15820,7 @@ export const TestCamelCaseFieldNamesJSON = { ): TestCamelCaseFieldNames { const _PrimitiveField_ = json["PrimitiveField"]; if (_PrimitiveField_) { - msg.PrimitiveField = _PrimitiveField_; + msg.PrimitiveField = protoscript.parseNumber(_PrimitiveField_); } const _StringField_ = json["StringField"]; if (_StringField_) { @@ -15429,7 +15828,7 @@ export const TestCamelCaseFieldNamesJSON = { } const _EnumField_ = json["EnumField"]; if (_EnumField_) { - msg.EnumField = _EnumField_; + msg.EnumField = ForeignEnum._fromInt(_EnumField_); } const _MessageField_ = json["MessageField"]; if (_MessageField_) { @@ -15445,7 +15844,9 @@ export const TestCamelCaseFieldNamesJSON = { } const _RepeatedPrimitiveField_ = json["RepeatedPrimitiveField"]; if (_RepeatedPrimitiveField_) { - msg.RepeatedPrimitiveField = _RepeatedPrimitiveField_; + msg.RepeatedPrimitiveField = _RepeatedPrimitiveField_.map( + protoscript.parseNumber, + ); } const _RepeatedStringField_ = json["RepeatedStringField"]; if (_RepeatedStringField_) { @@ -15453,7 +15854,7 @@ export const TestCamelCaseFieldNamesJSON = { } const _RepeatedEnumField_ = json["RepeatedEnumField"]; if (_RepeatedEnumField_) { - msg.RepeatedEnumField = _RepeatedEnumField_; + msg.RepeatedEnumField = _RepeatedEnumField_.map(ForeignEnum._fromInt); } const _RepeatedMessageField_ = json["RepeatedMessageField"]; if (_RepeatedMessageField_) { @@ -15496,12 +15897,13 @@ export const TestFieldOrderingsJSON = { /** * Initializes TestFieldOrderings with all fields set to their default value. */ - initialize: function (): TestFieldOrderings { + initialize: function (msg?: Partial): TestFieldOrderings { return { myString: "", myInt: 0n, myFloat: 0, optionalNestedMessage: TestFieldOrderingsJSON.NestedMessage.initialize(), + ...msg, }; }, @@ -15516,7 +15918,7 @@ export const TestFieldOrderingsJSON = { json["myString"] = msg.myString; } if (msg.myInt) { - json["myInt"] = msg.myInt.toString(); + json["myInt"] = String(msg.myInt); } if (msg.myFloat) { json["myFloat"] = msg.myFloat; @@ -15550,7 +15952,7 @@ export const TestFieldOrderingsJSON = { } const _myFloat_ = json["myFloat"] ?? json["my_float"]; if (_myFloat_) { - msg.myFloat = _myFloat_; + msg.myFloat = protoscript.parseDouble(_myFloat_); } const _optionalNestedMessage_ = json["optionalNestedMessage"] ?? json["optional_nested_message"]; @@ -15588,10 +15990,13 @@ export const TestFieldOrderingsJSON = { /** * Initializes TestFieldOrderings.NestedMessage with all fields set to their default value. */ - initialize: function (): TestFieldOrderings.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestFieldOrderings.NestedMessage { return { oo: 0n, bb: 0, + ...msg, }; }, @@ -15603,7 +16008,7 @@ export const TestFieldOrderingsJSON = { ): Record { const json: Record = {}; if (msg.oo) { - json["oo"] = msg.oo.toString(); + json["oo"] = String(msg.oo); } if (msg.bb) { json["bb"] = msg.bb; @@ -15624,7 +16029,7 @@ export const TestFieldOrderingsJSON = { } const _bb_ = json["bb"]; if (_bb_) { - msg.bb = _bb_; + msg.bb = protoscript.parseNumber(_bb_); } return msg; }, @@ -15652,9 +16057,12 @@ export const TestExtensionOrderings1JSON = { /** * Initializes TestExtensionOrderings1 with all fields set to their default value. */ - initialize: function (): TestExtensionOrderings1 { + initialize: function ( + msg?: Partial, + ): TestExtensionOrderings1 { return { myString: "", + ...msg, }; }, @@ -15707,9 +16115,12 @@ export const TestExtensionOrderings2JSON = { /** * Initializes TestExtensionOrderings2 with all fields set to their default value. */ - initialize: function (): TestExtensionOrderings2 { + initialize: function ( + msg?: Partial, + ): TestExtensionOrderings2 { return { myString: "", + ...msg, }; }, @@ -15767,9 +16178,12 @@ export const TestExtensionOrderings2JSON = { /** * Initializes TestExtensionOrderings2.TestExtensionOrderings3 with all fields set to their default value. */ - initialize: function (): TestExtensionOrderings2.TestExtensionOrderings3 { + initialize: function ( + msg?: Partial, + ): TestExtensionOrderings2.TestExtensionOrderings3 { return { myString: "", + ...msg, }; }, @@ -15823,7 +16237,9 @@ export const TestExtremeDefaultValuesJSON = { /** * Initializes TestExtremeDefaultValues with all fields set to their default value. */ - initialize: function (): TestExtremeDefaultValues { + initialize: function ( + msg?: Partial, + ): TestExtremeDefaultValues { return { escapedBytes: new Uint8Array(), largeUint32: 0, @@ -15852,6 +16268,7 @@ export const TestExtremeDefaultValuesJSON = { stringPieceWithZero: "", cordWithZero: "", replacementString: "", + ...msg, }; }, @@ -15863,25 +16280,25 @@ export const TestExtremeDefaultValuesJSON = { ): Record { const json: Record = {}; if (msg.escapedBytes?.length) { - json["escapedBytes"] = encodeBase64Bytes(msg.escapedBytes); + json["escapedBytes"] = protoscript.serializeBytes(msg.escapedBytes); } if (msg.largeUint32) { json["largeUint32"] = msg.largeUint32; } if (msg.largeUint64) { - json["largeUint64"] = msg.largeUint64.toString(); + json["largeUint64"] = String(msg.largeUint64); } if (msg.smallInt32) { json["smallInt32"] = msg.smallInt32; } if (msg.smallInt64) { - json["smallInt64"] = msg.smallInt64.toString(); + json["smallInt64"] = String(msg.smallInt64); } if (msg.reallySmallInt32) { json["reallySmallInt32"] = msg.reallySmallInt32; } if (msg.reallySmallInt64) { - json["reallySmallInt64"] = msg.reallySmallInt64.toString(); + json["reallySmallInt64"] = String(msg.reallySmallInt64); } if (msg.utf8String) { json["utf8String"] = msg.utf8String; @@ -15932,7 +16349,7 @@ export const TestExtremeDefaultValuesJSON = { json["stringWithZero"] = msg.stringWithZero; } if (msg.bytesWithZero?.length) { - json["bytesWithZero"] = encodeBase64Bytes(msg.bytesWithZero); + json["bytesWithZero"] = protoscript.serializeBytes(msg.bytesWithZero); } if (msg.stringPieceWithZero) { json["stringPieceWithZero"] = msg.stringPieceWithZero; @@ -15955,11 +16372,11 @@ export const TestExtremeDefaultValuesJSON = { ): TestExtremeDefaultValues { const _escapedBytes_ = json["escapedBytes"] ?? json["escaped_bytes"]; if (_escapedBytes_) { - msg.escapedBytes = decodeBase64Bytes(_escapedBytes_); + msg.escapedBytes = protoscript.parseBytes(_escapedBytes_); } const _largeUint32_ = json["largeUint32"] ?? json["large_uint32"]; if (_largeUint32_) { - msg.largeUint32 = _largeUint32_; + msg.largeUint32 = protoscript.parseNumber(_largeUint32_); } const _largeUint64_ = json["largeUint64"] ?? json["large_uint64"]; if (_largeUint64_) { @@ -15967,7 +16384,7 @@ export const TestExtremeDefaultValuesJSON = { } const _smallInt32_ = json["smallInt32"] ?? json["small_int32"]; if (_smallInt32_) { - msg.smallInt32 = _smallInt32_; + msg.smallInt32 = protoscript.parseNumber(_smallInt32_); } const _smallInt64_ = json["smallInt64"] ?? json["small_int64"]; if (_smallInt64_) { @@ -15976,7 +16393,7 @@ export const TestExtremeDefaultValuesJSON = { const _reallySmallInt32_ = json["reallySmallInt32"] ?? json["really_small_int32"]; if (_reallySmallInt32_) { - msg.reallySmallInt32 = _reallySmallInt32_; + msg.reallySmallInt32 = protoscript.parseNumber(_reallySmallInt32_); } const _reallySmallInt64_ = json["reallySmallInt64"] ?? json["really_small_int64"]; @@ -15989,57 +16406,57 @@ export const TestExtremeDefaultValuesJSON = { } const _zeroFloat_ = json["zeroFloat"] ?? json["zero_float"]; if (_zeroFloat_) { - msg.zeroFloat = _zeroFloat_; + msg.zeroFloat = protoscript.parseDouble(_zeroFloat_); } const _oneFloat_ = json["oneFloat"] ?? json["one_float"]; if (_oneFloat_) { - msg.oneFloat = _oneFloat_; + msg.oneFloat = protoscript.parseDouble(_oneFloat_); } const _smallFloat_ = json["smallFloat"] ?? json["small_float"]; if (_smallFloat_) { - msg.smallFloat = _smallFloat_; + msg.smallFloat = protoscript.parseDouble(_smallFloat_); } const _negativeOneFloat_ = json["negativeOneFloat"] ?? json["negative_one_float"]; if (_negativeOneFloat_) { - msg.negativeOneFloat = _negativeOneFloat_; + msg.negativeOneFloat = protoscript.parseDouble(_negativeOneFloat_); } const _negativeFloat_ = json["negativeFloat"] ?? json["negative_float"]; if (_negativeFloat_) { - msg.negativeFloat = _negativeFloat_; + msg.negativeFloat = protoscript.parseDouble(_negativeFloat_); } const _largeFloat_ = json["largeFloat"] ?? json["large_float"]; if (_largeFloat_) { - msg.largeFloat = _largeFloat_; + msg.largeFloat = protoscript.parseDouble(_largeFloat_); } const _smallNegativeFloat_ = json["smallNegativeFloat"] ?? json["small_negative_float"]; if (_smallNegativeFloat_) { - msg.smallNegativeFloat = _smallNegativeFloat_; + msg.smallNegativeFloat = protoscript.parseDouble(_smallNegativeFloat_); } const _infDouble_ = json["infDouble"] ?? json["inf_double"]; if (_infDouble_) { - msg.infDouble = _infDouble_; + msg.infDouble = protoscript.parseDouble(_infDouble_); } const _negInfDouble_ = json["negInfDouble"] ?? json["neg_inf_double"]; if (_negInfDouble_) { - msg.negInfDouble = _negInfDouble_; + msg.negInfDouble = protoscript.parseDouble(_negInfDouble_); } const _nanDouble_ = json["nanDouble"] ?? json["nan_double"]; if (_nanDouble_) { - msg.nanDouble = _nanDouble_; + msg.nanDouble = protoscript.parseDouble(_nanDouble_); } const _infFloat_ = json["infFloat"] ?? json["inf_float"]; if (_infFloat_) { - msg.infFloat = _infFloat_; + msg.infFloat = protoscript.parseDouble(_infFloat_); } const _negInfFloat_ = json["negInfFloat"] ?? json["neg_inf_float"]; if (_negInfFloat_) { - msg.negInfFloat = _negInfFloat_; + msg.negInfFloat = protoscript.parseDouble(_negInfFloat_); } const _nanFloat_ = json["nanFloat"] ?? json["nan_float"]; if (_nanFloat_) { - msg.nanFloat = _nanFloat_; + msg.nanFloat = protoscript.parseDouble(_nanFloat_); } const _cppTrigraph_ = json["cppTrigraph"] ?? json["cpp_trigraph"]; if (_cppTrigraph_) { @@ -16051,7 +16468,7 @@ export const TestExtremeDefaultValuesJSON = { } const _bytesWithZero_ = json["bytesWithZero"] ?? json["bytes_with_zero"]; if (_bytesWithZero_) { - msg.bytesWithZero = decodeBase64Bytes(_bytesWithZero_); + msg.bytesWithZero = protoscript.parseBytes(_bytesWithZero_); } const _stringPieceWithZero_ = json["stringPieceWithZero"] ?? json["string_piece_with_zero"]; @@ -16092,9 +16509,10 @@ export const SparseEnumMessageJSON = { /** * Initializes SparseEnumMessage with all fields set to their default value. */ - initialize: function (): SparseEnumMessage { + initialize: function (msg?: Partial): SparseEnumMessage { return { sparseEnum: TestSparseEnum._fromInt(0), + ...msg, }; }, @@ -16120,7 +16538,7 @@ export const SparseEnumMessageJSON = { ): SparseEnumMessage { const _sparseEnum_ = json["sparseEnum"] ?? json["sparse_enum"]; if (_sparseEnum_) { - msg.sparseEnum = _sparseEnum_; + msg.sparseEnum = TestSparseEnum._fromInt(_sparseEnum_); } return msg; }, @@ -16147,9 +16565,10 @@ export const OneStringJSON = { /** * Initializes OneString with all fields set to their default value. */ - initialize: function (): OneString { + initialize: function (msg?: Partial): OneString { return { data: "", + ...msg, }; }, @@ -16199,9 +16618,10 @@ export const MoreStringJSON = { /** * Initializes MoreString with all fields set to their default value. */ - initialize: function (): MoreString { + initialize: function (msg?: Partial): MoreString { return { data: [], + ...msg, }; }, @@ -16251,9 +16671,10 @@ export const OneBytesJSON = { /** * Initializes OneBytes with all fields set to their default value. */ - initialize: function (): OneBytes { + initialize: function (msg?: Partial): OneBytes { return { data: new Uint8Array(), + ...msg, }; }, @@ -16265,7 +16686,7 @@ export const OneBytesJSON = { ): Record { const json: Record = {}; if (msg.data?.length) { - json["data"] = encodeBase64Bytes(msg.data); + json["data"] = protoscript.serializeBytes(msg.data); } return json; }, @@ -16276,7 +16697,7 @@ export const OneBytesJSON = { _readMessage: function (msg: OneBytes, json: any): OneBytes { const _data_ = json["data"]; if (_data_) { - msg.data = decodeBase64Bytes(_data_); + msg.data = protoscript.parseBytes(_data_); } return msg; }, @@ -16303,9 +16724,10 @@ export const MoreBytesJSON = { /** * Initializes MoreBytes with all fields set to their default value. */ - initialize: function (): MoreBytes { + initialize: function (msg?: Partial): MoreBytes { return { data: [], + ...msg, }; }, @@ -16317,7 +16739,7 @@ export const MoreBytesJSON = { ): Record { const json: Record = {}; if (msg.data?.length) { - json["data"] = msg.data.map(encodeBase64Bytes); + json["data"] = msg.data.map(protoscript.serializeBytes); } return json; }, @@ -16328,7 +16750,7 @@ export const MoreBytesJSON = { _readMessage: function (msg: MoreBytes, json: any): MoreBytes { const _data_ = json["data"]; if (_data_) { - msg.data = _data_.map(decodeBase64Bytes); + msg.data = _data_.map(protoscript.parseBytes); } return msg; }, @@ -16355,9 +16777,10 @@ export const Int32MessageJSON = { /** * Initializes Int32Message with all fields set to their default value. */ - initialize: function (): Int32Message { + initialize: function (msg?: Partial): Int32Message { return { data: 0, + ...msg, }; }, @@ -16380,7 +16803,7 @@ export const Int32MessageJSON = { _readMessage: function (msg: Int32Message, json: any): Int32Message { const _data_ = json["data"]; if (_data_) { - msg.data = _data_; + msg.data = protoscript.parseNumber(_data_); } return msg; }, @@ -16407,9 +16830,10 @@ export const Uint32MessageJSON = { /** * Initializes Uint32Message with all fields set to their default value. */ - initialize: function (): Uint32Message { + initialize: function (msg?: Partial): Uint32Message { return { data: 0, + ...msg, }; }, @@ -16432,7 +16856,7 @@ export const Uint32MessageJSON = { _readMessage: function (msg: Uint32Message, json: any): Uint32Message { const _data_ = json["data"]; if (_data_) { - msg.data = _data_; + msg.data = protoscript.parseNumber(_data_); } return msg; }, @@ -16459,9 +16883,10 @@ export const Int64MessageJSON = { /** * Initializes Int64Message with all fields set to their default value. */ - initialize: function (): Int64Message { + initialize: function (msg?: Partial): Int64Message { return { data: 0n, + ...msg, }; }, @@ -16473,7 +16898,7 @@ export const Int64MessageJSON = { ): Record { const json: Record = {}; if (msg.data) { - json["data"] = msg.data.toString(); + json["data"] = String(msg.data); } return json; }, @@ -16511,9 +16936,10 @@ export const Uint64MessageJSON = { /** * Initializes Uint64Message with all fields set to their default value. */ - initialize: function (): Uint64Message { + initialize: function (msg?: Partial): Uint64Message { return { data: 0n, + ...msg, }; }, @@ -16525,7 +16951,7 @@ export const Uint64MessageJSON = { ): Record { const json: Record = {}; if (msg.data) { - json["data"] = msg.data.toString(); + json["data"] = String(msg.data); } return json; }, @@ -16563,9 +16989,10 @@ export const BoolMessageJSON = { /** * Initializes BoolMessage with all fields set to their default value. */ - initialize: function (): BoolMessage { + initialize: function (msg?: Partial): BoolMessage { return { data: false, + ...msg, }; }, @@ -16615,11 +17042,12 @@ export const TestOneofJSON = { /** * Initializes TestOneof with all fields set to their default value. */ - initialize: function (): TestOneof { + initialize: function (msg?: Partial): TestOneof { return { fooInt: undefined, fooString: undefined, fooMessage: undefined, + ...msg, }; }, @@ -16649,7 +17077,7 @@ export const TestOneofJSON = { _readMessage: function (msg: TestOneof, json: any): TestOneof { const _fooInt_ = json["fooInt"] ?? json["foo_int"]; if (_fooInt_) { - msg.fooInt = _fooInt_; + msg.fooInt = protoscript.parseNumber(_fooInt_); } const _fooString_ = json["fooString"] ?? json["foo_string"]; if (_fooString_) { @@ -16684,10 +17112,13 @@ export const TestOneofJSON = { /** * Initializes TestOneof.FooGroup with all fields set to their default value. */ - initialize: function (): TestOneof.FooGroup { + initialize: function ( + msg?: Partial, + ): TestOneof.FooGroup { return { a: 0, b: "", + ...msg, }; }, @@ -16716,7 +17147,7 @@ export const TestOneofJSON = { ): TestOneof.FooGroup { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } const _b_ = json["b"]; if (_b_) { @@ -16748,11 +17179,14 @@ export const TestOneofBackwardsCompatibleJSON = { /** * Initializes TestOneofBackwardsCompatible with all fields set to their default value. */ - initialize: function (): TestOneofBackwardsCompatible { + initialize: function ( + msg?: Partial, + ): TestOneofBackwardsCompatible { return { fooInt: 0, fooString: "", fooMessage: TestAllTypesJSON.initialize(), + ...msg, }; }, @@ -16787,7 +17221,7 @@ export const TestOneofBackwardsCompatibleJSON = { ): TestOneofBackwardsCompatible { const _fooInt_ = json["fooInt"] ?? json["foo_int"]; if (_fooInt_) { - msg.fooInt = _fooInt_; + msg.fooInt = protoscript.parseNumber(_fooInt_); } const _fooString_ = json["fooString"] ?? json["foo_string"]; if (_fooString_) { @@ -16825,10 +17259,13 @@ export const TestOneofBackwardsCompatibleJSON = { /** * Initializes TestOneofBackwardsCompatible.FooGroup with all fields set to their default value. */ - initialize: function (): TestOneofBackwardsCompatible.FooGroup { + initialize: function ( + msg?: Partial, + ): TestOneofBackwardsCompatible.FooGroup { return { a: 0, b: "", + ...msg, }; }, @@ -16857,7 +17294,7 @@ export const TestOneofBackwardsCompatibleJSON = { ): TestOneofBackwardsCompatible.FooGroup { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } const _b_ = json["b"]; if (_b_) { @@ -16889,7 +17326,7 @@ export const TestOneof2JSON = { /** * Initializes TestOneof2 with all fields set to their default value. */ - initialize: function (): TestOneof2 { + initialize: function (msg?: Partial): TestOneof2 { return { fooInt: undefined, fooString: undefined, @@ -16911,6 +17348,7 @@ export const TestOneof2JSON = { barBytesWithEmptyDefault: undefined, bazInt: 0, bazString: "", + ...msg, }; }, @@ -16934,7 +17372,7 @@ export const TestOneof2JSON = { json["fooStringPiece"] = msg.fooStringPiece; } if (msg.fooBytes?.length) { - json["fooBytes"] = encodeBase64Bytes(msg.fooBytes); + json["fooBytes"] = protoscript.serializeBytes(msg.fooBytes); } if (msg.fooEnum != undefined) { json["fooEnum"] = msg.fooEnum; @@ -16964,7 +17402,7 @@ export const TestOneof2JSON = { json["barStringPiece"] = msg.barStringPiece; } if (msg.barBytes?.length) { - json["barBytes"] = encodeBase64Bytes(msg.barBytes); + json["barBytes"] = protoscript.serializeBytes(msg.barBytes); } if (msg.barEnum != undefined) { json["barEnum"] = msg.barEnum; @@ -16980,7 +17418,7 @@ export const TestOneof2JSON = { msg.barStringPieceWithEmptyDefault; } if (msg.barBytesWithEmptyDefault?.length) { - json["barBytesWithEmptyDefault"] = encodeBase64Bytes( + json["barBytesWithEmptyDefault"] = protoscript.serializeBytes( msg.barBytesWithEmptyDefault, ); } @@ -16999,7 +17437,7 @@ export const TestOneof2JSON = { _readMessage: function (msg: TestOneof2, json: any): TestOneof2 { const _fooInt_ = json["fooInt"] ?? json["foo_int"]; if (_fooInt_) { - msg.fooInt = _fooInt_; + msg.fooInt = protoscript.parseNumber(_fooInt_); } const _fooString_ = json["fooString"] ?? json["foo_string"]; if (_fooString_) { @@ -17015,11 +17453,11 @@ export const TestOneof2JSON = { } const _fooBytes_ = json["fooBytes"] ?? json["foo_bytes"]; if (_fooBytes_) { - msg.fooBytes = decodeBase64Bytes(_fooBytes_); + msg.fooBytes = protoscript.parseBytes(_fooBytes_); } const _fooEnum_ = json["fooEnum"] ?? json["foo_enum"]; if (_fooEnum_) { - msg.fooEnum = _fooEnum_; + msg.fooEnum = TestOneof2.NestedEnum._fromInt(_fooEnum_); } const _fooMessage_ = json["fooMessage"] ?? json["foo_message"]; if (_fooMessage_) { @@ -17036,7 +17474,7 @@ export const TestOneof2JSON = { } const _barInt_ = json["barInt"] ?? json["bar_int"]; if (_barInt_) { - msg.barInt = _barInt_; + msg.barInt = protoscript.parseNumber(_barInt_); } const _barString_ = json["barString"] ?? json["bar_string"]; if (_barString_) { @@ -17052,11 +17490,11 @@ export const TestOneof2JSON = { } const _barBytes_ = json["barBytes"] ?? json["bar_bytes"]; if (_barBytes_) { - msg.barBytes = decodeBase64Bytes(_barBytes_); + msg.barBytes = protoscript.parseBytes(_barBytes_); } const _barEnum_ = json["barEnum"] ?? json["bar_enum"]; if (_barEnum_) { - msg.barEnum = _barEnum_; + msg.barEnum = TestOneof2.NestedEnum._fromInt(_barEnum_); } const _barStringWithEmptyDefault_ = json["barStringWithEmptyDefault"] ?? @@ -17078,13 +17516,13 @@ export const TestOneof2JSON = { const _barBytesWithEmptyDefault_ = json["barBytesWithEmptyDefault"] ?? json["bar_bytes_with_empty_default"]; if (_barBytesWithEmptyDefault_) { - msg.barBytesWithEmptyDefault = decodeBase64Bytes( + msg.barBytesWithEmptyDefault = protoscript.parseBytes( _barBytesWithEmptyDefault_, ); } const _bazInt_ = json["bazInt"] ?? json["baz_int"]; if (_bazInt_) { - msg.bazInt = _bazInt_; + msg.bazInt = protoscript.parseNumber(_bazInt_); } const _bazString_ = json["bazString"] ?? json["baz_string"]; if (_bazString_) { @@ -17160,10 +17598,13 @@ export const TestOneof2JSON = { /** * Initializes TestOneof2.FooGroup with all fields set to their default value. */ - initialize: function (): TestOneof2.FooGroup { + initialize: function ( + msg?: Partial, + ): TestOneof2.FooGroup { return { a: 0, b: "", + ...msg, }; }, @@ -17192,7 +17633,7 @@ export const TestOneof2JSON = { ): TestOneof2.FooGroup { const _a_ = json["a"]; if (_a_) { - msg.a = _a_; + msg.a = protoscript.parseNumber(_a_); } const _b_ = json["b"]; if (_b_) { @@ -17223,10 +17664,13 @@ export const TestOneof2JSON = { /** * Initializes TestOneof2.NestedMessage with all fields set to their default value. */ - initialize: function (): TestOneof2.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestOneof2.NestedMessage { return { quxInt: 0n, corgeInt: [], + ...msg, }; }, @@ -17238,7 +17682,7 @@ export const TestOneof2JSON = { ): Record { const json: Record = {}; if (msg.quxInt) { - json["quxInt"] = msg.quxInt.toString(); + json["quxInt"] = String(msg.quxInt); } if (msg.corgeInt?.length) { json["corgeInt"] = msg.corgeInt; @@ -17259,7 +17703,7 @@ export const TestOneof2JSON = { } const _corgeInt_ = json["corgeInt"] ?? json["corge_int"]; if (_corgeInt_) { - msg.corgeInt = _corgeInt_; + msg.corgeInt = _corgeInt_.map(protoscript.parseNumber); } return msg; }, @@ -17287,11 +17731,12 @@ export const TestRequiredOneofJSON = { /** * Initializes TestRequiredOneof with all fields set to their default value. */ - initialize: function (): TestRequiredOneof { + initialize: function (msg?: Partial): TestRequiredOneof { return { fooInt: undefined, fooString: undefined, fooMessage: undefined, + ...msg, }; }, @@ -17326,7 +17771,7 @@ export const TestRequiredOneofJSON = { ): TestRequiredOneof { const _fooInt_ = json["fooInt"] ?? json["foo_int"]; if (_fooInt_) { - msg.fooInt = _fooInt_; + msg.fooInt = protoscript.parseNumber(_fooInt_); } const _fooString_ = json["fooString"] ?? json["foo_string"]; if (_fooString_) { @@ -17368,9 +17813,12 @@ export const TestRequiredOneofJSON = { /** * Initializes TestRequiredOneof.NestedMessage with all fields set to their default value. */ - initialize: function (): TestRequiredOneof.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestRequiredOneof.NestedMessage { return { requiredDouble: 0, + ...msg, }; }, @@ -17397,7 +17845,7 @@ export const TestRequiredOneofJSON = { const _requiredDouble_ = json["requiredDouble"] ?? json["required_double"]; if (_requiredDouble_) { - msg.requiredDouble = _requiredDouble_; + msg.requiredDouble = protoscript.parseDouble(_requiredDouble_); } return msg; }, @@ -17425,7 +17873,7 @@ export const TestPackedTypesJSON = { /** * Initializes TestPackedTypes with all fields set to their default value. */ - initialize: function (): TestPackedTypes { + initialize: function (msg?: Partial): TestPackedTypes { return { packedInt32: [], packedInt64: [], @@ -17441,6 +17889,7 @@ export const TestPackedTypesJSON = { packedDouble: [], packedBool: [], packedEnum: [], + ...msg, }; }, @@ -17455,31 +17904,31 @@ export const TestPackedTypesJSON = { json["packedInt32"] = msg.packedInt32; } if (msg.packedInt64?.length) { - json["packedInt64"] = msg.packedInt64.map((x) => x.toString()); + json["packedInt64"] = msg.packedInt64.map(String); } if (msg.packedUint32?.length) { json["packedUint32"] = msg.packedUint32; } if (msg.packedUint64?.length) { - json["packedUint64"] = msg.packedUint64.map((x) => x.toString()); + json["packedUint64"] = msg.packedUint64.map(String); } if (msg.packedSint32?.length) { json["packedSint32"] = msg.packedSint32; } if (msg.packedSint64?.length) { - json["packedSint64"] = msg.packedSint64.map((x) => x.toString()); + json["packedSint64"] = msg.packedSint64.map(String); } if (msg.packedFixed32?.length) { json["packedFixed32"] = msg.packedFixed32; } if (msg.packedFixed64?.length) { - json["packedFixed64"] = msg.packedFixed64.map((x) => x.toString()); + json["packedFixed64"] = msg.packedFixed64.map(String); } if (msg.packedSfixed32?.length) { json["packedSfixed32"] = msg.packedSfixed32; } if (msg.packedSfixed64?.length) { - json["packedSfixed64"] = msg.packedSfixed64.map((x) => x.toString()); + json["packedSfixed64"] = msg.packedSfixed64.map(String); } if (msg.packedFloat?.length) { json["packedFloat"] = msg.packedFloat; @@ -17502,7 +17951,7 @@ export const TestPackedTypesJSON = { _readMessage: function (msg: TestPackedTypes, json: any): TestPackedTypes { const _packedInt32_ = json["packedInt32"] ?? json["packed_int32"]; if (_packedInt32_) { - msg.packedInt32 = _packedInt32_; + msg.packedInt32 = _packedInt32_.map(protoscript.parseNumber); } const _packedInt64_ = json["packedInt64"] ?? json["packed_int64"]; if (_packedInt64_) { @@ -17510,7 +17959,7 @@ export const TestPackedTypesJSON = { } const _packedUint32_ = json["packedUint32"] ?? json["packed_uint32"]; if (_packedUint32_) { - msg.packedUint32 = _packedUint32_; + msg.packedUint32 = _packedUint32_.map(protoscript.parseNumber); } const _packedUint64_ = json["packedUint64"] ?? json["packed_uint64"]; if (_packedUint64_) { @@ -17518,7 +17967,7 @@ export const TestPackedTypesJSON = { } const _packedSint32_ = json["packedSint32"] ?? json["packed_sint32"]; if (_packedSint32_) { - msg.packedSint32 = _packedSint32_; + msg.packedSint32 = _packedSint32_.map(protoscript.parseNumber); } const _packedSint64_ = json["packedSint64"] ?? json["packed_sint64"]; if (_packedSint64_) { @@ -17526,7 +17975,7 @@ export const TestPackedTypesJSON = { } const _packedFixed32_ = json["packedFixed32"] ?? json["packed_fixed32"]; if (_packedFixed32_) { - msg.packedFixed32 = _packedFixed32_; + msg.packedFixed32 = _packedFixed32_.map(protoscript.parseNumber); } const _packedFixed64_ = json["packedFixed64"] ?? json["packed_fixed64"]; if (_packedFixed64_) { @@ -17534,7 +17983,7 @@ export const TestPackedTypesJSON = { } const _packedSfixed32_ = json["packedSfixed32"] ?? json["packed_sfixed32"]; if (_packedSfixed32_) { - msg.packedSfixed32 = _packedSfixed32_; + msg.packedSfixed32 = _packedSfixed32_.map(protoscript.parseNumber); } const _packedSfixed64_ = json["packedSfixed64"] ?? json["packed_sfixed64"]; if (_packedSfixed64_) { @@ -17542,11 +17991,11 @@ export const TestPackedTypesJSON = { } const _packedFloat_ = json["packedFloat"] ?? json["packed_float"]; if (_packedFloat_) { - msg.packedFloat = _packedFloat_; + msg.packedFloat = _packedFloat_.map(protoscript.parseDouble); } const _packedDouble_ = json["packedDouble"] ?? json["packed_double"]; if (_packedDouble_) { - msg.packedDouble = _packedDouble_; + msg.packedDouble = _packedDouble_.map(protoscript.parseDouble); } const _packedBool_ = json["packedBool"] ?? json["packed_bool"]; if (_packedBool_) { @@ -17554,7 +18003,7 @@ export const TestPackedTypesJSON = { } const _packedEnum_ = json["packedEnum"] ?? json["packed_enum"]; if (_packedEnum_) { - msg.packedEnum = _packedEnum_; + msg.packedEnum = _packedEnum_.map(ForeignEnum._fromInt); } return msg; }, @@ -17581,7 +18030,7 @@ export const TestUnpackedTypesJSON = { /** * Initializes TestUnpackedTypes with all fields set to their default value. */ - initialize: function (): TestUnpackedTypes { + initialize: function (msg?: Partial): TestUnpackedTypes { return { unpackedInt32: [], unpackedInt64: [], @@ -17597,6 +18046,7 @@ export const TestUnpackedTypesJSON = { unpackedDouble: [], unpackedBool: [], unpackedEnum: [], + ...msg, }; }, @@ -17611,31 +18061,31 @@ export const TestUnpackedTypesJSON = { json["unpackedInt32"] = msg.unpackedInt32; } if (msg.unpackedInt64?.length) { - json["unpackedInt64"] = msg.unpackedInt64.map((x) => x.toString()); + json["unpackedInt64"] = msg.unpackedInt64.map(String); } if (msg.unpackedUint32?.length) { json["unpackedUint32"] = msg.unpackedUint32; } if (msg.unpackedUint64?.length) { - json["unpackedUint64"] = msg.unpackedUint64.map((x) => x.toString()); + json["unpackedUint64"] = msg.unpackedUint64.map(String); } if (msg.unpackedSint32?.length) { json["unpackedSint32"] = msg.unpackedSint32; } if (msg.unpackedSint64?.length) { - json["unpackedSint64"] = msg.unpackedSint64.map((x) => x.toString()); + json["unpackedSint64"] = msg.unpackedSint64.map(String); } if (msg.unpackedFixed32?.length) { json["unpackedFixed32"] = msg.unpackedFixed32; } if (msg.unpackedFixed64?.length) { - json["unpackedFixed64"] = msg.unpackedFixed64.map((x) => x.toString()); + json["unpackedFixed64"] = msg.unpackedFixed64.map(String); } if (msg.unpackedSfixed32?.length) { json["unpackedSfixed32"] = msg.unpackedSfixed32; } if (msg.unpackedSfixed64?.length) { - json["unpackedSfixed64"] = msg.unpackedSfixed64.map((x) => x.toString()); + json["unpackedSfixed64"] = msg.unpackedSfixed64.map(String); } if (msg.unpackedFloat?.length) { json["unpackedFloat"] = msg.unpackedFloat; @@ -17661,7 +18111,7 @@ export const TestUnpackedTypesJSON = { ): TestUnpackedTypes { const _unpackedInt32_ = json["unpackedInt32"] ?? json["unpacked_int32"]; if (_unpackedInt32_) { - msg.unpackedInt32 = _unpackedInt32_; + msg.unpackedInt32 = _unpackedInt32_.map(protoscript.parseNumber); } const _unpackedInt64_ = json["unpackedInt64"] ?? json["unpacked_int64"]; if (_unpackedInt64_) { @@ -17669,7 +18119,7 @@ export const TestUnpackedTypesJSON = { } const _unpackedUint32_ = json["unpackedUint32"] ?? json["unpacked_uint32"]; if (_unpackedUint32_) { - msg.unpackedUint32 = _unpackedUint32_; + msg.unpackedUint32 = _unpackedUint32_.map(protoscript.parseNumber); } const _unpackedUint64_ = json["unpackedUint64"] ?? json["unpacked_uint64"]; if (_unpackedUint64_) { @@ -17677,7 +18127,7 @@ export const TestUnpackedTypesJSON = { } const _unpackedSint32_ = json["unpackedSint32"] ?? json["unpacked_sint32"]; if (_unpackedSint32_) { - msg.unpackedSint32 = _unpackedSint32_; + msg.unpackedSint32 = _unpackedSint32_.map(protoscript.parseNumber); } const _unpackedSint64_ = json["unpackedSint64"] ?? json["unpacked_sint64"]; if (_unpackedSint64_) { @@ -17686,7 +18136,7 @@ export const TestUnpackedTypesJSON = { const _unpackedFixed32_ = json["unpackedFixed32"] ?? json["unpacked_fixed32"]; if (_unpackedFixed32_) { - msg.unpackedFixed32 = _unpackedFixed32_; + msg.unpackedFixed32 = _unpackedFixed32_.map(protoscript.parseNumber); } const _unpackedFixed64_ = json["unpackedFixed64"] ?? json["unpacked_fixed64"]; @@ -17696,7 +18146,7 @@ export const TestUnpackedTypesJSON = { const _unpackedSfixed32_ = json["unpackedSfixed32"] ?? json["unpacked_sfixed32"]; if (_unpackedSfixed32_) { - msg.unpackedSfixed32 = _unpackedSfixed32_; + msg.unpackedSfixed32 = _unpackedSfixed32_.map(protoscript.parseNumber); } const _unpackedSfixed64_ = json["unpackedSfixed64"] ?? json["unpacked_sfixed64"]; @@ -17705,11 +18155,11 @@ export const TestUnpackedTypesJSON = { } const _unpackedFloat_ = json["unpackedFloat"] ?? json["unpacked_float"]; if (_unpackedFloat_) { - msg.unpackedFloat = _unpackedFloat_; + msg.unpackedFloat = _unpackedFloat_.map(protoscript.parseDouble); } const _unpackedDouble_ = json["unpackedDouble"] ?? json["unpacked_double"]; if (_unpackedDouble_) { - msg.unpackedDouble = _unpackedDouble_; + msg.unpackedDouble = _unpackedDouble_.map(protoscript.parseDouble); } const _unpackedBool_ = json["unpackedBool"] ?? json["unpacked_bool"]; if (_unpackedBool_) { @@ -17717,7 +18167,7 @@ export const TestUnpackedTypesJSON = { } const _unpackedEnum_ = json["unpackedEnum"] ?? json["unpacked_enum"]; if (_unpackedEnum_) { - msg.unpackedEnum = _unpackedEnum_; + msg.unpackedEnum = _unpackedEnum_.map(ForeignEnum._fromInt); } return msg; }, @@ -17741,8 +18191,12 @@ export const TestPackedExtensionsJSON = { /** * Initializes TestPackedExtensions with all fields set to their default value. */ - initialize: function (): TestPackedExtensions { - return {}; + initialize: function ( + msg?: Partial, + ): TestPackedExtensions { + return { + ...msg, + }; }, /** @@ -17783,8 +18237,12 @@ export const TestUnpackedExtensionsJSON = { /** * Initializes TestUnpackedExtensions with all fields set to their default value. */ - initialize: function (): TestUnpackedExtensions { - return {}; + initialize: function ( + msg?: Partial, + ): TestUnpackedExtensions { + return { + ...msg, + }; }, /** @@ -17828,7 +18286,9 @@ export const TestDynamicExtensionsJSON = { /** * Initializes TestDynamicExtensions with all fields set to their default value. */ - initialize: function (): TestDynamicExtensions { + initialize: function ( + msg?: Partial, + ): TestDynamicExtensions { return { scalarExtension: 0, enumExtension: ForeignEnum._fromInt(0), @@ -17838,6 +18298,7 @@ export const TestDynamicExtensionsJSON = { TestDynamicExtensionsJSON.DynamicMessageType.initialize(), repeatedExtension: [], packedExtension: [], + ...msg, }; }, @@ -17896,16 +18357,18 @@ export const TestDynamicExtensionsJSON = { const _scalarExtension_ = json["scalarExtension"] ?? json["scalar_extension"]; if (_scalarExtension_) { - msg.scalarExtension = _scalarExtension_; + msg.scalarExtension = protoscript.parseNumber(_scalarExtension_); } const _enumExtension_ = json["enumExtension"] ?? json["enum_extension"]; if (_enumExtension_) { - msg.enumExtension = _enumExtension_; + msg.enumExtension = ForeignEnum._fromInt(_enumExtension_); } const _dynamicEnumExtension_ = json["dynamicEnumExtension"] ?? json["dynamic_enum_extension"]; if (_dynamicEnumExtension_) { - msg.dynamicEnumExtension = _dynamicEnumExtension_; + msg.dynamicEnumExtension = TestDynamicExtensions.DynamicEnumType._fromInt( + _dynamicEnumExtension_, + ); } const _messageExtension_ = json["messageExtension"] ?? json["message_extension"]; @@ -17928,7 +18391,7 @@ export const TestDynamicExtensionsJSON = { const _packedExtension_ = json["packedExtension"] ?? json["packed_extension"]; if (_packedExtension_) { - msg.packedExtension = _packedExtension_; + msg.packedExtension = _packedExtension_.map(protoscript.parseNumber); } return msg; }, @@ -18004,9 +18467,12 @@ export const TestDynamicExtensionsJSON = { /** * Initializes TestDynamicExtensions.DynamicMessageType with all fields set to their default value. */ - initialize: function (): TestDynamicExtensions.DynamicMessageType { + initialize: function ( + msg?: Partial, + ): TestDynamicExtensions.DynamicMessageType { return { dynamicField: 0, + ...msg, }; }, @@ -18032,7 +18498,7 @@ export const TestDynamicExtensionsJSON = { ): TestDynamicExtensions.DynamicMessageType { const _dynamicField_ = json["dynamicField"] ?? json["dynamic_field"]; if (_dynamicField_) { - msg.dynamicField = _dynamicField_; + msg.dynamicField = protoscript.parseNumber(_dynamicField_); } return msg; }, @@ -18064,7 +18530,9 @@ export const TestRepeatedScalarDifferentTagSizesJSON = { /** * Initializes TestRepeatedScalarDifferentTagSizes with all fields set to their default value. */ - initialize: function (): TestRepeatedScalarDifferentTagSizes { + initialize: function ( + msg?: Partial, + ): TestRepeatedScalarDifferentTagSizes { return { repeatedFixed32: [], repeatedInt32: [], @@ -18072,6 +18540,7 @@ export const TestRepeatedScalarDifferentTagSizesJSON = { repeatedInt64: [], repeatedFloat: [], repeatedUint64: [], + ...msg, }; }, @@ -18089,16 +18558,16 @@ export const TestRepeatedScalarDifferentTagSizesJSON = { json["repeatedInt32"] = msg.repeatedInt32; } if (msg.repeatedFixed64?.length) { - json["repeatedFixed64"] = msg.repeatedFixed64.map((x) => x.toString()); + json["repeatedFixed64"] = msg.repeatedFixed64.map(String); } if (msg.repeatedInt64?.length) { - json["repeatedInt64"] = msg.repeatedInt64.map((x) => x.toString()); + json["repeatedInt64"] = msg.repeatedInt64.map(String); } if (msg.repeatedFloat?.length) { json["repeatedFloat"] = msg.repeatedFloat; } if (msg.repeatedUint64?.length) { - json["repeatedUint64"] = msg.repeatedUint64.map((x) => x.toString()); + json["repeatedUint64"] = msg.repeatedUint64.map(String); } return json; }, @@ -18113,11 +18582,11 @@ export const TestRepeatedScalarDifferentTagSizesJSON = { const _repeatedFixed32_ = json["repeatedFixed32"] ?? json["repeated_fixed32"]; if (_repeatedFixed32_) { - msg.repeatedFixed32 = _repeatedFixed32_; + msg.repeatedFixed32 = _repeatedFixed32_.map(protoscript.parseNumber); } const _repeatedInt32_ = json["repeatedInt32"] ?? json["repeated_int32"]; if (_repeatedInt32_) { - msg.repeatedInt32 = _repeatedInt32_; + msg.repeatedInt32 = _repeatedInt32_.map(protoscript.parseNumber); } const _repeatedFixed64_ = json["repeatedFixed64"] ?? json["repeated_fixed64"]; @@ -18130,7 +18599,7 @@ export const TestRepeatedScalarDifferentTagSizesJSON = { } const _repeatedFloat_ = json["repeatedFloat"] ?? json["repeated_float"]; if (_repeatedFloat_) { - msg.repeatedFloat = _repeatedFloat_; + msg.repeatedFloat = _repeatedFloat_.map(protoscript.parseDouble); } const _repeatedUint64_ = json["repeatedUint64"] ?? json["repeated_uint64"]; if (_repeatedUint64_) { @@ -18161,11 +18630,12 @@ export const TestParsingMergeJSON = { /** * Initializes TestParsingMerge with all fields set to their default value. */ - initialize: function (): TestParsingMerge { + initialize: function (msg?: Partial): TestParsingMerge { return { requiredAllTypes: TestAllTypesJSON.initialize(), optionalAllTypes: TestAllTypesJSON.initialize(), repeatedAllTypes: [], + ...msg, }; }, @@ -18251,13 +18721,16 @@ export const TestParsingMergeJSON = { /** * Initializes TestParsingMerge.RepeatedFieldsGenerator with all fields set to their default value. */ - initialize: function (): TestParsingMerge.RepeatedFieldsGenerator { + initialize: function ( + msg?: Partial, + ): TestParsingMerge.RepeatedFieldsGenerator { return { field1: [], field2: [], field3: [], ext1: [], ext2: [], + ...msg, }; }, @@ -18365,9 +18838,12 @@ export const TestParsingMergeJSON = { /** * Initializes TestParsingMerge.RepeatedFieldsGenerator.Group1 with all fields set to their default value. */ - initialize: function (): TestParsingMerge.RepeatedFieldsGenerator.Group1 { + initialize: function ( + msg?: Partial, + ): TestParsingMerge.RepeatedFieldsGenerator.Group1 { return { field1: TestAllTypesJSON.initialize(), + ...msg, }; }, @@ -18431,9 +18907,12 @@ export const TestParsingMergeJSON = { /** * Initializes TestParsingMerge.RepeatedFieldsGenerator.Group2 with all fields set to their default value. */ - initialize: function (): TestParsingMerge.RepeatedFieldsGenerator.Group2 { + initialize: function ( + msg?: Partial, + ): TestParsingMerge.RepeatedFieldsGenerator.Group2 { return { field1: TestAllTypesJSON.initialize(), + ...msg, }; }, @@ -18494,9 +18973,12 @@ export const TestParsingMergeJSON = { /** * Initializes TestParsingMerge.OptionalGroup with all fields set to their default value. */ - initialize: function (): TestParsingMerge.OptionalGroup { + initialize: function ( + msg?: Partial, + ): TestParsingMerge.OptionalGroup { return { optionalGroupAllTypes: TestAllTypesJSON.initialize(), + ...msg, }; }, @@ -18562,9 +19044,12 @@ export const TestParsingMergeJSON = { /** * Initializes TestParsingMerge.RepeatedGroup with all fields set to their default value. */ - initialize: function (): TestParsingMerge.RepeatedGroup { + initialize: function ( + msg?: Partial, + ): TestParsingMerge.RepeatedGroup { return { repeatedGroupAllTypes: TestAllTypesJSON.initialize(), + ...msg, }; }, @@ -18627,9 +19112,12 @@ export const TestCommentInjectionMessageJSON = { /** * Initializes TestCommentInjectionMessage with all fields set to their default value. */ - initialize: function (): TestCommentInjectionMessage { + initialize: function ( + msg?: Partial, + ): TestCommentInjectionMessage { return { a: "", + ...msg, }; }, @@ -18679,8 +19167,10 @@ export const FooRequestJSON = { /** * Initializes FooRequest with all fields set to their default value. */ - initialize: function (): FooRequest { - return {}; + initialize: function (msg?: Partial): FooRequest { + return { + ...msg, + }; }, /** @@ -18718,8 +19208,10 @@ export const FooResponseJSON = { /** * Initializes FooResponse with all fields set to their default value. */ - initialize: function (): FooResponse { - return {}; + initialize: function (msg?: Partial): FooResponse { + return { + ...msg, + }; }, /** @@ -18757,8 +19249,10 @@ export const FooClientMessageJSON = { /** * Initializes FooClientMessage with all fields set to their default value. */ - initialize: function (): FooClientMessage { - return {}; + initialize: function (msg?: Partial): FooClientMessage { + return { + ...msg, + }; }, /** @@ -18796,8 +19290,10 @@ export const FooServerMessageJSON = { /** * Initializes FooServerMessage with all fields set to their default value. */ - initialize: function (): FooServerMessage { - return {}; + initialize: function (msg?: Partial): FooServerMessage { + return { + ...msg, + }; }, /** @@ -18835,8 +19331,10 @@ export const BarRequestJSON = { /** * Initializes BarRequest with all fields set to their default value. */ - initialize: function (): BarRequest { - return {}; + initialize: function (msg?: Partial): BarRequest { + return { + ...msg, + }; }, /** @@ -18874,8 +19372,10 @@ export const BarResponseJSON = { /** * Initializes BarResponse with all fields set to their default value. */ - initialize: function (): BarResponse { - return {}; + initialize: function (msg?: Partial): BarResponse { + return { + ...msg, + }; }, /** @@ -18916,7 +19416,7 @@ export const TestJsonNameJSON = { /** * Initializes TestJsonName with all fields set to their default value. */ - initialize: function (): TestJsonName { + initialize: function (msg?: Partial): TestJsonName { return { fieldName1: 0, fieldName2: 0, @@ -18925,6 +19425,7 @@ export const TestJsonNameJSON = { FIELDNAME5: 0, fieldName6: 0, fieldname7: 0, + ...msg, }; }, @@ -18965,33 +19466,33 @@ export const TestJsonNameJSON = { _readMessage: function (msg: TestJsonName, json: any): TestJsonName { const _fieldName1_ = json["fieldName1"] ?? json["field_name1"]; if (_fieldName1_) { - msg.fieldName1 = _fieldName1_; + msg.fieldName1 = protoscript.parseNumber(_fieldName1_); } const _fieldName2_ = json["fieldName2"]; if (_fieldName2_) { - msg.fieldName2 = _fieldName2_; + msg.fieldName2 = protoscript.parseNumber(_fieldName2_); } const _FieldName3_ = json["FieldName3"]; if (_FieldName3_) { - msg.FieldName3 = _FieldName3_; + msg.FieldName3 = protoscript.parseNumber(_FieldName3_); } const _fieldName4_ = json["FieldName4"] ?? json["fieldName4"] ?? json["_field_name4"]; if (_fieldName4_) { - msg.fieldName4 = _fieldName4_; + msg.fieldName4 = protoscript.parseNumber(_fieldName4_); } const _FIELDNAME5_ = json["FIELDNAME5"] ?? json["FIELD_NAME5"]; if (_FIELDNAME5_) { - msg.FIELDNAME5 = _FIELDNAME5_; + msg.FIELDNAME5 = protoscript.parseNumber(_FIELDNAME5_); } const _fieldName6_ = json["@type"] ?? json["fieldName6"] ?? json["field_name6"]; if (_fieldName6_) { - msg.fieldName6 = _fieldName6_; + msg.fieldName6 = protoscript.parseNumber(_fieldName6_); } const _fieldname7_ = json["fieldname7"]; if (_fieldname7_) { - msg.fieldname7 = _fieldname7_; + msg.fieldname7 = protoscript.parseNumber(_fieldname7_); } return msg; }, @@ -19018,7 +19519,9 @@ export const TestHugeFieldNumbersJSON = { /** * Initializes TestHugeFieldNumbers with all fields set to their default value. */ - initialize: function (): TestHugeFieldNumbers { + initialize: function ( + msg?: Partial, + ): TestHugeFieldNumbers { return { optionalInt32: 0, fixed32: 0, @@ -19033,6 +19536,7 @@ export const TestHugeFieldNumbersJSON = { oneofTestAllTypes: undefined, oneofString: undefined, oneofBytes: undefined, + ...msg, }; }, @@ -19062,7 +19566,7 @@ export const TestHugeFieldNumbersJSON = { json["optionalString"] = msg.optionalString; } if (msg.optionalBytes?.length) { - json["optionalBytes"] = encodeBase64Bytes(msg.optionalBytes); + json["optionalBytes"] = protoscript.serializeBytes(msg.optionalBytes); } if (msg.optionalMessage) { const _optionalMessage_ = ForeignMessageJSON._writeMessage( @@ -19096,7 +19600,7 @@ export const TestHugeFieldNumbersJSON = { json["oneofString"] = msg.oneofString; } if (msg.oneofBytes?.length) { - json["oneofBytes"] = encodeBase64Bytes(msg.oneofBytes); + json["oneofBytes"] = protoscript.serializeBytes(msg.oneofBytes); } return json; }, @@ -19110,23 +19614,23 @@ export const TestHugeFieldNumbersJSON = { ): TestHugeFieldNumbers { const _optionalInt32_ = json["optionalInt32"] ?? json["optional_int32"]; if (_optionalInt32_) { - msg.optionalInt32 = _optionalInt32_; + msg.optionalInt32 = protoscript.parseNumber(_optionalInt32_); } const _fixed32_ = json["fixed32"] ?? json["fixed_32"]; if (_fixed32_) { - msg.fixed32 = _fixed32_; + msg.fixed32 = protoscript.parseNumber(_fixed32_); } const _repeatedInt32_ = json["repeatedInt32"] ?? json["repeated_int32"]; if (_repeatedInt32_) { - msg.repeatedInt32 = _repeatedInt32_; + msg.repeatedInt32 = _repeatedInt32_.map(protoscript.parseNumber); } const _packedInt32_ = json["packedInt32"] ?? json["packed_int32"]; if (_packedInt32_) { - msg.packedInt32 = _packedInt32_; + msg.packedInt32 = _packedInt32_.map(protoscript.parseNumber); } const _optionalEnum_ = json["optionalEnum"] ?? json["optional_enum"]; if (_optionalEnum_) { - msg.optionalEnum = _optionalEnum_; + msg.optionalEnum = ForeignEnum._fromInt(_optionalEnum_); } const _optionalString_ = json["optionalString"] ?? json["optional_string"]; if (_optionalString_) { @@ -19134,7 +19638,7 @@ export const TestHugeFieldNumbersJSON = { } const _optionalBytes_ = json["optionalBytes"] ?? json["optional_bytes"]; if (_optionalBytes_) { - msg.optionalBytes = decodeBase64Bytes(_optionalBytes_); + msg.optionalBytes = protoscript.parseBytes(_optionalBytes_); } const _optionalMessage_ = json["optionalMessage"] ?? json["optional_message"]; @@ -19153,7 +19657,7 @@ export const TestHugeFieldNumbersJSON = { } const _oneofUint32_ = json["oneofUint32"] ?? json["oneof_uint32"]; if (_oneofUint32_) { - msg.oneofUint32 = _oneofUint32_; + msg.oneofUint32 = protoscript.parseNumber(_oneofUint32_); } const _oneofTestAllTypes_ = json["oneofTestAllTypes"] ?? json["oneof_test_all_types"]; @@ -19167,7 +19671,7 @@ export const TestHugeFieldNumbersJSON = { } const _oneofBytes_ = json["oneofBytes"] ?? json["oneof_bytes"]; if (_oneofBytes_) { - msg.oneofBytes = decodeBase64Bytes(_oneofBytes_); + msg.oneofBytes = protoscript.parseBytes(_oneofBytes_); } return msg; }, @@ -19197,9 +19701,12 @@ export const TestHugeFieldNumbersJSON = { /** * Initializes TestHugeFieldNumbers.OptionalGroup with all fields set to their default value. */ - initialize: function (): TestHugeFieldNumbers.OptionalGroup { + initialize: function ( + msg?: Partial, + ): TestHugeFieldNumbers.OptionalGroup { return { groupA: 0, + ...msg, }; }, @@ -19225,7 +19732,7 @@ export const TestHugeFieldNumbersJSON = { ): TestHugeFieldNumbers.OptionalGroup { const _groupA_ = json["groupA"] ?? json["group_a"]; if (_groupA_) { - msg.groupA = _groupA_; + msg.groupA = protoscript.parseNumber(_groupA_); } return msg; }, @@ -19289,7 +19796,9 @@ export const TestExtensionInsideTableJSON = { /** * Initializes TestExtensionInsideTable with all fields set to their default value. */ - initialize: function (): TestExtensionInsideTable { + initialize: function ( + msg?: Partial, + ): TestExtensionInsideTable { return { field1: 0, field2: 0, @@ -19300,6 +19809,7 @@ export const TestExtensionInsideTableJSON = { field8: 0, field9: 0, field10: 0, + ...msg, }; }, @@ -19349,39 +19859,39 @@ export const TestExtensionInsideTableJSON = { ): TestExtensionInsideTable { const _field1_ = json["field1"]; if (_field1_) { - msg.field1 = _field1_; + msg.field1 = protoscript.parseNumber(_field1_); } const _field2_ = json["field2"]; if (_field2_) { - msg.field2 = _field2_; + msg.field2 = protoscript.parseNumber(_field2_); } const _field3_ = json["field3"]; if (_field3_) { - msg.field3 = _field3_; + msg.field3 = protoscript.parseNumber(_field3_); } const _field4_ = json["field4"]; if (_field4_) { - msg.field4 = _field4_; + msg.field4 = protoscript.parseNumber(_field4_); } const _field6_ = json["field6"]; if (_field6_) { - msg.field6 = _field6_; + msg.field6 = protoscript.parseNumber(_field6_); } const _field7_ = json["field7"]; if (_field7_) { - msg.field7 = _field7_; + msg.field7 = protoscript.parseNumber(_field7_); } const _field8_ = json["field8"]; if (_field8_) { - msg.field8 = _field8_; + msg.field8 = protoscript.parseNumber(_field8_); } const _field9_ = json["field9"]; if (_field9_) { - msg.field9 = _field9_; + msg.field9 = protoscript.parseNumber(_field9_); } const _field10_ = json["field10"]; if (_field10_) { - msg.field10 = _field10_; + msg.field10 = protoscript.parseNumber(_field10_); } return msg; }, @@ -19408,12 +19918,15 @@ export const TestExtensionRangeSerializeJSON = { /** * Initializes TestExtensionRangeSerialize with all fields set to their default value. */ - initialize: function (): TestExtensionRangeSerialize { + initialize: function ( + msg?: Partial, + ): TestExtensionRangeSerialize { return { fooOne: 0, fooTwo: 0, fooThree: 0, fooFour: 0, + ...msg, }; }, @@ -19448,19 +19961,19 @@ export const TestExtensionRangeSerializeJSON = { ): TestExtensionRangeSerialize { const _fooOne_ = json["fooOne"] ?? json["foo_one"]; if (_fooOne_) { - msg.fooOne = _fooOne_; + msg.fooOne = protoscript.parseNumber(_fooOne_); } const _fooTwo_ = json["fooTwo"] ?? json["foo_two"]; if (_fooTwo_) { - msg.fooTwo = _fooTwo_; + msg.fooTwo = protoscript.parseNumber(_fooTwo_); } const _fooThree_ = json["fooThree"] ?? json["foo_three"]; if (_fooThree_) { - msg.fooThree = _fooThree_; + msg.fooThree = protoscript.parseNumber(_fooThree_); } const _fooFour_ = json["fooFour"] ?? json["foo_four"]; if (_fooFour_) { - msg.fooFour = _fooFour_; + msg.fooFour = protoscript.parseNumber(_fooFour_); } return msg; }, diff --git a/e2e/protos/google/protobuf/unittest_import.pb.ts b/e2e/protos/google/protobuf/unittest_import.pb.ts index ff5ef32e..eeb2caef 100644 --- a/e2e/protos/google/protobuf/unittest_import.pb.ts +++ b/e2e/protos/google/protobuf/unittest_import.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; //========================================// // Types // @@ -123,7 +123,7 @@ export const ImportMessage = { encode: function (msg: PartialDeep): Uint8Array { return ImportMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -133,16 +133,17 @@ export const ImportMessage = { decode: function (bytes: ByteSource): ImportMessage { return ImportMessage._readMessage( ImportMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes ImportMessage with all fields set to their default value. */ - initialize: function (): ImportMessage { + initialize: function (msg?: Partial): ImportMessage { return { d: 0, + ...msg, }; }, @@ -151,8 +152,8 @@ export const ImportMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.d) { writer.writeInt32(1, msg.d); } @@ -164,7 +165,7 @@ export const ImportMessage = { */ _readMessage: function ( msg: ImportMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): ImportMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -300,9 +301,10 @@ export const ImportMessageJSON = { /** * Initializes ImportMessage with all fields set to their default value. */ - initialize: function (): ImportMessage { + initialize: function (msg?: Partial): ImportMessage { return { d: 0, + ...msg, }; }, @@ -325,7 +327,7 @@ export const ImportMessageJSON = { _readMessage: function (msg: ImportMessage, json: any): ImportMessage { const _d_ = json["d"]; if (_d_) { - msg.d = _d_; + msg.d = protoscript.parseNumber(_d_); } return msg; }, diff --git a/e2e/protos/google/protobuf/unittest_import_public.pb.ts b/e2e/protos/google/protobuf/unittest_import_public.pb.ts index cc20b7d1..0fbaa5e2 100644 --- a/e2e/protos/google/protobuf/unittest_import_public.pb.ts +++ b/e2e/protos/google/protobuf/unittest_import_public.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; //========================================// // Types // @@ -24,7 +24,7 @@ export const PublicImportMessage = { encode: function (msg: PartialDeep): Uint8Array { return PublicImportMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -34,16 +34,19 @@ export const PublicImportMessage = { decode: function (bytes: ByteSource): PublicImportMessage { return PublicImportMessage._readMessage( PublicImportMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes PublicImportMessage with all fields set to their default value. */ - initialize: function (): PublicImportMessage { + initialize: function ( + msg?: Partial, + ): PublicImportMessage { return { e: 0, + ...msg, }; }, @@ -52,8 +55,8 @@ export const PublicImportMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.e) { writer.writeInt32(1, msg.e); } @@ -65,7 +68,7 @@ export const PublicImportMessage = { */ _readMessage: function ( msg: PublicImportMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): PublicImportMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -109,9 +112,12 @@ export const PublicImportMessageJSON = { /** * Initializes PublicImportMessage with all fields set to their default value. */ - initialize: function (): PublicImportMessage { + initialize: function ( + msg?: Partial, + ): PublicImportMessage { return { e: 0, + ...msg, }; }, @@ -137,7 +143,7 @@ export const PublicImportMessageJSON = { ): PublicImportMessage { const _e_ = json["e"]; if (_e_) { - msg.e = _e_; + msg.e = protoscript.parseNumber(_e_); } return msg; }, diff --git a/e2e/protos/google/protobuf/unittest_proto3.pb.ts b/e2e/protos/google/protobuf/unittest_proto3.pb.ts index d4a302cc..2f3810e1 100644 --- a/e2e/protos/google/protobuf/unittest_proto3.pb.ts +++ b/e2e/protos/google/protobuf/unittest_proto3.pb.ts @@ -3,12 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { - BinaryReader, - BinaryWriter, - encodeBase64Bytes, - decodeBase64Bytes, -} from "protoscript"; +import * as protoscript from "protoscript"; import * as googleProtobufUnittest_import from "./unittest_import.pb"; import * as googleProtobufUnittest_import_public from "./unittest_import_public.pb"; @@ -249,7 +244,7 @@ export const TestAllTypes = { encode: function (msg: PartialDeep): Uint8Array { return TestAllTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -259,14 +254,14 @@ export const TestAllTypes = { decode: function (bytes: ByteSource): TestAllTypes { return TestAllTypes._readMessage( TestAllTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestAllTypes with all fields set to their default value. */ - initialize: function (): TestAllTypes { + initialize: function (msg?: Partial): TestAllTypes { return { optionalInt32: 0, optionalInt64: 0n, @@ -323,6 +318,7 @@ export const TestAllTypes = { oneofNestedMessage: undefined, oneofString: undefined, oneofBytes: undefined, + ...msg, }; }, @@ -331,8 +327,8 @@ export const TestAllTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.optionalInt32) { writer.writeInt32(1, msg.optionalInt32); } @@ -571,7 +567,7 @@ export const TestAllTypes = { */ _readMessage: function ( msg: TestAllTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestAllTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -976,7 +972,7 @@ export const TestAllTypes = { ): Uint8Array { return TestAllTypes.NestedMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -986,16 +982,19 @@ export const TestAllTypes = { decode: function (bytes: ByteSource): TestAllTypes.NestedMessage { return TestAllTypes.NestedMessage._readMessage( TestAllTypes.NestedMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestAllTypes.NestedMessage with all fields set to their default value. */ - initialize: function (): TestAllTypes.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestAllTypes.NestedMessage { return { bb: 0, + ...msg, }; }, @@ -1004,8 +1003,8 @@ export const TestAllTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.bb) { writer.writeInt32(1, msg.bb); } @@ -1017,7 +1016,7 @@ export const TestAllTypes = { */ _readMessage: function ( msg: TestAllTypes.NestedMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestAllTypes.NestedMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1044,7 +1043,7 @@ export const TestPackedTypes = { encode: function (msg: PartialDeep): Uint8Array { return TestPackedTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -1054,14 +1053,14 @@ export const TestPackedTypes = { decode: function (bytes: ByteSource): TestPackedTypes { return TestPackedTypes._readMessage( TestPackedTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestPackedTypes with all fields set to their default value. */ - initialize: function (): TestPackedTypes { + initialize: function (msg?: Partial): TestPackedTypes { return { packedInt32: [], packedInt64: [], @@ -1077,6 +1076,7 @@ export const TestPackedTypes = { packedDouble: [], packedBool: [], packedEnum: [], + ...msg, }; }, @@ -1085,8 +1085,8 @@ export const TestPackedTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.packedInt32?.length) { writer.writePackedInt32(90, msg.packedInt32); } @@ -1152,7 +1152,7 @@ export const TestPackedTypes = { */ _readMessage: function ( msg: TestPackedTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestPackedTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1296,7 +1296,7 @@ export const TestUnpackedTypes = { encode: function (msg: PartialDeep): Uint8Array { return TestUnpackedTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -1306,14 +1306,14 @@ export const TestUnpackedTypes = { decode: function (bytes: ByteSource): TestUnpackedTypes { return TestUnpackedTypes._readMessage( TestUnpackedTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestUnpackedTypes with all fields set to their default value. */ - initialize: function (): TestUnpackedTypes { + initialize: function (msg?: Partial): TestUnpackedTypes { return { repeatedInt32: [], repeatedInt64: [], @@ -1329,6 +1329,7 @@ export const TestUnpackedTypes = { repeatedDouble: [], repeatedBool: [], repeatedNestedEnum: [], + ...msg, }; }, @@ -1337,8 +1338,8 @@ export const TestUnpackedTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.repeatedInt32?.length) { writer.writePackedInt32(1, msg.repeatedInt32); } @@ -1407,7 +1408,7 @@ export const TestUnpackedTypes = { */ _readMessage: function ( msg: TestUnpackedTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestUnpackedTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1555,7 +1556,7 @@ export const NestedTestAllTypes = { encode: function (msg: PartialDeep): Uint8Array { return NestedTestAllTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -1565,17 +1566,18 @@ export const NestedTestAllTypes = { decode: function (bytes: ByteSource): NestedTestAllTypes { return NestedTestAllTypes._readMessage( NestedTestAllTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes NestedTestAllTypes with all fields set to their default value. */ - initialize: function (): NestedTestAllTypes { + initialize: function (msg?: Partial): NestedTestAllTypes { return { child: undefined, payload: TestAllTypes.initialize(), + ...msg, }; }, @@ -1584,8 +1586,8 @@ export const NestedTestAllTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.child) { writer.writeMessage(1, msg.child, NestedTestAllTypes._writeMessage); } @@ -1600,7 +1602,7 @@ export const NestedTestAllTypes = { */ _readMessage: function ( msg: NestedTestAllTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): NestedTestAllTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1631,7 +1633,7 @@ export const ForeignMessage = { encode: function (msg: PartialDeep): Uint8Array { return ForeignMessage._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -1641,16 +1643,17 @@ export const ForeignMessage = { decode: function (bytes: ByteSource): ForeignMessage { return ForeignMessage._readMessage( ForeignMessage.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes ForeignMessage with all fields set to their default value. */ - initialize: function (): ForeignMessage { + initialize: function (msg?: Partial): ForeignMessage { return { c: 0, + ...msg, }; }, @@ -1659,8 +1662,8 @@ export const ForeignMessage = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.c) { writer.writeInt32(1, msg.c); } @@ -1672,7 +1675,7 @@ export const ForeignMessage = { */ _readMessage: function ( msg: ForeignMessage, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): ForeignMessage { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1709,8 +1712,10 @@ export const TestEmptyMessage = { /** * Initializes TestEmptyMessage with all fields set to their default value. */ - initialize: function (): TestEmptyMessage { - return {}; + initialize: function (msg?: Partial): TestEmptyMessage { + return { + ...msg, + }; }, /** @@ -1718,8 +1723,8 @@ export const TestEmptyMessage = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, @@ -1728,7 +1733,7 @@ export const TestEmptyMessage = { */ _readMessage: function ( _msg: TestEmptyMessage, - _reader: BinaryReader, + _reader: protoscript.BinaryReader, ): TestEmptyMessage { return _msg; }, @@ -1741,7 +1746,7 @@ export const TestMessageWithDummy = { encode: function (msg: PartialDeep): Uint8Array { return TestMessageWithDummy._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -1751,16 +1756,19 @@ export const TestMessageWithDummy = { decode: function (bytes: ByteSource): TestMessageWithDummy { return TestMessageWithDummy._readMessage( TestMessageWithDummy.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestMessageWithDummy with all fields set to their default value. */ - initialize: function (): TestMessageWithDummy { + initialize: function ( + msg?: Partial, + ): TestMessageWithDummy { return { dummy: false, + ...msg, }; }, @@ -1769,8 +1777,8 @@ export const TestMessageWithDummy = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.dummy) { writer.writeBool(536870911, msg.dummy); } @@ -1782,7 +1790,7 @@ export const TestMessageWithDummy = { */ _readMessage: function ( msg: TestMessageWithDummy, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestMessageWithDummy { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1806,7 +1814,10 @@ export const TestOneof2 = { * Serializes TestOneof2 to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return TestOneof2._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return TestOneof2._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -1815,16 +1826,17 @@ export const TestOneof2 = { decode: function (bytes: ByteSource): TestOneof2 { return TestOneof2._readMessage( TestOneof2.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestOneof2 with all fields set to their default value. */ - initialize: function (): TestOneof2 { + initialize: function (msg?: Partial): TestOneof2 { return { fooEnum: undefined, + ...msg, }; }, @@ -1833,8 +1845,8 @@ export const TestOneof2 = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.fooEnum != undefined) { writer.writeEnum(6, TestOneof2.NestedEnum._toInt(msg.fooEnum)); } @@ -1844,7 +1856,10 @@ export const TestOneof2 = { /** * @private */ - _readMessage: function (msg: TestOneof2, reader: BinaryReader): TestOneof2 { + _readMessage: function ( + msg: TestOneof2, + reader: protoscript.BinaryReader, + ): TestOneof2 { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -1993,7 +2008,7 @@ export const TestAllTypesJSON = { /** * Initializes TestAllTypes with all fields set to their default value. */ - initialize: function (): TestAllTypes { + initialize: function (msg?: Partial): TestAllTypes { return { optionalInt32: 0, optionalInt64: 0n, @@ -2050,6 +2065,7 @@ export const TestAllTypesJSON = { oneofNestedMessage: undefined, oneofString: undefined, oneofBytes: undefined, + ...msg, }; }, @@ -2064,31 +2080,31 @@ export const TestAllTypesJSON = { json["optionalInt32"] = msg.optionalInt32; } if (msg.optionalInt64) { - json["optionalInt64"] = msg.optionalInt64.toString(); + json["optionalInt64"] = String(msg.optionalInt64); } if (msg.optionalUint32) { json["optionalUint32"] = msg.optionalUint32; } if (msg.optionalUint64) { - json["optionalUint64"] = msg.optionalUint64.toString(); + json["optionalUint64"] = String(msg.optionalUint64); } if (msg.optionalSint32) { json["optionalSint32"] = msg.optionalSint32; } if (msg.optionalSint64) { - json["optionalSint64"] = msg.optionalSint64.toString(); + json["optionalSint64"] = String(msg.optionalSint64); } if (msg.optionalFixed32) { json["optionalFixed32"] = msg.optionalFixed32; } if (msg.optionalFixed64) { - json["optionalFixed64"] = msg.optionalFixed64.toString(); + json["optionalFixed64"] = String(msg.optionalFixed64); } if (msg.optionalSfixed32) { json["optionalSfixed32"] = msg.optionalSfixed32; } if (msg.optionalSfixed64) { - json["optionalSfixed64"] = msg.optionalSfixed64.toString(); + json["optionalSfixed64"] = String(msg.optionalSfixed64); } if (msg.optionalFloat) { json["optionalFloat"] = msg.optionalFloat; @@ -2103,7 +2119,7 @@ export const TestAllTypesJSON = { json["optionalString"] = msg.optionalString; } if (msg.optionalBytes?.length) { - json["optionalBytes"] = encodeBase64Bytes(msg.optionalBytes); + json["optionalBytes"] = protoscript.serializeBytes(msg.optionalBytes); } if (msg.optionalNestedMessage) { const _optionalNestedMessage_ = @@ -2176,31 +2192,31 @@ export const TestAllTypesJSON = { json["repeatedInt32"] = msg.repeatedInt32; } if (msg.repeatedInt64?.length) { - json["repeatedInt64"] = msg.repeatedInt64.map((x) => x.toString()); + json["repeatedInt64"] = msg.repeatedInt64.map(String); } if (msg.repeatedUint32?.length) { json["repeatedUint32"] = msg.repeatedUint32; } if (msg.repeatedUint64?.length) { - json["repeatedUint64"] = msg.repeatedUint64.map((x) => x.toString()); + json["repeatedUint64"] = msg.repeatedUint64.map(String); } if (msg.repeatedSint32?.length) { json["repeatedSint32"] = msg.repeatedSint32; } if (msg.repeatedSint64?.length) { - json["repeatedSint64"] = msg.repeatedSint64.map((x) => x.toString()); + json["repeatedSint64"] = msg.repeatedSint64.map(String); } if (msg.repeatedFixed32?.length) { json["repeatedFixed32"] = msg.repeatedFixed32; } if (msg.repeatedFixed64?.length) { - json["repeatedFixed64"] = msg.repeatedFixed64.map((x) => x.toString()); + json["repeatedFixed64"] = msg.repeatedFixed64.map(String); } if (msg.repeatedSfixed32?.length) { json["repeatedSfixed32"] = msg.repeatedSfixed32; } if (msg.repeatedSfixed64?.length) { - json["repeatedSfixed64"] = msg.repeatedSfixed64.map((x) => x.toString()); + json["repeatedSfixed64"] = msg.repeatedSfixed64.map(String); } if (msg.repeatedFloat?.length) { json["repeatedFloat"] = msg.repeatedFloat; @@ -2215,7 +2231,7 @@ export const TestAllTypesJSON = { json["repeatedString"] = msg.repeatedString; } if (msg.repeatedBytes?.length) { - json["repeatedBytes"] = msg.repeatedBytes.map(encodeBase64Bytes); + json["repeatedBytes"] = msg.repeatedBytes.map(protoscript.serializeBytes); } if (msg.repeatedNestedMessage?.length) { json["repeatedNestedMessage"] = msg.repeatedNestedMessage.map( @@ -2262,7 +2278,7 @@ export const TestAllTypesJSON = { json["oneofString"] = msg.oneofString; } if (msg.oneofBytes?.length) { - json["oneofBytes"] = encodeBase64Bytes(msg.oneofBytes); + json["oneofBytes"] = protoscript.serializeBytes(msg.oneofBytes); } return json; }, @@ -2273,7 +2289,7 @@ export const TestAllTypesJSON = { _readMessage: function (msg: TestAllTypes, json: any): TestAllTypes { const _optionalInt32_ = json["optionalInt32"] ?? json["optional_int32"]; if (_optionalInt32_) { - msg.optionalInt32 = _optionalInt32_; + msg.optionalInt32 = protoscript.parseNumber(_optionalInt32_); } const _optionalInt64_ = json["optionalInt64"] ?? json["optional_int64"]; if (_optionalInt64_) { @@ -2281,7 +2297,7 @@ export const TestAllTypesJSON = { } const _optionalUint32_ = json["optionalUint32"] ?? json["optional_uint32"]; if (_optionalUint32_) { - msg.optionalUint32 = _optionalUint32_; + msg.optionalUint32 = protoscript.parseNumber(_optionalUint32_); } const _optionalUint64_ = json["optionalUint64"] ?? json["optional_uint64"]; if (_optionalUint64_) { @@ -2289,7 +2305,7 @@ export const TestAllTypesJSON = { } const _optionalSint32_ = json["optionalSint32"] ?? json["optional_sint32"]; if (_optionalSint32_) { - msg.optionalSint32 = _optionalSint32_; + msg.optionalSint32 = protoscript.parseNumber(_optionalSint32_); } const _optionalSint64_ = json["optionalSint64"] ?? json["optional_sint64"]; if (_optionalSint64_) { @@ -2298,7 +2314,7 @@ export const TestAllTypesJSON = { const _optionalFixed32_ = json["optionalFixed32"] ?? json["optional_fixed32"]; if (_optionalFixed32_) { - msg.optionalFixed32 = _optionalFixed32_; + msg.optionalFixed32 = protoscript.parseNumber(_optionalFixed32_); } const _optionalFixed64_ = json["optionalFixed64"] ?? json["optional_fixed64"]; @@ -2308,7 +2324,7 @@ export const TestAllTypesJSON = { const _optionalSfixed32_ = json["optionalSfixed32"] ?? json["optional_sfixed32"]; if (_optionalSfixed32_) { - msg.optionalSfixed32 = _optionalSfixed32_; + msg.optionalSfixed32 = protoscript.parseNumber(_optionalSfixed32_); } const _optionalSfixed64_ = json["optionalSfixed64"] ?? json["optional_sfixed64"]; @@ -2317,11 +2333,11 @@ export const TestAllTypesJSON = { } const _optionalFloat_ = json["optionalFloat"] ?? json["optional_float"]; if (_optionalFloat_) { - msg.optionalFloat = _optionalFloat_; + msg.optionalFloat = protoscript.parseDouble(_optionalFloat_); } const _optionalDouble_ = json["optionalDouble"] ?? json["optional_double"]; if (_optionalDouble_) { - msg.optionalDouble = _optionalDouble_; + msg.optionalDouble = protoscript.parseDouble(_optionalDouble_); } const _optionalBool_ = json["optionalBool"] ?? json["optional_bool"]; if (_optionalBool_) { @@ -2333,7 +2349,7 @@ export const TestAllTypesJSON = { } const _optionalBytes_ = json["optionalBytes"] ?? json["optional_bytes"]; if (_optionalBytes_) { - msg.optionalBytes = decodeBase64Bytes(_optionalBytes_); + msg.optionalBytes = protoscript.parseBytes(_optionalBytes_); } const _optionalNestedMessage_ = json["optionalNestedMessage"] ?? json["optional_nested_message"]; @@ -2362,12 +2378,13 @@ export const TestAllTypesJSON = { const _optionalNestedEnum_ = json["optionalNestedEnum"] ?? json["optional_nested_enum"]; if (_optionalNestedEnum_) { - msg.optionalNestedEnum = _optionalNestedEnum_; + msg.optionalNestedEnum = + TestAllTypes.NestedEnum._fromInt(_optionalNestedEnum_); } const _optionalForeignEnum_ = json["optionalForeignEnum"] ?? json["optional_foreign_enum"]; if (_optionalForeignEnum_) { - msg.optionalForeignEnum = _optionalForeignEnum_; + msg.optionalForeignEnum = ForeignEnum._fromInt(_optionalForeignEnum_); } const _optionalStringPiece_ = json["optionalStringPiece"] ?? json["optional_string_piece"]; @@ -2405,7 +2422,7 @@ export const TestAllTypesJSON = { } const _repeatedInt32_ = json["repeatedInt32"] ?? json["repeated_int32"]; if (_repeatedInt32_) { - msg.repeatedInt32 = _repeatedInt32_; + msg.repeatedInt32 = _repeatedInt32_.map(protoscript.parseNumber); } const _repeatedInt64_ = json["repeatedInt64"] ?? json["repeated_int64"]; if (_repeatedInt64_) { @@ -2413,7 +2430,7 @@ export const TestAllTypesJSON = { } const _repeatedUint32_ = json["repeatedUint32"] ?? json["repeated_uint32"]; if (_repeatedUint32_) { - msg.repeatedUint32 = _repeatedUint32_; + msg.repeatedUint32 = _repeatedUint32_.map(protoscript.parseNumber); } const _repeatedUint64_ = json["repeatedUint64"] ?? json["repeated_uint64"]; if (_repeatedUint64_) { @@ -2421,7 +2438,7 @@ export const TestAllTypesJSON = { } const _repeatedSint32_ = json["repeatedSint32"] ?? json["repeated_sint32"]; if (_repeatedSint32_) { - msg.repeatedSint32 = _repeatedSint32_; + msg.repeatedSint32 = _repeatedSint32_.map(protoscript.parseNumber); } const _repeatedSint64_ = json["repeatedSint64"] ?? json["repeated_sint64"]; if (_repeatedSint64_) { @@ -2430,7 +2447,7 @@ export const TestAllTypesJSON = { const _repeatedFixed32_ = json["repeatedFixed32"] ?? json["repeated_fixed32"]; if (_repeatedFixed32_) { - msg.repeatedFixed32 = _repeatedFixed32_; + msg.repeatedFixed32 = _repeatedFixed32_.map(protoscript.parseNumber); } const _repeatedFixed64_ = json["repeatedFixed64"] ?? json["repeated_fixed64"]; @@ -2440,7 +2457,7 @@ export const TestAllTypesJSON = { const _repeatedSfixed32_ = json["repeatedSfixed32"] ?? json["repeated_sfixed32"]; if (_repeatedSfixed32_) { - msg.repeatedSfixed32 = _repeatedSfixed32_; + msg.repeatedSfixed32 = _repeatedSfixed32_.map(protoscript.parseNumber); } const _repeatedSfixed64_ = json["repeatedSfixed64"] ?? json["repeated_sfixed64"]; @@ -2449,11 +2466,11 @@ export const TestAllTypesJSON = { } const _repeatedFloat_ = json["repeatedFloat"] ?? json["repeated_float"]; if (_repeatedFloat_) { - msg.repeatedFloat = _repeatedFloat_; + msg.repeatedFloat = _repeatedFloat_.map(protoscript.parseDouble); } const _repeatedDouble_ = json["repeatedDouble"] ?? json["repeated_double"]; if (_repeatedDouble_) { - msg.repeatedDouble = _repeatedDouble_; + msg.repeatedDouble = _repeatedDouble_.map(protoscript.parseDouble); } const _repeatedBool_ = json["repeatedBool"] ?? json["repeated_bool"]; if (_repeatedBool_) { @@ -2465,7 +2482,7 @@ export const TestAllTypesJSON = { } const _repeatedBytes_ = json["repeatedBytes"] ?? json["repeated_bytes"]; if (_repeatedBytes_) { - msg.repeatedBytes = _repeatedBytes_.map(decodeBase64Bytes); + msg.repeatedBytes = _repeatedBytes_.map(protoscript.parseBytes); } const _repeatedNestedMessage_ = json["repeatedNestedMessage"] ?? json["repeated_nested_message"]; @@ -2497,12 +2514,14 @@ export const TestAllTypesJSON = { const _repeatedNestedEnum_ = json["repeatedNestedEnum"] ?? json["repeated_nested_enum"]; if (_repeatedNestedEnum_) { - msg.repeatedNestedEnum = _repeatedNestedEnum_; + msg.repeatedNestedEnum = _repeatedNestedEnum_.map( + TestAllTypes.NestedEnum._fromInt, + ); } const _repeatedForeignEnum_ = json["repeatedForeignEnum"] ?? json["repeated_foreign_enum"]; if (_repeatedForeignEnum_) { - msg.repeatedForeignEnum = _repeatedForeignEnum_; + msg.repeatedForeignEnum = _repeatedForeignEnum_.map(ForeignEnum._fromInt); } const _repeatedStringPiece_ = json["repeatedStringPiece"] ?? json["repeated_string_piece"]; @@ -2524,7 +2543,7 @@ export const TestAllTypesJSON = { } const _oneofUint32_ = json["oneofUint32"] ?? json["oneof_uint32"]; if (_oneofUint32_) { - msg.oneofUint32 = _oneofUint32_; + msg.oneofUint32 = protoscript.parseNumber(_oneofUint32_); } const _oneofNestedMessage_ = json["oneofNestedMessage"] ?? json["oneof_nested_message"]; @@ -2541,7 +2560,7 @@ export const TestAllTypesJSON = { } const _oneofBytes_ = json["oneofBytes"] ?? json["oneof_bytes"]; if (_oneofBytes_) { - msg.oneofBytes = decodeBase64Bytes(_oneofBytes_); + msg.oneofBytes = protoscript.parseBytes(_oneofBytes_); } return msg; }, @@ -2627,9 +2646,12 @@ export const TestAllTypesJSON = { /** * Initializes TestAllTypes.NestedMessage with all fields set to their default value. */ - initialize: function (): TestAllTypes.NestedMessage { + initialize: function ( + msg?: Partial, + ): TestAllTypes.NestedMessage { return { bb: 0, + ...msg, }; }, @@ -2655,7 +2677,7 @@ export const TestAllTypesJSON = { ): TestAllTypes.NestedMessage { const _bb_ = json["bb"]; if (_bb_) { - msg.bb = _bb_; + msg.bb = protoscript.parseNumber(_bb_); } return msg; }, @@ -2683,7 +2705,7 @@ export const TestPackedTypesJSON = { /** * Initializes TestPackedTypes with all fields set to their default value. */ - initialize: function (): TestPackedTypes { + initialize: function (msg?: Partial): TestPackedTypes { return { packedInt32: [], packedInt64: [], @@ -2699,6 +2721,7 @@ export const TestPackedTypesJSON = { packedDouble: [], packedBool: [], packedEnum: [], + ...msg, }; }, @@ -2713,31 +2736,31 @@ export const TestPackedTypesJSON = { json["packedInt32"] = msg.packedInt32; } if (msg.packedInt64?.length) { - json["packedInt64"] = msg.packedInt64.map((x) => x.toString()); + json["packedInt64"] = msg.packedInt64.map(String); } if (msg.packedUint32?.length) { json["packedUint32"] = msg.packedUint32; } if (msg.packedUint64?.length) { - json["packedUint64"] = msg.packedUint64.map((x) => x.toString()); + json["packedUint64"] = msg.packedUint64.map(String); } if (msg.packedSint32?.length) { json["packedSint32"] = msg.packedSint32; } if (msg.packedSint64?.length) { - json["packedSint64"] = msg.packedSint64.map((x) => x.toString()); + json["packedSint64"] = msg.packedSint64.map(String); } if (msg.packedFixed32?.length) { json["packedFixed32"] = msg.packedFixed32; } if (msg.packedFixed64?.length) { - json["packedFixed64"] = msg.packedFixed64.map((x) => x.toString()); + json["packedFixed64"] = msg.packedFixed64.map(String); } if (msg.packedSfixed32?.length) { json["packedSfixed32"] = msg.packedSfixed32; } if (msg.packedSfixed64?.length) { - json["packedSfixed64"] = msg.packedSfixed64.map((x) => x.toString()); + json["packedSfixed64"] = msg.packedSfixed64.map(String); } if (msg.packedFloat?.length) { json["packedFloat"] = msg.packedFloat; @@ -2760,7 +2783,7 @@ export const TestPackedTypesJSON = { _readMessage: function (msg: TestPackedTypes, json: any): TestPackedTypes { const _packedInt32_ = json["packedInt32"] ?? json["packed_int32"]; if (_packedInt32_) { - msg.packedInt32 = _packedInt32_; + msg.packedInt32 = _packedInt32_.map(protoscript.parseNumber); } const _packedInt64_ = json["packedInt64"] ?? json["packed_int64"]; if (_packedInt64_) { @@ -2768,7 +2791,7 @@ export const TestPackedTypesJSON = { } const _packedUint32_ = json["packedUint32"] ?? json["packed_uint32"]; if (_packedUint32_) { - msg.packedUint32 = _packedUint32_; + msg.packedUint32 = _packedUint32_.map(protoscript.parseNumber); } const _packedUint64_ = json["packedUint64"] ?? json["packed_uint64"]; if (_packedUint64_) { @@ -2776,7 +2799,7 @@ export const TestPackedTypesJSON = { } const _packedSint32_ = json["packedSint32"] ?? json["packed_sint32"]; if (_packedSint32_) { - msg.packedSint32 = _packedSint32_; + msg.packedSint32 = _packedSint32_.map(protoscript.parseNumber); } const _packedSint64_ = json["packedSint64"] ?? json["packed_sint64"]; if (_packedSint64_) { @@ -2784,7 +2807,7 @@ export const TestPackedTypesJSON = { } const _packedFixed32_ = json["packedFixed32"] ?? json["packed_fixed32"]; if (_packedFixed32_) { - msg.packedFixed32 = _packedFixed32_; + msg.packedFixed32 = _packedFixed32_.map(protoscript.parseNumber); } const _packedFixed64_ = json["packedFixed64"] ?? json["packed_fixed64"]; if (_packedFixed64_) { @@ -2792,7 +2815,7 @@ export const TestPackedTypesJSON = { } const _packedSfixed32_ = json["packedSfixed32"] ?? json["packed_sfixed32"]; if (_packedSfixed32_) { - msg.packedSfixed32 = _packedSfixed32_; + msg.packedSfixed32 = _packedSfixed32_.map(protoscript.parseNumber); } const _packedSfixed64_ = json["packedSfixed64"] ?? json["packed_sfixed64"]; if (_packedSfixed64_) { @@ -2800,11 +2823,11 @@ export const TestPackedTypesJSON = { } const _packedFloat_ = json["packedFloat"] ?? json["packed_float"]; if (_packedFloat_) { - msg.packedFloat = _packedFloat_; + msg.packedFloat = _packedFloat_.map(protoscript.parseDouble); } const _packedDouble_ = json["packedDouble"] ?? json["packed_double"]; if (_packedDouble_) { - msg.packedDouble = _packedDouble_; + msg.packedDouble = _packedDouble_.map(protoscript.parseDouble); } const _packedBool_ = json["packedBool"] ?? json["packed_bool"]; if (_packedBool_) { @@ -2812,7 +2835,7 @@ export const TestPackedTypesJSON = { } const _packedEnum_ = json["packedEnum"] ?? json["packed_enum"]; if (_packedEnum_) { - msg.packedEnum = _packedEnum_; + msg.packedEnum = _packedEnum_.map(ForeignEnum._fromInt); } return msg; }, @@ -2839,7 +2862,7 @@ export const TestUnpackedTypesJSON = { /** * Initializes TestUnpackedTypes with all fields set to their default value. */ - initialize: function (): TestUnpackedTypes { + initialize: function (msg?: Partial): TestUnpackedTypes { return { repeatedInt32: [], repeatedInt64: [], @@ -2855,6 +2878,7 @@ export const TestUnpackedTypesJSON = { repeatedDouble: [], repeatedBool: [], repeatedNestedEnum: [], + ...msg, }; }, @@ -2869,31 +2893,31 @@ export const TestUnpackedTypesJSON = { json["repeatedInt32"] = msg.repeatedInt32; } if (msg.repeatedInt64?.length) { - json["repeatedInt64"] = msg.repeatedInt64.map((x) => x.toString()); + json["repeatedInt64"] = msg.repeatedInt64.map(String); } if (msg.repeatedUint32?.length) { json["repeatedUint32"] = msg.repeatedUint32; } if (msg.repeatedUint64?.length) { - json["repeatedUint64"] = msg.repeatedUint64.map((x) => x.toString()); + json["repeatedUint64"] = msg.repeatedUint64.map(String); } if (msg.repeatedSint32?.length) { json["repeatedSint32"] = msg.repeatedSint32; } if (msg.repeatedSint64?.length) { - json["repeatedSint64"] = msg.repeatedSint64.map((x) => x.toString()); + json["repeatedSint64"] = msg.repeatedSint64.map(String); } if (msg.repeatedFixed32?.length) { json["repeatedFixed32"] = msg.repeatedFixed32; } if (msg.repeatedFixed64?.length) { - json["repeatedFixed64"] = msg.repeatedFixed64.map((x) => x.toString()); + json["repeatedFixed64"] = msg.repeatedFixed64.map(String); } if (msg.repeatedSfixed32?.length) { json["repeatedSfixed32"] = msg.repeatedSfixed32; } if (msg.repeatedSfixed64?.length) { - json["repeatedSfixed64"] = msg.repeatedSfixed64.map((x) => x.toString()); + json["repeatedSfixed64"] = msg.repeatedSfixed64.map(String); } if (msg.repeatedFloat?.length) { json["repeatedFloat"] = msg.repeatedFloat; @@ -2919,7 +2943,7 @@ export const TestUnpackedTypesJSON = { ): TestUnpackedTypes { const _repeatedInt32_ = json["repeatedInt32"] ?? json["repeated_int32"]; if (_repeatedInt32_) { - msg.repeatedInt32 = _repeatedInt32_; + msg.repeatedInt32 = _repeatedInt32_.map(protoscript.parseNumber); } const _repeatedInt64_ = json["repeatedInt64"] ?? json["repeated_int64"]; if (_repeatedInt64_) { @@ -2927,7 +2951,7 @@ export const TestUnpackedTypesJSON = { } const _repeatedUint32_ = json["repeatedUint32"] ?? json["repeated_uint32"]; if (_repeatedUint32_) { - msg.repeatedUint32 = _repeatedUint32_; + msg.repeatedUint32 = _repeatedUint32_.map(protoscript.parseNumber); } const _repeatedUint64_ = json["repeatedUint64"] ?? json["repeated_uint64"]; if (_repeatedUint64_) { @@ -2935,7 +2959,7 @@ export const TestUnpackedTypesJSON = { } const _repeatedSint32_ = json["repeatedSint32"] ?? json["repeated_sint32"]; if (_repeatedSint32_) { - msg.repeatedSint32 = _repeatedSint32_; + msg.repeatedSint32 = _repeatedSint32_.map(protoscript.parseNumber); } const _repeatedSint64_ = json["repeatedSint64"] ?? json["repeated_sint64"]; if (_repeatedSint64_) { @@ -2944,7 +2968,7 @@ export const TestUnpackedTypesJSON = { const _repeatedFixed32_ = json["repeatedFixed32"] ?? json["repeated_fixed32"]; if (_repeatedFixed32_) { - msg.repeatedFixed32 = _repeatedFixed32_; + msg.repeatedFixed32 = _repeatedFixed32_.map(protoscript.parseNumber); } const _repeatedFixed64_ = json["repeatedFixed64"] ?? json["repeated_fixed64"]; @@ -2954,7 +2978,7 @@ export const TestUnpackedTypesJSON = { const _repeatedSfixed32_ = json["repeatedSfixed32"] ?? json["repeated_sfixed32"]; if (_repeatedSfixed32_) { - msg.repeatedSfixed32 = _repeatedSfixed32_; + msg.repeatedSfixed32 = _repeatedSfixed32_.map(protoscript.parseNumber); } const _repeatedSfixed64_ = json["repeatedSfixed64"] ?? json["repeated_sfixed64"]; @@ -2963,11 +2987,11 @@ export const TestUnpackedTypesJSON = { } const _repeatedFloat_ = json["repeatedFloat"] ?? json["repeated_float"]; if (_repeatedFloat_) { - msg.repeatedFloat = _repeatedFloat_; + msg.repeatedFloat = _repeatedFloat_.map(protoscript.parseDouble); } const _repeatedDouble_ = json["repeatedDouble"] ?? json["repeated_double"]; if (_repeatedDouble_) { - msg.repeatedDouble = _repeatedDouble_; + msg.repeatedDouble = _repeatedDouble_.map(protoscript.parseDouble); } const _repeatedBool_ = json["repeatedBool"] ?? json["repeated_bool"]; if (_repeatedBool_) { @@ -2976,7 +3000,9 @@ export const TestUnpackedTypesJSON = { const _repeatedNestedEnum_ = json["repeatedNestedEnum"] ?? json["repeated_nested_enum"]; if (_repeatedNestedEnum_) { - msg.repeatedNestedEnum = _repeatedNestedEnum_; + msg.repeatedNestedEnum = _repeatedNestedEnum_.map( + TestAllTypes.NestedEnum._fromInt, + ); } return msg; }, @@ -3003,10 +3029,11 @@ export const NestedTestAllTypesJSON = { /** * Initializes NestedTestAllTypes with all fields set to their default value. */ - initialize: function (): NestedTestAllTypes { + initialize: function (msg?: Partial): NestedTestAllTypes { return { child: undefined, payload: TestAllTypesJSON.initialize(), + ...msg, }; }, @@ -3073,9 +3100,10 @@ export const ForeignMessageJSON = { /** * Initializes ForeignMessage with all fields set to their default value. */ - initialize: function (): ForeignMessage { + initialize: function (msg?: Partial): ForeignMessage { return { c: 0, + ...msg, }; }, @@ -3098,7 +3126,7 @@ export const ForeignMessageJSON = { _readMessage: function (msg: ForeignMessage, json: any): ForeignMessage { const _c_ = json["c"]; if (_c_) { - msg.c = _c_; + msg.c = protoscript.parseNumber(_c_); } return msg; }, @@ -3122,8 +3150,10 @@ export const TestEmptyMessageJSON = { /** * Initializes TestEmptyMessage with all fields set to their default value. */ - initialize: function (): TestEmptyMessage { - return {}; + initialize: function (msg?: Partial): TestEmptyMessage { + return { + ...msg, + }; }, /** @@ -3164,9 +3194,12 @@ export const TestMessageWithDummyJSON = { /** * Initializes TestMessageWithDummy with all fields set to their default value. */ - initialize: function (): TestMessageWithDummy { + initialize: function ( + msg?: Partial, + ): TestMessageWithDummy { return { dummy: false, + ...msg, }; }, @@ -3219,9 +3252,10 @@ export const TestOneof2JSON = { /** * Initializes TestOneof2 with all fields set to their default value. */ - initialize: function (): TestOneof2 { + initialize: function (msg?: Partial): TestOneof2 { return { fooEnum: undefined, + ...msg, }; }, @@ -3244,7 +3278,7 @@ export const TestOneof2JSON = { _readMessage: function (msg: TestOneof2, json: any): TestOneof2 { const _fooEnum_ = json["fooEnum"] ?? json["foo_enum"]; if (_fooEnum_) { - msg.fooEnum = _fooEnum_; + msg.fooEnum = TestOneof2.NestedEnum._fromInt(_fooEnum_); } return msg; }, diff --git a/e2e/protos/google/protobuf/unittest_well_known_types.pb.ts b/e2e/protos/google/protobuf/unittest_well_known_types.pb.ts index 25a82b28..2f70eb70 100644 --- a/e2e/protos/google/protobuf/unittest_well_known_types.pb.ts +++ b/e2e/protos/google/protobuf/unittest_well_known_types.pb.ts @@ -3,8 +3,6 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; - import * as protoscript from "protoscript"; //========================================// @@ -245,7 +243,7 @@ export const TestWellKnownTypes = { encode: function (msg: PartialDeep): Uint8Array { return TestWellKnownTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -255,14 +253,14 @@ export const TestWellKnownTypes = { decode: function (bytes: ByteSource): TestWellKnownTypes { return TestWellKnownTypes._readMessage( TestWellKnownTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes TestWellKnownTypes with all fields set to their default value. */ - initialize: function (): TestWellKnownTypes { + initialize: function (msg?: Partial): TestWellKnownTypes { return { anyField: protoscript.Any.initialize(), apiField: protoscript.Api.initialize(), @@ -283,6 +281,7 @@ export const TestWellKnownTypes = { stringField: protoscript.StringValue.initialize(), bytesField: protoscript.BytesValue.initialize(), valueField: protoscript.Value.initialize(), + ...msg, }; }, @@ -291,8 +290,8 @@ export const TestWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.anyField) { writer.writeMessage(1, msg.anyField, protoscript.Any._writeMessage); } @@ -410,7 +409,7 @@ export const TestWellKnownTypes = { */ _readMessage: function ( msg: TestWellKnownTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): TestWellKnownTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -544,7 +543,7 @@ export const RepeatedWellKnownTypes = { encode: function (msg: PartialDeep): Uint8Array { return RepeatedWellKnownTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -554,14 +553,16 @@ export const RepeatedWellKnownTypes = { decode: function (bytes: ByteSource): RepeatedWellKnownTypes { return RepeatedWellKnownTypes._readMessage( RepeatedWellKnownTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes RepeatedWellKnownTypes with all fields set to their default value. */ - initialize: function (): RepeatedWellKnownTypes { + initialize: function ( + msg?: Partial, + ): RepeatedWellKnownTypes { return { anyField: [], apiField: [], @@ -581,6 +582,7 @@ export const RepeatedWellKnownTypes = { boolField: [], stringField: [], bytesField: [], + ...msg, }; }, @@ -589,8 +591,8 @@ export const RepeatedWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.anyField?.length) { writer.writeRepeatedMessage( 1, @@ -725,7 +727,7 @@ export const RepeatedWellKnownTypes = { */ _readMessage: function ( msg: RepeatedWellKnownTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): RepeatedWellKnownTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -855,7 +857,7 @@ export const OneofWellKnownTypes = { encode: function (msg: PartialDeep): Uint8Array { return OneofWellKnownTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -865,14 +867,16 @@ export const OneofWellKnownTypes = { decode: function (bytes: ByteSource): OneofWellKnownTypes { return OneofWellKnownTypes._readMessage( OneofWellKnownTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes OneofWellKnownTypes with all fields set to their default value. */ - initialize: function (): OneofWellKnownTypes { + initialize: function ( + msg?: Partial, + ): OneofWellKnownTypes { return { anyField: undefined, apiField: undefined, @@ -892,6 +896,7 @@ export const OneofWellKnownTypes = { boolField: undefined, stringField: undefined, bytesField: undefined, + ...msg, }; }, @@ -900,8 +905,8 @@ export const OneofWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.anyField != undefined) { writer.writeMessage(1, msg.anyField, protoscript.Any._writeMessage); } @@ -1016,7 +1021,7 @@ export const OneofWellKnownTypes = { */ _readMessage: function ( msg: OneofWellKnownTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): OneofWellKnownTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1164,7 +1169,7 @@ export const MapWellKnownTypes = { encode: function (msg: PartialDeep): Uint8Array { return MapWellKnownTypes._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -1174,14 +1179,14 @@ export const MapWellKnownTypes = { decode: function (bytes: ByteSource): MapWellKnownTypes { return MapWellKnownTypes._readMessage( MapWellKnownTypes.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes MapWellKnownTypes with all fields set to their default value. */ - initialize: function (): MapWellKnownTypes { + initialize: function (msg?: Partial): MapWellKnownTypes { return { anyField: {}, apiField: {}, @@ -1201,6 +1206,7 @@ export const MapWellKnownTypes = { boolField: {}, stringField: {}, bytesField: {}, + ...msg, }; }, @@ -1209,8 +1215,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.anyField) { writer.writeRepeatedMessage( 1, @@ -1399,7 +1405,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1536,8 +1542,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1552,7 +1558,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.AnyField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.AnyField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1582,8 +1588,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1598,7 +1604,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.ApiField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.ApiField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1628,8 +1634,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1644,7 +1650,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.DurationField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.DurationField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1674,8 +1680,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1690,7 +1696,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.EmptyField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.EmptyField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1720,8 +1726,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1736,7 +1742,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.FieldMaskField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.FieldMaskField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1766,8 +1772,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1786,7 +1792,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.SourceContextField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.SourceContextField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1819,8 +1825,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1835,7 +1841,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.StructField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.StructField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1865,8 +1871,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1881,7 +1887,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.TimestampField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.TimestampField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1911,8 +1917,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1927,7 +1933,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.TypeField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.TypeField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -1957,8 +1963,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -1977,7 +1983,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.DoubleField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.DoubleField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2007,8 +2013,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2023,7 +2029,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.FloatField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.FloatField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2053,8 +2059,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2069,7 +2075,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.Int64Field, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.Int64Field { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2099,8 +2105,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2119,7 +2125,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.Uint64Field, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.Uint64Field { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2149,8 +2155,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2165,7 +2171,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.Int32Field, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.Int32Field { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2195,8 +2201,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2215,7 +2221,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.Uint32Field, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.Uint32Field { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2245,8 +2251,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2261,7 +2267,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.BoolField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.BoolField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2291,8 +2297,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2311,7 +2317,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.StringField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.StringField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2341,8 +2347,8 @@ export const MapWellKnownTypes = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.key) { writer.writeInt32(1, msg.key); } @@ -2357,7 +2363,7 @@ export const MapWellKnownTypes = { */ _readMessage: function ( msg: MapWellKnownTypes.BytesField, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): MapWellKnownTypes.BytesField { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -2407,7 +2413,7 @@ export const TestWellKnownTypesJSON = { /** * Initializes TestWellKnownTypes with all fields set to their default value. */ - initialize: function (): TestWellKnownTypes { + initialize: function (msg?: Partial): TestWellKnownTypes { return { anyField: protoscript.AnyJSON.initialize(), apiField: protoscript.ApiJSON.initialize(), @@ -2428,6 +2434,7 @@ export const TestWellKnownTypesJSON = { stringField: protoscript.StringValueJSON.initialize(), bytesField: protoscript.BytesValueJSON.initialize(), valueField: protoscript.ValueJSON.initialize(), + ...msg, }; }, @@ -2450,13 +2457,12 @@ export const TestWellKnownTypesJSON = { json["apiField"] = _apiField_; } } - if (msg.durationField) { - const _durationField_ = protoscript.DurationJSON._writeMessage( - msg.durationField, - ); - if (Object.keys(_durationField_).length > 0) { - json["durationField"] = _durationField_; - } + if ( + msg.durationField && + msg.durationField.seconds && + msg.durationField.nanos + ) { + json["durationField"] = protoscript.serializeDuration(msg.durationField); } if (msg.emptyField) { const _emptyField_ = protoscript.EmptyJSON._writeMessage(msg.emptyField); @@ -2488,13 +2494,14 @@ export const TestWellKnownTypesJSON = { json["structField"] = _structField_; } } - if (msg.timestampField) { - const _timestampField_ = protoscript.TimestampJSON._writeMessage( + if ( + msg.timestampField && + msg.timestampField.seconds && + msg.timestampField.nanos + ) { + json["timestampField"] = protoscript.serializeTimestamp( msg.timestampField, ); - if (Object.keys(_timestampField_).length > 0) { - json["timestampField"] = _timestampField_; - } } if (msg.typeField) { const _typeField_ = protoscript.TypeJSON._writeMessage(msg.typeField); @@ -2600,7 +2607,7 @@ export const TestWellKnownTypesJSON = { } const _durationField_ = json["durationField"] ?? json["duration_field"]; if (_durationField_) { - protoscript.DurationJSON._readMessage(msg.durationField, _durationField_); + msg.durationField = protoscript.parseDuration(_durationField_); } const _emptyField_ = json["emptyField"] ?? json["empty_field"]; if (_emptyField_) { @@ -2627,10 +2634,7 @@ export const TestWellKnownTypesJSON = { } const _timestampField_ = json["timestampField"] ?? json["timestamp_field"]; if (_timestampField_) { - protoscript.TimestampJSON._readMessage( - msg.timestampField, - _timestampField_, - ); + msg.timestampField = protoscript.parseTimestamp(_timestampField_); } const _typeField_ = json["typeField"] ?? json["type_field"]; if (_typeField_) { @@ -2701,7 +2705,9 @@ export const RepeatedWellKnownTypesJSON = { /** * Initializes RepeatedWellKnownTypes with all fields set to their default value. */ - initialize: function (): RepeatedWellKnownTypes { + initialize: function ( + msg?: Partial, + ): RepeatedWellKnownTypes { return { anyField: [], apiField: [], @@ -2721,6 +2727,7 @@ export const RepeatedWellKnownTypesJSON = { boolField: [], stringField: [], bytesField: [], + ...msg, }; }, @@ -2739,7 +2746,7 @@ export const RepeatedWellKnownTypesJSON = { } if (msg.durationField?.length) { json["durationField"] = msg.durationField.map( - protoscript.DurationJSON._writeMessage, + protoscript.serializeDuration, ); } if (msg.emptyField?.length) { @@ -2764,7 +2771,7 @@ export const RepeatedWellKnownTypesJSON = { } if (msg.timestampField?.length) { json["timestampField"] = msg.timestampField.map( - protoscript.TimestampJSON._writeMessage, + protoscript.serializeTimestamp, ); } if (msg.typeField?.length) { @@ -2843,11 +2850,7 @@ export const RepeatedWellKnownTypesJSON = { } const _durationField_ = json["durationField"] ?? json["duration_field"]; if (_durationField_) { - for (const item of _durationField_) { - const m = protoscript.DurationJSON.initialize(); - protoscript.DurationJSON._readMessage(m, item); - msg.durationField.push(m); - } + msg.durationField = _durationField_.map(protoscript.parseDuration); } const _emptyField_ = json["emptyField"] ?? json["empty_field"]; if (_emptyField_) { @@ -2884,11 +2887,7 @@ export const RepeatedWellKnownTypesJSON = { } const _timestampField_ = json["timestampField"] ?? json["timestamp_field"]; if (_timestampField_) { - for (const item of _timestampField_) { - const m = protoscript.TimestampJSON.initialize(); - protoscript.TimestampJSON._readMessage(m, item); - msg.timestampField.push(m); - } + msg.timestampField = _timestampField_.map(protoscript.parseTimestamp); } const _typeField_ = json["typeField"] ?? json["type_field"]; if (_typeField_) { @@ -2995,7 +2994,9 @@ export const OneofWellKnownTypesJSON = { /** * Initializes OneofWellKnownTypes with all fields set to their default value. */ - initialize: function (): OneofWellKnownTypes { + initialize: function ( + msg?: Partial, + ): OneofWellKnownTypes { return { anyField: undefined, apiField: undefined, @@ -3015,6 +3016,7 @@ export const OneofWellKnownTypesJSON = { boolField: undefined, stringField: undefined, bytesField: undefined, + ...msg, }; }, @@ -3034,10 +3036,7 @@ export const OneofWellKnownTypesJSON = { json["apiField"] = _apiField_; } if (msg.durationField != undefined) { - const _durationField_ = protoscript.DurationJSON._writeMessage( - msg.durationField, - ); - json["durationField"] = _durationField_; + json["durationField"] = protoscript.serializeDuration(msg.durationField); } if (msg.emptyField != undefined) { const _emptyField_ = protoscript.EmptyJSON._writeMessage(msg.emptyField); @@ -3062,10 +3061,9 @@ export const OneofWellKnownTypesJSON = { json["structField"] = _structField_; } if (msg.timestampField != undefined) { - const _timestampField_ = protoscript.TimestampJSON._writeMessage( + json["timestampField"] = protoscript.serializeTimestamp( msg.timestampField, ); - json["timestampField"] = _timestampField_; } if (msg.typeField != undefined) { const _typeField_ = protoscript.TypeJSON._writeMessage(msg.typeField); @@ -3147,8 +3145,7 @@ export const OneofWellKnownTypesJSON = { } const _durationField_ = json["durationField"] ?? json["duration_field"]; if (_durationField_) { - msg.durationField = protoscript.DurationJSON.initialize(); - protoscript.DurationJSON._readMessage(msg.durationField, _durationField_); + msg.durationField = protoscript.parseDuration(_durationField_); } const _emptyField_ = json["emptyField"] ?? json["empty_field"]; if (_emptyField_) { @@ -3179,11 +3176,7 @@ export const OneofWellKnownTypesJSON = { } const _timestampField_ = json["timestampField"] ?? json["timestamp_field"]; if (_timestampField_) { - msg.timestampField = protoscript.TimestampJSON.initialize(); - protoscript.TimestampJSON._readMessage( - msg.timestampField, - _timestampField_, - ); + msg.timestampField = protoscript.parseTimestamp(_timestampField_); } const _typeField_ = json["typeField"] ?? json["type_field"]; if (_typeField_) { @@ -3260,7 +3253,7 @@ export const MapWellKnownTypesJSON = { /** * Initializes MapWellKnownTypes with all fields set to their default value. */ - initialize: function (): MapWellKnownTypes { + initialize: function (msg?: Partial): MapWellKnownTypes { return { anyField: {}, apiField: {}, @@ -3280,6 +3273,7 @@ export const MapWellKnownTypesJSON = { boolField: {}, stringField: {}, bytesField: {}, + ...msg, }; }, @@ -3693,7 +3687,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.AnyField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -3732,7 +3726,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.ApiField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -3753,11 +3747,8 @@ export const MapWellKnownTypesJSON = { if (msg.key) { json["key"] = msg.key; } - if (msg.value) { - const _value_ = protoscript.DurationJSON._writeMessage(msg.value); - if (Object.keys(_value_).length > 0) { - json["value"] = _value_; - } + if (msg.value && msg.value.seconds && msg.value.nanos) { + json["value"] = protoscript.serializeDuration(msg.value); } return json; }, @@ -3771,11 +3762,11 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.DurationField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - protoscript.DurationJSON._readMessage(msg.value, _value_); + msg.value = protoscript.parseDuration(_value_); } return msg; }, @@ -3810,7 +3801,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.EmptyField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -3849,7 +3840,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.FieldMaskField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -3888,7 +3879,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.SourceContextField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -3927,7 +3918,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.StructField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -3948,11 +3939,8 @@ export const MapWellKnownTypesJSON = { if (msg.key) { json["key"] = msg.key; } - if (msg.value) { - const _value_ = protoscript.TimestampJSON._writeMessage(msg.value); - if (Object.keys(_value_).length > 0) { - json["value"] = _value_; - } + if (msg.value && msg.value.seconds && msg.value.nanos) { + json["value"] = protoscript.serializeTimestamp(msg.value); } return json; }, @@ -3966,11 +3954,11 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.TimestampField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { - protoscript.TimestampJSON._readMessage(msg.value, _value_); + msg.value = protoscript.parseTimestamp(_value_); } return msg; }, @@ -4005,7 +3993,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.TypeField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4044,7 +4032,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.DoubleField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4083,7 +4071,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.FloatField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4122,7 +4110,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.Int64Field { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4161,7 +4149,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.Uint64Field { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4200,7 +4188,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.Int32Field { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4239,7 +4227,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.Uint32Field { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4278,7 +4266,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.BoolField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4317,7 +4305,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.StringField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { @@ -4356,7 +4344,7 @@ export const MapWellKnownTypesJSON = { ): MapWellKnownTypes.BytesField { const _key_ = json["key"]; if (_key_) { - msg.key = _key_; + msg.key = protoscript.parseNumber(_key_); } const _value_ = json["value"]; if (_value_) { diff --git a/e2e/protos/twirpscript/empty.pb.ts b/e2e/protos/twirpscript/empty.pb.ts index 8e6841bd..0a651436 100644 --- a/e2e/protos/twirpscript/empty.pb.ts +++ b/e2e/protos/twirpscript/empty.pb.ts @@ -2,13 +2,13 @@ // Source: twirpscript/empty.proto /* eslint-disable */ +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this // file needs to be regenerated by running `npx twirpscript`. export { MIN_SUPPORTED_VERSION_0_0_56 } from "twirpscript"; import type { ClientConfiguration } from "twirpscript"; -import * as protoscript from "protoscript"; //========================================// // Foo Protobuf Client // diff --git a/e2e/protos/twirpscript/services.pb.ts b/e2e/protos/twirpscript/services.pb.ts index 3fd32702..ad865b82 100644 --- a/e2e/protos/twirpscript/services.pb.ts +++ b/e2e/protos/twirpscript/services.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this @@ -123,8 +123,10 @@ export const Req = { /** * Initializes Req with all fields set to their default value. */ - initialize: function (): Req { - return {}; + initialize: function (msg?: Partial): Req { + return { + ...msg, + }; }, /** @@ -132,15 +134,15 @@ export const Req = { */ _writeMessage: function ( _msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { return writer; }, /** * @private */ - _readMessage: function (_msg: Req, _reader: BinaryReader): Req { + _readMessage: function (_msg: Req, _reader: protoscript.BinaryReader): Req { return _msg; }, @@ -151,7 +153,7 @@ export const Req = { encode: function (msg: PartialDeep): Uint8Array { return Req.MakeHat._writeMessage( msg, - new BinaryWriter(), + new protoscript.BinaryWriter(), ).getResultBuffer(); }, @@ -161,16 +163,17 @@ export const Req = { decode: function (bytes: ByteSource): Req.MakeHat { return Req.MakeHat._readMessage( Req.MakeHat.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes Req.MakeHat with all fields set to their default value. */ - initialize: function (): Req.MakeHat { + initialize: function (msg?: Partial): Req.MakeHat { return { inches: 0, + ...msg, }; }, @@ -179,8 +182,8 @@ export const Req = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -192,7 +195,7 @@ export const Req = { */ _readMessage: function ( msg: Req.MakeHat, - reader: BinaryReader, + reader: protoscript.BinaryReader, ): Req.MakeHat { while (reader.nextField()) { const field = reader.getFieldNumber(); @@ -217,24 +220,31 @@ export const Hat = { * Serializes Hat to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Hat._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Hat._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Hat from protobuf. */ decode: function (bytes: ByteSource): Hat { - return Hat._readMessage(Hat.initialize(), new BinaryReader(bytes)); + return Hat._readMessage( + Hat.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -243,8 +253,8 @@ export const Hat = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -260,7 +270,7 @@ export const Hat = { /** * @private */ - _readMessage: function (msg: Hat, reader: BinaryReader): Hat { + _readMessage: function (msg: Hat, reader: protoscript.BinaryReader): Hat { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -308,8 +318,10 @@ export const ReqJSON = { /** * Initializes Req with all fields set to their default value. */ - initialize: function (): Req { - return {}; + initialize: function (msg?: Partial): Req { + return { + ...msg, + }; }, /** @@ -347,9 +359,10 @@ export const ReqJSON = { /** * Initializes Req.MakeHat with all fields set to their default value. */ - initialize: function (): Req.MakeHat { + initialize: function (msg?: Partial): Req.MakeHat { return { inches: 0, + ...msg, }; }, @@ -372,7 +385,7 @@ export const ReqJSON = { _readMessage: function (msg: Req.MakeHat, json: any): Req.MakeHat { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } return msg; }, @@ -397,11 +410,12 @@ export const HatJSON = { /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -428,7 +442,7 @@ export const HatJSON = { _readMessage: function (msg: Hat, json: any): Hat { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } const _color_ = json["color"]; if (_color_) { diff --git a/examples/authentication/package.json b/examples/authentication/package.json index 0c75c5ae..d58003c7 100644 --- a/examples/authentication/package.json +++ b/examples/authentication/package.json @@ -12,17 +12,17 @@ "twirpscript": "workspace:*" }, "devDependencies": { - "@babel/core": "^7.22.11", - "@babel/preset-env": "^7.22.14", - "@babel/preset-typescript": "^7.22.11", - "@types/jest": "^29.5.4", - "@types/node": "^20.5.7", - "@types/react-dom": "^18.2.7", - "babel-jest": "^29.6.4", - "jest": "^29.6.4", - "ts-loader": "^9.4.4", + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/preset-typescript": "^7.23.2", + "@types/jest": "^29.5.6", + "@types/node": "^20.8.8", + "@types/react-dom": "^18.2.14", + "babel-jest": "^29.7.0", + "jest": "^29.7.0", + "ts-loader": "^9.5.0", "typescript": "^5.2.2", - "webpack": "^5.88.2", + "webpack": "^5.89.0", "webpack-cli": "^5.1.4" } } diff --git a/examples/authentication/src/protos/authentication.pb.ts b/examples/authentication/src/protos/authentication.pb.ts index df34d388..364ef41a 100644 --- a/examples/authentication/src/protos/authentication.pb.ts +++ b/examples/authentication/src/protos/authentication.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this @@ -102,7 +102,10 @@ export const CurrentUser = { * Serializes CurrentUser to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return CurrentUser._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return CurrentUser._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -111,17 +114,18 @@ export const CurrentUser = { decode: function (bytes: ByteSource): CurrentUser { return CurrentUser._readMessage( CurrentUser.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes CurrentUser with all fields set to their default value. */ - initialize: function (): CurrentUser { + initialize: function (msg?: Partial): CurrentUser { return { username: "", token: "", + ...msg, }; }, @@ -130,8 +134,8 @@ export const CurrentUser = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.username) { writer.writeString(1, msg.username); } @@ -144,7 +148,10 @@ export const CurrentUser = { /** * @private */ - _readMessage: function (msg: CurrentUser, reader: BinaryReader): CurrentUser { + _readMessage: function ( + msg: CurrentUser, + reader: protoscript.BinaryReader, + ): CurrentUser { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -171,7 +178,10 @@ export const Credentials = { * Serializes Credentials to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Credentials._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Credentials._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** @@ -180,17 +190,18 @@ export const Credentials = { decode: function (bytes: ByteSource): Credentials { return Credentials._readMessage( Credentials.initialize(), - new BinaryReader(bytes), + new protoscript.BinaryReader(bytes), ); }, /** * Initializes Credentials with all fields set to their default value. */ - initialize: function (): Credentials { + initialize: function (msg?: Partial): Credentials { return { username: "", password: "", + ...msg, }; }, @@ -199,8 +210,8 @@ export const Credentials = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.username) { writer.writeString(1, msg.username); } @@ -213,7 +224,10 @@ export const Credentials = { /** * @private */ - _readMessage: function (msg: Credentials, reader: BinaryReader): Credentials { + _readMessage: function ( + msg: Credentials, + reader: protoscript.BinaryReader, + ): Credentials { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -260,10 +274,11 @@ export const CurrentUserJSON = { /** * Initializes CurrentUser with all fields set to their default value. */ - initialize: function (): CurrentUser { + initialize: function (msg?: Partial): CurrentUser { return { username: "", token: "", + ...msg, }; }, @@ -320,10 +335,11 @@ export const CredentialsJSON = { /** * Initializes Credentials with all fields set to their default value. */ - initialize: function (): Credentials { + initialize: function (msg?: Partial): Credentials { return { username: "", password: "", + ...msg, }; }, diff --git a/examples/authentication/src/protos/haberdasher.pb.ts b/examples/authentication/src/protos/haberdasher.pb.ts index 8b10d1c6..6e9f1969 100644 --- a/examples/authentication/src/protos/haberdasher.pb.ts +++ b/examples/authentication/src/protos/haberdasher.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this @@ -115,22 +115,29 @@ export const Size = { * Serializes Size to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Size._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Size._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Size from protobuf. */ decode: function (bytes: ByteSource): Size { - return Size._readMessage(Size.initialize(), new BinaryReader(bytes)); + return Size._readMessage( + Size.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Size with all fields set to their default value. */ - initialize: function (): Size { + initialize: function (msg?: Partial): Size { return { inches: 0, + ...msg, }; }, @@ -139,8 +146,8 @@ export const Size = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -150,7 +157,7 @@ export const Size = { /** * @private */ - _readMessage: function (msg: Size, reader: BinaryReader): Size { + _readMessage: function (msg: Size, reader: protoscript.BinaryReader): Size { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -173,24 +180,31 @@ export const Hat = { * Serializes Hat to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Hat._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Hat._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Hat from protobuf. */ decode: function (bytes: ByteSource): Hat { - return Hat._readMessage(Hat.initialize(), new BinaryReader(bytes)); + return Hat._readMessage( + Hat.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -199,8 +213,8 @@ export const Hat = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -216,7 +230,7 @@ export const Hat = { /** * @private */ - _readMessage: function (msg: Hat, reader: BinaryReader): Hat { + _readMessage: function (msg: Hat, reader: protoscript.BinaryReader): Hat { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -264,9 +278,10 @@ export const SizeJSON = { /** * Initializes Size with all fields set to their default value. */ - initialize: function (): Size { + initialize: function (msg?: Partial): Size { return { inches: 0, + ...msg, }; }, @@ -287,7 +302,7 @@ export const SizeJSON = { _readMessage: function (msg: Size, json: any): Size { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } return msg; }, @@ -311,11 +326,12 @@ export const HatJSON = { /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -342,7 +358,7 @@ export const HatJSON = { _readMessage: function (msg: Hat, json: any): Hat { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } const _color_ = json["color"]; if (_color_) { diff --git a/examples/aws-lambda/package.json b/examples/aws-lambda/package.json index 25770b54..a5b39b85 100644 --- a/examples/aws-lambda/package.json +++ b/examples/aws-lambda/package.json @@ -12,11 +12,11 @@ "@aws-cdk/aws-apigateway": "^1.204.0", "@aws-cdk/aws-lambda": "^1.204.0", "@aws-cdk/core": "1.204.0", - "@types/aws-lambda": "^8.10.119", - "@types/jest": "^29.5.4", - "@types/node": "20.5.7", - "aws-cdk": "^2.93.0", - "constructs": "^10.2.70", + "@types/aws-lambda": "^8.10.125", + "@types/jest": "^29.5.6", + "@types/node": "20.8.8", + "aws-cdk": "^2.102.0", + "constructs": "^10.3.0", "ts-node": "^10.9.1", "typescript": "~5.2.2" }, diff --git a/examples/aws-lambda/src/haberdasher.pb.ts b/examples/aws-lambda/src/haberdasher.pb.ts index 21d02822..60a9d7fd 100644 --- a/examples/aws-lambda/src/haberdasher.pb.ts +++ b/examples/aws-lambda/src/haberdasher.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this @@ -115,22 +115,29 @@ export const Size = { * Serializes Size to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Size._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Size._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Size from protobuf. */ decode: function (bytes: ByteSource): Size { - return Size._readMessage(Size.initialize(), new BinaryReader(bytes)); + return Size._readMessage( + Size.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Size with all fields set to their default value. */ - initialize: function (): Size { + initialize: function (msg?: Partial): Size { return { inches: 0, + ...msg, }; }, @@ -139,8 +146,8 @@ export const Size = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -150,7 +157,7 @@ export const Size = { /** * @private */ - _readMessage: function (msg: Size, reader: BinaryReader): Size { + _readMessage: function (msg: Size, reader: protoscript.BinaryReader): Size { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -173,24 +180,31 @@ export const Hat = { * Serializes Hat to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Hat._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Hat._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Hat from protobuf. */ decode: function (bytes: ByteSource): Hat { - return Hat._readMessage(Hat.initialize(), new BinaryReader(bytes)); + return Hat._readMessage( + Hat.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -199,8 +213,8 @@ export const Hat = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -216,7 +230,7 @@ export const Hat = { /** * @private */ - _readMessage: function (msg: Hat, reader: BinaryReader): Hat { + _readMessage: function (msg: Hat, reader: protoscript.BinaryReader): Hat { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -264,9 +278,10 @@ export const SizeJSON = { /** * Initializes Size with all fields set to their default value. */ - initialize: function (): Size { + initialize: function (msg?: Partial): Size { return { inches: 0, + ...msg, }; }, @@ -287,7 +302,7 @@ export const SizeJSON = { _readMessage: function (msg: Size, json: any): Size { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } return msg; }, @@ -311,11 +326,12 @@ export const HatJSON = { /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -342,7 +358,7 @@ export const HatJSON = { _readMessage: function (msg: Hat, json: any): Hat { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } const _color_ = json["color"]; if (_color_) { diff --git a/examples/buf/src/A.pb.ts b/examples/buf/src/A.pb.ts index 82df31c0..293e2969 100644 --- a/examples/buf/src/A.pb.ts +++ b/examples/buf/src/A.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; //========================================// // Types // @@ -22,22 +22,29 @@ export const Foo = { * Serializes Foo to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Foo._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Foo._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Foo from protobuf. */ decode: function (bytes: ByteSource): Foo { - return Foo._readMessage(Foo.initialize(), new BinaryReader(bytes)); + return Foo._readMessage( + Foo.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Foo with all fields set to their default value. */ - initialize: function (): Foo { + initialize: function (msg?: Partial): Foo { return { name: "", + ...msg, }; }, @@ -46,8 +53,8 @@ export const Foo = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.name) { writer.writeString(1, msg.name); } @@ -57,7 +64,7 @@ export const Foo = { /** * @private */ - _readMessage: function (msg: Foo, reader: BinaryReader): Foo { + _readMessage: function (msg: Foo, reader: protoscript.BinaryReader): Foo { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -97,9 +104,10 @@ export const FooJSON = { /** * Initializes Foo with all fields set to their default value. */ - initialize: function (): Foo { + initialize: function (msg?: Partial): Foo { return { name: "", + ...msg, }; }, diff --git a/examples/buf/src/B.pb.ts b/examples/buf/src/B.pb.ts index ba4951b7..cb79f75b 100644 --- a/examples/buf/src/B.pb.ts +++ b/examples/buf/src/B.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import * as A from "./A.pb"; @@ -24,22 +24,29 @@ export const Bar = { * Serializes Bar to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Bar._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Bar._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Bar from protobuf. */ decode: function (bytes: ByteSource): Bar { - return Bar._readMessage(Bar.initialize(), new BinaryReader(bytes)); + return Bar._readMessage( + Bar.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Bar with all fields set to their default value. */ - initialize: function (): Bar { + initialize: function (msg?: Partial): Bar { return { foo: A.Foo.initialize(), + ...msg, }; }, @@ -48,8 +55,8 @@ export const Bar = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.foo) { writer.writeMessage(1, msg.foo, A.Foo._writeMessage); } @@ -59,7 +66,7 @@ export const Bar = { /** * @private */ - _readMessage: function (msg: Bar, reader: BinaryReader): Bar { + _readMessage: function (msg: Bar, reader: protoscript.BinaryReader): Bar { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -99,9 +106,10 @@ export const BarJSON = { /** * Initializes Bar with all fields set to their default value. */ - initialize: function (): Bar { + initialize: function (msg?: Partial): Bar { return { foo: A.FooJSON.initialize(), + ...msg, }; }, diff --git a/examples/config-dest/out/A.pb.ts b/examples/config-dest/out/A.pb.ts index 82df31c0..293e2969 100644 --- a/examples/config-dest/out/A.pb.ts +++ b/examples/config-dest/out/A.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; //========================================// // Types // @@ -22,22 +22,29 @@ export const Foo = { * Serializes Foo to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Foo._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Foo._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Foo from protobuf. */ decode: function (bytes: ByteSource): Foo { - return Foo._readMessage(Foo.initialize(), new BinaryReader(bytes)); + return Foo._readMessage( + Foo.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Foo with all fields set to their default value. */ - initialize: function (): Foo { + initialize: function (msg?: Partial): Foo { return { name: "", + ...msg, }; }, @@ -46,8 +53,8 @@ export const Foo = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.name) { writer.writeString(1, msg.name); } @@ -57,7 +64,7 @@ export const Foo = { /** * @private */ - _readMessage: function (msg: Foo, reader: BinaryReader): Foo { + _readMessage: function (msg: Foo, reader: protoscript.BinaryReader): Foo { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -97,9 +104,10 @@ export const FooJSON = { /** * Initializes Foo with all fields set to their default value. */ - initialize: function (): Foo { + initialize: function (msg?: Partial): Foo { return { name: "", + ...msg, }; }, diff --git a/examples/config-dest/out/B.pb.ts b/examples/config-dest/out/B.pb.ts index ba4951b7..cb79f75b 100644 --- a/examples/config-dest/out/B.pb.ts +++ b/examples/config-dest/out/B.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import * as A from "./A.pb"; @@ -24,22 +24,29 @@ export const Bar = { * Serializes Bar to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Bar._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Bar._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Bar from protobuf. */ decode: function (bytes: ByteSource): Bar { - return Bar._readMessage(Bar.initialize(), new BinaryReader(bytes)); + return Bar._readMessage( + Bar.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Bar with all fields set to their default value. */ - initialize: function (): Bar { + initialize: function (msg?: Partial): Bar { return { foo: A.Foo.initialize(), + ...msg, }; }, @@ -48,8 +55,8 @@ export const Bar = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.foo) { writer.writeMessage(1, msg.foo, A.Foo._writeMessage); } @@ -59,7 +66,7 @@ export const Bar = { /** * @private */ - _readMessage: function (msg: Bar, reader: BinaryReader): Bar { + _readMessage: function (msg: Bar, reader: protoscript.BinaryReader): Bar { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -99,9 +106,10 @@ export const BarJSON = { /** * Initializes Bar with all fields set to their default value. */ - initialize: function (): Bar { + initialize: function (msg?: Partial): Bar { return { foo: A.FooJSON.initialize(), + ...msg, }; }, diff --git a/examples/config-exclude/src/foo/A.pb.ts b/examples/config-exclude/src/foo/A.pb.ts index d350cee7..59e2de49 100644 --- a/examples/config-exclude/src/foo/A.pb.ts +++ b/examples/config-exclude/src/foo/A.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; //========================================// // Types // @@ -22,22 +22,29 @@ export const Foo = { * Serializes Foo to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Foo._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Foo._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Foo from protobuf. */ decode: function (bytes: ByteSource): Foo { - return Foo._readMessage(Foo.initialize(), new BinaryReader(bytes)); + return Foo._readMessage( + Foo.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Foo with all fields set to their default value. */ - initialize: function (): Foo { + initialize: function (msg?: Partial): Foo { return { name: "", + ...msg, }; }, @@ -46,8 +53,8 @@ export const Foo = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.name) { writer.writeString(1, msg.name); } @@ -57,7 +64,7 @@ export const Foo = { /** * @private */ - _readMessage: function (msg: Foo, reader: BinaryReader): Foo { + _readMessage: function (msg: Foo, reader: protoscript.BinaryReader): Foo { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -97,9 +104,10 @@ export const FooJSON = { /** * Initializes Foo with all fields set to their default value. */ - initialize: function (): Foo { + initialize: function (msg?: Partial): Foo { return { name: "", + ...msg, }; }, diff --git a/examples/config-json/src/A.pb.ts b/examples/config-json/src/A.pb.ts index a0f457af..3f5f58e8 100644 --- a/examples/config-json/src/A.pb.ts +++ b/examples/config-json/src/A.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; //========================================// // Types // @@ -23,23 +23,30 @@ export const Foo = { * Serializes Foo to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Foo._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Foo._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Foo from protobuf. */ decode: function (bytes: ByteSource): Foo { - return Foo._readMessage(Foo.initialize(), new BinaryReader(bytes)); + return Foo._readMessage( + Foo.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Foo with all fields set to their default value. */ - initialize: function (): Foo { + initialize: function (msg?: Partial): Foo { return { baz: 0, fooBars: [], + ...msg, }; }, @@ -48,8 +55,8 @@ export const Foo = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.baz) { writer.writeInt32(1, msg.baz); } @@ -62,7 +69,7 @@ export const Foo = { /** * @private */ - _readMessage: function (msg: Foo, reader: BinaryReader): Foo { + _readMessage: function (msg: Foo, reader: protoscript.BinaryReader): Foo { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -106,10 +113,11 @@ export const FooJSON = { /** * Initializes Foo with all fields set to their default value. */ - initialize: function (): Foo { + initialize: function (msg?: Partial): Foo { return { baz: 0, fooBars: [], + ...msg, }; }, @@ -129,7 +137,7 @@ export const FooJSON = { _readMessage: function (msg: Foo, json: any): Foo { const _baz_ = json["baz"]; if (_baz_) { - msg.baz = _baz_; + msg.baz = protoscript.parseNumber(_baz_); } const _fooBars_ = json["fooBars"] ?? json["foo_bars"]; if (_fooBars_) { diff --git a/examples/config-root/src/A.pb.ts b/examples/config-root/src/A.pb.ts index 82df31c0..293e2969 100644 --- a/examples/config-root/src/A.pb.ts +++ b/examples/config-root/src/A.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; //========================================// // Types // @@ -22,22 +22,29 @@ export const Foo = { * Serializes Foo to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Foo._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Foo._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Foo from protobuf. */ decode: function (bytes: ByteSource): Foo { - return Foo._readMessage(Foo.initialize(), new BinaryReader(bytes)); + return Foo._readMessage( + Foo.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Foo with all fields set to their default value. */ - initialize: function (): Foo { + initialize: function (msg?: Partial): Foo { return { name: "", + ...msg, }; }, @@ -46,8 +53,8 @@ export const Foo = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.name) { writer.writeString(1, msg.name); } @@ -57,7 +64,7 @@ export const Foo = { /** * @private */ - _readMessage: function (msg: Foo, reader: BinaryReader): Foo { + _readMessage: function (msg: Foo, reader: protoscript.BinaryReader): Foo { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -97,9 +104,10 @@ export const FooJSON = { /** * Initializes Foo with all fields set to their default value. */ - initialize: function (): Foo { + initialize: function (msg?: Partial): Foo { return { name: "", + ...msg, }; }, diff --git a/examples/config-root/src/B.pb.ts b/examples/config-root/src/B.pb.ts index ba4951b7..cb79f75b 100644 --- a/examples/config-root/src/B.pb.ts +++ b/examples/config-root/src/B.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import * as A from "./A.pb"; @@ -24,22 +24,29 @@ export const Bar = { * Serializes Bar to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Bar._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Bar._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Bar from protobuf. */ decode: function (bytes: ByteSource): Bar { - return Bar._readMessage(Bar.initialize(), new BinaryReader(bytes)); + return Bar._readMessage( + Bar.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Bar with all fields set to their default value. */ - initialize: function (): Bar { + initialize: function (msg?: Partial): Bar { return { foo: A.Foo.initialize(), + ...msg, }; }, @@ -48,8 +55,8 @@ export const Bar = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.foo) { writer.writeMessage(1, msg.foo, A.Foo._writeMessage); } @@ -59,7 +66,7 @@ export const Bar = { /** * @private */ - _readMessage: function (msg: Bar, reader: BinaryReader): Bar { + _readMessage: function (msg: Bar, reader: protoscript.BinaryReader): Bar { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -99,9 +106,10 @@ export const BarJSON = { /** * Initializes Bar with all fields set to their default value. */ - initialize: function (): Bar { + initialize: function (msg?: Partial): Bar { return { foo: A.FooJSON.initialize(), + ...msg, }; }, diff --git a/examples/javascript-fullstack/package.json b/examples/javascript-fullstack/package.json index 0ec57186..64f0acfb 100644 --- a/examples/javascript-fullstack/package.json +++ b/examples/javascript-fullstack/package.json @@ -12,14 +12,14 @@ "twirpscript": "workspace:*" }, "devDependencies": { - "@babel/core": "^7.22.11", - "@babel/preset-env": "^7.22.14", - "@babel/preset-react": "^7.22.5", - "babel-jest": "^29.6.4", + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/preset-react": "^7.22.15", + "babel-jest": "^29.7.0", "babel-loader": "^9.1.3", - "jest": "^29.6.4", + "jest": "^29.7.0", "typescript": "^5.2.2", - "webpack": "^5.88.2", + "webpack": "^5.89.0", "webpack-cli": "^5.1.4" } } diff --git a/examples/javascript-fullstack/src/protos/haberdasher.pb.js b/examples/javascript-fullstack/src/protos/haberdasher.pb.js index b4a257e7..bdd5cf81 100644 --- a/examples/javascript-fullstack/src/protos/haberdasher.pb.js +++ b/examples/javascript-fullstack/src/protos/haberdasher.pb.js @@ -2,7 +2,7 @@ // Source: src/protos/haberdasher.proto /* eslint-disable */ -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this @@ -64,22 +64,29 @@ export const Size = { * Serializes Size to protobuf. */ encode: function (msg) { - return Size._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Size._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Size from protobuf. */ decode: function (bytes) { - return Size._readMessage(Size.initialize(), new BinaryReader(bytes)); + return Size._readMessage( + Size.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Size with all fields set to their default value. */ - initialize: function () { + initialize: function (msg) { return { inches: 0, + ...msg, }; }, @@ -119,24 +126,31 @@ export const Hat = { * Serializes Hat to protobuf. */ encode: function (msg) { - return Hat._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Hat._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Hat from protobuf. */ decode: function (bytes) { - return Hat._readMessage(Hat.initialize(), new BinaryReader(bytes)); + return Hat._readMessage( + Hat.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Hat with all fields set to their default value. */ - initialize: function () { + initialize: function (msg) { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -207,9 +221,10 @@ export const SizeJSON = { /** * Initializes Size with all fields set to their default value. */ - initialize: function () { + initialize: function (msg) { return { inches: 0, + ...msg, }; }, @@ -230,7 +245,7 @@ export const SizeJSON = { _readMessage: function (msg, json) { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } return msg; }, @@ -254,11 +269,12 @@ export const HatJSON = { /** * Initializes Hat with all fields set to their default value. */ - initialize: function () { + initialize: function (msg) { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -285,7 +301,7 @@ export const HatJSON = { _readMessage: function (msg, json) { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } const _color_ = json["color"]; if (_color_) { diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index cc5e5386..35ce8510 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -10,17 +10,17 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "next": "13.4.19", + "next": "13.5.6", "react": "18.2.0", "react-dom": "18.2.0", "twirpscript": "workspace:*" }, "devDependencies": { - "@types/node": "20.5.7", - "@types/react": "18.2.21", - "@types/react-dom": "18.2.7", - "eslint": "8.48.0", - "eslint-config-next": "13.4.19", + "@types/node": "20.8.8", + "@types/react": "18.2.31", + "@types/react-dom": "18.2.14", + "eslint": "8.52.0", + "eslint-config-next": "13.5.6", "typescript": "5.2.2" } } diff --git a/examples/nextjs/src/haberdasher.pb.ts b/examples/nextjs/src/haberdasher.pb.ts index fd7799d7..ab6a853d 100644 --- a/examples/nextjs/src/haberdasher.pb.ts +++ b/examples/nextjs/src/haberdasher.pb.ts @@ -3,14 +3,13 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this // file needs to be regenerated by running `npx twirpscript`. export { MIN_SUPPORTED_VERSION_0_0_56 } from "twirpscript"; import type { ClientConfiguration } from "twirpscript"; -import * as protoscript from "protoscript"; //========================================// // Types // @@ -154,22 +153,29 @@ export const Size = { * Serializes Size to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Size._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Size._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Size from protobuf. */ decode: function (bytes: ByteSource): Size { - return Size._readMessage(Size.initialize(), new BinaryReader(bytes)); + return Size._readMessage( + Size.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Size with all fields set to their default value. */ - initialize: function (): Size { + initialize: function (msg?: Partial): Size { return { inches: 0, + ...msg, }; }, @@ -178,8 +184,8 @@ export const Size = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -189,7 +195,7 @@ export const Size = { /** * @private */ - _readMessage: function (msg: Size, reader: BinaryReader): Size { + _readMessage: function (msg: Size, reader: protoscript.BinaryReader): Size { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -212,24 +218,31 @@ export const Hat = { * Serializes Hat to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Hat._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Hat._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Hat from protobuf. */ decode: function (bytes: ByteSource): Hat { - return Hat._readMessage(Hat.initialize(), new BinaryReader(bytes)); + return Hat._readMessage( + Hat.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -238,8 +251,8 @@ export const Hat = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -255,7 +268,7 @@ export const Hat = { /** * @private */ - _readMessage: function (msg: Hat, reader: BinaryReader): Hat { + _readMessage: function (msg: Hat, reader: protoscript.BinaryReader): Hat { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -286,22 +299,29 @@ export const HatList = { * Serializes HatList to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return HatList._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return HatList._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes HatList from protobuf. */ decode: function (bytes: ByteSource): HatList { - return HatList._readMessage(HatList.initialize(), new BinaryReader(bytes)); + return HatList._readMessage( + HatList.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes HatList with all fields set to their default value. */ - initialize: function (): HatList { + initialize: function (msg?: Partial): HatList { return { hats: [], + ...msg, }; }, @@ -310,8 +330,8 @@ export const HatList = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.hats?.length) { writer.writeRepeatedMessage(1, msg.hats as any, Hat._writeMessage); } @@ -321,7 +341,10 @@ export const HatList = { /** * @private */ - _readMessage: function (msg: HatList, reader: BinaryReader): HatList { + _readMessage: function ( + msg: HatList, + reader: protoscript.BinaryReader, + ): HatList { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -363,9 +386,10 @@ export const SizeJSON = { /** * Initializes Size with all fields set to their default value. */ - initialize: function (): Size { + initialize: function (msg?: Partial): Size { return { inches: 0, + ...msg, }; }, @@ -386,7 +410,7 @@ export const SizeJSON = { _readMessage: function (msg: Size, json: any): Size { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } return msg; }, @@ -410,11 +434,12 @@ export const HatJSON = { /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -441,7 +466,7 @@ export const HatJSON = { _readMessage: function (msg: Hat, json: any): Hat { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } const _color_ = json["color"]; if (_color_) { @@ -473,9 +498,10 @@ export const HatListJSON = { /** * Initializes HatList with all fields set to their default value. */ - initialize: function (): HatList { + initialize: function (msg?: Partial): HatList { return { hats: [], + ...msg, }; }, diff --git a/examples/server-to-server/package.json b/examples/server-to-server/package.json index 24670246..1aa6bee0 100644 --- a/examples/server-to-server/package.json +++ b/examples/server-to-server/package.json @@ -10,13 +10,13 @@ "twirpscript": "workspace:*" }, "devDependencies": { - "@babel/core": "^7.22.11", - "@babel/preset-env": "^7.22.14", - "@babel/preset-typescript": "^7.22.11", - "@types/jest": "^29.5.4", - "@types/node": "^20.5.7", - "babel-jest": "^29.6.4", - "jest": "^29.6.4", + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/preset-typescript": "^7.23.2", + "@types/jest": "^29.5.6", + "@types/node": "^20.8.8", + "babel-jest": "^29.7.0", + "jest": "^29.7.0", "typescript": "^5.2.2" } } diff --git a/examples/server-to-server/src/protos/haberdasher.pb.ts b/examples/server-to-server/src/protos/haberdasher.pb.ts index 8b10d1c6..6e9f1969 100644 --- a/examples/server-to-server/src/protos/haberdasher.pb.ts +++ b/examples/server-to-server/src/protos/haberdasher.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this @@ -115,22 +115,29 @@ export const Size = { * Serializes Size to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Size._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Size._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Size from protobuf. */ decode: function (bytes: ByteSource): Size { - return Size._readMessage(Size.initialize(), new BinaryReader(bytes)); + return Size._readMessage( + Size.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Size with all fields set to their default value. */ - initialize: function (): Size { + initialize: function (msg?: Partial): Size { return { inches: 0, + ...msg, }; }, @@ -139,8 +146,8 @@ export const Size = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -150,7 +157,7 @@ export const Size = { /** * @private */ - _readMessage: function (msg: Size, reader: BinaryReader): Size { + _readMessage: function (msg: Size, reader: protoscript.BinaryReader): Size { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -173,24 +180,31 @@ export const Hat = { * Serializes Hat to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Hat._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Hat._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Hat from protobuf. */ decode: function (bytes: ByteSource): Hat { - return Hat._readMessage(Hat.initialize(), new BinaryReader(bytes)); + return Hat._readMessage( + Hat.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -199,8 +213,8 @@ export const Hat = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -216,7 +230,7 @@ export const Hat = { /** * @private */ - _readMessage: function (msg: Hat, reader: BinaryReader): Hat { + _readMessage: function (msg: Hat, reader: protoscript.BinaryReader): Hat { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -264,9 +278,10 @@ export const SizeJSON = { /** * Initializes Size with all fields set to their default value. */ - initialize: function (): Size { + initialize: function (msg?: Partial): Size { return { inches: 0, + ...msg, }; }, @@ -287,7 +302,7 @@ export const SizeJSON = { _readMessage: function (msg: Size, json: any): Size { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } return msg; }, @@ -311,11 +326,12 @@ export const HatJSON = { /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -342,7 +358,7 @@ export const HatJSON = { _readMessage: function (msg: Hat, json: any): Hat { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } const _color_ = json["color"]; if (_color_) { diff --git a/examples/typescript-fullstack/package.json b/examples/typescript-fullstack/package.json index 4eec6e5e..4d806c26 100644 --- a/examples/typescript-fullstack/package.json +++ b/examples/typescript-fullstack/package.json @@ -12,17 +12,17 @@ "twirpscript": "workspace:*" }, "devDependencies": { - "@babel/core": "^7.22.11", - "@babel/preset-env": "^7.22.14", - "@babel/preset-typescript": "^7.22.11", - "@types/jest": "^29.5.4", - "@types/node": "^20.5.7", - "@types/react-dom": "^18.2.7", - "babel-jest": "^29.6.4", - "jest": "^29.6.4", - "ts-loader": "^9.4.4", + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/preset-typescript": "^7.23.2", + "@types/jest": "^29.5.6", + "@types/node": "^20.8.8", + "@types/react-dom": "^18.2.14", + "babel-jest": "^29.7.0", + "jest": "^29.7.0", + "ts-loader": "^9.5.0", "typescript": "^5.2.2", - "webpack": "^5.88.2", + "webpack": "^5.89.0", "webpack-cli": "^5.1.4" } } diff --git a/examples/typescript-fullstack/src/protos/haberdasher.pb.ts b/examples/typescript-fullstack/src/protos/haberdasher.pb.ts index 4934c5fa..e6484e77 100644 --- a/examples/typescript-fullstack/src/protos/haberdasher.pb.ts +++ b/examples/typescript-fullstack/src/protos/haberdasher.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; import { JSONrequest, PBrequest } from "twirpscript"; // This is the minimum version supported by the current runtime. // If this line fails typechecking, breaking changes have been introduced and this @@ -106,24 +106,31 @@ export const Hat = { * Serializes Hat to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Hat._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Hat._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Hat from protobuf. */ decode: function (bytes: ByteSource): Hat { - return Hat._readMessage(Hat.initialize(), new BinaryReader(bytes)); + return Hat._readMessage( + Hat.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -132,8 +139,8 @@ export const Hat = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -149,7 +156,7 @@ export const Hat = { /** * @private */ - _readMessage: function (msg: Hat, reader: BinaryReader): Hat { + _readMessage: function (msg: Hat, reader: protoscript.BinaryReader): Hat { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -197,11 +204,12 @@ export const HatJSON = { /** * Initializes Hat with all fields set to their default value. */ - initialize: function (): Hat { + initialize: function (msg?: Partial): Hat { return { inches: 0, color: "", name: "", + ...msg, }; }, @@ -228,7 +236,7 @@ export const HatJSON = { _readMessage: function (msg: Hat, json: any): Hat { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } const _color_ = json["color"]; if (_color_) { diff --git a/examples/typescript-fullstack/src/protos/hat.pb.ts b/examples/typescript-fullstack/src/protos/hat.pb.ts index 05301c64..21223ebf 100644 --- a/examples/typescript-fullstack/src/protos/hat.pb.ts +++ b/examples/typescript-fullstack/src/protos/hat.pb.ts @@ -3,7 +3,7 @@ /* eslint-disable */ import type { ByteSource, PartialDeep } from "protoscript"; -import { BinaryReader, BinaryWriter } from "protoscript"; +import * as protoscript from "protoscript"; //========================================// // Types // @@ -28,22 +28,29 @@ export const Size = { * Serializes Size to protobuf. */ encode: function (msg: PartialDeep): Uint8Array { - return Size._writeMessage(msg, new BinaryWriter()).getResultBuffer(); + return Size._writeMessage( + msg, + new protoscript.BinaryWriter(), + ).getResultBuffer(); }, /** * Deserializes Size from protobuf. */ decode: function (bytes: ByteSource): Size { - return Size._readMessage(Size.initialize(), new BinaryReader(bytes)); + return Size._readMessage( + Size.initialize(), + new protoscript.BinaryReader(bytes), + ); }, /** * Initializes Size with all fields set to their default value. */ - initialize: function (): Size { + initialize: function (msg?: Partial): Size { return { inches: 0, + ...msg, }; }, @@ -52,8 +59,8 @@ export const Size = { */ _writeMessage: function ( msg: PartialDeep, - writer: BinaryWriter, - ): BinaryWriter { + writer: protoscript.BinaryWriter, + ): protoscript.BinaryWriter { if (msg.inches) { writer.writeInt32(1, msg.inches); } @@ -63,7 +70,7 @@ export const Size = { /** * @private */ - _readMessage: function (msg: Size, reader: BinaryReader): Size { + _readMessage: function (msg: Size, reader: protoscript.BinaryReader): Size { while (reader.nextField()) { const field = reader.getFieldNumber(); switch (field) { @@ -103,9 +110,10 @@ export const SizeJSON = { /** * Initializes Size with all fields set to their default value. */ - initialize: function (): Size { + initialize: function (msg?: Partial): Size { return { inches: 0, + ...msg, }; }, @@ -126,7 +134,7 @@ export const SizeJSON = { _readMessage: function (msg: Size, json: any): Size { const _inches_ = json["inches"]; if (_inches_) { - msg.inches = _inches_; + msg.inches = protoscript.parseNumber(_inches_); } return msg; }, diff --git a/package.json b/package.json index 74b062db..298c8fc5 100644 --- a/package.json +++ b/package.json @@ -25,26 +25,26 @@ }, "sideEffects": false, "devDependencies": { - "@babel/preset-env": "^7.22.14", - "@babel/preset-typescript": "^7.22.11", - "@types/google-protobuf": "^3.15.6", - "@types/jest": "^29.5.4", - "@types/node": "^20.5.7", + "@babel/preset-env": "^7.23.2", + "@babel/preset-typescript": "^7.23.2", + "@types/google-protobuf": "^3.15.9", + "@types/jest": "^29.5.6", + "@types/node": "^20.8.8", "@types/prettier": "^3.0.0", - "@types/react": "^18.2.21", - "@typescript-eslint/eslint-plugin": "^6.5.0", - "@typescript-eslint/parser": "^6.5.0", + "@types/react": "^18.2.31", + "@typescript-eslint/eslint-plugin": "^6.9.0", + "@typescript-eslint/parser": "^6.9.0", "babel-loader": "^9.1.3", "codecov": "^3.8.3", - "esbuild": "^0.19.2", - "eslint": "^8.48.0", + "esbuild": "^0.19.5", + "eslint": "^8.52.0", "eslint-config-prettier": "^9.0.0", "google-protobuf": "^3.21.2", "husky": "^8.0.3", - "jest": "^29.6.4", + "jest": "^29.7.0", "prettier": "^3.0.3", "prettier-package-json": "^2.8.0", - "protoscript": "0.0.18", + "protoscript": "0.0.20", "typescript": "^5.2.2" }, "packageManager": "pnpm@8.6.9" diff --git a/packages/twirpscript/package.json b/packages/twirpscript/package.json index 6d240336..9128c60c 100644 --- a/packages/twirpscript/package.json +++ b/packages/twirpscript/package.json @@ -1,6 +1,6 @@ { "name": "twirpscript", - "version": "0.0.68", + "version": "0.0.69", "description": "Protobuf RPC framework for JavaScript and TypeScript", "license": "MIT", "author": "Tate ", @@ -25,7 +25,7 @@ "sideEffects": false, "types": "dist/index.d.ts", "dependencies": { - "protoscript": "0.0.18" + "protoscript": "0.0.20" }, "keywords": [ "protobuf", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 257e1766..ef200498 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,54 +1,55 @@ -lockfileVersion: "6.0" +lockfileVersion: '6.0' settings: autoInstallPeers: true excludeLinksFromLockfile: false importers: + .: devDependencies: - "@babel/preset-env": - specifier: ^7.22.14 - version: 7.22.14(@babel/core@7.22.11) - "@babel/preset-typescript": - specifier: ^7.22.11 - version: 7.22.11(@babel/core@7.22.11) - "@types/google-protobuf": - specifier: ^3.15.6 - version: 3.15.6 - "@types/jest": - specifier: ^29.5.4 - version: 29.5.4 - "@types/node": - specifier: ^20.5.7 - version: 20.5.7 - "@types/prettier": + '@babel/preset-env': + specifier: ^7.23.2 + version: 7.23.2(@babel/core@7.23.2) + '@babel/preset-typescript': + specifier: ^7.23.2 + version: 7.23.2(@babel/core@7.23.2) + '@types/google-protobuf': + specifier: ^3.15.9 + version: 3.15.9 + '@types/jest': + specifier: ^29.5.6 + version: 29.5.6 + '@types/node': + specifier: ^20.8.8 + version: 20.8.8 + '@types/prettier': specifier: ^3.0.0 version: 3.0.0 - "@types/react": - specifier: ^18.2.21 - version: 18.2.21 - "@typescript-eslint/eslint-plugin": - specifier: ^6.5.0 - version: 6.5.0(@typescript-eslint/parser@6.5.0)(eslint@8.48.0)(typescript@5.2.2) - "@typescript-eslint/parser": - specifier: ^6.5.0 - version: 6.5.0(eslint@8.48.0)(typescript@5.2.2) + '@types/react': + specifier: ^18.2.31 + version: 18.2.31 + '@typescript-eslint/eslint-plugin': + specifier: ^6.9.0 + version: 6.9.0(@typescript-eslint/parser@6.9.0)(eslint@8.52.0)(typescript@5.2.2) + '@typescript-eslint/parser': + specifier: ^6.9.0 + version: 6.9.0(eslint@8.52.0)(typescript@5.2.2) babel-loader: specifier: ^9.1.3 - version: 9.1.3(@babel/core@7.22.11)(webpack@5.88.2) + version: 9.1.3(@babel/core@7.23.2)(webpack@5.89.0) codecov: specifier: ^3.8.3 version: 3.8.3 esbuild: - specifier: ^0.19.2 - version: 0.19.2 + specifier: ^0.19.5 + version: 0.19.5 eslint: - specifier: ^8.48.0 - version: 8.48.0 + specifier: ^8.52.0 + version: 8.52.0 eslint-config-prettier: specifier: ^9.0.0 - version: 9.0.0(eslint@8.48.0) + version: 9.0.0(eslint@8.52.0) google-protobuf: specifier: ^3.21.2 version: 3.21.2 @@ -56,8 +57,8 @@ importers: specifier: ^8.0.3 version: 8.0.3 jest: - specifier: ^29.6.4 - version: 29.6.4(@types/node@20.5.7) + specifier: ^29.7.0 + version: 29.7.0(@types/node@20.8.8) prettier: specifier: ^3.0.3 version: 3.0.3 @@ -65,8 +66,8 @@ importers: specifier: ^2.8.0 version: 2.8.0 protoscript: - specifier: 0.0.18 - version: 0.0.18 + specifier: 0.0.20 + version: 0.0.20 typescript: specifier: ^5.2.2 version: 5.2.2 @@ -77,9 +78,9 @@ importers: specifier: workspace:* version: link:../../packages/twirpscript devDependencies: - "@types/jest": - specifier: ^29.5.4 - version: 29.5.4 + '@types/jest': + specifier: ^29.5.6 + version: 29.5.6 typescript: specifier: ^5.2.2 version: 5.2.2 @@ -106,42 +107,42 @@ importers: specifier: workspace:* version: link:../../packages/twirpscript devDependencies: - "@babel/core": - specifier: ^7.22.11 - version: 7.22.11 - "@babel/preset-env": - specifier: ^7.22.14 - version: 7.22.14(@babel/core@7.22.11) - "@babel/preset-typescript": - specifier: ^7.22.11 - version: 7.22.11(@babel/core@7.22.11) - "@types/jest": - specifier: ^29.5.4 - version: 29.5.4 - "@types/node": - specifier: ^20.5.7 - version: 20.5.7 - "@types/react-dom": - specifier: ^18.2.7 - version: 18.2.7 + '@babel/core': + specifier: ^7.23.2 + version: 7.23.2 + '@babel/preset-env': + specifier: ^7.23.2 + version: 7.23.2(@babel/core@7.23.2) + '@babel/preset-typescript': + specifier: ^7.23.2 + version: 7.23.2(@babel/core@7.23.2) + '@types/jest': + specifier: ^29.5.6 + version: 29.5.6 + '@types/node': + specifier: ^20.8.8 + version: 20.8.8 + '@types/react-dom': + specifier: ^18.2.14 + version: 18.2.14 babel-jest: - specifier: ^29.6.4 - version: 29.6.4(@babel/core@7.22.11) + specifier: ^29.7.0 + version: 29.7.0(@babel/core@7.23.2) jest: - specifier: ^29.6.4 - version: 29.6.4(@types/node@20.5.7) + specifier: ^29.7.0 + version: 29.7.0(@types/node@20.8.8) ts-loader: - specifier: ^9.4.4 - version: 9.4.4(typescript@5.2.2)(webpack@5.88.2) + specifier: ^9.5.0 + version: 9.5.0(typescript@5.2.2)(webpack@5.89.0) typescript: specifier: ^5.2.2 version: 5.2.2 webpack: - specifier: ^5.88.2 - version: 5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4) + specifier: ^5.89.0 + version: 5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4) webpack-cli: specifier: ^5.1.4 - version: 5.1.4(webpack@5.88.2) + version: 5.1.4(webpack@5.89.0) examples/aws-lambda: dependencies: @@ -149,33 +150,33 @@ importers: specifier: workspace:* version: link:../../packages/twirpscript devDependencies: - "@aws-cdk/aws-apigateway": + '@aws-cdk/aws-apigateway': specifier: ^1.204.0 - version: 1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-cognito@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-elasticloadbalancingv2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-stepfunctions@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-lambda": + version: 1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-cognito@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-elasticloadbalancingv2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-stepfunctions@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-lambda': specifier: ^1.204.0 - version: 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": + version: 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': specifier: 1.204.0 - version: 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@types/aws-lambda": - specifier: ^8.10.119 - version: 8.10.119 - "@types/jest": - specifier: ^29.5.4 - version: 29.5.4 - "@types/node": - specifier: 20.5.7 - version: 20.5.7 + version: 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@types/aws-lambda': + specifier: ^8.10.125 + version: 8.10.125 + '@types/jest': + specifier: ^29.5.6 + version: 29.5.6 + '@types/node': + specifier: 20.8.8 + version: 20.8.8 aws-cdk: - specifier: ^2.93.0 - version: 2.93.0 + specifier: ^2.102.0 + version: 2.102.0 constructs: - specifier: ^10.2.70 - version: 10.2.70 + specifier: ^10.3.0 + version: 10.3.0 ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@20.5.7)(typescript@5.2.2) + version: 10.9.1(@types/node@20.8.8)(typescript@5.2.2) typescript: specifier: ~5.2.2 version: 5.2.2 @@ -252,39 +253,39 @@ importers: specifier: workspace:* version: link:../../packages/twirpscript devDependencies: - "@babel/core": - specifier: ^7.22.11 - version: 7.22.11 - "@babel/preset-env": - specifier: ^7.22.14 - version: 7.22.14(@babel/core@7.22.11) - "@babel/preset-react": - specifier: ^7.22.5 - version: 7.22.5(@babel/core@7.22.11) + '@babel/core': + specifier: ^7.23.2 + version: 7.23.2 + '@babel/preset-env': + specifier: ^7.23.2 + version: 7.23.2(@babel/core@7.23.2) + '@babel/preset-react': + specifier: ^7.22.15 + version: 7.22.15(@babel/core@7.23.2) babel-jest: - specifier: ^29.6.4 - version: 29.6.4(@babel/core@7.22.11) + specifier: ^29.7.0 + version: 29.7.0(@babel/core@7.23.2) babel-loader: specifier: ^9.1.3 - version: 9.1.3(@babel/core@7.22.11)(webpack@5.88.2) + version: 9.1.3(@babel/core@7.23.2)(webpack@5.89.0) jest: - specifier: ^29.6.4 - version: 29.6.4(@types/node@20.5.7) + specifier: ^29.7.0 + version: 29.7.0(@types/node@20.8.8) typescript: specifier: ^5.2.2 version: 5.2.2 webpack: - specifier: ^5.88.2 - version: 5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4) + specifier: ^5.89.0 + version: 5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4) webpack-cli: specifier: ^5.1.4 - version: 5.1.4(webpack@5.88.2) + version: 5.1.4(webpack@5.89.0) examples/nextjs: dependencies: next: - specifier: 13.4.19 - version: 13.4.19(@babel/core@7.22.11)(react-dom@18.2.0)(react@18.2.0) + specifier: 13.5.6 + version: 13.5.6(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -295,21 +296,21 @@ importers: specifier: workspace:* version: link:../../packages/twirpscript devDependencies: - "@types/node": - specifier: 20.5.7 - version: 20.5.7 - "@types/react": - specifier: 18.2.21 - version: 18.2.21 - "@types/react-dom": - specifier: 18.2.7 - version: 18.2.7 + '@types/node': + specifier: 20.8.8 + version: 20.8.8 + '@types/react': + specifier: 18.2.31 + version: 18.2.31 + '@types/react-dom': + specifier: 18.2.14 + version: 18.2.14 eslint: - specifier: 8.48.0 - version: 8.48.0 + specifier: 8.52.0 + version: 8.52.0 eslint-config-next: - specifier: 13.4.19 - version: 13.4.19(eslint@8.48.0)(typescript@5.2.2) + specifier: 13.5.6 + version: 13.5.6(eslint@8.52.0)(typescript@5.2.2) typescript: specifier: 5.2.2 version: 5.2.2 @@ -320,27 +321,27 @@ importers: specifier: workspace:* version: link:../../packages/twirpscript devDependencies: - "@babel/core": - specifier: ^7.22.11 - version: 7.22.11 - "@babel/preset-env": - specifier: ^7.22.14 - version: 7.22.14(@babel/core@7.22.11) - "@babel/preset-typescript": - specifier: ^7.22.11 - version: 7.22.11(@babel/core@7.22.11) - "@types/jest": - specifier: ^29.5.4 - version: 29.5.4 - "@types/node": - specifier: ^20.5.7 - version: 20.5.7 + '@babel/core': + specifier: ^7.23.2 + version: 7.23.2 + '@babel/preset-env': + specifier: ^7.23.2 + version: 7.23.2(@babel/core@7.23.2) + '@babel/preset-typescript': + specifier: ^7.23.2 + version: 7.23.2(@babel/core@7.23.2) + '@types/jest': + specifier: ^29.5.6 + version: 29.5.6 + '@types/node': + specifier: ^20.8.8 + version: 20.8.8 babel-jest: - specifier: ^29.6.4 - version: 29.6.4(@babel/core@7.22.11) + specifier: ^29.7.0 + version: 29.7.0(@babel/core@7.23.2) jest: - specifier: ^29.6.4 - version: 29.6.4(@types/node@20.5.7) + specifier: ^29.7.0 + version: 29.7.0(@types/node@20.8.8) typescript: specifier: ^5.2.2 version: 5.2.2 @@ -357,882 +358,787 @@ importers: specifier: workspace:* version: link:../../packages/twirpscript devDependencies: - "@babel/core": - specifier: ^7.22.11 - version: 7.22.11 - "@babel/preset-env": - specifier: ^7.22.14 - version: 7.22.14(@babel/core@7.22.11) - "@babel/preset-typescript": - specifier: ^7.22.11 - version: 7.22.11(@babel/core@7.22.11) - "@types/jest": - specifier: ^29.5.4 - version: 29.5.4 - "@types/node": - specifier: ^20.5.7 - version: 20.5.7 - "@types/react-dom": - specifier: ^18.2.7 - version: 18.2.7 + '@babel/core': + specifier: ^7.23.2 + version: 7.23.2 + '@babel/preset-env': + specifier: ^7.23.2 + version: 7.23.2(@babel/core@7.23.2) + '@babel/preset-typescript': + specifier: ^7.23.2 + version: 7.23.2(@babel/core@7.23.2) + '@types/jest': + specifier: ^29.5.6 + version: 29.5.6 + '@types/node': + specifier: ^20.8.8 + version: 20.8.8 + '@types/react-dom': + specifier: ^18.2.14 + version: 18.2.14 babel-jest: - specifier: ^29.6.4 - version: 29.6.4(@babel/core@7.22.11) + specifier: ^29.7.0 + version: 29.7.0(@babel/core@7.23.2) jest: - specifier: ^29.6.4 - version: 29.6.4(@types/node@20.5.7) + specifier: ^29.7.0 + version: 29.7.0(@types/node@20.8.8) ts-loader: - specifier: ^9.4.4 - version: 9.4.4(typescript@5.2.2)(webpack@5.88.2) + specifier: ^9.5.0 + version: 9.5.0(typescript@5.2.2)(webpack@5.89.0) typescript: specifier: ^5.2.2 version: 5.2.2 webpack: - specifier: ^5.88.2 - version: 5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4) + specifier: ^5.89.0 + version: 5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4) webpack-cli: specifier: ^5.1.4 - version: 5.1.4(webpack@5.88.2) + version: 5.1.4(webpack@5.89.0) packages/twirpscript: dependencies: protoscript: - specifier: 0.0.18 - version: 0.0.18 + specifier: 0.0.20 + version: 0.0.20 packages: + /@aashutoshrathi/word-wrap@1.2.6: - resolution: - { - integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} dev: true /@ampproject/remapping@2.2.1: - resolution: - { - integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, - } - engines: { node: ">=6.0.0" } - dependencies: - "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.19 - - /@aws-cdk/assets@1.204.0(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-rY9YHZ3gUWr+dLwTwSUWYbIfk/AXy4JZRkhLbunrtzjQhH+QMm/2IWIebfBGu+A5AlVRaFbRLonReuGP5WZoUQ==, - } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.20 + + /@aws-cdk/assets@1.204.0(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-rY9YHZ3gUWr+dLwTwSUWYbIfk/AXy4JZRkhLbunrtzjQhH+QMm/2IWIebfBGu+A5AlVRaFbRLonReuGP5WZoUQ==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - constructs: 10.2.70 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-acmpca@1.204.0(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-2zyuQZwynwkz2qiuFDp088tglWXKX3q7saWRDqeuq2n2HE6PGuQRjd4zjl9nDGUVxQYtzzXyEuPyaEta8fg9lQ==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-acmpca@1.204.0(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-2zyuQZwynwkz2qiuFDp088tglWXKX3q7saWRDqeuq2n2HE6PGuQRjd4zjl9nDGUVxQYtzzXyEuPyaEta8fg9lQ==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/core": 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-apigateway@1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-cognito@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-elasticloadbalancingv2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-stepfunctions@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-uVK309Ltdq/Q0w0tREtIIJYKAeevKwU/oqVMy+PKis1+bSEesN64hIPAd+qqBuChrzCdhEDtY9oiKGOTvM0Alg==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-apigateway@1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-cognito@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-elasticloadbalancingv2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-stepfunctions@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-uVK309Ltdq/Q0w0tREtIIJYKAeevKwU/oqVMy+PKis1+bSEesN64hIPAd+qqBuChrzCdhEDtY9oiKGOTvM0Alg==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-certificatemanager": 1.204.0 - "@aws-cdk/aws-cloudwatch": 1.204.0 - "@aws-cdk/aws-cognito": 1.204.0 - "@aws-cdk/aws-ec2": 1.204.0 - "@aws-cdk/aws-elasticloadbalancingv2": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-lambda": 1.204.0 - "@aws-cdk/aws-logs": 1.204.0 - "@aws-cdk/aws-s3": 1.204.0 - "@aws-cdk/aws-s3-assets": 1.204.0 - "@aws-cdk/aws-stepfunctions": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/aws-certificatemanager': 1.204.0 + '@aws-cdk/aws-cloudwatch': 1.204.0 + '@aws-cdk/aws-cognito': 1.204.0 + '@aws-cdk/aws-ec2': 1.204.0 + '@aws-cdk/aws-elasticloadbalancingv2': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-lambda': 1.204.0 + '@aws-cdk/aws-logs': 1.204.0 + '@aws-cdk/aws-s3': 1.204.0 + '@aws-cdk/aws-s3-assets': 1.204.0 + '@aws-cdk/aws-stepfunctions': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-certificatemanager": 1.204.0(@aws-cdk/aws-acmpca@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-cloudwatch": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-cognito": 1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/custom-resources@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-ec2": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-elasticloadbalancingv2": 1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-lambda": 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-logs": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3": 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3-assets": 1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-stepfunctions": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-applicationautoscaling@1.204.0(@aws-cdk/aws-autoscaling-common@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-sEe2NODKUowJx2guM2SPfs/20gGdBq1C09M32b8c1im7K+PqQkHkE156nyz5Ml0hpsNeCZlRS17oKZ042aZevQ==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/aws-certificatemanager': 1.204.0(@aws-cdk/aws-acmpca@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-cloudwatch': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-cognito': 1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/custom-resources@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-ec2': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-elasticloadbalancingv2': 1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-lambda': 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-logs': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3': 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3-assets': 1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-stepfunctions': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-applicationautoscaling@1.204.0(@aws-cdk/aws-autoscaling-common@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-sEe2NODKUowJx2guM2SPfs/20gGdBq1C09M32b8c1im7K+PqQkHkE156nyz5Ml0hpsNeCZlRS17oKZ042aZevQ==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-autoscaling-common": 1.204.0 - "@aws-cdk/aws-cloudwatch": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-autoscaling-common': 1.204.0 + '@aws-cdk/aws-cloudwatch': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-autoscaling-common": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-cloudwatch": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-autoscaling-common': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-cloudwatch': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-autoscaling-common@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-P+PwbTaj28Eg9+/U9ZTXTh1gA7L9Z45GL+9xcEZvEqAkJt9MNgzZICavVZu1sMD74foK1r1ZOBXTsqV6wEiltQ==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-autoscaling-common@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-P+PwbTaj28Eg9+/U9ZTXTh1gA7L9Z45GL+9xcEZvEqAkJt9MNgzZICavVZu1sMD74foK1r1ZOBXTsqV6wEiltQ==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-certificatemanager@1.204.0(@aws-cdk/aws-acmpca@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-ZLykfAOb5Zbg/MFtzA+eHhMAK1xL32+oHKSK6tAYrgvv2aS42wJE4zSBV6jGCjnCkhcliUd5pwnACEl3ib0KLw==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-certificatemanager@1.204.0(@aws-cdk/aws-acmpca@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-ZLykfAOb5Zbg/MFtzA+eHhMAK1xL32+oHKSK6tAYrgvv2aS42wJE4zSBV6jGCjnCkhcliUd5pwnACEl3ib0KLw==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-acmpca": 1.204.0 - "@aws-cdk/aws-cloudwatch": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-lambda": 1.204.0 - "@aws-cdk/aws-route53": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-acmpca': 1.204.0 + '@aws-cdk/aws-cloudwatch': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-lambda': 1.204.0 + '@aws-cdk/aws-route53': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-acmpca": 1.204.0(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-cloudwatch": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-lambda": 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-route53": 1.204.0(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/custom-resources@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-cloudformation@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-9PkZa9mKLneB0My8wJC7lLZmPJsnOxNYy57ZZlRCQhK0eO6Jc9eVqrI29537W+3ireaEjCLEitkb8NO1FN/kQA==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/aws-acmpca': 1.204.0(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-cloudwatch': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-lambda': 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-route53': 1.204.0(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/custom-resources@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-cloudformation@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-9PkZa9mKLneB0My8wJC7lLZmPJsnOxNYy57ZZlRCQhK0eO6Jc9eVqrI29537W+3ireaEjCLEitkb8NO1FN/kQA==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-lambda": 1.204.0 - "@aws-cdk/aws-s3": 1.204.0 - "@aws-cdk/aws-sns": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-lambda': 1.204.0 + '@aws-cdk/aws-s3': 1.204.0 + '@aws-cdk/aws-sns': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-lambda": 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3": 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-sns": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codestarnotifications@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-cloudwatch@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-ADT2D+4FtB9Zcy/TlF2tswQmjmrPVgORYTkznQQ2SniCODHWzz558+G1RV+IVvWRdH7nYQtV0UEuGZKpffWh2w==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-lambda': 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3': 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-sns': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codestarnotifications@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-cloudwatch@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-ADT2D+4FtB9Zcy/TlF2tswQmjmrPVgORYTkznQQ2SniCODHWzz558+G1RV+IVvWRdH7nYQtV0UEuGZKpffWh2w==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-codeguruprofiler@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-IrgY4SmVf9p5POfHm8BsPzaAO5lQTG7nhb5qN5AzS6zKCTuEjjTNHjx1TOfPV12mMIDAIVsK91mjDlAR88Mjbg==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-codeguruprofiler@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-IrgY4SmVf9p5POfHm8BsPzaAO5lQTG7nhb5qN5AzS6zKCTuEjjTNHjx1TOfPV12mMIDAIVsK91mjDlAR88Mjbg==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-codestarnotifications@1.204.0(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-t//hSpC5/uVW2321YlbGabNVzhWayvqz+xSnagADGcT9qiq3KQR/uUlrgpHv1/eHRMk7EMrY9prlXeZpfzZ+cw==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-codestarnotifications@1.204.0(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-t//hSpC5/uVW2321YlbGabNVzhWayvqz+xSnagADGcT9qiq3KQR/uUlrgpHv1/eHRMk7EMrY9prlXeZpfzZ+cw==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/core": 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-cognito@1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/custom-resources@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-7QIbExW9dn1fktpDOh2nMHmor2S3uuHtIX5y33lc9OKg3xUuYw4AZ67MKapunN7QUBlffTlNzoUqlHoNSab+Zg==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-cognito@1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/custom-resources@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-7QIbExW9dn1fktpDOh2nMHmor2S3uuHtIX5y33lc9OKg3xUuYw4AZ67MKapunN7QUBlffTlNzoUqlHoNSab+Zg==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-certificatemanager": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/aws-lambda": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/custom-resources": 1.204.0 + '@aws-cdk/aws-certificatemanager': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/aws-lambda': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/custom-resources': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-certificatemanager": 1.204.0(@aws-cdk/aws-acmpca@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-lambda": 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/custom-resources": 1.204.0(@aws-cdk/aws-cloudformation@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-certificatemanager': 1.204.0(@aws-cdk/aws-acmpca@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-lambda': 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/custom-resources': 1.204.0(@aws-cdk/aws-cloudformation@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true bundledDependencies: - punycode - /@aws-cdk/aws-ec2@1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-SoqZEgzdfPW0aa+FQ0CjzbDG+X+sDu6/BnLL2O10lxpa+9Dc1iyArAqNKFJG5KXGJe9ibvQXyNQqEjeGRFc22Q==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-ec2@1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-SoqZEgzdfPW0aa+FQ0CjzbDG+X+sDu6/BnLL2O10lxpa+9Dc1iyArAqNKFJG5KXGJe9ibvQXyNQqEjeGRFc22Q==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-cloudwatch": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/aws-logs": 1.204.0 - "@aws-cdk/aws-s3": 1.204.0 - "@aws-cdk/aws-s3-assets": 1.204.0 - "@aws-cdk/aws-ssm": 1.204.0 - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 - "@aws-cdk/region-info": 1.204.0 + '@aws-cdk/aws-cloudwatch': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/aws-logs': 1.204.0 + '@aws-cdk/aws-s3': 1.204.0 + '@aws-cdk/aws-s3-assets': 1.204.0 + '@aws-cdk/aws-ssm': 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 + '@aws-cdk/region-info': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-cloudwatch": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-logs": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3": 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3-assets": 1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-ssm": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - "@aws-cdk/region-info": 1.204.0 - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-ecr-assets@1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-2GHD3pZdDoPxq3HhD4czANuI7TMoxpjszbzsQAc2wbdMX1j+K4vIL+PBpj3altfscPqcvy1v70lBjbG5rcBIkQ==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/aws-cloudwatch': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-logs': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3': 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3-assets': 1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-ssm': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + '@aws-cdk/region-info': 1.204.0 + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-ecr-assets@1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-2GHD3pZdDoPxq3HhD4czANuI7TMoxpjszbzsQAc2wbdMX1j+K4vIL+PBpj3altfscPqcvy1v70lBjbG5rcBIkQ==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/assets": 1.204.0 - "@aws-cdk/aws-ecr": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-s3": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/assets': 1.204.0 + '@aws-cdk/aws-ecr': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-s3': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/assets": 1.204.0(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-ecr": 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3": 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-ecr@1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-oCts9e+ackWoFHeyn/3oKm3X1lSizleWNNXHp5WGM38lpNVrtCLMKSShu5iXJBhqRH2Mz1AcA4fDMWhe8DvJFA==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/assets': 1.204.0(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-ecr': 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3': 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-ecr@1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-oCts9e+ackWoFHeyn/3oKm3X1lSizleWNNXHp5WGM38lpNVrtCLMKSShu5iXJBhqRH2Mz1AcA4fDMWhe8DvJFA==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-events": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-events': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-events": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-events': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-efs@1.204.0(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-FB6nHgCuzYF5K9ywqYPEPjL2G1ATLIR9dJp1p4ydcEUuXDb4KSEVN4Bgx+q1e7EkWGIq+9glr+ckheEcTvETgw==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-efs@1.204.0(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-FB6nHgCuzYF5K9ywqYPEPjL2G1ATLIR9dJp1p4ydcEUuXDb4KSEVN4Bgx+q1e7EkWGIq+9glr+ckheEcTvETgw==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-ec2": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/aws-ec2': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-ec2": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-elasticloadbalancingv2@1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-/43kzUTU3w9jimPuD5QZxoBN74+9QnOdhAcqIMVCFLPMkVLAxx3vg5g5MWWG+3j6rUoSecrtrP1AP7thZuo5wA==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/aws-ec2': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-elasticloadbalancingv2@1.204.0(@aws-cdk/aws-certificatemanager@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-/43kzUTU3w9jimPuD5QZxoBN74+9QnOdhAcqIMVCFLPMkVLAxx3vg5g5MWWG+3j6rUoSecrtrP1AP7thZuo5wA==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-certificatemanager": 1.204.0 - "@aws-cdk/aws-cloudwatch": 1.204.0 - "@aws-cdk/aws-ec2": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-lambda": 1.204.0 - "@aws-cdk/aws-route53": 1.204.0 - "@aws-cdk/aws-s3": 1.204.0 - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 - "@aws-cdk/region-info": 1.204.0 + '@aws-cdk/aws-certificatemanager': 1.204.0 + '@aws-cdk/aws-cloudwatch': 1.204.0 + '@aws-cdk/aws-ec2': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-lambda': 1.204.0 + '@aws-cdk/aws-route53': 1.204.0 + '@aws-cdk/aws-s3': 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 + '@aws-cdk/region-info': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-certificatemanager": 1.204.0(@aws-cdk/aws-acmpca@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-cloudwatch": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-ec2": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-lambda": 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-route53": 1.204.0(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/custom-resources@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3": 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - "@aws-cdk/region-info": 1.204.0 - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-events@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-KnfUmtv+4RhydD9+5CHFxNJxtgn7+Xftwfwg1G7qV/tWYPFHcNIvhlSOgwDrQPa+pTo1MmkiUN0lAR0G8B/cbw==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/aws-certificatemanager': 1.204.0(@aws-cdk/aws-acmpca@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-route53@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-cloudwatch': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-ec2': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-lambda': 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-route53': 1.204.0(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/custom-resources@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3': 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + '@aws-cdk/region-info': 1.204.0 + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-events@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-KnfUmtv+4RhydD9+5CHFxNJxtgn7+Xftwfwg1G7qV/tWYPFHcNIvhlSOgwDrQPa+pTo1MmkiUN0lAR0G8B/cbw==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-iam@1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-Fh2egW3v/uDdw3m4jvcupS7COL/+sJl2NHjz9l298ddyMxqDwJD2NQwE8mvgPLK4rDtAtDnE0c8RS6d+NWiC+w==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-iam@1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-Fh2egW3v/uDdw3m4jvcupS7COL/+sJl2NHjz9l298ddyMxqDwJD2NQwE8mvgPLK4rDtAtDnE0c8RS6d+NWiC+w==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/core": 1.204.0 - "@aws-cdk/region-info": 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/region-info': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - "@aws-cdk/region-info": 1.204.0 - constructs: 10.2.70 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + '@aws-cdk/region-info': 1.204.0 + constructs: 10.3.0 transitivePeerDependencies: - - "@aws-cdk/cloud-assembly-schema" + - '@aws-cdk/cloud-assembly-schema' dev: true - /@aws-cdk/aws-kms@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-iryZQ428L1VUVQ0zE96XTWWX7ANVtDrb6x+ZXXLTVUEPgjEd/W6zlcp++Qi0A3a9HLNd4PbEhK9rs0UKNTylzw==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-kms@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-iryZQ428L1VUVQ0zE96XTWWX7ANVtDrb6x+ZXXLTVUEPgjEd/W6zlcp++Qi0A3a9HLNd4PbEhK9rs0UKNTylzw==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - constructs: 10.2.70 + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-lambda@1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-r0XXovrLAx8Q8Fz915SwzyQM/KLhEB6YCp3CsWliFGSOHEjRP8yX8UZdEJqe5kYD7Th9JAhUVzKgyv20P7g5Tg==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-lambda@1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-r0XXovrLAx8Q8Fz915SwzyQM/KLhEB6YCp3CsWliFGSOHEjRP8yX8UZdEJqe5kYD7Th9JAhUVzKgyv20P7g5Tg==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-applicationautoscaling": 1.204.0 - "@aws-cdk/aws-cloudwatch": 1.204.0 - "@aws-cdk/aws-codeguruprofiler": 1.204.0 - "@aws-cdk/aws-ec2": 1.204.0 - "@aws-cdk/aws-ecr": 1.204.0 - "@aws-cdk/aws-ecr-assets": 1.204.0 - "@aws-cdk/aws-efs": 1.204.0 - "@aws-cdk/aws-events": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/aws-logs": 1.204.0 - "@aws-cdk/aws-s3": 1.204.0 - "@aws-cdk/aws-s3-assets": 1.204.0 - "@aws-cdk/aws-signer": 1.204.0 - "@aws-cdk/aws-sns": 1.204.0 - "@aws-cdk/aws-sqs": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 - "@aws-cdk/region-info": 1.204.0 + '@aws-cdk/aws-applicationautoscaling': 1.204.0 + '@aws-cdk/aws-cloudwatch': 1.204.0 + '@aws-cdk/aws-codeguruprofiler': 1.204.0 + '@aws-cdk/aws-ec2': 1.204.0 + '@aws-cdk/aws-ecr': 1.204.0 + '@aws-cdk/aws-ecr-assets': 1.204.0 + '@aws-cdk/aws-efs': 1.204.0 + '@aws-cdk/aws-events': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/aws-logs': 1.204.0 + '@aws-cdk/aws-s3': 1.204.0 + '@aws-cdk/aws-s3-assets': 1.204.0 + '@aws-cdk/aws-signer': 1.204.0 + '@aws-cdk/aws-sns': 1.204.0 + '@aws-cdk/aws-sqs': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 + '@aws-cdk/region-info': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-applicationautoscaling": 1.204.0(@aws-cdk/aws-autoscaling-common@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-cloudwatch": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-codeguruprofiler": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-ec2": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-ecr": 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-ecr-assets": 1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-efs": 1.204.0(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-events": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-logs": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3": 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3-assets": 1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-signer": 1.204.0(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-sns": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codestarnotifications@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-sqs": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - "@aws-cdk/region-info": 1.204.0 - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-logs@1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-PuHsDSkX6JFBgldxViGw91eFLageJ2cX89/RyLbWaJJUV4tlUKXSmmkVgOaBmvil0QKuGqbOzLXcXCoIK9Sg3A==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/aws-applicationautoscaling': 1.204.0(@aws-cdk/aws-autoscaling-common@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-cloudwatch': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-codeguruprofiler': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-ec2': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-ecr': 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-ecr-assets': 1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-efs': 1.204.0(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-events': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-logs': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3': 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3-assets': 1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-signer': 1.204.0(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-sns': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codestarnotifications@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-sqs': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + '@aws-cdk/region-info': 1.204.0 + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-logs@1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-PuHsDSkX6JFBgldxViGw91eFLageJ2cX89/RyLbWaJJUV4tlUKXSmmkVgOaBmvil0QKuGqbOzLXcXCoIK9Sg3A==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-cloudwatch": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/aws-s3-assets": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/aws-cloudwatch': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/aws-s3-assets': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-cloudwatch": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3-assets": 1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-route53@1.204.0(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/custom-resources@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-wQpGUXqc2y7yJFTipfuVxWy/VGeshyGlfGl4evusQK9Md0DMpVmG8kRgazLk1myqUSNSfi643UwvDJqNbYmdnA==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/aws-cloudwatch': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3-assets': 1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-route53@1.204.0(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/custom-resources@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-wQpGUXqc2y7yJFTipfuVxWy/VGeshyGlfGl4evusQK9Md0DMpVmG8kRgazLk1myqUSNSfi643UwvDJqNbYmdnA==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-ec2": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-logs": 1.204.0 - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/custom-resources": 1.204.0 + '@aws-cdk/aws-ec2': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-logs': 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/custom-resources': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-ec2": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-logs": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/custom-resources": 1.204.0(@aws-cdk/aws-cloudformation@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-s3-assets@1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-3MQbVZ95wW29Bl63tqu0Bz0td3osLyGg352l5G7Ztf3nK35FpuQlgxO4kcu74+s2sRwdd/R4KFV6eWhhPk+J7g==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/aws-ec2': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-logs': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/custom-resources': 1.204.0(@aws-cdk/aws-cloudformation@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-s3-assets@1.204.0(@aws-cdk/assets@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-3MQbVZ95wW29Bl63tqu0Bz0td3osLyGg352l5G7Ztf3nK35FpuQlgxO4kcu74+s2sRwdd/R4KFV6eWhhPk+J7g==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/assets": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/aws-s3": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/assets': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/aws-s3': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/assets": 1.204.0(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3": 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-s3@1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-jsQ4n1L4MdPYDirBoOYgg7yzSk1TaFYo4dnwDlKiLJ5LcHG3Nai1cHb9XQbCy/9KKqbWsbd3WlkH+vcWEl8EUA==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/assets': 1.204.0(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3': 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-s3@1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-jsQ4n1L4MdPYDirBoOYgg7yzSk1TaFYo4dnwDlKiLJ5LcHG3Nai1cHb9XQbCy/9KKqbWsbd3WlkH+vcWEl8EUA==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-events": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/aws-events': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-events": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - constructs: 10.2.70 + '@aws-cdk/aws-events': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-signer@1.204.0(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-AI26FhWF3+f/vDh3mleQa2CXv2/CmSerXgyk4XHMVVTTCjnlYGGmHmGlzYhqOSw6ALpQNdOSw8GVxU/ySpQCaw==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-signer@1.204.0(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-AI26FhWF3+f/vDh3mleQa2CXv2/CmSerXgyk4XHMVVTTCjnlYGGmHmGlzYhqOSw6ALpQNdOSw8GVxU/ySpQCaw==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/core": 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-sns@1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codestarnotifications@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-KoWxqKT/dTjt9Pk0a3kJLcd6xZHvrwbZDC0mrLtxdRNhQoHmnURAHW2UqX/lefrCU1GcUFf4L58N9ehBTunAFQ==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-sns@1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codestarnotifications@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-KoWxqKT/dTjt9Pk0a3kJLcd6xZHvrwbZDC0mrLtxdRNhQoHmnURAHW2UqX/lefrCU1GcUFf4L58N9ehBTunAFQ==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-cloudwatch": 1.204.0 - "@aws-cdk/aws-codestarnotifications": 1.204.0 - "@aws-cdk/aws-events": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/aws-sqs": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-cloudwatch': 1.204.0 + '@aws-cdk/aws-codestarnotifications': 1.204.0 + '@aws-cdk/aws-events': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/aws-sqs': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-cloudwatch": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-codestarnotifications": 1.204.0(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-events": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-sqs": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 - dev: true - - /@aws-cdk/aws-sqs@1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-dVzuGMh6d5/X9P9jel1w2Wgdy5MuSE35+eBSFxN+S7oJRoVSARpyKMNYAPMCW+2OJCDw7fIqO1rWbsZBT1Gq8g==, - } - engines: { node: ">= 14.15.0" } + '@aws-cdk/aws-cloudwatch': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-codestarnotifications': 1.204.0(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-events': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-sqs': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 + dev: true + + /@aws-cdk/aws-sqs@1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-dVzuGMh6d5/X9P9jel1w2Wgdy5MuSE35+eBSFxN+S7oJRoVSARpyKMNYAPMCW+2OJCDw7fIqO1rWbsZBT1Gq8g==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-cloudwatch": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-cloudwatch': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-cloudwatch": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-cloudwatch': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-ssm@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-yYx7HZ8cWNXDAmX/99WkB477QhLoV2rcB8orei8aj7nRkNq5TMjeox0IJaZVgU+edNEDOi1fVX3flh0SAMiUrg==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-ssm@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-yYx7HZ8cWNXDAmX/99WkB477QhLoV2rcB8orei8aj7nRkNq5TMjeox0IJaZVgU+edNEDOi1fVX3flh0SAMiUrg==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true - /@aws-cdk/aws-stepfunctions@1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-S8yuB5GtUajOxUcoMw82HQ+ei1U9uofwENEnEtYTeyqgjpd0FG4XHYoHvBdmgVvEKwpH/XiOePfEHeB8nTXufw==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/aws-stepfunctions@1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-S8yuB5GtUajOxUcoMw82HQ+ei1U9uofwENEnEtYTeyqgjpd0FG4XHYoHvBdmgVvEKwpH/XiOePfEHeB8nTXufw==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-cloudwatch": 1.204.0 - "@aws-cdk/aws-events": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-logs": 1.204.0 - "@aws-cdk/aws-s3": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-cloudwatch': 1.204.0 + '@aws-cdk/aws-events': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-logs': 1.204.0 + '@aws-cdk/aws-s3': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-cloudwatch": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-events": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-logs": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-s3": 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-cloudwatch': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-events': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-logs': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-s3': 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true /@aws-cdk/cloud-assembly-schema@1.204.0: - resolution: - { - integrity: sha512-DMNSR4DNKMNNfhOq1UizwZvesOKdhk3R3gRigrvWBHIkHMQg+W6aZFl7WZLKSBkChAXhIsH///psjhDQ20gl1w==, - } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-DMNSR4DNKMNNfhOq1UizwZvesOKdhk3R3gRigrvWBHIkHMQg+W6aZFl7WZLKSBkChAXhIsH///psjhDQ20gl1w==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. @@ -1246,90 +1152,78 @@ packages: - jsonschema - semver - /@aws-cdk/core@1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-yO/flJ9ihpzRhLTEqlbdbuPGtyyghHiiQPkUTLslwUM5vThVTbpgvW4UQHSGqytyst4MYXrN2jQn2RkwIRU57g==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/core@1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-yO/flJ9ihpzRhLTEqlbdbuPGtyyghHiiQPkUTLslwUM5vThVTbpgvW4UQHSGqytyst4MYXrN2jQn2RkwIRU57g==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 - "@aws-cdk/region-info": 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 + '@aws-cdk/region-info': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - "@aws-cdk/region-info": 1.204.0 - constructs: 10.2.70 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + '@aws-cdk/region-info': 1.204.0 + constructs: 10.3.0 dev: true bundledDependencies: - fs-extra - minimatch - - "@balena/dockerignore" + - '@balena/dockerignore' - ignore - /@aws-cdk/custom-resources@1.204.0(@aws-cdk/aws-cloudformation@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70): - resolution: - { - integrity: sha512-0w3oi7LnAtMZpf7uUBDH6aT2Oo1EBQrqD+VTvPZDX8PJFAox8ol7buZ9sSTpIXgv9j/GK9yaPTIHt4m8ok9kVQ==, - } - engines: { node: ">= 14.15.0" } + /@aws-cdk/custom-resources@1.204.0(@aws-cdk/aws-cloudformation@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0): + resolution: {integrity: sha512-0w3oi7LnAtMZpf7uUBDH6aT2Oo1EBQrqD+VTvPZDX8PJFAox8ol7buZ9sSTpIXgv9j/GK9yaPTIHt4m8ok9kVQ==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-cloudformation": 1.204.0 - "@aws-cdk/aws-ec2": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-lambda": 1.204.0 - "@aws-cdk/aws-logs": 1.204.0 - "@aws-cdk/aws-sns": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-cloudformation': 1.204.0 + '@aws-cdk/aws-ec2': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-lambda': 1.204.0 + '@aws-cdk/aws-logs': 1.204.0 + '@aws-cdk/aws-sns': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-cloudformation": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-ec2": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-lambda": 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-logs": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.2.70) - "@aws-cdk/aws-sns": 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codestarnotifications@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.2.70) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.2.70) - constructs: 10.2.70 + '@aws-cdk/aws-cloudformation': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-lambda@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-ec2': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-ssm@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-lambda': 1.204.0(@aws-cdk/aws-applicationautoscaling@1.204.0)(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codeguruprofiler@1.204.0)(@aws-cdk/aws-ec2@1.204.0)(@aws-cdk/aws-ecr-assets@1.204.0)(@aws-cdk/aws-ecr@1.204.0)(@aws-cdk/aws-efs@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-logs@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/aws-s3@1.204.0)(@aws-cdk/aws-signer@1.204.0)(@aws-cdk/aws-sns@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-logs': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-s3-assets@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@10.3.0) + '@aws-cdk/aws-sns': 1.204.0(@aws-cdk/aws-cloudwatch@1.204.0)(@aws-cdk/aws-codestarnotifications@1.204.0)(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/aws-sqs@1.204.0)(@aws-cdk/core@1.204.0)(constructs@10.3.0) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@10.3.0) + constructs: 10.3.0 dev: true /@aws-cdk/cx-api@1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0): - resolution: - { - integrity: sha512-Juh/jL1kFPD5JcI9Uu6X0mM2L6hBCN5grdjSS40F8dThbH25VPzFBejaKjiy5nP1UZB83X+HW3utYOEi97DqxA==, - } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-Juh/jL1kFPD5JcI9Uu6X0mM2L6hBCN5grdjSS40F8dThbH25VPzFBejaKjiy5nP1UZB83X+HW3utYOEi97DqxA==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/cloud-assembly-schema": 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 dependencies: - "@aws-cdk/cloud-assembly-schema": 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 dev: true bundledDependencies: - semver /@aws-cdk/region-info@1.204.0: - resolution: - { - integrity: sha512-lPkYJNoN4Gjlf0Fdfgcd1RTm5RD9qtfaFMwVvTn2KGTr7ZqmFskGQ9FqIcd5vd6GmsbAL8OrFOToLr1AHDuOiQ==, - } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-lPkYJNoN4Gjlf0Fdfgcd1RTm5RD9qtfaFMwVvTn2KGTr7ZqmFskGQ9FqIcd5vd6GmsbAL8OrFOToLr1AHDuOiQ==} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. @@ -1338,40 +1232,31 @@ packages: dev: true /@babel/code-frame@7.22.13: - resolution: - { - integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/highlight": 7.22.13 + '@babel/highlight': 7.22.20 chalk: 2.4.2 - /@babel/compat-data@7.22.9: - resolution: - { - integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==, - } - engines: { node: ">=6.9.0" } - - /@babel/core@7.22.11: - resolution: - { - integrity: sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@ampproject/remapping": 2.2.1 - "@babel/code-frame": 7.22.13 - "@babel/generator": 7.22.10 - "@babel/helper-compilation-targets": 7.22.10 - "@babel/helper-module-transforms": 7.22.9(@babel/core@7.22.11) - "@babel/helpers": 7.22.11 - "@babel/parser": 7.22.14 - "@babel/template": 7.22.5 - "@babel/traverse": 7.22.11 - "@babel/types": 7.22.11 - convert-source-map: 1.9.0 + /@babel/compat-data@7.23.2: + resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==} + engines: {node: '>=6.9.0'} + + /@babel/core@7.23.2: + resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2 + '@babel/types': 7.23.0 + convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 @@ -1379,1882 +1264,1459 @@ packages: transitivePeerDependencies: - supports-color - /@babel/generator@7.22.10: - resolution: - { - integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==, - } - engines: { node: ">=6.9.0" } + /@babel/generator@7.23.0: + resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.22.11 - "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.19 + '@babel/types': 7.23.0 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.20 jsesc: 2.5.2 /@babel/helper-annotate-as-pure@7.22.5: - resolution: - { - integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor@7.22.10: - resolution: - { - integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==, - } - engines: { node: ">=6.9.0" } + /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: + resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 dev: true - /@babel/helper-compilation-targets@7.22.10: - resolution: - { - integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==, - } - engines: { node: ">=6.9.0" } + /@babel/helper-compilation-targets@7.22.15: + resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/compat-data": 7.22.9 - "@babel/helper-validator-option": 7.22.5 - browserslist: 4.21.10 + '@babel/compat-data': 7.23.2 + '@babel/helper-validator-option': 7.22.15 + browserslist: 4.22.1 lru-cache: 5.1.1 semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.22.11 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-function-name": 7.22.5 - "@babel/helper-member-expression-to-functions": 7.22.5 - "@babel/helper-optimise-call-expression": 7.22.5 - "@babel/helper-replace-supers": 7.22.9(@babel/core@7.22.11) - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.11): - resolution: - { - integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==, - } - engines: { node: ">=6.9.0" } + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-annotate-as-pure": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 dev: true - /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.11): - resolution: - { - integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==, - } + /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.2): + resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-compilation-targets": 7.22.10 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.4 + resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-environment-visitor@7.22.5: - resolution: - { - integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, - } - engines: { node: ">=6.9.0" } + /@babel/helper-environment-visitor@7.22.20: + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} + engines: {node: '>=6.9.0'} - /@babel/helper-function-name@7.22.5: - resolution: - { - integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, - } - engines: { node: ">=6.9.0" } + /@babel/helper-function-name@7.23.0: + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/template": 7.22.5 - "@babel/types": 7.22.11 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 /@babel/helper-hoist-variables@7.22.5: - resolution: - { - integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 - /@babel/helper-member-expression-to-functions@7.22.5: - resolution: - { - integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==, - } - engines: { node: ">=6.9.0" } + /@babel/helper-member-expression-to-functions@7.23.0: + resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 dev: true - /@babel/helper-module-imports@7.22.5: - resolution: - { - integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==, - } - engines: { node: ">=6.9.0" } + /@babel/helper-module-imports@7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.11): - resolution: - { - integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==, - } - engines: { node: ">=6.9.0" } + /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-module-imports": 7.22.5 - "@babel/helper-simple-access": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/helper-validator-identifier": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 /@babel/helper-optimise-call-expression@7.22.5: - resolution: - { - integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 dev: true /@babel/helper-plugin-utils@7.22.5: - resolution: - { - integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.11): - resolution: - { - integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==, - } - engines: { node: ">=6.9.0" } + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2): + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-wrap-function": 7.22.10 + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.11): - resolution: - { - integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==, - } - engines: { node: ">=6.9.0" } + /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.2): + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-member-expression-to-functions": 7.22.5 - "@babel/helper-optimise-call-expression": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 dev: true /@babel/helper-simple-access@7.22.5: - resolution: - { - integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 /@babel/helper-skip-transparent-expression-wrappers@7.22.5: - resolution: - { - integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 dev: true /@babel/helper-split-export-declaration@7.22.6: - resolution: - { - integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 /@babel/helper-string-parser@7.22.5: - resolution: - { - integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, - } - engines: { node: ">=6.9.0" } - - /@babel/helper-validator-identifier@7.22.5: - resolution: - { - integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, - } - engines: { node: ">=6.9.0" } - - /@babel/helper-validator-option@7.22.5: - resolution: - { - integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==, - } - engines: { node: ">=6.9.0" } - - /@babel/helper-wrap-function@7.22.10: - resolution: - { - integrity: sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/helper-function-name": 7.22.5 - "@babel/template": 7.22.5 - "@babel/types": 7.22.11 - dev: true - - /@babel/helpers@7.22.11: - resolution: - { - integrity: sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/template": 7.22.5 - "@babel/traverse": 7.22.11 - "@babel/types": 7.22.11 + resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} + engines: {node: '>=6.9.0'} + + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + engines: {node: '>=6.9.0'} + + /@babel/helper-validator-option@7.22.15: + resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} + engines: {node: '>=6.9.0'} + + /@babel/helper-wrap-function@7.22.20: + resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-function-name': 7.23.0 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 + dev: true + + /@babel/helpers@7.23.2: + resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2 + '@babel/types': 7.23.0 transitivePeerDependencies: - supports-color - /@babel/highlight@7.22.13: - resolution: - { - integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==, - } - engines: { node: ">=6.9.0" } + /@babel/highlight@7.22.20: + resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/helper-validator-identifier": 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser@7.22.14: - resolution: - { - integrity: sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==, - } - engines: { node: ">=6.0.0" } + /@babel/parser@7.23.0: + resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} + engines: {node: '>=6.0.0'} hasBin: true dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.13.0 + '@babel/core': ^7.13.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-transform-optional-chaining": 7.22.12(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2) dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.11): - resolution: - { - integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2): + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + '@babel/core': 7.23.2 dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.11): - resolution: - { - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, - } + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2): + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.11): - resolution: - { - integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, - } + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.11): - resolution: - { - integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, - } + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2): + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2): + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.11): - resolution: - { - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, - } + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.11): - resolution: - { - integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, - } + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.11): - resolution: - { - integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, - } + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.11): - resolution: - { - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, - } + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.11): - resolution: - { - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, - } + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2): + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.11): - resolution: - { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, - } + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.11): - resolution: - { - integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, - } + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2): + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.11): - resolution: - { - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, - } + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.11): - resolution: - { - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, - } + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.11): - resolution: - { - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, - } + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2): + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2): + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.11): - resolution: - { - integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2): + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-async-generator-functions@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-0pAlmeRJn6wU84zzZsEOx1JV1Jf8fqO9ok7wofIJwUnplYo247dcd24P+cMJht7ts9xkzdtB0EPHmOb7F+KzXw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.23.2): + resolution: {integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-remap-async-to-generator": 7.22.9(@babel/core@7.22.11) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-module-imports": 7.22.5 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-remap-async-to-generator": 7.22.9(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.22.11): - resolution: - { - integrity: sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-class-features-plugin": 7.22.11(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.12.0 + '@babel/core': ^7.12.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-class-features-plugin": 7.22.11(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.11): - resolution: - { - integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-compilation-targets": 7.22.10 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-function-name": 7.22.5 - "@babel/helper-optimise-call-expression": 7.22.5 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-replace-supers": 7.22.9(@babel/core@7.22.11) - "@babel/helper-split-export-declaration": 7.22.6 + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/template": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 dev: true - /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.22.11): - resolution: - { - integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.10 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-compilation-targets": 7.22.10 - "@babel/helper-function-name": 7.22.5 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-module-transforms": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-module-transforms": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-simple-access": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-module-transforms": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-identifier": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-module-transforms": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-object-rest-spread@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-nX8cPFa6+UmbepISvlf5jhQyaC7ASs/7UxHmMkuJ/k5xSHvDPPaibMo+v3TXwU/Pjqhep/nFNpd3zn4YR59pnw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/compat-data": 7.22.9 - "@babel/core": 7.22.11 - "@babel/helper-compilation-targets": 7.22.10 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-transform-parameters": 7.22.5(@babel/core@7.22.11) + '@babel/compat-data': 7.23.2 + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-replace-supers": 7.22.9(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-optional-chaining@7.22.12(@babel/core@7.22.11): - resolution: - { - integrity: sha512-7XXCVqZtyFWqjDsYDY4T45w4mlx1rf7aOgkc/Ww76xkgBiOlmjPkx36PBLHa1k1rwWvVgYMPsbuVnIamx2ZQJw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-class-features-plugin": 7.22.11(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-create-class-features-plugin": 7.22.11(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/plugin-transform-react-jsx": 7.22.5(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-module-imports": 7.22.5 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-jsx": 7.22.5(@babel/core@7.22.11) - "@babel/types": 7.22.11 + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/types': 7.23.0 dev: true - /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.11): - resolution: - { - integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.2): + resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-typescript@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-0E4/L+7gfvHub7wsbTv03oRtD69X31LByy44fGmFzbZScpupFByMcgCJ0VbBTkzyjSJKuRoGN8tcijOWKTmqOA==, - } - engines: { node: ">=6.9.0" } + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.2): + resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-create-class-features-plugin": 7.22.11(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-typescript": 7.22.5(@babel/core@7.22.11) - dev: true - - /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.11): - resolution: - { - integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/preset-env@7.22.14(@babel/core@7.22.11): - resolution: - { - integrity: sha512-daodMIoVo+ol/g+//c/AH+szBkFj4STQUikvBijRGL72Ph+w+AMTSh55DUETe8KJlPlDT1k/mp7NBfOuiWmoig==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.22.9 - "@babel/core": 7.22.11 - "@babel/helper-compilation-targets": 7.22.10 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-option": 7.22.5 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.11) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.22.11) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.22.11) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.22.11) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-import-assertions": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-syntax-import-attributes": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.22.11) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.22.11) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.22.11) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.22.11) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.22.11) - "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.22.11) - "@babel/plugin-transform-arrow-functions": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-async-generator-functions": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-async-to-generator": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-block-scoped-functions": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-block-scoping": 7.22.10(@babel/core@7.22.11) - "@babel/plugin-transform-class-properties": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-class-static-block": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-classes": 7.22.6(@babel/core@7.22.11) - "@babel/plugin-transform-computed-properties": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-destructuring": 7.22.10(@babel/core@7.22.11) - "@babel/plugin-transform-dotall-regex": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-duplicate-keys": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-dynamic-import": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-exponentiation-operator": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-export-namespace-from": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-for-of": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-function-name": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-json-strings": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-literals": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-logical-assignment-operators": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-member-expression-literals": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-modules-amd": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-modules-commonjs": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-modules-systemjs": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-modules-umd": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-new-target": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-nullish-coalescing-operator": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-numeric-separator": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-object-rest-spread": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-object-super": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-optional-catch-binding": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-optional-chaining": 7.22.12(@babel/core@7.22.11) - "@babel/plugin-transform-parameters": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-private-methods": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-private-property-in-object": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-property-literals": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-regenerator": 7.22.10(@babel/core@7.22.11) - "@babel/plugin-transform-reserved-words": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-shorthand-properties": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-spread": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-sticky-regex": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-template-literals": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-typeof-symbol": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-unicode-escapes": 7.22.10(@babel/core@7.22.11) - "@babel/plugin-transform-unicode-property-regex": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-unicode-regex": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-unicode-sets-regex": 7.22.5(@babel/core@7.22.11) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.22.11) - "@babel/types": 7.22.11 - babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.11) - babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.11) - babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.11) - core-js-compat: 3.32.1 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/preset-env@7.23.2(@babel/core@7.23.2): + resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.23.2 + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.2) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.2) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2) + '@babel/types': 7.23.0 + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2) + babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.2) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2) + core-js-compat: 3.33.1 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.11): - resolution: - { - integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, - } + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2): + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: - "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/types": 7.22.11 + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/types': 7.23.0 esutils: 2.0.3 dev: true - /@babel/preset-react@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==, - } - engines: { node: ">=6.9.0" } + /@babel/preset-react@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-option": 7.22.5 - "@babel/plugin-transform-react-display-name": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-react-jsx": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-react-jsx-development": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-react-pure-annotations": 7.22.5(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.2) dev: true - /@babel/preset-typescript@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-tWY5wyCZYBGY7IlalfKI1rLiGlIfnwsRHZqlky0HVv8qviwQ1Uo/05M6+s+TcTCVa6Bmoo2uJW5TMFX6Wa4qVg==, - } - engines: { node: ">=6.9.0" } + /@babel/preset-typescript@7.23.2(@babel/core@7.23.2): + resolution: {integrity: sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-option": 7.22.5 - "@babel/plugin-syntax-jsx": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-modules-commonjs": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-typescript": 7.22.11(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.2) dev: true /@babel/regjsgen@0.8.0: - resolution: - { - integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, - } + resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} dev: true - /@babel/runtime@7.22.11: - resolution: - { - integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==, - } - engines: { node: ">=6.9.0" } + /@babel/runtime@7.23.2: + resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==} + engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.0 dev: true - /@babel/template@7.22.5: - resolution: - { - integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/code-frame": 7.22.13 - "@babel/parser": 7.22.14 - "@babel/types": 7.22.11 - - /@babel/traverse@7.22.11: - resolution: - { - integrity: sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/code-frame": 7.22.13 - "@babel/generator": 7.22.10 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-function-name": 7.22.5 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/parser": 7.22.14 - "@babel/types": 7.22.11 + /@babel/template@7.22.15: + resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.22.13 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 + + /@babel/traverse@7.23.2: + resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types@7.22.11: - resolution: - { - integrity: sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==, - } - engines: { node: ">=6.9.0" } + /@babel/types@7.23.0: + resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/helper-string-parser": 7.22.5 - "@babel/helper-validator-identifier": 7.22.5 + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 /@bcoe/v8-coverage@0.2.3: - resolution: - { - integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, - } + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true /@cspotcode/source-map-support@0.8.1: - resolution: - { - integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} dependencies: - "@jridgewell/trace-mapping": 0.3.9 + '@jridgewell/trace-mapping': 0.3.9 dev: true /@discoveryjs/json-ext@0.5.7: - resolution: - { - integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==, - } - engines: { node: ">=10.0.0" } - dev: true - - /@esbuild/android-arm64@0.19.2: - resolution: - { - integrity: sha512-lsB65vAbe90I/Qe10OjkmrdxSX4UJDjosDgb8sZUKcg3oefEuW2OT2Vozz8ef7wrJbMcmhvCC+hciF8jY/uAkw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + engines: {node: '>=10.0.0'} + dev: true + + /@esbuild/android-arm64@0.19.5: + resolution: {integrity: sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==} + engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm@0.19.2: - resolution: - { - integrity: sha512-tM8yLeYVe7pRyAu9VMi/Q7aunpLwD139EY1S99xbQkT4/q2qa6eA4ige/WJQYdJ8GBL1K33pPFhPfPdJ/WzT8Q==, - } - engines: { node: ">=12" } + /@esbuild/android-arm@0.19.5: + resolution: {integrity: sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==} + engines: {node: '>=12'} cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-x64@0.19.2: - resolution: - { - integrity: sha512-qK/TpmHt2M/Hg82WXHRc/W/2SGo/l1thtDHZWqFq7oi24AjZ4O/CpPSu6ZuYKFkEgmZlFoa7CooAyYmuvnaG8w==, - } - engines: { node: ">=12" } + /@esbuild/android-x64@0.19.5: + resolution: {integrity: sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==} + engines: {node: '>=12'} cpu: [x64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/darwin-arm64@0.19.2: - resolution: - { - integrity: sha512-Ora8JokrvrzEPEpZO18ZYXkH4asCdc1DLdcVy8TGf5eWtPO1Ie4WroEJzwI52ZGtpODy3+m0a2yEX9l+KUn0tA==, - } - engines: { node: ">=12" } + /@esbuild/darwin-arm64@0.19.5: + resolution: {integrity: sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==} + engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@esbuild/darwin-x64@0.19.2: - resolution: - { - integrity: sha512-tP+B5UuIbbFMj2hQaUr6EALlHOIOmlLM2FK7jeFBobPy2ERdohI4Ka6ZFjZ1ZYsrHE/hZimGuU90jusRE0pwDw==, - } - engines: { node: ">=12" } + /@esbuild/darwin-x64@0.19.5: + resolution: {integrity: sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==} + engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@esbuild/freebsd-arm64@0.19.2: - resolution: - { - integrity: sha512-YbPY2kc0acfzL1VPVK6EnAlig4f+l8xmq36OZkU0jzBVHcOTyQDhnKQaLzZudNJQyymd9OqQezeaBgkTGdTGeQ==, - } - engines: { node: ">=12" } + /@esbuild/freebsd-arm64@0.19.5: + resolution: {integrity: sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==} + engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true dev: true optional: true - /@esbuild/freebsd-x64@0.19.2: - resolution: - { - integrity: sha512-nSO5uZT2clM6hosjWHAsS15hLrwCvIWx+b2e3lZ3MwbYSaXwvfO528OF+dLjas1g3bZonciivI8qKR/Hm7IWGw==, - } - engines: { node: ">=12" } + /@esbuild/freebsd-x64@0.19.5: + resolution: {integrity: sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==} + engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm64@0.19.2: - resolution: - { - integrity: sha512-ig2P7GeG//zWlU0AggA3pV1h5gdix0MA3wgB+NsnBXViwiGgY77fuN9Wr5uoCrs2YzaYfogXgsWZbm+HGr09xg==, - } - engines: { node: ">=12" } + /@esbuild/linux-arm64@0.19.5: + resolution: {integrity: sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==} + engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm@0.19.2: - resolution: - { - integrity: sha512-Odalh8hICg7SOD7XCj0YLpYCEc+6mkoq63UnExDCiRA2wXEmGlK5JVrW50vZR9Qz4qkvqnHcpH+OFEggO3PgTg==, - } - engines: { node: ">=12" } + /@esbuild/linux-arm@0.19.5: + resolution: {integrity: sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==} + engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ia32@0.19.2: - resolution: - { - integrity: sha512-mLfp0ziRPOLSTek0Gd9T5B8AtzKAkoZE70fneiiyPlSnUKKI4lp+mGEnQXcQEHLJAcIYDPSyBvsUbKUG2ri/XQ==, - } - engines: { node: ">=12" } + /@esbuild/linux-ia32@0.19.5: + resolution: {integrity: sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==} + engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-loong64@0.19.2: - resolution: - { - integrity: sha512-hn28+JNDTxxCpnYjdDYVMNTR3SKavyLlCHHkufHV91fkewpIyQchS1d8wSbmXhs1fiYDpNww8KTFlJ1dHsxeSw==, - } - engines: { node: ">=12" } + /@esbuild/linux-loong64@0.19.5: + resolution: {integrity: sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==} + engines: {node: '>=12'} cpu: [loong64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-mips64el@0.19.2: - resolution: - { - integrity: sha512-KbXaC0Sejt7vD2fEgPoIKb6nxkfYW9OmFUK9XQE4//PvGIxNIfPk1NmlHmMg6f25x57rpmEFrn1OotASYIAaTg==, - } - engines: { node: ">=12" } + /@esbuild/linux-mips64el@0.19.5: + resolution: {integrity: sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==} + engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ppc64@0.19.2: - resolution: - { - integrity: sha512-dJ0kE8KTqbiHtA3Fc/zn7lCd7pqVr4JcT0JqOnbj4LLzYnp+7h8Qi4yjfq42ZlHfhOCM42rBh0EwHYLL6LEzcw==, - } - engines: { node: ">=12" } + /@esbuild/linux-ppc64@0.19.5: + resolution: {integrity: sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==} + engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-riscv64@0.19.2: - resolution: - { - integrity: sha512-7Z/jKNFufZ/bbu4INqqCN6DDlrmOTmdw6D0gH+6Y7auok2r02Ur661qPuXidPOJ+FSgbEeQnnAGgsVynfLuOEw==, - } - engines: { node: ">=12" } + /@esbuild/linux-riscv64@0.19.5: + resolution: {integrity: sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==} + engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-s390x@0.19.2: - resolution: - { - integrity: sha512-U+RinR6aXXABFCcAY4gSlv4CL1oOVvSSCdseQmGO66H+XyuQGZIUdhG56SZaDJQcLmrSfRmx5XZOWyCJPRqS7g==, - } - engines: { node: ">=12" } + /@esbuild/linux-s390x@0.19.5: + resolution: {integrity: sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==} + engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-x64@0.19.2: - resolution: - { - integrity: sha512-oxzHTEv6VPm3XXNaHPyUTTte+3wGv7qVQtqaZCrgstI16gCuhNOtBXLEBkBREP57YTd68P0VgDgG73jSD8bwXQ==, - } - engines: { node: ">=12" } + /@esbuild/linux-x64@0.19.5: + resolution: {integrity: sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==} + engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/netbsd-x64@0.19.2: - resolution: - { - integrity: sha512-WNa5zZk1XpTTwMDompZmvQLHszDDDN7lYjEHCUmAGB83Bgs20EMs7ICD+oKeT6xt4phV4NDdSi/8OfjPbSbZfQ==, - } - engines: { node: ">=12" } + /@esbuild/netbsd-x64@0.19.5: + resolution: {integrity: sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==} + engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true dev: true optional: true - /@esbuild/openbsd-x64@0.19.2: - resolution: - { - integrity: sha512-S6kI1aT3S++Dedb7vxIuUOb3oAxqxk2Rh5rOXOTYnzN8JzW1VzBd+IqPiSpgitu45042SYD3HCoEyhLKQcDFDw==, - } - engines: { node: ">=12" } + /@esbuild/openbsd-x64@0.19.5: + resolution: {integrity: sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==} + engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true dev: true optional: true - /@esbuild/sunos-x64@0.19.2: - resolution: - { - integrity: sha512-VXSSMsmb+Z8LbsQGcBMiM+fYObDNRm8p7tkUDMPG/g4fhFX5DEFmjxIEa3N8Zr96SjsJ1woAhF0DUnS3MF3ARw==, - } - engines: { node: ">=12" } + /@esbuild/sunos-x64@0.19.5: + resolution: {integrity: sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==} + engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true dev: true optional: true - /@esbuild/win32-arm64@0.19.2: - resolution: - { - integrity: sha512-5NayUlSAyb5PQYFAU9x3bHdsqB88RC3aM9lKDAz4X1mo/EchMIT1Q+pSeBXNgkfNmRecLXA0O8xP+x8V+g/LKg==, - } - engines: { node: ">=12" } + /@esbuild/win32-arm64@0.19.5: + resolution: {integrity: sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==} + engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-ia32@0.19.2: - resolution: - { - integrity: sha512-47gL/ek1v36iN0wL9L4Q2MFdujR0poLZMJwhO2/N3gA89jgHp4MR8DKCmwYtGNksbfJb9JoTtbkoe6sDhg2QTA==, - } - engines: { node: ">=12" } + /@esbuild/win32-ia32@0.19.5: + resolution: {integrity: sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==} + engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-x64@0.19.2: - resolution: - { - integrity: sha512-tcuhV7ncXBqbt/Ybf0IyrMcwVOAPDckMK9rXNHtF17UTK18OKLpg08glminN06pt2WCoALhXdLfSPbVvK/6fxw==, - } - engines: { node: ">=12" } + /@esbuild/win32-x64@0.19.5: + resolution: {integrity: sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==} + engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.48.0): - resolution: - { - integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + /@eslint-community/eslint-utils@4.4.0(eslint@8.52.0): + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.48.0 + eslint: 8.52.0 eslint-visitor-keys: 3.4.3 dev: true - /@eslint-community/regexpp@4.8.0: - resolution: - { - integrity: sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==, - } - engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + /@eslint-community/regexpp@4.9.1: + resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true /@eslint/eslintrc@2.1.2: - resolution: - { - integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 espree: 9.6.1 - globals: 13.21.0 + globals: 13.23.0 ignore: 5.2.4 import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -3264,22 +2726,16 @@ packages: - supports-color dev: true - /@eslint/js@8.48.0: - resolution: - { - integrity: sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + /@eslint/js@8.52.0: + resolution: {integrity: sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@humanwhocodes/config-array@0.11.11: - resolution: - { - integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==, - } - engines: { node: ">=10.10.0" } + /@humanwhocodes/config-array@0.11.13: + resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} + engines: {node: '>=10.10.0'} dependencies: - "@humanwhocodes/object-schema": 1.2.1 + '@humanwhocodes/object-schema': 2.0.1 debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: @@ -3287,26 +2743,17 @@ packages: dev: true /@humanwhocodes/module-importer@1.0.1: - resolution: - { - integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, - } - engines: { node: ">=12.22" } + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} dev: true - /@humanwhocodes/object-schema@1.2.1: - resolution: - { - integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, - } + /@humanwhocodes/object-schema@2.0.1: + resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} dev: true /@istanbuljs/load-nyc-config@1.1.0: - resolution: - { - integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} dependencies: camelcase: 5.3.1 find-up: 4.1.0 @@ -3316,66 +2763,57 @@ packages: dev: true /@istanbuljs/schema@0.1.3: - resolution: - { - integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, - } - engines: { node: ">=8" } - dev: true - - /@jest/console@29.6.4: - resolution: - { - integrity: sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - dependencies: - "@jest/types": 29.6.3 - "@types/node": 20.5.7 + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + dev: true + + /@jest/console@29.7.0: + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.8.8 chalk: 4.1.2 - jest-message-util: 29.6.3 - jest-util: 29.6.3 + jest-message-util: 29.7.0 + jest-util: 29.7.0 slash: 3.0.0 dev: true - /@jest/core@29.6.4: - resolution: - { - integrity: sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /@jest/core@29.7.0: + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true dependencies: - "@jest/console": 29.6.4 - "@jest/reporters": 29.6.4 - "@jest/test-result": 29.6.4 - "@jest/transform": 29.6.4 - "@jest/types": 29.6.3 - "@types/node": 20.5.7 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.8.8 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 - jest-changed-files: 29.6.3 - jest-config: 29.6.4(@types/node@20.5.7) - jest-haste-map: 29.6.4 - jest-message-util: 29.6.3 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.8.8) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 jest-regex-util: 29.6.3 - jest-resolve: 29.6.4 - jest-resolve-dependencies: 29.6.4 - jest-runner: 29.6.4 - jest-runtime: 29.6.4 - jest-snapshot: 29.6.4 - jest-util: 29.6.3 - jest-validate: 29.6.3 - jest-watcher: 29.6.4 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 micromatch: 4.0.5 - pretty-format: 29.6.3 + pretty-format: 29.7.0 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: @@ -3384,178 +2822,145 @@ packages: - ts-node dev: true - /@jest/environment@29.6.4: - resolution: - { - integrity: sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /@jest/environment@29.7.0: + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/fake-timers": 29.6.4 - "@jest/types": 29.6.3 - "@types/node": 20.5.7 - jest-mock: 29.6.3 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.8.8 + jest-mock: 29.7.0 dev: true - /@jest/expect-utils@29.6.4: - resolution: - { - integrity: sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /@jest/expect-utils@29.7.0: + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.6.3 dev: true - /@jest/expect@29.6.4: - resolution: - { - integrity: sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /@jest/expect@29.7.0: + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - expect: 29.6.4 - jest-snapshot: 29.6.4 + expect: 29.7.0 + jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color dev: true - /@jest/fake-timers@29.6.4: - resolution: - { - integrity: sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - dependencies: - "@jest/types": 29.6.3 - "@sinonjs/fake-timers": 10.3.0 - "@types/node": 20.5.7 - jest-message-util: 29.6.3 - jest-mock: 29.6.3 - jest-util: 29.6.3 - dev: true - - /@jest/globals@29.6.4: - resolution: - { - integrity: sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - dependencies: - "@jest/environment": 29.6.4 - "@jest/expect": 29.6.4 - "@jest/types": 29.6.3 - jest-mock: 29.6.3 + /@jest/fake-timers@29.7.0: + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 20.8.8 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 + dev: true + + /@jest/globals@29.7.0: + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 + jest-mock: 29.7.0 transitivePeerDependencies: - supports-color dev: true - /@jest/reporters@29.6.4: - resolution: - { - integrity: sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /@jest/reporters@29.7.0: + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 29.6.4 - "@jest/test-result": 29.6.4 - "@jest/transform": 29.6.4 - "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.19 - "@types/node": 20.5.7 + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.20 + '@types/node': 20.8.8 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 6.0.0 + istanbul-lib-instrument: 6.0.1 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.6 - jest-message-util: 29.6.3 - jest-util: 29.6.3 - jest-worker: 29.6.4 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + jest-worker: 29.7.0 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 - v8-to-istanbul: 9.1.0 + v8-to-istanbul: 9.1.3 transitivePeerDependencies: - supports-color dev: true /@jest/schemas@29.6.3: - resolution: - { - integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@sinclair/typebox": 0.27.8 + '@sinclair/typebox': 0.27.8 dev: true /@jest/source-map@29.6.3: - resolution: - { - integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jridgewell/trace-mapping": 0.3.19 + '@jridgewell/trace-mapping': 0.3.20 callsites: 3.1.0 graceful-fs: 4.2.11 dev: true - /@jest/test-result@29.6.4: - resolution: - { - integrity: sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /@jest/test-result@29.7.0: + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/console": 29.6.4 - "@jest/types": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.4 + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.5 collect-v8-coverage: 1.0.2 dev: true - /@jest/test-sequencer@29.6.4: - resolution: - { - integrity: sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /@jest/test-sequencer@29.7.0: + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/test-result": 29.6.4 + '@jest/test-result': 29.7.0 graceful-fs: 4.2.11 - jest-haste-map: 29.6.4 + jest-haste-map: 29.7.0 slash: 3.0.0 dev: true - /@jest/transform@29.6.4: - resolution: - { - integrity: sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /@jest/transform@29.7.0: + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/core": 7.22.11 - "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.19 + '@babel/core': 7.23.2 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.20 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 - jest-haste-map: 29.6.4 + jest-haste-map: 29.7.0 jest-regex-util: 29.6.3 - jest-util: 29.6.3 + jest-util: 29.7.0 micromatch: 4.0.5 pirates: 4.0.6 slash: 3.0.0 @@ -3565,198 +2970,141 @@ packages: dev: true /@jest/types@29.6.3: - resolution: - { - integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - dependencies: - "@jest/schemas": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.4 - "@types/istanbul-reports": 3.0.1 - "@types/node": 20.5.7 - "@types/yargs": 17.0.24 + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.5 + '@types/istanbul-reports': 3.0.3 + '@types/node': 20.8.8 + '@types/yargs': 17.0.29 chalk: 4.1.2 dev: true /@jridgewell/gen-mapping@0.3.3: - resolution: - { - integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} dependencies: - "@jridgewell/set-array": 1.1.2 - "@jridgewell/sourcemap-codec": 1.4.15 - "@jridgewell/trace-mapping": 0.3.19 + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.20 /@jridgewell/resolve-uri@3.1.1: - resolution: - { - integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} + engines: {node: '>=6.0.0'} /@jridgewell/set-array@1.1.2: - resolution: - { - integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} /@jridgewell/source-map@0.3.5: - resolution: - { - integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==, - } + resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} dependencies: - "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.19 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.20 dev: true /@jridgewell/sourcemap-codec@1.4.15: - resolution: - { - integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, - } + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - /@jridgewell/trace-mapping@0.3.19: - resolution: - { - integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==, - } + /@jridgewell/trace-mapping@0.3.20: + resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} dependencies: - "@jridgewell/resolve-uri": 3.1.1 - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 /@jridgewell/trace-mapping@0.3.9: - resolution: - { - integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, - } + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: - "@jridgewell/resolve-uri": 3.1.1 - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /@next/env@13.4.19: - resolution: - { - integrity: sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ==, - } + /@next/env@13.5.6: + resolution: {integrity: sha512-Yac/bV5sBGkkEXmAX5FWPS9Mmo2rthrOPRQQNfycJPkjUAUclomCPH7QFVCDQ4Mp2k2K1SSM6m0zrxYrOwtFQw==} dev: false - /@next/eslint-plugin-next@13.4.19: - resolution: - { - integrity: sha512-N/O+zGb6wZQdwu6atMZHbR7T9Np5SUFUjZqCbj0sXm+MwQO35M8TazVB4otm87GkXYs2l6OPwARd3/PUWhZBVQ==, - } + /@next/eslint-plugin-next@13.5.6: + resolution: {integrity: sha512-ng7pU/DDsxPgT6ZPvuprxrkeew3XaRf4LAT4FabaEO/hAbvVx4P7wqnqdbTdDn1kgTvsI4tpIgT4Awn/m0bGbg==} dependencies: glob: 7.1.7 dev: true - /@next/swc-darwin-arm64@13.4.19: - resolution: - { - integrity: sha512-vv1qrjXeGbuF2mOkhkdxMDtv9np7W4mcBtaDnHU+yJG+bBwa6rYsYSCI/9Xm5+TuF5SbZbrWO6G1NfTh1TMjvQ==, - } - engines: { node: ">= 10" } + /@next/swc-darwin-arm64@13.5.6: + resolution: {integrity: sha512-5nvXMzKtZfvcu4BhtV0KH1oGv4XEW+B+jOfmBdpFI3C7FrB/MfujRpWYSBBO64+qbW8pkZiSyQv9eiwnn5VIQA==} + engines: {node: '>= 10'} cpu: [arm64] os: [darwin] requiresBuild: true dev: false optional: true - /@next/swc-darwin-x64@13.4.19: - resolution: - { - integrity: sha512-jyzO6wwYhx6F+7gD8ddZfuqO4TtpJdw3wyOduR4fxTUCm3aLw7YmHGYNjS0xRSYGAkLpBkH1E0RcelyId6lNsw==, - } - engines: { node: ">= 10" } + /@next/swc-darwin-x64@13.5.6: + resolution: {integrity: sha512-6cgBfxg98oOCSr4BckWjLLgiVwlL3vlLj8hXg2b+nDgm4bC/qVXXLfpLB9FHdoDu4057hzywbxKvmYGmi7yUzA==} + engines: {node: '>= 10'} cpu: [x64] os: [darwin] requiresBuild: true dev: false optional: true - /@next/swc-linux-arm64-gnu@13.4.19: - resolution: - { - integrity: sha512-vdlnIlaAEh6H+G6HrKZB9c2zJKnpPVKnA6LBwjwT2BTjxI7e0Hx30+FoWCgi50e+YO49p6oPOtesP9mXDRiiUg==, - } - engines: { node: ">= 10" } + /@next/swc-linux-arm64-gnu@13.5.6: + resolution: {integrity: sha512-txagBbj1e1w47YQjcKgSU4rRVQ7uF29YpnlHV5xuVUsgCUf2FmyfJ3CPjZUvpIeXCJAoMCFAoGnbtX86BK7+sg==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true dev: false optional: true - /@next/swc-linux-arm64-musl@13.4.19: - resolution: - { - integrity: sha512-aU0HkH2XPgxqrbNRBFb3si9Ahu/CpaR5RPmN2s9GiM9qJCiBBlZtRTiEca+DC+xRPyCThTtWYgxjWHgU7ZkyvA==, - } - engines: { node: ">= 10" } + /@next/swc-linux-arm64-musl@13.5.6: + resolution: {integrity: sha512-cGd+H8amifT86ZldVJtAKDxUqeFyLWW+v2NlBULnLAdWsiuuN8TuhVBt8ZNpCqcAuoruoSWynvMWixTFcroq+Q==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true dev: false optional: true - /@next/swc-linux-x64-gnu@13.4.19: - resolution: - { - integrity: sha512-htwOEagMa/CXNykFFeAHHvMJeqZfNQEoQvHfsA4wgg5QqGNqD5soeCer4oGlCol6NGUxknrQO6VEustcv+Md+g==, - } - engines: { node: ">= 10" } + /@next/swc-linux-x64-gnu@13.5.6: + resolution: {integrity: sha512-Mc2b4xiIWKXIhBy2NBTwOxGD3nHLmq4keFk+d4/WL5fMsB8XdJRdtUlL87SqVCTSaf1BRuQQf1HvXZcy+rq3Nw==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true dev: false optional: true - /@next/swc-linux-x64-musl@13.4.19: - resolution: - { - integrity: sha512-4Gj4vvtbK1JH8ApWTT214b3GwUh9EKKQjY41hH/t+u55Knxi/0wesMzwQRhppK6Ddalhu0TEttbiJ+wRcoEj5Q==, - } - engines: { node: ">= 10" } + /@next/swc-linux-x64-musl@13.5.6: + resolution: {integrity: sha512-CFHvP9Qz98NruJiUnCe61O6GveKKHpJLloXbDSWRhqhkJdZD2zU5hG+gtVJR//tyW897izuHpM6Gtf6+sNgJPQ==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true dev: false optional: true - /@next/swc-win32-arm64-msvc@13.4.19: - resolution: - { - integrity: sha512-bUfDevQK4NsIAHXs3/JNgnvEY+LRyneDN788W2NYiRIIzmILjba7LaQTfihuFawZDhRtkYCv3JDC3B4TwnmRJw==, - } - engines: { node: ">= 10" } + /@next/swc-win32-arm64-msvc@13.5.6: + resolution: {integrity: sha512-aFv1ejfkbS7PUa1qVPwzDHjQWQtknzAZWGTKYIAaS4NMtBlk3VyA6AYn593pqNanlicewqyl2jUhQAaFV/qXsg==} + engines: {node: '>= 10'} cpu: [arm64] os: [win32] requiresBuild: true dev: false optional: true - /@next/swc-win32-ia32-msvc@13.4.19: - resolution: - { - integrity: sha512-Y5kikILFAr81LYIFaw6j/NrOtmiM4Sf3GtOc0pn50ez2GCkr+oejYuKGcwAwq3jiTKuzF6OF4iT2INPoxRycEA==, - } - engines: { node: ">= 10" } + /@next/swc-win32-ia32-msvc@13.5.6: + resolution: {integrity: sha512-XqqpHgEIlBHvzwG8sp/JXMFkLAfGLqkbVsyN+/Ih1mR8INb6YCc2x/Mbwi6hsAgUnqQztz8cvEbHJUbSl7RHDg==} + engines: {node: '>= 10'} cpu: [ia32] os: [win32] requiresBuild: true dev: false optional: true - /@next/swc-win32-x64-msvc@13.4.19: - resolution: - { - integrity: sha512-YzA78jBDXMYiINdPdJJwGgPNT3YqBNNGhsthsDoWHL9p24tEJn9ViQf/ZqTbwSpX/RrkPupLfuuTH2sf73JBAw==, - } - engines: { node: ">= 10" } + /@next/swc-win32-x64-msvc@13.5.6: + resolution: {integrity: sha512-Cqfe1YmOS7k+5mGu92nl5ULkzpKuxJrP3+4AEuPmrpFZ3BHxTY3TnHmU1On3bFmFFs6FbTcdF58CCUProGpIGQ==} + engines: {node: '>= 10'} cpu: [x64] os: [win32] requiresBuild: true @@ -3764,718 +3112,514 @@ packages: optional: true /@nodelib/fs.scandir@2.1.5: - resolution: - { - integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} dependencies: - "@nodelib/fs.stat": 2.0.5 + '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 dev: true /@nodelib/fs.stat@2.0.5: - resolution: - { - integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} dev: true /@nodelib/fs.walk@1.2.8: - resolution: - { - integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} dependencies: - "@nodelib/fs.scandir": 2.1.5 + '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 dev: true - /@rushstack/eslint-patch@1.3.3: - resolution: - { - integrity: sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw==, - } + /@rushstack/eslint-patch@1.5.1: + resolution: {integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==} dev: true /@sinclair/typebox@0.27.8: - resolution: - { - integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, - } + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} dev: true /@sinonjs/commons@3.0.0: - resolution: - { - integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==, - } + resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==} dependencies: type-detect: 4.0.8 dev: true /@sinonjs/fake-timers@10.3.0: - resolution: - { - integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==, - } + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} dependencies: - "@sinonjs/commons": 3.0.0 + '@sinonjs/commons': 3.0.0 dev: true - /@swc/helpers@0.5.1: - resolution: - { - integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==, - } + /@swc/helpers@0.5.2: + resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} dependencies: tslib: 2.6.2 dev: false /@tootallnate/once@1.1.2: - resolution: - { - integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} dev: true /@tsconfig/node10@1.0.9: - resolution: - { - integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, - } + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} dev: true /@tsconfig/node12@1.0.11: - resolution: - { - integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==, - } + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} dev: true /@tsconfig/node14@1.0.3: - resolution: - { - integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, - } + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} dev: true /@tsconfig/node16@1.0.4: - resolution: - { - integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==, - } + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} dev: true - /@types/aws-lambda@8.10.119: - resolution: - { - integrity: sha512-Vqm22aZrCvCd6I5g1SvpW151jfqwTzEZ7XJ3yZ6xaZG31nUEOEyzzVImjRcsN8Wi/QyPxId/x8GTtgIbsy8kEw==, - } + /@types/aws-lambda@8.10.125: + resolution: {integrity: sha512-Vqw/WMlV4O1fJT6capim01v7VLDZkcX1n6Yhb52E7IfnMqYbNfwHfyDV8rRN42NLBtdDvfaqcCqs2K0fr5ljZw==} dev: true - /@types/babel__core@7.20.1: - resolution: - { - integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==, - } + /@types/babel__core@7.20.3: + resolution: {integrity: sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==} dependencies: - "@babel/parser": 7.22.14 - "@babel/types": 7.22.11 - "@types/babel__generator": 7.6.4 - "@types/babel__template": 7.4.1 - "@types/babel__traverse": 7.20.1 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 + '@types/babel__generator': 7.6.6 + '@types/babel__template': 7.4.3 + '@types/babel__traverse': 7.20.3 dev: true - /@types/babel__generator@7.6.4: - resolution: - { - integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==, - } + /@types/babel__generator@7.6.6: + resolution: {integrity: sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 dev: true - /@types/babel__template@7.4.1: - resolution: - { - integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==, - } + /@types/babel__template@7.4.3: + resolution: {integrity: sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==} dependencies: - "@babel/parser": 7.22.14 - "@babel/types": 7.22.11 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 dev: true - /@types/babel__traverse@7.20.1: - resolution: - { - integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==, - } + /@types/babel__traverse@7.20.3: + resolution: {integrity: sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==} dependencies: - "@babel/types": 7.22.11 + '@babel/types': 7.23.0 dev: true - /@types/eslint-scope@3.7.4: - resolution: - { - integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==, - } + /@types/eslint-scope@3.7.6: + resolution: {integrity: sha512-zfM4ipmxVKWdxtDaJ3MP3pBurDXOCoyjvlpE3u6Qzrmw4BPbfm4/ambIeTk/r/J0iq/+2/xp0Fmt+gFvXJY2PQ==} dependencies: - "@types/eslint": 8.44.2 - "@types/estree": 1.0.1 + '@types/eslint': 8.44.6 + '@types/estree': 1.0.3 dev: true - /@types/eslint@8.44.2: - resolution: - { - integrity: sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==, - } + /@types/eslint@8.44.6: + resolution: {integrity: sha512-P6bY56TVmX8y9J87jHNgQh43h6VVU+6H7oN7hgvivV81K2XY8qJZ5vqPy/HdUoVIelii2kChYVzQanlswPWVFw==} dependencies: - "@types/estree": 1.0.1 - "@types/json-schema": 7.0.12 + '@types/estree': 1.0.3 + '@types/json-schema': 7.0.14 dev: true - /@types/estree@1.0.1: - resolution: - { - integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==, - } + /@types/estree@1.0.3: + resolution: {integrity: sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ==} dev: true - /@types/google-protobuf@3.15.6: - resolution: - { - integrity: sha512-pYVNNJ+winC4aek+lZp93sIKxnXt5qMkuKmaqS3WGuTq0Bw1ZDYNBgzG5kkdtwcv+GmYJGo3yEg6z2cKKAiEdw==, - } + /@types/google-protobuf@3.15.9: + resolution: {integrity: sha512-l51aVJnCNNMBkmSUQddSStXinB2qSXqfrmY9zkdcE9sqPzDneQ3BGg/hu7LfeOCUeGHOu+Rly89YhuDhvbmmPw==} dev: true - /@types/graceful-fs@4.1.6: - resolution: - { - integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==, - } + /@types/graceful-fs@4.1.8: + resolution: {integrity: sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==} dependencies: - "@types/node": 20.5.7 + '@types/node': 20.8.8 dev: true - /@types/istanbul-lib-coverage@2.0.4: - resolution: - { - integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==, - } + /@types/istanbul-lib-coverage@2.0.5: + resolution: {integrity: sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ==} dev: true - /@types/istanbul-lib-report@3.0.0: - resolution: - { - integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==, - } + /@types/istanbul-lib-report@3.0.2: + resolution: {integrity: sha512-8toY6FgdltSdONav1XtUHl4LN1yTmLza+EuDazb/fEmRNCwjyqNVIQWs2IfC74IqjHkREs/nQ2FWq5kZU9IC0w==} dependencies: - "@types/istanbul-lib-coverage": 2.0.4 + '@types/istanbul-lib-coverage': 2.0.5 dev: true - /@types/istanbul-reports@3.0.1: - resolution: - { - integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==, - } + /@types/istanbul-reports@3.0.3: + resolution: {integrity: sha512-1nESsePMBlf0RPRffLZi5ujYh7IH1BWL4y9pr+Bn3cJBdxz+RTP8bUFljLz9HvzhhOSWKdyBZ4DIivdL6rvgZg==} dependencies: - "@types/istanbul-lib-report": 3.0.0 + '@types/istanbul-lib-report': 3.0.2 dev: true - /@types/jest@29.5.4: - resolution: - { - integrity: sha512-PhglGmhWeD46FYOVLt3X7TiWjzwuVGW9wG/4qocPevXMjCmrIc5b6db9WjeGE4QYVpUAWMDv3v0IiBwObY289A==, - } + /@types/jest@29.5.6: + resolution: {integrity: sha512-/t9NnzkOpXb4Nfvg17ieHE6EeSjDS2SGSpNYfoLbUAeL/EOueU/RSdOWFpfQTXBEM7BguYW1XQ0EbM+6RlIh6w==} dependencies: - expect: 29.6.4 - pretty-format: 29.6.3 + expect: 29.7.0 + pretty-format: 29.7.0 dev: true - /@types/json-schema@7.0.12: - resolution: - { - integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==, - } + /@types/json-schema@7.0.14: + resolution: {integrity: sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==} dev: true /@types/json5@0.0.29: - resolution: - { - integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, - } + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true - /@types/node@20.5.7: - resolution: - { - integrity: sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==, - } + /@types/node@20.8.8: + resolution: {integrity: sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==} + dependencies: + undici-types: 5.25.3 dev: true - /@types/parse-author@2.0.1: - resolution: - { - integrity: sha512-2RNXvvDY+7ITl/Q3znDpW9DxyAckKgLCXpoiBHN9BeLH1aV7z/W657P2+PK3wVUgGWXtc99ZQy3LkJTGlxLsvA==, - } + /@types/parse-author@2.0.2: + resolution: {integrity: sha512-erPq9bzt/xzhfDBzSctZFDCbLmU5CEAUOWy/vfwkv9N9RVNcG7UIrTwA7llH+u2LKfuVO5WwQ8kfBIgxmz5wrg==} dev: true - /@types/parse-json@4.0.0: - resolution: - { - integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, - } + /@types/parse-json@4.0.1: + resolution: {integrity: sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==} dev: true /@types/prettier@3.0.0: - resolution: - { - integrity: sha512-mFMBfMOz8QxhYVbuINtswBp9VL2b4Y0QqYHwqLz3YbgtfAcat2Dl6Y1o4e22S/OVE6Ebl9m7wWiMT2lSbAs1wA==, - } + resolution: {integrity: sha512-mFMBfMOz8QxhYVbuINtswBp9VL2b4Y0QqYHwqLz3YbgtfAcat2Dl6Y1o4e22S/OVE6Ebl9m7wWiMT2lSbAs1wA==} deprecated: This is a stub types definition. prettier provides its own type definitions, so you do not need this installed. dependencies: prettier: 3.0.3 dev: true - /@types/prop-types@15.7.5: - resolution: - { - integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, - } + /@types/prop-types@15.7.9: + resolution: {integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==} dev: true - /@types/react-dom@18.2.7: - resolution: - { - integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==, - } + /@types/react-dom@18.2.14: + resolution: {integrity: sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==} dependencies: - "@types/react": 18.2.21 + '@types/react': 18.2.31 dev: true - /@types/react@18.2.21: - resolution: - { - integrity: sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==, - } + /@types/react@18.2.31: + resolution: {integrity: sha512-c2UnPv548q+5DFh03y8lEDeMfDwBn9G3dRwfkrxQMo/dOtRHUUO57k6pHvBIfH/VF4Nh+98mZ5aaSe+2echD5g==} dependencies: - "@types/prop-types": 15.7.5 - "@types/scheduler": 0.16.3 + '@types/prop-types': 15.7.9 + '@types/scheduler': 0.16.5 csstype: 3.1.2 dev: true - /@types/scheduler@0.16.3: - resolution: - { - integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==, - } + /@types/scheduler@0.16.5: + resolution: {integrity: sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==} dev: true - /@types/semver@7.5.1: - resolution: - { - integrity: sha512-cJRQXpObxfNKkFAZbJl2yjWtJCqELQIdShsogr1d2MilP8dKD9TE/nEKHkJgUNHdGKCQaf9HbIynuV2csLGVLg==, - } + /@types/semver@7.5.4: + resolution: {integrity: sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==} dev: true - /@types/stack-utils@2.0.1: - resolution: - { - integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==, - } + /@types/stack-utils@2.0.2: + resolution: {integrity: sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==} dev: true - /@types/yargs-parser@21.0.0: - resolution: - { - integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==, - } + /@types/yargs-parser@21.0.2: + resolution: {integrity: sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw==} dev: true - /@types/yargs@17.0.24: - resolution: - { - integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==, - } + /@types/yargs@17.0.29: + resolution: {integrity: sha512-nacjqA3ee9zRF/++a3FUY1suHTFKZeHba2n8WeDw9cCVdmzmHpIxyzOJBcpHvvEmS8E9KqWlSnWHUkOrkhWcvA==} dependencies: - "@types/yargs-parser": 21.0.0 + '@types/yargs-parser': 21.0.2 dev: true - /@typescript-eslint/eslint-plugin@6.5.0(@typescript-eslint/parser@6.5.0)(eslint@8.48.0)(typescript@5.2.2): - resolution: - { - integrity: sha512-2pktILyjvMaScU6iK3925uvGU87E+N9rh372uGZgiMYwafaw9SXq86U04XPq3UH6tzRvNgBsub6x2DacHc33lw==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + /@typescript-eslint/eslint-plugin@6.9.0(@typescript-eslint/parser@6.9.0)(eslint@8.52.0)(typescript@5.2.2): + resolution: {integrity: sha512-lgX7F0azQwRPB7t7WAyeHWVfW1YJ9NIgd9mvGhfQpRY56X6AVf8mwM8Wol+0z4liE7XX3QOt8MN1rUKCfSjRIA==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - "@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@eslint-community/regexpp": 4.8.0 - "@typescript-eslint/parser": 6.5.0(eslint@8.48.0)(typescript@5.2.2) - "@typescript-eslint/scope-manager": 6.5.0 - "@typescript-eslint/type-utils": 6.5.0(eslint@8.48.0)(typescript@5.2.2) - "@typescript-eslint/utils": 6.5.0(eslint@8.48.0)(typescript@5.2.2) - "@typescript-eslint/visitor-keys": 6.5.0 + '@eslint-community/regexpp': 4.9.1 + '@typescript-eslint/parser': 6.9.0(eslint@8.52.0)(typescript@5.2.2) + '@typescript-eslint/scope-manager': 6.9.0 + '@typescript-eslint/type-utils': 6.9.0(eslint@8.52.0)(typescript@5.2.2) + '@typescript-eslint/utils': 6.9.0(eslint@8.52.0)(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 6.9.0 debug: 4.3.4 - eslint: 8.48.0 + eslint: 8.52.0 graphemer: 1.4.0 ignore: 5.2.4 natural-compare: 1.4.0 semver: 7.5.4 - ts-api-utils: 1.0.2(typescript@5.2.2) + ts-api-utils: 1.0.3(typescript@5.2.2) typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@6.5.0(eslint@8.48.0)(typescript@5.2.2): - resolution: - { - integrity: sha512-LMAVtR5GN8nY0G0BadkG0XIe4AcNMeyEy3DyhKGAh9k4pLSMBO7rF29JvDBpZGCmp5Pgz5RLHP6eCpSYZJQDuQ==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + /@typescript-eslint/parser@6.9.0(eslint@8.52.0)(typescript@5.2.2): + resolution: {integrity: sha512-GZmjMh4AJ/5gaH4XF2eXA8tMnHWP+Pm1mjQR2QN4Iz+j/zO04b9TOvJYOX2sCNIQHtRStKTxRY1FX7LhpJT4Gw==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/scope-manager": 6.5.0 - "@typescript-eslint/types": 6.5.0 - "@typescript-eslint/typescript-estree": 6.5.0(typescript@5.2.2) - "@typescript-eslint/visitor-keys": 6.5.0 + '@typescript-eslint/scope-manager': 6.9.0 + '@typescript-eslint/types': 6.9.0 + '@typescript-eslint/typescript-estree': 6.9.0(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 6.9.0 debug: 4.3.4 - eslint: 8.48.0 + eslint: 8.52.0 typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager@6.5.0: - resolution: - { - integrity: sha512-A8hZ7OlxURricpycp5kdPTH3XnjG85UpJS6Fn4VzeoH4T388gQJ/PGP4ole5NfKt4WDVhmLaQ/dBLNDC4Xl/Kw==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + /@typescript-eslint/scope-manager@6.9.0: + resolution: {integrity: sha512-1R8A9Mc39n4pCCz9o79qRO31HGNDvC7UhPhv26TovDsWPBDx+Sg3rOZdCELIA3ZmNoWAuxaMOT7aWtGRSYkQxw==} + engines: {node: ^16.0.0 || >=18.0.0} dependencies: - "@typescript-eslint/types": 6.5.0 - "@typescript-eslint/visitor-keys": 6.5.0 + '@typescript-eslint/types': 6.9.0 + '@typescript-eslint/visitor-keys': 6.9.0 dev: true - /@typescript-eslint/type-utils@6.5.0(eslint@8.48.0)(typescript@5.2.2): - resolution: - { - integrity: sha512-f7OcZOkRivtujIBQ4yrJNIuwyCQO1OjocVqntl9dgSIZAdKqicj3xFDqDOzHDlGCZX990LqhLQXWRnQvsapq8A==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + /@typescript-eslint/type-utils@6.9.0(eslint@8.52.0)(typescript@5.2.2): + resolution: {integrity: sha512-XXeahmfbpuhVbhSOROIzJ+b13krFmgtc4GlEuu1WBT+RpyGPIA4Y/eGnXzjbDj5gZLzpAXO/sj+IF/x2GtTMjQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 6.5.0(typescript@5.2.2) - "@typescript-eslint/utils": 6.5.0(eslint@8.48.0)(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 6.9.0(typescript@5.2.2) + '@typescript-eslint/utils': 6.9.0(eslint@8.52.0)(typescript@5.2.2) debug: 4.3.4 - eslint: 8.48.0 - ts-api-utils: 1.0.2(typescript@5.2.2) + eslint: 8.52.0 + ts-api-utils: 1.0.3(typescript@5.2.2) typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types@6.5.0: - resolution: - { - integrity: sha512-eqLLOEF5/lU8jW3Bw+8auf4lZSbbljHR2saKnYqON12G/WsJrGeeDHWuQePoEf9ro22+JkbPfWQwKEC5WwLQ3w==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + /@typescript-eslint/types@6.9.0: + resolution: {integrity: sha512-+KB0lbkpxBkBSiVCuQvduqMJy+I1FyDbdwSpM3IoBS7APl4Bu15lStPjgBIdykdRqQNYqYNMa8Kuidax6phaEw==} + engines: {node: ^16.0.0 || >=18.0.0} dev: true - /@typescript-eslint/typescript-estree@6.5.0(typescript@5.2.2): - resolution: - { - integrity: sha512-q0rGwSe9e5Kk/XzliB9h2LBc9tmXX25G0833r7kffbl5437FPWb2tbpIV9wAATebC/018pGa9fwPDuvGN+LxWQ==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + /@typescript-eslint/typescript-estree@6.9.0(typescript@5.2.2): + resolution: {integrity: sha512-NJM2BnJFZBEAbCfBP00zONKXvMqihZCrmwCaik0UhLr0vAgb6oguXxLX1k00oQyD+vZZ+CJn3kocvv2yxm4awQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/types": 6.5.0 - "@typescript-eslint/visitor-keys": 6.5.0 + '@typescript-eslint/types': 6.9.0 + '@typescript-eslint/visitor-keys': 6.9.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - ts-api-utils: 1.0.2(typescript@5.2.2) + ts-api-utils: 1.0.3(typescript@5.2.2) typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@6.5.0(eslint@8.48.0)(typescript@5.2.2): - resolution: - { - integrity: sha512-9nqtjkNykFzeVtt9Pj6lyR9WEdd8npPhhIPM992FWVkZuS6tmxHfGVnlUcjpUP2hv8r4w35nT33mlxd+Be1ACQ==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + /@typescript-eslint/utils@6.9.0(eslint@8.52.0)(typescript@5.2.2): + resolution: {integrity: sha512-5Wf+Jsqya7WcCO8me504FBigeQKVLAMPmUzYgDbWchINNh1KJbxCgVya3EQ2MjvJMVeXl3pofRmprqX6mfQkjQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.48.0) - "@types/json-schema": 7.0.12 - "@types/semver": 7.5.1 - "@typescript-eslint/scope-manager": 6.5.0 - "@typescript-eslint/types": 6.5.0 - "@typescript-eslint/typescript-estree": 6.5.0(typescript@5.2.2) - eslint: 8.48.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0) + '@types/json-schema': 7.0.14 + '@types/semver': 7.5.4 + '@typescript-eslint/scope-manager': 6.9.0 + '@typescript-eslint/types': 6.9.0 + '@typescript-eslint/typescript-estree': 6.9.0(typescript@5.2.2) + eslint: 8.52.0 semver: 7.5.4 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys@6.5.0: - resolution: - { - integrity: sha512-yCB/2wkbv3hPsh02ZS8dFQnij9VVQXJMN/gbQsaaY+zxALkZnxa/wagvLEFsAWMPv7d7lxQmNsIzGU1w/T/WyA==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + /@typescript-eslint/visitor-keys@6.9.0: + resolution: {integrity: sha512-dGtAfqjV6RFOtIP8I0B4ZTBRrlTT8NHHlZZSchQx3qReaoDeXhYM++M4So2AgFK9ZB0emRPA6JI1HkafzA2Ibg==} + engines: {node: ^16.0.0 || >=18.0.0} dependencies: - "@typescript-eslint/types": 6.5.0 + '@typescript-eslint/types': 6.9.0 eslint-visitor-keys: 3.4.3 dev: true + /@ungap/structured-clone@1.2.0: + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + dev: true + /@webassemblyjs/ast@1.11.6: - resolution: - { - integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==, - } + resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} dependencies: - "@webassemblyjs/helper-numbers": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + '@webassemblyjs/helper-numbers': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 dev: true /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: - { - integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==, - } + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} dev: true /@webassemblyjs/helper-api-error@1.11.6: - resolution: - { - integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==, - } + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} dev: true /@webassemblyjs/helper-buffer@1.11.6: - resolution: - { - integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==, - } + resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} dev: true /@webassemblyjs/helper-numbers@1.11.6: - resolution: - { - integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==, - } + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} dependencies: - "@webassemblyjs/floating-point-hex-parser": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@xtuc/long": 4.2.2 + '@webassemblyjs/floating-point-hex-parser': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@xtuc/long': 4.2.2 dev: true /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: - { - integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==, - } + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} dev: true /@webassemblyjs/helper-wasm-section@1.11.6: - resolution: - { - integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==, - } + resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 dev: true /@webassemblyjs/ieee754@1.11.6: - resolution: - { - integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==, - } + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} dependencies: - "@xtuc/ieee754": 1.2.0 + '@xtuc/ieee754': 1.2.0 dev: true /@webassemblyjs/leb128@1.11.6: - resolution: - { - integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==, - } + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} dependencies: - "@xtuc/long": 4.2.2 + '@xtuc/long': 4.2.2 dev: true /@webassemblyjs/utf8@1.11.6: - resolution: - { - integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==, - } + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} dev: true /@webassemblyjs/wasm-edit@1.11.6: - resolution: - { - integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==, - } + resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/helper-wasm-section": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - "@webassemblyjs/wasm-opt": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 - "@webassemblyjs/wast-printer": 1.11.6 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/helper-wasm-section': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 + '@webassemblyjs/wasm-opt': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 + '@webassemblyjs/wast-printer': 1.11.6 dev: true /@webassemblyjs/wasm-gen@1.11.6: - resolution: - { - integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==, - } + resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 dev: true /@webassemblyjs/wasm-opt@1.11.6: - resolution: - { - integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==, - } + resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 dev: true /@webassemblyjs/wasm-parser@1.11.6: - resolution: - { - integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==, - } + resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 dev: true /@webassemblyjs/wast-printer@1.11.6: - resolution: - { - integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==, - } + resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@xtuc/long": 4.2.2 + '@webassemblyjs/ast': 1.11.6 + '@xtuc/long': 4.2.2 dev: true - /@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.88.2): - resolution: - { - integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==, - } - engines: { node: ">=14.15.0" } + /@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.89.0): + resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==} + engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x dependencies: - webpack: 5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4) - webpack-cli: 5.1.4(webpack@5.88.2) + webpack: 5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack@5.89.0) dev: true - /@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.88.2): - resolution: - { - integrity: sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==, - } - engines: { node: ">=14.15.0" } + /@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.89.0): + resolution: {integrity: sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==} + engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x dependencies: - webpack: 5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4) - webpack-cli: 5.1.4(webpack@5.88.2) + webpack: 5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack@5.89.0) dev: true - /@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack@5.88.2): - resolution: - { - integrity: sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==, - } - engines: { node: ">=14.15.0" } + /@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack@5.89.0): + resolution: {integrity: sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==} + engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x - webpack-dev-server: "*" + webpack-dev-server: '*' peerDependenciesMeta: webpack-dev-server: optional: true dependencies: - webpack: 5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4) - webpack-cli: 5.1.4(webpack@5.88.2) + webpack: 5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack@5.89.0) dev: true /@xtuc/ieee754@1.2.0: - resolution: - { - integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==, - } + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} dev: true /@xtuc/long@4.2.2: - resolution: - { - integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, - } + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} dev: true /acorn-import-assertions@1.9.0(acorn@8.10.0): - resolution: - { - integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==, - } + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} peerDependencies: acorn: ^8 dependencies: @@ -4483,10 +3627,7 @@ packages: dev: true /acorn-jsx@5.3.2(acorn@8.10.0): - resolution: - { - integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, - } + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: @@ -4494,28 +3635,19 @@ packages: dev: true /acorn-walk@8.2.0: - resolution: - { - integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} + engines: {node: '>=0.4.0'} dev: true /acorn@8.10.0: - resolution: - { - integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} + engines: {node: '>=0.4.0'} hasBin: true dev: true /agent-base@6.0.2: - resolution: - { - integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, - } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} dependencies: debug: 4.3.4 transitivePeerDependencies: @@ -4523,10 +3655,7 @@ packages: dev: true /ajv-formats@2.1.1(ajv@8.12.0): - resolution: - { - integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, - } + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -4537,10 +3666,7 @@ packages: dev: true /ajv-keywords@3.5.2(ajv@6.12.6): - resolution: - { - integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==, - } + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} peerDependencies: ajv: ^6.9.1 dependencies: @@ -4548,10 +3674,7 @@ packages: dev: true /ajv-keywords@5.1.0(ajv@8.12.0): - resolution: - { - integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==, - } + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} peerDependencies: ajv: ^8.8.2 dependencies: @@ -4560,10 +3683,7 @@ packages: dev: true /ajv@6.12.6: - resolution: - { - integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, - } + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 @@ -4572,10 +3692,7 @@ packages: dev: true /ajv@8.12.0: - resolution: - { - integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==, - } + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -4584,276 +3701,196 @@ packages: dev: true /ansi-escapes@4.3.2: - resolution: - { - integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} dependencies: type-fest: 0.21.3 dev: true /ansi-regex@5.0.1: - resolution: - { - integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} dev: true /ansi-styles@3.2.1: - resolution: - { - integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} dependencies: color-convert: 1.9.3 /ansi-styles@4.3.0: - resolution: - { - integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} dependencies: color-convert: 2.0.1 dev: true /ansi-styles@5.2.0: - resolution: - { - integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} dev: true /anymatch@3.1.3: - resolution: - { - integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 dev: true /arg@4.1.3: - resolution: - { - integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, - } + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} dev: true /argparse@1.0.10: - resolution: - { - integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, - } + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: sprintf-js: 1.0.3 dev: true /argparse@2.0.1: - resolution: - { - integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, - } + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} dev: true /argv@0.0.2: - resolution: - { - integrity: sha512-dEamhpPEwRUBpLNHeuCm/v+g0anFByHahxodVO/BbAarHVBBg2MccCwf9K+o1Pof+2btdnkJelYVUWjW/VrATw==, - } - engines: { node: ">=0.6.10" } + resolution: {integrity: sha512-dEamhpPEwRUBpLNHeuCm/v+g0anFByHahxodVO/BbAarHVBBg2MccCwf9K+o1Pof+2btdnkJelYVUWjW/VrATw==} + engines: {node: '>=0.6.10'} deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dev: true /aria-query@5.3.0: - resolution: - { - integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==, - } + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} dependencies: dequal: 2.0.3 dev: true /array-buffer-byte-length@1.0.0: - resolution: - { - integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, - } + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 is-array-buffer: 3.0.2 dev: true - /array-includes@3.1.6: - resolution: - { - integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==, - } - engines: { node: ">= 0.4" } + /array-includes@3.1.7: + resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 is-string: 1.0.7 dev: true /array-union@2.1.0: - resolution: - { - integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} dev: true /array.prototype.findlastindex@1.2.3: - resolution: - { - integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==, - } - engines: { node: ">= 0.4" } - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - es-shim-unscopables: 1.0.0 - get-intrinsic: 1.2.1 - dev: true - - /array.prototype.flat@1.3.1: - resolution: - { - integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==, - } - engines: { node: ">= 0.4" } - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - es-shim-unscopables: 1.0.0 - dev: true - - /array.prototype.flatmap@1.3.1: - resolution: - { - integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==, - } - engines: { node: ">= 0.4" } - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - es-shim-unscopables: 1.0.0 - dev: true - - /array.prototype.tosorted@1.1.1: - resolution: - { - integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==, - } - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - es-shim-unscopables: 1.0.0 - get-intrinsic: 1.2.1 - dev: true - - /arraybuffer.prototype.slice@1.0.1: - resolution: - { - integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 + dev: true + + /array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.tosorted@1.1.2: + resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 + dev: true + + /arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 - call-bind: 1.0.2 - define-properties: 1.2.0 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 is-array-buffer: 3.0.2 is-shared-array-buffer: 1.0.2 dev: true /ast-types-flow@0.0.7: - resolution: - { - integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==, - } + resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} dev: true /asynciterator.prototype@1.0.0: - resolution: - { - integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==, - } + resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} dependencies: has-symbols: 1.0.3 dev: true /author-regex@1.0.0: - resolution: - { - integrity: sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g==} + engines: {node: '>=0.8'} dev: true /available-typed-arrays@1.0.5: - resolution: - { - integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, - } - engines: { node: ">= 0.4" } - dev: true - - /aws-cdk@2.93.0: - resolution: - { - integrity: sha512-C0o7rzlXbQ3othvQ9uZamRwr741MSX/9eZ74zNJvpkX5Eitx/XoQYwUHeD+cbb4lKHMi7m2SwJfx3yOEkpu9OQ==, - } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} + dev: true + + /aws-cdk@2.102.0: + resolution: {integrity: sha512-q+FQSeX/25QvZ1/Fxjr7GydMY/WR/+iTif2EiaN7rUlEEZx27o0I5k1p9YmTNUGiBl13ZvggIJjwTRmnL7E/lg==} + engines: {node: '>= 14.15.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 dev: true - /axe-core@4.7.2: - resolution: - { - integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==, - } - engines: { node: ">=4" } + /axe-core@4.8.2: + resolution: {integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==} + engines: {node: '>=4'} dev: true /axobject-query@3.2.1: - resolution: - { - integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==, - } + resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} dependencies: dequal: 2.0.3 dev: true - /babel-jest@29.6.4(@babel/core@7.22.11): - resolution: - { - integrity: sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /babel-jest@29.7.0(@babel/core@7.23.2): + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@babel/core": ^7.8.0 + '@babel/core': ^7.8.0 dependencies: - "@babel/core": 7.22.11 - "@jest/transform": 29.6.4 - "@types/babel__core": 7.20.1 + '@babel/core': 7.23.2 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.3 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.22.11) + babel-preset-jest: 29.6.3(@babel/core@7.23.2) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -4861,32 +3898,26 @@ packages: - supports-color dev: true - /babel-loader@9.1.3(@babel/core@7.22.11)(webpack@5.88.2): - resolution: - { - integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==, - } - engines: { node: ">= 14.15.0" } + /babel-loader@9.1.3(@babel/core@7.23.2)(webpack@5.89.0): + resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} + engines: {node: '>= 14.15.0'} peerDependencies: - "@babel/core": ^7.12.0 - webpack: ">=5" + '@babel/core': ^7.12.0 + webpack: '>=5' dependencies: - "@babel/core": 7.22.11 + '@babel/core': 7.23.2 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4) + webpack: 5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4) dev: true /babel-plugin-istanbul@6.1.1: - resolution: - { - integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, - } - engines: { node: ">=8" } - dependencies: - "@babel/helper-plugin-utils": 7.22.5 - "@istanbuljs/load-nyc-config": 1.1.0 - "@istanbuljs/schema": 0.1.3 + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + dependencies: + '@babel/helper-plugin-utils': 7.22.5 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.1 test-exclude: 6.0.0 transitivePeerDependencies: @@ -4894,272 +3925,195 @@ packages: dev: true /babel-plugin-jest-hoist@29.6.3: - resolution: - { - integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/template": 7.22.5 - "@babel/types": 7.22.11 - "@types/babel__core": 7.20.1 - "@types/babel__traverse": 7.20.1 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 + '@types/babel__core': 7.20.3 + '@types/babel__traverse': 7.20.3 dev: true - /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==, - } + /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2): + resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/compat-data": 7.22.9 - "@babel/core": 7.22.11 - "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.22.11) + '@babel/compat-data': 7.23.2 + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.11): - resolution: - { - integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==, - } + /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.2): + resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.22.11) - core-js-compat: 3.32.1 + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) + core-js-compat: 3.33.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.11): - resolution: - { - integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==, - } + /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2): + resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) transitivePeerDependencies: - supports-color dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.11): - resolution: - { - integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, - } + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.2): + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.22.11) - "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.22.11) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.22.11) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.22.11) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.22.11) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) dev: true - /babel-preset-jest@29.6.3(@babel/core@7.22.11): - resolution: - { - integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /babel-preset-jest@29.6.3(@babel/core@7.23.2): + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.22.11 + '@babel/core': 7.23.2 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.11) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2) dev: true /balanced-match@1.0.2: - resolution: - { - integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, - } + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} dev: true /brace-expansion@1.1.11: - resolution: - { - integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, - } + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 dev: true /braces@3.0.2: - resolution: - { - integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} dependencies: fill-range: 7.0.1 dev: true - /browserslist@4.21.10: - resolution: - { - integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==, - } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + /browserslist@4.22.1: + resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001524 - electron-to-chromium: 1.4.506 + caniuse-lite: 1.0.30001553 + electron-to-chromium: 1.4.566 node-releases: 2.0.13 - update-browserslist-db: 1.0.11(browserslist@4.21.10) + update-browserslist-db: 1.0.13(browserslist@4.22.1) /bser@2.1.1: - resolution: - { - integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, - } + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: node-int64: 0.4.0 dev: true /buffer-from@1.1.2: - resolution: - { - integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, - } + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} dev: true /busboy@1.6.0: - resolution: - { - integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, - } - engines: { node: ">=10.16.0" } + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} dependencies: streamsearch: 1.1.0 dev: false - /call-bind@1.0.2: - resolution: - { - integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, - } + /call-bind@1.0.5: + resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.2.1 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.1.1 dev: true /callsites@3.1.0: - resolution: - { - integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} dev: true /camelcase@5.3.1: - resolution: - { - integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} dev: true /camelcase@6.3.0: - resolution: - { - integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} dev: true - /caniuse-lite@1.0.30001524: - resolution: - { - integrity: sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==, - } + /caniuse-lite@1.0.30001553: + resolution: {integrity: sha512-N0ttd6TrFfuqKNi+pMgWJTb9qrdJu4JSpgPFLe/lrD19ugC6fZgF0pUewRowDwzdDnb9V41mFcdlYgl/PyKf4A==} /chalk@2.4.2: - resolution: - { - integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 /chalk@4.1.2: - resolution: - { - integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 dev: true /char-regex@1.0.2: - resolution: - { - integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} dev: true /chrome-trace-event@1.0.3: - resolution: - { - integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} + engines: {node: '>=6.0'} dev: true - /ci-info@3.8.0: - resolution: - { - integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==, - } - engines: { node: ">=8" } + /ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} dev: true /cjs-module-lexer@1.2.3: - resolution: - { - integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==, - } + resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} dev: true /client-only@0.0.1: - resolution: - { - integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, - } + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} dev: false /cliui@8.0.1: - resolution: - { - integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 @@ -5167,11 +4121,8 @@ packages: dev: true /clone-deep@4.0.1: - resolution: - { - integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 @@ -5179,19 +4130,13 @@ packages: dev: true /co@4.6.0: - resolution: - { - integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==, - } - engines: { iojs: ">= 1.0.0", node: ">= 0.12.0" } + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} dev: true /codecov@3.8.3: - resolution: - { - integrity: sha512-Y8Hw+V3HgR7V71xWH2vQ9lyS358CbGCldWlJFR0JirqoGtOoas3R3/OclRTvgUYFK29mmJICDPauVKmpqbwhOA==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-Y8Hw+V3HgR7V71xWH2vQ9lyS358CbGCldWlJFR0JirqoGtOoas3R3/OclRTvgUYFK29mmJICDPauVKmpqbwhOA==} + engines: {node: '>=4.0'} deprecated: https://about.codecov.io/blog/codecov-uploader-deprecation-plan/ hasBin: true dependencies: @@ -5206,144 +4151,105 @@ packages: dev: true /collect-v8-coverage@1.0.2: - resolution: - { - integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==, - } + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} dev: true /color-convert@1.9.3: - resolution: - { - integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, - } + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 /color-convert@2.0.1: - resolution: - { - integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, - } - engines: { node: ">=7.0.0" } + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 dev: true /color-name@1.1.3: - resolution: - { - integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, - } + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} /color-name@1.1.4: - resolution: - { - integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, - } + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} dev: true /colorette@2.0.20: - resolution: - { - integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, - } + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} dev: true /commander@10.0.1: - resolution: - { - integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} dev: true /commander@2.20.3: - resolution: - { - integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, - } + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} dev: true /commander@4.1.1: - resolution: - { - integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} dev: true /common-path-prefix@3.0.0: - resolution: - { - integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==, - } + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} dev: true /concat-map@0.0.1: - resolution: - { - integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, - } + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} dev: true - /constructs@10.2.70: - resolution: - { - integrity: sha512-z6zr1E8K/9tzJbCQzY0UGX0/oVKPFKu9C/mzEnghCG6TAJINnvlq0CMKm63XqqeMleadZYm5T3sZGJKcxJS/Pg==, - } - engines: { node: ">= 16.14.0" } + /constructs@10.3.0: + resolution: {integrity: sha512-vbK8i3rIb/xwZxSpTjz3SagHn1qq9BChLEfy5Hf6fB3/2eFbrwt2n9kHwQcS0CPTRBesreeAcsJfMq2229FnbQ==} + engines: {node: '>= 16.14.0'} dev: true - /convert-source-map@1.9.0: - resolution: - { - integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, - } - /convert-source-map@2.0.0: - resolution: - { - integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, - } - dev: true + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - /core-js-compat@3.32.1: - resolution: - { - integrity: sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==, - } + /core-js-compat@3.33.1: + resolution: {integrity: sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==} dependencies: - browserslist: 4.21.10 + browserslist: 4.22.1 dev: true /cosmiconfig@7.1.0: - resolution: - { - integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} dependencies: - "@types/parse-json": 4.0.0 + '@types/parse-json': 4.0.1 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 dev: true + /create-jest@29.7.0(@types/node@20.8.8): + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@20.8.8) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + dev: true + /create-require@1.1.1: - resolution: - { - integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, - } + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} dev: true /cross-spawn@7.0.3: - resolution: - { - integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} dependencies: path-key: 3.1.1 shebang-command: 2.0.0 @@ -5351,26 +4257,17 @@ packages: dev: true /csstype@3.1.2: - resolution: - { - integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==, - } + resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} dev: true /damerau-levenshtein@1.0.8: - resolution: - { - integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, - } + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} dev: true /debug@3.2.7: - resolution: - { - integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, - } + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true @@ -5379,13 +4276,10 @@ packages: dev: true /debug@4.3.4: - resolution: - { - integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true @@ -5393,10 +4287,7 @@ packages: ms: 2.1.2 /dedent@1.5.1: - resolution: - { - integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==, - } + resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: @@ -5405,173 +4296,129 @@ packages: dev: true /deep-is@0.1.4: - resolution: - { - integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, - } + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true /deepmerge@4.3.1: - resolution: - { - integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} dev: true - /define-properties@1.2.0: - resolution: - { - integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, - } - engines: { node: ">= 0.4" } + /define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + engines: {node: '>= 0.4'} dependencies: - has-property-descriptors: 1.0.0 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + has-property-descriptors: 1.0.1 object-keys: 1.1.1 dev: true /dequal@2.0.3: - resolution: - { - integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} dev: true /detect-newline@3.1.0: - resolution: - { - integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} dev: true /diff-sequences@29.6.3: - resolution: - { - integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true /diff@4.0.2: - resolution: - { - integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, - } - engines: { node: ">=0.3.1" } + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} dev: true /dir-glob@3.0.1: - resolution: - { - integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} dependencies: path-type: 4.0.0 dev: true /doctrine@2.1.0: - resolution: - { - integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 dev: true /doctrine@3.0.0: - resolution: - { - integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 dev: true - /electron-to-chromium@1.4.506: - resolution: - { - integrity: sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==, - } + /electron-to-chromium@1.4.566: + resolution: {integrity: sha512-mv+fAy27uOmTVlUULy15U3DVJ+jg+8iyKH1bpwboCRhtDC69GKf1PPTZvEIhCyDr81RFqfxZJYrbgp933a1vtg==} /emittery@0.13.1: - resolution: - { - integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} dev: true /emoji-regex@8.0.0: - resolution: - { - integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, - } + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} dev: true /emoji-regex@9.2.2: - resolution: - { - integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, - } + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} dev: true /enhanced-resolve@5.15.0: - resolution: - { - integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} + engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 dev: true /envinfo@7.10.0: - resolution: - { - integrity: sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==} + engines: {node: '>=4'} hasBin: true dev: true /error-ex@1.3.2: - resolution: - { - integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, - } + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 dev: true - /es-abstract@1.22.1: - resolution: - { - integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==, - } - engines: { node: ">= 0.4" } + /es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.1 + arraybuffer.prototype.slice: 1.0.2 available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 function.prototype.name: 1.1.6 - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 get-symbol-description: 1.0.0 globalthis: 1.0.3 gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 + has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.5 + hasown: 2.0.0 + internal-slot: 1.0.6 is-array-buffer: 3.0.2 is-callable: 1.2.7 is-negative-zero: 2.0.2 @@ -5580,241 +4427,196 @@ packages: is-string: 1.0.7 is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.12.3 + object-inspect: 1.13.1 object-keys: 1.1.1 object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 - safe-array-concat: 1.0.0 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.7 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 typed-array-buffer: 1.0.0 typed-array-byte-length: 1.0.0 typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.11 + which-typed-array: 1.1.13 dev: true - /es-iterator-helpers@1.0.14: - resolution: - { - integrity: sha512-JgtVnwiuoRuzLvqelrvN3Xu7H9bu2ap/kQ2CrM62iidP8SKuD99rWU3CJy++s7IVL2qb/AjXPGR/E7i9ngd/Cw==, - } + /es-iterator-helpers@1.0.15: + resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} dependencies: asynciterator.prototype: 1.0.0 - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - es-set-tostringtag: 2.0.1 - function-bind: 1.1.1 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-set-tostringtag: 2.0.2 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 globalthis: 1.0.3 - has-property-descriptors: 1.0.0 + has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.5 - iterator.prototype: 1.1.1 - safe-array-concat: 1.0.0 + internal-slot: 1.0.6 + iterator.prototype: 1.1.2 + safe-array-concat: 1.0.1 dev: true - /es-module-lexer@1.3.0: - resolution: - { - integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==, - } + /es-module-lexer@1.3.1: + resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} dev: true - /es-set-tostringtag@2.0.1: - resolution: - { - integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==, - } - engines: { node: ">= 0.4" } + /es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} + engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 has-tostringtag: 1.0.0 + hasown: 2.0.0 dev: true - /es-shim-unscopables@1.0.0: - resolution: - { - integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, - } + /es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} dependencies: - has: 1.0.3 + hasown: 2.0.0 dev: true /es-to-primitive@1.2.1: - resolution: - { - integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 dev: true - /esbuild@0.19.2: - resolution: - { - integrity: sha512-G6hPax8UbFakEj3hWO0Vs52LQ8k3lnBhxZWomUJDxfz3rZTLqF5k/FCzuNdLx2RbpBiQQF9H9onlDDH1lZsnjg==, - } - engines: { node: ">=12" } + /esbuild@0.19.5: + resolution: {integrity: sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==} + engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - "@esbuild/android-arm": 0.19.2 - "@esbuild/android-arm64": 0.19.2 - "@esbuild/android-x64": 0.19.2 - "@esbuild/darwin-arm64": 0.19.2 - "@esbuild/darwin-x64": 0.19.2 - "@esbuild/freebsd-arm64": 0.19.2 - "@esbuild/freebsd-x64": 0.19.2 - "@esbuild/linux-arm": 0.19.2 - "@esbuild/linux-arm64": 0.19.2 - "@esbuild/linux-ia32": 0.19.2 - "@esbuild/linux-loong64": 0.19.2 - "@esbuild/linux-mips64el": 0.19.2 - "@esbuild/linux-ppc64": 0.19.2 - "@esbuild/linux-riscv64": 0.19.2 - "@esbuild/linux-s390x": 0.19.2 - "@esbuild/linux-x64": 0.19.2 - "@esbuild/netbsd-x64": 0.19.2 - "@esbuild/openbsd-x64": 0.19.2 - "@esbuild/sunos-x64": 0.19.2 - "@esbuild/win32-arm64": 0.19.2 - "@esbuild/win32-ia32": 0.19.2 - "@esbuild/win32-x64": 0.19.2 + '@esbuild/android-arm': 0.19.5 + '@esbuild/android-arm64': 0.19.5 + '@esbuild/android-x64': 0.19.5 + '@esbuild/darwin-arm64': 0.19.5 + '@esbuild/darwin-x64': 0.19.5 + '@esbuild/freebsd-arm64': 0.19.5 + '@esbuild/freebsd-x64': 0.19.5 + '@esbuild/linux-arm': 0.19.5 + '@esbuild/linux-arm64': 0.19.5 + '@esbuild/linux-ia32': 0.19.5 + '@esbuild/linux-loong64': 0.19.5 + '@esbuild/linux-mips64el': 0.19.5 + '@esbuild/linux-ppc64': 0.19.5 + '@esbuild/linux-riscv64': 0.19.5 + '@esbuild/linux-s390x': 0.19.5 + '@esbuild/linux-x64': 0.19.5 + '@esbuild/netbsd-x64': 0.19.5 + '@esbuild/openbsd-x64': 0.19.5 + '@esbuild/sunos-x64': 0.19.5 + '@esbuild/win32-arm64': 0.19.5 + '@esbuild/win32-ia32': 0.19.5 + '@esbuild/win32-x64': 0.19.5 dev: true /escalade@3.1.1: - resolution: - { - integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} /escape-string-regexp@1.0.5: - resolution: - { - integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} /escape-string-regexp@2.0.0: - resolution: - { - integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} dev: true /escape-string-regexp@4.0.0: - resolution: - { - integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} dev: true - /eslint-config-next@13.4.19(eslint@8.48.0)(typescript@5.2.2): - resolution: - { - integrity: sha512-WE8367sqMnjhWHvR5OivmfwENRQ1ixfNE9hZwQqNCsd+iM3KnuMc1V8Pt6ytgjxjf23D+xbesADv9x3xaKfT3g==, - } + /eslint-config-next@13.5.6(eslint@8.52.0)(typescript@5.2.2): + resolution: {integrity: sha512-o8pQsUHTo9aHqJ2YiZDym5gQAMRf7O2HndHo/JZeY7TDD+W4hk6Ma8Vw54RHiBeb7OWWO5dPirQB+Is/aVQ7Kg==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 - typescript: ">=3.3.1" + typescript: '>=3.3.1' peerDependenciesMeta: typescript: optional: true dependencies: - "@next/eslint-plugin-next": 13.4.19 - "@rushstack/eslint-patch": 1.3.3 - "@typescript-eslint/parser": 6.5.0(eslint@8.48.0)(typescript@5.2.2) - eslint: 8.48.0 + '@next/eslint-plugin-next': 13.5.6 + '@rushstack/eslint-patch': 1.5.1 + '@typescript-eslint/parser': 6.9.0(eslint@8.52.0)(typescript@5.2.2) + eslint: 8.52.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.48.0) - eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.48.0) - eslint-plugin-react: 7.33.2(eslint@8.48.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.48.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.52.0) + eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.52.0) + eslint-plugin-react: 7.33.2(eslint@8.52.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.52.0) typescript: 5.2.2 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color dev: true - /eslint-config-prettier@9.0.0(eslint@8.48.0): - resolution: - { - integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==, - } + /eslint-config-prettier@9.0.0(eslint@8.52.0): + resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==} hasBin: true peerDependencies: - eslint: ">=7.0.0" + eslint: '>=7.0.0' dependencies: - eslint: 8.48.0 + eslint: 8.52.0 dev: true /eslint-import-resolver-node@0.3.9: - resolution: - { - integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==, - } + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} dependencies: debug: 3.2.7 - is-core-module: 2.13.0 - resolve: 1.22.4 + is-core-module: 2.13.1 + resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: true - /eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.48.0): - resolution: - { - integrity: sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==, - } - engines: { node: ^14.18.0 || >=16.0.0 } + /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.52.0): + resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - eslint: "*" - eslint-plugin-import: "*" + eslint: '*' + eslint-plugin-import: '*' dependencies: debug: 4.3.4 enhanced-resolve: 5.15.0 - eslint: 8.48.0 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0) - eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0) + eslint: 8.52.0 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0) + eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0) fast-glob: 3.3.1 - get-tsconfig: 4.7.0 - is-core-module: 2.13.0 + get-tsconfig: 4.7.2 + is-core-module: 2.13.1 is-glob: 4.0.3 transitivePeerDependencies: - - "@typescript-eslint/parser" + - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color dev: true - /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0): - resolution: - { - integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==, - } - engines: { node: ">=4" } + /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0): + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} + engines: {node: '>=4'} peerDependencies: - "@typescript-eslint/parser": "*" - eslint: "*" - eslint-import-resolver-node: "*" - eslint-import-resolver-typescript: "*" - eslint-import-resolver-webpack: "*" + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' peerDependenciesMeta: - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true eslint: optional: true @@ -5825,40 +4627,37 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - "@typescript-eslint/parser": 6.5.0(eslint@8.48.0)(typescript@5.2.2) + '@typescript-eslint/parser': 6.9.0(eslint@8.52.0)(typescript@5.2.2) debug: 3.2.7 - eslint: 8.48.0 + eslint: 8.52.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.48.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.52.0) transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0): - resolution: - { - integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==, - } - engines: { node: ">=4" } + /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0): + resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==} + engines: {node: '>=4'} peerDependencies: - "@typescript-eslint/parser": "*" + '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 peerDependenciesMeta: - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true dependencies: - "@typescript-eslint/parser": 6.5.0(eslint@8.48.0)(typescript@5.2.2) - array-includes: 3.1.6 + '@typescript-eslint/parser': 6.9.0(eslint@8.52.0)(typescript@5.2.2) + array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 - array.prototype.flat: 1.3.1 - array.prototype.flatmap: 1.3.1 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.48.0 + eslint: 8.52.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0) - has: 1.0.3 - is-core-module: 2.13.0 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.9.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0) + hasown: 2.0.0 + is-core-module: 2.13.1 is-glob: 4.0.3 minimatch: 3.1.2 object.fromentries: 2.0.7 @@ -5872,26 +4671,23 @@ packages: - supports-color dev: true - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.48.0): - resolution: - { - integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==, - } - engines: { node: ">=4.0" } + /eslint-plugin-jsx-a11y@6.7.1(eslint@8.52.0): + resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} + engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - "@babel/runtime": 7.22.11 + '@babel/runtime': 7.23.2 aria-query: 5.3.0 - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 ast-types-flow: 0.0.7 - axe-core: 4.7.2 + axe-core: 4.8.2 axobject-query: 3.2.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.48.0 - has: 1.0.3 + eslint: 8.52.0 + has: 1.0.4 jsx-ast-utils: 3.3.5 language-tags: 1.0.5 minimatch: 3.1.2 @@ -5900,33 +4696,27 @@ packages: semver: 6.3.1 dev: true - /eslint-plugin-react-hooks@4.6.0(eslint@8.48.0): - resolution: - { - integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==, - } - engines: { node: ">=10" } + /eslint-plugin-react-hooks@4.6.0(eslint@8.52.0): + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.48.0 + eslint: 8.52.0 dev: true - /eslint-plugin-react@7.33.2(eslint@8.48.0): - resolution: - { - integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==, - } - engines: { node: ">=4" } + /eslint-plugin-react@7.33.2(eslint@8.52.0): + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} + engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - array.prototype.tosorted: 1.1.1 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 - es-iterator-helpers: 1.0.14 - eslint: 8.48.0 + es-iterator-helpers: 1.0.15 + eslint: 8.52.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 @@ -5935,56 +4725,45 @@ packages: object.hasown: 1.1.3 object.values: 1.1.7 prop-types: 15.8.1 - resolve: 2.0.0-next.4 + resolve: 2.0.0-next.5 semver: 6.3.1 - string.prototype.matchall: 4.0.9 + string.prototype.matchall: 4.0.10 dev: true /eslint-scope@5.1.1: - resolution: - { - integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 dev: true /eslint-scope@7.2.2: - resolution: - { - integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 dev: true /eslint-visitor-keys@3.4.3: - resolution: - { - integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - dev: true - - /eslint@8.48.0: - resolution: - { - integrity: sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /eslint@8.52.0: + resolution: {integrity: sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.48.0) - "@eslint-community/regexpp": 4.8.0 - "@eslint/eslintrc": 2.1.2 - "@eslint/js": 8.48.0 - "@humanwhocodes/config-array": 0.11.11 - "@humanwhocodes/module-importer": 1.0.1 - "@nodelib/fs.walk": 1.2.8 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0) + '@eslint-community/regexpp': 4.9.1 + '@eslint/eslintrc': 2.1.2 + '@eslint/js': 8.52.0 + '@humanwhocodes/config-array': 0.11.13 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -6000,7 +4779,7 @@ packages: file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.21.0 + globals: 13.23.0 graphemer: 1.4.0 ignore: 5.2.4 imurmurhash: 0.1.4 @@ -6020,11 +4799,8 @@ packages: dev: true /espree@9.6.1: - resolution: - { - integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.10.0 acorn-jsx: 5.3.2(acorn@8.10.0) @@ -6032,72 +4808,48 @@ packages: dev: true /esprima@4.0.1: - resolution: - { - integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} hasBin: true dev: true /esquery@1.5.0: - resolution: - { - integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 dev: true /esrecurse@4.3.0: - resolution: - { - integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 dev: true /estraverse@4.3.0: - resolution: - { - integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} dev: true /estraverse@5.3.0: - resolution: - { - integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} dev: true /esutils@2.0.3: - resolution: - { - integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} dev: true /events@3.3.0: - resolution: - { - integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, - } - engines: { node: ">=0.8.x" } + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} dev: true /execa@5.1.1: - resolution: - { - integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -6111,195 +4863,140 @@ packages: dev: true /exit@0.1.2: - resolution: - { - integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} dev: true - /expect@29.6.4: - resolution: - { - integrity: sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/expect-utils": 29.6.4 + '@jest/expect-utils': 29.7.0 jest-get-type: 29.6.3 - jest-matcher-utils: 29.6.4 - jest-message-util: 29.6.3 - jest-util: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 dev: true /fast-deep-equal@3.1.3: - resolution: - { - integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, - } + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true /fast-glob@3.3.1: - resolution: - { - integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==, - } - engines: { node: ">=8.6.0" } - dependencies: - "@nodelib/fs.stat": 2.0.5 - "@nodelib/fs.walk": 1.2.8 + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.5 dev: true /fast-json-stable-stringify@2.1.0: - resolution: - { - integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, - } + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: true /fast-levenshtein@2.0.6: - resolution: - { - integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, - } + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: true /fast-url-parser@1.1.3: - resolution: - { - integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==, - } + resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} dependencies: punycode: 1.4.1 dev: true /fastest-levenshtein@1.0.16: - resolution: - { - integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==, - } - engines: { node: ">= 4.9.1" } + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} dev: true /fastq@1.15.0: - resolution: - { - integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, - } + resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} dependencies: reusify: 1.0.4 dev: true /fb-watchman@2.0.2: - resolution: - { - integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==, - } + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 dev: true /file-entry-cache@6.0.1: - resolution: - { - integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, - } - engines: { node: ^10.12.0 || >=12.0.0 } + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flat-cache: 3.1.0 + flat-cache: 3.1.1 dev: true /fill-range@7.0.1: - resolution: - { - integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 dev: true /find-cache-dir@4.0.0: - resolution: - { - integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} + engines: {node: '>=14.16'} dependencies: common-path-prefix: 3.0.0 pkg-dir: 7.0.0 dev: true /find-up@4.1.0: - resolution: - { - integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} dependencies: locate-path: 5.0.0 path-exists: 4.0.0 dev: true /find-up@5.0.0: - resolution: - { - integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} dependencies: locate-path: 6.0.0 path-exists: 4.0.0 dev: true /find-up@6.3.0: - resolution: - { - integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: locate-path: 7.2.0 path-exists: 5.0.0 dev: true - /flat-cache@3.1.0: - resolution: - { - integrity: sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==, - } - engines: { node: ">=12.0.0" } + /flat-cache@3.1.1: + resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==} + engines: {node: '>=12.0.0'} dependencies: - flatted: 3.2.7 - keyv: 4.5.3 + flatted: 3.2.9 + keyv: 4.5.4 rimraf: 3.0.2 dev: true - /flatted@3.2.7: - resolution: - { - integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, - } + /flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + dev: true + + /flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} dev: true /for-each@0.3.3: - resolution: - { - integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, - } + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: is-callable: 1.2.7 dev: true /fs-extra@10.1.0: - resolution: - { - integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -6307,155 +5004,104 @@ packages: dev: true /fs.realpath@1.0.0: - resolution: - { - integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, - } + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} dev: true /fsevents@2.3.2: - resolution: - { - integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, - } - engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true dev: true optional: true /fsevents@2.3.3: - resolution: - { - integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, - } - engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true dev: true optional: true - /function-bind@1.1.1: - resolution: - { - integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, - } + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} dev: true /function.prototype.name@1.1.6: - resolution: - { - integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, - } - engines: { node: ">= 0.4" } - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 functions-have-names: 1.2.3 dev: true /functions-have-names@1.2.3: - resolution: - { - integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, - } + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true /gensync@1.0.0-beta.2: - resolution: - { - integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} /get-caller-file@2.0.5: - resolution: - { - integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, - } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} dev: true - /get-intrinsic@1.2.1: - resolution: - { - integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, - } + /get-intrinsic@1.2.2: + resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} dependencies: - function-bind: 1.1.1 - has: 1.0.3 + function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 + hasown: 2.0.0 dev: true /get-package-type@0.1.0: - resolution: - { - integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} dev: true /get-stream@6.0.1: - resolution: - { - integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} dev: true /get-symbol-description@1.0.0: - resolution: - { - integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 dev: true - /get-tsconfig@4.7.0: - resolution: - { - integrity: sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==, - } + /get-tsconfig@4.7.2: + resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} dependencies: resolve-pkg-maps: 1.0.0 dev: true /glob-parent@5.1.2: - resolution: - { - integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 dev: true /glob-parent@6.0.2: - resolution: - { - integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} dependencies: is-glob: 4.0.3 dev: true /glob-to-regexp@0.4.1: - resolution: - { - integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, - } + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} /glob@7.1.7: - resolution: - { - integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==, - } + resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -6466,10 +5112,7 @@ packages: dev: true /glob@7.2.3: - resolution: - { - integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, - } + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -6480,38 +5123,26 @@ packages: dev: true /globals@11.12.0: - resolution: - { - integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, - } - engines: { node: ">=4" } - - /globals@13.21.0: - resolution: - { - integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + /globals@13.23.0: + resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} + engines: {node: '>=8'} dependencies: type-fest: 0.20.2 dev: true /globalthis@1.0.3: - resolution: - { - integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} dependencies: - define-properties: 1.2.0 + define-properties: 1.2.1 dev: true /globby@11.1.0: - resolution: - { - integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -6522,115 +5153,78 @@ packages: dev: true /google-protobuf@3.21.2: - resolution: - { - integrity: sha512-3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA==, - } + resolution: {integrity: sha512-3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA==} /gopd@1.0.1: - resolution: - { - integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, - } + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 dev: true /graceful-fs@4.2.11: - resolution: - { - integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, - } + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} /graphemer@1.4.0: - resolution: - { - integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, - } + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} dev: true /has-bigints@1.0.2: - resolution: - { - integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, - } + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} dev: true /has-flag@3.0.0: - resolution: - { - integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} /has-flag@4.0.0: - resolution: - { - integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} dev: true - /has-property-descriptors@1.0.0: - resolution: - { - integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, - } + /has-property-descriptors@1.0.1: + resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 dev: true /has-proto@1.0.1: - resolution: - { - integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} dev: true /has-symbols@1.0.3: - resolution: - { - integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} dev: true /has-tostringtag@1.0.0: - resolution: - { - integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 dev: true - /has@1.0.3: - resolution: - { - integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, - } - engines: { node: ">= 0.4.0" } + /has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} + dev: true + + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} dependencies: - function-bind: 1.1.1 + function-bind: 1.1.2 dev: true /html-escaper@2.0.2: - resolution: - { - integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, - } + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true /http-proxy-agent@4.0.1: - resolution: - { - integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} dependencies: - "@tootallnate/once": 1.1.2 + '@tootallnate/once': 1.1.2 agent-base: 6.0.2 debug: 4.3.4 transitivePeerDependencies: @@ -6638,11 +5232,8 @@ packages: dev: true /https-proxy-agent@5.0.1: - resolution: - { - integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 debug: 4.3.4 @@ -6651,56 +5242,38 @@ packages: dev: true /human-signals@2.1.0: - resolution: - { - integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, - } - engines: { node: ">=10.17.0" } + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} dev: true /husky@8.0.3: - resolution: - { - integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} + engines: {node: '>=14'} hasBin: true dev: true /ignore-walk@3.0.4: - resolution: - { - integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==, - } + resolution: {integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==} dependencies: minimatch: 3.1.2 dev: true /ignore@5.2.4: - resolution: - { - integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} + engines: {node: '>= 4'} dev: true /import-fresh@3.3.0: - resolution: - { - integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 dev: true /import-local@3.1.0: - resolution: - { - integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} hasBin: true dependencies: pkg-dir: 4.2.0 @@ -6708,376 +5281,253 @@ packages: dev: true /imurmurhash@0.1.4: - resolution: - { - integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, - } - engines: { node: ">=0.8.19" } + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} dev: true /inflight@1.0.6: - resolution: - { - integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, - } + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: once: 1.4.0 wrappy: 1.0.2 dev: true /inherits@2.0.4: - resolution: - { - integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, - } + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} dev: true - /internal-slot@1.0.5: - resolution: - { - integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==, - } - engines: { node: ">= 0.4" } + /internal-slot@1.0.6: + resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} + engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 + hasown: 2.0.0 side-channel: 1.0.4 dev: true /interpret@3.1.1: - resolution: - { - integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==} + engines: {node: '>=10.13.0'} dev: true /is-array-buffer@3.0.2: - resolution: - { - integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, - } + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-typed-array: 1.1.12 dev: true /is-arrayish@0.2.1: - resolution: - { - integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, - } + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: true /is-async-function@2.0.0: - resolution: - { - integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-bigint@1.0.4: - resolution: - { - integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, - } + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 dev: true /is-boolean-object@1.1.2: - resolution: - { - integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true /is-callable@1.2.7: - resolution: - { - integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} dev: true - /is-core-module@2.13.0: - resolution: - { - integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==, - } + /is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} dependencies: - has: 1.0.3 + hasown: 2.0.0 dev: true /is-date-object@1.0.5: - resolution: - { - integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-extglob@2.1.1: - resolution: - { - integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} dev: true /is-finalizationregistry@1.0.2: - resolution: - { - integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==, - } + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-fullwidth-code-point@3.0.0: - resolution: - { - integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} dev: true /is-generator-fn@2.1.0: - resolution: - { - integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} dev: true /is-generator-function@1.0.10: - resolution: - { - integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-glob@4.0.3: - resolution: - { - integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 dev: true /is-map@2.0.2: - resolution: - { - integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==, - } + resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} dev: true /is-negative-zero@2.0.2: - resolution: - { - integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} dev: true /is-number-object@1.0.7: - resolution: - { - integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-number@7.0.0: - resolution: - { - integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, - } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} dev: true /is-path-inside@3.0.3: - resolution: - { - integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} dev: true /is-plain-object@2.0.4: - resolution: - { - integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 dev: true /is-regex@1.1.4: - resolution: - { - integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true /is-set@2.0.2: - resolution: - { - integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==, - } + resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} dev: true /is-shared-array-buffer@1.0.2: - resolution: - { - integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, - } + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-stream@2.0.1: - resolution: - { - integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} dev: true /is-string@1.0.7: - resolution: - { - integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-symbol@1.0.4: - resolution: - { - integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 dev: true /is-typed-array@1.1.12: - resolution: - { - integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} + engines: {node: '>= 0.4'} dependencies: - which-typed-array: 1.1.11 + which-typed-array: 1.1.13 dev: true /is-weakmap@2.0.1: - resolution: - { - integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==, - } + resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} dev: true /is-weakref@1.0.2: - resolution: - { - integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, - } + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-weakset@2.0.2: - resolution: - { - integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==, - } + resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 dev: true /isarray@2.0.5: - resolution: - { - integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, - } + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} dev: true /isexe@2.0.0: - resolution: - { - integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, - } + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} dev: true /isobject@3.0.1: - resolution: - { - integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} dev: true /istanbul-lib-coverage@3.2.0: - resolution: - { - integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} + engines: {node: '>=8'} dev: true /istanbul-lib-instrument@5.2.1: - resolution: - { - integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==, - } - engines: { node: ">=8" } - dependencies: - "@babel/core": 7.22.11 - "@babel/parser": 7.22.14 - "@istanbuljs/schema": 0.1.3 + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + dependencies: + '@babel/core': 7.23.2 + '@babel/parser': 7.23.0 + '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /istanbul-lib-instrument@6.0.0: - resolution: - { - integrity: sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==, - } - engines: { node: ">=10" } + /istanbul-lib-instrument@6.0.1: + resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==} + engines: {node: '>=10'} dependencies: - "@babel/core": 7.22.11 - "@babel/parser": 7.22.14 - "@istanbuljs/schema": 0.1.3 + '@babel/core': 7.23.2 + '@babel/parser': 7.23.0 + '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 7.5.4 transitivePeerDependencies: @@ -7085,11 +5535,8 @@ packages: dev: true /istanbul-lib-report@3.0.1: - resolution: - { - integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} dependencies: istanbul-lib-coverage: 3.2.0 make-dir: 4.0.0 @@ -7097,11 +5544,8 @@ packages: dev: true /istanbul-lib-source-maps@4.0.1: - resolution: - { - integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} dependencies: debug: 4.3.4 istanbul-lib-coverage: 3.2.0 @@ -7111,65 +5555,54 @@ packages: dev: true /istanbul-reports@3.1.6: - resolution: - { - integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==} + engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 dev: true - /iterator.prototype@1.1.1: - resolution: - { - integrity: sha512-9E+nePc8C9cnQldmNl6bgpTY6zI4OPRZd97fhJ/iVZ1GifIUDVV5F6x1nEDqpe8KaMEZGT4xgrwKQDxXnjOIZQ==, - } + /iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} dependencies: - define-properties: 1.2.0 - get-intrinsic: 1.2.1 + define-properties: 1.2.1 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 - reflect.getprototypeof: 1.0.3 + reflect.getprototypeof: 1.0.4 + set-function-name: 2.0.1 dev: true - /jest-changed-files@29.6.3: - resolution: - { - integrity: sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: execa: 5.1.1 - jest-util: 29.6.3 + jest-util: 29.7.0 p-limit: 3.1.0 dev: true - /jest-circus@29.6.4: - resolution: - { - integrity: sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/environment": 29.6.4 - "@jest/expect": 29.6.4 - "@jest/test-result": 29.6.4 - "@jest/types": 29.6.3 - "@types/node": 20.5.7 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.8.8 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1 is-generator-fn: 2.1.0 - jest-each: 29.6.3 - jest-matcher-utils: 29.6.4 - jest-message-util: 29.6.3 - jest-runtime: 29.6.4 - jest-snapshot: 29.6.4 - jest-util: 29.6.3 + jest-each: 29.7.0 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 p-limit: 3.1.0 - pretty-format: 29.6.3 - pure-rand: 6.0.2 + pretty-format: 29.7.0 + pure-rand: 6.0.4 slash: 3.0.0 stack-utils: 2.0.6 transitivePeerDependencies: @@ -7177,12 +5610,9 @@ packages: - supports-color dev: true - /jest-cli@29.6.4(@types/node@20.5.7): - resolution: - { - integrity: sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-cli@29.7.0(@types/node@20.8.8): + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -7190,61 +5620,57 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 29.6.4 - "@jest/test-result": 29.6.4 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.8.8) exit: 0.1.2 - graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 29.6.4(@types/node@20.5.7) - jest-util: 29.6.3 - jest-validate: 29.6.3 - prompts: 2.4.2 + jest-config: 29.7.0(@types/node@20.8.8) + jest-util: 29.7.0 + jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - supports-color - ts-node dev: true - /jest-config@29.6.4(@types/node@20.5.7): - resolution: - { - integrity: sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-config@29.7.0(@types/node@20.8.8): + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@types/node": "*" - ts-node: ">=9.0.0" + '@types/node': '*' + ts-node: '>=9.0.0' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true ts-node: optional: true dependencies: - "@babel/core": 7.22.11 - "@jest/test-sequencer": 29.6.4 - "@jest/types": 29.6.3 - "@types/node": 20.5.7 - babel-jest: 29.6.4(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.8.8 + babel-jest: 29.7.0(@babel/core@7.23.2) chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.6.4 - jest-environment-node: 29.6.4 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 - jest-resolve: 29.6.4 - jest-runner: 29.6.4 - jest-util: 29.6.3 - jest-validate: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 29.6.3 + pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: @@ -7252,370 +5678,301 @@ packages: - supports-color dev: true - /jest-diff@29.6.4: - resolution: - { - integrity: sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 diff-sequences: 29.6.3 jest-get-type: 29.6.3 - pretty-format: 29.6.3 + pretty-format: 29.7.0 dev: true - /jest-docblock@29.6.3: - resolution: - { - integrity: sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: detect-newline: 3.1.0 dev: true - /jest-each@29.6.3: - resolution: - { - integrity: sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 jest-get-type: 29.6.3 - jest-util: 29.6.3 - pretty-format: 29.6.3 + jest-util: 29.7.0 + pretty-format: 29.7.0 dev: true - /jest-environment-node@29.6.4: - resolution: - { - integrity: sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/environment": 29.6.4 - "@jest/fake-timers": 29.6.4 - "@jest/types": 29.6.3 - "@types/node": 20.5.7 - jest-mock: 29.6.3 - jest-util: 29.6.3 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.8.8 + jest-mock: 29.7.0 + jest-util: 29.7.0 dev: true /jest-get-type@29.6.3: - resolution: - { - integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - dev: true - - /jest-haste-map@29.6.4: - resolution: - { - integrity: sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - dependencies: - "@jest/types": 29.6.3 - "@types/graceful-fs": 4.1.6 - "@types/node": 20.5.7 + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: true + + /jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.8 + '@types/node': 20.8.8 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 jest-regex-util: 29.6.3 - jest-util: 29.6.3 - jest-worker: 29.6.4 + jest-util: 29.7.0 + jest-worker: 29.7.0 micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: fsevents: 2.3.3 dev: true - /jest-leak-detector@29.6.3: - resolution: - { - integrity: sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.6.3 - pretty-format: 29.6.3 + pretty-format: 29.7.0 dev: true - /jest-matcher-utils@29.6.4: - resolution: - { - integrity: sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - jest-diff: 29.6.4 + jest-diff: 29.7.0 jest-get-type: 29.6.3 - pretty-format: 29.6.3 + pretty-format: 29.7.0 dev: true - /jest-message-util@29.6.3: - resolution: - { - integrity: sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/code-frame": 7.22.13 - "@jest/types": 29.6.3 - "@types/stack-utils": 2.0.1 + '@babel/code-frame': 7.22.13 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.2 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 - pretty-format: 29.6.3 + pretty-format: 29.7.0 slash: 3.0.0 stack-utils: 2.0.6 dev: true - /jest-mock@29.6.3: - resolution: - { - integrity: sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 - "@types/node": 20.5.7 - jest-util: 29.6.3 + '@jest/types': 29.6.3 + '@types/node': 20.8.8 + jest-util: 29.7.0 dev: true - /jest-pnp-resolver@1.2.3(jest-resolve@29.6.4): - resolution: - { - integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==, - } - engines: { node: ">=6" } + /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} peerDependencies: - jest-resolve: "*" + jest-resolve: '*' peerDependenciesMeta: jest-resolve: optional: true dependencies: - jest-resolve: 29.6.4 + jest-resolve: 29.7.0 dev: true /jest-regex-util@29.6.3: - resolution: - { - integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true - /jest-resolve-dependencies@29.6.4: - resolution: - { - integrity: sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-regex-util: 29.6.3 - jest-snapshot: 29.6.4 + jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color dev: true - /jest-resolve@29.6.4: - resolution: - { - integrity: sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 - jest-haste-map: 29.6.4 - jest-pnp-resolver: 1.2.3(jest-resolve@29.6.4) - jest-util: 29.6.3 - jest-validate: 29.6.3 - resolve: 1.22.4 + jest-haste-map: 29.7.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) + jest-util: 29.7.0 + jest-validate: 29.7.0 + resolve: 1.22.8 resolve.exports: 2.0.2 slash: 3.0.0 dev: true - /jest-runner@29.6.4: - resolution: - { - integrity: sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/console": 29.6.4 - "@jest/environment": 29.6.4 - "@jest/test-result": 29.6.4 - "@jest/transform": 29.6.4 - "@jest/types": 29.6.3 - "@types/node": 20.5.7 + '@jest/console': 29.7.0 + '@jest/environment': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.8.8 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 - jest-docblock: 29.6.3 - jest-environment-node: 29.6.4 - jest-haste-map: 29.6.4 - jest-leak-detector: 29.6.3 - jest-message-util: 29.6.3 - jest-resolve: 29.6.4 - jest-runtime: 29.6.4 - jest-util: 29.6.3 - jest-watcher: 29.6.4 - jest-worker: 29.6.4 + jest-docblock: 29.7.0 + jest-environment-node: 29.7.0 + jest-haste-map: 29.7.0 + jest-leak-detector: 29.7.0 + jest-message-util: 29.7.0 + jest-resolve: 29.7.0 + jest-runtime: 29.7.0 + jest-util: 29.7.0 + jest-watcher: 29.7.0 + jest-worker: 29.7.0 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: - supports-color dev: true - /jest-runtime@29.6.4: - resolution: - { - integrity: sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - dependencies: - "@jest/environment": 29.6.4 - "@jest/fake-timers": 29.6.4 - "@jest/globals": 29.6.4 - "@jest/source-map": 29.6.3 - "@jest/test-result": 29.6.4 - "@jest/transform": 29.6.4 - "@jest/types": 29.6.3 - "@types/node": 20.5.7 + /jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/globals': 29.7.0 + '@jest/source-map': 29.6.3 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.8.8 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 glob: 7.2.3 graceful-fs: 4.2.11 - jest-haste-map: 29.6.4 - jest-message-util: 29.6.3 - jest-mock: 29.6.3 + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 jest-regex-util: 29.6.3 - jest-resolve: 29.6.4 - jest-snapshot: 29.6.4 - jest-util: 29.6.3 + jest-resolve: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /jest-snapshot@29.6.4: - resolution: - { - integrity: sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - dependencies: - "@babel/core": 7.22.11 - "@babel/generator": 7.22.10 - "@babel/plugin-syntax-jsx": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-syntax-typescript": 7.22.5(@babel/core@7.22.11) - "@babel/types": 7.22.11 - "@jest/expect-utils": 29.6.4 - "@jest/transform": 29.6.4 - "@jest/types": 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.11) + /jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@babel/core': 7.23.2 + '@babel/generator': 7.23.0 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2) + '@babel/types': 7.23.0 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2) chalk: 4.1.2 - expect: 29.6.4 + expect: 29.7.0 graceful-fs: 4.2.11 - jest-diff: 29.6.4 + jest-diff: 29.7.0 jest-get-type: 29.6.3 - jest-matcher-utils: 29.6.4 - jest-message-util: 29.6.3 - jest-util: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 natural-compare: 1.4.0 - pretty-format: 29.6.3 + pretty-format: 29.7.0 semver: 7.5.4 transitivePeerDependencies: - supports-color dev: true - /jest-util@29.6.3: - resolution: - { - integrity: sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 - "@types/node": 20.5.7 + '@jest/types': 29.6.3 + '@types/node': 20.8.8 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 dev: true - /jest-validate@29.6.3: - resolution: - { - integrity: sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 29.6.3 leven: 3.1.0 - pretty-format: 29.6.3 + pretty-format: 29.7.0 dev: true - /jest-watcher@29.6.4: - resolution: - { - integrity: sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/test-result": 29.6.4 - "@jest/types": 29.6.3 - "@types/node": 20.5.7 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.8.8 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 - jest-util: 29.6.3 + jest-util: 29.7.0 string-length: 4.0.2 dev: true /jest-worker@27.5.1: - resolution: - { - integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} dependencies: - "@types/node": 20.5.7 + '@types/node': 20.8.8 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest-worker@29.6.4: - resolution: - { - integrity: sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@types/node": 20.5.7 - jest-util: 29.6.3 + '@types/node': 20.8.8 + jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest@29.6.4(@types/node@20.5.7): - resolution: - { - integrity: sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /jest@29.7.0(@types/node@20.8.8): + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -7623,28 +5980,22 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 29.6.4 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0 + '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.6.4(@types/node@20.5.7) + jest-cli: 29.7.0(@types/node@20.8.8) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - supports-color - ts-node dev: true /js-tokens@4.0.0: - resolution: - { - integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, - } + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} /js-yaml@3.14.1: - resolution: - { - integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, - } + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true dependencies: argparse: 1.0.10 @@ -7652,89 +6003,56 @@ packages: dev: true /js-yaml@4.1.0: - resolution: - { - integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, - } + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true dependencies: argparse: 2.0.1 dev: true /jsesc@0.5.0: - resolution: - { - integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, - } + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true dev: true /jsesc@2.5.2: - resolution: - { - integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} hasBin: true /json-buffer@3.0.1: - resolution: - { - integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, - } + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} dev: true /json-parse-even-better-errors@2.3.1: - resolution: - { - integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, - } + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: true /json-schema-traverse@0.4.1: - resolution: - { - integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, - } + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} dev: true /json-schema-traverse@1.0.0: - resolution: - { - integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, - } + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} dev: true /json-stable-stringify-without-jsonify@1.0.1: - resolution: - { - integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, - } + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} dev: true /json5@1.0.2: - resolution: - { - integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, - } + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true dependencies: minimist: 1.2.8 dev: true /json5@2.2.3: - resolution: - { - integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} hasBin: true /jsonfile@6.1.0: - resolution: - { - integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, - } + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: universalify: 2.0.0 optionalDependencies: @@ -7742,350 +6060,238 @@ packages: dev: true /jsonschema@1.4.1: - resolution: - { - integrity: sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==, - } + resolution: {integrity: sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==} dev: true /jsx-ast-utils@3.3.5: - resolution: - { - integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==, - } - engines: { node: ">=4.0" } - dependencies: - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + dependencies: + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 object.assign: 4.1.4 object.values: 1.1.7 dev: true - /keyv@4.5.3: - resolution: - { - integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==, - } + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} dependencies: json-buffer: 3.0.1 dev: true /kind-of@6.0.3: - resolution: - { - integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} dev: true /kleur@3.0.3: - resolution: - { - integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} dev: true /language-subtag-registry@0.3.22: - resolution: - { - integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==, - } + resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} dev: true /language-tags@1.0.5: - resolution: - { - integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==, - } + resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} dependencies: language-subtag-registry: 0.3.22 dev: true /leven@3.1.0: - resolution: - { - integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} dev: true /levn@0.4.1: - resolution: - { - integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 dev: true /lines-and-columns@1.2.4: - resolution: - { - integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, - } + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true /loader-runner@4.3.0: - resolution: - { - integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, - } - engines: { node: ">=6.11.5" } + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} dev: true /locate-path@5.0.0: - resolution: - { - integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} dependencies: p-locate: 4.1.0 dev: true /locate-path@6.0.0: - resolution: - { - integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} dependencies: p-locate: 5.0.0 dev: true /locate-path@7.2.0: - resolution: - { - integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: p-locate: 6.0.0 dev: true /lodash.debounce@4.0.8: - resolution: - { - integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, - } + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} dev: true /lodash.merge@4.6.2: - resolution: - { - integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, - } + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} dev: true /loose-envify@1.4.0: - resolution: - { - integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, - } + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true dependencies: js-tokens: 4.0.0 /lru-cache@5.1.1: - resolution: - { - integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, - } + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: yallist: 3.1.1 /lru-cache@6.0.0: - resolution: - { - integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} dependencies: yallist: 4.0.0 dev: true /make-dir@4.0.0: - resolution: - { - integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} dependencies: semver: 7.5.4 dev: true /make-error@1.3.6: - resolution: - { - integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, - } + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} dev: true /makeerror@1.0.12: - resolution: - { - integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, - } + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} dependencies: tmpl: 1.0.5 dev: true /merge-stream@2.0.0: - resolution: - { - integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, - } + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} dev: true /merge2@1.4.1: - resolution: - { - integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} dev: true /micromatch@4.0.5: - resolution: - { - integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} dependencies: braces: 3.0.2 picomatch: 2.3.1 dev: true /mime-db@1.52.0: - resolution: - { - integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} dev: true /mime-types@2.1.35: - resolution: - { - integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 dev: true /mimic-fn@2.1.0: - resolution: - { - integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} dev: true /minimatch@3.1.2: - resolution: - { - integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, - } + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 dev: true /minimist@1.2.8: - resolution: - { - integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, - } + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} dev: true /ms@2.1.2: - resolution: - { - integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, - } + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} /ms@2.1.3: - resolution: - { - integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, - } + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} dev: true /nanoid@3.3.6: - resolution: - { - integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, - } - engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true dev: false /natural-compare@1.4.0: - resolution: - { - integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, - } + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true /neo-async@2.6.2: - resolution: - { - integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, - } - dev: true - - /next@13.4.19(@babel/core@7.22.11)(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==, - } - engines: { node: ">=16.8.0" } + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + dev: true + + /next@13.5.6(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Y2wTcTbO4WwEsVb4A8VSnOsG1I9ok+h74q0ZdxkwM3EODqrs4pasq7O0iUxbcS9VtWMicG7f3+HAj0r1+NtKSw==} + engines: {node: '>=16.14.0'} hasBin: true peerDependencies: - "@opentelemetry/api": ^1.1.0 + '@opentelemetry/api': ^1.1.0 react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: - "@opentelemetry/api": + '@opentelemetry/api': optional: true sass: optional: true dependencies: - "@next/env": 13.4.19 - "@swc/helpers": 0.5.1 + '@next/env': 13.5.6 + '@swc/helpers': 0.5.2 busboy: 1.6.0 - caniuse-lite: 1.0.30001524 - postcss: 8.4.14 + caniuse-lite: 1.0.30001553 + postcss: 8.4.31 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.22.11)(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.23.2)(react@18.2.0) watchpack: 2.4.0 - zod: 3.21.4 optionalDependencies: - "@next/swc-darwin-arm64": 13.4.19 - "@next/swc-darwin-x64": 13.4.19 - "@next/swc-linux-arm64-gnu": 13.4.19 - "@next/swc-linux-arm64-musl": 13.4.19 - "@next/swc-linux-x64-gnu": 13.4.19 - "@next/swc-linux-x64-musl": 13.4.19 - "@next/swc-win32-arm64-msvc": 13.4.19 - "@next/swc-win32-ia32-msvc": 13.4.19 - "@next/swc-win32-x64-msvc": 13.4.19 + '@next/swc-darwin-arm64': 13.5.6 + '@next/swc-darwin-x64': 13.5.6 + '@next/swc-linux-arm64-gnu': 13.5.6 + '@next/swc-linux-arm64-musl': 13.5.6 + '@next/swc-linux-x64-gnu': 13.5.6 + '@next/swc-linux-x64-musl': 13.5.6 + '@next/swc-win32-arm64-msvc': 13.5.6 + '@next/swc-win32-ia32-msvc': 13.5.6 + '@next/swc-win32-x64-msvc': 13.5.6 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - babel-plugin-macros dev: false /node-fetch@2.7.0: - resolution: - { - integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, - } - engines: { node: 4.x || >=6.0.0 } + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -8096,157 +6302,109 @@ packages: dev: true /node-int64@0.4.0: - resolution: - { - integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, - } + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} dev: true /node-releases@2.0.13: - resolution: - { - integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, - } + resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} /normalize-path@3.0.0: - resolution: - { - integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} dev: true /npm-run-path@4.0.1: - resolution: - { - integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} dependencies: path-key: 3.1.1 dev: true /object-assign@4.1.1: - resolution: - { - integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} dev: true - /object-inspect@1.12.3: - resolution: - { - integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, - } + /object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} dev: true /object-keys@1.1.1: - resolution: - { - integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} dev: true /object.assign@4.1.4: - resolution: - { - integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, - } - engines: { node: ">= 0.4" } - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 dev: true /object.entries@1.1.7: - resolution: - { - integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /object.fromentries@2.0.7: - resolution: - { - integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /object.groupby@1.0.1: - resolution: - { - integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==, - } + resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 dev: true /object.hasown@1.1.3: - resolution: - { - integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==, - } + resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} dependencies: - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /object.values@1.1.7: - resolution: - { - integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /once@1.4.0: - resolution: - { - integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, - } + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 dev: true /onetime@5.1.2: - resolution: - { - integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 dev: true /optionator@0.9.3: - resolution: - { - integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + engines: {node: '>= 0.8.0'} dependencies: - "@aashutoshrathi/word-wrap": 1.2.6 + '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 @@ -8255,201 +6413,135 @@ packages: dev: true /p-limit@2.3.0: - resolution: - { - integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} dependencies: p-try: 2.2.0 dev: true /p-limit@3.1.0: - resolution: - { - integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 dev: true /p-limit@4.0.0: - resolution: - { - integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: yocto-queue: 1.0.0 dev: true /p-locate@4.1.0: - resolution: - { - integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} dependencies: p-limit: 2.3.0 dev: true /p-locate@5.0.0: - resolution: - { - integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} dependencies: p-limit: 3.1.0 dev: true /p-locate@6.0.0: - resolution: - { - integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: p-limit: 4.0.0 dev: true /p-try@2.2.0: - resolution: - { - integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} dev: true /parent-module@1.0.1: - resolution: - { - integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} dependencies: callsites: 3.1.0 dev: true /parse-author@2.0.0: - resolution: - { - integrity: sha512-yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw==} + engines: {node: '>=0.10.0'} dependencies: author-regex: 1.0.0 dev: true /parse-json@5.2.0: - resolution: - { - integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} dependencies: - "@babel/code-frame": 7.22.13 + '@babel/code-frame': 7.22.13 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 dev: true /path-exists@4.0.0: - resolution: - { - integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} dev: true /path-exists@5.0.0: - resolution: - { - integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true /path-is-absolute@1.0.1: - resolution: - { - integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} dev: true /path-key@3.1.1: - resolution: - { - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} dev: true /path-parse@1.0.7: - resolution: - { - integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, - } + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} dev: true /path-type@4.0.0: - resolution: - { - integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} dev: true /picocolors@1.0.0: - resolution: - { - integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, - } + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} /picomatch@2.3.1: - resolution: - { - integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} dev: true /pirates@4.0.6: - resolution: - { - integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} dev: true /pkg-dir@4.2.0: - resolution: - { - integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} dependencies: find-up: 4.1.0 dev: true /pkg-dir@7.0.0: - resolution: - { - integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} + engines: {node: '>=14.16'} dependencies: find-up: 6.3.0 dev: true - /postcss@8.4.14: - resolution: - { - integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, - } - engines: { node: ^10 || ^12 || >=14 } + /postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.6 picocolors: 1.0.0 @@ -8457,21 +6549,15 @@ packages: dev: false /prelude-ls@1.2.1: - resolution: - { - integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} dev: true /prettier-package-json@2.8.0: - resolution: - { - integrity: sha512-WxtodH/wWavfw3MR7yK/GrS4pASEQ+iSTkdtSxPJWvqzG55ir5nvbLt9rw5AOiEcqqPCRM92WCtR1rk3TG3JSQ==, - } + resolution: {integrity: sha512-WxtodH/wWavfw3MR7yK/GrS4pASEQ+iSTkdtSxPJWvqzG55ir5nvbLt9rw5AOiEcqqPCRM92WCtR1rk3TG3JSQ==} hasBin: true dependencies: - "@types/parse-author": 2.0.1 + '@types/parse-author': 2.0.2 commander: 4.1.1 cosmiconfig: 7.1.0 fs-extra: 10.1.0 @@ -8483,100 +6569,67 @@ packages: dev: true /prettier@3.0.3: - resolution: - { - integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==} + engines: {node: '>=14'} hasBin: true - /pretty-format@29.6.3: - resolution: - { - integrity: sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + /pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/schemas": 29.6.3 + '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 dev: true /prompts@2.4.2: - resolution: - { - integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} dependencies: kleur: 3.0.3 sisteransi: 1.0.5 dev: true /prop-types@15.8.1: - resolution: - { - integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, - } + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 dev: true - /protoscript@0.0.18: - resolution: - { - integrity: sha512-VQGYcyjHwbCWK/p8PE3or1bAWovRPzGlS6ueYSZ5PsK3mXEmA5e6gcT5R1+aMsiCn+4/Wo8CC+yL/meub4DqsA==, - } + /protoscript@0.0.20: + resolution: {integrity: sha512-NuXZgSko5o5o/ngA4/lccAHE7dY2C2ySaRTl+k45ehsjXitoQRXZ4fDAr5yIUadTAV9pZi6jQ0Ao5VQ9SBt0Ew==} hasBin: true dependencies: google-protobuf: 3.21.2 prettier: 3.0.3 /punycode@1.4.1: - resolution: - { - integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==, - } + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} dev: true /punycode@2.3.0: - resolution: - { - integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} + engines: {node: '>=6'} dev: true - /pure-rand@6.0.2: - resolution: - { - integrity: sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==, - } + /pure-rand@6.0.4: + resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==} dev: true /queue-microtask@1.2.3: - resolution: - { - integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, - } + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true /randombytes@2.1.0: - resolution: - { - integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, - } + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: safe-buffer: 5.2.1 dev: true /react-dom@18.2.0(react@18.2.0): - resolution: - { - integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, - } + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: react: ^18.2.0 dependencies: @@ -8586,674 +6639,489 @@ packages: dev: false /react-is@16.13.1: - resolution: - { - integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, - } + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} dev: true /react-is@18.2.0: - resolution: - { - integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, - } + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} dev: true /react@18.2.0: - resolution: - { - integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 dev: false /rechoir@0.8.0: - resolution: - { - integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==, - } - engines: { node: ">= 10.13.0" } - dependencies: - resolve: 1.22.4 - dev: true - - /reflect.getprototypeof@1.0.3: - resolution: - { - integrity: sha512-TTAOZpkJ2YLxl7mVHWrNo3iDMEkYlva/kgFcXndqMgbo/AZUmmavEkdXV+hXtE4P8xdyEKRzalaFqZVuwIk/Nw==, - } - engines: { node: ">= 0.4" } - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - get-intrinsic: 1.2.1 + resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} + engines: {node: '>= 10.13.0'} + dependencies: + resolve: 1.22.8 + dev: true + + /reflect.getprototypeof@1.0.4: + resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 globalthis: 1.0.3 which-builtin-type: 1.1.3 dev: true - /regenerate-unicode-properties@10.1.0: - resolution: - { - integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==, - } - engines: { node: ">=4" } + /regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + engines: {node: '>=4'} dependencies: regenerate: 1.4.2 dev: true /regenerate@1.4.2: - resolution: - { - integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, - } + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} dev: true /regenerator-runtime@0.14.0: - resolution: - { - integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, - } + resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} dev: true /regenerator-transform@0.15.2: - resolution: - { - integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, - } + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - "@babel/runtime": 7.22.11 + '@babel/runtime': 7.23.2 dev: true - /regexp.prototype.flags@1.5.0: - resolution: - { - integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==, - } - engines: { node: ">= 0.4" } + /regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 dev: true /regexpu-core@5.3.2: - resolution: - { - integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} dependencies: - "@babel/regjsgen": 0.8.0 + '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 + regenerate-unicode-properties: 10.1.1 regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 dev: true /regjsparser@0.9.1: - resolution: - { - integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, - } + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true dependencies: jsesc: 0.5.0 dev: true /require-directory@2.1.1: - resolution: - { - integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} dev: true /require-from-string@2.0.2: - resolution: - { - integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} dev: true /resolve-cwd@3.0.0: - resolution: - { - integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 dev: true /resolve-from@4.0.0: - resolution: - { - integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} dev: true /resolve-from@5.0.0: - resolution: - { - integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} dev: true /resolve-pkg-maps@1.0.0: - resolution: - { - integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==, - } + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} dev: true /resolve.exports@2.0.2: - resolution: - { - integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==, - } - engines: { node: ">=10" } - dev: true - - /resolve@1.22.4: - resolution: - { - integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==, - } + resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} + engines: {node: '>=10'} + dev: true + + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true dependencies: - is-core-module: 2.13.0 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true - /resolve@2.0.0-next.4: - resolution: - { - integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==, - } + /resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} hasBin: true dependencies: - is-core-module: 2.13.0 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true /reusify@1.0.4: - resolution: - { - integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, - } - engines: { iojs: ">=1.0.0", node: ">=0.10.0" } + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} dev: true /rimraf@3.0.2: - resolution: - { - integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, - } + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: glob: 7.2.3 dev: true /run-parallel@1.2.0: - resolution: - { - integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, - } + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: queue-microtask: 1.2.3 dev: true - /safe-array-concat@1.0.0: - resolution: - { - integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==, - } - engines: { node: ">=0.4" } + /safe-array-concat@1.0.1: + resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} + engines: {node: '>=0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 isarray: 2.0.5 dev: true /safe-buffer@5.2.1: - resolution: - { - integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, - } + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} dev: true /safe-regex-test@1.0.0: - resolution: - { - integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, - } + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-regex: 1.1.4 dev: true /scheduler@0.23.0: - resolution: - { - integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, - } + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} dependencies: loose-envify: 1.4.0 dev: false /schema-utils@3.3.0: - resolution: - { - integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} dependencies: - "@types/json-schema": 7.0.12 + '@types/json-schema': 7.0.14 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) dev: true /schema-utils@4.2.0: - resolution: - { - integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} dependencies: - "@types/json-schema": 7.0.12 + '@types/json-schema': 7.0.14 ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) ajv-keywords: 5.1.0(ajv@8.12.0) dev: true /semver@6.3.1: - resolution: - { - integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, - } + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true /semver@7.5.2: - resolution: - { - integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==} + engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 dev: true /semver@7.5.4: - resolution: - { - integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 dev: true /serialize-javascript@6.0.1: - resolution: - { - integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==, - } + resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} dependencies: randombytes: 2.1.0 dev: true + /set-function-length@1.1.1: + resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 + dev: true + /shallow-clone@3.0.1: - resolution: - { - integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} dependencies: kind-of: 6.0.3 dev: true /shebang-command@2.0.0: - resolution: - { - integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 dev: true /shebang-regex@3.0.0: - resolution: - { - integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} dev: true /side-channel@1.0.4: - resolution: - { - integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, - } + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - object-inspect: 1.12.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + object-inspect: 1.13.1 dev: true /signal-exit@3.0.7: - resolution: - { - integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, - } + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} dev: true /sisteransi@1.0.5: - resolution: - { - integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, - } + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} dev: true /slash@3.0.0: - resolution: - { - integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} dev: true /sort-object-keys@1.1.3: - resolution: - { - integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==, - } + resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} dev: true /sort-order@1.0.1: - resolution: - { - integrity: sha512-BiExT7C1IVF4DNd5dttR/dEq3wunGOHpy4phvqFUQA1pY6j2ye8WWEAV8LhRbfdF0EWDX12FfyPPf9P71eT+cA==, - } + resolution: {integrity: sha512-BiExT7C1IVF4DNd5dttR/dEq3wunGOHpy4phvqFUQA1pY6j2ye8WWEAV8LhRbfdF0EWDX12FfyPPf9P71eT+cA==} dev: true /source-map-js@1.0.2: - resolution: - { - integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} dev: false /source-map-support@0.5.13: - resolution: - { - integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==, - } + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 dev: true /source-map-support@0.5.21: - resolution: - { - integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, - } + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 dev: true /source-map@0.6.1: - resolution: - { - integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + dev: true + + /source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} dev: true /sprintf-js@1.0.3: - resolution: - { - integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, - } + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} dev: true /stack-utils@2.0.6: - resolution: - { - integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 dev: true /stream-events@1.0.5: - resolution: - { - integrity: sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==, - } + resolution: {integrity: sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==} dependencies: stubs: 3.0.0 dev: true /streamsearch@1.1.0: - resolution: - { - integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} dev: false /string-length@4.0.2: - resolution: - { - integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 dev: true /string-width@4.2.3: - resolution: - { - integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 dev: true - /string.prototype.matchall@4.0.9: - resolution: - { - integrity: sha512-6i5hL3MqG/K2G43mWXWgP+qizFW/QH/7kCNN13JrJS5q48FN5IKksLDscexKP3dnmB6cdm9jlNgAsWNLpSykmA==, - } + /string.prototype.matchall@4.0.10: + resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 - internal-slot: 1.0.5 - regexp.prototype.flags: 1.5.0 + internal-slot: 1.0.6 + regexp.prototype.flags: 1.5.1 + set-function-name: 2.0.1 side-channel: 1.0.4 dev: true - /string.prototype.trim@1.2.7: - resolution: - { - integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==, - } - engines: { node: ">= 0.4" } + /string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.trimend@1.0.6: - resolution: - { - integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, - } + /string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.trimstart@1.0.6: - resolution: - { - integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, - } + /string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /strip-ansi@6.0.1: - resolution: - { - integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 dev: true /strip-bom@3.0.0: - resolution: - { - integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} dev: true /strip-bom@4.0.0: - resolution: - { - integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} dev: true /strip-final-newline@2.0.0: - resolution: - { - integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} dev: true /strip-json-comments@3.1.1: - resolution: - { - integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} dev: true /stubs@3.0.0: - resolution: - { - integrity: sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==, - } - dev: true - - /styled-jsx@5.1.1(@babel/core@7.22.11)(react@18.2.0): - resolution: - { - integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, - } - engines: { node: ">= 12.0.0" } - peerDependencies: - "@babel/core": "*" - babel-plugin-macros: "*" - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" + resolution: {integrity: sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==} + dev: true + + /styled-jsx@5.1.1(@babel/core@7.23.2)(react@18.2.0): + resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true babel-plugin-macros: optional: true dependencies: - "@babel/core": 7.22.11 + '@babel/core': 7.23.2 client-only: 0.0.1 react: 18.2.0 dev: false /supports-color@5.5.0: - resolution: - { - integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} dependencies: has-flag: 3.0.0 /supports-color@7.2.0: - resolution: - { - integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 dev: true /supports-color@8.1.1: - resolution: - { - integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} dependencies: has-flag: 4.0.0 dev: true /supports-preserve-symlinks-flag@1.0.0: - resolution: - { - integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} dev: true /tapable@2.2.1: - resolution: - { - integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} dev: true /teeny-request@7.1.1: - resolution: - { - integrity: sha512-iwY6rkW5DDGq8hE2YgNQlKbptYpY5Nn2xecjQiNjOXWbKzPGUfmeUBCSQbbr306d7Z7U2N0TPl+/SwYRfua1Dg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-iwY6rkW5DDGq8hE2YgNQlKbptYpY5Nn2xecjQiNjOXWbKzPGUfmeUBCSQbbr306d7Z7U2N0TPl+/SwYRfua1Dg==} + engines: {node: '>=10'} dependencies: http-proxy-agent: 4.0.1 https-proxy-agent: 5.0.1 @@ -9265,151 +7133,119 @@ packages: - supports-color dev: true - /terser-webpack-plugin@5.3.9(esbuild@0.19.2)(webpack@5.88.2): - resolution: - { - integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==, - } - engines: { node: ">= 10.13.0" } + /terser-webpack-plugin@5.3.9(esbuild@0.19.5)(webpack@5.89.0): + resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} + engines: {node: '>= 10.13.0'} peerDependencies: - "@swc/core": "*" - esbuild: "*" - uglify-js: "*" + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' webpack: ^5.1.0 peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true esbuild: optional: true uglify-js: optional: true dependencies: - "@jridgewell/trace-mapping": 0.3.19 - esbuild: 0.19.2 + '@jridgewell/trace-mapping': 0.3.20 + esbuild: 0.19.5 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 - terser: 5.19.3 - webpack: 5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4) + terser: 5.22.0 + webpack: 5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4) dev: true - /terser@5.19.3: - resolution: - { - integrity: sha512-pQzJ9UJzM0IgmT4FAtYI6+VqFf0lj/to58AV0Xfgg0Up37RyPG7Al+1cepC6/BVuAxR9oNb41/DL4DEoHJvTdg==, - } - engines: { node: ">=10" } + /terser@5.22.0: + resolution: {integrity: sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==} + engines: {node: '>=10'} hasBin: true dependencies: - "@jridgewell/source-map": 0.3.5 + '@jridgewell/source-map': 0.3.5 acorn: 8.10.0 commander: 2.20.3 source-map-support: 0.5.21 dev: true /test-exclude@6.0.0: - resolution: - { - integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} dependencies: - "@istanbuljs/schema": 0.1.3 + '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 dev: true /text-table@0.2.0: - resolution: - { - integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, - } + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} dev: true /tmpl@1.0.5: - resolution: - { - integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, - } + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} dev: true /to-fast-properties@2.0.0: - resolution: - { - integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} /to-regex-range@5.0.1: - resolution: - { - integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, - } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 dev: true /tr46@0.0.3: - resolution: - { - integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, - } + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} dev: true - /ts-api-utils@1.0.2(typescript@5.2.2): - resolution: - { - integrity: sha512-Cbu4nIqnEdd+THNEsBdkolnOXhg0I8XteoHaEKgvsxpsbWda4IsUut2c187HxywQCvveojow0Dgw/amxtSKVkQ==, - } - engines: { node: ">=16.13.0" } + /ts-api-utils@1.0.3(typescript@5.2.2): + resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} + engines: {node: '>=16.13.0'} peerDependencies: - typescript: ">=4.2.0" + typescript: '>=4.2.0' dependencies: typescript: 5.2.2 dev: true - /ts-loader@9.4.4(typescript@5.2.2)(webpack@5.88.2): - resolution: - { - integrity: sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==, - } - engines: { node: ">=12.0.0" } + /ts-loader@9.5.0(typescript@5.2.2)(webpack@5.89.0): + resolution: {integrity: sha512-LLlB/pkB4q9mW2yLdFMnK3dEHbrBjeZTYguaaIfusyojBgAGf5kF+O6KcWqiGzWqHk0LBsoolrp4VftEURhybg==} + engines: {node: '>=12.0.0'} peerDependencies: - typescript: "*" + typescript: '*' webpack: ^5.0.0 dependencies: chalk: 4.1.2 enhanced-resolve: 5.15.0 micromatch: 4.0.5 semver: 7.5.4 + source-map: 0.7.4 typescript: 5.2.2 - webpack: 5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4) + webpack: 5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4) dev: true - /ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2): - resolution: - { - integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, - } + /ts-node@10.9.1(@types/node@20.8.8)(typescript@5.2.2): + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: - "@swc/core": ">=1.2.50" - "@swc/wasm": ">=1.2.50" - "@types/node": "*" - typescript: ">=2.7" + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true - "@swc/wasm": + '@swc/wasm': optional: true dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.9 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 20.5.7 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.8.8 acorn: 8.10.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -9422,280 +7258,203 @@ packages: dev: true /tsconfig-paths@3.14.2: - resolution: - { - integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==, - } + resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} dependencies: - "@types/json5": 0.0.29 + '@types/json5': 0.0.29 json5: 1.0.2 minimist: 1.2.8 strip-bom: 3.0.0 dev: true /tslib@2.6.2: - resolution: - { - integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, - } + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} dev: false /type-check@0.4.0: - resolution: - { - integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 dev: true /type-detect@4.0.8: - resolution: - { - integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} dev: true /type-fest@0.20.2: - resolution: - { - integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} dev: true /type-fest@0.21.3: - resolution: - { - integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} dev: true /typed-array-buffer@1.0.0: - resolution: - { - integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, - } - engines: { node: ">= 0.4" } - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-typed-array: 1.1.12 dev: true /typed-array-byte-length@1.0.0: - resolution: - { - integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 dev: true /typed-array-byte-offset@1.0.0: - resolution: - { - integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 dev: true /typed-array-length@1.0.4: - resolution: - { - integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, - } + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 is-typed-array: 1.1.12 dev: true /typescript@5.2.2: - resolution: - { - integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==, - } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} + engines: {node: '>=14.17'} hasBin: true dev: true /unbox-primitive@1.0.2: - resolution: - { - integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, - } + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 dev: true + /undici-types@5.25.3: + resolution: {integrity: sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==} + dev: true + /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: - { - integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} dev: true /unicode-match-property-ecmascript@2.0.0: - resolution: - { - integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 dev: true /unicode-match-property-value-ecmascript@2.1.0: - resolution: - { - integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + engines: {node: '>=4'} dev: true /unicode-property-aliases-ecmascript@2.1.0: - resolution: - { - integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} dev: true /universalify@2.0.0: - resolution: - { - integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, - } - engines: { node: ">= 10.0.0" } - dev: true - - /update-browserslist-db@1.0.11(browserslist@4.21.10): - resolution: - { - integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, - } + resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} + engines: {node: '>= 10.0.0'} + dev: true + + /update-browserslist-db@1.0.13(browserslist@4.22.1): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} hasBin: true peerDependencies: - browserslist: ">= 4.21.0" + browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.10 + browserslist: 4.22.1 escalade: 3.1.1 picocolors: 1.0.0 /uri-js@4.4.1: - resolution: - { - integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, - } + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.3.0 dev: true /urlgrey@1.0.0: - resolution: - { - integrity: sha512-hJfIzMPJmI9IlLkby8QrsCykQ+SXDeO2W5Q9QTW3QpqZVTx4a/K7p8/5q+/isD8vsbVaFgql/gvAoQCRQ2Cb5w==, - } + resolution: {integrity: sha512-hJfIzMPJmI9IlLkby8QrsCykQ+SXDeO2W5Q9QTW3QpqZVTx4a/K7p8/5q+/isD8vsbVaFgql/gvAoQCRQ2Cb5w==} dependencies: fast-url-parser: 1.1.3 dev: true /uuid@8.3.2: - resolution: - { - integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, - } + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true dev: true /v8-compile-cache-lib@3.0.1: - resolution: - { - integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, - } + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} dev: true - /v8-to-istanbul@9.1.0: - resolution: - { - integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==, - } - engines: { node: ">=10.12.0" } + /v8-to-istanbul@9.1.3: + resolution: {integrity: sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==} + engines: {node: '>=10.12.0'} dependencies: - "@jridgewell/trace-mapping": 0.3.19 - "@types/istanbul-lib-coverage": 2.0.4 - convert-source-map: 1.9.0 + '@jridgewell/trace-mapping': 0.3.20 + '@types/istanbul-lib-coverage': 2.0.5 + convert-source-map: 2.0.0 dev: true /walker@1.0.8: - resolution: - { - integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, - } + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} dependencies: makeerror: 1.0.12 dev: true /watchpack@2.4.0: - resolution: - { - integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} + engines: {node: '>=10.13.0'} dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 /webidl-conversions@3.0.1: - resolution: - { - integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, - } - dev: true - - /webpack-cli@5.1.4(webpack@5.88.2): - resolution: - { - integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==, - } - engines: { node: ">=14.15.0" } + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + dev: true + + /webpack-cli@5.1.4(webpack@5.89.0): + resolution: {integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==} + engines: {node: '>=14.15.0'} hasBin: true peerDependencies: - "@webpack-cli/generators": "*" + '@webpack-cli/generators': '*' webpack: 5.x.x - webpack-bundle-analyzer: "*" - webpack-dev-server: "*" + webpack-bundle-analyzer: '*' + webpack-dev-server: '*' peerDependenciesMeta: - "@webpack-cli/generators": + '@webpack-cli/generators': optional: true webpack-bundle-analyzer: optional: true webpack-dev-server: optional: true dependencies: - "@discoveryjs/json-ext": 0.5.7 - "@webpack-cli/configtest": 2.1.1(webpack-cli@5.1.4)(webpack@5.88.2) - "@webpack-cli/info": 2.0.2(webpack-cli@5.1.4)(webpack@5.88.2) - "@webpack-cli/serve": 2.0.5(webpack-cli@5.1.4)(webpack@5.88.2) + '@discoveryjs/json-ext': 0.5.7 + '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4)(webpack@5.89.0) + '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4)(webpack@5.89.0) + '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4)(webpack@5.89.0) colorette: 2.0.20 commander: 10.0.1 cross-spawn: 7.0.3 @@ -9704,53 +7463,45 @@ packages: import-local: 3.1.0 interpret: 3.1.1 rechoir: 0.8.0 - webpack: 5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4) - webpack-merge: 5.9.0 + webpack: 5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4) + webpack-merge: 5.10.0 dev: true - /webpack-merge@5.9.0: - resolution: - { - integrity: sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==, - } - engines: { node: ">=10.0.0" } + /webpack-merge@5.10.0: + resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} + engines: {node: '>=10.0.0'} dependencies: clone-deep: 4.0.1 + flat: 5.0.2 wildcard: 2.0.1 dev: true /webpack-sources@3.2.3: - resolution: - { - integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, - } - engines: { node: ">=10.13.0" } - dev: true - - /webpack@5.88.2(esbuild@0.19.2)(webpack-cli@5.1.4): - resolution: - { - integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} + dev: true + + /webpack@5.89.0(esbuild@0.19.5)(webpack-cli@5.1.4): + resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} + engines: {node: '>=10.13.0'} hasBin: true peerDependencies: - webpack-cli: "*" + webpack-cli: '*' peerDependenciesMeta: webpack-cli: optional: true dependencies: - "@types/eslint-scope": 3.7.4 - "@types/estree": 1.0.1 - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/wasm-edit": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 + '@types/eslint-scope': 3.7.6 + '@types/estree': 1.0.3 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/wasm-edit': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 acorn: 8.10.0 acorn-import-assertions: 1.9.0(acorn@8.10.0) - browserslist: 4.21.10 + browserslist: 4.22.1 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.0 + es-module-lexer: 1.3.1 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -9761,31 +7512,25 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(esbuild@0.19.2)(webpack@5.88.2) + terser-webpack-plugin: 5.3.9(esbuild@0.19.5)(webpack@5.89.0) watchpack: 2.4.0 - webpack-cli: 5.1.4(webpack@5.88.2) + webpack-cli: 5.1.4(webpack@5.89.0) webpack-sources: 3.2.3 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - uglify-js dev: true /whatwg-url@5.0.0: - resolution: - { - integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, - } + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 dev: true /which-boxed-primitive@1.0.2: - resolution: - { - integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, - } + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -9795,11 +7540,8 @@ packages: dev: true /which-builtin-type@1.1.3: - resolution: - { - integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + engines: {node: '>= 0.4'} dependencies: function.prototype.name: 1.1.6 has-tostringtag: 1.0.0 @@ -9812,14 +7554,11 @@ packages: isarray: 2.0.5 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 - which-typed-array: 1.1.11 + which-typed-array: 1.1.13 dev: true /which-collection@1.0.1: - resolution: - { - integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==, - } + resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} dependencies: is-map: 2.0.2 is-set: 2.0.2 @@ -9827,44 +7566,32 @@ packages: is-weakset: 2.0.2 dev: true - /which-typed-array@1.1.11: - resolution: - { - integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==, - } - engines: { node: ">= 0.4" } + /which-typed-array@1.1.13: + resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} + engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 dev: true /which@2.0.2: - resolution: - { - integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 dev: true /wildcard@2.0.1: - resolution: - { - integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==, - } + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} dev: true /wrap-ansi@7.0.0: - resolution: - { - integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 @@ -9872,66 +7599,42 @@ packages: dev: true /wrappy@1.0.2: - resolution: - { - integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, - } + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} dev: true /write-file-atomic@4.0.2: - resolution: - { - integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, - } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 dev: true /y18n@5.0.8: - resolution: - { - integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} dev: true /yallist@3.1.1: - resolution: - { - integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, - } + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} /yallist@4.0.0: - resolution: - { - integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, - } + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true /yaml@1.10.2: - resolution: - { - integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} dev: true /yargs-parser@21.1.1: - resolution: - { - integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} dev: true /yargs@17.7.2: - resolution: - { - integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} dependencies: cliui: 8.0.1 escalade: 3.1.1 @@ -9943,32 +7646,16 @@ packages: dev: true /yn@3.1.1: - resolution: - { - integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} dev: true /yocto-queue@0.1.0: - resolution: - { - integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} dev: true /yocto-queue@1.0.0: - resolution: - { - integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==, - } - engines: { node: ">=12.20" } - dev: true - - /zod@3.21.4: - resolution: - { - integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==, - } - dev: false + resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} + engines: {node: '>=12.20'} + dev: true