@continuous-excellence/coupling-cli 1.1.729 → 1.1.731

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.
Files changed (422) hide show
  1. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
  2. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +38 -38
  3. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +12 -12
  4. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +18 -18
  5. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
  6. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +29 -29
  7. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +2 -2
  8. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
  9. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +7 -7
  10. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +25 -25
  11. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +34 -34
  12. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +21 -21
  13. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +30 -30
  14. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +3 -3
  15. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs +2 -2
  16. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs +3 -3
  17. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +42 -42
  18. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +28 -28
  19. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
  20. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +38 -38
  21. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
  22. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs +51 -51
  23. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +40 -40
  24. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +31 -31
  25. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +16 -16
  26. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +32 -32
  27. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +62 -62
  28. package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +10 -10
  29. package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +12 -12
  30. package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
  31. package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +14 -14
  32. package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs +45 -45
  33. package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +27 -27
  34. package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +9 -9
  35. package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +4 -4
  36. package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +7 -7
  37. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +95 -95
  38. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
  39. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +55 -55
  40. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +14 -14
  41. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
  42. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
  43. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +27 -27
  44. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
  45. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
  46. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +16 -16
  47. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
  48. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
  49. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +21 -21
  50. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
  51. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +7 -7
  52. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
  53. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
  54. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
  55. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +19 -19
  56. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +31 -31
  57. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +11 -11
  58. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
  59. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +2 -2
  60. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs +16 -16
  61. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
  62. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
  63. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +34 -34
  64. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyContributionReportContributionsQuery.mjs +41 -41
  65. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +30 -30
  66. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +23 -23
  67. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +30 -30
  68. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +3 -3
  69. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +39 -39
  70. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +6 -6
  71. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +21 -21
  72. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
  73. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +9 -9
  74. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
  75. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetails.mjs +47 -47
  76. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +55 -55
  77. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +68 -68
  78. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +102 -102
  79. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +23 -23
  80. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +36 -36
  81. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +24 -24
  82. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +33 -33
  83. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/ContributionDetailsSelections.mjs +1 -1
  84. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PairingSetDetailsSelections.mjs +5 -5
  85. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PartyDetailsSelections.mjs +1 -1
  86. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PlayerDetailsSelections.mjs +1 -1
  87. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs +3 -3
  88. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs +4 -4
  89. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs +2 -2
  90. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/SaveContributionMutationSelections.mjs +1 -1
  91. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
  92. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
  93. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Contribution.mjs +1 -1
  94. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionId.mjs +1 -1
  95. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +21 -21
  96. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionReport.mjs +1 -1
  97. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +4 -4
  98. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/DateTimeISO.mjs +1 -1
  99. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Duration.mjs +1 -1
  100. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLBoolean.mjs +1 -1
  101. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
  102. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLInt.mjs +1 -1
  103. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLString.mjs +1 -1
  104. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Mutation.mjs +2 -2
  105. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairSnapshot.mjs +1 -1
  106. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSet.mjs +1 -1
  107. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSetId.mjs +1 -1
  108. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Party.mjs +2 -2
  109. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyId.mjs +1 -1
  110. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +4 -4
  111. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinId.mjs +1 -1
  112. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinSnapshot.mjs +1 -1
  113. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Player.mjs +1 -1
  114. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerId.mjs +1 -1
  115. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerSnapshot.mjs +1 -1
  116. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Query.mjs +3 -3
  117. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
  118. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +7 -7
  119. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +7 -7
  120. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +47 -47
  121. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionWindow_ResponseAdapter.mjs +7 -7
  122. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +10 -10
  123. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +6 -6
  124. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +8 -8
  125. package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +6 -6
  126. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs +104 -104
  127. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +79 -79
  128. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +61 -61
  129. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs +1 -1
  130. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +55 -55
  131. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +35 -35
  132. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/DeferredFragmentIdentifier.mjs +8 -8
  133. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs +20 -20
  134. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executable.mjs +1 -1
  135. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +7 -7
  136. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs +21 -21
  137. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +8 -8
  138. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +6 -6
  139. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/RequestParameters.mjs +41 -41
  140. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/CacheUrlOverride.mjs +5 -5
  141. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +74 -74
  142. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +58 -58
  143. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
  144. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +29 -29
  145. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +84 -84
  146. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +279 -279
  147. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonNumber.mjs +2 -2
  148. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +10 -10
  149. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonWriters.mjs +12 -12
  150. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +103 -103
  151. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +47 -47
  152. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/FileUploadAwareJsonWriter.mjs +35 -35
  153. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/JsonScope.mjs +9 -9
  154. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +68 -68
  155. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +18 -18
  156. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +195 -195
  157. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +6 -6
  158. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
  159. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +7 -7
  160. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +40 -40
  161. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +48 -48
  162. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +14 -14
  163. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/IncrementalDeliveryProtocolImpl.mjs +8 -8
  164. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_1IncrementalResultsMerger.mjs +29 -29
  165. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_2IncrementalResultsMerger.mjs +29 -29
  166. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/is-node.mjs +1 -1
  167. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +7 -7
  168. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +1 -1
  169. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +21 -21
  170. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +8 -8
  171. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
  172. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +105 -105
  173. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ClientMessage.mjs +2 -2
  174. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/GraphQLWsProtocol.mjs +13 -13
  175. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ServerMessage.mjs +6 -6
  176. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketEngine.js.mjs +42 -42
  177. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketNetworkTransport.mjs +58 -58
  178. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs +97 -97
  179. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/WebSocketPool.mjs +30 -30
  180. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +12 -12
  181. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +25 -25
  182. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +110 -110
  183. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +21 -21
  184. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
  185. package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
  186. package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +25 -25
  187. package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +32 -32
  188. package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +7 -7
  189. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
  190. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
  191. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
  192. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +94 -94
  193. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +95 -95
  194. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +138 -138
  195. package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
  196. package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
  197. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +132 -132
  198. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +46 -46
  199. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
  200. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
  201. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
  202. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +13 -13
  203. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
  204. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
  205. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
  206. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +184 -184
  207. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +5 -5
  208. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
  209. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
  210. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
  211. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
  212. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +35 -35
  213. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +222 -222
  214. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
  215. package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
  216. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/command/SuspendingCliktCommand.mjs +2 -2
  217. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
  218. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
  219. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
  220. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
  221. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
  222. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
  223. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
  224. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
  225. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
  226. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
  227. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +21 -21
  228. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
  229. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +114 -114
  230. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +126 -126
  231. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +57 -57
  232. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +17 -17
  233. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +1 -1
  234. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
  235. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +2 -2
  236. package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +0 -9
  237. package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
  238. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
  239. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
  240. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +1 -1
  241. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
  242. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +9 -9
  243. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +25 -25
  244. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +1 -1
  245. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
  246. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +11 -11
  247. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +5 -5
  248. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +11 -11
  249. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
  250. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2 -2
  251. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
  252. package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -1
  253. package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -1
  254. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -1
  255. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -1
  256. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -1
  257. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -1
  258. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -1
  259. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -1
  260. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -1
  261. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -1
  262. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -1
  263. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -1
  264. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -1
  265. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -1
  266. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +5 -1
  267. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -1
  268. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -1
  269. package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -1
  270. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +39 -39
  271. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +19 -19
  272. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +45 -45
  273. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementBuilders.mjs +6 -6
  274. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +74 -74
  275. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonExceptions.mjs +20 -20
  276. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
  277. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +177 -177
  278. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
  279. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +64 -64
  280. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +9 -9
  281. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +7 -7
  282. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +10 -10
  283. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +38 -38
  284. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +4 -4
  285. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +1 -1
  286. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +11 -11
  287. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +53 -53
  288. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +4 -4
  289. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +8 -8
  290. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +144 -144
  291. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +97 -97
  292. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
  293. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +197 -197
  294. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +128 -128
  295. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +3 -3
  296. package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +86 -38
  297. package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -1
  298. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +1 -1
  299. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +1 -1
  300. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +36 -33
  301. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -1
  302. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +24 -24
  303. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +15 -15
  304. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +4 -4
  305. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +2 -2
  306. package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +1 -1
  307. package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +2 -2
  308. package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/HttpClientCallLogger.mjs +25 -25
  309. package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs +19 -19
  310. package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogLevel.mjs +3 -3
  311. package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggedContent.mjs +11 -11
  312. package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logger.mjs +1 -1
  313. package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs +88 -88
  314. package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +9 -9
  315. package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +3 -3
  316. package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +10 -13
  317. package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -1
  318. package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs +21 -1
  319. package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -1
  320. package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +13 -13
  321. package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +1 -1
  322. package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +3 -3
  323. package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +2 -2
  324. package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +96 -74
  325. package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -1
  326. package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +4 -4
  327. package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +6 -32
  328. package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -1
  329. package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.nonJvm.mjs +36 -0
  330. package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.nonJvm.mjs.map +1 -0
  331. package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +1 -1
  332. package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +27 -27
  333. package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +1 -1
  334. package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +1 -1
  335. package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +30 -30
  336. package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +5 -5
  337. package/kotlin/ktor-ktor-utils/io/ktor/util/ByteChannels.mjs +2 -2
  338. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +24 -0
  339. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -1
  340. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/ControlFrames.mjs +58 -0
  341. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/ControlFrames.mjs.map +1 -0
  342. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs +76 -76
  343. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs +17 -15
  344. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs.map +1 -1
  345. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +6 -6
  346. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -1
  347. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +6 -6
  348. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +6 -6
  349. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +2 -2
  350. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +7 -7
  351. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs +5 -3
  352. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs.map +1 -1
  353. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
  354. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
  355. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
  356. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
  357. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
  358. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
  359. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
  360. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
  361. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +15 -15
  362. package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
  363. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +40 -40
  364. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +61 -61
  365. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
  366. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +21 -21
  367. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +54 -54
  368. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
  369. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
  370. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
  371. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
  372. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
  373. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +208 -208
  374. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
  375. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +122 -122
  376. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
  377. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
  378. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
  379. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
  380. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +54 -54
  381. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
  382. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
  383. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
  384. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +13 -13
  385. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +8 -8
  386. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
  387. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
  388. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +53 -53
  389. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
  390. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +52 -52
  391. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +68 -68
  392. package/kotlin/okio-parent-okio/okio/Buffer.mjs +360 -360
  393. package/kotlin/okio-parent-okio/okio/ByteString.mjs +51 -51
  394. package/kotlin/okio-parent-okio/okio/HashingSink.mjs +14 -14
  395. package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +18 -18
  396. package/kotlin/okio-parent-okio/okio/Okio.mjs +1 -1
  397. package/kotlin/okio-parent-okio/okio/Options.mjs +24 -24
  398. package/kotlin/okio-parent-okio/okio/RealBufferedSink.mjs +37 -37
  399. package/kotlin/okio-parent-okio/okio/RealBufferedSource.mjs +60 -60
  400. package/kotlin/okio-parent-okio/okio/Segment.mjs +65 -65
  401. package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +3 -3
  402. package/kotlin/okio-parent-okio/okio/SegmentedByteString.mjs +51 -51
  403. package/kotlin/okio-parent-okio/okio/Util.mjs +1 -1
  404. package/kotlin/okio-parent-okio/okio/internal/-Utf8.mjs +1 -1
  405. package/kotlin/okio-parent-okio/okio/internal/Buffer.mjs +57 -57
  406. package/kotlin/okio-parent-okio/okio/internal/ByteString.mjs +1 -1
  407. package/kotlin/okio-parent-okio/okio/internal/RealBufferedSource.mjs +10 -10
  408. package/kotlin/okio-parent-okio/okio/internal/SegmentedByteString.mjs +1 -1
  409. package/kotlin/okio-parent-okio/okio/internal/Sha256.mjs +63 -63
  410. package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
  411. package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
  412. package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +1 -1
  413. package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +110 -110
  414. package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +28 -28
  415. package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +24 -24
  416. package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +28 -28
  417. package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
  418. package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +5 -5
  419. package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
  420. package/package.json +1 -1
  421. package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +0 -39
  422. package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +0 -1
