@zuplo/cli 6.70.57 → 6.70.60

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 (404) hide show
  1. package/node_modules/@fastify/reply-from/node_modules/undici/lib/global.js +10 -1
  2. package/node_modules/@fastify/reply-from/node_modules/undici/package.json +1 -1
  3. package/node_modules/@zuplo/core/package.json +1 -1
  4. package/node_modules/@zuplo/graphql/package.json +1 -1
  5. package/node_modules/@zuplo/openapi-tools/package.json +1 -1
  6. package/node_modules/@zuplo/otel/package.json +1 -1
  7. package/node_modules/@zuplo/runtime/out/esm/chunk-6WKYPMAI.js +322 -0
  8. package/node_modules/@zuplo/runtime/out/esm/chunk-6WKYPMAI.js.map +1 -0
  9. package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
  10. package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +12 -12
  11. package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js.map +1 -1
  12. package/node_modules/@zuplo/runtime/out/types/index.d.ts +3 -1
  13. package/node_modules/@zuplo/runtime/out/types/mcp-gateway/index.d.ts +28 -0
  14. package/node_modules/@zuplo/runtime/package.json +1 -1
  15. package/node_modules/graphql/error/GraphQLError.d.ts +151 -15
  16. package/node_modules/graphql/error/GraphQLError.js +143 -12
  17. package/node_modules/graphql/error/GraphQLError.mjs +143 -12
  18. package/node_modules/graphql/error/index.d.ts +6 -0
  19. package/node_modules/graphql/error/index.mjs +6 -0
  20. package/node_modules/graphql/error/locatedError.d.ts +20 -0
  21. package/node_modules/graphql/error/locatedError.js +21 -0
  22. package/node_modules/graphql/error/locatedError.mjs +20 -0
  23. package/node_modules/graphql/error/syntaxError.d.ts +15 -0
  24. package/node_modules/graphql/error/syntaxError.js +16 -0
  25. package/node_modules/graphql/error/syntaxError.mjs +15 -0
  26. package/node_modules/graphql/execution/collectFields.js +6 -0
  27. package/node_modules/graphql/execution/collectFields.mjs +6 -0
  28. package/node_modules/graphql/execution/execute.d.ts +211 -12
  29. package/node_modules/graphql/execution/execute.js +214 -23
  30. package/node_modules/graphql/execution/execute.mjs +213 -23
  31. package/node_modules/graphql/execution/index.d.ts +6 -0
  32. package/node_modules/graphql/execution/index.mjs +6 -0
  33. package/node_modules/graphql/execution/mapAsyncIterator.d.ts +2 -0
  34. package/node_modules/graphql/execution/mapAsyncIterator.js +2 -0
  35. package/node_modules/graphql/execution/mapAsyncIterator.mjs +2 -0
  36. package/node_modules/graphql/execution/subscribe.d.ts +195 -5
  37. package/node_modules/graphql/execution/subscribe.js +154 -11
  38. package/node_modules/graphql/execution/subscribe.mjs +153 -11
  39. package/node_modules/graphql/execution/values.d.ts +167 -10
  40. package/node_modules/graphql/execution/values.js +149 -5
  41. package/node_modules/graphql/execution/values.mjs +148 -5
  42. package/node_modules/graphql/graphql.d.ts +163 -41
  43. package/node_modules/graphql/graphql.js +126 -4
  44. package/node_modules/graphql/graphql.mjs +131 -41
  45. package/node_modules/graphql/index.d.ts +11 -17
  46. package/node_modules/graphql/index.mjs +13 -19
  47. package/node_modules/graphql/jsutils/Maybe.d.ts +5 -1
  48. package/node_modules/graphql/jsutils/ObjMap.d.ts +4 -0
  49. package/node_modules/graphql/jsutils/Path.d.ts +30 -0
  50. package/node_modules/graphql/jsutils/Path.js +29 -0
  51. package/node_modules/graphql/jsutils/Path.mjs +29 -0
  52. package/node_modules/graphql/jsutils/PromiseOrValue.d.ts +1 -0
  53. package/node_modules/graphql/jsutils/devAssert.d.ts +1 -0
  54. package/node_modules/graphql/jsutils/devAssert.js +1 -0
  55. package/node_modules/graphql/jsutils/devAssert.mjs +1 -0
  56. package/node_modules/graphql/jsutils/didYouMean.d.ts +4 -1
  57. package/node_modules/graphql/jsutils/didYouMean.js +4 -1
  58. package/node_modules/graphql/jsutils/didYouMean.mjs +4 -1
  59. package/node_modules/graphql/jsutils/groupBy.d.ts +2 -0
  60. package/node_modules/graphql/jsutils/groupBy.js +2 -0
  61. package/node_modules/graphql/jsutils/groupBy.mjs +2 -0
  62. package/node_modules/graphql/jsutils/identityFunc.d.ts +2 -0
  63. package/node_modules/graphql/jsutils/identityFunc.js +2 -0
  64. package/node_modules/graphql/jsutils/identityFunc.mjs +2 -0
  65. package/node_modules/graphql/jsutils/inspect.d.ts +2 -0
  66. package/node_modules/graphql/jsutils/inspect.js +2 -0
  67. package/node_modules/graphql/jsutils/inspect.mjs +2 -0
  68. package/node_modules/graphql/jsutils/instanceOf.d.ts +2 -0
  69. package/node_modules/graphql/jsutils/instanceOf.js +2 -0
  70. package/node_modules/graphql/jsutils/instanceOf.mjs +2 -0
  71. package/node_modules/graphql/jsutils/invariant.d.ts +1 -0
  72. package/node_modules/graphql/jsutils/invariant.js +1 -0
  73. package/node_modules/graphql/jsutils/invariant.mjs +1 -0
  74. package/node_modules/graphql/jsutils/isAsyncIterable.d.ts +2 -0
  75. package/node_modules/graphql/jsutils/isAsyncIterable.js +2 -0
  76. package/node_modules/graphql/jsutils/isAsyncIterable.mjs +2 -0
  77. package/node_modules/graphql/jsutils/isIterableObject.d.ts +6 -5
  78. package/node_modules/graphql/jsutils/isIterableObject.js +6 -5
  79. package/node_modules/graphql/jsutils/isIterableObject.mjs +6 -5
  80. package/node_modules/graphql/jsutils/isObjectLike.d.ts +2 -0
  81. package/node_modules/graphql/jsutils/isObjectLike.js +2 -0
  82. package/node_modules/graphql/jsutils/isObjectLike.mjs +2 -0
  83. package/node_modules/graphql/jsutils/isPromise.d.ts +2 -0
  84. package/node_modules/graphql/jsutils/isPromise.js +2 -0
  85. package/node_modules/graphql/jsutils/isPromise.mjs +2 -0
  86. package/node_modules/graphql/jsutils/keyMap.d.ts +7 -14
  87. package/node_modules/graphql/jsutils/keyMap.js +7 -14
  88. package/node_modules/graphql/jsutils/keyMap.mjs +7 -14
  89. package/node_modules/graphql/jsutils/keyValMap.d.ts +9 -6
  90. package/node_modules/graphql/jsutils/keyValMap.js +9 -6
  91. package/node_modules/graphql/jsutils/keyValMap.mjs +9 -6
  92. package/node_modules/graphql/jsutils/mapValue.d.ts +2 -0
  93. package/node_modules/graphql/jsutils/mapValue.js +2 -0
  94. package/node_modules/graphql/jsutils/mapValue.mjs +2 -0
  95. package/node_modules/graphql/jsutils/memoize3.d.ts +2 -0
  96. package/node_modules/graphql/jsutils/memoize3.js +2 -0
  97. package/node_modules/graphql/jsutils/memoize3.mjs +2 -0
  98. package/node_modules/graphql/jsutils/naturalCompare.d.ts +2 -0
  99. package/node_modules/graphql/jsutils/naturalCompare.js +2 -0
  100. package/node_modules/graphql/jsutils/naturalCompare.mjs +2 -0
  101. package/node_modules/graphql/jsutils/printPathArray.d.ts +2 -0
  102. package/node_modules/graphql/jsutils/printPathArray.js +2 -0
  103. package/node_modules/graphql/jsutils/printPathArray.mjs +2 -0
  104. package/node_modules/graphql/jsutils/promiseForObject.d.ts +2 -0
  105. package/node_modules/graphql/jsutils/promiseForObject.js +2 -0
  106. package/node_modules/graphql/jsutils/promiseForObject.mjs +2 -0
  107. package/node_modules/graphql/jsutils/promiseReduce.d.ts +2 -0
  108. package/node_modules/graphql/jsutils/promiseReduce.js +2 -0
  109. package/node_modules/graphql/jsutils/promiseReduce.mjs +2 -0
  110. package/node_modules/graphql/jsutils/suggestionList.d.ts +2 -0
  111. package/node_modules/graphql/jsutils/suggestionList.js +4 -0
  112. package/node_modules/graphql/jsutils/suggestionList.mjs +4 -0
  113. package/node_modules/graphql/jsutils/toError.d.ts +2 -0
  114. package/node_modules/graphql/jsutils/toError.js +2 -0
  115. package/node_modules/graphql/jsutils/toError.mjs +2 -0
  116. package/node_modules/graphql/jsutils/toObjMap.d.ts +1 -0
  117. package/node_modules/graphql/jsutils/toObjMap.js +1 -0
  118. package/node_modules/graphql/jsutils/toObjMap.mjs +1 -0
  119. package/node_modules/graphql/language/ast.d.ts +412 -54
  120. package/node_modules/graphql/language/ast.js +95 -38
  121. package/node_modules/graphql/language/ast.mjs +95 -38
  122. package/node_modules/graphql/language/blockString.d.ts +1 -3
  123. package/node_modules/graphql/language/blockString.js +1 -3
  124. package/node_modules/graphql/language/blockString.mjs +1 -3
  125. package/node_modules/graphql/language/directiveLocation.d.ts +28 -8
  126. package/node_modules/graphql/language/directiveLocation.js +9 -6
  127. package/node_modules/graphql/language/directiveLocation.mjs +9 -6
  128. package/node_modules/graphql/language/index.d.ts +6 -0
  129. package/node_modules/graphql/language/index.mjs +6 -0
  130. package/node_modules/graphql/language/kinds.d.ts +57 -18
  131. package/node_modules/graphql/language/kinds.js +9 -6
  132. package/node_modules/graphql/language/kinds.mjs +9 -6
  133. package/node_modules/graphql/language/lexer.d.ts +47 -14
  134. package/node_modules/graphql/language/lexer.js +71 -13
  135. package/node_modules/graphql/language/lexer.mjs +70 -13
  136. package/node_modules/graphql/language/location.d.ts +16 -3
  137. package/node_modules/graphql/language/location.js +14 -3
  138. package/node_modules/graphql/language/location.mjs +14 -3
  139. package/node_modules/graphql/language/parser.d.ts +236 -13
  140. package/node_modules/graphql/language/parser.js +224 -0
  141. package/node_modules/graphql/language/parser.mjs +224 -3
  142. package/node_modules/graphql/language/predicates.d.ts +169 -0
  143. package/node_modules/graphql/language/predicates.js +170 -0
  144. package/node_modules/graphql/language/predicates.mjs +180 -0
  145. package/node_modules/graphql/language/printLocation.d.ts +28 -0
  146. package/node_modules/graphql/language/printLocation.js +29 -0
  147. package/node_modules/graphql/language/printLocation.mjs +28 -0
  148. package/node_modules/graphql/language/printString.d.ts +2 -0
  149. package/node_modules/graphql/language/printString.js +5 -1
  150. package/node_modules/graphql/language/printString.mjs +5 -1
  151. package/node_modules/graphql/language/printer.d.ts +12 -0
  152. package/node_modules/graphql/language/printer.js +19 -0
  153. package/node_modules/graphql/language/printer.mjs +18 -0
  154. package/node_modules/graphql/language/schemaCoordinateLexer.d.ts +8 -6
  155. package/node_modules/graphql/language/schemaCoordinateLexer.js +10 -6
  156. package/node_modules/graphql/language/schemaCoordinateLexer.mjs +10 -6
  157. package/node_modules/graphql/language/source.d.ts +28 -0
  158. package/node_modules/graphql/language/source.js +32 -0
  159. package/node_modules/graphql/language/source.mjs +31 -0
  160. package/node_modules/graphql/language/tokenKind.d.ts +30 -3
  161. package/node_modules/graphql/language/tokenKind.js +8 -3
  162. package/node_modules/graphql/language/tokenKind.mjs +8 -3
  163. package/node_modules/graphql/language/visitor.d.ts +200 -72
  164. package/node_modules/graphql/language/visitor.js +122 -50
  165. package/node_modules/graphql/language/visitor.mjs +122 -54
  166. package/node_modules/graphql/package.json +1 -1
  167. package/node_modules/graphql/subscription/index.d.ts +9 -3
  168. package/node_modules/graphql/subscription/index.mjs +9 -3
  169. package/node_modules/graphql/type/assertName.d.ts +18 -1
  170. package/node_modules/graphql/type/assertName.js +19 -1
  171. package/node_modules/graphql/type/assertName.mjs +18 -1
  172. package/node_modules/graphql/type/definition.d.ts +2540 -79
  173. package/node_modules/graphql/type/definition.js +2214 -61
  174. package/node_modules/graphql/type/definition.mjs +2241 -60
  175. package/node_modules/graphql/type/directives.d.ts +193 -18
  176. package/node_modules/graphql/type/directives.js +196 -19
  177. package/node_modules/graphql/type/directives.mjs +196 -19
  178. package/node_modules/graphql/type/index.d.ts +6 -0
  179. package/node_modules/graphql/type/index.mjs +6 -0
  180. package/node_modules/graphql/type/introspection.d.ts +36 -0
  181. package/node_modules/graphql/type/introspection.js +33 -0
  182. package/node_modules/graphql/type/introspection.mjs +41 -0
  183. package/node_modules/graphql/type/scalars.d.ts +29 -2
  184. package/node_modules/graphql/type/scalars.js +37 -2
  185. package/node_modules/graphql/type/scalars.mjs +36 -2
  186. package/node_modules/graphql/type/schema.d.ts +490 -28
  187. package/node_modules/graphql/type/schema.js +484 -26
  188. package/node_modules/graphql/type/schema.mjs +484 -26
  189. package/node_modules/graphql/type/validate.d.ts +31 -0
  190. package/node_modules/graphql/type/validate.js +32 -0
  191. package/node_modules/graphql/type/validate.mjs +31 -0
  192. package/node_modules/graphql/utilities/TypeInfo.d.ts +441 -1
  193. package/node_modules/graphql/utilities/TypeInfo.js +444 -1
  194. package/node_modules/graphql/utilities/TypeInfo.mjs +443 -1
  195. package/node_modules/graphql/utilities/assertValidName.d.ts +27 -2
  196. package/node_modules/graphql/utilities/assertValidName.js +28 -2
  197. package/node_modules/graphql/utilities/assertValidName.mjs +27 -2
  198. package/node_modules/graphql/utilities/astFromValue.d.ts +33 -3
  199. package/node_modules/graphql/utilities/astFromValue.js +36 -3
  200. package/node_modules/graphql/utilities/astFromValue.mjs +35 -3
  201. package/node_modules/graphql/utilities/buildASTSchema.d.ts +65 -6
  202. package/node_modules/graphql/utilities/buildASTSchema.js +65 -6
  203. package/node_modules/graphql/utilities/buildASTSchema.mjs +65 -6
  204. package/node_modules/graphql/utilities/buildClientSchema.d.ts +15 -0
  205. package/node_modules/graphql/utilities/buildClientSchema.js +16 -0
  206. package/node_modules/graphql/utilities/buildClientSchema.mjs +15 -0
  207. package/node_modules/graphql/utilities/coerceInputValue.d.ts +46 -0
  208. package/node_modules/graphql/utilities/coerceInputValue.js +47 -0
  209. package/node_modules/graphql/utilities/coerceInputValue.mjs +46 -0
  210. package/node_modules/graphql/utilities/concatAST.d.ts +12 -0
  211. package/node_modules/graphql/utilities/concatAST.js +13 -0
  212. package/node_modules/graphql/utilities/concatAST.mjs +12 -0
  213. package/node_modules/graphql/utilities/extendSchema.d.ts +56 -3
  214. package/node_modules/graphql/utilities/extendSchema.js +63 -3
  215. package/node_modules/graphql/utilities/extendSchema.mjs +62 -3
  216. package/node_modules/graphql/utilities/findBreakingChanges.d.ts +95 -0
  217. package/node_modules/graphql/utilities/findBreakingChanges.js +68 -0
  218. package/node_modules/graphql/utilities/findBreakingChanges.mjs +70 -0
  219. package/node_modules/graphql/utilities/getIntrospectionQuery.d.ts +132 -0
  220. package/node_modules/graphql/utilities/getIntrospectionQuery.js +41 -0
  221. package/node_modules/graphql/utilities/getIntrospectionQuery.mjs +41 -0
  222. package/node_modules/graphql/utilities/getOperationAST.d.ts +15 -0
  223. package/node_modules/graphql/utilities/getOperationAST.js +16 -0
  224. package/node_modules/graphql/utilities/getOperationAST.mjs +15 -0
  225. package/node_modules/graphql/utilities/getOperationRootType.d.ts +18 -1
  226. package/node_modules/graphql/utilities/getOperationRootType.js +19 -1
  227. package/node_modules/graphql/utilities/getOperationRootType.mjs +18 -1
  228. package/node_modules/graphql/utilities/index.d.ts +7 -0
  229. package/node_modules/graphql/utilities/index.mjs +7 -0
  230. package/node_modules/graphql/utilities/introspectionFromSchema.d.ts +54 -0
  231. package/node_modules/graphql/utilities/introspectionFromSchema.js +55 -0
  232. package/node_modules/graphql/utilities/introspectionFromSchema.mjs +54 -0
  233. package/node_modules/graphql/utilities/lexicographicSortSchema.d.ts +35 -0
  234. package/node_modules/graphql/utilities/lexicographicSortSchema.js +36 -0
  235. package/node_modules/graphql/utilities/lexicographicSortSchema.mjs +35 -0
  236. package/node_modules/graphql/utilities/printSchema.d.ts +63 -0
  237. package/node_modules/graphql/utilities/printSchema.js +66 -0
  238. package/node_modules/graphql/utilities/printSchema.mjs +67 -0
  239. package/node_modules/graphql/utilities/resolveSchemaCoordinate.d.ts +62 -0
  240. package/node_modules/graphql/utilities/resolveSchemaCoordinate.js +64 -0
  241. package/node_modules/graphql/utilities/resolveSchemaCoordinate.mjs +63 -0
  242. package/node_modules/graphql/utilities/separateOperations.d.ts +30 -0
  243. package/node_modules/graphql/utilities/separateOperations.js +31 -0
  244. package/node_modules/graphql/utilities/separateOperations.mjs +30 -0
  245. package/node_modules/graphql/utilities/stripIgnoredCharacters.d.ts +13 -6
  246. package/node_modules/graphql/utilities/stripIgnoredCharacters.js +16 -6
  247. package/node_modules/graphql/utilities/stripIgnoredCharacters.mjs +15 -6
  248. package/node_modules/graphql/utilities/typeComparators.d.ts +84 -0
  249. package/node_modules/graphql/utilities/typeComparators.js +85 -0
  250. package/node_modules/graphql/utilities/typeComparators.mjs +84 -0
  251. package/node_modules/graphql/utilities/typeFromAST.d.ts +86 -0
  252. package/node_modules/graphql/utilities/typeFromAST.js +3 -0
  253. package/node_modules/graphql/utilities/typeFromAST.mjs +3 -0
  254. package/node_modules/graphql/utilities/typedQueryDocumentNode.d.ts +4 -0
  255. package/node_modules/graphql/utilities/valueFromAST.d.ts +38 -0
  256. package/node_modules/graphql/utilities/valueFromAST.js +39 -0
  257. package/node_modules/graphql/utilities/valueFromAST.mjs +38 -0
  258. package/node_modules/graphql/utilities/valueFromASTUntyped.d.ts +15 -2
  259. package/node_modules/graphql/utilities/valueFromASTUntyped.js +16 -2
  260. package/node_modules/graphql/utilities/valueFromASTUntyped.mjs +15 -2
  261. package/node_modules/graphql/validation/ValidationContext.d.ts +399 -0
  262. package/node_modules/graphql/validation/ValidationContext.js +400 -0
  263. package/node_modules/graphql/validation/ValidationContext.mjs +401 -0
  264. package/node_modules/graphql/validation/index.d.ts +6 -0
  265. package/node_modules/graphql/validation/index.mjs +6 -0
  266. package/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts +28 -0
  267. package/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.js +29 -0
  268. package/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs +28 -0
  269. package/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts +28 -0
  270. package/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.js +33 -0
  271. package/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs +32 -0
  272. package/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts +28 -0
  273. package/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.js +29 -0
  274. package/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs +28 -0
  275. package/node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts +29 -3
  276. package/node_modules/graphql/validation/rules/KnownArgumentNamesRule.js +30 -3
  277. package/node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs +29 -3
  278. package/node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts +28 -0
  279. package/node_modules/graphql/validation/rules/KnownDirectivesRule.js +29 -0
  280. package/node_modules/graphql/validation/rules/KnownDirectivesRule.mjs +28 -0
  281. package/node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts +28 -0
  282. package/node_modules/graphql/validation/rules/KnownFragmentNamesRule.js +29 -0
  283. package/node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs +28 -0
  284. package/node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts +28 -0
  285. package/node_modules/graphql/validation/rules/KnownTypeNamesRule.js +29 -0
  286. package/node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs +28 -0
  287. package/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts +28 -0
  288. package/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.js +29 -0
  289. package/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs +28 -0
  290. package/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts +21 -0
  291. package/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.js +22 -0
  292. package/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs +21 -0
  293. package/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.d.ts +31 -0
  294. package/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.js +33 -0
  295. package/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.mjs +34 -0
  296. package/node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts +28 -0
  297. package/node_modules/graphql/validation/rules/NoFragmentCyclesRule.js +29 -0
  298. package/node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs +28 -0
  299. package/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts +28 -0
  300. package/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.js +29 -0
  301. package/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs +28 -0
  302. package/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts +28 -0
  303. package/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.js +29 -0
  304. package/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs +28 -0
  305. package/node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts +29 -0
  306. package/node_modules/graphql/validation/rules/NoUnusedVariablesRule.js +30 -0
  307. package/node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs +29 -0
  308. package/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts +33 -0
  309. package/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.js +45 -6
  310. package/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs +45 -6
  311. package/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts +36 -0
  312. package/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.js +37 -0
  313. package/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs +36 -0
  314. package/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts +21 -0
  315. package/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.js +22 -0
  316. package/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs +21 -0
  317. package/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts +29 -3
  318. package/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.js +30 -3
  319. package/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs +29 -3
  320. package/node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts +28 -0
  321. package/node_modules/graphql/validation/rules/ScalarLeafsRule.js +29 -0
  322. package/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs +28 -0
  323. package/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts +33 -0
  324. package/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.js +34 -0
  325. package/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs +33 -0
  326. package/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts +21 -0
  327. package/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.js +22 -0
  328. package/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.mjs +21 -0
  329. package/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts +28 -0
  330. package/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.js +29 -0
  331. package/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs +28 -0
  332. package/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts +21 -0
  333. package/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.js +22 -0
  334. package/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs +21 -0
  335. package/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts +28 -0
  336. package/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.js +29 -0
  337. package/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs +28 -0
  338. package/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts +21 -0
  339. package/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.js +22 -0
  340. package/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs +21 -0
  341. package/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts +21 -0
  342. package/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.js +22 -0
  343. package/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs +21 -0
  344. package/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts +28 -0
  345. package/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.js +29 -0
  346. package/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs +28 -0
  347. package/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts +32 -0
  348. package/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.js +33 -0
  349. package/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs +32 -0
  350. package/node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts +28 -0
  351. package/node_modules/graphql/validation/rules/UniqueOperationNamesRule.js +29 -0
  352. package/node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs +28 -0
  353. package/node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts +21 -0
  354. package/node_modules/graphql/validation/rules/UniqueOperationTypesRule.js +22 -0
  355. package/node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs +21 -0
  356. package/node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts +21 -0
  357. package/node_modules/graphql/validation/rules/UniqueTypeNamesRule.js +22 -0
  358. package/node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs +21 -0
  359. package/node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts +28 -0
  360. package/node_modules/graphql/validation/rules/UniqueVariableNamesRule.js +29 -0
  361. package/node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs +28 -0
  362. package/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts +28 -0
  363. package/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.js +31 -0
  364. package/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs +30 -0
  365. package/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts +32 -0
  366. package/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.js +33 -0
  367. package/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs +32 -0
  368. package/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts +28 -0
  369. package/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.js +35 -1
  370. package/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs +34 -1
  371. package/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts +41 -0
  372. package/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.js +42 -0
  373. package/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs +41 -0
  374. package/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts +28 -0
  375. package/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.js +29 -0
  376. package/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs +28 -0
  377. package/node_modules/graphql/validation/specifiedRules.d.ts +2 -3
  378. package/node_modules/graphql/validation/specifiedRules.js +2 -3
  379. package/node_modules/graphql/validation/specifiedRules.mjs +2 -3
  380. package/node_modules/graphql/validation/validate.d.ts +70 -9
  381. package/node_modules/graphql/validation/validate.js +63 -7
  382. package/node_modules/graphql/validation/validate.mjs +63 -7
  383. package/node_modules/graphql/version.d.ts +3 -6
  384. package/node_modules/graphql/version.js +6 -8
  385. package/node_modules/graphql/version.mjs +5 -8
  386. package/node_modules/protobufjs/dist/light/protobuf.js +7 -5
  387. package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
  388. package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
  389. package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
  390. package/node_modules/protobufjs/dist/minimal/protobuf.js +3 -3
  391. package/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -1
  392. package/node_modules/protobufjs/dist/minimal/protobuf.min.js +3 -3
  393. package/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -1
  394. package/node_modules/protobufjs/dist/protobuf.js +7 -5
  395. package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
  396. package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
  397. package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
  398. package/node_modules/protobufjs/package.json +1 -1
  399. package/node_modules/protobufjs/src/converter.js +4 -2
  400. package/node_modules/protobufjs/src/roots.js +1 -1
  401. package/package.json +6 -6
  402. package/node_modules/@zuplo/runtime/out/esm/chunk-XAW2AYUG.js +0 -322
  403. package/node_modules/@zuplo/runtime/out/esm/chunk-XAW2AYUG.js.map +0 -1
  404. /package/node_modules/@zuplo/runtime/out/esm/{chunk-XAW2AYUG.js.LEGAL.txt → chunk-6WKYPMAI.js.LEGAL.txt} +0 -0
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * protobuf.js v7.6.1 (c) 2016, daniel wirtz
3
- * compiled fri, 22 may 2026 02:52:09 utc
2
+ * protobuf.js v7.6.2 (c) 2016, daniel wirtz
3
+ * compiled sat, 30 may 2026 21:57:57 utc
4
4
  * licensed under the bsd-3-clause license
