@continuous-excellence/coupling-cli 1.1.514 → 1.1.516

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 (130) 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 +39 -38
  3. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs.map +1 -1
  4. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
  5. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +19 -18
  6. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs.map +1 -1
  7. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
  8. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +23 -22
  9. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs.map +1 -1
  10. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +6 -2
  11. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs.map +1 -1
  12. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
  13. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +56 -12
  14. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs.map +1 -1
  15. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +13 -13
  16. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +22 -22
  17. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +11 -11
  18. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +16 -16
  19. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +2 -2
  20. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +163 -97
  21. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs.map +1 -1
  22. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +29 -28
  23. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs.map +1 -1
  24. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +13 -13
  25. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +164 -120
  26. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs.map +1 -1
  27. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
  28. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +44 -41
  29. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs.map +1 -1
  30. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +72 -50
  31. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs.map +1 -1
  32. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +73 -74
  33. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs.map +1 -1
  34. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +101 -49
  35. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs.map +1 -1
  36. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +231 -170
  37. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs.map +1 -1
  38. package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +7 -7
  39. package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs.map +1 -1
  40. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
  41. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
  42. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
  43. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +117 -112
  44. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs.map +1 -1
  45. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +95 -95
  46. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
  47. package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
  48. package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
  49. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +134 -134
  50. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
  51. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
  52. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
  53. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
  54. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +12 -12
  55. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
  56. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
  57. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
  58. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +189 -189
  59. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +5 -5
  60. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
  61. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
  62. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
  63. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
  64. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
  65. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +227 -227
  66. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
  67. package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
  68. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/command/SuspendingCliktCommand.mjs +4 -3
  69. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/command/SuspendingCliktCommand.mjs.map +1 -1
  70. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
  71. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +64 -64
  72. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
  73. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
  74. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
  75. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
  76. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
  77. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
  78. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
  79. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
  80. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +24 -24
  81. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
  82. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +119 -119
  83. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +132 -132
  84. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +60 -60
  85. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
  86. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2 -2
  87. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
  88. package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +2 -2
  89. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
  90. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
  91. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
  92. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
  93. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
  94. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
  95. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
  96. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
  97. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
  98. package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
  99. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
  100. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +60 -60
  101. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
  102. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
  103. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +65 -65
  104. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
  105. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
  106. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
  107. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
  108. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
  109. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +225 -225
  110. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
  111. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +138 -138
  112. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
  113. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
  114. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
  115. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
  116. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +53 -53
  117. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
  118. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
  119. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
  120. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +16 -16
  121. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
  122. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
  123. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
  124. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
  125. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
  126. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +56 -56
  127. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
  128. package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +107 -107
  129. package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
  130. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../cli/src/commonMain/kotlin/com/zegreatrob/coupling/cli/Login.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/src/kotlin/time/Duration.kt","../../../../../../../../../../opt/buildAgent/work/b2fef8360e1bcf3d/formats/json/commonMain/src/kotlinx/serialization/json/JsonElementBuilders.kt"],"sourcesContent":[null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-env>","$this","<get-refresh>","pollForSuccess","$receiver","pollResult","run","$completion","environment","client","refreshToken","result","saveTokens","env","builder"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAeYA,CAAAC,KAAAD,EAAW;A;EAAA,yG;AAA6B,C;6BACxCE,CAAAD,KAAAC,EAAe;A;EAAA,iH;AAAc,C;wBAwCrBC,CAAAF,K,EAAIG,S,EAChB,W,EACA,U,EACA,Q,EAHY,WAAAD,EAIA;A,MACZE,U;kBACO,I,EAAM;A,IACT,oBAAa,cAAe,WAAf,CAA2B,KAA3B,EAAqC,UAArC,c;IACb,QAAM,UAAN,CAAiB,KAAjB,C;WACI,I;WAAM,e;WAAiB,e;QAAmB,a;;;;QCsG8B,YAAhC,WDpGtC,QCoGsC,EAAwB,kCAAxB,C;WDpG5C,MAAe,SAAf,c;EACJ,C;EACA,OAAO,U;AACX,C;;iBAvDmB,oB;;;iBAAA,oB;;;iBACI,wB;;;iBAAA,wB;;;;;;;;kBADJ,I;oBAAS,UAAT,gBAAS,EAAQ,YAAR,C;;QAAT,wG;oBACI,I;oBAAS,KAAT,gBAAS,K;;QAAT,kH;;UAENC,CAAAC,WAAAD,EAAU;A,YACvBE,cAAkB,0BAAiB,KAAjB,IAAqB,sBAArB,C;YAElBC,kC;QACI,qBAAe,IAAf,E,CAAqB;A,UACjB,+B,CAAS;A,gBACU,mD;gBAAnBC,iBAAiC,iDAAd,kBAAc,C;YAC7B,sBAAgB,IAAhB,C,CAAsB;A,cACtB,SAAK,6CAAL,C;cACA,oB;YACJ,C;gBACAC,gBAAa,MAAO,KAAc,cAAd,EAA4B,WAA5B,CAAwC,KAAxC,EAAkD,WAAlD,CAA8D,KAA9D,c;YAChB,WAAO,KAAP,IAAgB,IAAhB,C,CAAsB;A,qBACtB,WAAW,MAAX,EAAmB,sBAAnB,c;cACA,SAAK,iBAAL,C;YACJ,C,MAAO;A,cACH,SAAK,MAAL,CAAY,KAAZ,QAAyB,IAAzB,C;YACJ,C;YACA,oB;UACJ,C;cAEAA,kBAAa,MAAO,KAAqB,WAArB,CAAiC,KAAjC,EAA2C,WAA3C,CAAuD,KAAvD,c;UAEpB,SAAM,qBAAN,GAA2B,QAA3B,CAAkC,KAAlC,C;UACA,SAAM,sCAAN,GAA4C,QAA5C,CAAmD,KAAnD,C;UAEA,YAAY,QAAZ,CAAmB,KAAnB,C;cAEAN,oBAAwB,gCAAP,IAAO,EAAP,MAAO,EAAe,WAAf,EAA4B,QAA5B,CAAmC,KAAnC,EAA+C,QAA/C,CAAsD,KAAtD,c;iBAExB,WAAW,UAAX,EAAuB,sBAAvB,c;UAEA,SAAK,iBAAL,C;QACJ,C,MAAO;A,UACH,SAAM,2CAAN,GAAgD,sBAAhD,C;QACJ,C;QACJ,oB;MAAA,C;;;;;;;oBAqBIO,CAAeP,U,EAA0BQ,G,EAAzCN,WAAAK,EAAsD;A;ME/C1DE,qC;EFmDQ,IElDR,OFkDQ,EAAI,aAAJ,EAAmB,UAAnB,CAA8B,KAA9B,C;EACA,IEnDR,OFmDQ,EAAI,cAAJ,EAAoB,UAApB,CAA+B,KAA/B,C;EACA,IEpDR,OFoDQ,EAAI,KAAJ,EAAW,GAAX,C;MEnDR,YAAO,OAAQ,M;SF8Cf,gBACI,QADJ,EAEW,SAIL,WANN,c;EAQJ,oB;AAAA,C;;;;;"}