@@ -33,7 +33,7 @@ function cli(cannon) {
33
33
  return cli_0(cannonSdkProvider(cannon));
34
34
  }
35
35
  function cli_0(sdkProvider) {
36
- return subcommands(subcommands(subcommands(CouplingCli().r74(), [Login().m75()]), [ConfigCommand().y73()]), [party(sdkProvider)]);
36
+ return subcommands(subcommands(subcommands(CouplingCli().s74(), [Login().n75()]), [ConfigCommand().z73()]), [party(sdkProvider)]);
37
37
  }
38
38
  function *getAccessToken($completion) {
39
39
  var tmp0_elvis_lhs = getEnv('COUPLING_CLI_ACCESS_TOKEN');
@@ -58,7 +58,7 @@ function *loadTokens($completion) {
58
58
  tmp = null;
59
59
  } else {
60
60
  // Inline function 'kotlin.let' call
61
- tmp = Default_getInstance().k3v(tmp0_safe_receiver);
61
+ tmp = Default_getInstance().l3v(tmp0_safe_receiver);
62
62
  }
63
63
  return tmp;
64
64
  }
@@ -9,7 +9,7 @@ function Versions() {
9
9
  if (VersionsClass === VOID) {
10
10
  class $ {
11
11
  constructor() {
12
- this.s71_1 = '1.1.729';
12
+ this.t71_1 = '1.1.731';
13
13
  }
14
14
  }
15
15
  initMetadataForObject($, 'Versions');
@@ -21,7 +21,7 @@ var DefaultSdkProviderClass;
21
21
  function DefaultSdkProvider() {
22
22
  if (DefaultSdkProviderClass === VOID) {
23
23
  class $ {
24
- *n75(env, echo, $completion) {
24
+ *o75(env, echo, $completion) {
25
25
  return yield* loadSdk(env, echo, $completion);
26
26
  }
27
27
  }
@@ -39,7 +39,7 @@ function cannonSdkProvider(cannon) {
39
39
  }
40
40
  function *withSdk(env, echo, sdkProvider, doWork, $completion) {
41
41
  sdkProvider = sdkProvider === VOID ? DefaultSdkProvider_instance : sdkProvider;
42
- var tmp0_safe_receiver = yield* sdkProvider.n75(env, echo, $completion);
42
+ var tmp0_safe_receiver = yield* sdkProvider.o75(env, echo, $completion);
43
43
  var tmp;
44
44
  if (tmp0_safe_receiver == null) {
45
45
  tmp = null;
@@ -51,7 +51,7 @@ function *withSdk(env, echo, sdkProvider, doWork, $completion) {
51
51
  return tmp;
52
52
  }
53
53
  function *loadSdk(env, echo, $completion) {
54
- var environment = Companion_getInstance().z72_1.j4(env);
54
+ var environment = Companion_getInstance().a73_1.j4(env);
55
55
  if (!(environment == null)) {
56
56
  var accessToken = yield* getAccessToken($completion);
57
57
  if (accessToken == null) {
@@ -71,17 +71,17 @@ function actionCannon(accessToken, environment) {
71
71
  return sdk;
72
72
  }
73
73
  function audienceHost(_this__u8e3s4) {
74
- return 'https://' + getHost(_this__u8e3s4.b73_1);
74
+ return 'https://' + getHost(_this__u8e3s4.c73_1);
75
75
  }
76
76
  var cannonSdkProvider$1Class;
77
77
  function cannonSdkProvider$1() {
78
78
  if (cannonSdkProvider$1Class === VOID) {
79
79
  class $ {
80
80
  constructor($cannon) {
81
- this.o75_1 = $cannon;
81
+ this.p75_1 = $cannon;
82
82
  }
83
- *n75(env, echo, $completion) {
84
- var tmp0_elvis_lhs = this.o75_1;
83
+ *o75(env, echo, $completion) {
84
+ var tmp0_elvis_lhs = this.p75_1;
85
85
  return tmp0_elvis_lhs == null ? (yield* /*#__NOINLINE__*/loadSdk(env, echo, $completion)) : tmp0_elvis_lhs;
86
86
  }
87
87
  }
@@ -27,20 +27,20 @@ function Data() {
27
27
  if (DataClass === VOID) {
28
28
  class $ {
29
29
  constructor(partyList) {
30
- this.t71_1 = partyList;
30
+ this.u71_1 = partyList;
31
31
  }
32
32
  toString() {
33
- return 'Data(partyList=' + toString(this.t71_1) + ')';
33
+ return 'Data(partyList=' + toString(this.u71_1) + ')';
34
34
  }
35
35
  hashCode() {
36
- return hashCode(this.t71_1);
36
+ return hashCode(this.u71_1);
37
37
  }
38
38
  equals(other) {
39
39
  if (this === other)
40
40
  return true;
41
41
  if (!(other instanceof Data()))
42
42
  return false;
43
- if (!equals(this.t71_1, other.t71_1))
43
+ if (!equals(this.u71_1, other.u71_1))
44
44
  return false;
45
45
  return true;
46
46
  }
@@ -55,15 +55,15 @@ function PartyList() {
55
55
  if (PartyListClass === VOID) {
56
56
  class $ {
57
57
  constructor(__typename, partyDetails) {
58
- this.u71_1 = __typename;
59
- this.v71_1 = partyDetails;
58
+ this.v71_1 = __typename;
59
+ this.w71_1 = partyDetails;
60
60
  }
61
61
  toString() {
62
- return 'PartyList(__typename=' + this.u71_1 + ', partyDetails=' + this.v71_1.toString() + ')';
62
+ return 'PartyList(__typename=' + this.v71_1 + ', partyDetails=' + this.w71_1.toString() + ')';
63
63
  }
64
64
  hashCode() {
65
- var result = getStringHashCode(this.u71_1);
66
- result = imul(result, 31) + this.v71_1.hashCode() | 0;
65
+ var result = getStringHashCode(this.v71_1);
66
+ result = imul(result, 31) + this.w71_1.hashCode() | 0;
67
67
  return result;
68
68
  }
69
69
  equals(other) {
@@ -71,9 +71,9 @@ function PartyList() {
71
71
  return true;
72
72
  if (!(other instanceof PartyList()))
73
73
  return false;
74
- if (!(this.u71_1 === other.u71_1))
74
+ if (!(this.v71_1 === other.v71_1))
75
75
  return false;
76
- if (!this.v71_1.equals(other.v71_1))
76
+ if (!this.w71_1.equals(other.w71_1))
77
77
  return false;
78
78
  return true;
79
79
  }
@@ -89,12 +89,12 @@ function Companion() {
89
89
  class $ {
90
90
  constructor() {
91
91
  Companion_instance = this;
92
- this.w71_1 = obj(Data_getInstance());
93
- this.x71_1 = (new (Builder())('data', Companion_getInstance().w5k_1)).x4n(PartyListQuerySelections_getInstance().b72_1).f2t();
94
- this.y71_1 = '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
95
- this.z71_1 = 'partyListQuery';
92
+ this.x71_1 = obj(Data_getInstance());
93
+ this.y71_1 = (new (Builder())('data', Companion_getInstance().x5k_1)).y4n(PartyListQuerySelections_getInstance().c72_1).f2t();
94
+ this.z71_1 = '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
95
+ this.a72_1 = 'partyListQuery';
96
96
  }
97
- a5l() {
97
+ b5l() {
98
98
  return 'query partyListQuery { partyList { __typename ...PartyDetails } } fragment PartyDetails on Party { id name email pairingRule badgesEnabled defaultBadgeName alternateBadgeName callSignsEnabled animationsEnabled animationSpeed }';
99
99
  }
100
100
  }
@@ -122,25 +122,25 @@ function PartyListQuery() {
122
122
  hashCode() {
123
123
  return getKClassFromExpression(this).hashCode();
124
124
  }
125
- c5l() {
125
+ d5l() {
126
126
  return '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
127
127
  }
128
128
  operationId() {
129
- return this.c5l();
129
+ return this.d5l();
130
130
  }
131
- p4r() {
132
- return Companion_getInstance_0().a5l();
131
+ q4r() {
132
+ return Companion_getInstance_0().b5l();
133
133
  }
134
- d5l() {
134
+ e5l() {
135
135
  return 'partyListQuery';
136
136
  }
137
137
  operationName() {
138
- return this.d5l();
138
+ return this.e5l();
139
139
  }
140
- u4q(writer, customScalarAdapters, withDefaultValues) {
140
+ v4q(writer, customScalarAdapters, withDefaultValues) {
141
141
  }
142
- t4q() {
143
- return Companion_getInstance_0().w71_1;
142
+ u4q() {
143
+ return Companion_getInstance_0().x71_1;
144
144
  }
145
145
  }
146
146
  initMetadataForClass($, 'PartyListQuery', PartyListQuery, VOID, [Query()]);
@@ -28,20 +28,20 @@ function Data() {
28
28
  if (DataClass === VOID) {
29
29
  class $ {
30
30
  constructor(party) {
31
- this.c72_1 = party;
31
+ this.d72_1 = party;
32
32
  }
33
33
  toString() {
34
- return 'Data(party=' + toString(this.c72_1) + ')';
34
+ return 'Data(party=' + toString(this.d72_1) + ')';
35
35
  }
36
36
  hashCode() {
37
- return this.c72_1 == null ? 0 : this.c72_1.hashCode();
37
+ return this.d72_1 == null ? 0 : this.d72_1.hashCode();
38
38
  }
39
39
  equals(other) {
40
40
  if (this === other)
41
41
  return true;
42
42
  if (!(other instanceof Data()))
43
43
  return false;
44
- if (!equals(this.c72_1, other.c72_1))
44
+ if (!equals(this.d72_1, other.d72_1))
45
45
  return false;
46
46
  return true;
47
47
  }
@@ -56,20 +56,20 @@ function Party() {
56
56
  if (PartyClass === VOID) {
57
57
  class $ {
58
58
  constructor(playerList) {
59
- this.d72_1 = playerList;
59
+ this.e72_1 = playerList;
60
60
  }
61
61
  toString() {
62
- return 'Party(playerList=' + toString_0(this.d72_1) + ')';
62
+ return 'Party(playerList=' + toString_0(this.e72_1) + ')';
63
63
  }
64
64
  hashCode() {
65
- return hashCode(this.d72_1);
65
+ return hashCode(this.e72_1);
66
66
  }
67
67
  equals(other) {
68
68
  if (this === other)
69
69
  return true;
70
70
  if (!(other instanceof Party()))
71
71
  return false;
72
- if (!equals(this.d72_1, other.d72_1))
72
+ if (!equals(this.e72_1, other.e72_1))
73
73
  return false;
74
74
  return true;
75
75
  }
@@ -84,15 +84,15 @@ function PlayerList() {
84
84
  if (PlayerListClass === VOID) {
85
85
  class $ {
86
86
  constructor(__typename, playerDetails) {
87
- this.e72_1 = __typename;
88
- this.f72_1 = playerDetails;
87
+ this.f72_1 = __typename;
88
+ this.g72_1 = playerDetails;
89
89
  }
90
90
  toString() {
91
- return 'PlayerList(__typename=' + this.e72_1 + ', playerDetails=' + this.f72_1.toString() + ')';
91
+ return 'PlayerList(__typename=' + this.f72_1 + ', playerDetails=' + this.g72_1.toString() + ')';
92
92
  }
93
93
  hashCode() {
94
- var result = getStringHashCode(this.e72_1);
95
- result = imul(result, 31) + this.f72_1.hashCode() | 0;
94
+ var result = getStringHashCode(this.f72_1);
95
+ result = imul(result, 31) + this.g72_1.hashCode() | 0;
96
96
  return result;
97
97
  }
98
98
  equals(other) {
@@ -100,9 +100,9 @@ function PlayerList() {
100
100
  return true;
101
101
  if (!(other instanceof PlayerList()))
102
102
  return false;
103
- if (!(this.e72_1 === other.e72_1))
103
+ if (!(this.f72_1 === other.f72_1))
104
104
  return false;
105
- if (!this.f72_1.equals(other.f72_1))
105
+ if (!this.g72_1.equals(other.g72_1))
106
106
  return false;
107
107
  return true;
108
108
  }
@@ -118,12 +118,12 @@ function Companion() {
118
118
  class $ {
119
119
  constructor() {
120
120
  Companion_instance = this;
121
- this.g72_1 = obj(Data_getInstance());
122
- this.h72_1 = (new (Builder())('data', Companion_getInstance().w5k_1)).x4n(PlayersQuerySelections_getInstance().m72_1).f2t();
123
- this.i72_1 = '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
124
- this.j72_1 = 'playersQuery';
121
+ this.h72_1 = obj(Data_getInstance());
122
+ this.i72_1 = (new (Builder())('data', Companion_getInstance().x5k_1)).y4n(PlayersQuerySelections_getInstance().n72_1).f2t();
123
+ this.j72_1 = '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
124
+ this.k72_1 = 'playersQuery';
125
125
  }
126
- a5l() {
126
+ b5l() {
127
127
  return 'query playersQuery($input: PartyInput!) { party(input: $input) { playerList { __typename ...PlayerDetails } } } fragment PlayerDetails on Player { id name email badge callSignAdjective callSignNoun imageURL avatarType unvalidatedEmails }';
128
128
  }
129
129
  }
@@ -144,41 +144,41 @@ function PlayersQuery() {
144
144
  class $ {
145
145
  constructor(input) {
146
146
  Companion_getInstance_0();
147
- this.n72_1 = input;
147
+ this.o72_1 = input;
148
148
  }
149
- c5l() {
149
+ d5l() {
150
150
  return '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
151
151
  }
152
152
  operationId() {
153
- return this.c5l();
153
+ return this.d5l();
154
154
  }
155
- p4r() {
156
- return Companion_getInstance_0().a5l();
155
+ q4r() {
156
+ return Companion_getInstance_0().b5l();
157
157
  }
158
- d5l() {
158
+ e5l() {
159
159
  return 'playersQuery';
160
160
  }
161
161
  operationName() {
162
- return this.d5l();
162
+ return this.e5l();
163
163
  }
164
- u4q(writer, customScalarAdapters, withDefaultValues) {
165
- PlayersQuery_VariablesAdapter_instance.o72(writer, this, customScalarAdapters, withDefaultValues);
164
+ v4q(writer, customScalarAdapters, withDefaultValues) {
165
+ PlayersQuery_VariablesAdapter_instance.p72(writer, this, customScalarAdapters, withDefaultValues);
166
166
  }
167
- t4q() {
168
- return Companion_getInstance_0().g72_1;
167
+ u4q() {
168
+ return Companion_getInstance_0().h72_1;
169
169
  }
170
170
  toString() {
171
- return 'PlayersQuery(input=' + this.n72_1.toString() + ')';
171
+ return 'PlayersQuery(input=' + this.o72_1.toString() + ')';
172
172
  }
173
173
  hashCode() {
174
- return this.n72_1.hashCode();
174
+ return this.o72_1.hashCode();
175
175
  }
176
176
  equals(other) {
177
177
  if (this === other)
178
178
  return true;
179
179
  if (!(other instanceof PlayersQuery()))
180
180
  return false;
181
- if (!this.n72_1.equals(other.n72_1))
181
+ if (!this.o72_1.equals(other.o72_1))
182
182
  return false;
183
183
  return true;
184
184
  }
@@ -25,13 +25,13 @@ function Data_0() {
25
25
  class $ {
26
26
  constructor() {
27
27
  Data_instance = this;
28
- this.p72_1 = listOf('partyList');
28
+ this.q72_1 = listOf('partyList');
29
29
  }
30
- x4h(reader, customScalarAdapters) {
30
+ y4h(reader, customScalarAdapters) {
31
31
  var _partyList = null;
32
32
  $l$loop: while (true) {
33
- if (reader.r4w(this.p72_1) === 0)
34
- _partyList = list(obj(PartyList_getInstance(), true)).x4h(reader, customScalarAdapters);
33
+ if (reader.s4w(this.q72_1) === 0)
34
+ _partyList = list(obj(PartyList_getInstance(), true)).y4h(reader, customScalarAdapters);
35
35
  else
36
36
  break $l$loop;
37
37
  }
@@ -44,12 +44,12 @@ function Data_0() {
44
44
  }
45
45
  return new (Data())(tmp);
46
46
  }
47
- q72(writer, customScalarAdapters, value) {
48
- writer.p4u('partyList');
49
- list(obj(PartyList_getInstance(), true)).t4i(writer, customScalarAdapters, value.t71_1);
47
+ r72(writer, customScalarAdapters, value) {
48
+ writer.q4u('partyList');
49
+ list(obj(PartyList_getInstance(), true)).u4i(writer, customScalarAdapters, value.u71_1);
50
50
  }
51
- y4h(writer, customScalarAdapters, value) {
52
- return this.q72(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
51
+ z4h(writer, customScalarAdapters, value) {
52
+ return this.r72(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
53
53
  }
54
54
  }
55
55
  initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
@@ -69,18 +69,18 @@ function PartyList_0() {
69
69
  class $ {
70
70
  constructor() {
71
71
  PartyList_instance = this;
72
- this.r72_1 = listOf('__typename');
72
+ this.s72_1 = listOf('__typename');
73
73
  }
74
- x4h(reader, customScalarAdapters) {
74
+ y4h(reader, customScalarAdapters) {
75
75
  var __typename = null;
76
76
  $l$loop: while (true) {
77
- if (reader.r4w(this.r72_1) === 0)
78
- __typename = get_StringAdapter().x4h(reader, customScalarAdapters);
77
+ if (reader.s4w(this.s72_1) === 0)
78
+ __typename = get_StringAdapter().y4h(reader, customScalarAdapters);
79
79
  else
80
80
  break $l$loop;
81
81
  }
82
- reader.t4w();
83
- var _partyDetails = PartyDetails_getInstance().x4h(reader, customScalarAdapters);
82
+ reader.u4w();
83
+ var _partyDetails = PartyDetails_getInstance().y4h(reader, customScalarAdapters);
84
84
  var tmp1_elvis_lhs = __typename;
85
85
  var tmp;
86
86
  if (tmp1_elvis_lhs == null) {
@@ -90,13 +90,13 @@ function PartyList_0() {
90
90
  }
91
91
  return new (PartyList())(tmp, _partyDetails);
92
92
  }
93
- s72(writer, customScalarAdapters, value) {
94
- writer.p4u('__typename');
95
- get_StringAdapter().y4h(writer, customScalarAdapters, value.u71_1);
96
- PartyDetails_getInstance().f5o(writer, customScalarAdapters, value.v71_1);
93
+ t72(writer, customScalarAdapters, value) {
94
+ writer.q4u('__typename');
95
+ get_StringAdapter().z4h(writer, customScalarAdapters, value.v71_1);
96
+ PartyDetails_getInstance().g5o(writer, customScalarAdapters, value.w71_1);
97
97
  }
98
- y4h(writer, customScalarAdapters, value) {
99
- return this.s72(writer, customScalarAdapters, value instanceof PartyList() ? value : THROW_CCE());
98
+ z4h(writer, customScalarAdapters, value) {
99
+ return this.t72(writer, customScalarAdapters, value instanceof PartyList() ? value : THROW_CCE());
100
100
  }
101
101
  }
102
102
  initMetadataForObject($, 'PartyList', VOID, VOID, [Adapter()]);
@@ -27,24 +27,24 @@ function Data_0() {
27
27
  class $ {
28
28
  constructor() {
29
29
  Data_instance = this;
30
- this.t72_1 = listOf('party');
30
+ this.u72_1 = listOf('party');
31
31
  }
32
- x4h(reader, customScalarAdapters) {
32
+ y4h(reader, customScalarAdapters) {
33
33
  var _party = null;
34
34
  $l$loop: while (true) {
35
- if (reader.r4w(this.t72_1) === 0)
36
- _party = nullable(obj(Party_getInstance())).x4h(reader, customScalarAdapters);
35
+ if (reader.s4w(this.u72_1) === 0)
36
+ _party = nullable(obj(Party_getInstance())).y4h(reader, customScalarAdapters);
37
37
  else
38
38
  break $l$loop;
39
39
  }
40
40
  return new (Data())(_party);
41
41
  }
42
- u72(writer, customScalarAdapters, value) {
43
- writer.p4u('party');
44
- nullable(obj(Party_getInstance())).b4i(writer, customScalarAdapters, value.c72_1);
42
+ v72(writer, customScalarAdapters, value) {
43
+ writer.q4u('party');
44
+ nullable(obj(Party_getInstance())).c4i(writer, customScalarAdapters, value.d72_1);
45
45
  }
46
- y4h(writer, customScalarAdapters, value) {
47
- return this.u72(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
46
+ z4h(writer, customScalarAdapters, value) {
47
+ return this.v72(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
48
48
  }
49
49
  }
50
50
  initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
@@ -64,13 +64,13 @@ function Party_0() {
64
64
  class $ {
65
65
  constructor() {
66
66
  Party_instance = this;
67
- this.v72_1 = listOf('playerList');
67
+ this.w72_1 = listOf('playerList');
68
68
  }
69
- x4h(reader, customScalarAdapters) {
69
+ y4h(reader, customScalarAdapters) {
70
70
  var _playerList = null;
71
71
  $l$loop: while (true) {
72
- if (reader.r4w(this.v72_1) === 0)
73
- _playerList = list(obj(PlayerList_getInstance(), true)).x4h(reader, customScalarAdapters);
72
+ if (reader.s4w(this.w72_1) === 0)
73
+ _playerList = list(obj(PlayerList_getInstance(), true)).y4h(reader, customScalarAdapters);
74
74
  else
75
75
  break $l$loop;
76
76
  }
@@ -83,12 +83,12 @@ function Party_0() {
83
83
  }
84
84
  return new (Party())(tmp);
85
85
  }
86
- w72(writer, customScalarAdapters, value) {
87
- writer.p4u('playerList');
88
- list(obj(PlayerList_getInstance(), true)).t4i(writer, customScalarAdapters, value.d72_1);
86
+ x72(writer, customScalarAdapters, value) {
87
+ writer.q4u('playerList');
88
+ list(obj(PlayerList_getInstance(), true)).u4i(writer, customScalarAdapters, value.e72_1);
89
89
  }
90
- y4h(writer, customScalarAdapters, value) {
91
- return this.w72(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
90
+ z4h(writer, customScalarAdapters, value) {
91
+ return this.x72(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
92
92
  }
93
93
  }
94
94
  initMetadataForObject($, 'Party', VOID, VOID, [Adapter()]);
@@ -108,18 +108,18 @@ function PlayerList_0() {
108
108
  class $ {
109
109
  constructor() {
110
110
  PlayerList_instance = this;
111
- this.x72_1 = listOf('__typename');
111
+ this.y72_1 = listOf('__typename');
112
112
  }
113
- x4h(reader, customScalarAdapters) {
113
+ y4h(reader, customScalarAdapters) {
114
114
  var __typename = null;
115
115
  $l$loop: while (true) {
116
- if (reader.r4w(this.x72_1) === 0)
117
- __typename = get_StringAdapter().x4h(reader, customScalarAdapters);
116
+ if (reader.s4w(this.y72_1) === 0)
117
+ __typename = get_StringAdapter().y4h(reader, customScalarAdapters);
118
118
  else
119
119
  break $l$loop;
120
120
  }
121
- reader.t4w();
122
- var _playerDetails = PlayerDetails_getInstance().x4h(reader, customScalarAdapters);
121
+ reader.u4w();
122
+ var _playerDetails = PlayerDetails_getInstance().y4h(reader, customScalarAdapters);
123
123
  var tmp1_elvis_lhs = __typename;
124
124
  var tmp;
125
125
  if (tmp1_elvis_lhs == null) {
@@ -129,13 +129,13 @@ function PlayerList_0() {
129
129
  }
130
130
  return new (PlayerList())(tmp, _playerDetails);
131
131
  }
132
- y72(writer, customScalarAdapters, value) {
133
- writer.p4u('__typename');
134
- get_StringAdapter().y4h(writer, customScalarAdapters, value.e72_1);
135
- PlayerDetails_getInstance().a5r(writer, customScalarAdapters, value.f72_1);
132
+ z72(writer, customScalarAdapters, value) {
133
+ writer.q4u('__typename');
134
+ get_StringAdapter().z4h(writer, customScalarAdapters, value.f72_1);
135
+ PlayerDetails_getInstance().b5r(writer, customScalarAdapters, value.g72_1);
136
136
  }
137
- y4h(writer, customScalarAdapters, value) {
138
- return this.y72(writer, customScalarAdapters, value instanceof PlayerList() ? value : THROW_CCE());
137
+ z4h(writer, customScalarAdapters, value) {
138
+ return this.z72(writer, customScalarAdapters, value instanceof PlayerList() ? value : THROW_CCE());
139
139
  }
140
140
  }
141
141
  initMetadataForObject($, 'PlayerList', VOID, VOID, [Adapter()]);
@@ -11,9 +11,9 @@ var PlayersQuery_VariablesAdapterClass;
11
11
  function PlayersQuery_VariablesAdapter() {
12
12
  if (PlayersQuery_VariablesAdapterClass === VOID) {
13
13
  class $ {
14
- o72(writer, value, customScalarAdapters, withDefaultValues) {
15
- writer.p4u('input');
16
- obj(PartyInput_InputAdapter_instance).y4h(writer, customScalarAdapters, value.n72_1);
14
+ p72(writer, value, customScalarAdapters, withDefaultValues) {
15
+ writer.q4u('input');
16
+ obj(PartyInput_InputAdapter_instance).z4h(writer, customScalarAdapters, value.o72_1);
17
17
  }
18
18
  }
19
19
  initMetadataForObject($, 'PlayersQuery_VariablesAdapter');
@@ -21,8 +21,8 @@ function PartyListQuerySelections() {
21
21
  class $ {
22
22
  constructor() {
23
23
  PartyListQuerySelections_instance = this;
24
- this.a72_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().f5r_1))).f2t(), (new (Builder_0())('Party', listOf('Party'))).x4n(PartyDetailsSelections_getInstance().v5r_1).f2t()]);
25
- this.b72_1 = listOf((new (Builder())('partyList', notNull(list(notNull(Companion_getInstance_0().c5s_1))))).x4n(this.a72_1).f2t());
24
+ this.b72_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().g5r_1))).f2t(), (new (Builder_0())('Party', listOf('Party'))).y4n(PartyDetailsSelections_getInstance().w5r_1).f2t()]);
25
+ this.c72_1 = listOf((new (Builder())('partyList', notNull(list(notNull(Companion_getInstance_0().d5s_1))))).y4n(this.b72_1).f2t());
26
26
  }
27
27
  }
28
28
  initMetadataForObject($, 'PartyListQuerySelections');
@@ -25,9 +25,9 @@ function PlayersQuerySelections() {
25
25
  class $ {
26
26
  constructor() {
27
27
  PlayersQuerySelections_instance = this;
28
- this.k72_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().f5r_1))).f2t(), (new (Builder_0())('Player', listOf('Player'))).x4n(PlayerDetailsSelections_getInstance().x5r_1).f2t()]);
29
- this.l72_1 = listOf((new (Builder())('playerList', notNull(list(notNull(Companion_getInstance_0().g5t_1))))).x4n(this.k72_1).f2t());
30
- this.m72_1 = listOf((new (Builder())('party', Companion_getInstance_1().c5s_1)).w4n(listOf((new (Builder_1())(Companion_getInstance_2().t5k_1)).h4o(new (CompiledVariable())('input')).f2t())).x4n(this.l72_1).f2t());
28
+ this.l72_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().g5r_1))).f2t(), (new (Builder_0())('Player', listOf('Player'))).y4n(PlayerDetailsSelections_getInstance().y5r_1).f2t()]);
29
+ this.m72_1 = listOf((new (Builder())('playerList', notNull(list(notNull(Companion_getInstance_0().h5t_1))))).y4n(this.l72_1).f2t());
30
+ this.n72_1 = listOf((new (Builder())('party', Companion_getInstance_1().d5s_1)).x4n(listOf((new (Builder_1())(Companion_getInstance_2().u5k_1)).i4o(new (CompiledVariable())('input')).f2t())).y4n(this.m72_1).f2t());
31
31
  }
32
32
  }
33
33
  initMetadataForObject($, 'PlayersQuerySelections');