@continuous-excellence/coupling-cli 1.1.684 → 1.1.686
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +40 -40
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +15 -15
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +27 -27
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +25 -25
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +34 -34
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +37 -37
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +27 -27
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +35 -35
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs +46 -46
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +29 -29
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +51 -51
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +10 -10
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +11 -11
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs +82 -82
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +54 -54
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +26 -26
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +4 -4
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +10 -10
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +106 -106
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +57 -57
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +33 -33
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +17 -17
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +28 -28
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSyntax.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +19 -19
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +34 -34
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyContributionReportContributionsQuery.mjs +41 -41
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +39 -39
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetails.mjs +50 -50
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +55 -55
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +75 -75
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +102 -102
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +36 -36
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +33 -33
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/ContributionDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PairingSetDetailsSelections.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PartyDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PlayerDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/SaveContributionMutationSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Contribution.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionReport.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/DateTimeISO.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Duration.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLBoolean.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLInt.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLString.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Mutation.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSet.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSetId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Party.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Player.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Query.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +47 -47
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionWindow_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +8 -8
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs +108 -106
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +86 -83
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +62 -62
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +64 -64
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +38 -38
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/DeferredFragmentIdentifier.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executable.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs +21 -21
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/RequestParameters.mjs +47 -43
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/RequestParameters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/CacheUrlOverride.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +79 -79
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +61 -61
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +29 -29
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +84 -84
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +279 -279
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonNumber.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonWriters.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +106 -112
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +47 -47
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/FileUploadAwareJsonWriter.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/JsonScope.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +68 -68
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +207 -207
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +41 -41
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +49 -49
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +14 -14
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/IncrementalDeliveryProtocolImpl.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_1IncrementalResultsMerger.mjs +33 -33
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_2IncrementalResultsMerger.mjs +32 -32
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +109 -109
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ClientMessage.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/GraphQLWsProtocol.mjs +13 -13
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ServerMessage.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketEngine.js.mjs +42 -42
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketNetworkTransport.mjs +62 -62
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs +98 -98
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/WebSocketPool.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +26 -26
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +25 -25
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +115 -115
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +21 -21
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.js.mjs +1 -1
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +42 -42
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs.map +1 -1
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +43 -43
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +107 -107
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +95 -95
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +138 -138
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +134 -134
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +47 -47
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +13 -13
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +195 -195
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +35 -35
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +231 -231
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/command/SuspendingCliktCommand.mjs +2 -2
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +133 -133
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +20 -20
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +25 -25
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +12 -12
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +11 -11
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +17 -17
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +21 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +30 -30
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +84 -84
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +41 -41
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +38 -38
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +55 -55
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +230 -230
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +22 -22
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +33 -33
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +13 -13
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +39 -39
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +5 -5
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +70 -70
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +444 -444
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +113 -113
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +180 -180
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +90 -90
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +30 -30
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +55 -55
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementBuilders.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +143 -143
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonExceptions.mjs +21 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +177 -177
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +68 -68
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +21 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +40 -40
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +11 -11
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +12 -12
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +53 -53
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +179 -179
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +139 -139
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +262 -262
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +183 -183
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +9 -9
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +54 -54
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +64 -64
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +35 -35
- package/kotlin/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +44 -44
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +49 -49
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +47 -47
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +19 -19
- package/kotlin/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +26 -26
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +32 -32
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +21 -21
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs +77 -51
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +33 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +47 -47
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +51 -51
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +33 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +27 -27
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +77 -77
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +48 -48
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +77 -72
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +22 -22
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserver.mjs +28 -28
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +32 -32
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +59 -59
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSocketContent.mjs +8 -8
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +68 -68
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +10 -10
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +14 -14
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +57 -57
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +18 -18
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/buildersWithUrl.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/FormDataContent.mjs +9 -9
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/formBuilders.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/formBuilders.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/JsUtils.js.mjs +10 -10
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/JsUtils.js.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/HttpClientCallLogger.mjs +28 -28
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs +18 -18
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogLevel.mjs +3 -3
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggedContent.mjs +16 -16
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logger.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs +184 -184
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +13 -13
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/ObservingUtils.mjs +4 -4
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/ObservingUtils.mjs.map +1 -1
- package/kotlin/ktor-ktor-events/io/ktor/events/Events.mjs +5 -5
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +5 -5
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +94 -94
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +18 -18
- package/kotlin/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Headers.mjs +18 -18
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +79 -144
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +120 -120
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +3 -3
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +15 -15
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +16 -16
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +66 -66
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpUrlEncoded.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs +12 -12
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Query.mjs +4 -4
- package/kotlin/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +59 -59
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.web.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs +35 -35
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +20 -20
- package/kotlin/ktor-ktor-http/io/ktor/http/URLUtils.mjs +25 -25
- package/kotlin/ktor-ktor-http/io/ktor/http/Url.mjs +77 -77
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +31 -31
- package/kotlin/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +11 -11
- package/kotlin/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +9 -9
- package/kotlin/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +14 -14
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +4 -4
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +74 -74
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +32 -32
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +9 -9
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +10 -10
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +68 -68
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +4 -4
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +3 -3
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +1 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +13 -67
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +7 -7
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +15 -39
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +50 -126
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +9 -9
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.mjs +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.web.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +190 -190
- package/kotlin/ktor-ktor-utils/io/ktor/util/ContentEncoders.web.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/Crypto.web.mjs.map +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/Encoders.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/StringValues.mjs +134 -134
- package/kotlin/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/Date.mjs +102 -102
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLogger.web.mjs +10 -10
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/Logger.web.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +28 -28
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +26 -26
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +53 -53
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +2 -2
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +48 -48
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +9 -9
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +20 -20
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs +85 -85
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs +46 -46
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +5 -5
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +6 -6
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +10 -10
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +41 -41
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketExtension.mjs +4 -4
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketExtensionHeader.mjs +4 -4
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +15 -15
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +40 -40
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +61 -61
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +75 -75
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +234 -234
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +23 -23
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +150 -150
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +54 -54
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +62 -62
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +68 -68
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +363 -363
- package/kotlin/okio-parent-okio/okio/ByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/HashingSink.mjs +14 -14
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +18 -18
- package/kotlin/okio-parent-okio/okio/Okio.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/Options.mjs +24 -24
- package/kotlin/okio-parent-okio/okio/RealBufferedSink.mjs +37 -37
- package/kotlin/okio-parent-okio/okio/RealBufferedSource.mjs +60 -60
- package/kotlin/okio-parent-okio/okio/Segment.mjs +69 -69
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +4 -4
- package/kotlin/okio-parent-okio/okio/SegmentedByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/Util.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/-Utf8.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Buffer.mjs +57 -57
- package/kotlin/okio-parent-okio/okio/internal/ByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/RealBufferedSource.mjs +10 -10
- package/kotlin/okio-parent-okio/okio/internal/SegmentedByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Sha256.mjs +63 -63
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +1 -1
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +174 -174
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +30 -30
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +34 -34
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Errors.mjs +1 -1
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +12 -12
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +2 -2
|
@@ -85,46 +85,46 @@ function buildClassSerialDescriptor(serialName, typeParameters, builderAction) {
|
|
|
85
85
|
}
|
|
86
86
|
var sdBuilder = new (ClassSerialDescriptorBuilder())(serialName);
|
|
87
87
|
builderAction(sdBuilder);
|
|
88
|
-
return new (SerialDescriptorImpl())(serialName, CLASS_getInstance(), sdBuilder.
|
|
88
|
+
return new (SerialDescriptorImpl())(serialName, CLASS_getInstance(), sdBuilder.r1x_1.q2(), toList(typeParameters), sdBuilder);
|
|
89
89
|
}
|
|
90
90
|
var ClassSerialDescriptorBuilderClass;
|
|
91
91
|
function ClassSerialDescriptorBuilder() {
|
|
92
92
|
if (ClassSerialDescriptorBuilderClass === VOID) {
|
|
93
93
|
class $ {
|
|
94
94
|
constructor(serialName) {
|
|
95
|
-
this.
|
|
96
|
-
this.
|
|
97
|
-
this.
|
|
98
|
-
this.
|
|
99
|
-
this.
|
|
95
|
+
this.o1x_1 = serialName;
|
|
96
|
+
this.p1x_1 = false;
|
|
97
|
+
this.q1x_1 = emptyList();
|
|
98
|
+
this.r1x_1 = ArrayList().i2();
|
|
99
|
+
this.s1x_1 = HashSet().na();
|
|
100
|
+
this.t1x_1 = ArrayList().i2();
|
|
100
101
|
this.u1x_1 = ArrayList().i2();
|
|
101
102
|
this.v1x_1 = ArrayList().i2();
|
|
102
|
-
this.w1x_1 = ArrayList().i2();
|
|
103
103
|
}
|
|
104
|
-
|
|
104
|
+
f20(elementName, descriptor, annotations, isOptional) {
|
|
105
105
|
// Inline function 'kotlin.require' call
|
|
106
|
-
if (!this.
|
|
107
|
-
var message = "Element with name '" + elementName + "' is already registered in " + this.
|
|
106
|
+
if (!this.s1x_1.o2(elementName)) {
|
|
107
|
+
var message = "Element with name '" + elementName + "' is already registered in " + this.o1x_1;
|
|
108
108
|
throw IllegalArgumentException().m2(toString(message));
|
|
109
109
|
}
|
|
110
110
|
// Inline function 'kotlin.collections.plusAssign' call
|
|
111
|
-
this.
|
|
111
|
+
this.r1x_1.o2(elementName);
|
|
112
112
|
// Inline function 'kotlin.collections.plusAssign' call
|
|
113
|
-
this.
|
|
113
|
+
this.t1x_1.o2(descriptor);
|
|
114
114
|
// Inline function 'kotlin.collections.plusAssign' call
|
|
115
|
-
this.
|
|
115
|
+
this.u1x_1.o2(annotations);
|
|
116
116
|
// Inline function 'kotlin.collections.plusAssign' call
|
|
117
|
-
this.
|
|
117
|
+
this.v1x_1.o2(isOptional);
|
|
118
118
|
}
|
|
119
|
-
|
|
119
|
+
w1x(elementName, descriptor, annotations, isOptional, $super) {
|
|
120
120
|
annotations = annotations === VOID ? emptyList() : annotations;
|
|
121
121
|
isOptional = isOptional === VOID ? false : isOptional;
|
|
122
122
|
var tmp;
|
|
123
123
|
if ($super === VOID) {
|
|
124
|
-
this.
|
|
124
|
+
this.f20(elementName, descriptor, annotations, isOptional);
|
|
125
125
|
tmp = Unit_instance;
|
|
126
126
|
} else {
|
|
127
|
-
tmp = $super.
|
|
127
|
+
tmp = $super.f20.call(this, elementName, descriptor, annotations, isOptional);
|
|
128
128
|
}
|
|
129
129
|
return tmp;
|
|
130
130
|
}
|
|
@@ -155,17 +155,17 @@ function buildSerialDescriptor(serialName, kind, typeParameters, builder) {
|
|
|
155
155
|
}
|
|
156
156
|
var sdBuilder = new (ClassSerialDescriptorBuilder())(serialName);
|
|
157
157
|
builder(sdBuilder);
|
|
158
|
-
return new (SerialDescriptorImpl())(serialName, kind, sdBuilder.
|
|
158
|
+
return new (SerialDescriptorImpl())(serialName, kind, sdBuilder.r1x_1.q2(), toList(typeParameters), sdBuilder);
|
|
159
159
|
}
|
|
160
160
|
function _get__hashCode__tgwhef($this) {
|
|
161
|
-
var tmp0 = $this.
|
|
161
|
+
var tmp0 = $this.r20_1;
|
|
162
162
|
var tmp = KProperty1();
|
|
163
163
|
// Inline function 'kotlin.getValue' call
|
|
164
164
|
getPropertyCallableRef('_hashCode', 1, tmp, SerialDescriptorImpl$_get__hashCode_$ref_2v7wzp(), null);
|
|
165
165
|
return tmp0.c3();
|
|
166
166
|
}
|
|
167
167
|
function SerialDescriptorImpl$_hashCode$delegate$lambda(this$0) {
|
|
168
|
-
return () => hashCodeImpl(this$0, this$0.
|
|
168
|
+
return () => hashCodeImpl(this$0, this$0.q20_1);
|
|
169
169
|
}
|
|
170
170
|
function SerialDescriptorImpl$_get__hashCode_$ref_2v7wzp() {
|
|
171
171
|
return constructCallableReference((p0) => _get__hashCode__tgwhef(p0), 1, 0, 7);
|
|
@@ -175,24 +175,24 @@ function SerialDescriptorImpl() {
|
|
|
175
175
|
if (SerialDescriptorImplClass === VOID) {
|
|
176
176
|
class $ {
|
|
177
177
|
constructor(serialName, kind, elementsCount, typeParameters, builder) {
|
|
178
|
-
this.
|
|
179
|
-
this.
|
|
180
|
-
this.
|
|
181
|
-
this.
|
|
182
|
-
this.
|
|
178
|
+
this.g20_1 = serialName;
|
|
179
|
+
this.h20_1 = kind;
|
|
180
|
+
this.i20_1 = elementsCount;
|
|
181
|
+
this.j20_1 = builder.q1x_1;
|
|
182
|
+
this.k20_1 = toHashSet(builder.r1x_1);
|
|
183
183
|
var tmp = this;
|
|
184
184
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
185
|
-
var this_0 = builder.
|
|
186
|
-
tmp.
|
|
187
|
-
this.
|
|
185
|
+
var this_0 = builder.r1x_1;
|
|
186
|
+
tmp.l20_1 = copyToArray(this_0);
|
|
187
|
+
this.m20_1 = compactArray(builder.t1x_1);
|
|
188
188
|
var tmp_0 = this;
|
|
189
189
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
190
|
-
var this_1 = builder.
|
|
191
|
-
tmp_0.
|
|
192
|
-
this.
|
|
190
|
+
var this_1 = builder.u1x_1;
|
|
191
|
+
tmp_0.n20_1 = copyToArray(this_1);
|
|
192
|
+
this.o20_1 = toBooleanArray(builder.v1x_1);
|
|
193
193
|
var tmp_1 = this;
|
|
194
194
|
// Inline function 'kotlin.collections.map' call
|
|
195
|
-
var this_2 = withIndex(this.
|
|
195
|
+
var this_2 = withIndex(this.l20_1);
|
|
196
196
|
// Inline function 'kotlin.collections.mapTo' call
|
|
197
197
|
var destination = ArrayList().r2(collectionSizeOrDefault(this_2, 10));
|
|
198
198
|
var _iterator__ex2g4s = this_2.l1();
|
|
@@ -201,41 +201,41 @@ function SerialDescriptorImpl() {
|
|
|
201
201
|
var tmp$ret$4 = to(item.ol_1, item.nl_1);
|
|
202
202
|
destination.o2(tmp$ret$4);
|
|
203
203
|
}
|
|
204
|
-
tmp_1.
|
|
205
|
-
this.
|
|
204
|
+
tmp_1.p20_1 = toMap(destination);
|
|
205
|
+
this.q20_1 = compactArray(typeParameters);
|
|
206
206
|
var tmp_2 = this;
|
|
207
|
-
tmp_2.
|
|
207
|
+
tmp_2.r20_1 = lazy(SerialDescriptorImpl$_hashCode$delegate$lambda(this));
|
|
208
|
+
}
|
|
209
|
+
p1z() {
|
|
210
|
+
return this.g20_1;
|
|
208
211
|
}
|
|
209
212
|
q1z() {
|
|
210
213
|
return this.h20_1;
|
|
211
214
|
}
|
|
212
|
-
|
|
215
|
+
s1z() {
|
|
213
216
|
return this.i20_1;
|
|
214
217
|
}
|
|
215
218
|
t1z() {
|
|
216
219
|
return this.j20_1;
|
|
217
220
|
}
|
|
218
|
-
|
|
221
|
+
s20() {
|
|
219
222
|
return this.k20_1;
|
|
220
223
|
}
|
|
221
|
-
|
|
222
|
-
return this.l20_1;
|
|
223
|
-
}
|
|
224
|
-
v1z(index) {
|
|
225
|
-
return getChecked(this.m20_1, index);
|
|
224
|
+
u1z(index) {
|
|
225
|
+
return getChecked(this.l20_1, index);
|
|
226
226
|
}
|
|
227
|
-
|
|
228
|
-
var tmp0_elvis_lhs = this.
|
|
227
|
+
v1z(name) {
|
|
228
|
+
var tmp0_elvis_lhs = this.p20_1.j4(name);
|
|
229
229
|
return tmp0_elvis_lhs == null ? -3 : tmp0_elvis_lhs;
|
|
230
230
|
}
|
|
231
|
+
w1z(index) {
|
|
232
|
+
return getChecked(this.n20_1, index);
|
|
233
|
+
}
|
|
231
234
|
x1z(index) {
|
|
232
|
-
return getChecked(this.
|
|
235
|
+
return getChecked(this.m20_1, index);
|
|
233
236
|
}
|
|
234
237
|
y1z(index) {
|
|
235
|
-
return
|
|
236
|
-
}
|
|
237
|
-
z1z(index) {
|
|
238
|
-
return getChecked_0(this.p20_1, index);
|
|
238
|
+
return getChecked_0(this.o20_1, index);
|
|
239
239
|
}
|
|
240
240
|
equals(other) {
|
|
241
241
|
var tmp$ret$0;
|
|
@@ -249,29 +249,29 @@ function SerialDescriptorImpl() {
|
|
|
249
249
|
tmp$ret$0 = false;
|
|
250
250
|
break $l$block_5;
|
|
251
251
|
}
|
|
252
|
-
if (!(this.
|
|
252
|
+
if (!(this.p1z() === other.p1z())) {
|
|
253
253
|
tmp$ret$0 = false;
|
|
254
254
|
break $l$block_5;
|
|
255
255
|
}
|
|
256
|
-
if (!contentEquals(this.
|
|
256
|
+
if (!contentEquals(this.q20_1, other.q20_1)) {
|
|
257
257
|
tmp$ret$0 = false;
|
|
258
258
|
break $l$block_5;
|
|
259
259
|
}
|
|
260
|
-
if (!(this.
|
|
260
|
+
if (!(this.s1z() === other.s1z())) {
|
|
261
261
|
tmp$ret$0 = false;
|
|
262
262
|
break $l$block_5;
|
|
263
263
|
}
|
|
264
264
|
var inductionVariable = 0;
|
|
265
|
-
var last = this.
|
|
265
|
+
var last = this.s1z();
|
|
266
266
|
if (inductionVariable < last)
|
|
267
267
|
do {
|
|
268
268
|
var index = inductionVariable;
|
|
269
269
|
inductionVariable = inductionVariable + 1 | 0;
|
|
270
|
-
if (!(this.
|
|
270
|
+
if (!(this.x1z(index).p1z() === other.x1z(index).p1z())) {
|
|
271
271
|
tmp$ret$0 = false;
|
|
272
272
|
break $l$block_5;
|
|
273
273
|
}
|
|
274
|
-
if (!equals(this.
|
|
274
|
+
if (!equals(this.x1z(index).q1z(), other.x1z(index).q1z())) {
|
|
275
275
|
tmp$ret$0 = false;
|
|
276
276
|
break $l$block_5;
|
|
277
277
|
}
|
|
@@ -288,8 +288,8 @@ function SerialDescriptorImpl() {
|
|
|
288
288
|
return toStringImpl(this);
|
|
289
289
|
}
|
|
290
290
|
}
|
|
291
|
-
protoOf($).
|
|
292
|
-
protoOf($).
|
|
291
|
+
protoOf($).i1z = get_isNullable;
|
|
292
|
+
protoOf($).r1z = get_isInline;
|
|
293
293
|
initMetadataForClass($, 'SerialDescriptorImpl', VOID, VOID, [SerialDescriptor(), CachedNames()]);
|
|
294
294
|
SerialDescriptorImplClass = $;
|
|
295
295
|
}
|
|
@@ -303,11 +303,11 @@ function SerialDescriptor_0(serialName, original) {
|
|
|
303
303
|
throw IllegalArgumentException().m2(toString(message));
|
|
304
304
|
}
|
|
305
305
|
// Inline function 'kotlin.require' call
|
|
306
|
-
if (!!(serialName === original.
|
|
307
|
-
var message_0 = 'The name of the wrapped descriptor (' + serialName + ') cannot be the same as the name of the original descriptor (' + original.
|
|
306
|
+
if (!!(serialName === original.p1z())) {
|
|
307
|
+
var message_0 = 'The name of the wrapped descriptor (' + serialName + ') cannot be the same as the name of the original descriptor (' + original.p1z() + ')';
|
|
308
308
|
throw IllegalArgumentException().m2(toString(message_0));
|
|
309
309
|
}
|
|
310
|
-
var tmp = original.
|
|
310
|
+
var tmp = original.q1z();
|
|
311
311
|
if (tmp instanceof PrimitiveKind()) {
|
|
312
312
|
checkNameIsNotAPrimitive(serialName);
|
|
313
313
|
}
|
|
@@ -318,56 +318,56 @@ function WrappedSerialDescriptor() {
|
|
|
318
318
|
if (WrappedSerialDescriptorClass === VOID) {
|
|
319
319
|
class $ {
|
|
320
320
|
constructor(serialName, original) {
|
|
321
|
-
this.
|
|
322
|
-
this.
|
|
321
|
+
this.t20_1 = serialName;
|
|
322
|
+
this.u20_1 = original;
|
|
323
323
|
}
|
|
324
|
-
|
|
325
|
-
return this.
|
|
324
|
+
p1z() {
|
|
325
|
+
return this.t20_1;
|
|
326
326
|
}
|
|
327
327
|
equals(other) {
|
|
328
328
|
if (this === other)
|
|
329
329
|
return true;
|
|
330
330
|
if (!(other instanceof WrappedSerialDescriptor()))
|
|
331
331
|
return false;
|
|
332
|
-
return this.
|
|
332
|
+
return this.t20_1 === other.t20_1 && equals(this.u20_1, other.u20_1);
|
|
333
333
|
}
|
|
334
334
|
hashCode() {
|
|
335
|
-
var result = getStringHashCode(this.
|
|
336
|
-
result = imul(31, result) + hashCode(this.
|
|
335
|
+
var result = getStringHashCode(this.t20_1);
|
|
336
|
+
result = imul(31, result) + hashCode(this.u20_1) | 0;
|
|
337
337
|
return result;
|
|
338
338
|
}
|
|
339
339
|
toString() {
|
|
340
340
|
return toStringImpl(this);
|
|
341
341
|
}
|
|
342
|
-
|
|
343
|
-
return this.
|
|
342
|
+
q1z() {
|
|
343
|
+
return this.u20_1.q1z();
|
|
344
|
+
}
|
|
345
|
+
i1z() {
|
|
346
|
+
return this.u20_1.i1z();
|
|
344
347
|
}
|
|
345
|
-
|
|
346
|
-
return this.
|
|
348
|
+
r1z() {
|
|
349
|
+
return this.u20_1.r1z();
|
|
347
350
|
}
|
|
348
351
|
s1z() {
|
|
349
|
-
return this.
|
|
352
|
+
return this.u20_1.s1z();
|
|
350
353
|
}
|
|
351
354
|
t1z() {
|
|
352
|
-
return this.
|
|
355
|
+
return this.u20_1.t1z();
|
|
353
356
|
}
|
|
354
|
-
u1z() {
|
|
355
|
-
return this.
|
|
357
|
+
u1z(index) {
|
|
358
|
+
return this.u20_1.u1z(index);
|
|
356
359
|
}
|
|
357
|
-
v1z(
|
|
358
|
-
return this.
|
|
360
|
+
v1z(name) {
|
|
361
|
+
return this.u20_1.v1z(name);
|
|
359
362
|
}
|
|
360
|
-
w1z(
|
|
361
|
-
return this.
|
|
363
|
+
w1z(index) {
|
|
364
|
+
return this.u20_1.w1z(index);
|
|
362
365
|
}
|
|
363
366
|
x1z(index) {
|
|
364
|
-
return this.
|
|
367
|
+
return this.u20_1.x1z(index);
|
|
365
368
|
}
|
|
366
369
|
y1z(index) {
|
|
367
|
-
return this.
|
|
368
|
-
}
|
|
369
|
-
z1z(index) {
|
|
370
|
-
return this.v20_1.z1z(index);
|
|
370
|
+
return this.u20_1.y1z(index);
|
|
371
371
|
}
|
|
372
372
|
}
|
|
373
373
|
initMetadataForClass($, 'WrappedSerialDescriptor', VOID, VOID, [SerialDescriptor()]);
|
|
@@ -25,65 +25,68 @@ var AbstractDecoderClass;
|
|
|
25
25
|
function AbstractDecoder() {
|
|
26
26
|
if (AbstractDecoderClass === VOID) {
|
|
27
27
|
class $ {
|
|
28
|
+
v20() {
|
|
29
|
+
throw SerializationException().v1y(toString(getKClassFromExpression(this)) + " can't retrieve untyped values");
|
|
30
|
+
}
|
|
28
31
|
w20() {
|
|
29
|
-
|
|
32
|
+
return true;
|
|
30
33
|
}
|
|
31
34
|
x20() {
|
|
32
|
-
return
|
|
35
|
+
return null;
|
|
33
36
|
}
|
|
34
37
|
y20() {
|
|
35
|
-
|
|
38
|
+
var tmp = this.v20();
|
|
39
|
+
return typeof tmp === 'boolean' ? tmp : THROW_CCE();
|
|
36
40
|
}
|
|
37
41
|
z20() {
|
|
38
|
-
var tmp = this.
|
|
39
|
-
return typeof tmp === '
|
|
42
|
+
var tmp = this.v20();
|
|
43
|
+
return typeof tmp === 'number' ? tmp : THROW_CCE();
|
|
40
44
|
}
|
|
41
45
|
a21() {
|
|
42
|
-
var tmp = this.
|
|
46
|
+
var tmp = this.v20();
|
|
43
47
|
return typeof tmp === 'number' ? tmp : THROW_CCE();
|
|
44
48
|
}
|
|
45
49
|
b21() {
|
|
46
|
-
var tmp = this.
|
|
50
|
+
var tmp = this.v20();
|
|
47
51
|
return typeof tmp === 'number' ? tmp : THROW_CCE();
|
|
48
52
|
}
|
|
49
53
|
c21() {
|
|
50
|
-
var tmp = this.
|
|
51
|
-
return
|
|
54
|
+
var tmp = this.v20();
|
|
55
|
+
return tmp instanceof Long() ? tmp : THROW_CCE();
|
|
52
56
|
}
|
|
53
57
|
d21() {
|
|
54
|
-
var tmp = this.
|
|
55
|
-
return tmp
|
|
58
|
+
var tmp = this.v20();
|
|
59
|
+
return typeof tmp === 'number' ? tmp : THROW_CCE();
|
|
56
60
|
}
|
|
57
61
|
e21() {
|
|
58
|
-
var tmp = this.
|
|
62
|
+
var tmp = this.v20();
|
|
59
63
|
return typeof tmp === 'number' ? tmp : THROW_CCE();
|
|
60
64
|
}
|
|
61
65
|
f21() {
|
|
62
|
-
var tmp = this.
|
|
63
|
-
return typeof tmp === 'number' ? tmp : THROW_CCE();
|
|
64
|
-
}
|
|
65
|
-
g21() {
|
|
66
|
-
var tmp = this.w20();
|
|
66
|
+
var tmp = this.v20();
|
|
67
67
|
return tmp instanceof Char() ? tmp.t3_1 : THROW_CCE();
|
|
68
68
|
}
|
|
69
|
-
|
|
70
|
-
var tmp = this.
|
|
69
|
+
g21() {
|
|
70
|
+
var tmp = this.v20();
|
|
71
71
|
return typeof tmp === 'string' ? tmp : THROW_CCE();
|
|
72
72
|
}
|
|
73
|
-
|
|
74
|
-
var tmp = this.
|
|
73
|
+
h21(enumDescriptor) {
|
|
74
|
+
var tmp = this.v20();
|
|
75
75
|
return typeof tmp === 'number' ? tmp : THROW_CCE();
|
|
76
76
|
}
|
|
77
|
-
|
|
77
|
+
i21(descriptor) {
|
|
78
78
|
return this;
|
|
79
79
|
}
|
|
80
|
-
|
|
81
|
-
return this.
|
|
80
|
+
j21(deserializer, previousValue) {
|
|
81
|
+
return this.k21(deserializer);
|
|
82
82
|
}
|
|
83
|
-
|
|
83
|
+
l21(descriptor) {
|
|
84
84
|
return this;
|
|
85
85
|
}
|
|
86
|
-
|
|
86
|
+
m21(descriptor) {
|
|
87
|
+
}
|
|
88
|
+
n21(descriptor, index) {
|
|
89
|
+
return this.y20();
|
|
87
90
|
}
|
|
88
91
|
o21(descriptor, index) {
|
|
89
92
|
return this.z20();
|
|
@@ -110,30 +113,27 @@ function AbstractDecoder() {
|
|
|
110
113
|
return this.g21();
|
|
111
114
|
}
|
|
112
115
|
w21(descriptor, index) {
|
|
113
|
-
return this.
|
|
114
|
-
}
|
|
115
|
-
x21(descriptor, index) {
|
|
116
|
-
return this.j21(descriptor.y1z(index));
|
|
116
|
+
return this.i21(descriptor.x1z(index));
|
|
117
117
|
}
|
|
118
|
-
|
|
119
|
-
return this.
|
|
118
|
+
x21(descriptor, index, deserializer, previousValue) {
|
|
119
|
+
return this.j21(deserializer, previousValue);
|
|
120
120
|
}
|
|
121
|
-
|
|
121
|
+
z21(descriptor, index, deserializer, previousValue) {
|
|
122
122
|
// Inline function 'kotlinx.serialization.encoding.decodeIfNullable' call
|
|
123
|
-
var isNullabilitySupported = deserializer.
|
|
123
|
+
var isNullabilitySupported = deserializer.i1x().i1z();
|
|
124
124
|
var tmp;
|
|
125
|
-
if (isNullabilitySupported || this.
|
|
126
|
-
tmp = this.
|
|
125
|
+
if (isNullabilitySupported || this.w20()) {
|
|
126
|
+
tmp = this.j21(deserializer, previousValue);
|
|
127
127
|
} else {
|
|
128
|
-
tmp = this.
|
|
128
|
+
tmp = this.x20();
|
|
129
129
|
}
|
|
130
130
|
return tmp;
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
|
-
protoOf($).
|
|
134
|
-
protoOf($).
|
|
135
|
-
protoOf($).
|
|
136
|
-
protoOf($).
|
|
133
|
+
protoOf($).y21 = decodeSerializableElement$default;
|
|
134
|
+
protoOf($).k21 = decodeSerializableValue;
|
|
135
|
+
protoOf($).b22 = decodeSequentially;
|
|
136
|
+
protoOf($).d22 = decodeCollectionSize;
|
|
137
137
|
initMetadataForClass($, 'AbstractDecoder', VOID, VOID, [Decoder(), CompositeDecoder()]);
|
|
138
138
|
AbstractDecoderClass = $;
|
|
139
139
|
}
|
|
@@ -27,120 +27,120 @@ var AbstractEncoderClass;
|
|
|
27
27
|
function AbstractEncoder() {
|
|
28
28
|
if (AbstractEncoderClass === VOID) {
|
|
29
29
|
class $ {
|
|
30
|
-
static
|
|
30
|
+
static e22($box) {
|
|
31
31
|
return createThis(this, $box);
|
|
32
32
|
}
|
|
33
|
-
|
|
33
|
+
l21(descriptor) {
|
|
34
34
|
return this;
|
|
35
35
|
}
|
|
36
|
-
|
|
36
|
+
m21(descriptor) {
|
|
37
37
|
}
|
|
38
|
-
|
|
38
|
+
f22(descriptor, index) {
|
|
39
39
|
return true;
|
|
40
40
|
}
|
|
41
|
-
|
|
42
|
-
throw SerializationException().
|
|
41
|
+
g22(value) {
|
|
42
|
+
throw SerializationException().v1y('Non-serializable ' + toString(getKClassFromExpression(value)) + ' is not supported by ' + toString(getKClassFromExpression(this)) + ' encoder');
|
|
43
43
|
}
|
|
44
|
-
|
|
45
|
-
throw SerializationException().
|
|
44
|
+
h22() {
|
|
45
|
+
throw SerializationException().v1y("'null' is not supported by default");
|
|
46
|
+
}
|
|
47
|
+
i22(value) {
|
|
48
|
+
return this.g22(value);
|
|
46
49
|
}
|
|
47
50
|
j22(value) {
|
|
48
|
-
return this.
|
|
51
|
+
return this.g22(value);
|
|
49
52
|
}
|
|
50
53
|
k22(value) {
|
|
51
|
-
return this.
|
|
54
|
+
return this.g22(value);
|
|
52
55
|
}
|
|
53
56
|
l22(value) {
|
|
54
|
-
return this.
|
|
57
|
+
return this.g22(value);
|
|
55
58
|
}
|
|
56
59
|
m22(value) {
|
|
57
|
-
return this.
|
|
60
|
+
return this.g22(value);
|
|
58
61
|
}
|
|
59
62
|
n22(value) {
|
|
60
|
-
return this.
|
|
63
|
+
return this.g22(value);
|
|
61
64
|
}
|
|
62
65
|
o22(value) {
|
|
63
|
-
return this.
|
|
66
|
+
return this.g22(value);
|
|
64
67
|
}
|
|
65
68
|
p22(value) {
|
|
66
|
-
return this.
|
|
69
|
+
return this.g22(new (Char())(value));
|
|
67
70
|
}
|
|
68
71
|
q22(value) {
|
|
69
|
-
return this.
|
|
70
|
-
}
|
|
71
|
-
r22(value) {
|
|
72
|
-
return this.h22(value);
|
|
72
|
+
return this.g22(value);
|
|
73
73
|
}
|
|
74
|
-
|
|
75
|
-
return this.
|
|
74
|
+
r22(enumDescriptor, index) {
|
|
75
|
+
return this.g22(index);
|
|
76
76
|
}
|
|
77
|
-
|
|
77
|
+
s22(descriptor) {
|
|
78
78
|
return this;
|
|
79
79
|
}
|
|
80
|
+
t22(descriptor, index, value) {
|
|
81
|
+
if (this.f22(descriptor, index)) {
|
|
82
|
+
this.i22(value);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
80
85
|
u22(descriptor, index, value) {
|
|
81
|
-
if (this.
|
|
86
|
+
if (this.f22(descriptor, index)) {
|
|
82
87
|
this.j22(value);
|
|
83
88
|
}
|
|
84
89
|
}
|
|
85
90
|
v22(descriptor, index, value) {
|
|
86
|
-
if (this.
|
|
91
|
+
if (this.f22(descriptor, index)) {
|
|
87
92
|
this.k22(value);
|
|
88
93
|
}
|
|
89
94
|
}
|
|
90
95
|
w22(descriptor, index, value) {
|
|
91
|
-
if (this.
|
|
96
|
+
if (this.f22(descriptor, index)) {
|
|
92
97
|
this.l22(value);
|
|
93
98
|
}
|
|
94
99
|
}
|
|
95
100
|
x22(descriptor, index, value) {
|
|
96
|
-
if (this.
|
|
101
|
+
if (this.f22(descriptor, index)) {
|
|
97
102
|
this.m22(value);
|
|
98
103
|
}
|
|
99
104
|
}
|
|
100
105
|
y22(descriptor, index, value) {
|
|
101
|
-
if (this.
|
|
106
|
+
if (this.f22(descriptor, index)) {
|
|
102
107
|
this.n22(value);
|
|
103
108
|
}
|
|
104
109
|
}
|
|
105
110
|
z22(descriptor, index, value) {
|
|
106
|
-
if (this.
|
|
111
|
+
if (this.f22(descriptor, index)) {
|
|
107
112
|
this.o22(value);
|
|
108
113
|
}
|
|
109
114
|
}
|
|
110
115
|
a23(descriptor, index, value) {
|
|
111
|
-
if (this.
|
|
116
|
+
if (this.f22(descriptor, index)) {
|
|
112
117
|
this.p22(value);
|
|
113
118
|
}
|
|
114
119
|
}
|
|
115
120
|
b23(descriptor, index, value) {
|
|
116
|
-
if (this.
|
|
121
|
+
if (this.f22(descriptor, index)) {
|
|
117
122
|
this.q22(value);
|
|
118
123
|
}
|
|
119
124
|
}
|
|
120
|
-
c23(descriptor, index
|
|
121
|
-
|
|
122
|
-
this.r22(value);
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
d23(descriptor, index) {
|
|
126
|
-
return this.g22(descriptor, index) ? this.t22(descriptor.y1z(index)) : NoOpEncoder_getInstance();
|
|
125
|
+
c23(descriptor, index) {
|
|
126
|
+
return this.f22(descriptor, index) ? this.s22(descriptor.x1z(index)) : NoOpEncoder_getInstance();
|
|
127
127
|
}
|
|
128
|
-
|
|
129
|
-
if (this.
|
|
130
|
-
this.
|
|
128
|
+
d23(descriptor, index, serializer, value) {
|
|
129
|
+
if (this.f22(descriptor, index)) {
|
|
130
|
+
this.e23(serializer, value);
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
|
-
|
|
134
|
-
if (this.
|
|
135
|
-
this.
|
|
133
|
+
f23(descriptor, index, serializer, value) {
|
|
134
|
+
if (this.f22(descriptor, index)) {
|
|
135
|
+
this.g23(serializer, value);
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
|
-
protoOf($).
|
|
140
|
-
protoOf($).
|
|
141
|
-
protoOf($).
|
|
142
|
-
protoOf($).
|
|
143
|
-
protoOf($).
|
|
139
|
+
protoOf($).h23 = encodeNotNullMark;
|
|
140
|
+
protoOf($).i23 = beginCollection;
|
|
141
|
+
protoOf($).e23 = encodeSerializableValue;
|
|
142
|
+
protoOf($).g23 = encodeNullableSerializableValue;
|
|
143
|
+
protoOf($).j23 = shouldEncodeElementDefault;
|
|
144
144
|
initMetadataForClass($, 'AbstractEncoder', VOID, VOID, [Encoder(), CompositeEncoder()]);
|
|
145
145
|
AbstractEncoderClass = $;
|
|
146
146
|
}
|
|
@@ -5,7 +5,7 @@ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotl
|
|
|
5
5
|
//region block: pre-declaration
|
|
6
6
|
//endregion
|
|
7
7
|
function decodeSerializableValue(deserializer) {
|
|
8
|
-
return deserializer.
|
|
8
|
+
return deserializer.k1x(this);
|
|
9
9
|
}
|
|
10
10
|
var DecoderClass;
|
|
11
11
|
function Decoder() {
|
|
@@ -24,7 +24,7 @@ function decodeCollectionSize(descriptor) {
|
|
|
24
24
|
}
|
|
25
25
|
function decodeSerializableElement$default(descriptor, index, deserializer, previousValue, $super) {
|
|
26
26
|
previousValue = previousValue === VOID ? null : previousValue;
|
|
27
|
-
return $super === VOID ? this.
|
|
27
|
+
return $super === VOID ? this.x21(descriptor, index, deserializer, previousValue) : $super.x21.call(this, descriptor, index, deserializer, previousValue);
|
|
28
28
|
}
|
|
29
29
|
var CompositeDecoderClass;
|
|
30
30
|
function CompositeDecoder() {
|