5
5
  * see: https://github.com/dcodeio/protobuf.js for details
6
6
  */
7
- !function(d){"use strict";var r,u,n;r={1:[function(t,n,i){n.exports=function(t,n){var i=Array(arguments.length-1),e=0,r=2,s=!0;for(;r<arguments.length;)i[e++]=arguments[r++];return new Promise(function(r,u){i[e]=function(t){if(s)if(s=!1,t)u(t);else{for(var n=Array(arguments.length-1),i=0;i<n.length;)n[i++]=arguments[i];r.apply(null,n)}};try{t.apply(n||null,i)}catch(t){s&&(s=!1,u(t))}})}},{}],2:[function(t,n,i){i.length=function(t){var n=t.length;if(!n)return 0;for(var i=0;1<--n%4&&"="==(t[0|n]||"");)++i;return Math.ceil(3*t.length)/4-i};for(var f=Array(64),o=Array(123),r=0;r<64;)o[f[r]=r<26?r+65:r<52?r+71:r<62?r-4:r-59|43]=r++;i.encode=function(t,n,i){for(var r,u=null,e=[],s=0,h=0;n<i;){var o=t[n++];switch(h){case 0:e[s++]=f[o>>2],r=(3&o)<<4,h=1;break;case 1:e[s++]=f[r|o>>4],r=(15&o)<<2,h=2;break;case 2:e[s++]=f[r|o>>6],e[s++]=f[63&o],h=0}8191<s&&((u=u||[]).push(String.fromCharCode.apply(String,e)),s=0)}return h&&(e[s++]=f[r],e[s++]=61,1===h&&(e[s++]=61)),u?(s&&u.push(String.fromCharCode.apply(String,e.slice(0,s))),u.join("")):String.fromCharCode.apply(String,e.slice(0,s))};var c="invalid encoding";i.decode=function(t,n,i){for(var r,u=i,e=0,s=0;s<t.length;){var h=t.charCodeAt(s++);if(61==h&&1<e)break;if((h=o[h])===d)throw Error(c);switch(e){case 0:r=h,e=1;break;case 1:n[i++]=r<<2|(48&h)>>4,r=h,e=2;break;case 2:n[i++]=(15&r)<<4|(60&h)>>2,r=h,e=3;break;case 3:n[i++]=(3&r)<<6|h,e=0}}if(1===e)throw Error(c);return i-u},i.test=function(t){return/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(t)}},{}],3:[function(t,n,i){function r(){this.t=Object.create(null)}(n.exports=r).prototype.on=function(t,n,i){return(this.t[t]||(this.t[t]=[])).push({fn:n,ctx:i||this}),this},r.prototype.off=function(t,n){if(t===d)this.t=Object.create(null);else if(n===d)this.t[t]=[];else{var i=this.t[t];if(!i)return this;for(var r=0;r<i.length;)i[r].fn===n?i.splice(r,1):++r}return this},r.prototype.emit=function(t){var n=this.t[t];if(n){for(var i=[],r=1;r<arguments.length;)i.push(arguments[r++]);for(r=0;r<n.length;)n[r].fn.apply(n[r++].ctx,i)}return this}},{}],4:[function(t,n,i){function r(t){function n(t,n,i,r){var u=n<0?1:0;t(0===(n=u?-n:n)?0<1/n?0:2147483648:isNaN(n)?2143289344:34028234663852886e22<n?(u<<31|2139095040)>>>0:n<11754943508222875e-54?(u<<31|Math.round(n/1401298464324817e-60))>>>0:(u<<31|127+(t=Math.floor(Math.log(n)/Math.LN2))<<23|8388607&Math.round(n*Math.pow(2,-t)*8388608))>>>0,i,r)}function i(t,n,i){t=t(n,i),n=2*(t>>31)+1,i=t>>>23&255,t&=8388607;return 255==i?t?NaN:1/0*n:0==i?1401298464324817e-60*n*t:n*Math.pow(2,i-150)*(8388608+t)}function r(t,n,i){h[0]=t,n[i]=o[0],n[i+1]=o[1],n[i+2]=o[2],n[i+3]=o[3]}function u(t,n,i){h[0]=t,n[i]=o[3],n[i+1]=o[2],n[i+2]=o[1],n[i+3]=o[0]}function e(t,n){return o[0]=t[n],o[1]=t[n+1],o[2]=t[n+2],o[3]=t[n+3],h[0]}function s(t,n){return o[3]=t[n],o[2]=t[n+1],o[1]=t[n+2],o[0]=t[n+3],h[0]}var h,o,f,c,a;function l(t,n,i,r,u,e){var s,h=r<0?1:0;0===(r=h?-r:r)?(t(0,u,e+n),t(0<1/r?0:2147483648,u,e+i)):isNaN(r)?(t(0,u,e+n),t(2146959360,u,e+i)):17976931348623157e292<r?(t(0,u,e+n),t((h<<31|2146435072)>>>0,u,e+i)):r<22250738585072014e-324?(t((s=r/5e-324)>>>0,u,e+n),t((h<<31|s/4294967296)>>>0,u,e+i)):(t(4503599627370496*(s=r*Math.pow(2,-(r=1024===(r=Math.floor(Math.log(r)/Math.LN2))?1023:r)))>>>0,u,e+n),t((h<<31|r+1023<<20|1048576*s&1048575)>>>0,u,e+i))}function v(t,n,i,r,u){n=t(r,u+n),t=t(r,u+i),r=2*(t>>31)+1,u=t>>>20&2047,i=4294967296*(1048575&t)+n;return 2047==u?i?NaN:1/0*r:0==u?5e-324*r*i:r*Math.pow(2,u-1075)*(i+4503599627370496)}function w(t,n,i){f[0]=t,n[i]=c[0],n[i+1]=c[1],n[i+2]=c[2],n[i+3]=c[3],n[i+4]=c[4],n[i+5]=c[5],n[i+6]=c[6],n[i+7]=c[7]}function b(t,n,i){f[0]=t,n[i]=c[7],n[i+1]=c[6],n[i+2]=c[5],n[i+3]=c[4],n[i+4]=c[3],n[i+5]=c[2],n[i+6]=c[1],n[i+7]=c[0]}function y(t,n){return c[0]=t[n],c[1]=t[n+1],c[2]=t[n+2],c[3]=t[n+3],c[4]=t[n+4],c[5]=t[n+5],c[6]=t[n+6],c[7]=t[n+7],f[0]}function g(t,n){return c[7]=t[n],c[6]=t[n+1],c[5]=t[n+2],c[4]=t[n+3],c[3]=t[n+4],c[2]=t[n+5],c[1]=t[n+6],c[0]=t[n+7],f[0]}return"undefined"!=typeof Float32Array?(h=new Float32Array([-0]),o=new Uint8Array(h.buffer),a=128===o[3],t.writeFloatLE=a?r:u,t.writeFloatBE=a?u:r,t.readFloatLE=a?e:s,t.readFloatBE=a?s:e):(t.writeFloatLE=n.bind(null,d),t.writeFloatBE=n.bind(null,p),t.readFloatLE=i.bind(null,m),t.readFloatBE=i.bind(null,A)),"undefined"!=typeof Float64Array?(f=new Float64Array([-0]),c=new Uint8Array(f.buffer),a=128===c[7],t.writeDoubleLE=a?w:b,t.writeDoubleBE=a?b:w,t.readDoubleLE=a?y:g,t.readDoubleBE=a?g:y):(t.writeDoubleLE=l.bind(null,d,0,4),t.writeDoubleBE=l.bind(null,p,4,0),t.readDoubleLE=v.bind(null,m,0,4),t.readDoubleBE=v.bind(null,A,4,0)),t}function d(t,n,i){n[i]=255&t,n[i+1]=t>>>8&255,n[i+2]=t>>>16&255,n[i+3]=t>>>24}function p(t,n,i){n[i]=t>>>24,n[i+1]=t>>>16&255,n[i+2]=t>>>8&255,n[i+3]=255&t}function m(t,n){return(t[n]|t[n+1]<<8|t[n+2]<<16|t[n+3]<<24)>>>0}function A(t,n){return(t[n]<<24|t[n+1]<<16|t[n+2]<<8|t[n+3])>>>0}n.exports=r(r)},{}],5:[function(i,t,n){t.exports=function(t){try{var n;return"function"!=typeof i?null:(n=i(t))&&(n.length||Object.keys(n).length)?n:null}catch(t){return null}}},{}],6:[function(t,n,i){n.exports=function(n,i,t){var r=t||8192,u=r>>>1,e=null,s=r;return function(t){if(t<1||u<t)return n(t);r<s+t&&(e=n(r),s=0);t=i.call(e,s,s+=t);return 7&s&&(s=1+(7|s)),t}}},{}],7:[function(t,n,i){i.length=function(t){for(var n,i=0,r=0;r<t.length;++r)(n=t.charCodeAt(r))<128?i+=1:n<2048?i+=2:55296==(64512&n)&&56320==(64512&t.charCodeAt(r+1))?(++r,i+=4):i+=3;return i},i.read=function(t,n,i){if(i-n<1)return"";for(var r="",u=n;u<i;){var e,s=t[u++];s<=127?r+=String.fromCharCode(s):192<=s&&s<224?r+=128<=(e=(31&s)<<6|63&t[u++])?String.fromCharCode(e):"�":224<=s&&s<240?r+=2048<=(e=(15&s)<<12|(63&t[u++])<<6|63&t[u++])?String.fromCharCode(e):"�":240<=s&&((s=(7&s)<<18|(63&t[u++])<<12|(63&t[u++])<<6|63&t[u++])<65536||1114111<s?r+="�":r=r+String.fromCharCode(55296+((s-=65536)>>10))+String.fromCharCode(56320+(1023&s)))}return r},i.write=function(t,n,i){for(var r,u,e=i,s=0;s<t.length;++s)(r=t.charCodeAt(s))<128?n[i++]=r:(r<2048?n[i++]=r>>6|192:(55296==(64512&r)&&56320==(64512&(u=t.charCodeAt(s+1)))?(++s,n[i++]=(r=65536+((1023&r)<<10)+(1023&u))>>18|240,n[i++]=r>>12&63|128):n[i++]=r>>12|224,n[i++]=r>>6&63|128),n[i++]=63&r|128);return i-e}},{}],8:[function(t,n,i){var r=i;function u(){r.util.n(),r.Writer.n(r.BufferWriter),r.Reader.n(r.BufferReader)}r.build="minimal",r.Writer=t(16),r.BufferWriter=t(17),r.Reader=t(9),r.BufferReader=t(10),r.util=t(15),r.rpc=t(12),r.roots=t(11),r.configure=u,u()},{10:10,11:11,12:12,15:15,16:16,17:17,9:9}],9:[function(t,n,i){n.exports=o;var r,u=t(15),e=u.LongBits,s=u.utf8;function h(t,n){return RangeError("index out of range: "+t.pos+" + "+(n||1)+" > "+t.len)}function o(t){this.buf=t,this.pos=0,this.len=t.length}function f(){return u.Buffer?function(t){return(o.create=function(t){return u.Buffer.isBuffer(t)?new r(t):a(t)})(t)}:a}var c,a="undefined"!=typeof Uint8Array?function(t){if(t instanceof Uint8Array||Array.isArray(t))return new o(t);throw Error("illegal buffer")}:function(t){if(Array.isArray(t))return new o(t);throw Error("illegal buffer")};function l(){var t=new e(0,0),n=0;if(!(4<this.len-this.pos)){for(;n<3;++n){if(this.pos>=this.len)throw h(this);if(t.lo=(t.lo|(127&this.buf[this.pos])<<7*n)>>>0,this.buf[this.pos++]<128)return t}return t.lo=(t.lo|(127&this.buf[this.pos++])<<7*n)>>>0,t}for(;n<4;++n)if(t.lo=(t.lo|(127&this.buf[this.pos])<<7*n)>>>0,this.buf[this.pos++]<128)return t;if(t.lo=(t.lo|(127&this.buf[this.pos])<<28)>>>0,t.hi=(t.hi|(127&this.buf[this.pos])>>4)>>>0,this.buf[this.pos++]<128)return t;if(n=0,4<this.len-this.pos){for(;n<5;++n)if(t.hi=(t.hi|(127&this.buf[this.pos])<<7*n+3)>>>0,this.buf[this.pos++]<128)return t}else for(;n<5;++n){if(this.pos>=this.len)throw h(this);if(t.hi=(t.hi|(127&this.buf[this.pos])<<7*n+3)>>>0,this.buf[this.pos++]<128)return t}throw Error("invalid varint encoding")}function v(t,n){return(t[n-4]|t[n-3]<<8|t[n-2]<<16|t[n-1]<<24)>>>0}function w(){if(this.pos+8>this.len)throw h(this,8);return new e(v(this.buf,this.pos+=4),v(this.buf,this.pos+=4))}o.create=f(),o.prototype.i=u.Array.prototype.subarray||u.Array.prototype.slice,o.prototype.uint32=(c=4294967295,function(){if(c=(127&this.buf[this.pos])>>>0,this.buf[this.pos++]<128||(c=(c|(127&this.buf[this.pos])<<7)>>>0,this.buf[this.pos++]<128||(c=(c|(127&this.buf[this.pos])<<14)>>>0,this.buf[this.pos++]<128||(c=(c|(127&this.buf[this.pos])<<21)>>>0,this.buf[this.pos++]<128||(c=(c|(15&this.buf[this.pos])<<28)>>>0,this.buf[this.pos++]<128||!((this.pos+=5)>this.len))))))return c;throw this.pos=this.len,h(this,10)}),o.prototype.int32=function(){return 0|this.uint32()},o.prototype.sint32=function(){var t=this.uint32();return t>>>1^-(1&t)|0},o.prototype.bool=function(){return 0!==this.uint32()},o.prototype.fixed32=function(){if(this.pos+4>this.len)throw h(this,4);return v(this.buf,this.pos+=4)},o.prototype.sfixed32=function(){if(this.pos+4>this.len)throw h(this,4);return 0|v(this.buf,this.pos+=4)},o.prototype.float=function(){if(this.pos+4>this.len)throw h(this,4);var t=u.float.readFloatLE(this.buf,this.pos);return this.pos+=4,t},o.prototype.double=function(){if(this.pos+8>this.len)throw h(this,4);var t=u.float.readDoubleLE(this.buf,this.pos);return this.pos+=8,t},o.prototype.bytes=function(){var t=this.uint32(),n=this.pos,i=this.pos+t;if(i>this.len)throw h(this,t);return this.pos+=t,Array.isArray(this.buf)?this.buf.slice(n,i):n===i?(t=u.Buffer)?t.alloc(0):new this.buf.constructor(0):this.i.call(this.buf,n,i)},o.prototype.string=function(){var t=this.bytes();return s.read(t,0,t.length)},o.prototype.skip=function(t){if("number"==typeof t){if(this.pos+t>this.len)throw h(this,t);this.pos+=t}else do{if(this.pos>=this.len)throw h(this)}while(128&this.buf[this.pos++]);return this},o.recursionLimit=u.recursionLimit,o.prototype.skipType=function(t,n){if(o.recursionLimit<(n=n===d?0:n))throw Error("maximum nesting depth exceeded");switch(t){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;4!=(t=7&this.uint32());)this.skipType(t,n+1);break;case 5:this.skip(4);break;default:throw Error("invalid wire type "+t+" at offset "+this.pos)}return this},o.n=function(t){r=t,o.create=f(),r.n();var n=u.Long?"toLong":"toNumber";u.merge(o.prototype,{int64:function(){return l.call(this)[n](!1)},uint64:function(){return l.call(this)[n](!0)},sint64:function(){return l.call(this).zzDecode()[n](!1)},fixed64:function(){return w.call(this)[n](!0)},sfixed64:function(){return w.call(this)[n](!1)}})}},{15:15}],10:[function(t,n,i){n.exports=e;var r=t(9),u=((e.prototype=Object.create(r.prototype)).constructor=e,t(15));function e(t){r.call(this,t)}e.n=function(){u.Buffer&&(e.prototype.i=u.Buffer.prototype.slice)},e.prototype.string=function(){var t=this.uint32();return this.buf.utf8Slice?this.buf.utf8Slice(this.pos,this.pos=Math.min(this.pos+t,this.len)):this.buf.toString("utf-8",this.pos,this.pos=Math.min(this.pos+t,this.len))},e.n()},{15:15,9:9}],11:[function(t,n,i){n.exports={}},{}],12:[function(t,n,i){i.Service=t(13)},{13:13}],13:[function(t,n,i){n.exports=r;var h=t(15);function r(t,n,i){if("function"!=typeof t)throw TypeError("rpcImpl must be a function");h.EventEmitter.call(this),this.rpcImpl=t,this.requestDelimited=!!n,this.responseDelimited=!!i}((r.prototype=Object.create(h.EventEmitter.prototype)).constructor=r).prototype.rpcCall=function t(i,n,r,u,e){if(!u)throw TypeError("request must be specified");var s=this;if(!e)return h.asPromise(t,s,i,n,r,u);if(!s.rpcImpl)return setTimeout(function(){e(Error("already ended"))},0),d;try{return s.rpcImpl(i,n[s.requestDelimited?"encodeDelimited":"encode"](u).finish(),function(t,n){if(t)return s.emit("error",t,i),e(t);if(null===n)return s.end(!0),d;if(!(n instanceof r))try{n=r[s.responseDelimited?"decodeDelimited":"decode"](n)}catch(t){return s.emit("error",t,i),e(t)}return s.emit("data",n,i),e(null,n)})}catch(t){return s.emit("error",t,i),setTimeout(function(){e(t)},0),d}},r.prototype.end=function(t){return this.rpcImpl&&(t||this.rpcImpl(null,null,null),this.rpcImpl=null,this.emit("end").off()),this}},{15:15}],14:[function(t,n,i){n.exports=u;var r=t(15);function u(t,n){this.lo=t>>>0,this.hi=n>>>0}var e=u.zero=new u(0,0),s=(e.toNumber=function(){return 0},e.zzEncode=e.zzDecode=function(){return this},e.length=function(){return 1},u.zeroHash="\0\0\0\0\0\0\0\0",u.fromNumber=function(t){var n,i;return 0===t?e:(i=(t=(n=t<0)?-t:t)>>>0,t=(t-i)/4294967296>>>0,n&&(t=~t>>>0,i=~i>>>0,4294967295<++i&&(i=0,4294967295<++t&&(t=0))),new u(i,t))},u.from=function(t){if("number"==typeof t)return u.fromNumber(t);if(r.isString(t)){if(!r.Long)return u.fromNumber(parseInt(t,10));t=r.Long.fromString(t)}return t.low||t.high?new u(t.low>>>0,t.high>>>0):e},u.prototype.toNumber=function(t){var n;return!t&&this.hi>>>31?(t=1+~this.lo>>>0,n=~this.hi>>>0,-(t+4294967296*(n=t?n:n+1>>>0))):this.lo+4294967296*this.hi},u.prototype.toLong=function(t){return r.Long?new r.Long(0|this.lo,0|this.hi,!!t):{low:0|this.lo,high:0|this.hi,unsigned:!!t}},String.prototype.charCodeAt);u.fromHash=function(t){return"\0\0\0\0\0\0\0\0"===t?e:new u((s.call(t,0)|s.call(t,1)<<8|s.call(t,2)<<16|s.call(t,3)<<24)>>>0,(s.call(t,4)|s.call(t,5)<<8|s.call(t,6)<<16|s.call(t,7)<<24)>>>0)},u.prototype.toHash=function(){return String.fromCharCode(255&this.lo,this.lo>>>8&255,this.lo>>>16&255,this.lo>>>24,255&this.hi,this.hi>>>8&255,this.hi>>>16&255,this.hi>>>24)},u.prototype.zzEncode=function(){var t=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^t)>>>0,this.lo=(this.lo<<1^t)>>>0,this},u.prototype.zzDecode=function(){var t=-(1&this.lo);return this.lo=((this.lo>>>1|this.hi<<31)^t)>>>0,this.hi=(this.hi>>>1^t)>>>0,this},u.prototype.length=function(){var t=this.lo,n=(this.lo>>>28|this.hi<<4)>>>0,i=this.hi>>>24;return 0==i?0==n?t<16384?t<128?1:2:t<2097152?3:4:n<16384?n<128?5:6:n<2097152?7:8:i<128?9:10}},{15:15}],15:[function(n,t,i){var r=i;function h(t){return"__proto__"===t||"prototype"===t||"constructor"===t}function u(t){for(var n=(i="boolean"==typeof arguments[arguments.length-1])?arguments.length-1:arguments.length,i=i&&arguments[arguments.length-1],r=1;r<n;++r){var u=arguments[r];if(u)for(var e=Object.keys(u),s=0;s<e.length;++s)h(e[s])||t[e[s]]!==d&&i||(t[e[s]]=u[e[s]])}return t}function e(t){function i(t,n){if(!(this instanceof i))return new i(t,n);Object.defineProperty(this,"message",{get:function(){return t}}),Error.captureStackTrace?Error.captureStackTrace(this,i):Object.defineProperty(this,"stack",{value:Error().stack||""}),n&&u(this,n)}return i.prototype=Object.create(Error.prototype,{constructor:{value:i,writable:!0,enumerable:!1,configurable:!0},name:{get:function(){return t},set:d,enumerable:!1,configurable:!0},toString:{value:function(){return this.name+": "+this.message},writable:!0,enumerable:!1,configurable:!0}}),i}r.asPromise=n(1),r.base64=n(2),r.EventEmitter=n(3),r.float=n(4),r.inquire=n(5),r.utf8=n(7),r.pool=n(6),r.LongBits=n(14),r.isUnsafeProperty=h,r.isNode=!!("undefined"!=typeof global&&global&&global.process&&global.process.versions&&global.process.versions.node),r.global=r.isNode&&global||"undefined"!=typeof window&&window||"undefined"!=typeof self&&self||this,r.emptyArray=Object.freeze?Object.freeze([]):[],r.emptyObject=Object.freeze?Object.freeze({}):{},r.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},r.isString=function(t){return"string"==typeof t||t instanceof String},r.isObject=function(t){return t&&"object"==typeof t},r.isset=r.isSet=function(t,n){var i=t[n];return null!=i&&t.hasOwnProperty(n)&&("object"!=typeof i||0<(Array.isArray(i)?i:Object.keys(i)).length)},r.Buffer=function(){try{var t=r.global.Buffer;return t.prototype.utf8Write?t:null}catch(t){return null}}(),r.r=null,r.u=null,r.newBuffer=function(t){return"number"==typeof t?r.Buffer?r.u(t):new r.Array(t):r.Buffer?r.r(t):"undefined"==typeof Uint8Array?t:new Uint8Array(t)},r.Array="undefined"!=typeof Uint8Array?Uint8Array:Array,r.Long=r.global.dcodeIO&&r.global.dcodeIO.Long||r.global.Long||function(){try{var t=n("long");return t&&t.isLong?t:null}catch(t){return null}}(),r.key2Re=/^true|false|0|1$/,r.key32Re=/^-?(?:0|[1-9][0-9]*)$/,r.key64Re=/^(?:[\\x00-\\xff]{8}|-?(?:0|[1-9][0-9]*))$/,r.longToHash=function(t){return t?r.LongBits.from(t).toHash():r.LongBits.zeroHash},r.longFromHash=function(t,n){t=r.LongBits.fromHash(t);return r.Long?r.Long.fromBits(t.lo,t.hi,n):t.toNumber(!!n)},r.merge=u,r.nestingLimit=32,r.recursionLimit=100,r.makeProp=function(t,n){Object.defineProperty(t,n,{enumerable:!0,configurable:!0,writable:!0})},r.lcFirst=function(t){return(t[0]||"").toLowerCase()+t.substring(1)},r.newError=e,r.ProtocolError=e("ProtocolError"),r.oneOfGetter=function(t){for(var i={},n=0;n<t.length;++n)i[t[n]]=1;return function(){for(var t=Object.keys(this),n=t.length-1;-1<n;--n)if(1===i[t[n]]&&this[t[n]]!==d&&null!==this[t[n]])return t[n]}},r.oneOfSetter=function(i){return function(t){for(var n=0;n<i.length;++n)i[n]!==t&&delete this[i[n]]}},r.toJSONOptions={longs:String,enums:String,bytes:String,json:!0},r.n=function(){var i=r.Buffer;i?(r.r=i.from!==Uint8Array.from&&i.from||function(t,n){return new i(t,n)},r.u=i.allocUnsafe||function(t){return new i(t)}):r.r=r.u=null}},{1:1,14:14,2:2,3:3,4:4,5:5,6:6,7:7,long:"long"}],16:[function(t,n,i){n.exports=a;var r,u=t(15),e=u.LongBits,s=u.base64,h=u.utf8;function o(t,n,i){this.fn=t,this.len=n,this.next=d,this.val=i}function f(){}function c(t){this.head=t.head,this.tail=t.tail,this.len=t.len,this.next=t.states}function a(){this.len=0,this.head=new o(f,0,0),this.tail=this.head,this.states=null}function l(){return u.Buffer?function(){return(a.create=function(){return new r})()}:function(){return new a}}function v(t,n,i){n[i]=255&t}function w(t,n){this.len=t,this.next=d,this.val=n}function b(t,n,i){for(var r=t.lo,u=t.hi;u;)n[i++]=127&r|128,r=(r>>>7|u<<25)>>>0,u>>>=7;for(;127<r;)n[i++]=127&r|128,r>>>=7;n[i++]=r}function y(t,n,i){n[i]=255&t,n[i+1]=t>>>8&255,n[i+2]=t>>>16&255,n[i+3]=t>>>24}a.create=l(),a.alloc=function(t){return new u.Array(t)},u.Array!==Array&&(a.alloc=u.pool(a.alloc,u.Array.prototype.subarray)),a.prototype.e=function(t,n,i){return this.tail=this.tail.next=new o(t,n,i),this.len+=n,this},(w.prototype=Object.create(o.prototype)).fn=function(t,n,i){for(;127<t;)n[i++]=127&t|128,t>>>=7;n[i]=t},a.prototype.uint32=function(t){return this.len+=(this.tail=this.tail.next=new w((t>>>=0)<128?1:t<16384?2:t<2097152?3:t<268435456?4:5,t)).len,this},a.prototype.int32=function(t){return(t|=0)<0?this.e(b,10,e.fromNumber(t)):this.uint32(t)},a.prototype.sint32=function(t){return this.uint32((t<<1^t>>31)>>>0)},a.prototype.int64=a.prototype.uint64=function(t){t=e.from(t);return this.e(b,t.length(),t)},a.prototype.sint64=function(t){t=e.from(t).zzEncode();return this.e(b,t.length(),t)},a.prototype.bool=function(t){return this.e(v,1,t?1:0)},a.prototype.sfixed32=a.prototype.fixed32=function(t){return this.e(y,4,t>>>0)},a.prototype.sfixed64=a.prototype.fixed64=function(t){t=e.from(t);return this.e(y,4,t.lo).e(y,4,t.hi)},a.prototype.float=function(t){return this.e(u.float.writeFloatLE,4,t)},a.prototype.double=function(t){return this.e(u.float.writeDoubleLE,8,t)};var g=u.Array.prototype.set?function(t,n,i){n.set(t,i)}:function(t,n,i){for(var r=0;r<t.length;++r)n[i+r]=t[r]};a.prototype.bytes=function(t){var n,i=t.length>>>0;return i?(u.isString(t)&&(n=a.alloc(i=s.length(t)),s.decode(t,n,0),t=n),this.uint32(i).e(g,i,t)):this.e(v,1,0)},a.prototype.string=function(t){var n=h.length(t);return n?this.uint32(n).e(h.write,n,t):this.e(v,1,0)},a.prototype.fork=function(){return this.states=new c(this),this.head=this.tail=new o(f,0,0),this.len=0,this},a.prototype.reset=function(){return this.states?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new o(f,0,0),this.len=0),this},a.prototype.ldelim=function(){var t=this.head,n=this.tail,i=this.len;return this.reset().uint32(i),i&&(this.tail.next=t.next,this.tail=n,this.len+=i),this},a.prototype.finish=function(){for(var t=this.head.next,n=this.constructor.alloc(this.len),i=0;t;)t.fn(t.val,n,i),i+=t.len,t=t.next;return n},a.n=function(t){r=t,a.create=l(),r.n()}},{15:15}],17:[function(t,n,i){n.exports=e;var r=t(16),u=((e.prototype=Object.create(r.prototype)).constructor=e,t(15));function e(){r.call(this)}function s(t,n,i){t.length<40?u.utf8.write(t,n,i):n.utf8Write?n.utf8Write(t,i):n.write(t,i)}e.n=function(){e.alloc=u.u,e.writeBytesBuffer=u.Buffer&&u.Buffer.prototype instanceof Uint8Array&&"set"===u.Buffer.prototype.set.name?function(t,n,i){n.set(t,i)}:function(t,n,i){if(t.copy)t.copy(n,i,0,t.length);else for(var r=0;r<t.length;)n[i++]=t[r++]}},e.prototype.bytes=function(t){var n=(t=u.isString(t)?u.r(t,"base64"):t).length>>>0;return this.uint32(n),n&&this.e(e.writeBytesBuffer,n,t),this},e.prototype.string=function(t){var n=u.Buffer.byteLength(t);return this.uint32(n),n&&this.e(s,n,t),this},e.n()},{15:15,16:16}]},u={},(n=function t(n){var i=u[n];return i||r[n][0].call(i=u[n]={exports:{}},t,i,i.exports),i.exports}([8][0])).util.global.protobuf=n,"function"==typeof define&&define.amd&&define(["long"],function(t){return t&&t.isLong&&(n.util.Long=t,n.configure()),n}),"object"==typeof module&&module&&module.exports&&(module.exports=n)}();
7
+ !function(d){"use strict";var r,u,n;r={1:[function(t,n,i){n.exports=function(t,n){var i=Array(arguments.length-1),e=0,r=2,s=!0;for(;r<arguments.length;)i[e++]=arguments[r++];return new Promise(function(r,u){i[e]=function(t){if(s)if(s=!1,t)u(t);else{for(var n=Array(arguments.length-1),i=0;i<n.length;)n[i++]=arguments[i];r.apply(null,n)}};try{t.apply(n||null,i)}catch(t){s&&(s=!1,u(t))}})}},{}],2:[function(t,n,i){i.length=function(t){var n=t.length;if(!n)return 0;for(var i=0;1<--n%4&&"="==(t[0|n]||"");)++i;return Math.ceil(3*t.length)/4-i};for(var f=Array(64),o=Array(123),r=0;r<64;)o[f[r]=r<26?r+65:r<52?r+71:r<62?r-4:r-59|43]=r++;i.encode=function(t,n,i){for(var r,u=null,e=[],s=0,h=0;n<i;){var o=t[n++];switch(h){case 0:e[s++]=f[o>>2],r=(3&o)<<4,h=1;break;case 1:e[s++]=f[r|o>>4],r=(15&o)<<2,h=2;break;case 2:e[s++]=f[r|o>>6],e[s++]=f[63&o],h=0}8191<s&&((u=u||[]).push(String.fromCharCode.apply(String,e)),s=0)}return h&&(e[s++]=f[r],e[s++]=61,1===h&&(e[s++]=61)),u?(s&&u.push(String.fromCharCode.apply(String,e.slice(0,s))),u.join("")):String.fromCharCode.apply(String,e.slice(0,s))};var c="invalid encoding";i.decode=function(t,n,i){for(var r,u=i,e=0,s=0;s<t.length;){var h=t.charCodeAt(s++);if(61==h&&1<e)break;if((h=o[h])===d)throw Error(c);switch(e){case 0:r=h,e=1;break;case 1:n[i++]=r<<2|(48&h)>>4,r=h,e=2;break;case 2:n[i++]=(15&r)<<4|(60&h)>>2,r=h,e=3;break;case 3:n[i++]=(3&r)<<6|h,e=0}}if(1===e)throw Error(c);return i-u},i.test=function(t){return/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(t)}},{}],3:[function(t,n,i){function r(){this.t=Object.create(null)}(n.exports=r).prototype.on=function(t,n,i){return(this.t[t]||(this.t[t]=[])).push({fn:n,ctx:i||this}),this},r.prototype.off=function(t,n){if(t===d)this.t=Object.create(null);else if(n===d)this.t[t]=[];else{var i=this.t[t];if(!i)return this;for(var r=0;r<i.length;)i[r].fn===n?i.splice(r,1):++r}return this},r.prototype.emit=function(t){var n=this.t[t];if(n){for(var i=[],r=1;r<arguments.length;)i.push(arguments[r++]);for(r=0;r<n.length;)n[r].fn.apply(n[r++].ctx,i)}return this}},{}],4:[function(t,n,i){function r(t){function n(t,n,i,r){var u=n<0?1:0;t(0===(n=u?-n:n)?0<1/n?0:2147483648:isNaN(n)?2143289344:34028234663852886e22<n?(u<<31|2139095040)>>>0:n<11754943508222875e-54?(u<<31|Math.round(n/1401298464324817e-60))>>>0:(u<<31|127+(t=Math.floor(Math.log(n)/Math.LN2))<<23|8388607&Math.round(n*Math.pow(2,-t)*8388608))>>>0,i,r)}function i(t,n,i){t=t(n,i),n=2*(t>>31)+1,i=t>>>23&255,t&=8388607;return 255==i?t?NaN:1/0*n:0==i?1401298464324817e-60*n*t:n*Math.pow(2,i-150)*(8388608+t)}function r(t,n,i){h[0]=t,n[i]=o[0],n[i+1]=o[1],n[i+2]=o[2],n[i+3]=o[3]}function u(t,n,i){h[0]=t,n[i]=o[3],n[i+1]=o[2],n[i+2]=o[1],n[i+3]=o[0]}function e(t,n){return o[0]=t[n],o[1]=t[n+1],o[2]=t[n+2],o[3]=t[n+3],h[0]}function s(t,n){return o[3]=t[n],o[2]=t[n+1],o[1]=t[n+2],o[0]=t[n+3],h[0]}var h,o,f,c,a;function l(t,n,i,r,u,e){var s,h=r<0?1:0;0===(r=h?-r:r)?(t(0,u,e+n),t(0<1/r?0:2147483648,u,e+i)):isNaN(r)?(t(0,u,e+n),t(2146959360,u,e+i)):17976931348623157e292<r?(t(0,u,e+n),t((h<<31|2146435072)>>>0,u,e+i)):r<22250738585072014e-324?(t((s=r/5e-324)>>>0,u,e+n),t((h<<31|s/4294967296)>>>0,u,e+i)):(t(4503599627370496*(s=r*Math.pow(2,-(r=1024===(r=Math.floor(Math.log(r)/Math.LN2))?1023:r)))>>>0,u,e+n),t((h<<31|r+1023<<20|1048576*s&1048575)>>>0,u,e+i))}function v(t,n,i,r,u){n=t(r,u+n),t=t(r,u+i),r=2*(t>>31)+1,u=t>>>20&2047,i=4294967296*(1048575&t)+n;return 2047==u?i?NaN:1/0*r:0==u?5e-324*r*i:r*Math.pow(2,u-1075)*(i+4503599627370496)}function b(t,n,i){f[0]=t,n[i]=c[0],n[i+1]=c[1],n[i+2]=c[2],n[i+3]=c[3],n[i+4]=c[4],n[i+5]=c[5],n[i+6]=c[6],n[i+7]=c[7]}function w(t,n,i){f[0]=t,n[i]=c[7],n[i+1]=c[6],n[i+2]=c[5],n[i+3]=c[4],n[i+4]=c[3],n[i+5]=c[2],n[i+6]=c[1],n[i+7]=c[0]}function y(t,n){return c[0]=t[n],c[1]=t[n+1],c[2]=t[n+2],c[3]=t[n+3],c[4]=t[n+4],c[5]=t[n+5],c[6]=t[n+6],c[7]=t[n+7],f[0]}function g(t,n){return c[7]=t[n],c[6]=t[n+1],c[5]=t[n+2],c[4]=t[n+3],c[3]=t[n+4],c[2]=t[n+5],c[1]=t[n+6],c[0]=t[n+7],f[0]}return"undefined"!=typeof Float32Array?(h=new Float32Array([-0]),o=new Uint8Array(h.buffer),a=128===o[3],t.writeFloatLE=a?r:u,t.writeFloatBE=a?u:r,t.readFloatLE=a?e:s,t.readFloatBE=a?s:e):(t.writeFloatLE=n.bind(null,d),t.writeFloatBE=n.bind(null,p),t.readFloatLE=i.bind(null,m),t.readFloatBE=i.bind(null,A)),"undefined"!=typeof Float64Array?(f=new Float64Array([-0]),c=new Uint8Array(f.buffer),a=128===c[7],t.writeDoubleLE=a?b:w,t.writeDoubleBE=a?w:b,t.readDoubleLE=a?y:g,t.readDoubleBE=a?g:y):(t.writeDoubleLE=l.bind(null,d,0,4),t.writeDoubleBE=l.bind(null,p,4,0),t.readDoubleLE=v.bind(null,m,0,4),t.readDoubleBE=v.bind(null,A,4,0)),t}function d(t,n,i){n[i]=255&t,n[i+1]=t>>>8&255,n[i+2]=t>>>16&255,n[i+3]=t>>>24}function p(t,n,i){n[i]=t>>>24,n[i+1]=t>>>16&255,n[i+2]=t>>>8&255,n[i+3]=255&t}function m(t,n){return(t[n]|t[n+1]<<8|t[n+2]<<16|t[n+3]<<24)>>>0}function A(t,n){return(t[n]<<24|t[n+1]<<16|t[n+2]<<8|t[n+3])>>>0}n.exports=r(r)},{}],5:[function(i,t,n){t.exports=function(t){try{var n;return"function"!=typeof i?null:(n=i(t))&&(n.length||Object.keys(n).length)?n:null}catch(t){return null}}},{}],6:[function(t,n,i){n.exports=function(n,i,t){var r=t||8192,u=r>>>1,e=null,s=r;return function(t){if(t<1||u<t)return n(t);r<s+t&&(e=n(r),s=0);t=i.call(e,s,s+=t);return 7&s&&(s=1+(7|s)),t}}},{}],7:[function(t,n,i){i.length=function(t){for(var n,i=0,r=0;r<t.length;++r)(n=t.charCodeAt(r))<128?i+=1:n<2048?i+=2:55296==(64512&n)&&56320==(64512&t.charCodeAt(r+1))?(++r,i+=4):i+=3;return i},i.read=function(t,n,i){if(i-n<1)return"";for(var r="",u=n;u<i;){var e,s=t[u++];s<=127?r+=String.fromCharCode(s):192<=s&&s<224?r+=128<=(e=(31&s)<<6|63&t[u++])?String.fromCharCode(e):"�":224<=s&&s<240?r+=2048<=(e=(15&s)<<12|(63&t[u++])<<6|63&t[u++])?String.fromCharCode(e):"�":240<=s&&((s=(7&s)<<18|(63&t[u++])<<12|(63&t[u++])<<6|63&t[u++])<65536||1114111<s?r+="�":r=r+String.fromCharCode(55296+((s-=65536)>>10))+String.fromCharCode(56320+(1023&s)))}return r},i.write=function(t,n,i){for(var r,u,e=i,s=0;s<t.length;++s)(r=t.charCodeAt(s))<128?n[i++]=r:(r<2048?n[i++]=r>>6|192:(55296==(64512&r)&&56320==(64512&(u=t.charCodeAt(s+1)))?(++s,n[i++]=(r=65536+((1023&r)<<10)+(1023&u))>>18|240,n[i++]=r>>12&63|128):n[i++]=r>>12|224,n[i++]=r>>6&63|128),n[i++]=63&r|128);return i-e}},{}],8:[function(t,n,i){var r=i;function u(){r.util.n(),r.Writer.n(r.BufferWriter),r.Reader.n(r.BufferReader)}r.build="minimal",r.Writer=t(16),r.BufferWriter=t(17),r.Reader=t(9),r.BufferReader=t(10),r.util=t(15),r.rpc=t(12),r.roots=t(11),r.configure=u,u()},{10:10,11:11,12:12,15:15,16:16,17:17,9:9}],9:[function(t,n,i){n.exports=o;var r,u=t(15),e=u.LongBits,s=u.utf8;function h(t,n){return RangeError("index out of range: "+t.pos+" + "+(n||1)+" > "+t.len)}function o(t){this.buf=t,this.pos=0,this.len=t.length}function f(){return u.Buffer?function(t){return(o.create=function(t){return u.Buffer.isBuffer(t)?new r(t):a(t)})(t)}:a}var c,a="undefined"!=typeof Uint8Array?function(t){if(t instanceof Uint8Array||Array.isArray(t))return new o(t);throw Error("illegal buffer")}:function(t){if(Array.isArray(t))return new o(t);throw Error("illegal buffer")};function l(){var t=new e(0,0),n=0;if(!(4<this.len-this.pos)){for(;n<3;++n){if(this.pos>=this.len)throw h(this);if(t.lo=(t.lo|(127&this.buf[this.pos])<<7*n)>>>0,this.buf[this.pos++]<128)return t}return t.lo=(t.lo|(127&this.buf[this.pos++])<<7*n)>>>0,t}for(;n<4;++n)if(t.lo=(t.lo|(127&this.buf[this.pos])<<7*n)>>>0,this.buf[this.pos++]<128)return t;if(t.lo=(t.lo|(127&this.buf[this.pos])<<28)>>>0,t.hi=(t.hi|(127&this.buf[this.pos])>>4)>>>0,this.buf[this.pos++]<128)return t;if(n=0,4<this.len-this.pos){for(;n<5;++n)if(t.hi=(t.hi|(127&this.buf[this.pos])<<7*n+3)>>>0,this.buf[this.pos++]<128)return t}else for(;n<5;++n){if(this.pos>=this.len)throw h(this);if(t.hi=(t.hi|(127&this.buf[this.pos])<<7*n+3)>>>0,this.buf[this.pos++]<128)return t}throw Error("invalid varint encoding")}function v(t,n){return(t[n-4]|t[n-3]<<8|t[n-2]<<16|t[n-1]<<24)>>>0}function b(){if(this.pos+8>this.len)throw h(this,8);return new e(v(this.buf,this.pos+=4),v(this.buf,this.pos+=4))}o.create=f(),o.prototype.i=u.Array.prototype.subarray||u.Array.prototype.slice,o.prototype.uint32=(c=4294967295,function(){if(c=(127&this.buf[this.pos])>>>0,this.buf[this.pos++]<128||(c=(c|(127&this.buf[this.pos])<<7)>>>0,this.buf[this.pos++]<128||(c=(c|(127&this.buf[this.pos])<<14)>>>0,this.buf[this.pos++]<128||(c=(c|(127&this.buf[this.pos])<<21)>>>0,this.buf[this.pos++]<128||(c=(c|(15&this.buf[this.pos])<<28)>>>0,this.buf[this.pos++]<128||!((this.pos+=5)>this.len))))))return c;throw this.pos=this.len,h(this,10)}),o.prototype.int32=function(){return 0|this.uint32()},o.prototype.sint32=function(){var t=this.uint32();return t>>>1^-(1&t)|0},o.prototype.bool=function(){return 0!==this.uint32()},o.prototype.fixed32=function(){if(this.pos+4>this.len)throw h(this,4);return v(this.buf,this.pos+=4)},o.prototype.sfixed32=function(){if(this.pos+4>this.len)throw h(this,4);return 0|v(this.buf,this.pos+=4)},o.prototype.float=function(){if(this.pos+4>this.len)throw h(this,4);var t=u.float.readFloatLE(this.buf,this.pos);return this.pos+=4,t},o.prototype.double=function(){if(this.pos+8>this.len)throw h(this,4);var t=u.float.readDoubleLE(this.buf,this.pos);return this.pos+=8,t},o.prototype.bytes=function(){var t=this.uint32(),n=this.pos,i=this.pos+t;if(i>this.len)throw h(this,t);return this.pos+=t,Array.isArray(this.buf)?this.buf.slice(n,i):n===i?(t=u.Buffer)?t.alloc(0):new this.buf.constructor(0):this.i.call(this.buf,n,i)},o.prototype.string=function(){var t=this.bytes();return s.read(t,0,t.length)},o.prototype.skip=function(t){if("number"==typeof t){if(this.pos+t>this.len)throw h(this,t);this.pos+=t}else do{if(this.pos>=this.len)throw h(this)}while(128&this.buf[this.pos++]);return this},o.recursionLimit=u.recursionLimit,o.prototype.skipType=function(t,n){if(o.recursionLimit<(n=n===d?0:n))throw Error("maximum nesting depth exceeded");switch(t){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;4!=(t=7&this.uint32());)this.skipType(t,n+1);break;case 5:this.skip(4);break;default:throw Error("invalid wire type "+t+" at offset "+this.pos)}return this},o.n=function(t){r=t,o.create=f(),r.n();var n=u.Long?"toLong":"toNumber";u.merge(o.prototype,{int64:function(){return l.call(this)[n](!1)},uint64:function(){return l.call(this)[n](!0)},sint64:function(){return l.call(this).zzDecode()[n](!1)},fixed64:function(){return b.call(this)[n](!0)},sfixed64:function(){return b.call(this)[n](!1)}})}},{15:15}],10:[function(t,n,i){n.exports=e;var r=t(9),u=((e.prototype=Object.create(r.prototype)).constructor=e,t(15));function e(t){r.call(this,t)}e.n=function(){u.Buffer&&(e.prototype.i=u.Buffer.prototype.slice)},e.prototype.string=function(){var t=this.uint32();return this.buf.utf8Slice?this.buf.utf8Slice(this.pos,this.pos=Math.min(this.pos+t,this.len)):this.buf.toString("utf-8",this.pos,this.pos=Math.min(this.pos+t,this.len))},e.n()},{15:15,9:9}],11:[function(t,n,i){n.exports=Object.create(null)},{}],12:[function(t,n,i){i.Service=t(13)},{13:13}],13:[function(t,n,i){n.exports=r;var h=t(15);function r(t,n,i){if("function"!=typeof t)throw TypeError("rpcImpl must be a function");h.EventEmitter.call(this),this.rpcImpl=t,this.requestDelimited=!!n,this.responseDelimited=!!i}((r.prototype=Object.create(h.EventEmitter.prototype)).constructor=r).prototype.rpcCall=function t(i,n,r,u,e){if(!u)throw TypeError("request must be specified");var s=this;if(!e)return h.asPromise(t,s,i,n,r,u);if(!s.rpcImpl)return setTimeout(function(){e(Error("already ended"))},0),d;try{return s.rpcImpl(i,n[s.requestDelimited?"encodeDelimited":"encode"](u).finish(),function(t,n){if(t)return s.emit("error",t,i),e(t);if(null===n)return s.end(!0),d;if(!(n instanceof r))try{n=r[s.responseDelimited?"decodeDelimited":"decode"](n)}catch(t){return s.emit("error",t,i),e(t)}return s.emit("data",n,i),e(null,n)})}catch(t){return s.emit("error",t,i),setTimeout(function(){e(t)},0),d}},r.prototype.end=function(t){return this.rpcImpl&&(t||this.rpcImpl(null,null,null),this.rpcImpl=null,this.emit("end").off()),this}},{15:15}],14:[function(t,n,i){n.exports=u;var r=t(15);function u(t,n){this.lo=t>>>0,this.hi=n>>>0}var e=u.zero=new u(0,0),s=(e.toNumber=function(){return 0},e.zzEncode=e.zzDecode=function(){return this},e.length=function(){return 1},u.zeroHash="\0\0\0\0\0\0\0\0",u.fromNumber=function(t){var n,i;return 0===t?e:(i=(t=(n=t<0)?-t:t)>>>0,t=(t-i)/4294967296>>>0,n&&(t=~t>>>0,i=~i>>>0,4294967295<++i&&(i=0,4294967295<++t&&(t=0))),new u(i,t))},u.from=function(t){if("number"==typeof t)return u.fromNumber(t);if(r.isString(t)){if(!r.Long)return u.fromNumber(parseInt(t,10));t=r.Long.fromString(t)}return t.low||t.high?new u(t.low>>>0,t.high>>>0):e},u.prototype.toNumber=function(t){var n;return!t&&this.hi>>>31?(t=1+~this.lo>>>0,n=~this.hi>>>0,-(t+4294967296*(n=t?n:n+1>>>0))):this.lo+4294967296*this.hi},u.prototype.toLong=function(t){return r.Long?new r.Long(0|this.lo,0|this.hi,!!t):{low:0|this.lo,high:0|this.hi,unsigned:!!t}},String.prototype.charCodeAt);u.fromHash=function(t){return"\0\0\0\0\0\0\0\0"===t?e:new u((s.call(t,0)|s.call(t,1)<<8|s.call(t,2)<<16|s.call(t,3)<<24)>>>0,(s.call(t,4)|s.call(t,5)<<8|s.call(t,6)<<16|s.call(t,7)<<24)>>>0)},u.prototype.toHash=function(){return String.fromCharCode(255&this.lo,this.lo>>>8&255,this.lo>>>16&255,this.lo>>>24,255&this.hi,this.hi>>>8&255,this.hi>>>16&255,this.hi>>>24)},u.prototype.zzEncode=function(){var t=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^t)>>>0,this.lo=(this.lo<<1^t)>>>0,this},u.prototype.zzDecode=function(){var t=-(1&this.lo);return this.lo=((this.lo>>>1|this.hi<<31)^t)>>>0,this.hi=(this.hi>>>1^t)>>>0,this},u.prototype.length=function(){var t=this.lo,n=(this.lo>>>28|this.hi<<4)>>>0,i=this.hi>>>24;return 0==i?0==n?t<16384?t<128?1:2:t<2097152?3:4:n<16384?n<128?5:6:n<2097152?7:8:i<128?9:10}},{15:15}],15:[function(n,t,i){var r=i;function h(t){return"__proto__"===t||"prototype"===t||"constructor"===t}function u(t){for(var n=(i="boolean"==typeof arguments[arguments.length-1])?arguments.length-1:arguments.length,i=i&&arguments[arguments.length-1],r=1;r<n;++r){var u=arguments[r];if(u)for(var e=Object.keys(u),s=0;s<e.length;++s)h(e[s])||t[e[s]]!==d&&i||(t[e[s]]=u[e[s]])}return t}function e(t){function i(t,n){if(!(this instanceof i))return new i(t,n);Object.defineProperty(this,"message",{get:function(){return t}}),Error.captureStackTrace?Error.captureStackTrace(this,i):Object.defineProperty(this,"stack",{value:Error().stack||""}),n&&u(this,n)}return i.prototype=Object.create(Error.prototype,{constructor:{value:i,writable:!0,enumerable:!1,configurable:!0},name:{get:function(){return t},set:d,enumerable:!1,configurable:!0},toString:{value:function(){return this.name+": "+this.message},writable:!0,enumerable:!1,configurable:!0}}),i}r.asPromise=n(1),r.base64=n(2),r.EventEmitter=n(3),r.float=n(4),r.inquire=n(5),r.utf8=n(7),r.pool=n(6),r.LongBits=n(14),r.isUnsafeProperty=h,r.isNode=!!("undefined"!=typeof global&&global&&global.process&&global.process.versions&&global.process.versions.node),r.global=r.isNode&&global||"undefined"!=typeof window&&window||"undefined"!=typeof self&&self||this,r.emptyArray=Object.freeze?Object.freeze([]):[],r.emptyObject=Object.freeze?Object.freeze({}):{},r.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},r.isString=function(t){return"string"==typeof t||t instanceof String},r.isObject=function(t){return t&&"object"==typeof t},r.isset=r.isSet=function(t,n){var i=t[n];return null!=i&&t.hasOwnProperty(n)&&("object"!=typeof i||0<(Array.isArray(i)?i:Object.keys(i)).length)},r.Buffer=function(){try{var t=r.global.Buffer;return t.prototype.utf8Write?t:null}catch(t){return null}}(),r.r=null,r.u=null,r.newBuffer=function(t){return"number"==typeof t?r.Buffer?r.u(t):new r.Array(t):r.Buffer?r.r(t):"undefined"==typeof Uint8Array?t:new Uint8Array(t)},r.Array="undefined"!=typeof Uint8Array?Uint8Array:Array,r.Long=r.global.dcodeIO&&r.global.dcodeIO.Long||r.global.Long||function(){try{var t=n("long");return t&&t.isLong?t:null}catch(t){return null}}(),r.key2Re=/^true|false|0|1$/,r.key32Re=/^-?(?:0|[1-9][0-9]*)$/,r.key64Re=/^(?:[\\x00-\\xff]{8}|-?(?:0|[1-9][0-9]*))$/,r.longToHash=function(t){return t?r.LongBits.from(t).toHash():r.LongBits.zeroHash},r.longFromHash=function(t,n){t=r.LongBits.fromHash(t);return r.Long?r.Long.fromBits(t.lo,t.hi,n):t.toNumber(!!n)},r.merge=u,r.nestingLimit=32,r.recursionLimit=100,r.makeProp=function(t,n){Object.defineProperty(t,n,{enumerable:!0,configurable:!0,writable:!0})},r.lcFirst=function(t){return(t[0]||"").toLowerCase()+t.substring(1)},r.newError=e,r.ProtocolError=e("ProtocolError"),r.oneOfGetter=function(t){for(var i={},n=0;n<t.length;++n)i[t[n]]=1;return function(){for(var t=Object.keys(this),n=t.length-1;-1<n;--n)if(1===i[t[n]]&&this[t[n]]!==d&&null!==this[t[n]])return t[n]}},r.oneOfSetter=function(i){return function(t){for(var n=0;n<i.length;++n)i[n]!==t&&delete this[i[n]]}},r.toJSONOptions={longs:String,enums:String,bytes:String,json:!0},r.n=function(){var i=r.Buffer;i?(r.r=i.from!==Uint8Array.from&&i.from||function(t,n){return new i(t,n)},r.u=i.allocUnsafe||function(t){return new i(t)}):r.r=r.u=null}},{1:1,14:14,2:2,3:3,4:4,5:5,6:6,7:7,long:"long"}],16:[function(t,n,i){n.exports=a;var r,u=t(15),e=u.LongBits,s=u.base64,h=u.utf8;function o(t,n,i){this.fn=t,this.len=n,this.next=d,this.val=i}function f(){}function c(t){this.head=t.head,this.tail=t.tail,this.len=t.len,this.next=t.states}function a(){this.len=0,this.head=new o(f,0,0),this.tail=this.head,this.states=null}function l(){return u.Buffer?function(){return(a.create=function(){return new r})()}:function(){return new a}}function v(t,n,i){n[i]=255&t}function b(t,n){this.len=t,this.next=d,this.val=n}function w(t,n,i){for(var r=t.lo,u=t.hi;u;)n[i++]=127&r|128,r=(r>>>7|u<<25)>>>0,u>>>=7;for(;127<r;)n[i++]=127&r|128,r>>>=7;n[i++]=r}function y(t,n,i){n[i]=255&t,n[i+1]=t>>>8&255,n[i+2]=t>>>16&255,n[i+3]=t>>>24}a.create=l(),a.alloc=function(t){return new u.Array(t)},u.Array!==Array&&(a.alloc=u.pool(a.alloc,u.Array.prototype.subarray)),a.prototype.e=function(t,n,i){return this.tail=this.tail.next=new o(t,n,i),this.len+=n,this},(b.prototype=Object.create(o.prototype)).fn=function(t,n,i){for(;127<t;)n[i++]=127&t|128,t>>>=7;n[i]=t},a.prototype.uint32=function(t){return this.len+=(this.tail=this.tail.next=new b((t>>>=0)<128?1:t<16384?2:t<2097152?3:t<268435456?4:5,t)).len,this},a.prototype.int32=function(t){return(t|=0)<0?this.e(w,10,e.fromNumber(t)):this.uint32(t)},a.prototype.sint32=function(t){return this.uint32((t<<1^t>>31)>>>0)},a.prototype.int64=a.prototype.uint64=function(t){t=e.from(t);return this.e(w,t.length(),t)},a.prototype.sint64=function(t){t=e.from(t).zzEncode();return this.e(w,t.length(),t)},a.prototype.bool=function(t){return this.e(v,1,t?1:0)},a.prototype.sfixed32=a.prototype.fixed32=function(t){return this.e(y,4,t>>>0)},a.prototype.sfixed64=a.prototype.fixed64=function(t){t=e.from(t);return this.e(y,4,t.lo).e(y,4,t.hi)},a.prototype.float=function(t){return this.e(u.float.writeFloatLE,4,t)},a.prototype.double=function(t){return this.e(u.float.writeDoubleLE,8,t)};var g=u.Array.prototype.set?function(t,n,i){n.set(t,i)}:function(t,n,i){for(var r=0;r<t.length;++r)n[i+r]=t[r]};a.prototype.bytes=function(t){var n,i=t.length>>>0;return i?(u.isString(t)&&(n=a.alloc(i=s.length(t)),s.decode(t,n,0),t=n),this.uint32(i).e(g,i,t)):this.e(v,1,0)},a.prototype.string=function(t){var n=h.length(t);return n?this.uint32(n).e(h.write,n,t):this.e(v,1,0)},a.prototype.fork=function(){return this.states=new c(this),this.head=this.tail=new o(f,0,0),this.len=0,this},a.prototype.reset=function(){return this.states?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new o(f,0,0),this.len=0),this},a.prototype.ldelim=function(){var t=this.head,n=this.tail,i=this.len;return this.reset().uint32(i),i&&(this.tail.next=t.next,this.tail=n,this.len+=i),this},a.prototype.finish=function(){for(var t=this.head.next,n=this.constructor.alloc(this.len),i=0;t;)t.fn(t.val,n,i),i+=t.len,t=t.next;return n},a.n=function(t){r=t,a.create=l(),r.n()}},{15:15}],17:[function(t,n,i){n.exports=e;var r=t(16),u=((e.prototype=Object.create(r.prototype)).constructor=e,t(15));function e(){r.call(this)}function s(t,n,i){t.length<40?u.utf8.write(t,n,i):n.utf8Write?n.utf8Write(t,i):n.write(t,i)}e.n=function(){e.alloc=u.u,e.writeBytesBuffer=u.Buffer&&u.Buffer.prototype instanceof Uint8Array&&"set"===u.Buffer.prototype.set.name?function(t,n,i){n.set(t,i)}:function(t,n,i){if(t.copy)t.copy(n,i,0,t.length);else for(var r=0;r<t.length;)n[i++]=t[r++]}},e.prototype.bytes=function(t){var n=(t=u.isString(t)?u.r(t,"base64"):t).length>>>0;return this.uint32(n),n&&this.e(e.writeBytesBuffer,n,t),this},e.prototype.string=function(t){var n=u.Buffer.byteLength(t);return this.uint32(n),n&&this.e(s,n,t),this},e.n()},{15:15,16:16}]},u={},(n=function t(n){var i=u[n];return i||r[n][0].call(i=u[n]={exports:{}},t,i,i.exports),i.exports}([8][0])).util.global.protobuf=n,"function"==typeof define&&define.amd&&define(["long"],function(t){return t&&t.isLong&&(n.util.Long=t,n.configure()),n}),"object"==typeof module&&module&&module.exports&&(module.exports=n)}();
8
8
  //# sourceMappingURL=protobuf.min.js.map