1
+ {"version":3,"sources":["../../../../../cli/src/commonMain/kotlin/com/zegreatrob/coupling/cli/Login.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/src/kotlin/time/Duration.kt","../../../../../../../../../../opt/buildAgent/work/b2fef8360e1bcf3d/formats/json/commonMain/src/kotlinx/serialization/json/JsonElementBuilders.kt"],"sourcesContent":[null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-env>","$this","<get-refresh>","pollForSuccess","$receiver","pollResult","run","$completion","environment","client","refreshToken","result","saveTokens","env","builder"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAeYA,CAAAC,KAAAD,EAAW;A;EAAA,yG;AAA6B,C;6BACxCE,CAAAD,KAAAC,EAAe;A;EAAA,iH;AAAc,C;wBAwCrBC,CAAAF,K,EAAIG,S,EAChB,W,EACA,U,EACA,Q,EAHY,WAAAD,EAIA;A,MACZE,U;kBACO,I,EAAM;A,IACT,oBAAa,cAAe,WAAf,CAA2B,KAA3B,EAAqC,UAArC,c;IACb,QAAM,UAAN,CAAiB,KAAjB,C;WACI,I;WAAM,e;WAAiB,e;QAAmB,a;;;;QCsG8B,YAAhC,WDpGtC,QCoGsC,EAAwB,kCAAxB,C;WDpG5C,MAAe,SAAf,c;EACJ,C;EACA,OAAO,U;AACX,C;;iBAvDmB,oB;;;iBAAA,oB;;;iBACI,wB;;;iBAAA,wB;;;;;;;;kBADJ,K;oBAAS,UAAT,iBAAS,EAAQ,YAAR,C;;QAAT,yG;oBACI,K;oBAAS,KAAT,iBAAS,K;;QAAT,mH;;;UAENC,CAAAC,WAAAD,EAAU;A,YACvBE,cAAkB,0BAAiB,KAAjB,IAAqB,sBAArB,C;YAElBC,kC;QACI,qBAAe,IAAf,E,CAAqB;A,UACjB,+B,CAAS;A,gBACU,mD;gBAAnBC,iBAAiC,iDAAd,kBAAc,C;YAC7B,sBAAgB,IAAhB,C,CAAsB;A,cACtB,SAAK,6CAAL,C;cACA,oB;YACJ,C;gBACAC,gBAAa,MAAO,KAAc,cAAd,EAA4B,WAA5B,CAAwC,KAAxC,EAAkD,WAAlD,CAA8D,KAA9D,c;YAChB,WAAO,KAAP,IAAgB,IAAhB,C,CAAsB;A,qBACtB,WAAW,MAAX,EAAmB,sBAAnB,c;cACA,SAAK,iBAAL,C;YACJ,C,MAAO;A,cACH,SAAK,MAAL,CAAY,KAAZ,QAAyB,IAAzB,C;YACJ,C;YACA,oB;UACJ,C;cAEAA,kBAAa,MAAO,KAAqB,WAArB,CAAiC,KAAjC,EAA2C,WAA3C,CAAuD,KAAvD,c;UAEpB,SAAM,qBAAN,GAA2B,QAA3B,CAAkC,KAAlC,C;UACA,SAAM,sCAAN,GAA4C,QAA5C,CAAmD,KAAnD,C;UAEA,YAAY,QAAZ,CAAmB,KAAnB,C;cAEAN,oBAAwB,gCAAP,IAAO,EAAP,MAAO,EAAe,WAAf,EAA4B,QAA5B,CAAmC,KAAnC,EAA+C,QAA/C,CAAsD,KAAtD,c;iBAExB,WAAW,UAAX,EAAuB,sBAAvB,c;UAEA,SAAK,iBAAL,C;QACJ,C,MAAO;A,UACH,SAAM,2CAAN,GAAgD,sBAAhD,C;QACJ,C;QACJ,oB;MAAA,C;;;;;;;oBAqBIO,CAAeP,U,EAA0BQ,G,EAAzCN,WAAAK,EAAsD;A;ME/C1DE,qC;EFmDQ,IElDR,OFkDQ,EAAI,aAAJ,EAAmB,UAAnB,CAA8B,KAA9B,C;EACA,IEnDR,OFmDQ,EAAI,cAAJ,EAAoB,UAApB,CAA+B,KAA/B,C;EACA,IEpDR,OFoDQ,EAAI,KAAJ,EAAW,GAAX,C;MEnDR,YAAO,OAAQ,M;SF8Cf,gBACI,QADJ,EAEW,SAIL,WANN,c;EAQJ,oB;AAAA,C;;;;;"}
@@ -5,11 +5,12 @@ import {
5
5
  import { main31i0cgo2hgill as main } from '../../../../../clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs';
6
6
  import { Unit_instancev9v8hjid95df as Unit_instance } from '../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
7
7
  import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
8
+ import { cannonSdkProvider1nchhyom0m9lv as cannonSdkProvider } from './WithSdk.mjs';
8
9
  import { CouplingCli1ycn2svi8m6oo as CouplingCli } from './CouplingCli.mjs';
9
10
  import { Login123mdhjyjrbrm as Login } from './Login.mjs';
10
11
  import { subcommands1t5srr48gscgb as subcommands } from '../../../../../clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs';
11
12
  import { ConfigCommand32320kdqfgpio as ConfigCommand } from './ConfigCommand.mjs';
12
- import { party157pvraectlfk as party } from './party/Party.mjs';
13
+ import { party1dnn07p5t8kzg as party } from './party/Party.mjs';
13
14
  import {
14
15
  get_jsonObject2u4z2ch1uuca9 as get_jsonObject,
15
16
  get_jsonPrimitivez17tyd5rw1ql as get_jsonPrimitive,
@@ -29,7 +30,10 @@ function *main_0(args, $completion) {
29
30
  }
30
31
  function cli(cannon) {
31
32
  cannon = cannon === VOID ? null : cannon;
32
- return subcommands(subcommands(subcommands(new (CouplingCli())(), [new (Login())()]), [new (ConfigCommand())()]), [party(cannon)]);
33
+ return cli_0(cannonSdkProvider(cannon));
34
+ }
35
+ function cli_0(sdkProvider) {
36
+ return subcommands(subcommands(subcommands(CouplingCli().n71(), [Login().i72()]), [ConfigCommand().u70()]), [party(sdkProvider)]);
33
37
  }
34
38
  function *getAccessToken($completion) {
35
39
  var tmp0_elvis_lhs = getEnv('COUPLING_CLI_ACCESS_TOKEN');
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../cli/src/commonMain/kotlin/com/zegreatrob/coupling/cli/Main.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["main","args","$completion","cli","cannon","getAccessToken","accessToken","<this>","loadTokens","refreshToken","env"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;gBAaQA,CAASC,I,EAATC,WAAAF,EAA8B;A,SAE7B,KADL,KACK,EAAK,sBAAsB,IAAtB,CAAL,c;EACT,oB;AAAA,C;YAEAG,CAAQC,MAARD,EAA4E;A,6BAArB,I;EAGxB,OAA1B,YADA,YADA,mCAAY,iBAAZ,CACA,EAAY,yBAAZ,CACA,EAAY,OAAM,MAAN,EAAZ,C;AAAyB,C;wBAOtBE,CAAAH,WAAAG,EAAuB;A,MAAA,wBAAO,2BAAP,C;;EAAA,2B;QACxB,mD;UAAc,gDAAd,kBAAc,C;;UADU,c;;EACG,U;AAAD,C;oBAEjCC,CAAIC,aAAJD,EAAyC;A,MAAA,sDAAW,aAAX,C;MAA2B,2EAA3B,kBAA2B,C;EAA4B,OAAb,sDAA1C,kBAA0C,C;AAAY,C;oBAEvFE,CAAAN,WAAAM,EAAiC;A,MAAA,0CAAc,QAAd,c;;EACnC,+B;UAAA,I;;;UAAI,0BAD+B,kBAC/B,C;;EAAiC,U;AAAD,C;qBAE1CC,CAAIF,aAAJE,EAA0C;A,MAAA,sDAAW,cAAX,C;MAA4B,2EAA5B,kBAA4B,C;EAA4B,OAAb,sDAA3C,kBAA2C,C;AAAY,C;YAEjGC,CAAIH,aAAJG,EAAiC;A,MAAA,sDAAW,KAAX,C;MAAmB,2EAAnB,kBAAmB,C;EAA4B,OAAb,sDAAlC,kBAAkC,C;AAAY,C;;;;;;;;"}
1
+ {"version":3,"sources":["../../../../../cli/src/commonMain/kotlin/com/zegreatrob/coupling/cli/Main.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["main","args","$completion","cli","cannon","sdkProvider","getAccessToken","accessToken","<this>","loadTokens","refreshToken","env"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;gBAaQA,CAASC,I,EAATC,WAAAF,EAA8B;A,SAE7B,KADL,KACK,EAAK,sBAAsB,IAAtB,CAAL,c;EACT,oB;AAAA,C;YAEAG,CAAQC,MAARD,EAA4E;A,6BAArB,I;EAAmD,OAA9B,MAAI,kBAAkB,MAAlB,CAAJ,C;AAA6B,C;cAEzGA,CAAQE,WAARF,EAAiD;A,EAGb,OAA/B,YADA,YADA,iCAAY,eAAZ,CACA,EAAY,uBAAZ,CACA,EAAY,OAAM,WAAN,EAAZ,C;AAA8B,C;wBAO3BG,CAAAJ,WAAAI,EAAuB;A,MAAA,wBAAO,2BAAP,C;;EAAA,2B;QACxB,mD;UAAc,gDAAd,kBAAc,C;;UADU,c;;EACG,U;AAAD,C;oBAEjCC,CAAIC,aAAJD,EAAyC;A,MAAA,sDAAW,aAAX,C;MAA2B,2EAA3B,kBAA2B,C;EAA4B,OAAb,sDAA1C,kBAA0C,C;AAAY,C;oBAEvFE,CAAAP,WAAAO,EAAiC;A,MAAA,0CAAc,QAAd,c;;EACnC,+B;UAAA,I;;;UAAI,0BAD+B,kBAC/B,C;;EAAiC,U;AAAD,C;qBAE1CC,CAAIF,aAAJE,EAA0C;A,MAAA,sDAAW,cAAX,C;MAA4B,2EAA5B,kBAA4B,C;EAA4B,OAAb,sDAA3C,kBAA2C,C;AAAY,C;YAEjGC,CAAIH,aAAJG,EAAiC;A,MAAA,sDAAW,KAAX,C;MAAmB,2EAAnB,kBAAmB,C;EAA4B,OAAb,sDAAlC,kBAAkC,C;AAAY,C;;;;;;;;"}
@@ -9,7 +9,7 @@ function Versions() {
9
9
  if (VersionsClass === VOID) {
10
10
  class $ {
11
11
  constructor() {
12
- this.f6y_1 = '1.1.514';
12
+ this.x6y_1 = '1.1.516';
13
13
  }
14
14
  }
15
15
  initMetadataForObject($, 'Versions');
@@ -1,3 +1,8 @@
1
+ import {
2
+ initMetadataForObject1cxne3s9w65el as initMetadataForObject,
3
+ initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
4
+ initMetadataForLambda3af3he42mmnh as initMetadataForLambda,
5
+ } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
1
6
  import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
2
7
  import { Unit_instancev9v8hjid95df as Unit_instance } from '../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
3
8
  import { Companion_getInstance3dcfc717qp330 as Companion_getInstance } from './Auth0Environment.mjs';
@@ -7,27 +12,46 @@ import { Companion_getInstance1bxbth0yni76u as Companion_getInstance_0 } from '.
7
12
  import { LoggingActionPipenpslk1461eyq as LoggingActionPipe } from '../../../../../Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs';
8
13
  import { couplingSdk1kvwqabhypuft as couplingSdk } from '../../../../../Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs';
9
14
  import { getHostqt6szqhkdn78 as getHost } from './WithSdk.js.mjs';
10
- import { initMetadataForLambda3af3he42mmnh as initMetadataForLambda } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
11
15
  import { get_HttpRequestRetry3m7x7jck45t4l as get_HttpRequestRetry } from '../../../../../ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs';
12
16
  //region block: imports
13
17
  //endregion
14
18
  //region block: pre-declaration
15
19
  //endregion
16
- function *withSdk(env, echo, cannon, doWork, $completion) {
17
- cannon = cannon === VOID ? null : cannon;
18
- var tmp1_safe_receiver = cannon == null ? (yield* loadSdk(env, echo, $completion)) : cannon;
20
+ var DefaultSdkProviderClass;
21
+ function DefaultSdkProvider() {
22
+ if (DefaultSdkProviderClass === VOID) {
23
+ class $ {
24
+ *j72(env, echo, $completion) {
25
+ return yield* loadSdk(env, echo, $completion);
26
+ }
27
+ }
28
+ initMetadataForObject($, 'DefaultSdkProvider', VOID, VOID, VOID, [2]);
29
+ DefaultSdkProviderClass = $;
30
+ }
31
+ return DefaultSdkProviderClass;
32
+ }
33
+ var DefaultSdkProvider_instance;
34
+ function DefaultSdkProvider_getInstance() {
35
+ return DefaultSdkProvider_instance;
36
+ }
37
+ function cannonSdkProvider(cannon) {
38
+ return new (cannonSdkProvider$1())(cannon);
39
+ }
40
+ function *withSdk(env, echo, sdkProvider, doWork, $completion) {
41
+ sdkProvider = sdkProvider === VOID ? DefaultSdkProvider_instance : sdkProvider;
42
+ var tmp0_safe_receiver = yield* sdkProvider.j72(env, echo, $completion);
19
43
  var tmp;
20
- if (tmp1_safe_receiver == null) {
44
+ if (tmp0_safe_receiver == null) {
21
45
  tmp = null;
22
46
  } else {
23
47
  // Inline function 'kotlin.let' call
24
- yield* doWork(tmp1_safe_receiver, $completion);
48
+ yield* doWork(tmp0_safe_receiver, $completion);
25
49
  tmp = Unit_instance;
26
50
  }
27
51
  return tmp;
28
52
  }
29
53
  function *loadSdk(env, echo, $completion) {
30
- var environment = Companion_getInstance().d6z_1.j4(env);
54
+ var environment = Companion_getInstance().v6z_1.j4(env);
31
55
  if (!(environment == null)) {
32
56
  var accessToken = yield* getAccessToken($completion);
33
57
  if (accessToken == null) {
@@ -47,17 +71,34 @@ function actionCannon(accessToken, environment) {
47
71
  return sdk;
48
72
  }
49
73
  function audienceHost(_this__u8e3s4) {
50
- return 'https://' + getHost(_this__u8e3s4.f6z_1);
74
+ return 'https://' + getHost(_this__u8e3s4.x6z_1);
75
+ }
76
+ var cannonSdkProvider$1Class;
77
+ function cannonSdkProvider$1() {
78
+ if (cannonSdkProvider$1Class === VOID) {
79
+ class $ {
80
+ constructor($cannon) {
81
+ this.k72_1 = $cannon;
82
+ }
83
+ *j72(env, echo, $completion) {
84
+ var tmp0_elvis_lhs = this.k72_1;
85
+ return tmp0_elvis_lhs == null ? (yield* /*#__NOINLINE__*/loadSdk(env, echo, $completion)) : tmp0_elvis_lhs;
86
+ }
87
+ }
88
+ initMetadataForClass($, VOID, VOID, VOID, VOID, [2]);
89
+ cannonSdkProvider$1Class = $;
90
+ }
91
+ return cannonSdkProvider$1Class;
51
92
  }
52
93
  var actionCannon$slambdaClass;
53
94
  function actionCannon$slambda() {
54
95
  if (actionCannon$slambdaClass === VOID) {
55
96
  class $ {
56
97
  constructor($accessToken) {
57
- this.o71_1 = $accessToken;
98
+ this.l72_1 = $accessToken;
58
99
  }
59
100
  *i5i($completion) {
60
- return this.o71_1;
101
+ return this.l72_1;
61
102
  }
62
103
  ud($completion) {
63
104
  return this.i5i($completion);
@@ -84,10 +125,13 @@ function actionCannon$lambda$lambda($this$install) {
84
125
  $this$install.t3p();
85
126
  return Unit_instance;
86
127
  }
128
+ //region block: init
129
+ DefaultSdkProvider_instance = new (DefaultSdkProvider())();
130
+ //endregion
87
131
  //region block: exports
88
132
  export {
89
- loadSdk as loadSdk2seprzwvwb0jf,
90
- withSdk as withSdk35tk3ax9pa40k,
133
+ cannonSdkProvider as cannonSdkProvider1nchhyom0m9lv,
134
+ withSdk as withSdk224uta8ich308,
91
135
  };
92
136
  //endregion
93
137
 
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../cli/src/commonMain/kotlin/com/zegreatrob/coupling/cli/WithSdk.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["withSdk","env","echo","cannon","doWork","$completion","loadSdk","environment","accessToken","actionCannon","sdk","audienceHost","<this>","invoke","actionCannon$slambda","actionCannon$slambda$lambda","actionCannon$lambda","actionCannon$lambda$lambda"],"mappings":";;;;;;;;;;;;;;;iBAUQA,CACJC,G,EACAC,I,EACAC,M,EACAC,M,EAJIC,WAAAL,EAKJ;A,6BAF+C,I;MAE9C,8CAAU,QAAQ,GAAR,EAAa,IAAb,cAAV,U;;EACC,+B;UAAA,I;;;WAAM,OADP,kBACO,c;;;EAAY,U;AAAD,C;iBAEfM,CACJL,G,EACAC,I,EAFIG,WAAAC,EAGgC;A,MACpCC,cAAkB,wBAAiB,KAAjB,IAAqB,GAArB,C;EACd,qBAAe,IAAf,E,CAAqB;A,QACrBC,qBAAkB,2B;IACd,mBAAe,IAAf,C,CAAqB;A,MACrB,KAAK,kCAAL,C;IACJ,C,MAAO;A,MACH,OAAO,aAAa,WAAb,EAA0B,WAA1B,C;IACX,C;EACJ,C,MAAO;A,IACH,KAAK,wBAAL,C;EACJ,C;EACA,OAAO,I;AACX,C;qBAEQC,CACJD,W,EACAD,WAFIE,EAG+B;A,YAEd,mC;cACJ,cAA0B,aAAZ,WAAY,CAA1B,C;MAFjBC,MAA+C,iBAEY,UAAO,mBAAP,CAFZ,4BAQb,8BARa,E;EAU/C,OAAO,G;AACX,C;qBAEQC,CAAIC,aAAJD,EAAsC;A,EAA8B,OAA7B,UAA6B,GAAnB,QAAQ,aAAR,CAAQ,KAAR,C;AAAkB,C;;;;;;;;UAZlDE,CAAAR,WAAAQ,EAAE;A,QAAW,OAAX,IAAW,CAAX,K;MAAU,C;;;;;;;;;;+BAAZC,C,YAAAA,E;;UAAAC,CAAAV,WAAAU,uB;;;C;4BAC6CC,CAAA,YAAAA,EAAA;A,YAClD,sB;EAAR,sBAA0B,0BAA1B,C;EAIJ,oB;AAAA,C;mCAJ8BC,CAAA,aAAAA,EAAA;A,EACtB,kBAAiC,CAAjC,C;EACA,mB;EACJ,oB;AAAA,C;;;;;"}
1
+ {"version":3,"sources":["../../../../../cli/src/commonMain/kotlin/com/zegreatrob/coupling/cli/WithSdk.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["sdk","env","echo","$completion","cannonSdkProvider","cannon","withSdk","sdkProvider","doWork","loadSdk","environment","accessToken","actionCannon","audienceHost","<this>","invoke","actionCannon$slambda","actionCannon$slambda$lambda","actionCannon$lambda","actionCannon$lambda$lambda"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;UAkBqBA,CACbC,G,EACAC,I,EAFaC,WAAAH,EAGyB;A,QAAkB,cAAlB,QAAQ,GAAR,EAAa,IAAb,c;MAAiB,C;;;;;;;;;;;0BAG/DI,CAAsBC,MAAtBD,EAAmF;A,EAKlF,mCALkF,MAKlF,C;AAAD,C;iBAEQE,CACJL,G,EACAC,I,EACAK,W,EACAC,M,EAJIL,WAAAG,EAKJ;A;MAAY,4BAAZ,WAAY,KAAI,GAAJ,EAAS,IAAT,c;;EACV,+B;UAAA,I;;;WAAM,OADR,kBACQ,c;;;EAAY,U;AAAD,C;iBAEfG,CACJR,G,EACAC,I,EAFIC,WAAAM,EAGgC;A,MACpCC,cAAkB,wBAAiB,KAAjB,IAAqB,GAArB,C;EACd,qBAAe,IAAf,E,CAAqB;A,QACrBC,qBAAkB,2B;IACd,mBAAe,IAAf,C,CAAqB;A,MACrB,KAAK,kCAAL,C;IACJ,C,MAAO;A,MACH,OAAO,aAAa,WAAb,EAA0B,WAA1B,C;IACX,C;EACJ,C,MAAO;A,IACH,KAAK,wBAAL,C;EACJ,C;EACA,OAAO,I;AACX,C;qBAEQC,CACJD,W,EACAD,WAFIE,EAG+B;A,YAEd,mC;cACJ,cAA0B,aAAZ,WAAY,CAA1B,C;MAFjBZ,MAA+C,iBAEY,UAAO,mBAAP,CAFZ,4BAQb,8BARa,E;EAU/C,OAAO,G;AACX,C;qBAEQa,CAAIC,aAAJD,EAAsC;A,EAA8B,OAA7B,UAA6B,GAAnB,QAAQ,aAAR,CAAQ,KAAR,C;AAAkB,C;;;;;;;;UAjDtDb,CACbC,G,EACAC,I,EAFaC,WAAAH,EAGyB;A,YAAA,2B;QAA4B,OAA5B,iCAAU,yBAAQ,GAAR,EAAa,IAAb,cAAV,kB;MAA2B,C;;;;;;;;;;;;;;UAkChDe,CAAAZ,WAAAY,EAAE;A,QAAW,OAAX,IAAW,CAAX,K;MAAU,C;;;;;;;;;;+BAAZC,C,YAAAA,E;;UAAAC,CAAAd,WAAAc,uB;;;C;4BAC6CC,CAAA,YAAAA,EAAA;A,YAClD,sB;EAAR,sBAA0B,0BAA1B,C;EAIJ,oB;AAAA,C;mCAJ8BC,CAAA,aAAAA,EAAA;A,EACtB,kBAAiC,CAAjC,C;EACA,mB;EACJ,oB;AAAA,C;;;;;;;;"}
@@ -23,20 +23,20 @@ function Data() {
23
23
  if (DataClass === VOID) {
24
24
  class $ {
25
25
  constructor(partyList) {
26
- this.g6y_1 = partyList;
26
+ this.y6y_1 = partyList;
27
27
  }
28
28
  toString() {
29
- return 'Data(partyList=' + toString(this.g6y_1) + ')';
29
+ return 'Data(partyList=' + toString(this.y6y_1) + ')';
30
30
  }
31
31
  hashCode() {
32
- return hashCode(this.g6y_1);
32
+ return hashCode(this.y6y_1);
33
33
  }
34
34
  equals(other) {
35
35
  if (this === other)
36
36
  return true;
37
37
  if (!(other instanceof Data()))
38
38
  return false;
39
- if (!equals(this.g6y_1, other.g6y_1))
39
+ if (!equals(this.y6y_1, other.y6y_1))
40
40
  return false;
41
41
  return true;
42
42
  }
@@ -51,15 +51,15 @@ function PartyList() {
51
51
  if (PartyListClass === VOID) {
52
52
  class $ {
53
53
  constructor(__typename, partyDetails) {
54
- this.h6y_1 = __typename;
55
- this.i6y_1 = partyDetails;
54
+ this.z6y_1 = __typename;
55
+ this.a6z_1 = partyDetails;
56
56
  }
57
57
  toString() {
58
- return 'PartyList(__typename=' + this.h6y_1 + ', partyDetails=' + this.i6y_1.toString() + ')';
58
+ return 'PartyList(__typename=' + this.z6y_1 + ', partyDetails=' + this.a6z_1.toString() + ')';
59
59
  }
60
60
  hashCode() {
61
- var result = getStringHashCode(this.h6y_1);
62
- result = imul(result, 31) + this.i6y_1.hashCode() | 0;
61
+ var result = getStringHashCode(this.z6y_1);
62
+ result = imul(result, 31) + this.a6z_1.hashCode() | 0;
63
63
  return result;
64
64
  }
65
65
  equals(other) {
@@ -67,9 +67,9 @@ function PartyList() {
67
67
  return true;
68
68
  if (!(other instanceof PartyList()))
69
69
  return false;
70
- if (!(this.h6y_1 === other.h6y_1))
70
+ if (!(this.z6y_1 === other.z6y_1))
71
71
  return false;
72
- if (!this.i6y_1.equals(other.i6y_1))
72
+ if (!this.a6z_1.equals(other.a6z_1))
73
73
  return false;
74
74
  return true;
75
75
  }
@@ -84,8 +84,8 @@ function Companion() {
84
84
  if (CompanionClass === VOID) {
85
85
  class $ {
86
86
  constructor() {
87
- this.j6y_1 = '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
88
- this.k6y_1 = 'partyListQuery';
87
+ this.b6z_1 = '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
88
+ this.c6z_1 = 'partyListQuery';
89
89
  }
90
90
  c5m() {
91
91
  return 'query partyListQuery { partyList { __typename ...PartyDetails } } fragment PartyDetails on Party { id name email pairingRule badgesEnabled defaultBadgeName alternateBadgeName callSignsEnabled animationsEnabled animationSpeed }';
@@ -24,20 +24,20 @@ function Data() {
24
24
  if (DataClass === VOID) {
25
25
  class $ {
26
26
  constructor(party) {
27
- this.l6y_1 = party;
27
+ this.d6z_1 = party;
28
28
  }
29
29
  toString() {
30
- return 'Data(party=' + toString(this.l6y_1) + ')';
30
+ return 'Data(party=' + toString(this.d6z_1) + ')';
31
31
  }
32
32
  hashCode() {
33
- return this.l6y_1 == null ? 0 : this.l6y_1.hashCode();
33
+ return this.d6z_1 == null ? 0 : this.d6z_1.hashCode();
34
34
  }
35
35
  equals(other) {
36
36
  if (this === other)
37
37
  return true;
38
38
  if (!(other instanceof Data()))
39
39
  return false;
40
- if (!equals(this.l6y_1, other.l6y_1))
40
+ if (!equals(this.d6z_1, other.d6z_1))
41
41
  return false;
42
42
  return true;
43
43
  }
@@ -52,20 +52,20 @@ function Party() {
52
52
  if (PartyClass === VOID) {
53
53
  class $ {
54
54
  constructor(playerList) {
55
- this.m6y_1 = playerList;
55
+ this.e6z_1 = playerList;
56
56
  }
57
57
  toString() {
58
- return 'Party(playerList=' + toString_0(this.m6y_1) + ')';
58
+ return 'Party(playerList=' + toString_0(this.e6z_1) + ')';
59
59
  }
60
60
  hashCode() {
61
- return hashCode(this.m6y_1);
61
+ return hashCode(this.e6z_1);
62
62
  }
63
63
  equals(other) {
64
64
  if (this === other)
65
65
  return true;
66
66
  if (!(other instanceof Party()))
67
67
  return false;
68
- if (!equals(this.m6y_1, other.m6y_1))
68
+ if (!equals(this.e6z_1, other.e6z_1))
69
69
  return false;
70
70
  return true;
71
71
  }
@@ -80,15 +80,15 @@ function PlayerList() {
80
80
  if (PlayerListClass === VOID) {
81
81
  class $ {
82
82
  constructor(__typename, playerDetails) {
83
- this.n6y_1 = __typename;
84
- this.o6y_1 = playerDetails;
83
+ this.f6z_1 = __typename;
84
+ this.g6z_1 = playerDetails;
85
85
  }
86
86
  toString() {
87
- return 'PlayerList(__typename=' + this.n6y_1 + ', playerDetails=' + this.o6y_1.toString() + ')';
87
+ return 'PlayerList(__typename=' + this.f6z_1 + ', playerDetails=' + this.g6z_1.toString() + ')';
88
88
  }
89
89
  hashCode() {
90
- var result = getStringHashCode(this.n6y_1);
91
- result = imul(result, 31) + this.o6y_1.hashCode() | 0;
90
+ var result = getStringHashCode(this.f6z_1);
91
+ result = imul(result, 31) + this.g6z_1.hashCode() | 0;
92
92
  return result;
93
93
  }
94
94
  equals(other) {
@@ -96,9 +96,9 @@ function PlayerList() {
96
96
  return true;
97
97
  if (!(other instanceof PlayerList()))
98
98
  return false;
99
- if (!(this.n6y_1 === other.n6y_1))
99
+ if (!(this.f6z_1 === other.f6z_1))
100
100
  return false;
101
- if (!this.o6y_1.equals(other.o6y_1))
101
+ if (!this.g6z_1.equals(other.g6z_1))
102
102
  return false;
103
103
  return true;
104
104
  }
@@ -113,8 +113,8 @@ function Companion() {
113
113
  if (CompanionClass === VOID) {
114
114
  class $ {
115
115
  constructor() {
116
- this.p6y_1 = '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
117
- this.q6y_1 = 'playersQuery';
116
+ this.h6z_1 = '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
117
+ this.i6z_1 = 'playersQuery';
118
118
  }
119
119
  c5m() {
120
120
  return 'query playersQuery($input: PartyInput!) { party(input: $input) { playerList { __typename ...PlayerDetails } } } fragment PlayerDetails on Player { id name email badge callSignAdjective callSignNoun imageURL avatarType unvalidatedEmails }';
@@ -134,7 +134,7 @@ function PlayersQuery() {
134
134
  if (PlayersQueryClass === VOID) {
135
135
  class $ {
136
136
  constructor(input) {
137
- this.r6y_1 = input;
137
+ this.j6z_1 = input;
138
138
  }
139
139
  e5m() {
140
140
  return '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
@@ -152,23 +152,23 @@ function PlayersQuery() {
152
152
  return this.f5m();
153
153
  }
154
154
  r4u(writer, customScalarAdapters, withDefaultValues) {
155
- PlayersQuery_VariablesAdapter_instance.s6y(writer, this, customScalarAdapters, withDefaultValues);
155
+ PlayersQuery_VariablesAdapter_instance.k6z(writer, this, customScalarAdapters, withDefaultValues);
156
156
  }
157
157
  q4u() {
158
158
  return obj(Data_getInstance());
159
159
  }
160
160
  toString() {
161
- return 'PlayersQuery(input=' + this.r6y_1.toString() + ')';
161
+ return 'PlayersQuery(input=' + this.j6z_1.toString() + ')';
162
162
  }
163
163
  hashCode() {
164
- return this.r6y_1.hashCode();
164
+ return this.j6z_1.hashCode();
165
165
  }
166
166
  equals(other) {
167
167
  if (this === other)
168
168
  return true;
169
169
  if (!(other instanceof PlayersQuery()))
170
170
  return false;
171
- if (!this.r6y_1.equals(other.r6y_1))
171
+ if (!this.j6z_1.equals(other.j6z_1))
172
172
  return false;
173
173
  return true;
174
174
  }
@@ -25,12 +25,12 @@ function Data_0() {
25
25
  class $ {
26
26
  constructor() {
27
27
  Data_instance = this;
28
- this.t6y_1 = listOf('partyList');
28
+ this.l6z_1 = listOf('partyList');
29
29
  }
30
30
  q4n(reader, customScalarAdapters) {
31
31
  var _partyList = null;
32
32
  $l$loop: while (true) {
33
- if (reader.f50(this.t6y_1) === 0)
33
+ if (reader.f50(this.l6z_1) === 0)
34
34
  _partyList = list(obj(PartyList_getInstance(), true)).q4n(reader, customScalarAdapters);
35
35
  else
36
36
  break $l$loop;
@@ -44,12 +44,12 @@ function Data_0() {
44
44
  }
45
45
  return new (Data())(tmp);
46
46
  }
47
- u6y(writer, customScalarAdapters, value) {
47
+ m6z(writer, customScalarAdapters, value) {
48
48
  writer.q4v('partyList');
49
- list(obj(PartyList_getInstance(), true)).x4o(writer, customScalarAdapters, value.g6y_1);
49
+ list(obj(PartyList_getInstance(), true)).x4o(writer, customScalarAdapters, value.y6y_1);
50
50
  }
51
51
  r4n(writer, customScalarAdapters, value) {
52
- return this.u6y(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
52
+ return this.m6z(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
53
53
  }
54
54
  }
55
55
  initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
@@ -69,12 +69,12 @@ function PartyList_0() {
69
69
  class $ {
70
70
  constructor() {
71
71
  PartyList_instance = this;
72
- this.v6y_1 = listOf('__typename');
72
+ this.n6z_1 = listOf('__typename');
73
73
  }
74
74
  q4n(reader, customScalarAdapters) {
75
75
  var __typename = null;
76
76
  $l$loop: while (true) {
77
- if (reader.f50(this.v6y_1) === 0)
77
+ if (reader.f50(this.n6z_1) === 0)
78
78
  __typename = get_StringAdapter().q4n(reader, customScalarAdapters);
79
79
  else
80
80
  break $l$loop;
@@ -90,13 +90,13 @@ function PartyList_0() {
90
90
  }
91
91
  return new (PartyList())(tmp, _partyDetails);
92
92
  }
93
- w6y(writer, customScalarAdapters, value) {
93
+ o6z(writer, customScalarAdapters, value) {
94
94
  writer.q4v('__typename');
95
- get_StringAdapter().r4n(writer, customScalarAdapters, value.h6y_1);
96
- PartyDetails_getInstance().g5n(writer, customScalarAdapters, value.i6y_1);
95
+ get_StringAdapter().r4n(writer, customScalarAdapters, value.z6y_1);
96
+ PartyDetails_getInstance().g5n(writer, customScalarAdapters, value.a6z_1);
97
97
  }
98
98
  r4n(writer, customScalarAdapters, value) {
99
- return this.w6y(writer, customScalarAdapters, value instanceof PartyList() ? value : THROW_CCE());
99
+ return this.o6z(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.x6y_1 = listOf('party');
30
+ this.p6z_1 = listOf('party');
31
31
  }
32
32
  q4n(reader, customScalarAdapters) {
33
33
  var _party = null;
34
34
  $l$loop: while (true) {
35
- if (reader.f50(this.x6y_1) === 0)
35
+ if (reader.f50(this.p6z_1) === 0)
36
36
  _party = nullable(obj(Party_getInstance())).q4n(reader, customScalarAdapters);
37
37
  else
38
38
  break $l$loop;
39
39
  }
40
40
  return new (Data())(_party);
41
41
  }
42
- y6y(writer, customScalarAdapters, value) {
42
+ q6z(writer, customScalarAdapters, value) {
43
43
  writer.q4v('party');
44
- nullable(obj(Party_getInstance())).u4n(writer, customScalarAdapters, value.l6y_1);
44
+ nullable(obj(Party_getInstance())).u4n(writer, customScalarAdapters, value.d6z_1);
45
45
  }
46
46
  r4n(writer, customScalarAdapters, value) {
47
- return this.y6y(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
47
+ return this.q6z(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
48
48
  }
49
49
  }
50
50
  initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
@@ -64,12 +64,12 @@ function Party_0() {
64
64
  class $ {
65
65
  constructor() {
66
66
  Party_instance = this;
67
- this.z6y_1 = listOf('playerList');
67
+ this.r6z_1 = listOf('playerList');
68
68
  }
69
69
  q4n(reader, customScalarAdapters) {
70
70
  var _playerList = null;
71
71
  $l$loop: while (true) {
72
- if (reader.f50(this.z6y_1) === 0)
72
+ if (reader.f50(this.r6z_1) === 0)
73
73
  _playerList = list(obj(PlayerList_getInstance(), true)).q4n(reader, customScalarAdapters);
74
74
  else
75
75
  break $l$loop;
@@ -83,12 +83,12 @@ function Party_0() {
83
83
  }
84
84
  return new (Party())(tmp);
85
85
  }
86
- a6z(writer, customScalarAdapters, value) {
86
+ s6z(writer, customScalarAdapters, value) {
87
87
  writer.q4v('playerList');
88
- list(obj(PlayerList_getInstance(), true)).x4o(writer, customScalarAdapters, value.m6y_1);
88
+ list(obj(PlayerList_getInstance(), true)).x4o(writer, customScalarAdapters, value.e6z_1);
89
89
  }
90
90
  r4n(writer, customScalarAdapters, value) {
91
- return this.a6z(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
91
+ return this.s6z(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
92
92
  }
93
93
  }
94
94
  initMetadataForObject($, 'Party', VOID, VOID, [Adapter()]);
@@ -108,12 +108,12 @@ function PlayerList_0() {
108
108
  class $ {
109
109
  constructor() {
110
110
  PlayerList_instance = this;
111
- this.b6z_1 = listOf('__typename');
111
+ this.t6z_1 = listOf('__typename');
112
112
  }
113
113
  q4n(reader, customScalarAdapters) {
114
114
  var __typename = null;
115
115
  $l$loop: while (true) {
116
- if (reader.f50(this.b6z_1) === 0)
116
+ if (reader.f50(this.t6z_1) === 0)
117
117
  __typename = get_StringAdapter().q4n(reader, customScalarAdapters);
118
118
  else
119
119
  break $l$loop;
@@ -129,13 +129,13 @@ function PlayerList_0() {
129
129
  }
130
130
  return new (PlayerList())(tmp, _playerDetails);
131
131
  }
132
- c6z(writer, customScalarAdapters, value) {
132
+ u6z(writer, customScalarAdapters, value) {
133
133
  writer.q4v('__typename');
134
- get_StringAdapter().r4n(writer, customScalarAdapters, value.n6y_1);
135
- PlayerDetails_getInstance().l5p(writer, customScalarAdapters, value.o6y_1);
134
+ get_StringAdapter().r4n(writer, customScalarAdapters, value.f6z_1);
135
+ PlayerDetails_getInstance().l5p(writer, customScalarAdapters, value.g6z_1);
136
136
  }
137
137
  r4n(writer, customScalarAdapters, value) {
138
- return this.c6z(writer, customScalarAdapters, value instanceof PlayerList() ? value : THROW_CCE());
138
+ return this.u6z(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
- s6y(writer, value, customScalarAdapters, withDefaultValues) {
14
+ k6z(writer, value, customScalarAdapters, withDefaultValues) {
15
15
  writer.q4v('input');
16
- obj(PartyInput_InputAdapter_instance).r4n(writer, customScalarAdapters, value.r6y_1);
16
+ obj(PartyInput_InputAdapter_instance).r4n(writer, customScalarAdapters, value.j6z_1);
17
17
  }
18
18
  }
19
19
  initMetadataForObject($, 'PlayersQuery_VariablesAdapter');