@continuous-excellence/coupling-cli 1.1.685 → 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-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
|
@@ -32,7 +32,7 @@ function TextDecoderFallback() {
|
|
|
32
32
|
if (TextDecoderFallbackClass === VOID) {
|
|
33
33
|
class $ {
|
|
34
34
|
constructor(encoding, fatal) {
|
|
35
|
-
this.
|
|
35
|
+
this.h1x_1 = fatal;
|
|
36
36
|
// Inline function 'kotlin.text.trim' call
|
|
37
37
|
// Inline function 'kotlin.text.lowercase' call
|
|
38
38
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -43,7 +43,7 @@ function TextDecoderFallback() {
|
|
|
43
43
|
throw IllegalStateException().o(toString(message));
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
|
-
|
|
46
|
+
a1x(buffer) {
|
|
47
47
|
// Inline function 'io.ktor.utils.io.core.buildPacket' call
|
|
48
48
|
var builder = new (Buffer())();
|
|
49
49
|
var bytes = buffer instanceof Int8Array ? buffer : THROW_CCE();
|
|
@@ -59,7 +59,7 @@ function TextDecoderFallback() {
|
|
|
59
59
|
var point = toCodePoint(byte);
|
|
60
60
|
if (point < 0) {
|
|
61
61
|
// Inline function 'kotlin.check' call
|
|
62
|
-
if (!!this.
|
|
62
|
+
if (!!this.h1x_1) {
|
|
63
63
|
var message = 'Invalid character: ' + point;
|
|
64
64
|
throw IllegalStateException().o(toString(message));
|
|
65
65
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-io/common/src/io/ktor/utils/io/core/Strings.kt","../../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-io/io/ktor/utils/io/core/js/src/kotlin/math.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["readText","<this>","charset","max","count","toByteArray","writeText","text","fromIndex","toIndex"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-io/common/src/io/ktor/utils/io/core/Strings.kt","../../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-io/io/ktor/utils/io/core/js/src/kotlin/math.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["readText","<this>","charset","max","count","toByteArray","writeText","text","fromIndex","toIndex"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;iBAkEOA,CAAIC,a,EAAgBC,O,EAAmCC,GAAvDH,EAAyF;A,sDAAzC,K;uBAAsB,U;EACrE,0CAAoB,KAApB,E,CAA2B;A,IACvB,YAAW,UAAX,C;MAAsB,OAAO,yB;eACjB,mBAAO,K;;YAAU,QAAJ,GAAI,C;QAAjCI,QCwtCmD,cAAK,CAAL,gBAAe,C;IDvtClE,OAAO,4BAAW,KAAX,C;EACX,C;EAEA,OAA4B,OAArB,OAAQ,MAAa,EAAO,aAAP,EAAa,GAAb,C;AAChC,C;oBAhEOC,CAAIJ,a,EAAmBC,OAAvBG,EAAqE;A,sDAAlB,K;EAClD,0CAAoB,KAApB,E;IAA2B,OAAO,+CAA2C,IAA3C,C;EAEtC,OAA4B,kBAArB,OAAQ,MAAa,EAAkB,aAAlB,EAAwB,CAAxB,EAA2B,aAA3B,CAA2B,MAA3B,C;AAChC,C;kBA6FOC,CAAIL,a,EACPM,I,EACAC,S,EACAC,O,EACAP,OAJGI,EAKL;A,mCAHmB,C;+BACG,mBAAL,IAAK,C;sDACQ,K;EAExB,uCAAqB,KAArB,C,CAA4B;A,IAC5B,OAAO,2BAAiB,SAAL,IAAK,CAAjB,EAA6B,SAA7B,EAAwC,OAAxC,C;EACX,C;EAEqB,aAArB,OAAQ,MAAa,EAAa,aAAb,EAAmB,IAAnB,EAAyB,SAAzB,EAAoC,OAApC,C;AACzB,C;;;;;"}
|
|
@@ -11,12 +11,12 @@ function ContentConvertException() {
|
|
|
11
11
|
if (ContentConvertExceptionClass === VOID) {
|
|
12
12
|
class $ extends Exception() {
|
|
13
13
|
constructor(message, cause) {
|
|
14
|
-
return new.target.
|
|
14
|
+
return new.target.w3b(message, cause);
|
|
15
15
|
}
|
|
16
|
-
static
|
|
16
|
+
static w3b(message, cause) {
|
|
17
17
|
cause = cause === VOID ? null : cause;
|
|
18
18
|
var $this = this.ce(message, cause);
|
|
19
|
-
captureStack($this, $this.
|
|
19
|
+
captureStack($this, $this.v3b_1);
|
|
20
20
|
return $this;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -30,12 +30,12 @@ function JsonConvertException() {
|
|
|
30
30
|
if (JsonConvertExceptionClass === VOID) {
|
|
31
31
|
class $ extends ContentConvertException() {
|
|
32
32
|
constructor(message, cause) {
|
|
33
|
-
return new.target.
|
|
33
|
+
return new.target.a3c(message, cause);
|
|
34
34
|
}
|
|
35
|
-
static
|
|
35
|
+
static a3c(message, cause) {
|
|
36
36
|
cause = cause === VOID ? null : cause;
|
|
37
|
-
var $this = this.
|
|
38
|
-
captureStack($this, $this.
|
|
37
|
+
var $this = this.w3b(message, cause);
|
|
38
|
+
captureStack($this, $this.z3b_1);
|
|
39
39
|
return $this;
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -2,18 +2,12 @@ import { asFlow3ngsnn5xpz8pw as asFlow } from '../../../../kotlinx-coroutines-co
|
|
|
2
2
|
import { firstOrNull3msc896yik0f1 as firstOrNull } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs';
|
|
3
3
|
import { ContentConvertExceptione8d7sn5vn4zf as ContentConvertException } from './ContentConvertException.mjs';
|
|
4
4
|
import { NullBody_instanceyfq32eqie90j as NullBody_instance } from '../../../../ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs';
|
|
5
|
-
import {
|
|
6
|
-
Charsets_getInstance3jooo7e4x0j2x as Charsets_getInstance,
|
|
7
|
-
forName2faodmskqnoz5 as forName,
|
|
8
|
-
isSupported2nf870ypy50et as isSupported,
|
|
9
|
-
} from '../../../../ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs';
|
|
10
|
-
import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
11
5
|
import { Unit_instance3vdlo4e4f5ggx as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
6
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
12
7
|
import {
|
|
13
8
|
initMetadataForInterface1egvbzx539z91 as initMetadataForInterface,
|
|
14
9
|
initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
|
|
15
10
|
} from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
16
|
-
import { parseAndSortHeader33xgq5fx7y6j1 as parseAndSortHeader } from '../../../../ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs';
|
|
17
11
|
import {
|
|
18
12
|
equals2au1ep9vhcato as equals,
|
|
19
13
|
hashCodeq5arwsb9dgti as hashCode,
|
|
@@ -40,21 +34,16 @@ function *deserialize(_this__u8e3s4, body, typeInfo, charset, $completion) {
|
|
|
40
34
|
if (!body.e1u()) {
|
|
41
35
|
tmp_0 = body;
|
|
42
36
|
} else {
|
|
43
|
-
var tmp0_safe_receiver = typeInfo.
|
|
37
|
+
var tmp0_safe_receiver = typeInfo.s2p_1;
|
|
44
38
|
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.c1()) === true) {
|
|
45
39
|
tmp_0 = NullBody_instance;
|
|
46
40
|
} else {
|
|
47
|
-
throw ContentConvertException().
|
|
41
|
+
throw ContentConvertException().w3b('No suitable converter found for ' + typeInfo.toString());
|
|
48
42
|
}
|
|
49
43
|
}
|
|
50
44
|
}
|
|
51
45
|
return tmp_0;
|
|
52
46
|
}
|
|
53
|
-
function suitableCharset(_this__u8e3s4, defaultCharset) {
|
|
54
|
-
defaultCharset = defaultCharset === VOID ? Charsets_getInstance().g1w_1 : defaultCharset;
|
|
55
|
-
var tmp0_elvis_lhs = suitableCharsetOrNull(_this__u8e3s4, defaultCharset);
|
|
56
|
-
return tmp0_elvis_lhs == null ? defaultCharset : tmp0_elvis_lhs;
|
|
57
|
-
}
|
|
58
47
|
function Configuration$register$lambda(_this__u8e3s4) {
|
|
59
48
|
return Unit_instance;
|
|
60
49
|
}
|
|
@@ -68,10 +57,10 @@ function register$default(contentType, converter, configuration, $super) {
|
|
|
68
57
|
configuration = tmp;
|
|
69
58
|
var tmp_0;
|
|
70
59
|
if ($super === VOID) {
|
|
71
|
-
this.
|
|
60
|
+
this.b3c(contentType, converter, configuration);
|
|
72
61
|
tmp_0 = Unit_instance;
|
|
73
62
|
} else {
|
|
74
|
-
tmp_0 = $super.
|
|
63
|
+
tmp_0 = $super.b3c.call(this, contentType, converter, configuration);
|
|
75
64
|
}
|
|
76
65
|
return tmp_0;
|
|
77
66
|
}
|
|
@@ -84,30 +73,18 @@ function Configuration() {
|
|
|
84
73
|
}
|
|
85
74
|
return ConfigurationClass;
|
|
86
75
|
}
|
|
87
|
-
function suitableCharsetOrNull(_this__u8e3s4, defaultCharset) {
|
|
88
|
-
defaultCharset = defaultCharset === VOID ? Charsets_getInstance().g1w_1 : defaultCharset;
|
|
89
|
-
var _iterator__ex2g4s = parseAndSortHeader(_this__u8e3s4.ci('Accept-Charset')).l1();
|
|
90
|
-
while (_iterator__ex2g4s.m1()) {
|
|
91
|
-
var charset = _iterator__ex2g4s.n1().pl();
|
|
92
|
-
if (charset === '*')
|
|
93
|
-
return defaultCharset;
|
|
94
|
-
else if (isSupported(Charsets_getInstance(), charset))
|
|
95
|
-
return forName(Charsets_getInstance(), charset);
|
|
96
|
-
}
|
|
97
|
-
return null;
|
|
98
|
-
}
|
|
99
76
|
var sam$kotlinx_coroutines_flow_FlowCollector$0Class;
|
|
100
77
|
function sam$kotlinx_coroutines_flow_FlowCollector$0() {
|
|
101
78
|
if (sam$kotlinx_coroutines_flow_FlowCollector$0Class === VOID) {
|
|
102
79
|
class $ {
|
|
103
80
|
constructor(function_0) {
|
|
104
|
-
this.
|
|
81
|
+
this.d3c_1 = function_0;
|
|
105
82
|
}
|
|
106
83
|
*h1g(value, $completion) {
|
|
107
|
-
return yield* this.
|
|
84
|
+
return yield* this.d3c_1(value, $completion);
|
|
108
85
|
}
|
|
109
86
|
c5() {
|
|
110
|
-
return this.
|
|
87
|
+
return this.d3c_1;
|
|
111
88
|
}
|
|
112
89
|
equals(other) {
|
|
113
90
|
var tmp;
|
|
@@ -136,7 +113,7 @@ function sam$kotlinx_coroutines_flow_FlowCollector$0() {
|
|
|
136
113
|
function deserialize$o$collect$slambda($$this$unsafeFlow, $charset, $typeInfo, $body) {
|
|
137
114
|
return constructCallableReference(function *(value, $completion) {
|
|
138
115
|
var $this$transform = $$this$unsafeFlow;
|
|
139
|
-
var tmp$ret$1 = yield* value.
|
|
116
|
+
var tmp$ret$1 = yield* value.e3c($charset, $typeInfo, $body, $completion);
|
|
140
117
|
yield* $this$transform.h1g(tmp$ret$1, $completion);
|
|
141
118
|
return Unit_instance;
|
|
142
119
|
}, 1);
|
|
@@ -146,14 +123,14 @@ function deserialize$$inlined$map$1() {
|
|
|
146
123
|
if (deserialize$$inlined$map$1Class === VOID) {
|
|
147
124
|
class $ {
|
|
148
125
|
constructor($this, $charset, $typeInfo, $body) {
|
|
149
|
-
this.
|
|
150
|
-
this.
|
|
151
|
-
this.
|
|
152
|
-
this.
|
|
126
|
+
this.f3c_1 = $this;
|
|
127
|
+
this.g3c_1 = $charset;
|
|
128
|
+
this.h3c_1 = $typeInfo;
|
|
129
|
+
this.i3c_1 = $body;
|
|
153
130
|
}
|
|
154
131
|
*g1g(collector, $completion) {
|
|
155
|
-
var tmp = deserialize$o$collect$slambda(collector, this.
|
|
156
|
-
yield* this.
|
|
132
|
+
var tmp = deserialize$o$collect$slambda(collector, this.g3c_1, this.h3c_1, this.i3c_1);
|
|
133
|
+
yield* this.f3c_1.k1f(new (sam$kotlinx_coroutines_flow_FlowCollector$0())(tmp), $completion);
|
|
157
134
|
return Unit_instance;
|
|
158
135
|
}
|
|
159
136
|
k1f(collector, $completion) {
|
|
@@ -175,7 +152,6 @@ export {
|
|
|
175
152
|
deserialize as deserializedbfwk7upcilb,
|
|
176
153
|
register$default as register$default1k5lce5zfzlxr,
|
|
177
154
|
Configuration as Configuration20xgygxdzhlk5,
|
|
178
|
-
suitableCharset as suitableCharset1jgdcpdzbzgzn,
|
|
179
155
|
};
|
|
180
156
|
//endregion
|
|
181
157
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-serialization/common/src/ContentConverter.kt","../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/SafeCollector.common.kt","../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Transform.kt","../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Emitters.kt"],"sourcesContent":[null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["deserialize","<this>","body","typeInfo","charset","$completion","result","
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-serialization/common/src/ContentConverter.kt","../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/SafeCollector.common.kt","../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Transform.kt","../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Emitters.kt"],"sourcesContent":[null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["deserialize","<this>","body","typeInfo","charset","$completion","result","Configuration$register$lambda","register$default","contentType","converter","configuration","emit","value","equals","hashCode","deserialize$o$collect$slambda","deserialize$o$collect$slambda$lambda","collect","collector","deserialize$slambda","deserialize$slambda$lambda"],"mappings":";;;;;;;;;;;;;;;;;;;;;;qBAoGeA,CAAIC,a,EACfC,I,EACAC,Q,EACAC,O,EAHWC,WAAAL,EAIR;A;;eAMU,qB;;YCNN,mE;MDMPM,gBAEK,iBAAY,yBAAZ,c;;EAGD,gBAAU,IAAV,E;YAAkB,M;;IAClB,KAAC,IAAK,MAAN,C;cAAyB,I;;UAChB,qBAAT,QAAS,M;MAAT,KAAqB,oCAArB,kBAAqB,KAArB,MAAyC,IAAzC,C;;;QACQ,oCAA+B,kCAA/B,GAAgE,QAAhE,Y;;;;EAJZ,Y;AAMJ,C;sCAzBsCC,CAAA,aAAAA,EAAA;A,EAAE,oB;AAAD,C;yBAH5BC,CACHC,W,EACAC,S,EACAC,a,QAHGH,E;;;UAG2B,6B;;;;;;;;;;;;;C;;;;;;;;;;;;;;;QCjDyD,uB;;UAAAI,CAtBpEC,K,EAsBoER,WAAAO,E;;O;;;;YA9C/FE,C,KAAAA,E;;;;;;;;;;;;;;O;cAAAC,CAAAA,E;;O;;;;;;;sCDsCqBC,C,6CAAAA,E;8CAAAC,CAAE,K,EAAFZ,WAAAY,EAAA;A;QAyEoF,mBAzEvD,KAyEZ,KAAsB,QAAtB,EAA0C,SAA1C,EAA8D,KAA9D,c;WE9DjB,oBAAK,SAAL,c;IFXwC,oB;EAAA,C,EAtC7D,C;C;;;;;;;;;;;UCyGyBC,CAAYC,S,EAAZd,WAAAa,EAAyC;A,YE5DtD,oCF6DA,SE7DA,qC;eAAR,mEAAQ,GAAR,e;QF8DI,oB;MAAA,C;;;;;;;;;;4BDKaE,C,KAAAA,E;8CAAAC,CAAA,E,EAAAhB,WAAAgB,EAAA;A,IAAoC,OAAlC,QAAM,IAAN,CAAkC,IAApB,KAAK,M;EAAgB,C,EAhH1D,C;C;;;;;"}
|
|
@@ -14,7 +14,7 @@ function extensions(format) {
|
|
|
14
14
|
var _iterator__ex2g4s = tmp0.l1();
|
|
15
15
|
while (_iterator__ex2g4s.m1()) {
|
|
16
16
|
var element = _iterator__ex2g4s.n1();
|
|
17
|
-
var tmp0_safe_receiver = element.
|
|
17
|
+
var tmp0_safe_receiver = element.d49(format);
|
|
18
18
|
if (tmp0_safe_receiver == null)
|
|
19
19
|
null;
|
|
20
20
|
else {
|
|
@@ -32,6 +32,7 @@ import {
|
|
|
32
32
|
} from './SerializerLookup.mjs';
|
|
33
33
|
import { SerializationExceptioneqrdve3ts2n9 as SerializationException } from '../../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs';
|
|
34
34
|
import { readRemaining1kbpbgdrq25q1 as readRemaining } from '../../../../../ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs';
|
|
35
|
+
import { ByteReadChannel2ndu7k90iil3s as ByteReadChannel } from '../../../../../ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs';
|
|
35
36
|
import { discard3ugntd47xyll6 as discard } from '../../../../../ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs';
|
|
36
37
|
import { readByteArray1ri21h2rciakw as readByteArray } from '../../../../../kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs';
|
|
37
38
|
import { readText27783kyxjxi1g as readText } from '../../../../../ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs';
|
|
@@ -41,20 +42,12 @@ import { JsonConvertExceptiongnc5x6xwaf77 as JsonConvertException } from '../../
|
|
|
41
42
|
//region block: pre-declaration
|
|
42
43
|
//endregion
|
|
43
44
|
function serialization(_this__u8e3s4, contentType, format) {
|
|
44
|
-
_this__u8e3s4.
|
|
45
|
+
_this__u8e3s4.c3c(contentType, new (KotlinxSerializationConverter())(format));
|
|
45
46
|
}
|
|
46
47
|
function KotlinxSerializationConverter$serialize$o$collect$slambda($$this$unsafeFlow, $contentType, $charset, $typeInfo, $value) {
|
|
47
48
|
return constructCallableReference(function *(value, $completion) {
|
|
48
49
|
var $this$transform = $$this$unsafeFlow;
|
|
49
|
-
var tmp$ret$1 = yield* value.
|
|
50
|
-
yield* $this$transform.h1g(tmp$ret$1, $completion);
|
|
51
|
-
return Unit_instance;
|
|
52
|
-
}, 1);
|
|
53
|
-
}
|
|
54
|
-
function KotlinxSerializationConverter$deserialize$o$collect$slambda($$this$unsafeFlow, $charset, $typeInfo, $content) {
|
|
55
|
-
return constructCallableReference(function *(value, $completion) {
|
|
56
|
-
var $this$transform = $$this$unsafeFlow;
|
|
57
|
-
var tmp$ret$1 = yield* value.g3c($charset, $typeInfo, $content, $completion);
|
|
50
|
+
var tmp$ret$1 = yield* value.f3v($contentType, $charset, $typeInfo, $value, $completion);
|
|
58
51
|
yield* $this$transform.h1g(tmp$ret$1, $completion);
|
|
59
52
|
return Unit_instance;
|
|
60
53
|
}, 1);
|
|
@@ -62,11 +55,11 @@ function KotlinxSerializationConverter$deserialize$o$collect$slambda($$this$unsa
|
|
|
62
55
|
function serializeContent($this, serializer, format, value, contentType, charset) {
|
|
63
56
|
var tmp;
|
|
64
57
|
if (isInterface(format, StringFormat())) {
|
|
65
|
-
var content = format.
|
|
58
|
+
var content = format.b1y(isInterface(serializer, KSerializer()) ? serializer : THROW_CCE(), value);
|
|
66
59
|
tmp = new (TextContent())(content, withCharsetIfNeeded(contentType, charset));
|
|
67
60
|
} else {
|
|
68
61
|
if (isInterface(format, BinaryFormat())) {
|
|
69
|
-
var content_0 = format.
|
|
62
|
+
var content_0 = format.d1y(isInterface(serializer, KSerializer()) ? serializer : THROW_CCE(), value);
|
|
70
63
|
tmp = new (ByteArrayContent())(content_0, contentType);
|
|
71
64
|
} else {
|
|
72
65
|
// Inline function 'kotlin.error' call
|
|
@@ -81,13 +74,13 @@ function sam$kotlinx_coroutines_flow_FlowCollector$0() {
|
|
|
81
74
|
if (sam$kotlinx_coroutines_flow_FlowCollector$0Class === VOID) {
|
|
82
75
|
class $ {
|
|
83
76
|
constructor(function_0) {
|
|
84
|
-
this.
|
|
77
|
+
this.e49_1 = function_0;
|
|
85
78
|
}
|
|
86
79
|
*h1g(value, $completion) {
|
|
87
|
-
return yield* this.
|
|
80
|
+
return yield* this.e49_1(value, $completion);
|
|
88
81
|
}
|
|
89
82
|
c5() {
|
|
90
|
-
return this.
|
|
83
|
+
return this.e49_1;
|
|
91
84
|
}
|
|
92
85
|
equals(other) {
|
|
93
86
|
var tmp;
|
|
@@ -113,57 +106,20 @@ function sam$kotlinx_coroutines_flow_FlowCollector$0() {
|
|
|
113
106
|
}
|
|
114
107
|
return sam$kotlinx_coroutines_flow_FlowCollector$0Class;
|
|
115
108
|
}
|
|
116
|
-
var sam$kotlinx_coroutines_flow_FlowCollector$0Class_0;
|
|
117
|
-
function sam$kotlinx_coroutines_flow_FlowCollector$0_0() {
|
|
118
|
-
if (sam$kotlinx_coroutines_flow_FlowCollector$0Class_0 === VOID) {
|
|
119
|
-
class $ {
|
|
120
|
-
constructor(function_0) {
|
|
121
|
-
this.h49_1 = function_0;
|
|
122
|
-
}
|
|
123
|
-
*h1g(value, $completion) {
|
|
124
|
-
return yield* this.h49_1(value, $completion);
|
|
125
|
-
}
|
|
126
|
-
c5() {
|
|
127
|
-
return this.h49_1;
|
|
128
|
-
}
|
|
129
|
-
equals(other) {
|
|
130
|
-
var tmp;
|
|
131
|
-
if (!(other == null) ? isInterface(other, FlowCollector()) : false) {
|
|
132
|
-
var tmp_0;
|
|
133
|
-
if (!(other == null) ? isInterface(other, FunctionAdapter()) : false) {
|
|
134
|
-
tmp_0 = equals(this.c5(), other.c5());
|
|
135
|
-
} else {
|
|
136
|
-
tmp_0 = false;
|
|
137
|
-
}
|
|
138
|
-
tmp = tmp_0;
|
|
139
|
-
} else {
|
|
140
|
-
tmp = false;
|
|
141
|
-
}
|
|
142
|
-
return tmp;
|
|
143
|
-
}
|
|
144
|
-
hashCode() {
|
|
145
|
-
return hashCode(this.c5());
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
initMetadataForClass($, 'sam$kotlinx_coroutines_flow_FlowCollector$0', VOID, VOID, [FlowCollector(), FunctionAdapter()], [1]);
|
|
149
|
-
sam$kotlinx_coroutines_flow_FlowCollector$0Class_0 = $;
|
|
150
|
-
}
|
|
151
|
-
return sam$kotlinx_coroutines_flow_FlowCollector$0Class_0;
|
|
152
|
-
}
|
|
153
109
|
var KotlinxSerializationConverter$serialize$$inlined$map$1Class;
|
|
154
110
|
function KotlinxSerializationConverter$serialize$$inlined$map$1() {
|
|
155
111
|
if (KotlinxSerializationConverter$serialize$$inlined$map$1Class === VOID) {
|
|
156
112
|
class $ {
|
|
157
113
|
constructor($this, $contentType, $charset, $typeInfo, $value) {
|
|
158
|
-
this.
|
|
159
|
-
this.
|
|
160
|
-
this.
|
|
161
|
-
this.
|
|
162
|
-
this.
|
|
114
|
+
this.f49_1 = $this;
|
|
115
|
+
this.g49_1 = $contentType;
|
|
116
|
+
this.h49_1 = $charset;
|
|
117
|
+
this.i49_1 = $typeInfo;
|
|
118
|
+
this.j49_1 = $value;
|
|
163
119
|
}
|
|
164
120
|
*g1g(collector, $completion) {
|
|
165
|
-
var tmp = KotlinxSerializationConverter$serialize$o$collect$slambda(collector, this.
|
|
166
|
-
yield* this.
|
|
121
|
+
var tmp = KotlinxSerializationConverter$serialize$o$collect$slambda(collector, this.g49_1, this.h49_1, this.i49_1, this.j49_1);
|
|
122
|
+
yield* this.f49_1.k1f(new (sam$kotlinx_coroutines_flow_FlowCollector$0())(tmp), $completion);
|
|
167
123
|
return Unit_instance;
|
|
168
124
|
}
|
|
169
125
|
k1f(collector, $completion) {
|
|
@@ -180,60 +136,31 @@ function KotlinxSerializationConverter$serialize$slambda() {
|
|
|
180
136
|
return !(it == null);
|
|
181
137
|
}, 1);
|
|
182
138
|
}
|
|
183
|
-
var KotlinxSerializationConverter$deserialize$$inlined$map$1Class;
|
|
184
|
-
function KotlinxSerializationConverter$deserialize$$inlined$map$1() {
|
|
185
|
-
if (KotlinxSerializationConverter$deserialize$$inlined$map$1Class === VOID) {
|
|
186
|
-
class $ {
|
|
187
|
-
constructor($this, $charset, $typeInfo, $content) {
|
|
188
|
-
this.n49_1 = $this;
|
|
189
|
-
this.o49_1 = $charset;
|
|
190
|
-
this.p49_1 = $typeInfo;
|
|
191
|
-
this.q49_1 = $content;
|
|
192
|
-
}
|
|
193
|
-
*g1g(collector, $completion) {
|
|
194
|
-
var tmp = KotlinxSerializationConverter$deserialize$o$collect$slambda(collector, this.o49_1, this.p49_1, this.q49_1);
|
|
195
|
-
yield* this.n49_1.k1f(new (sam$kotlinx_coroutines_flow_FlowCollector$0_0())(tmp), $completion);
|
|
196
|
-
return Unit_instance;
|
|
197
|
-
}
|
|
198
|
-
k1f(collector, $completion) {
|
|
199
|
-
return this.g1g(collector, $completion);
|
|
200
|
-
}
|
|
201
|
-
}
|
|
202
|
-
initMetadataForClass($, VOID, VOID, VOID, VOID, [1]);
|
|
203
|
-
KotlinxSerializationConverter$deserialize$$inlined$map$1Class = $;
|
|
204
|
-
}
|
|
205
|
-
return KotlinxSerializationConverter$deserialize$$inlined$map$1Class;
|
|
206
|
-
}
|
|
207
|
-
function KotlinxSerializationConverter$deserialize$slambda($content) {
|
|
208
|
-
return constructCallableReference(function *(it, $completion) {
|
|
209
|
-
return !(it == null) || $content.e1u();
|
|
210
|
-
}, 1);
|
|
211
|
-
}
|
|
212
139
|
var KotlinxSerializationConverterClass;
|
|
213
140
|
function KotlinxSerializationConverter() {
|
|
214
141
|
if (KotlinxSerializationConverterClass === VOID) {
|
|
215
142
|
class $ {
|
|
216
143
|
constructor(format) {
|
|
217
|
-
this.
|
|
218
|
-
this.
|
|
144
|
+
this.k49_1 = format;
|
|
145
|
+
this.l49_1 = extensions(this.k49_1);
|
|
219
146
|
var tmp;
|
|
220
|
-
var tmp_0 = this.
|
|
147
|
+
var tmp_0 = this.k49_1;
|
|
221
148
|
if (isInterface(tmp_0, BinaryFormat())) {
|
|
222
149
|
tmp = true;
|
|
223
150
|
} else {
|
|
224
|
-
var tmp_1 = this.
|
|
151
|
+
var tmp_1 = this.k49_1;
|
|
225
152
|
tmp = isInterface(tmp_1, StringFormat());
|
|
226
153
|
}
|
|
227
154
|
// Inline function 'kotlin.require' call
|
|
228
155
|
if (!tmp) {
|
|
229
|
-
var message = 'Only binary and string formats are supported, ' + toString(this.
|
|
156
|
+
var message = 'Only binary and string formats are supported, ' + toString(this.k49_1) + ' is not supported.';
|
|
230
157
|
throw IllegalArgumentException().m2(toString(message));
|
|
231
158
|
}
|
|
232
159
|
}
|
|
233
|
-
*
|
|
160
|
+
*m49(contentType, charset, typeInfo, value, $completion) {
|
|
234
161
|
// Inline function 'kotlinx.coroutines.flow.map' call
|
|
235
162
|
// Inline function 'kotlinx.coroutines.flow.unsafeTransform' call
|
|
236
|
-
var this_0 = asFlow(this.
|
|
163
|
+
var this_0 = asFlow(this.l49_1);
|
|
237
164
|
// Inline function 'kotlinx.coroutines.flow.internal.unsafeFlow' call
|
|
238
165
|
var tmp = new (KotlinxSerializationConverter$serialize$$inlined$map$1())(this_0, contentType, charset, typeInfo, value);
|
|
239
166
|
var fromExtension = yield* firstOrNull(tmp, KotlinxSerializationConverter$serialize$slambda(), $completion);
|
|
@@ -241,61 +168,58 @@ function KotlinxSerializationConverter() {
|
|
|
241
168
|
return fromExtension;
|
|
242
169
|
var tmp_0;
|
|
243
170
|
try {
|
|
244
|
-
tmp_0 = serializerForTypeInfo(this.
|
|
171
|
+
tmp_0 = serializerForTypeInfo(this.k49_1.a22(), typeInfo);
|
|
245
172
|
} catch ($p) {
|
|
246
173
|
var tmp_1;
|
|
247
174
|
if ($p instanceof SerializationException()) {
|
|
248
175
|
var cause = $p;
|
|
249
|
-
tmp_1 = guessSerializer(value, this.
|
|
176
|
+
tmp_1 = guessSerializer(value, this.k49_1.a22());
|
|
250
177
|
} else {
|
|
251
178
|
throw $p;
|
|
252
179
|
}
|
|
253
180
|
tmp_0 = tmp_1;
|
|
254
181
|
}
|
|
255
182
|
var serializer = tmp_0;
|
|
256
|
-
return serializeContent(this, serializer, this.
|
|
183
|
+
return serializeContent(this, serializer, this.k49_1, value, contentType, charset);
|
|
257
184
|
}
|
|
258
|
-
|
|
259
|
-
return this.
|
|
185
|
+
f3v(contentType, charset, typeInfo, value, $completion) {
|
|
186
|
+
return this.m49(contentType, charset, typeInfo, value, $completion);
|
|
260
187
|
}
|
|
261
|
-
*
|
|
262
|
-
// Inline function 'kotlinx.coroutines.flow.map' call
|
|
263
|
-
// Inline function 'kotlinx.coroutines.flow.unsafeTransform' call
|
|
264
|
-
var this_0 = asFlow(this.s49_1);
|
|
265
|
-
// Inline function 'kotlinx.coroutines.flow.internal.unsafeFlow' call
|
|
266
|
-
var tmp = new (KotlinxSerializationConverter$deserialize$$inlined$map$1())(this_0, charset, typeInfo, content);
|
|
267
|
-
var fromExtension = yield* firstOrNull(tmp, KotlinxSerializationConverter$deserialize$slambda(content), $completion);
|
|
268
|
-
var tmp_0;
|
|
269
|
-
// Inline function 'kotlin.collections.isNotEmpty' call
|
|
270
|
-
if (!this.s49_1.j1()) {
|
|
271
|
-
tmp_0 = !(fromExtension == null) || content.e1u();
|
|
272
|
-
} else {
|
|
273
|
-
tmp_0 = false;
|
|
274
|
-
}
|
|
275
|
-
if (tmp_0)
|
|
276
|
-
return fromExtension;
|
|
277
|
-
var serializer = serializerForTypeInfo(this.r49_1.b22(), typeInfo);
|
|
188
|
+
*e3c(charset, typeInfo, content, $completion) {
|
|
278
189
|
var contentPacket = yield* readRemaining(content, $completion);
|
|
190
|
+
var _iterator__ex2g4s = this.l49_1.l1();
|
|
191
|
+
$l$loop: while (_iterator__ex2g4s.m1()) {
|
|
192
|
+
var ext = _iterator__ex2g4s.n1();
|
|
193
|
+
var tmp0_elvis_lhs = yield* ext.e3c(charset, typeInfo, ByteReadChannel(contentPacket), $completion);
|
|
194
|
+
var tmp;
|
|
195
|
+
if (tmp0_elvis_lhs == null) {
|
|
196
|
+
continue $l$loop;
|
|
197
|
+
} else {
|
|
198
|
+
tmp = tmp0_elvis_lhs;
|
|
199
|
+
}
|
|
200
|
+
return tmp;
|
|
201
|
+
}
|
|
202
|
+
var serializer = serializerForTypeInfo(this.k49_1.a22(), typeInfo);
|
|
279
203
|
try {
|
|
280
|
-
var
|
|
281
|
-
var
|
|
282
|
-
if (isInterface(
|
|
283
|
-
|
|
204
|
+
var tmp1_subject = this.k49_1;
|
|
205
|
+
var tmp_0;
|
|
206
|
+
if (isInterface(tmp1_subject, StringFormat())) {
|
|
207
|
+
tmp_0 = this.k49_1.c1y(serializer, readText(contentPacket, charset));
|
|
284
208
|
} else {
|
|
285
|
-
if (isInterface(
|
|
286
|
-
|
|
209
|
+
if (isInterface(tmp1_subject, BinaryFormat())) {
|
|
210
|
+
tmp_0 = this.k49_1.e1y(serializer, readByteArray(contentPacket));
|
|
287
211
|
} else {
|
|
288
212
|
discard(contentPacket);
|
|
289
213
|
// Inline function 'kotlin.error' call
|
|
290
|
-
var message = 'Unsupported format ' + toString(this.
|
|
214
|
+
var message = 'Unsupported format ' + toString(this.k49_1);
|
|
291
215
|
throw IllegalStateException().o(toString(message));
|
|
292
216
|
}
|
|
293
217
|
}
|
|
294
|
-
return
|
|
218
|
+
return tmp_0;
|
|
295
219
|
} catch ($p) {
|
|
296
220
|
if ($p instanceof Error) {
|
|
297
221
|
var cause = $p;
|
|
298
|
-
throw JsonConvertException().
|
|
222
|
+
throw JsonConvertException().a3c('Illegal input: ' + cause.message, cause);
|
|
299
223
|
} else {
|
|
300
224
|
throw $p;
|
|
301
225
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-serialization/ktor-serialization-kotlinx/common/src/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.kt","../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Transform.kt","../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/src/kotlin/util/Preconditions.kt","../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/SafeCollector.common.kt","../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Emitters.kt"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-serialization/ktor-serialization-kotlinx/common/src/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.kt","../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Transform.kt","../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/src/kotlin/util/Preconditions.kt","../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/SafeCollector.common.kt","../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Emitters.kt"],"sourcesContent":[null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["serialization","<this>","contentType","format","KotlinxSerializationConverter$serialize$o$collect$slambda","KotlinxSerializationConverter$serialize$o$collect$slambda$lambda","$completion","serializeContent","serializer","value","charset","content","emit","equals","hashCode","collect","collector","KotlinxSerializationConverter$serialize$slambda","KotlinxSerializationConverter$serialize$slambda$lambda","message","serialize","typeInfo","fromExtension","cause","deserialize","contentPacket","ext"],"mappings":"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"}
|
package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs
CHANGED
|
@@ -48,7 +48,7 @@ import { KClass1cc9rfeybg8hs as KClass } from '../../../../../kotlin-kotlin-stdl
|
|
|
48
48
|
//endregion
|
|
49
49
|
function serializerForTypeInfo(_this__u8e3s4, typeInfo) {
|
|
50
50
|
var module_0 = _this__u8e3s4;
|
|
51
|
-
var tmp0_safe_receiver = typeInfo.
|
|
51
|
+
var tmp0_safe_receiver = typeInfo.s2p_1;
|
|
52
52
|
var tmp;
|
|
53
53
|
if (tmp0_safe_receiver == null) {
|
|
54
54
|
tmp = null;
|
|
@@ -66,13 +66,13 @@ function serializerForTypeInfo(_this__u8e3s4, typeInfo) {
|
|
|
66
66
|
var tmp1_elvis_lhs = tmp;
|
|
67
67
|
var tmp_1;
|
|
68
68
|
if (tmp1_elvis_lhs == null) {
|
|
69
|
-
var tmp2_safe_receiver = module_0.
|
|
69
|
+
var tmp2_safe_receiver = module_0.e1z(typeInfo.r2p_1);
|
|
70
70
|
tmp_1 = tmp2_safe_receiver == null ? null : maybeNullable(tmp2_safe_receiver, typeInfo);
|
|
71
71
|
} else {
|
|
72
72
|
tmp_1 = tmp1_elvis_lhs;
|
|
73
73
|
}
|
|
74
74
|
var tmp3_elvis_lhs = tmp_1;
|
|
75
|
-
return tmp3_elvis_lhs == null ? maybeNullable(serializer(typeInfo.
|
|
75
|
+
return tmp3_elvis_lhs == null ? maybeNullable(serializer(typeInfo.r2p_1), typeInfo) : tmp3_elvis_lhs;
|
|
76
76
|
}
|
|
77
77
|
function guessSerializer(value, module_0) {
|
|
78
78
|
var tmp;
|
|
@@ -102,7 +102,7 @@ function guessSerializer(value, module_0) {
|
|
|
102
102
|
var valueSerializer = elementSerializer(value.l4(), module_0);
|
|
103
103
|
tmp = MapSerializer(keySerializer, valueSerializer);
|
|
104
104
|
} else {
|
|
105
|
-
var tmp3_elvis_lhs = module_0.
|
|
105
|
+
var tmp3_elvis_lhs = module_0.e1z(getKClassFromExpression(value));
|
|
106
106
|
tmp = tmp3_elvis_lhs == null ? serializer(getKClassFromExpression(value)) : tmp3_elvis_lhs;
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -167,11 +167,11 @@ function checkTypeParameters(type, typeInfo, module_0) {
|
|
|
167
167
|
var _destruct__k2r9zo = tmp_3;
|
|
168
168
|
var s = _destruct__k2r9zo.pl();
|
|
169
169
|
var be = _destruct__k2r9zo.ql();
|
|
170
|
-
throw SerializationException().
|
|
170
|
+
throw SerializationException().v1y('Serializer for type argument' + s + ' ' + argNames + ' ' + be + " not found for '" + typeInfo.r2p_1.f1() + "'. " + ('Ensure that the listed type' + s + ' ' + be + " marked as '@Serializable'."));
|
|
171
171
|
}
|
|
172
172
|
function maybeNullable(_this__u8e3s4, typeInfo) {
|
|
173
173
|
var tmp;
|
|
174
|
-
var tmp0_safe_receiver = typeInfo.
|
|
174
|
+
var tmp0_safe_receiver = typeInfo.s2p_1;
|
|
175
175
|
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.c1()) === true) {
|
|
176
176
|
tmp = get_nullable(_this__u8e3s4);
|
|
177
177
|
} else {
|
|
@@ -196,7 +196,7 @@ function elementSerializer(_this__u8e3s4, module_0) {
|
|
|
196
196
|
var _iterator__ex2g4s_0 = destination.l1();
|
|
197
197
|
while (_iterator__ex2g4s_0.m1()) {
|
|
198
198
|
var e = _iterator__ex2g4s_0.n1();
|
|
199
|
-
var key = e.
|
|
199
|
+
var key = e.i1x().p1z();
|
|
200
200
|
if (set.o2(key)) {
|
|
201
201
|
list.o2(e);
|
|
202
202
|
}
|
|
@@ -209,7 +209,7 @@ function elementSerializer(_this__u8e3s4, module_0) {
|
|
|
209
209
|
var _iterator__ex2g4s_1 = serializers.l1();
|
|
210
210
|
while (_iterator__ex2g4s_1.m1()) {
|
|
211
211
|
var item_0 = _iterator__ex2g4s_1.n1();
|
|
212
|
-
var tmp$ret$7 = item_0.
|
|
212
|
+
var tmp$ret$7 = item_0.i1x().p1z();
|
|
213
213
|
destination_0.o2(tmp$ret$7);
|
|
214
214
|
}
|
|
215
215
|
// Inline function 'kotlin.error' call
|
|
@@ -218,7 +218,7 @@ function elementSerializer(_this__u8e3s4, module_0) {
|
|
|
218
218
|
}
|
|
219
219
|
var tmp0_elvis_lhs = singleOrNull(serializers);
|
|
220
220
|
var selected = tmp0_elvis_lhs == null ? serializer_0(StringCompanionObject_instance) : tmp0_elvis_lhs;
|
|
221
|
-
if (selected.
|
|
221
|
+
if (selected.i1x().i1z()) {
|
|
222
222
|
return selected;
|
|
223
223
|
}
|
|
224
224
|
if (!isInterface(selected, KSerializer()))
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-serialization/ktor-serialization-kotlinx/common/src/io/ktor/serialization/kotlinx/SerializerLookup.kt","../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/common/src/generated/_Collections.kt","../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/src/kotlin/util/Standard.kt","../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["serializerForTypeInfo","<this>","typeInfo","module","guessSerializer","value","keySerializer","valueSerializer","checkTypeParameters","type","element","<unused var>","nonSerializableArgs","argNames","s","be","maybeNullable","elementSerializer","item","set","list","e","key","serializers","selected","checkTypeParameters$lambda","clz"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BAoBOA,CAAIC,a,EAAwCC,QAA5CF,EAAgF;A,MACnFG,WAAa,a;MACG,qBAAT,QAAS,M;;EACV,+B;UAAA,I;;;;IACM,IAFL,kBAEU,KAAU,KAAf,C;cACA,I;;UAGA,iBAAO,iBAAP,QAAO,EANZ,kBAMY,C;cAAP,yBAAiC,oBANtC,kBAMsC,EAA0B,QAA1B,EAAoC,QAApC,CAAjC,iB;;UAJJ,K;;MAFD,oB;;EAAA,2B;QASO,qBAAP,QAAO,KAAc,QAAd,CAAuB,KAAvB,C;YAA8B,kDAArC,kBAAqC,EAAc,QAAd,C;;YATrC,c;;MAAA,sB;EAAP,OAAO,yBAU2B,cAAb,WAAd,QAAc,CAAL,KAAK,CAAa,EAAc,QAAd,CAV3B,iB;AAWX,C;wBAgDOC,CAAoBC,K,EAAaF,QAAjCC,EAAgF;A;EACnF,IADyF,KACzF,S;UAA4B,aAAb,4CAAa,C;;
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-serialization/ktor-serialization-kotlinx/common/src/io/ktor/serialization/kotlinx/SerializerLookup.kt","../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/common/src/generated/_Collections.kt","../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/src/kotlin/util/Standard.kt","../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["serializerForTypeInfo","<this>","typeInfo","module","guessSerializer","value","keySerializer","valueSerializer","checkTypeParameters","type","element","<unused var>","nonSerializableArgs","argNames","s","be","maybeNullable","elementSerializer","item","set","list","e","key","serializers","selected","checkTypeParameters$lambda","clz"],"mappings":"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"}
|