@brainai/satp-client 2.0.5 → 2.0.7

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 (2124) hide show
  1. package/README.md +96 -29
  2. package/examples/adoption-quickstarts.js +173 -0
  3. package/examples/runtime-policy-adapter.js +13 -1
  4. package/examples/x402-reputation-evidence-lookup-client.js +182 -0
  5. package/idls/v3/attestations_v3.json +439 -0
  6. package/idls/v3/escrow_v3.json +972 -0
  7. package/idls/v3/identity_v3.json +1344 -0
  8. package/idls/v3/reputation_v3.json +140 -0
  9. package/idls/v3/reviews_v3.json +300 -0
  10. package/idls/v3/validation_v3.json +146 -0
  11. package/node_modules/@babel/runtime/LICENSE +22 -0
  12. package/node_modules/@babel/runtime/README.md +19 -0
  13. package/node_modules/@babel/runtime/helpers/AwaitValue.js +4 -0
  14. package/node_modules/@babel/runtime/helpers/OverloadYield.js +4 -0
  15. package/node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js +9 -0
  16. package/node_modules/@babel/runtime/helpers/applyDecs.js +236 -0
  17. package/node_modules/@babel/runtime/helpers/applyDecs2203.js +184 -0
  18. package/node_modules/@babel/runtime/helpers/applyDecs2203R.js +191 -0
  19. package/node_modules/@babel/runtime/helpers/applyDecs2301.js +222 -0
  20. package/node_modules/@babel/runtime/helpers/applyDecs2305.js +133 -0
  21. package/node_modules/@babel/runtime/helpers/applyDecs2311.js +124 -0
  22. package/node_modules/@babel/runtime/helpers/arrayLikeToArray.js +6 -0
  23. package/node_modules/@babel/runtime/helpers/arrayWithHoles.js +4 -0
  24. package/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js +5 -0
  25. package/node_modules/@babel/runtime/helpers/assertClassBrand.js +5 -0
  26. package/node_modules/@babel/runtime/helpers/assertThisInitialized.js +5 -0
  27. package/node_modules/@babel/runtime/helpers/asyncGeneratorDelegate.js +24 -0
  28. package/node_modules/@babel/runtime/helpers/asyncIterator.js +45 -0
  29. package/node_modules/@babel/runtime/helpers/asyncToGenerator.js +26 -0
  30. package/node_modules/@babel/runtime/helpers/awaitAsyncGenerator.js +5 -0
  31. package/node_modules/@babel/runtime/helpers/callSuper.js +7 -0
  32. package/node_modules/@babel/runtime/helpers/checkInRHS.js +6 -0
  33. package/node_modules/@babel/runtime/helpers/checkPrivateRedeclaration.js +4 -0
  34. package/node_modules/@babel/runtime/helpers/classApplyDescriptorDestructureSet.js +10 -0
  35. package/node_modules/@babel/runtime/helpers/classApplyDescriptorGet.js +4 -0
  36. package/node_modules/@babel/runtime/helpers/classApplyDescriptorSet.js +7 -0
  37. package/node_modules/@babel/runtime/helpers/classCallCheck.js +4 -0
  38. package/node_modules/@babel/runtime/helpers/classCheckPrivateStaticAccess.js +5 -0
  39. package/node_modules/@babel/runtime/helpers/classCheckPrivateStaticFieldDescriptor.js +4 -0
  40. package/node_modules/@babel/runtime/helpers/classExtractFieldDescriptor.js +5 -0
  41. package/node_modules/@babel/runtime/helpers/classNameTDZError.js +4 -0
  42. package/node_modules/@babel/runtime/helpers/classPrivateFieldDestructureSet.js +7 -0
  43. package/node_modules/@babel/runtime/helpers/classPrivateFieldGet.js +7 -0
  44. package/node_modules/@babel/runtime/helpers/classPrivateFieldGet2.js +5 -0
  45. package/node_modules/@babel/runtime/helpers/classPrivateFieldInitSpec.js +5 -0
  46. package/node_modules/@babel/runtime/helpers/classPrivateFieldLooseBase.js +5 -0
  47. package/node_modules/@babel/runtime/helpers/classPrivateFieldLooseKey.js +5 -0
  48. package/node_modules/@babel/runtime/helpers/classPrivateFieldSet.js +7 -0
  49. package/node_modules/@babel/runtime/helpers/classPrivateFieldSet2.js +5 -0
  50. package/node_modules/@babel/runtime/helpers/classPrivateGetter.js +5 -0
  51. package/node_modules/@babel/runtime/helpers/classPrivateMethodGet.js +5 -0
  52. package/node_modules/@babel/runtime/helpers/classPrivateMethodInitSpec.js +5 -0
  53. package/node_modules/@babel/runtime/helpers/classPrivateMethodSet.js +4 -0
  54. package/node_modules/@babel/runtime/helpers/classPrivateSetter.js +5 -0
  55. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldDestructureSet.js +7 -0
  56. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js +7 -0
  57. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecSet.js +7 -0
  58. package/node_modules/@babel/runtime/helpers/classStaticPrivateMethodGet.js +5 -0
  59. package/node_modules/@babel/runtime/helpers/classStaticPrivateMethodSet.js +4 -0
  60. package/node_modules/@babel/runtime/helpers/construct.js +10 -0
  61. package/node_modules/@babel/runtime/helpers/createClass.js +13 -0
  62. package/node_modules/@babel/runtime/helpers/createForOfIteratorHelper.js +50 -0
  63. package/node_modules/@babel/runtime/helpers/createForOfIteratorHelperLoose.js +19 -0
  64. package/node_modules/@babel/runtime/helpers/createSuper.js +16 -0
  65. package/node_modules/@babel/runtime/helpers/decorate.js +250 -0
  66. package/node_modules/@babel/runtime/helpers/defaults.js +9 -0
  67. package/node_modules/@babel/runtime/helpers/defineAccessor.js +8 -0
  68. package/node_modules/@babel/runtime/helpers/defineEnumerableProperties.js +12 -0
  69. package/node_modules/@babel/runtime/helpers/defineProperty.js +10 -0
  70. package/node_modules/@babel/runtime/helpers/dispose.js +28 -0
  71. package/node_modules/@babel/runtime/helpers/esm/AwaitValue.js +4 -0
  72. package/node_modules/@babel/runtime/helpers/esm/OverloadYield.js +4 -0
  73. package/node_modules/@babel/runtime/helpers/esm/applyDecoratedDescriptor.js +9 -0
  74. package/node_modules/@babel/runtime/helpers/esm/applyDecs.js +236 -0
  75. package/node_modules/@babel/runtime/helpers/esm/applyDecs2203.js +184 -0
  76. package/node_modules/@babel/runtime/helpers/esm/applyDecs2203R.js +191 -0
  77. package/node_modules/@babel/runtime/helpers/esm/applyDecs2301.js +222 -0
  78. package/node_modules/@babel/runtime/helpers/esm/applyDecs2305.js +133 -0
  79. package/node_modules/@babel/runtime/helpers/esm/applyDecs2311.js +124 -0
  80. package/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +6 -0
  81. package/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +4 -0
  82. package/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js +5 -0
  83. package/node_modules/@babel/runtime/helpers/esm/assertClassBrand.js +5 -0
  84. package/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +5 -0
  85. package/node_modules/@babel/runtime/helpers/esm/asyncGeneratorDelegate.js +24 -0
  86. package/node_modules/@babel/runtime/helpers/esm/asyncIterator.js +45 -0
  87. package/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js +26 -0
  88. package/node_modules/@babel/runtime/helpers/esm/awaitAsyncGenerator.js +5 -0
  89. package/node_modules/@babel/runtime/helpers/esm/callSuper.js +7 -0
  90. package/node_modules/@babel/runtime/helpers/esm/checkInRHS.js +6 -0
  91. package/node_modules/@babel/runtime/helpers/esm/checkPrivateRedeclaration.js +4 -0
  92. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorDestructureSet.js +10 -0
  93. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorGet.js +4 -0
  94. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorSet.js +7 -0
  95. package/node_modules/@babel/runtime/helpers/esm/classCallCheck.js +4 -0
  96. package/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticAccess.js +5 -0
  97. package/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticFieldDescriptor.js +4 -0
  98. package/node_modules/@babel/runtime/helpers/esm/classExtractFieldDescriptor.js +5 -0
  99. package/node_modules/@babel/runtime/helpers/esm/classNameTDZError.js +4 -0
  100. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldDestructureSet.js +7 -0
  101. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldGet.js +7 -0
  102. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldGet2.js +5 -0
  103. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldInitSpec.js +5 -0
  104. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseBase.js +5 -0
  105. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseKey.js +5 -0
  106. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldSet.js +7 -0
  107. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldSet2.js +5 -0
  108. package/node_modules/@babel/runtime/helpers/esm/classPrivateGetter.js +5 -0
  109. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodGet.js +5 -0
  110. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodInitSpec.js +5 -0
  111. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodSet.js +4 -0
  112. package/node_modules/@babel/runtime/helpers/esm/classPrivateSetter.js +5 -0
  113. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldDestructureSet.js +7 -0
  114. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecGet.js +7 -0
  115. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecSet.js +7 -0
  116. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodGet.js +5 -0
  117. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodSet.js +4 -0
  118. package/node_modules/@babel/runtime/helpers/esm/construct.js +10 -0
  119. package/node_modules/@babel/runtime/helpers/esm/createClass.js +13 -0
  120. package/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js +50 -0
  121. package/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelperLoose.js +19 -0
  122. package/node_modules/@babel/runtime/helpers/esm/createSuper.js +16 -0
  123. package/node_modules/@babel/runtime/helpers/esm/decorate.js +250 -0
  124. package/node_modules/@babel/runtime/helpers/esm/defaults.js +9 -0
  125. package/node_modules/@babel/runtime/helpers/esm/defineAccessor.js +8 -0
  126. package/node_modules/@babel/runtime/helpers/esm/defineEnumerableProperties.js +12 -0
  127. package/node_modules/@babel/runtime/helpers/esm/defineProperty.js +10 -0
  128. package/node_modules/@babel/runtime/helpers/esm/dispose.js +28 -0
  129. package/node_modules/@babel/runtime/helpers/esm/extends.js +10 -0
  130. package/node_modules/@babel/runtime/helpers/esm/get.js +11 -0
  131. package/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +6 -0
  132. package/node_modules/@babel/runtime/helpers/esm/identity.js +4 -0
  133. package/node_modules/@babel/runtime/helpers/esm/importDeferProxy.js +27 -0
  134. package/node_modules/@babel/runtime/helpers/esm/inherits.js +14 -0
  135. package/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +5 -0
  136. package/node_modules/@babel/runtime/helpers/esm/initializerDefineProperty.js +9 -0
  137. package/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js +4 -0
  138. package/node_modules/@babel/runtime/helpers/esm/instanceof.js +4 -0
  139. package/node_modules/@babel/runtime/helpers/esm/interopRequireDefault.js +6 -0
  140. package/node_modules/@babel/runtime/helpers/esm/interopRequireWildcard.js +22 -0
  141. package/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js +8 -0
  142. package/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +9 -0
  143. package/node_modules/@babel/runtime/helpers/esm/iterableToArray.js +4 -0
  144. package/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +28 -0
  145. package/node_modules/@babel/runtime/helpers/esm/jsx.js +22 -0
  146. package/node_modules/@babel/runtime/helpers/esm/maybeArrayLike.js +9 -0
  147. package/node_modules/@babel/runtime/helpers/esm/newArrowCheck.js +4 -0
  148. package/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +4 -0
  149. package/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js +4 -0
  150. package/node_modules/@babel/runtime/helpers/esm/nullishReceiverError.js +4 -0
  151. package/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js +4 -0
  152. package/node_modules/@babel/runtime/helpers/esm/objectSpread.js +14 -0
  153. package/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +23 -0
  154. package/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +13 -0
  155. package/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +10 -0
  156. package/node_modules/@babel/runtime/helpers/esm/package.json +3 -0
  157. package/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +8 -0
  158. package/node_modules/@babel/runtime/helpers/esm/readOnlyError.js +4 -0
  159. package/node_modules/@babel/runtime/helpers/esm/regenerator.js +89 -0
  160. package/node_modules/@babel/runtime/helpers/esm/regeneratorAsync.js +8 -0
  161. package/node_modules/@babel/runtime/helpers/esm/regeneratorAsyncGen.js +6 -0
  162. package/node_modules/@babel/runtime/helpers/esm/regeneratorAsyncIterator.js +33 -0
  163. package/node_modules/@babel/runtime/helpers/esm/regeneratorDefine.js +22 -0
  164. package/node_modules/@babel/runtime/helpers/esm/regeneratorKeys.js +10 -0
  165. package/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js +77 -0
  166. package/node_modules/@babel/runtime/helpers/esm/regeneratorValues.js +19 -0
  167. package/node_modules/@babel/runtime/helpers/esm/set.js +22 -0
  168. package/node_modules/@babel/runtime/helpers/esm/setFunctionName.js +12 -0
  169. package/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +6 -0
  170. package/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js +7 -0
  171. package/node_modules/@babel/runtime/helpers/esm/slicedToArray.js +8 -0
  172. package/node_modules/@babel/runtime/helpers/esm/superPropBase.js +6 -0
  173. package/node_modules/@babel/runtime/helpers/esm/superPropGet.js +9 -0
  174. package/node_modules/@babel/runtime/helpers/esm/superPropSet.js +6 -0
  175. package/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js +8 -0
  176. package/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js +4 -0
  177. package/node_modules/@babel/runtime/helpers/esm/tdz.js +4 -0
  178. package/node_modules/@babel/runtime/helpers/esm/temporalRef.js +6 -0
  179. package/node_modules/@babel/runtime/helpers/esm/temporalUndefined.js +2 -0
  180. package/node_modules/@babel/runtime/helpers/esm/toArray.js +8 -0
  181. package/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js +8 -0
  182. package/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +12 -0
  183. package/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +7 -0
  184. package/node_modules/@babel/runtime/helpers/esm/toSetter.js +10 -0
  185. package/node_modules/@babel/runtime/helpers/esm/tsRewriteRelativeImportExtensions.js +6 -0
  186. package/node_modules/@babel/runtime/helpers/esm/typeof.js +10 -0
  187. package/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +9 -0
  188. package/node_modules/@babel/runtime/helpers/esm/using.js +12 -0
  189. package/node_modules/@babel/runtime/helpers/esm/usingCtx.js +59 -0
  190. package/node_modules/@babel/runtime/helpers/esm/wrapAsyncGenerator.js +69 -0
  191. package/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js +27 -0
  192. package/node_modules/@babel/runtime/helpers/esm/wrapRegExp.js +52 -0
  193. package/node_modules/@babel/runtime/helpers/esm/writeOnlyError.js +4 -0
  194. package/node_modules/@babel/runtime/helpers/extends.js +10 -0
  195. package/node_modules/@babel/runtime/helpers/get.js +11 -0
  196. package/node_modules/@babel/runtime/helpers/getPrototypeOf.js +6 -0
  197. package/node_modules/@babel/runtime/helpers/identity.js +4 -0
  198. package/node_modules/@babel/runtime/helpers/importDeferProxy.js +27 -0
  199. package/node_modules/@babel/runtime/helpers/inherits.js +14 -0
  200. package/node_modules/@babel/runtime/helpers/inheritsLoose.js +5 -0
  201. package/node_modules/@babel/runtime/helpers/initializerDefineProperty.js +9 -0
  202. package/node_modules/@babel/runtime/helpers/initializerWarningHelper.js +4 -0
  203. package/node_modules/@babel/runtime/helpers/instanceof.js +4 -0
  204. package/node_modules/@babel/runtime/helpers/interopRequireDefault.js +6 -0
  205. package/node_modules/@babel/runtime/helpers/interopRequireWildcard.js +22 -0
  206. package/node_modules/@babel/runtime/helpers/isNativeFunction.js +8 -0
  207. package/node_modules/@babel/runtime/helpers/isNativeReflectConstruct.js +9 -0
  208. package/node_modules/@babel/runtime/helpers/iterableToArray.js +4 -0
  209. package/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js +28 -0
  210. package/node_modules/@babel/runtime/helpers/jsx.js +22 -0
  211. package/node_modules/@babel/runtime/helpers/maybeArrayLike.js +9 -0
  212. package/node_modules/@babel/runtime/helpers/newArrowCheck.js +4 -0
  213. package/node_modules/@babel/runtime/helpers/nonIterableRest.js +4 -0
  214. package/node_modules/@babel/runtime/helpers/nonIterableSpread.js +4 -0
  215. package/node_modules/@babel/runtime/helpers/nullishReceiverError.js +4 -0
  216. package/node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js +4 -0
  217. package/node_modules/@babel/runtime/helpers/objectSpread.js +14 -0
  218. package/node_modules/@babel/runtime/helpers/objectSpread2.js +23 -0
  219. package/node_modules/@babel/runtime/helpers/objectWithoutProperties.js +13 -0
  220. package/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js +10 -0
  221. package/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js +8 -0
  222. package/node_modules/@babel/runtime/helpers/readOnlyError.js +4 -0
  223. package/node_modules/@babel/runtime/helpers/regenerator.js +89 -0
  224. package/node_modules/@babel/runtime/helpers/regeneratorAsync.js +8 -0
  225. package/node_modules/@babel/runtime/helpers/regeneratorAsyncGen.js +6 -0
  226. package/node_modules/@babel/runtime/helpers/regeneratorAsyncIterator.js +33 -0
  227. package/node_modules/@babel/runtime/helpers/regeneratorDefine.js +22 -0
  228. package/node_modules/@babel/runtime/helpers/regeneratorKeys.js +10 -0
  229. package/node_modules/@babel/runtime/helpers/regeneratorRuntime.js +77 -0
  230. package/node_modules/@babel/runtime/helpers/regeneratorValues.js +19 -0
  231. package/node_modules/@babel/runtime/helpers/set.js +22 -0
  232. package/node_modules/@babel/runtime/helpers/setFunctionName.js +12 -0
  233. package/node_modules/@babel/runtime/helpers/setPrototypeOf.js +6 -0
  234. package/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js +7 -0
  235. package/node_modules/@babel/runtime/helpers/slicedToArray.js +8 -0
  236. package/node_modules/@babel/runtime/helpers/superPropBase.js +6 -0
  237. package/node_modules/@babel/runtime/helpers/superPropGet.js +9 -0
  238. package/node_modules/@babel/runtime/helpers/superPropSet.js +6 -0
  239. package/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js +8 -0
  240. package/node_modules/@babel/runtime/helpers/taggedTemplateLiteralLoose.js +4 -0
  241. package/node_modules/@babel/runtime/helpers/tdz.js +4 -0
  242. package/node_modules/@babel/runtime/helpers/temporalRef.js +6 -0
  243. package/node_modules/@babel/runtime/helpers/temporalUndefined.js +2 -0
  244. package/node_modules/@babel/runtime/helpers/toArray.js +8 -0
  245. package/node_modules/@babel/runtime/helpers/toConsumableArray.js +8 -0
  246. package/node_modules/@babel/runtime/helpers/toPrimitive.js +12 -0
  247. package/node_modules/@babel/runtime/helpers/toPropertyKey.js +7 -0
  248. package/node_modules/@babel/runtime/helpers/toSetter.js +10 -0
  249. package/node_modules/@babel/runtime/helpers/tsRewriteRelativeImportExtensions.js +6 -0
  250. package/node_modules/@babel/runtime/helpers/typeof.js +10 -0
  251. package/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js +9 -0
  252. package/node_modules/@babel/runtime/helpers/using.js +12 -0
  253. package/node_modules/@babel/runtime/helpers/usingCtx.js +59 -0
  254. package/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js +69 -0
  255. package/node_modules/@babel/runtime/helpers/wrapNativeSuper.js +27 -0
  256. package/node_modules/@babel/runtime/helpers/wrapRegExp.js +52 -0
  257. package/node_modules/@babel/runtime/helpers/writeOnlyError.js +4 -0
  258. package/node_modules/@babel/runtime/package.json +1107 -0
  259. package/node_modules/@babel/runtime/regenerator/index.js +15 -0
  260. package/node_modules/@noble/curves/LICENSE +21 -0
  261. package/node_modules/@noble/curves/README.md +1009 -0
  262. package/node_modules/@noble/curves/_shortw_utils.d.ts +19 -0
  263. package/node_modules/@noble/curves/_shortw_utils.d.ts.map +1 -0
  264. package/node_modules/@noble/curves/_shortw_utils.js +20 -0
  265. package/node_modules/@noble/curves/_shortw_utils.js.map +1 -0
  266. package/node_modules/@noble/curves/abstract/bls.d.ts +190 -0
  267. package/node_modules/@noble/curves/abstract/bls.d.ts.map +1 -0
  268. package/node_modules/@noble/curves/abstract/bls.js +411 -0
  269. package/node_modules/@noble/curves/abstract/bls.js.map +1 -0
  270. package/node_modules/@noble/curves/abstract/curve.d.ts +231 -0
  271. package/node_modules/@noble/curves/abstract/curve.d.ts.map +1 -0
  272. package/node_modules/@noble/curves/abstract/curve.js +476 -0
  273. package/node_modules/@noble/curves/abstract/curve.js.map +1 -0
  274. package/node_modules/@noble/curves/abstract/edwards.d.ts +243 -0
  275. package/node_modules/@noble/curves/abstract/edwards.d.ts.map +1 -0
  276. package/node_modules/@noble/curves/abstract/edwards.js +634 -0
  277. package/node_modules/@noble/curves/abstract/edwards.js.map +1 -0
  278. package/node_modules/@noble/curves/abstract/fft.d.ts +122 -0
  279. package/node_modules/@noble/curves/abstract/fft.d.ts.map +1 -0
  280. package/node_modules/@noble/curves/abstract/fft.js +438 -0
  281. package/node_modules/@noble/curves/abstract/fft.js.map +1 -0
  282. package/node_modules/@noble/curves/abstract/hash-to-curve.d.ts +102 -0
  283. package/node_modules/@noble/curves/abstract/hash-to-curve.d.ts.map +1 -0
  284. package/node_modules/@noble/curves/abstract/hash-to-curve.js +211 -0
  285. package/node_modules/@noble/curves/abstract/hash-to-curve.js.map +1 -0
  286. package/node_modules/@noble/curves/abstract/modular.d.ts +171 -0
  287. package/node_modules/@noble/curves/abstract/modular.d.ts.map +1 -0
  288. package/node_modules/@noble/curves/abstract/modular.js +554 -0
  289. package/node_modules/@noble/curves/abstract/modular.js.map +1 -0
  290. package/node_modules/@noble/curves/abstract/montgomery.d.ts +30 -0
  291. package/node_modules/@noble/curves/abstract/montgomery.d.ts.map +1 -0
  292. package/node_modules/@noble/curves/abstract/montgomery.js +160 -0
  293. package/node_modules/@noble/curves/abstract/montgomery.js.map +1 -0
  294. package/node_modules/@noble/curves/abstract/poseidon.d.ts +68 -0
  295. package/node_modules/@noble/curves/abstract/poseidon.d.ts.map +1 -0
  296. package/node_modules/@noble/curves/abstract/poseidon.js +305 -0
  297. package/node_modules/@noble/curves/abstract/poseidon.js.map +1 -0
  298. package/node_modules/@noble/curves/abstract/tower.d.ts +95 -0
  299. package/node_modules/@noble/curves/abstract/tower.d.ts.map +1 -0
  300. package/node_modules/@noble/curves/abstract/tower.js +718 -0
  301. package/node_modules/@noble/curves/abstract/tower.js.map +1 -0
  302. package/node_modules/@noble/curves/abstract/utils.d.ts +78 -0
  303. package/node_modules/@noble/curves/abstract/utils.d.ts.map +1 -0
  304. package/node_modules/@noble/curves/abstract/utils.js +73 -0
  305. package/node_modules/@noble/curves/abstract/utils.js.map +1 -0
  306. package/node_modules/@noble/curves/abstract/weierstrass.d.ts +416 -0
  307. package/node_modules/@noble/curves/abstract/weierstrass.d.ts.map +1 -0
  308. package/node_modules/@noble/curves/abstract/weierstrass.js +1427 -0
  309. package/node_modules/@noble/curves/abstract/weierstrass.js.map +1 -0
  310. package/node_modules/@noble/curves/bls12-381.d.ts +16 -0
  311. package/node_modules/@noble/curves/bls12-381.d.ts.map +1 -0
  312. package/node_modules/@noble/curves/bls12-381.js +708 -0
  313. package/node_modules/@noble/curves/bls12-381.js.map +1 -0
  314. package/node_modules/@noble/curves/bn254.d.ts +18 -0
  315. package/node_modules/@noble/curves/bn254.d.ts.map +1 -0
  316. package/node_modules/@noble/curves/bn254.js +218 -0
  317. package/node_modules/@noble/curves/bn254.js.map +1 -0
  318. package/node_modules/@noble/curves/ed25519.d.ts +106 -0
  319. package/node_modules/@noble/curves/ed25519.d.ts.map +1 -0
  320. package/node_modules/@noble/curves/ed25519.js +472 -0
  321. package/node_modules/@noble/curves/ed25519.js.map +1 -0
  322. package/node_modules/@noble/curves/ed448.d.ts +100 -0
  323. package/node_modules/@noble/curves/ed448.d.ts.map +1 -0
  324. package/node_modules/@noble/curves/ed448.js +463 -0
  325. package/node_modules/@noble/curves/ed448.js.map +1 -0
  326. package/node_modules/@noble/curves/esm/_shortw_utils.d.ts +19 -0
  327. package/node_modules/@noble/curves/esm/_shortw_utils.d.ts.map +1 -0
  328. package/node_modules/@noble/curves/esm/_shortw_utils.js +16 -0
  329. package/node_modules/@noble/curves/esm/_shortw_utils.js.map +1 -0
  330. package/node_modules/@noble/curves/esm/abstract/bls.d.ts +190 -0
  331. package/node_modules/@noble/curves/esm/abstract/bls.d.ts.map +1 -0
  332. package/node_modules/@noble/curves/esm/abstract/bls.js +408 -0
  333. package/node_modules/@noble/curves/esm/abstract/bls.js.map +1 -0
  334. package/node_modules/@noble/curves/esm/abstract/curve.d.ts +231 -0
  335. package/node_modules/@noble/curves/esm/abstract/curve.d.ts.map +1 -0
  336. package/node_modules/@noble/curves/esm/abstract/curve.js +465 -0
  337. package/node_modules/@noble/curves/esm/abstract/curve.js.map +1 -0
  338. package/node_modules/@noble/curves/esm/abstract/edwards.d.ts +243 -0
  339. package/node_modules/@noble/curves/esm/abstract/edwards.d.ts.map +1 -0
  340. package/node_modules/@noble/curves/esm/abstract/edwards.js +627 -0
  341. package/node_modules/@noble/curves/esm/abstract/edwards.js.map +1 -0
  342. package/node_modules/@noble/curves/esm/abstract/fft.d.ts +122 -0
  343. package/node_modules/@noble/curves/esm/abstract/fft.d.ts.map +1 -0
  344. package/node_modules/@noble/curves/esm/abstract/fft.js +425 -0
  345. package/node_modules/@noble/curves/esm/abstract/fft.js.map +1 -0
  346. package/node_modules/@noble/curves/esm/abstract/hash-to-curve.d.ts +102 -0
  347. package/node_modules/@noble/curves/esm/abstract/hash-to-curve.d.ts.map +1 -0
  348. package/node_modules/@noble/curves/esm/abstract/hash-to-curve.js +203 -0
  349. package/node_modules/@noble/curves/esm/abstract/hash-to-curve.js.map +1 -0
  350. package/node_modules/@noble/curves/esm/abstract/modular.d.ts +171 -0
  351. package/node_modules/@noble/curves/esm/abstract/modular.d.ts.map +1 -0
  352. package/node_modules/@noble/curves/esm/abstract/modular.js +530 -0
  353. package/node_modules/@noble/curves/esm/abstract/modular.js.map +1 -0
  354. package/node_modules/@noble/curves/esm/abstract/montgomery.d.ts +30 -0
  355. package/node_modules/@noble/curves/esm/abstract/montgomery.d.ts.map +1 -0
  356. package/node_modules/@noble/curves/esm/abstract/montgomery.js +157 -0
  357. package/node_modules/@noble/curves/esm/abstract/montgomery.js.map +1 -0
  358. package/node_modules/@noble/curves/esm/abstract/poseidon.d.ts +68 -0
  359. package/node_modules/@noble/curves/esm/abstract/poseidon.d.ts.map +1 -0
  360. package/node_modules/@noble/curves/esm/abstract/poseidon.js +296 -0
  361. package/node_modules/@noble/curves/esm/abstract/poseidon.js.map +1 -0
  362. package/node_modules/@noble/curves/esm/abstract/tower.d.ts +95 -0
  363. package/node_modules/@noble/curves/esm/abstract/tower.d.ts.map +1 -0
  364. package/node_modules/@noble/curves/esm/abstract/tower.js +714 -0
  365. package/node_modules/@noble/curves/esm/abstract/tower.js.map +1 -0
  366. package/node_modules/@noble/curves/esm/abstract/utils.d.ts +78 -0
  367. package/node_modules/@noble/curves/esm/abstract/utils.d.ts.map +1 -0
  368. package/node_modules/@noble/curves/esm/abstract/utils.js +70 -0
  369. package/node_modules/@noble/curves/esm/abstract/utils.js.map +1 -0
  370. package/node_modules/@noble/curves/esm/abstract/weierstrass.d.ts +416 -0
  371. package/node_modules/@noble/curves/esm/abstract/weierstrass.d.ts.map +1 -0
  372. package/node_modules/@noble/curves/esm/abstract/weierstrass.js +1413 -0
  373. package/node_modules/@noble/curves/esm/abstract/weierstrass.js.map +1 -0
  374. package/node_modules/@noble/curves/esm/bls12-381.d.ts +16 -0
  375. package/node_modules/@noble/curves/esm/bls12-381.d.ts.map +1 -0
  376. package/node_modules/@noble/curves/esm/bls12-381.js +705 -0
  377. package/node_modules/@noble/curves/esm/bls12-381.js.map +1 -0
  378. package/node_modules/@noble/curves/esm/bn254.d.ts +18 -0
  379. package/node_modules/@noble/curves/esm/bn254.d.ts.map +1 -0
  380. package/node_modules/@noble/curves/esm/bn254.js +214 -0
  381. package/node_modules/@noble/curves/esm/bn254.js.map +1 -0
  382. package/node_modules/@noble/curves/esm/ed25519.d.ts +106 -0
  383. package/node_modules/@noble/curves/esm/ed25519.d.ts.map +1 -0
  384. package/node_modules/@noble/curves/esm/ed25519.js +467 -0
  385. package/node_modules/@noble/curves/esm/ed25519.js.map +1 -0
  386. package/node_modules/@noble/curves/esm/ed448.d.ts +100 -0
  387. package/node_modules/@noble/curves/esm/ed448.d.ts.map +1 -0
  388. package/node_modules/@noble/curves/esm/ed448.js +459 -0
  389. package/node_modules/@noble/curves/esm/ed448.js.map +1 -0
  390. package/node_modules/@noble/curves/esm/index.d.ts +2 -0
  391. package/node_modules/@noble/curves/esm/index.d.ts.map +1 -0
  392. package/node_modules/@noble/curves/esm/index.js +17 -0
  393. package/node_modules/@noble/curves/esm/index.js.map +1 -0
  394. package/node_modules/@noble/curves/esm/jubjub.d.ts +12 -0
  395. package/node_modules/@noble/curves/esm/jubjub.d.ts.map +1 -0
  396. package/node_modules/@noble/curves/esm/jubjub.js +12 -0
  397. package/node_modules/@noble/curves/esm/jubjub.js.map +1 -0
  398. package/node_modules/@noble/curves/esm/misc.d.ts +19 -0
  399. package/node_modules/@noble/curves/esm/misc.d.ts.map +1 -0
  400. package/node_modules/@noble/curves/esm/misc.js +109 -0
  401. package/node_modules/@noble/curves/esm/misc.js.map +1 -0
  402. package/node_modules/@noble/curves/esm/nist.d.ts +21 -0
  403. package/node_modules/@noble/curves/esm/nist.d.ts.map +1 -0
  404. package/node_modules/@noble/curves/esm/nist.js +132 -0
  405. package/node_modules/@noble/curves/esm/nist.js.map +1 -0
  406. package/node_modules/@noble/curves/esm/p256.d.ts +16 -0
  407. package/node_modules/@noble/curves/esm/p256.d.ts.map +1 -0
  408. package/node_modules/@noble/curves/esm/p256.js +16 -0
  409. package/node_modules/@noble/curves/esm/p256.js.map +1 -0
  410. package/node_modules/@noble/curves/esm/p384.d.ts +16 -0
  411. package/node_modules/@noble/curves/esm/p384.d.ts.map +1 -0
  412. package/node_modules/@noble/curves/esm/p384.js +16 -0
  413. package/node_modules/@noble/curves/esm/p384.js.map +1 -0
  414. package/node_modules/@noble/curves/esm/p521.d.ts +16 -0
  415. package/node_modules/@noble/curves/esm/p521.d.ts.map +1 -0
  416. package/node_modules/@noble/curves/esm/p521.js +16 -0
  417. package/node_modules/@noble/curves/esm/p521.js.map +1 -0
  418. package/node_modules/@noble/curves/esm/package.json +4 -0
  419. package/node_modules/@noble/curves/esm/pasta.d.ts +10 -0
  420. package/node_modules/@noble/curves/esm/pasta.d.ts.map +1 -0
  421. package/node_modules/@noble/curves/esm/pasta.js +10 -0
  422. package/node_modules/@noble/curves/esm/pasta.js.map +1 -0
  423. package/node_modules/@noble/curves/esm/secp256k1.d.ts +89 -0
  424. package/node_modules/@noble/curves/esm/secp256k1.d.ts.map +1 -0
  425. package/node_modules/@noble/curves/esm/secp256k1.js +294 -0
  426. package/node_modules/@noble/curves/esm/secp256k1.js.map +1 -0
  427. package/node_modules/@noble/curves/esm/utils.d.ts +110 -0
  428. package/node_modules/@noble/curves/esm/utils.d.ts.map +1 -0
  429. package/node_modules/@noble/curves/esm/utils.js +322 -0
  430. package/node_modules/@noble/curves/esm/utils.js.map +1 -0
  431. package/node_modules/@noble/curves/index.d.ts +1 -0
  432. package/node_modules/@noble/curves/index.d.ts.map +1 -0
  433. package/node_modules/@noble/curves/index.js +17 -0
  434. package/node_modules/@noble/curves/index.js.map +1 -0
  435. package/node_modules/@noble/curves/jubjub.d.ts +12 -0
  436. package/node_modules/@noble/curves/jubjub.d.ts.map +1 -0
  437. package/node_modules/@noble/curves/jubjub.js +15 -0
  438. package/node_modules/@noble/curves/jubjub.js.map +1 -0
  439. package/node_modules/@noble/curves/misc.d.ts +19 -0
  440. package/node_modules/@noble/curves/misc.d.ts.map +1 -0
  441. package/node_modules/@noble/curves/misc.js +114 -0
  442. package/node_modules/@noble/curves/misc.js.map +1 -0
  443. package/node_modules/@noble/curves/nist.d.ts +21 -0
  444. package/node_modules/@noble/curves/nist.d.ts.map +1 -0
  445. package/node_modules/@noble/curves/nist.js +135 -0
  446. package/node_modules/@noble/curves/nist.js.map +1 -0
  447. package/node_modules/@noble/curves/p256.d.ts +16 -0
  448. package/node_modules/@noble/curves/p256.d.ts.map +1 -0
  449. package/node_modules/@noble/curves/p256.js +13 -0
  450. package/node_modules/@noble/curves/p256.js.map +1 -0
  451. package/node_modules/@noble/curves/p384.d.ts +16 -0
  452. package/node_modules/@noble/curves/p384.d.ts.map +1 -0
  453. package/node_modules/@noble/curves/p384.js +13 -0
  454. package/node_modules/@noble/curves/p384.js.map +1 -0
  455. package/node_modules/@noble/curves/p521.d.ts +16 -0
  456. package/node_modules/@noble/curves/p521.d.ts.map +1 -0
  457. package/node_modules/@noble/curves/p521.js +13 -0
  458. package/node_modules/@noble/curves/p521.js.map +1 -0
  459. package/node_modules/@noble/curves/package.json +295 -0
  460. package/node_modules/@noble/curves/pasta.d.ts +10 -0
  461. package/node_modules/@noble/curves/pasta.d.ts.map +1 -0
  462. package/node_modules/@noble/curves/pasta.js +13 -0
  463. package/node_modules/@noble/curves/pasta.js.map +1 -0
  464. package/node_modules/@noble/curves/secp256k1.d.ts +89 -0
  465. package/node_modules/@noble/curves/secp256k1.d.ts.map +1 -0
  466. package/node_modules/@noble/curves/secp256k1.js +297 -0
  467. package/node_modules/@noble/curves/secp256k1.js.map +1 -0
  468. package/node_modules/@noble/curves/src/_shortw_utils.ts +21 -0
  469. package/node_modules/@noble/curves/src/abstract/bls.ts +747 -0
  470. package/node_modules/@noble/curves/src/abstract/curve.ts +692 -0
  471. package/node_modules/@noble/curves/src/abstract/edwards.ts +914 -0
  472. package/node_modules/@noble/curves/src/abstract/fft.ts +519 -0
  473. package/node_modules/@noble/curves/src/abstract/hash-to-curve.ts +306 -0
  474. package/node_modules/@noble/curves/src/abstract/modular.ts +605 -0
  475. package/node_modules/@noble/curves/src/abstract/montgomery.ts +194 -0
  476. package/node_modules/@noble/curves/src/abstract/poseidon.ts +335 -0
  477. package/node_modules/@noble/curves/src/abstract/tower.ts +867 -0
  478. package/node_modules/@noble/curves/src/abstract/utils.ts +80 -0
  479. package/node_modules/@noble/curves/src/abstract/weierstrass.ts +1884 -0
  480. package/node_modules/@noble/curves/src/bls12-381.ts +781 -0
  481. package/node_modules/@noble/curves/src/bn254.ts +243 -0
  482. package/node_modules/@noble/curves/src/ed25519.ts +554 -0
  483. package/node_modules/@noble/curves/src/ed448.ts +552 -0
  484. package/node_modules/@noble/curves/src/index.ts +15 -0
  485. package/node_modules/@noble/curves/src/jubjub.ts +12 -0
  486. package/node_modules/@noble/curves/src/misc.ts +124 -0
  487. package/node_modules/@noble/curves/src/nist.ts +197 -0
  488. package/node_modules/@noble/curves/src/p256.ts +15 -0
  489. package/node_modules/@noble/curves/src/p384.ts +15 -0
  490. package/node_modules/@noble/curves/src/p521.ts +15 -0
  491. package/node_modules/@noble/curves/src/package.json +3 -0
  492. package/node_modules/@noble/curves/src/pasta.ts +9 -0
  493. package/node_modules/@noble/curves/src/secp256k1.ts +362 -0
  494. package/node_modules/@noble/curves/src/utils.ts +376 -0
  495. package/node_modules/@noble/curves/utils.d.ts +110 -0
  496. package/node_modules/@noble/curves/utils.d.ts.map +1 -0
  497. package/node_modules/@noble/curves/utils.js +360 -0
  498. package/node_modules/@noble/curves/utils.js.map +1 -0
  499. package/node_modules/@noble/hashes/LICENSE +21 -0
  500. package/node_modules/@noble/hashes/README.md +521 -0
  501. package/node_modules/@noble/hashes/_assert.d.ts +17 -0
  502. package/node_modules/@noble/hashes/_assert.d.ts.map +1 -0
  503. package/node_modules/@noble/hashes/_assert.js +18 -0
  504. package/node_modules/@noble/hashes/_assert.js.map +1 -0
  505. package/node_modules/@noble/hashes/_blake.d.ts +14 -0
  506. package/node_modules/@noble/hashes/_blake.d.ts.map +1 -0
  507. package/node_modules/@noble/hashes/_blake.js +50 -0
  508. package/node_modules/@noble/hashes/_blake.js.map +1 -0
  509. package/node_modules/@noble/hashes/_md.d.ts +51 -0
  510. package/node_modules/@noble/hashes/_md.d.ts.map +1 -0
  511. package/node_modules/@noble/hashes/_md.js +162 -0
  512. package/node_modules/@noble/hashes/_md.js.map +1 -0
  513. package/node_modules/@noble/hashes/_u64.d.ts +55 -0
  514. package/node_modules/@noble/hashes/_u64.d.ts.map +1 -0
  515. package/node_modules/@noble/hashes/_u64.js +90 -0
  516. package/node_modules/@noble/hashes/_u64.js.map +1 -0
  517. package/node_modules/@noble/hashes/argon2.d.ts +32 -0
  518. package/node_modules/@noble/hashes/argon2.d.ts.map +1 -0
  519. package/node_modules/@noble/hashes/argon2.js +401 -0
  520. package/node_modules/@noble/hashes/argon2.js.map +1 -0
  521. package/node_modules/@noble/hashes/blake1.d.ts +106 -0
  522. package/node_modules/@noble/hashes/blake1.d.ts.map +1 -0
  523. package/node_modules/@noble/hashes/blake1.js +459 -0
  524. package/node_modules/@noble/hashes/blake1.js.map +1 -0
  525. package/node_modules/@noble/hashes/blake2.d.ts +116 -0
  526. package/node_modules/@noble/hashes/blake2.d.ts.map +1 -0
  527. package/node_modules/@noble/hashes/blake2.js +420 -0
  528. package/node_modules/@noble/hashes/blake2.js.map +1 -0
  529. package/node_modules/@noble/hashes/blake2b.d.ts +11 -0
  530. package/node_modules/@noble/hashes/blake2b.d.ts.map +1 -0
  531. package/node_modules/@noble/hashes/blake2b.js +14 -0
  532. package/node_modules/@noble/hashes/blake2b.js.map +1 -0
  533. package/node_modules/@noble/hashes/blake2s.d.ts +20 -0
  534. package/node_modules/@noble/hashes/blake2s.d.ts.map +1 -0
  535. package/node_modules/@noble/hashes/blake2s.js +24 -0
  536. package/node_modules/@noble/hashes/blake2s.js.map +1 -0
  537. package/node_modules/@noble/hashes/blake3.d.ts +54 -0
  538. package/node_modules/@noble/hashes/blake3.d.ts.map +1 -0
  539. package/node_modules/@noble/hashes/blake3.js +255 -0
  540. package/node_modules/@noble/hashes/blake3.js.map +1 -0
  541. package/node_modules/@noble/hashes/crypto.d.ts +2 -0
  542. package/node_modules/@noble/hashes/crypto.d.ts.map +1 -0
  543. package/node_modules/@noble/hashes/crypto.js +5 -0
  544. package/node_modules/@noble/hashes/crypto.js.map +1 -0
  545. package/node_modules/@noble/hashes/cryptoNode.d.ts +2 -0
  546. package/node_modules/@noble/hashes/cryptoNode.d.ts.map +1 -0
  547. package/node_modules/@noble/hashes/cryptoNode.js +18 -0
  548. package/node_modules/@noble/hashes/cryptoNode.js.map +1 -0
  549. package/node_modules/@noble/hashes/eskdf.d.ts +47 -0
  550. package/node_modules/@noble/hashes/eskdf.d.ts.map +1 -0
  551. package/node_modules/@noble/hashes/eskdf.js +166 -0
  552. package/node_modules/@noble/hashes/eskdf.js.map +1 -0
  553. package/node_modules/@noble/hashes/esm/_assert.d.ts +17 -0
  554. package/node_modules/@noble/hashes/esm/_assert.d.ts.map +1 -0
  555. package/node_modules/@noble/hashes/esm/_assert.js +15 -0
  556. package/node_modules/@noble/hashes/esm/_assert.js.map +1 -0
  557. package/node_modules/@noble/hashes/esm/_blake.d.ts +14 -0
  558. package/node_modules/@noble/hashes/esm/_blake.d.ts.map +1 -0
  559. package/node_modules/@noble/hashes/esm/_blake.js +45 -0
  560. package/node_modules/@noble/hashes/esm/_blake.js.map +1 -0
  561. package/node_modules/@noble/hashes/esm/_md.d.ts +51 -0
  562. package/node_modules/@noble/hashes/esm/_md.d.ts.map +1 -0
  563. package/node_modules/@noble/hashes/esm/_md.js +155 -0
  564. package/node_modules/@noble/hashes/esm/_md.js.map +1 -0
  565. package/node_modules/@noble/hashes/esm/_u64.d.ts +55 -0
  566. package/node_modules/@noble/hashes/esm/_u64.d.ts.map +1 -0
  567. package/node_modules/@noble/hashes/esm/_u64.js +67 -0
  568. package/node_modules/@noble/hashes/esm/_u64.js.map +1 -0
  569. package/node_modules/@noble/hashes/esm/argon2.d.ts +32 -0
  570. package/node_modules/@noble/hashes/esm/argon2.d.ts.map +1 -0
  571. package/node_modules/@noble/hashes/esm/argon2.js +392 -0
  572. package/node_modules/@noble/hashes/esm/argon2.js.map +1 -0
  573. package/node_modules/@noble/hashes/esm/blake1.d.ts +106 -0
  574. package/node_modules/@noble/hashes/esm/blake1.d.ts.map +1 -0
  575. package/node_modules/@noble/hashes/esm/blake1.js +452 -0
  576. package/node_modules/@noble/hashes/esm/blake1.js.map +1 -0
  577. package/node_modules/@noble/hashes/esm/blake2.d.ts +116 -0
  578. package/node_modules/@noble/hashes/esm/blake2.d.ts.map +1 -0
  579. package/node_modules/@noble/hashes/esm/blake2.js +413 -0
  580. package/node_modules/@noble/hashes/esm/blake2.js.map +1 -0
  581. package/node_modules/@noble/hashes/esm/blake2b.d.ts +11 -0
  582. package/node_modules/@noble/hashes/esm/blake2b.d.ts.map +1 -0
  583. package/node_modules/@noble/hashes/esm/blake2b.js +11 -0
  584. package/node_modules/@noble/hashes/esm/blake2b.js.map +1 -0
  585. package/node_modules/@noble/hashes/esm/blake2s.d.ts +20 -0
  586. package/node_modules/@noble/hashes/esm/blake2s.d.ts.map +1 -0
  587. package/node_modules/@noble/hashes/esm/blake2s.js +21 -0
  588. package/node_modules/@noble/hashes/esm/blake2s.js.map +1 -0
  589. package/node_modules/@noble/hashes/esm/blake3.d.ts +54 -0
  590. package/node_modules/@noble/hashes/esm/blake3.d.ts.map +1 -0
  591. package/node_modules/@noble/hashes/esm/blake3.js +251 -0
  592. package/node_modules/@noble/hashes/esm/blake3.js.map +1 -0
  593. package/node_modules/@noble/hashes/esm/crypto.d.ts +2 -0
  594. package/node_modules/@noble/hashes/esm/crypto.d.ts.map +1 -0
  595. package/node_modules/@noble/hashes/esm/crypto.js +2 -0
  596. package/node_modules/@noble/hashes/esm/crypto.js.map +1 -0
  597. package/node_modules/@noble/hashes/esm/cryptoNode.d.ts +2 -0
  598. package/node_modules/@noble/hashes/esm/cryptoNode.d.ts.map +1 -0
  599. package/node_modules/@noble/hashes/esm/cryptoNode.js +15 -0
  600. package/node_modules/@noble/hashes/esm/cryptoNode.js.map +1 -0
  601. package/node_modules/@noble/hashes/esm/eskdf.d.ts +47 -0
  602. package/node_modules/@noble/hashes/esm/eskdf.d.ts.map +1 -0
  603. package/node_modules/@noble/hashes/esm/eskdf.js +160 -0
  604. package/node_modules/@noble/hashes/esm/eskdf.js.map +1 -0
  605. package/node_modules/@noble/hashes/esm/hkdf.d.ts +36 -0
  606. package/node_modules/@noble/hashes/esm/hkdf.d.ts.map +1 -0
  607. package/node_modules/@noble/hashes/esm/hkdf.js +82 -0
  608. package/node_modules/@noble/hashes/esm/hkdf.js.map +1 -0
  609. package/node_modules/@noble/hashes/esm/hmac.d.ts +35 -0
  610. package/node_modules/@noble/hashes/esm/hmac.d.ts.map +1 -0
  611. package/node_modules/@noble/hashes/esm/hmac.js +86 -0
  612. package/node_modules/@noble/hashes/esm/hmac.js.map +1 -0
  613. package/node_modules/@noble/hashes/esm/index.d.ts +2 -0
  614. package/node_modules/@noble/hashes/esm/index.d.ts.map +1 -0
  615. package/node_modules/@noble/hashes/esm/index.js +33 -0
  616. package/node_modules/@noble/hashes/esm/index.js.map +1 -0
  617. package/node_modules/@noble/hashes/esm/legacy.d.ts +71 -0
  618. package/node_modules/@noble/hashes/esm/legacy.d.ts.map +1 -0
  619. package/node_modules/@noble/hashes/esm/legacy.js +281 -0
  620. package/node_modules/@noble/hashes/esm/legacy.js.map +1 -0
  621. package/node_modules/@noble/hashes/esm/package.json +10 -0
  622. package/node_modules/@noble/hashes/esm/pbkdf2.d.ts +23 -0
  623. package/node_modules/@noble/hashes/esm/pbkdf2.d.ts.map +1 -0
  624. package/node_modules/@noble/hashes/esm/pbkdf2.js +97 -0
  625. package/node_modules/@noble/hashes/esm/pbkdf2.js.map +1 -0
  626. package/node_modules/@noble/hashes/esm/ripemd160.d.ts +13 -0
  627. package/node_modules/@noble/hashes/esm/ripemd160.d.ts.map +1 -0
  628. package/node_modules/@noble/hashes/esm/ripemd160.js +13 -0
  629. package/node_modules/@noble/hashes/esm/ripemd160.js.map +1 -0
  630. package/node_modules/@noble/hashes/esm/scrypt.d.ts +34 -0
  631. package/node_modules/@noble/hashes/esm/scrypt.d.ts.map +1 -0
  632. package/node_modules/@noble/hashes/esm/scrypt.js +228 -0
  633. package/node_modules/@noble/hashes/esm/scrypt.js.map +1 -0
  634. package/node_modules/@noble/hashes/esm/sha1.d.ts +11 -0
  635. package/node_modules/@noble/hashes/esm/sha1.d.ts.map +1 -0
  636. package/node_modules/@noble/hashes/esm/sha1.js +11 -0
  637. package/node_modules/@noble/hashes/esm/sha1.js.map +1 -0
  638. package/node_modules/@noble/hashes/esm/sha2.d.ts +159 -0
  639. package/node_modules/@noble/hashes/esm/sha2.d.ts.map +1 -0
  640. package/node_modules/@noble/hashes/esm/sha2.js +375 -0
  641. package/node_modules/@noble/hashes/esm/sha2.js.map +1 -0
  642. package/node_modules/@noble/hashes/esm/sha256.d.ts +20 -0
  643. package/node_modules/@noble/hashes/esm/sha256.d.ts.map +1 -0
  644. package/node_modules/@noble/hashes/esm/sha256.js +20 -0
  645. package/node_modules/@noble/hashes/esm/sha256.js.map +1 -0
  646. package/node_modules/@noble/hashes/esm/sha3-addons.d.ts +142 -0
  647. package/node_modules/@noble/hashes/esm/sha3-addons.d.ts.map +1 -0
  648. package/node_modules/@noble/hashes/esm/sha3-addons.js +393 -0
  649. package/node_modules/@noble/hashes/esm/sha3-addons.js.map +1 -0
  650. package/node_modules/@noble/hashes/esm/sha3.d.ts +53 -0
  651. package/node_modules/@noble/hashes/esm/sha3.d.ts.map +1 -0
  652. package/node_modules/@noble/hashes/esm/sha3.js +234 -0
  653. package/node_modules/@noble/hashes/esm/sha3.js.map +1 -0
  654. package/node_modules/@noble/hashes/esm/sha512.d.ts +26 -0
  655. package/node_modules/@noble/hashes/esm/sha512.d.ts.map +1 -0
  656. package/node_modules/@noble/hashes/esm/sha512.js +26 -0
  657. package/node_modules/@noble/hashes/esm/sha512.js.map +1 -0
  658. package/node_modules/@noble/hashes/esm/utils.d.ts +161 -0
  659. package/node_modules/@noble/hashes/esm/utils.d.ts.map +1 -0
  660. package/node_modules/@noble/hashes/esm/utils.js +281 -0
  661. package/node_modules/@noble/hashes/esm/utils.js.map +1 -0
  662. package/node_modules/@noble/hashes/hkdf.d.ts +36 -0
  663. package/node_modules/@noble/hashes/hkdf.d.ts.map +1 -0
  664. package/node_modules/@noble/hashes/hkdf.js +88 -0
  665. package/node_modules/@noble/hashes/hkdf.js.map +1 -0
  666. package/node_modules/@noble/hashes/hmac.d.ts +35 -0
  667. package/node_modules/@noble/hashes/hmac.d.ts.map +1 -0
  668. package/node_modules/@noble/hashes/hmac.js +91 -0
  669. package/node_modules/@noble/hashes/hmac.js.map +1 -0
  670. package/node_modules/@noble/hashes/index.d.ts +1 -0
  671. package/node_modules/@noble/hashes/index.d.ts.map +1 -0
  672. package/node_modules/@noble/hashes/index.js +33 -0
  673. package/node_modules/@noble/hashes/index.js.map +1 -0
  674. package/node_modules/@noble/hashes/legacy.d.ts +71 -0
  675. package/node_modules/@noble/hashes/legacy.d.ts.map +1 -0
  676. package/node_modules/@noble/hashes/legacy.js +287 -0
  677. package/node_modules/@noble/hashes/legacy.js.map +1 -0
  678. package/node_modules/@noble/hashes/package.json +266 -0
  679. package/node_modules/@noble/hashes/pbkdf2.d.ts +23 -0
  680. package/node_modules/@noble/hashes/pbkdf2.d.ts.map +1 -0
  681. package/node_modules/@noble/hashes/pbkdf2.js +101 -0
  682. package/node_modules/@noble/hashes/pbkdf2.js.map +1 -0
  683. package/node_modules/@noble/hashes/ripemd160.d.ts +13 -0
  684. package/node_modules/@noble/hashes/ripemd160.d.ts.map +1 -0
  685. package/node_modules/@noble/hashes/ripemd160.js +16 -0
  686. package/node_modules/@noble/hashes/ripemd160.js.map +1 -0
  687. package/node_modules/@noble/hashes/scrypt.d.ts +34 -0
  688. package/node_modules/@noble/hashes/scrypt.d.ts.map +1 -0
  689. package/node_modules/@noble/hashes/scrypt.js +232 -0
  690. package/node_modules/@noble/hashes/scrypt.js.map +1 -0
  691. package/node_modules/@noble/hashes/sha1.d.ts +11 -0
  692. package/node_modules/@noble/hashes/sha1.d.ts.map +1 -0
  693. package/node_modules/@noble/hashes/sha1.js +14 -0
  694. package/node_modules/@noble/hashes/sha1.js.map +1 -0
  695. package/node_modules/@noble/hashes/sha2.d.ts +159 -0
  696. package/node_modules/@noble/hashes/sha2.d.ts.map +1 -0
  697. package/node_modules/@noble/hashes/sha2.js +384 -0
  698. package/node_modules/@noble/hashes/sha2.js.map +1 -0
  699. package/node_modules/@noble/hashes/sha256.d.ts +20 -0
  700. package/node_modules/@noble/hashes/sha256.d.ts.map +1 -0
  701. package/node_modules/@noble/hashes/sha256.js +23 -0
  702. package/node_modules/@noble/hashes/sha256.js.map +1 -0
  703. package/node_modules/@noble/hashes/sha3-addons.d.ts +142 -0
  704. package/node_modules/@noble/hashes/sha3-addons.d.ts.map +1 -0
  705. package/node_modules/@noble/hashes/sha3-addons.js +402 -0
  706. package/node_modules/@noble/hashes/sha3-addons.js.map +1 -0
  707. package/node_modules/@noble/hashes/sha3.d.ts +53 -0
  708. package/node_modules/@noble/hashes/sha3.d.ts.map +1 -0
  709. package/node_modules/@noble/hashes/sha3.js +239 -0
  710. package/node_modules/@noble/hashes/sha3.js.map +1 -0
  711. package/node_modules/@noble/hashes/sha512.d.ts +26 -0
  712. package/node_modules/@noble/hashes/sha512.d.ts.map +1 -0
  713. package/node_modules/@noble/hashes/sha512.js +29 -0
  714. package/node_modules/@noble/hashes/sha512.js.map +1 -0
  715. package/node_modules/@noble/hashes/src/_assert.ts +22 -0
  716. package/node_modules/@noble/hashes/src/_blake.ts +50 -0
  717. package/node_modules/@noble/hashes/src/_md.ts +176 -0
  718. package/node_modules/@noble/hashes/src/_u64.ts +91 -0
  719. package/node_modules/@noble/hashes/src/argon2.ts +497 -0
  720. package/node_modules/@noble/hashes/src/blake1.ts +534 -0
  721. package/node_modules/@noble/hashes/src/blake2.ts +486 -0
  722. package/node_modules/@noble/hashes/src/blake2b.ts +10 -0
  723. package/node_modules/@noble/hashes/src/blake2s.ts +20 -0
  724. package/node_modules/@noble/hashes/src/blake3.ts +272 -0
  725. package/node_modules/@noble/hashes/src/crypto.ts +9 -0
  726. package/node_modules/@noble/hashes/src/cryptoNode.ts +15 -0
  727. package/node_modules/@noble/hashes/src/eskdf.ts +187 -0
  728. package/node_modules/@noble/hashes/src/hkdf.ts +88 -0
  729. package/node_modules/@noble/hashes/src/hmac.ts +94 -0
  730. package/node_modules/@noble/hashes/src/index.ts +31 -0
  731. package/node_modules/@noble/hashes/src/legacy.ts +293 -0
  732. package/node_modules/@noble/hashes/src/pbkdf2.ts +122 -0
  733. package/node_modules/@noble/hashes/src/ripemd160.ts +12 -0
  734. package/node_modules/@noble/hashes/src/scrypt.ts +257 -0
  735. package/node_modules/@noble/hashes/src/sha1.ts +10 -0
  736. package/node_modules/@noble/hashes/src/sha2.ts +402 -0
  737. package/node_modules/@noble/hashes/src/sha256.ts +24 -0
  738. package/node_modules/@noble/hashes/src/sha3-addons.ts +499 -0
  739. package/node_modules/@noble/hashes/src/sha3.ts +258 -0
  740. package/node_modules/@noble/hashes/src/sha512.ts +34 -0
  741. package/node_modules/@noble/hashes/src/utils.ts +395 -0
  742. package/node_modules/@noble/hashes/utils.d.ts +161 -0
  743. package/node_modules/@noble/hashes/utils.d.ts.map +1 -0
  744. package/node_modules/@noble/hashes/utils.js +313 -0
  745. package/node_modules/@noble/hashes/utils.js.map +1 -0
  746. package/node_modules/@solana/buffer-layout/LICENSE +21 -0
  747. package/node_modules/@solana/buffer-layout/README.md +403 -0
  748. package/node_modules/@solana/buffer-layout/lib/Layout.d.ts +1191 -0
  749. package/node_modules/@solana/buffer-layout/lib/Layout.js +2390 -0
  750. package/node_modules/@solana/buffer-layout/lib/Layout.js.map +1 -0
  751. package/node_modules/@solana/buffer-layout/package.json +55 -0
  752. package/node_modules/@solana/codecs-core/LICENSE +20 -0
  753. package/node_modules/@solana/codecs-core/README.md +662 -0
  754. package/node_modules/@solana/codecs-core/dist/index.browser.cjs +504 -0
  755. package/node_modules/@solana/codecs-core/dist/index.browser.cjs.map +1 -0
  756. package/node_modules/@solana/codecs-core/dist/index.browser.mjs +460 -0
  757. package/node_modules/@solana/codecs-core/dist/index.browser.mjs.map +1 -0
  758. package/node_modules/@solana/codecs-core/dist/index.native.mjs +460 -0
  759. package/node_modules/@solana/codecs-core/dist/index.native.mjs.map +1 -0
  760. package/node_modules/@solana/codecs-core/dist/index.node.cjs +504 -0
  761. package/node_modules/@solana/codecs-core/dist/index.node.cjs.map +1 -0
  762. package/node_modules/@solana/codecs-core/dist/index.node.mjs +460 -0
  763. package/node_modules/@solana/codecs-core/dist/index.node.mjs.map +1 -0
  764. package/node_modules/@solana/codecs-core/dist/types/add-codec-sentinel.d.ts +70 -0
  765. package/node_modules/@solana/codecs-core/dist/types/add-codec-sentinel.d.ts.map +1 -0
  766. package/node_modules/@solana/codecs-core/dist/types/add-codec-size-prefix.d.ts +67 -0
  767. package/node_modules/@solana/codecs-core/dist/types/add-codec-size-prefix.d.ts.map +1 -0
  768. package/node_modules/@solana/codecs-core/dist/types/assertions.d.ts +62 -0
  769. package/node_modules/@solana/codecs-core/dist/types/assertions.d.ts.map +1 -0
  770. package/node_modules/@solana/codecs-core/dist/types/bytes.d.ts +92 -0
  771. package/node_modules/@solana/codecs-core/dist/types/bytes.d.ts.map +1 -0
  772. package/node_modules/@solana/codecs-core/dist/types/codec.d.ts +827 -0
  773. package/node_modules/@solana/codecs-core/dist/types/codec.d.ts.map +1 -0
  774. package/node_modules/@solana/codecs-core/dist/types/combine-codec.d.ts +75 -0
  775. package/node_modules/@solana/codecs-core/dist/types/combine-codec.d.ts.map +1 -0
  776. package/node_modules/@solana/codecs-core/dist/types/fix-codec-size.d.ts +111 -0
  777. package/node_modules/@solana/codecs-core/dist/types/fix-codec-size.d.ts.map +1 -0
  778. package/node_modules/@solana/codecs-core/dist/types/index.d.ts +667 -0
  779. package/node_modules/@solana/codecs-core/dist/types/index.d.ts.map +1 -0
  780. package/node_modules/@solana/codecs-core/dist/types/offset-codec.d.ts +328 -0
  781. package/node_modules/@solana/codecs-core/dist/types/offset-codec.d.ts.map +1 -0
  782. package/node_modules/@solana/codecs-core/dist/types/pad-codec.d.ts +162 -0
  783. package/node_modules/@solana/codecs-core/dist/types/pad-codec.d.ts.map +1 -0
  784. package/node_modules/@solana/codecs-core/dist/types/readonly-uint8array.d.ts +19 -0
  785. package/node_modules/@solana/codecs-core/dist/types/readonly-uint8array.d.ts.map +1 -0
  786. package/node_modules/@solana/codecs-core/dist/types/resize-codec.d.ts +129 -0
  787. package/node_modules/@solana/codecs-core/dist/types/resize-codec.d.ts.map +1 -0
  788. package/node_modules/@solana/codecs-core/dist/types/reverse-codec.d.ts +92 -0
  789. package/node_modules/@solana/codecs-core/dist/types/reverse-codec.d.ts.map +1 -0
  790. package/node_modules/@solana/codecs-core/dist/types/transform-codec.d.ts +114 -0
  791. package/node_modules/@solana/codecs-core/dist/types/transform-codec.d.ts.map +1 -0
  792. package/node_modules/@solana/codecs-core/package.json +83 -0
  793. package/node_modules/@solana/codecs-numbers/LICENSE +20 -0
  794. package/node_modules/@solana/codecs-numbers/README.md +130 -0
  795. package/node_modules/@solana/codecs-numbers/dist/index.browser.cjs +331 -0
  796. package/node_modules/@solana/codecs-numbers/dist/index.browser.cjs.map +1 -0
  797. package/node_modules/@solana/codecs-numbers/dist/index.browser.mjs +289 -0
  798. package/node_modules/@solana/codecs-numbers/dist/index.browser.mjs.map +1 -0
  799. package/node_modules/@solana/codecs-numbers/dist/index.native.mjs +289 -0
  800. package/node_modules/@solana/codecs-numbers/dist/index.native.mjs.map +1 -0
  801. package/node_modules/@solana/codecs-numbers/dist/index.node.cjs +331 -0
  802. package/node_modules/@solana/codecs-numbers/dist/index.node.cjs.map +1 -0
  803. package/node_modules/@solana/codecs-numbers/dist/index.node.mjs +289 -0
  804. package/node_modules/@solana/codecs-numbers/dist/index.node.mjs.map +1 -0
  805. package/node_modules/@solana/codecs-numbers/dist/types/assertions.d.ts +27 -0
  806. package/node_modules/@solana/codecs-numbers/dist/types/assertions.d.ts.map +1 -0
  807. package/node_modules/@solana/codecs-numbers/dist/types/common.d.ts +84 -0
  808. package/node_modules/@solana/codecs-numbers/dist/types/common.d.ts.map +1 -0
  809. package/node_modules/@solana/codecs-numbers/dist/types/f32.d.ts +87 -0
  810. package/node_modules/@solana/codecs-numbers/dist/types/f32.d.ts.map +1 -0
  811. package/node_modules/@solana/codecs-numbers/dist/types/f64.d.ts +87 -0
  812. package/node_modules/@solana/codecs-numbers/dist/types/f64.d.ts.map +1 -0
  813. package/node_modules/@solana/codecs-numbers/dist/types/i128.d.ts +91 -0
  814. package/node_modules/@solana/codecs-numbers/dist/types/i128.d.ts.map +1 -0
  815. package/node_modules/@solana/codecs-numbers/dist/types/i16.d.ts +87 -0
  816. package/node_modules/@solana/codecs-numbers/dist/types/i16.d.ts.map +1 -0
  817. package/node_modules/@solana/codecs-numbers/dist/types/i32.d.ts +87 -0
  818. package/node_modules/@solana/codecs-numbers/dist/types/i32.d.ts.map +1 -0
  819. package/node_modules/@solana/codecs-numbers/dist/types/i64.d.ts +90 -0
  820. package/node_modules/@solana/codecs-numbers/dist/types/i64.d.ts.map +1 -0
  821. package/node_modules/@solana/codecs-numbers/dist/types/i8.d.ts +75 -0
  822. package/node_modules/@solana/codecs-numbers/dist/types/i8.d.ts.map +1 -0
  823. package/node_modules/@solana/codecs-numbers/dist/types/index.d.ts +26 -0
  824. package/node_modules/@solana/codecs-numbers/dist/types/index.d.ts.map +1 -0
  825. package/node_modules/@solana/codecs-numbers/dist/types/short-u16.d.ts +96 -0
  826. package/node_modules/@solana/codecs-numbers/dist/types/short-u16.d.ts.map +1 -0
  827. package/node_modules/@solana/codecs-numbers/dist/types/u128.d.ts +87 -0
  828. package/node_modules/@solana/codecs-numbers/dist/types/u128.d.ts.map +1 -0
  829. package/node_modules/@solana/codecs-numbers/dist/types/u16.d.ts +85 -0
  830. package/node_modules/@solana/codecs-numbers/dist/types/u16.d.ts.map +1 -0
  831. package/node_modules/@solana/codecs-numbers/dist/types/u32.d.ts +85 -0
  832. package/node_modules/@solana/codecs-numbers/dist/types/u32.d.ts.map +1 -0
  833. package/node_modules/@solana/codecs-numbers/dist/types/u64.d.ts +88 -0
  834. package/node_modules/@solana/codecs-numbers/dist/types/u64.d.ts.map +1 -0
  835. package/node_modules/@solana/codecs-numbers/dist/types/u8.d.ts +71 -0
  836. package/node_modules/@solana/codecs-numbers/dist/types/u8.d.ts.map +1 -0
  837. package/node_modules/@solana/codecs-numbers/dist/types/utils.d.ts +18 -0
  838. package/node_modules/@solana/codecs-numbers/dist/types/utils.d.ts.map +1 -0
  839. package/node_modules/@solana/codecs-numbers/package.json +83 -0
  840. package/node_modules/@solana/errors/LICENSE +20 -0
  841. package/node_modules/@solana/errors/README.md +87 -0
  842. package/node_modules/@solana/errors/bin/cli.mjs +7 -0
  843. package/node_modules/@solana/errors/dist/cli.mjs +574 -0
  844. package/node_modules/@solana/errors/dist/index.browser.cjs +1090 -0
  845. package/node_modules/@solana/errors/dist/index.browser.cjs.map +1 -0
  846. package/node_modules/@solana/errors/dist/index.browser.mjs +856 -0
  847. package/node_modules/@solana/errors/dist/index.browser.mjs.map +1 -0
  848. package/node_modules/@solana/errors/dist/index.native.mjs +856 -0
  849. package/node_modules/@solana/errors/dist/index.native.mjs.map +1 -0
  850. package/node_modules/@solana/errors/dist/index.node.cjs +1090 -0
  851. package/node_modules/@solana/errors/dist/index.node.cjs.map +1 -0
  852. package/node_modules/@solana/errors/dist/index.node.mjs +856 -0
  853. package/node_modules/@solana/errors/dist/index.node.mjs.map +1 -0
  854. package/node_modules/@solana/errors/dist/types/codes.d.ts +277 -0
  855. package/node_modules/@solana/errors/dist/types/codes.d.ts.map +1 -0
  856. package/node_modules/@solana/errors/dist/types/context.d.ts +404 -0
  857. package/node_modules/@solana/errors/dist/types/context.d.ts.map +1 -0
  858. package/node_modules/@solana/errors/dist/types/error.d.ts +75 -0
  859. package/node_modules/@solana/errors/dist/types/error.d.ts.map +1 -0
  860. package/node_modules/@solana/errors/dist/types/index.d.ts +72 -0
  861. package/node_modules/@solana/errors/dist/types/index.d.ts.map +1 -0
  862. package/node_modules/@solana/errors/dist/types/instruction-error.d.ts +9 -0
  863. package/node_modules/@solana/errors/dist/types/instruction-error.d.ts.map +1 -0
  864. package/node_modules/@solana/errors/dist/types/json-rpc-error.d.ts +52 -0
  865. package/node_modules/@solana/errors/dist/types/json-rpc-error.d.ts.map +1 -0
  866. package/node_modules/@solana/errors/dist/types/message-formatter.d.ts +4 -0
  867. package/node_modules/@solana/errors/dist/types/message-formatter.d.ts.map +1 -0
  868. package/node_modules/@solana/errors/dist/types/messages.d.ts +16 -0
  869. package/node_modules/@solana/errors/dist/types/messages.d.ts.map +1 -0
  870. package/node_modules/@solana/errors/dist/types/rpc-enum-errors.d.ts +31 -0
  871. package/node_modules/@solana/errors/dist/types/rpc-enum-errors.d.ts.map +1 -0
  872. package/node_modules/@solana/errors/dist/types/stack-trace.d.ts +2 -0
  873. package/node_modules/@solana/errors/dist/types/stack-trace.d.ts.map +1 -0
  874. package/node_modules/@solana/errors/dist/types/transaction-error.d.ts +5 -0
  875. package/node_modules/@solana/errors/dist/types/transaction-error.d.ts.map +1 -0
  876. package/node_modules/@solana/errors/package.json +84 -0
  877. package/node_modules/@solana/web3.js/LICENSE +20 -0
  878. package/node_modules/@solana/web3.js/README.md +145 -0
  879. package/node_modules/@solana/web3.js/lib/index.browser.cjs.js +10564 -0
  880. package/node_modules/@solana/web3.js/lib/index.browser.cjs.js.map +1 -0
  881. package/node_modules/@solana/web3.js/lib/index.browser.esm.js +10463 -0
  882. package/node_modules/@solana/web3.js/lib/index.browser.esm.js.map +1 -0
  883. package/node_modules/@solana/web3.js/lib/index.cjs.js +11313 -0
  884. package/node_modules/@solana/web3.js/lib/index.cjs.js.map +1 -0
  885. package/node_modules/@solana/web3.js/lib/index.d.ts +4025 -0
  886. package/node_modules/@solana/web3.js/lib/index.esm.js +11208 -0
  887. package/node_modules/@solana/web3.js/lib/index.esm.js.map +1 -0
  888. package/node_modules/@solana/web3.js/lib/index.iife.js +26085 -0
  889. package/node_modules/@solana/web3.js/lib/index.iife.js.map +1 -0
  890. package/node_modules/@solana/web3.js/lib/index.iife.min.js +20 -0
  891. package/node_modules/@solana/web3.js/lib/index.iife.min.js.map +1 -0
  892. package/node_modules/@solana/web3.js/lib/index.native.js +10564 -0
  893. package/node_modules/@solana/web3.js/lib/index.native.js.map +1 -0
  894. package/node_modules/@solana/web3.js/node_modules/base-x/LICENSE.md +22 -0
  895. package/node_modules/@solana/web3.js/node_modules/base-x/README.md +67 -0
  896. package/node_modules/@solana/web3.js/node_modules/base-x/package.json +49 -0
  897. package/node_modules/@solana/web3.js/node_modules/base-x/src/index.d.ts +10 -0
  898. package/node_modules/@solana/web3.js/node_modules/base-x/src/index.js +123 -0
  899. package/node_modules/@solana/web3.js/node_modules/borsh/LICENSE-APACHE +201 -0
  900. package/node_modules/@solana/web3.js/node_modules/borsh/LICENSE-MIT.txt +23 -0
  901. package/node_modules/@solana/web3.js/node_modules/borsh/README.md +83 -0
  902. package/node_modules/@solana/web3.js/node_modules/borsh/lib/index.d.ts +52 -0
  903. package/node_modules/@solana/web3.js/node_modules/borsh/lib/index.js +440 -0
  904. package/node_modules/@solana/web3.js/node_modules/borsh/package.json +61 -0
  905. package/node_modules/@solana/web3.js/node_modules/bs58/CHANGELOG.md +61 -0
  906. package/node_modules/@solana/web3.js/node_modules/bs58/README.md +71 -0
  907. package/node_modules/@solana/web3.js/node_modules/bs58/index.js +4 -0
  908. package/node_modules/@solana/web3.js/node_modules/bs58/package.json +37 -0
  909. package/node_modules/@solana/web3.js/package.json +75 -0
  910. package/node_modules/@solana/web3.js/src/__forks__/browser/fetch-impl.ts +4 -0
  911. package/node_modules/@solana/web3.js/src/__forks__/react-native/fetch-impl.ts +4 -0
  912. package/node_modules/@solana/web3.js/src/account-data.ts +39 -0
  913. package/node_modules/@solana/web3.js/src/account.ts +55 -0
  914. package/node_modules/@solana/web3.js/src/blockhash.ts +4 -0
  915. package/node_modules/@solana/web3.js/src/bpf-loader-deprecated.ts +5 -0
  916. package/node_modules/@solana/web3.js/src/bpf-loader.ts +50 -0
  917. package/node_modules/@solana/web3.js/src/connection.ts +6961 -0
  918. package/node_modules/@solana/web3.js/src/epoch-schedule.ts +102 -0
  919. package/node_modules/@solana/web3.js/src/errors.ts +133 -0
  920. package/node_modules/@solana/web3.js/src/fee-calculator.ts +18 -0
  921. package/node_modules/@solana/web3.js/src/fetch-impl.ts +16 -0
  922. package/node_modules/@solana/web3.js/src/index.ts +24 -0
  923. package/node_modules/@solana/web3.js/src/instruction.ts +58 -0
  924. package/node_modules/@solana/web3.js/src/keypair.ts +102 -0
  925. package/node_modules/@solana/web3.js/src/layout.ts +188 -0
  926. package/node_modules/@solana/web3.js/src/loader.ts +267 -0
  927. package/node_modules/@solana/web3.js/src/message/account-keys.ts +79 -0
  928. package/node_modules/@solana/web3.js/src/message/compiled-keys.ts +165 -0
  929. package/node_modules/@solana/web3.js/src/message/index.ts +47 -0
  930. package/node_modules/@solana/web3.js/src/message/legacy.ts +323 -0
  931. package/node_modules/@solana/web3.js/src/message/v0.ts +513 -0
  932. package/node_modules/@solana/web3.js/src/message/versioned.ts +36 -0
  933. package/node_modules/@solana/web3.js/src/nonce-account.ts +82 -0
  934. package/node_modules/@solana/web3.js/src/programs/address-lookup-table/index.ts +438 -0
  935. package/node_modules/@solana/web3.js/src/programs/address-lookup-table/state.ts +84 -0
  936. package/node_modules/@solana/web3.js/src/programs/compute-budget.ts +281 -0
  937. package/node_modules/@solana/web3.js/src/programs/ed25519.ts +157 -0
  938. package/node_modules/@solana/web3.js/src/programs/index.ts +7 -0
  939. package/node_modules/@solana/web3.js/src/programs/secp256k1.ts +228 -0
  940. package/node_modules/@solana/web3.js/src/programs/stake.ts +952 -0
  941. package/node_modules/@solana/web3.js/src/programs/system.ts +1048 -0
  942. package/node_modules/@solana/web3.js/src/programs/vote.ts +586 -0
  943. package/node_modules/@solana/web3.js/src/publickey.ts +259 -0
  944. package/node_modules/@solana/web3.js/src/rpc-websocket.ts +75 -0
  945. package/node_modules/@solana/web3.js/src/sysvar.ts +37 -0
  946. package/node_modules/@solana/web3.js/src/timing.ts +23 -0
  947. package/node_modules/@solana/web3.js/src/transaction/constants.ts +12 -0
  948. package/node_modules/@solana/web3.js/src/transaction/expiry-custom-errors.ts +48 -0
  949. package/node_modules/@solana/web3.js/src/transaction/index.ts +5 -0
  950. package/node_modules/@solana/web3.js/src/transaction/legacy.ts +970 -0
  951. package/node_modules/@solana/web3.js/src/transaction/message.ts +140 -0
  952. package/node_modules/@solana/web3.js/src/transaction/versioned.ts +127 -0
  953. package/node_modules/@solana/web3.js/src/utils/assert.ts +8 -0
  954. package/node_modules/@solana/web3.js/src/utils/bigint.ts +24 -0
  955. package/node_modules/@solana/web3.js/src/utils/borsh-schema.ts +38 -0
  956. package/node_modules/@solana/web3.js/src/utils/cluster.ts +35 -0
  957. package/node_modules/@solana/web3.js/src/utils/ed25519.ts +43 -0
  958. package/node_modules/@solana/web3.js/src/utils/guarded-array-utils.ts +34 -0
  959. package/node_modules/@solana/web3.js/src/utils/index.ts +5 -0
  960. package/node_modules/@solana/web3.js/src/utils/makeWebsocketUrl.ts +26 -0
  961. package/node_modules/@solana/web3.js/src/utils/promise-timeout.ts +14 -0
  962. package/node_modules/@solana/web3.js/src/utils/secp256k1.ts +11 -0
  963. package/node_modules/@solana/web3.js/src/utils/send-and-confirm-raw-transaction.ts +110 -0
  964. package/node_modules/@solana/web3.js/src/utils/send-and-confirm-transaction.ts +106 -0
  965. package/node_modules/@solana/web3.js/src/utils/shortvec-encoding.ts +28 -0
  966. package/node_modules/@solana/web3.js/src/utils/sleep.ts +4 -0
  967. package/node_modules/@solana/web3.js/src/utils/to-buffer.ts +11 -0
  968. package/node_modules/@solana/web3.js/src/validator-info.ts +108 -0
  969. package/node_modules/@solana/web3.js/src/vote-account.ts +236 -0
  970. package/node_modules/@swc/helpers/LICENSE +201 -0
  971. package/node_modules/@swc/helpers/_/_apply_decorated_descriptor/package.json +4 -0
  972. package/node_modules/@swc/helpers/_/_apply_decs_2203_r/package.json +4 -0
  973. package/node_modules/@swc/helpers/_/_array_like_to_array/package.json +4 -0
  974. package/node_modules/@swc/helpers/_/_array_with_holes/package.json +4 -0
  975. package/node_modules/@swc/helpers/_/_array_without_holes/package.json +4 -0
  976. package/node_modules/@swc/helpers/_/_assert_this_initialized/package.json +4 -0
  977. package/node_modules/@swc/helpers/_/_async_generator/package.json +4 -0
  978. package/node_modules/@swc/helpers/_/_async_generator_delegate/package.json +4 -0
  979. package/node_modules/@swc/helpers/_/_async_iterator/package.json +4 -0
  980. package/node_modules/@swc/helpers/_/_async_to_generator/package.json +4 -0
  981. package/node_modules/@swc/helpers/_/_await_async_generator/package.json +4 -0
  982. package/node_modules/@swc/helpers/_/_await_value/package.json +4 -0
  983. package/node_modules/@swc/helpers/_/_call_super/package.json +4 -0
  984. package/node_modules/@swc/helpers/_/_check_private_redeclaration/package.json +4 -0
  985. package/node_modules/@swc/helpers/_/_class_apply_descriptor_destructure/package.json +4 -0
  986. package/node_modules/@swc/helpers/_/_class_apply_descriptor_get/package.json +4 -0
  987. package/node_modules/@swc/helpers/_/_class_apply_descriptor_set/package.json +4 -0
  988. package/node_modules/@swc/helpers/_/_class_apply_descriptor_update/package.json +4 -0
  989. package/node_modules/@swc/helpers/_/_class_call_check/package.json +4 -0
  990. package/node_modules/@swc/helpers/_/_class_check_private_static_access/package.json +4 -0
  991. package/node_modules/@swc/helpers/_/_class_check_private_static_field_descriptor/package.json +4 -0
  992. package/node_modules/@swc/helpers/_/_class_extract_field_descriptor/package.json +4 -0
  993. package/node_modules/@swc/helpers/_/_class_name_tdz_error/package.json +4 -0
  994. package/node_modules/@swc/helpers/_/_class_private_field_destructure/package.json +4 -0
  995. package/node_modules/@swc/helpers/_/_class_private_field_get/package.json +4 -0
  996. package/node_modules/@swc/helpers/_/_class_private_field_init/package.json +4 -0
  997. package/node_modules/@swc/helpers/_/_class_private_field_loose_base/package.json +4 -0
  998. package/node_modules/@swc/helpers/_/_class_private_field_loose_key/package.json +4 -0
  999. package/node_modules/@swc/helpers/_/_class_private_field_set/package.json +4 -0
  1000. package/node_modules/@swc/helpers/_/_class_private_field_update/package.json +4 -0
  1001. package/node_modules/@swc/helpers/_/_class_private_method_get/package.json +4 -0
  1002. package/node_modules/@swc/helpers/_/_class_private_method_init/package.json +4 -0
  1003. package/node_modules/@swc/helpers/_/_class_private_method_set/package.json +4 -0
  1004. package/node_modules/@swc/helpers/_/_class_static_private_field_destructure/package.json +4 -0
  1005. package/node_modules/@swc/helpers/_/_class_static_private_field_spec_get/package.json +4 -0
  1006. package/node_modules/@swc/helpers/_/_class_static_private_field_spec_set/package.json +4 -0
  1007. package/node_modules/@swc/helpers/_/_class_static_private_field_update/package.json +4 -0
  1008. package/node_modules/@swc/helpers/_/_class_static_private_method_get/package.json +4 -0
  1009. package/node_modules/@swc/helpers/_/_construct/package.json +4 -0
  1010. package/node_modules/@swc/helpers/_/_create_class/package.json +4 -0
  1011. package/node_modules/@swc/helpers/_/_create_for_of_iterator_helper_loose/package.json +4 -0
  1012. package/node_modules/@swc/helpers/_/_create_super/package.json +4 -0
  1013. package/node_modules/@swc/helpers/_/_decorate/package.json +4 -0
  1014. package/node_modules/@swc/helpers/_/_defaults/package.json +4 -0
  1015. package/node_modules/@swc/helpers/_/_define_enumerable_properties/package.json +4 -0
  1016. package/node_modules/@swc/helpers/_/_define_property/package.json +4 -0
  1017. package/node_modules/@swc/helpers/_/_dispose/package.json +4 -0
  1018. package/node_modules/@swc/helpers/_/_export_star/package.json +4 -0
  1019. package/node_modules/@swc/helpers/_/_extends/package.json +4 -0
  1020. package/node_modules/@swc/helpers/_/_get/package.json +4 -0
  1021. package/node_modules/@swc/helpers/_/_get_prototype_of/package.json +4 -0
  1022. package/node_modules/@swc/helpers/_/_identity/package.json +4 -0
  1023. package/node_modules/@swc/helpers/_/_inherits/package.json +4 -0
  1024. package/node_modules/@swc/helpers/_/_inherits_loose/package.json +4 -0
  1025. package/node_modules/@swc/helpers/_/_initializer_define_property/package.json +4 -0
  1026. package/node_modules/@swc/helpers/_/_initializer_warning_helper/package.json +4 -0
  1027. package/node_modules/@swc/helpers/_/_instanceof/package.json +4 -0
  1028. package/node_modules/@swc/helpers/_/_interop_require_default/package.json +4 -0
  1029. package/node_modules/@swc/helpers/_/_interop_require_wildcard/package.json +4 -0
  1030. package/node_modules/@swc/helpers/_/_is_native_function/package.json +4 -0
  1031. package/node_modules/@swc/helpers/_/_is_native_reflect_construct/package.json +4 -0
  1032. package/node_modules/@swc/helpers/_/_iterable_to_array/package.json +4 -0
  1033. package/node_modules/@swc/helpers/_/_iterable_to_array_limit/package.json +4 -0
  1034. package/node_modules/@swc/helpers/_/_iterable_to_array_limit_loose/package.json +4 -0
  1035. package/node_modules/@swc/helpers/_/_jsx/package.json +4 -0
  1036. package/node_modules/@swc/helpers/_/_new_arrow_check/package.json +4 -0
  1037. package/node_modules/@swc/helpers/_/_non_iterable_rest/package.json +4 -0
  1038. package/node_modules/@swc/helpers/_/_non_iterable_spread/package.json +4 -0
  1039. package/node_modules/@swc/helpers/_/_object_destructuring_empty/package.json +4 -0
  1040. package/node_modules/@swc/helpers/_/_object_spread/package.json +4 -0
  1041. package/node_modules/@swc/helpers/_/_object_spread_props/package.json +4 -0
  1042. package/node_modules/@swc/helpers/_/_object_without_properties/package.json +4 -0
  1043. package/node_modules/@swc/helpers/_/_object_without_properties_loose/package.json +4 -0
  1044. package/node_modules/@swc/helpers/_/_overload_yield/package.json +4 -0
  1045. package/node_modules/@swc/helpers/_/_possible_constructor_return/package.json +4 -0
  1046. package/node_modules/@swc/helpers/_/_read_only_error/package.json +4 -0
  1047. package/node_modules/@swc/helpers/_/_set/package.json +4 -0
  1048. package/node_modules/@swc/helpers/_/_set_prototype_of/package.json +4 -0
  1049. package/node_modules/@swc/helpers/_/_skip_first_generator_next/package.json +4 -0
  1050. package/node_modules/@swc/helpers/_/_sliced_to_array/package.json +4 -0
  1051. package/node_modules/@swc/helpers/_/_sliced_to_array_loose/package.json +4 -0
  1052. package/node_modules/@swc/helpers/_/_super_prop_base/package.json +4 -0
  1053. package/node_modules/@swc/helpers/_/_tagged_template_literal/package.json +4 -0
  1054. package/node_modules/@swc/helpers/_/_tagged_template_literal_loose/package.json +4 -0
  1055. package/node_modules/@swc/helpers/_/_throw/package.json +4 -0
  1056. package/node_modules/@swc/helpers/_/_to_array/package.json +4 -0
  1057. package/node_modules/@swc/helpers/_/_to_consumable_array/package.json +4 -0
  1058. package/node_modules/@swc/helpers/_/_to_primitive/package.json +4 -0
  1059. package/node_modules/@swc/helpers/_/_to_property_key/package.json +4 -0
  1060. package/node_modules/@swc/helpers/_/_ts_add_disposable_resource/package.json +4 -0
  1061. package/node_modules/@swc/helpers/_/_ts_decorate/package.json +4 -0
  1062. package/node_modules/@swc/helpers/_/_ts_dispose_resources/package.json +4 -0
  1063. package/node_modules/@swc/helpers/_/_ts_generator/package.json +4 -0
  1064. package/node_modules/@swc/helpers/_/_ts_metadata/package.json +4 -0
  1065. package/node_modules/@swc/helpers/_/_ts_param/package.json +4 -0
  1066. package/node_modules/@swc/helpers/_/_ts_rewrite_relative_import_extension/package.json +4 -0
  1067. package/node_modules/@swc/helpers/_/_ts_values/package.json +4 -0
  1068. package/node_modules/@swc/helpers/_/_type_of/package.json +4 -0
  1069. package/node_modules/@swc/helpers/_/_unsupported_iterable_to_array/package.json +4 -0
  1070. package/node_modules/@swc/helpers/_/_update/package.json +4 -0
  1071. package/node_modules/@swc/helpers/_/_using/package.json +4 -0
  1072. package/node_modules/@swc/helpers/_/_using_ctx/package.json +4 -0
  1073. package/node_modules/@swc/helpers/_/_wrap_async_generator/package.json +4 -0
  1074. package/node_modules/@swc/helpers/_/_wrap_native_super/package.json +4 -0
  1075. package/node_modules/@swc/helpers/_/_write_only_error/package.json +4 -0
  1076. package/node_modules/@swc/helpers/_/index/package.json +4 -0
  1077. package/node_modules/@swc/helpers/cjs/_apply_decorated_descriptor.cjs +35 -0
  1078. package/node_modules/@swc/helpers/cjs/_apply_decs_2203_r.cjs +550 -0
  1079. package/node_modules/@swc/helpers/cjs/_array_like_to_array.cjs +10 -0
  1080. package/node_modules/@swc/helpers/cjs/_array_with_holes.cjs +6 -0
  1081. package/node_modules/@swc/helpers/cjs/_array_without_holes.cjs +8 -0
  1082. package/node_modules/@swc/helpers/cjs/_assert_this_initialized.cjs +8 -0
  1083. package/node_modules/@swc/helpers/cjs/_async_generator.cjs +76 -0
  1084. package/node_modules/@swc/helpers/cjs/_async_generator_delegate.cjs +53 -0
  1085. package/node_modules/@swc/helpers/cjs/_async_iterator.cjs +46 -0
  1086. package/node_modules/@swc/helpers/cjs/_async_to_generator.cjs +33 -0
  1087. package/node_modules/@swc/helpers/cjs/_await_async_generator.cjs +8 -0
  1088. package/node_modules/@swc/helpers/cjs/_await_value.cjs +6 -0
  1089. package/node_modules/@swc/helpers/cjs/_call_super.cjs +19 -0
  1090. package/node_modules/@swc/helpers/cjs/_check_private_redeclaration.cjs +8 -0
  1091. package/node_modules/@swc/helpers/cjs/_class_apply_descriptor_destructure.cjs +25 -0
  1092. package/node_modules/@swc/helpers/cjs/_class_apply_descriptor_get.cjs +8 -0
  1093. package/node_modules/@swc/helpers/cjs/_class_apply_descriptor_set.cjs +15 -0
  1094. package/node_modules/@swc/helpers/cjs/_class_apply_descriptor_update.cjs +30 -0
  1095. package/node_modules/@swc/helpers/cjs/_class_call_check.cjs +6 -0
  1096. package/node_modules/@swc/helpers/cjs/_class_check_private_static_access.cjs +6 -0
  1097. package/node_modules/@swc/helpers/cjs/_class_check_private_static_field_descriptor.cjs +8 -0
  1098. package/node_modules/@swc/helpers/cjs/_class_extract_field_descriptor.cjs +8 -0
  1099. package/node_modules/@swc/helpers/cjs/_class_name_tdz_error.cjs +6 -0
  1100. package/node_modules/@swc/helpers/cjs/_class_private_field_destructure.cjs +10 -0
  1101. package/node_modules/@swc/helpers/cjs/_class_private_field_get.cjs +10 -0
  1102. package/node_modules/@swc/helpers/cjs/_class_private_field_init.cjs +9 -0
  1103. package/node_modules/@swc/helpers/cjs/_class_private_field_loose_base.cjs +10 -0
  1104. package/node_modules/@swc/helpers/cjs/_class_private_field_loose_key.cjs +8 -0
  1105. package/node_modules/@swc/helpers/cjs/_class_private_field_set.cjs +11 -0
  1106. package/node_modules/@swc/helpers/cjs/_class_private_field_update.cjs +10 -0
  1107. package/node_modules/@swc/helpers/cjs/_class_private_method_get.cjs +8 -0
  1108. package/node_modules/@swc/helpers/cjs/_class_private_method_init.cjs +9 -0
  1109. package/node_modules/@swc/helpers/cjs/_class_private_method_set.cjs +6 -0
  1110. package/node_modules/@swc/helpers/cjs/_class_static_private_field_destructure.cjs +13 -0
  1111. package/node_modules/@swc/helpers/cjs/_class_static_private_field_spec_get.cjs +13 -0
  1112. package/node_modules/@swc/helpers/cjs/_class_static_private_field_spec_set.cjs +14 -0
  1113. package/node_modules/@swc/helpers/cjs/_class_static_private_field_update.cjs +13 -0
  1114. package/node_modules/@swc/helpers/cjs/_class_static_private_method_get.cjs +10 -0
  1115. package/node_modules/@swc/helpers/cjs/_construct.cjs +22 -0
  1116. package/node_modules/@swc/helpers/cjs/_create_class.cjs +20 -0
  1117. package/node_modules/@swc/helpers/cjs/_create_for_of_iterator_helper_loose.cjs +24 -0
  1118. package/node_modules/@swc/helpers/cjs/_create_super.cjs +23 -0
  1119. package/node_modules/@swc/helpers/cjs/_decorate.cjs +270 -0
  1120. package/node_modules/@swc/helpers/cjs/_defaults.cjs +15 -0
  1121. package/node_modules/@swc/helpers/cjs/_define_enumerable_properties.cjs +26 -0
  1122. package/node_modules/@swc/helpers/cjs/_define_property.cjs +10 -0
  1123. package/node_modules/@swc/helpers/cjs/_dispose.cjs +43 -0
  1124. package/node_modules/@swc/helpers/cjs/_export_star.cjs +17 -0
  1125. package/node_modules/@swc/helpers/cjs/_extends.cjs +15 -0
  1126. package/node_modules/@swc/helpers/cjs/_get.cjs +23 -0
  1127. package/node_modules/@swc/helpers/cjs/_get_prototype_of.cjs +10 -0
  1128. package/node_modules/@swc/helpers/cjs/_identity.cjs +7 -0
  1129. package/node_modules/@swc/helpers/cjs/_inherits.cjs +14 -0
  1130. package/node_modules/@swc/helpers/cjs/_inherits_loose.cjs +8 -0
  1131. package/node_modules/@swc/helpers/cjs/_initializer_define_property.cjs +13 -0
  1132. package/node_modules/@swc/helpers/cjs/_initializer_warning_helper.cjs +11 -0
  1133. package/node_modules/@swc/helpers/cjs/_instanceof.cjs +8 -0
  1134. package/node_modules/@swc/helpers/cjs/_interop_require_default.cjs +6 -0
  1135. package/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs +38 -0
  1136. package/node_modules/@swc/helpers/cjs/_is_native_function.cjs +6 -0
  1137. package/node_modules/@swc/helpers/cjs/_is_native_reflect_construct.cjs +18 -0
  1138. package/node_modules/@swc/helpers/cjs/_iterable_to_array.cjs +8 -0
  1139. package/node_modules/@swc/helpers/cjs/_iterable_to_array_limit.cjs +31 -0
  1140. package/node_modules/@swc/helpers/cjs/_iterable_to_array_limit_loose.cjs +17 -0
  1141. package/node_modules/@swc/helpers/cjs/_jsx.cjs +28 -0
  1142. package/node_modules/@swc/helpers/cjs/_new_arrow_check.cjs +6 -0
  1143. package/node_modules/@swc/helpers/cjs/_non_iterable_rest.cjs +6 -0
  1144. package/node_modules/@swc/helpers/cjs/_non_iterable_spread.cjs +6 -0
  1145. package/node_modules/@swc/helpers/cjs/_object_destructuring_empty.cjs +8 -0
  1146. package/node_modules/@swc/helpers/cjs/_object_spread.cjs +25 -0
  1147. package/node_modules/@swc/helpers/cjs/_object_spread_props.cjs +30 -0
  1148. package/node_modules/@swc/helpers/cjs/_object_without_properties.cjs +35 -0
  1149. package/node_modules/@swc/helpers/cjs/_object_without_properties_loose.cjs +16 -0
  1150. package/node_modules/@swc/helpers/cjs/_overload_yield.cjs +8 -0
  1151. package/node_modules/@swc/helpers/cjs/_possible_constructor_return.cjs +11 -0
  1152. package/node_modules/@swc/helpers/cjs/_read_only_error.cjs +6 -0
  1153. package/node_modules/@swc/helpers/cjs/_set.cjs +44 -0
  1154. package/node_modules/@swc/helpers/cjs/_set_prototype_of.cjs +12 -0
  1155. package/node_modules/@swc/helpers/cjs/_skip_first_generator_next.cjs +11 -0
  1156. package/node_modules/@swc/helpers/cjs/_sliced_to_array.cjs +11 -0
  1157. package/node_modules/@swc/helpers/cjs/_sliced_to_array_loose.cjs +11 -0
  1158. package/node_modules/@swc/helpers/cjs/_super_prop_base.cjs +13 -0
  1159. package/node_modules/@swc/helpers/cjs/_tagged_template_literal.cjs +8 -0
  1160. package/node_modules/@swc/helpers/cjs/_tagged_template_literal_loose.cjs +10 -0
  1161. package/node_modules/@swc/helpers/cjs/_throw.cjs +6 -0
  1162. package/node_modules/@swc/helpers/cjs/_to_array.cjs +11 -0
  1163. package/node_modules/@swc/helpers/cjs/_to_consumable_array.cjs +11 -0
  1164. package/node_modules/@swc/helpers/cjs/_to_primitive.cjs +18 -0
  1165. package/node_modules/@swc/helpers/cjs/_to_property_key.cjs +11 -0
  1166. package/node_modules/@swc/helpers/cjs/_ts_add_disposable_resource.cjs +3 -0
  1167. package/node_modules/@swc/helpers/cjs/_ts_decorate.cjs +3 -0
  1168. package/node_modules/@swc/helpers/cjs/_ts_dispose_resources.cjs +3 -0
  1169. package/node_modules/@swc/helpers/cjs/_ts_generator.cjs +31 -0
  1170. package/node_modules/@swc/helpers/cjs/_ts_metadata.cjs +3 -0
  1171. package/node_modules/@swc/helpers/cjs/_ts_param.cjs +3 -0
  1172. package/node_modules/@swc/helpers/cjs/_ts_rewrite_relative_import_extension.cjs +3 -0
  1173. package/node_modules/@swc/helpers/cjs/_ts_values.cjs +3 -0
  1174. package/node_modules/@swc/helpers/cjs/_type_of.cjs +8 -0
  1175. package/node_modules/@swc/helpers/cjs/_unsupported_iterable_to_array.cjs +15 -0
  1176. package/node_modules/@swc/helpers/cjs/_update.cjs +16 -0
  1177. package/node_modules/@swc/helpers/cjs/_using.cjs +24 -0
  1178. package/node_modules/@swc/helpers/cjs/_using_ctx.cjs +75 -0
  1179. package/node_modules/@swc/helpers/cjs/_wrap_async_generator.cjs +10 -0
  1180. package/node_modules/@swc/helpers/cjs/_wrap_native_super.cjs +28 -0
  1181. package/node_modules/@swc/helpers/cjs/_write_only_error.cjs +6 -0
  1182. package/node_modules/@swc/helpers/cjs/index.cjs +431 -0
  1183. package/node_modules/@swc/helpers/esm/_apply_decorated_descriptor.js +33 -0
  1184. package/node_modules/@swc/helpers/esm/_apply_decs_2203_r.js +548 -0
  1185. package/node_modules/@swc/helpers/esm/_array_like_to_array.js +8 -0
  1186. package/node_modules/@swc/helpers/esm/_array_with_holes.js +4 -0
  1187. package/node_modules/@swc/helpers/esm/_array_without_holes.js +6 -0
  1188. package/node_modules/@swc/helpers/esm/_assert_this_initialized.js +6 -0
  1189. package/node_modules/@swc/helpers/esm/_async_generator.js +74 -0
  1190. package/node_modules/@swc/helpers/esm/_async_generator_delegate.js +51 -0
  1191. package/node_modules/@swc/helpers/esm/_async_iterator.js +44 -0
  1192. package/node_modules/@swc/helpers/esm/_async_to_generator.js +31 -0
  1193. package/node_modules/@swc/helpers/esm/_await_async_generator.js +6 -0
  1194. package/node_modules/@swc/helpers/esm/_await_value.js +4 -0
  1195. package/node_modules/@swc/helpers/esm/_call_super.js +17 -0
  1196. package/node_modules/@swc/helpers/esm/_check_private_redeclaration.js +6 -0
  1197. package/node_modules/@swc/helpers/esm/_class_apply_descriptor_destructure.js +23 -0
  1198. package/node_modules/@swc/helpers/esm/_class_apply_descriptor_get.js +6 -0
  1199. package/node_modules/@swc/helpers/esm/_class_apply_descriptor_set.js +13 -0
  1200. package/node_modules/@swc/helpers/esm/_class_apply_descriptor_update.js +28 -0
  1201. package/node_modules/@swc/helpers/esm/_class_call_check.js +4 -0
  1202. package/node_modules/@swc/helpers/esm/_class_check_private_static_access.js +4 -0
  1203. package/node_modules/@swc/helpers/esm/_class_check_private_static_field_descriptor.js +6 -0
  1204. package/node_modules/@swc/helpers/esm/_class_extract_field_descriptor.js +6 -0
  1205. package/node_modules/@swc/helpers/esm/_class_name_tdz_error.js +4 -0
  1206. package/node_modules/@swc/helpers/esm/_class_private_field_destructure.js +8 -0
  1207. package/node_modules/@swc/helpers/esm/_class_private_field_get.js +8 -0
  1208. package/node_modules/@swc/helpers/esm/_class_private_field_init.js +7 -0
  1209. package/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js +8 -0
  1210. package/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js +6 -0
  1211. package/node_modules/@swc/helpers/esm/_class_private_field_set.js +9 -0
  1212. package/node_modules/@swc/helpers/esm/_class_private_field_update.js +8 -0
  1213. package/node_modules/@swc/helpers/esm/_class_private_method_get.js +6 -0
  1214. package/node_modules/@swc/helpers/esm/_class_private_method_init.js +7 -0
  1215. package/node_modules/@swc/helpers/esm/_class_private_method_set.js +4 -0
  1216. package/node_modules/@swc/helpers/esm/_class_static_private_field_destructure.js +11 -0
  1217. package/node_modules/@swc/helpers/esm/_class_static_private_field_spec_get.js +11 -0
  1218. package/node_modules/@swc/helpers/esm/_class_static_private_field_spec_set.js +12 -0
  1219. package/node_modules/@swc/helpers/esm/_class_static_private_field_update.js +11 -0
  1220. package/node_modules/@swc/helpers/esm/_class_static_private_method_get.js +8 -0
  1221. package/node_modules/@swc/helpers/esm/_construct.js +20 -0
  1222. package/node_modules/@swc/helpers/esm/_create_class.js +18 -0
  1223. package/node_modules/@swc/helpers/esm/_create_for_of_iterator_helper_loose.js +22 -0
  1224. package/node_modules/@swc/helpers/esm/_create_super.js +21 -0
  1225. package/node_modules/@swc/helpers/esm/_decorate.js +268 -0
  1226. package/node_modules/@swc/helpers/esm/_defaults.js +13 -0
  1227. package/node_modules/@swc/helpers/esm/_define_enumerable_properties.js +24 -0
  1228. package/node_modules/@swc/helpers/esm/_define_property.js +8 -0
  1229. package/node_modules/@swc/helpers/esm/_dispose.js +41 -0
  1230. package/node_modules/@swc/helpers/esm/_export_star.js +15 -0
  1231. package/node_modules/@swc/helpers/esm/_extends.js +13 -0
  1232. package/node_modules/@swc/helpers/esm/_get.js +21 -0
  1233. package/node_modules/@swc/helpers/esm/_get_prototype_of.js +8 -0
  1234. package/node_modules/@swc/helpers/esm/_identity.js +5 -0
  1235. package/node_modules/@swc/helpers/esm/_inherits.js +12 -0
  1236. package/node_modules/@swc/helpers/esm/_inherits_loose.js +6 -0
  1237. package/node_modules/@swc/helpers/esm/_initializer_define_property.js +11 -0
  1238. package/node_modules/@swc/helpers/esm/_initializer_warning_helper.js +9 -0
  1239. package/node_modules/@swc/helpers/esm/_instanceof.js +6 -0
  1240. package/node_modules/@swc/helpers/esm/_interop_require_default.js +4 -0
  1241. package/node_modules/@swc/helpers/esm/_interop_require_wildcard.js +36 -0
  1242. package/node_modules/@swc/helpers/esm/_is_native_function.js +4 -0
  1243. package/node_modules/@swc/helpers/esm/_is_native_reflect_construct.js +16 -0
  1244. package/node_modules/@swc/helpers/esm/_iterable_to_array.js +6 -0
  1245. package/node_modules/@swc/helpers/esm/_iterable_to_array_limit.js +29 -0
  1246. package/node_modules/@swc/helpers/esm/_iterable_to_array_limit_loose.js +15 -0
  1247. package/node_modules/@swc/helpers/esm/_jsx.js +26 -0
  1248. package/node_modules/@swc/helpers/esm/_new_arrow_check.js +4 -0
  1249. package/node_modules/@swc/helpers/esm/_non_iterable_rest.js +4 -0
  1250. package/node_modules/@swc/helpers/esm/_non_iterable_spread.js +4 -0
  1251. package/node_modules/@swc/helpers/esm/_object_destructuring_empty.js +6 -0
  1252. package/node_modules/@swc/helpers/esm/_object_spread.js +23 -0
  1253. package/node_modules/@swc/helpers/esm/_object_spread_props.js +28 -0
  1254. package/node_modules/@swc/helpers/esm/_object_without_properties.js +33 -0
  1255. package/node_modules/@swc/helpers/esm/_object_without_properties_loose.js +14 -0
  1256. package/node_modules/@swc/helpers/esm/_overload_yield.js +6 -0
  1257. package/node_modules/@swc/helpers/esm/_possible_constructor_return.js +9 -0
  1258. package/node_modules/@swc/helpers/esm/_read_only_error.js +4 -0
  1259. package/node_modules/@swc/helpers/esm/_set.js +42 -0
  1260. package/node_modules/@swc/helpers/esm/_set_prototype_of.js +10 -0
  1261. package/node_modules/@swc/helpers/esm/_skip_first_generator_next.js +9 -0
  1262. package/node_modules/@swc/helpers/esm/_sliced_to_array.js +9 -0
  1263. package/node_modules/@swc/helpers/esm/_sliced_to_array_loose.js +9 -0
  1264. package/node_modules/@swc/helpers/esm/_super_prop_base.js +11 -0
  1265. package/node_modules/@swc/helpers/esm/_tagged_template_literal.js +6 -0
  1266. package/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js +8 -0
  1267. package/node_modules/@swc/helpers/esm/_throw.js +4 -0
  1268. package/node_modules/@swc/helpers/esm/_to_array.js +9 -0
  1269. package/node_modules/@swc/helpers/esm/_to_consumable_array.js +9 -0
  1270. package/node_modules/@swc/helpers/esm/_to_primitive.js +16 -0
  1271. package/node_modules/@swc/helpers/esm/_to_property_key.js +9 -0
  1272. package/node_modules/@swc/helpers/esm/_ts_add_disposable_resource.js +1 -0
  1273. package/node_modules/@swc/helpers/esm/_ts_decorate.js +1 -0
  1274. package/node_modules/@swc/helpers/esm/_ts_dispose_resources.js +1 -0
  1275. package/node_modules/@swc/helpers/esm/_ts_generator.js +29 -0
  1276. package/node_modules/@swc/helpers/esm/_ts_metadata.js +1 -0
  1277. package/node_modules/@swc/helpers/esm/_ts_param.js +1 -0
  1278. package/node_modules/@swc/helpers/esm/_ts_rewrite_relative_import_extension.js +1 -0
  1279. package/node_modules/@swc/helpers/esm/_ts_values.js +1 -0
  1280. package/node_modules/@swc/helpers/esm/_type_of.js +6 -0
  1281. package/node_modules/@swc/helpers/esm/_unsupported_iterable_to_array.js +13 -0
  1282. package/node_modules/@swc/helpers/esm/_update.js +14 -0
  1283. package/node_modules/@swc/helpers/esm/_using.js +22 -0
  1284. package/node_modules/@swc/helpers/esm/_using_ctx.js +73 -0
  1285. package/node_modules/@swc/helpers/esm/_wrap_async_generator.js +8 -0
  1286. package/node_modules/@swc/helpers/esm/_wrap_native_super.js +26 -0
  1287. package/node_modules/@swc/helpers/esm/_write_only_error.js +4 -0
  1288. package/node_modules/@swc/helpers/esm/index.js +108 -0
  1289. package/node_modules/@swc/helpers/package.json +694 -0
  1290. package/node_modules/@swc/helpers/scripts/ast_grep.js +218 -0
  1291. package/node_modules/@swc/helpers/scripts/build.js +133 -0
  1292. package/node_modules/@swc/helpers/scripts/errors.js +1 -0
  1293. package/node_modules/@swc/helpers/scripts/utils.js +3 -0
  1294. package/node_modules/@swc/helpers/src/_apply_decorated_descriptor.mjs +1 -0
  1295. package/node_modules/@swc/helpers/src/_apply_decs_2203_r.mjs +1 -0
  1296. package/node_modules/@swc/helpers/src/_array_like_to_array.mjs +1 -0
  1297. package/node_modules/@swc/helpers/src/_array_with_holes.mjs +1 -0
  1298. package/node_modules/@swc/helpers/src/_array_without_holes.mjs +1 -0
  1299. package/node_modules/@swc/helpers/src/_assert_this_initialized.mjs +1 -0
  1300. package/node_modules/@swc/helpers/src/_async_generator.mjs +1 -0
  1301. package/node_modules/@swc/helpers/src/_async_generator_delegate.mjs +1 -0
  1302. package/node_modules/@swc/helpers/src/_async_iterator.mjs +1 -0
  1303. package/node_modules/@swc/helpers/src/_async_to_generator.mjs +1 -0
  1304. package/node_modules/@swc/helpers/src/_await_async_generator.mjs +1 -0
  1305. package/node_modules/@swc/helpers/src/_await_value.mjs +1 -0
  1306. package/node_modules/@swc/helpers/src/_call_super.mjs +1 -0
  1307. package/node_modules/@swc/helpers/src/_check_private_redeclaration.mjs +1 -0
  1308. package/node_modules/@swc/helpers/src/_class_apply_descriptor_destructure.mjs +1 -0
  1309. package/node_modules/@swc/helpers/src/_class_apply_descriptor_get.mjs +1 -0
  1310. package/node_modules/@swc/helpers/src/_class_apply_descriptor_set.mjs +1 -0
  1311. package/node_modules/@swc/helpers/src/_class_apply_descriptor_update.mjs +1 -0
  1312. package/node_modules/@swc/helpers/src/_class_call_check.mjs +1 -0
  1313. package/node_modules/@swc/helpers/src/_class_check_private_static_access.mjs +1 -0
  1314. package/node_modules/@swc/helpers/src/_class_check_private_static_field_descriptor.mjs +1 -0
  1315. package/node_modules/@swc/helpers/src/_class_extract_field_descriptor.mjs +1 -0
  1316. package/node_modules/@swc/helpers/src/_class_name_tdz_error.mjs +1 -0
  1317. package/node_modules/@swc/helpers/src/_class_private_field_destructure.mjs +1 -0
  1318. package/node_modules/@swc/helpers/src/_class_private_field_get.mjs +1 -0
  1319. package/node_modules/@swc/helpers/src/_class_private_field_init.mjs +1 -0
  1320. package/node_modules/@swc/helpers/src/_class_private_field_loose_base.mjs +1 -0
  1321. package/node_modules/@swc/helpers/src/_class_private_field_loose_key.mjs +1 -0
  1322. package/node_modules/@swc/helpers/src/_class_private_field_set.mjs +1 -0
  1323. package/node_modules/@swc/helpers/src/_class_private_field_update.mjs +1 -0
  1324. package/node_modules/@swc/helpers/src/_class_private_method_get.mjs +1 -0
  1325. package/node_modules/@swc/helpers/src/_class_private_method_init.mjs +1 -0
  1326. package/node_modules/@swc/helpers/src/_class_private_method_set.mjs +1 -0
  1327. package/node_modules/@swc/helpers/src/_class_static_private_field_destructure.mjs +1 -0
  1328. package/node_modules/@swc/helpers/src/_class_static_private_field_spec_get.mjs +1 -0
  1329. package/node_modules/@swc/helpers/src/_class_static_private_field_spec_set.mjs +1 -0
  1330. package/node_modules/@swc/helpers/src/_class_static_private_field_update.mjs +1 -0
  1331. package/node_modules/@swc/helpers/src/_class_static_private_method_get.mjs +1 -0
  1332. package/node_modules/@swc/helpers/src/_construct.mjs +1 -0
  1333. package/node_modules/@swc/helpers/src/_create_class.mjs +1 -0
  1334. package/node_modules/@swc/helpers/src/_create_for_of_iterator_helper_loose.mjs +1 -0
  1335. package/node_modules/@swc/helpers/src/_create_super.mjs +1 -0
  1336. package/node_modules/@swc/helpers/src/_decorate.mjs +1 -0
  1337. package/node_modules/@swc/helpers/src/_defaults.mjs +1 -0
  1338. package/node_modules/@swc/helpers/src/_define_enumerable_properties.mjs +1 -0
  1339. package/node_modules/@swc/helpers/src/_define_property.mjs +1 -0
  1340. package/node_modules/@swc/helpers/src/_dispose.mjs +1 -0
  1341. package/node_modules/@swc/helpers/src/_export_star.mjs +1 -0
  1342. package/node_modules/@swc/helpers/src/_extends.mjs +1 -0
  1343. package/node_modules/@swc/helpers/src/_get.mjs +1 -0
  1344. package/node_modules/@swc/helpers/src/_get_prototype_of.mjs +1 -0
  1345. package/node_modules/@swc/helpers/src/_identity.mjs +1 -0
  1346. package/node_modules/@swc/helpers/src/_inherits.mjs +1 -0
  1347. package/node_modules/@swc/helpers/src/_inherits_loose.mjs +1 -0
  1348. package/node_modules/@swc/helpers/src/_initializer_define_property.mjs +1 -0
  1349. package/node_modules/@swc/helpers/src/_initializer_warning_helper.mjs +1 -0
  1350. package/node_modules/@swc/helpers/src/_instanceof.mjs +1 -0
  1351. package/node_modules/@swc/helpers/src/_interop_require_default.mjs +1 -0
  1352. package/node_modules/@swc/helpers/src/_interop_require_wildcard.mjs +1 -0
  1353. package/node_modules/@swc/helpers/src/_is_native_function.mjs +1 -0
  1354. package/node_modules/@swc/helpers/src/_is_native_reflect_construct.mjs +1 -0
  1355. package/node_modules/@swc/helpers/src/_iterable_to_array.mjs +1 -0
  1356. package/node_modules/@swc/helpers/src/_iterable_to_array_limit.mjs +1 -0
  1357. package/node_modules/@swc/helpers/src/_iterable_to_array_limit_loose.mjs +1 -0
  1358. package/node_modules/@swc/helpers/src/_jsx.mjs +1 -0
  1359. package/node_modules/@swc/helpers/src/_new_arrow_check.mjs +1 -0
  1360. package/node_modules/@swc/helpers/src/_non_iterable_rest.mjs +1 -0
  1361. package/node_modules/@swc/helpers/src/_non_iterable_spread.mjs +1 -0
  1362. package/node_modules/@swc/helpers/src/_object_destructuring_empty.mjs +1 -0
  1363. package/node_modules/@swc/helpers/src/_object_spread.mjs +1 -0
  1364. package/node_modules/@swc/helpers/src/_object_spread_props.mjs +1 -0
  1365. package/node_modules/@swc/helpers/src/_object_without_properties.mjs +1 -0
  1366. package/node_modules/@swc/helpers/src/_object_without_properties_loose.mjs +1 -0
  1367. package/node_modules/@swc/helpers/src/_overload_yield.mjs +1 -0
  1368. package/node_modules/@swc/helpers/src/_possible_constructor_return.mjs +1 -0
  1369. package/node_modules/@swc/helpers/src/_read_only_error.mjs +1 -0
  1370. package/node_modules/@swc/helpers/src/_set.mjs +1 -0
  1371. package/node_modules/@swc/helpers/src/_set_prototype_of.mjs +1 -0
  1372. package/node_modules/@swc/helpers/src/_skip_first_generator_next.mjs +1 -0
  1373. package/node_modules/@swc/helpers/src/_sliced_to_array.mjs +1 -0
  1374. package/node_modules/@swc/helpers/src/_sliced_to_array_loose.mjs +1 -0
  1375. package/node_modules/@swc/helpers/src/_super_prop_base.mjs +1 -0
  1376. package/node_modules/@swc/helpers/src/_tagged_template_literal.mjs +1 -0
  1377. package/node_modules/@swc/helpers/src/_tagged_template_literal_loose.mjs +1 -0
  1378. package/node_modules/@swc/helpers/src/_throw.mjs +1 -0
  1379. package/node_modules/@swc/helpers/src/_to_array.mjs +1 -0
  1380. package/node_modules/@swc/helpers/src/_to_consumable_array.mjs +1 -0
  1381. package/node_modules/@swc/helpers/src/_to_primitive.mjs +1 -0
  1382. package/node_modules/@swc/helpers/src/_to_property_key.mjs +1 -0
  1383. package/node_modules/@swc/helpers/src/_ts_add_disposable_resource.mjs +1 -0
  1384. package/node_modules/@swc/helpers/src/_ts_decorate.mjs +1 -0
  1385. package/node_modules/@swc/helpers/src/_ts_dispose_resources.mjs +1 -0
  1386. package/node_modules/@swc/helpers/src/_ts_generator.mjs +1 -0
  1387. package/node_modules/@swc/helpers/src/_ts_metadata.mjs +1 -0
  1388. package/node_modules/@swc/helpers/src/_ts_param.mjs +1 -0
  1389. package/node_modules/@swc/helpers/src/_ts_rewrite_relative_import_extension.mjs +1 -0
  1390. package/node_modules/@swc/helpers/src/_ts_values.mjs +1 -0
  1391. package/node_modules/@swc/helpers/src/_type_of.mjs +1 -0
  1392. package/node_modules/@swc/helpers/src/_unsupported_iterable_to_array.mjs +1 -0
  1393. package/node_modules/@swc/helpers/src/_update.mjs +1 -0
  1394. package/node_modules/@swc/helpers/src/_using.mjs +1 -0
  1395. package/node_modules/@swc/helpers/src/_using_ctx.mjs +1 -0
  1396. package/node_modules/@swc/helpers/src/_wrap_async_generator.mjs +1 -0
  1397. package/node_modules/@swc/helpers/src/_wrap_native_super.mjs +1 -0
  1398. package/node_modules/@swc/helpers/src/_write_only_error.mjs +1 -0
  1399. package/node_modules/@swc/helpers/src/index.mjs +1 -0
  1400. package/node_modules/@types/connect/LICENSE +21 -0
  1401. package/node_modules/@types/connect/README.md +15 -0
  1402. package/node_modules/@types/connect/index.d.ts +91 -0
  1403. package/node_modules/@types/connect/package.json +32 -0
  1404. package/node_modules/@types/node/LICENSE +21 -0
  1405. package/node_modules/@types/node/README.md +16 -0
  1406. package/node_modules/@types/node/assert.d.ts +117 -0
  1407. package/node_modules/@types/node/async_hooks.d.ts +246 -0
  1408. package/node_modules/@types/node/buffer.d.ts +22 -0
  1409. package/node_modules/@types/node/child_process.d.ts +507 -0
  1410. package/node_modules/@types/node/cluster.d.ts +260 -0
  1411. package/node_modules/@types/node/console.d.ts +3 -0
  1412. package/node_modules/@types/node/constants.d.ts +448 -0
  1413. package/node_modules/@types/node/crypto.d.ts +1183 -0
  1414. package/node_modules/@types/node/dgram.d.ts +118 -0
  1415. package/node_modules/@types/node/dns.d.ts +372 -0
  1416. package/node_modules/@types/node/domain.d.ts +16 -0
  1417. package/node_modules/@types/node/events.d.ts +47 -0
  1418. package/node_modules/@types/node/fs.d.ts +2567 -0
  1419. package/node_modules/@types/node/globals.d.ts +1351 -0
  1420. package/node_modules/@types/node/globals.global.d.ts +1 -0
  1421. package/node_modules/@types/node/http.d.ts +456 -0
  1422. package/node_modules/@types/node/http2.d.ts +952 -0
  1423. package/node_modules/@types/node/https.d.ts +156 -0
  1424. package/node_modules/@types/node/index.d.ts +91 -0
  1425. package/node_modules/@types/node/inspector.d.ts +3040 -0
  1426. package/node_modules/@types/node/module.d.ts +3 -0
  1427. package/node_modules/@types/node/net.d.ts +290 -0
  1428. package/node_modules/@types/node/os.d.ts +263 -0
  1429. package/node_modules/@types/node/package.json +195 -0
  1430. package/node_modules/@types/node/path.d.ts +159 -0
  1431. package/node_modules/@types/node/perf_hooks.d.ts +259 -0
  1432. package/node_modules/@types/node/process.d.ts +15 -0
  1433. package/node_modules/@types/node/punycode.d.ts +75 -0
  1434. package/node_modules/@types/node/querystring.d.ts +29 -0
  1435. package/node_modules/@types/node/readline.d.ts +158 -0
  1436. package/node_modules/@types/node/repl.d.ts +390 -0
  1437. package/node_modules/@types/node/stream.d.ts +334 -0
  1438. package/node_modules/@types/node/string_decoder.d.ts +7 -0
  1439. package/node_modules/@types/node/timers.d.ts +16 -0
  1440. package/node_modules/@types/node/tls.d.ts +713 -0
  1441. package/node_modules/@types/node/trace_events.d.ts +61 -0
  1442. package/node_modules/@types/node/tty.d.ts +66 -0
  1443. package/node_modules/@types/node/url.d.ts +147 -0
  1444. package/node_modules/@types/node/util.d.ts +200 -0
  1445. package/node_modules/@types/node/v8.d.ts +197 -0
  1446. package/node_modules/@types/node/vm.d.ts +112 -0
  1447. package/node_modules/@types/node/wasi.d.ts +55 -0
  1448. package/node_modules/@types/node/worker_threads.d.ts +207 -0
  1449. package/node_modules/@types/node/zlib.d.ts +356 -0
  1450. package/node_modules/@types/uuid/LICENSE +21 -0
  1451. package/node_modules/@types/uuid/README.md +15 -0
  1452. package/node_modules/@types/uuid/index.d.mts +19 -0
  1453. package/node_modules/@types/uuid/index.d.ts +113 -0
  1454. package/node_modules/@types/uuid/package.json +54 -0
  1455. package/node_modules/@types/ws/LICENSE +21 -0
  1456. package/node_modules/@types/ws/README.md +16 -0
  1457. package/node_modules/@types/ws/index.d.ts +353 -0
  1458. package/node_modules/@types/ws/package.json +57 -0
  1459. package/node_modules/agentkeepalive/LICENSE +23 -0
  1460. package/node_modules/agentkeepalive/README.md +256 -0
  1461. package/node_modules/agentkeepalive/browser.js +5 -0
  1462. package/node_modules/agentkeepalive/index.d.ts +69 -0
  1463. package/node_modules/agentkeepalive/index.js +7 -0
  1464. package/node_modules/agentkeepalive/lib/agent.js +402 -0
  1465. package/node_modules/agentkeepalive/lib/constants.js +14 -0
  1466. package/node_modules/agentkeepalive/lib/https_agent.js +51 -0
  1467. package/node_modules/agentkeepalive/package.json +56 -0
  1468. package/node_modules/base64-js/LICENSE +21 -0
  1469. package/node_modules/base64-js/README.md +34 -0
  1470. package/node_modules/base64-js/base64js.min.js +1 -0
  1471. package/node_modules/base64-js/index.d.ts +3 -0
  1472. package/node_modules/base64-js/index.js +150 -0
  1473. package/node_modules/base64-js/package.json +47 -0
  1474. package/node_modules/bn.js/LICENSE +19 -0
  1475. package/node_modules/bn.js/README.md +214 -0
  1476. package/node_modules/bn.js/lib/bn.js +3553 -0
  1477. package/node_modules/bn.js/package.json +39 -0
  1478. package/node_modules/buffer/AUTHORS.md +73 -0
  1479. package/node_modules/buffer/LICENSE +21 -0
  1480. package/node_modules/buffer/README.md +410 -0
  1481. package/node_modules/buffer/index.d.ts +194 -0
  1482. package/node_modules/buffer/index.js +2106 -0
  1483. package/node_modules/buffer/package.json +93 -0
  1484. package/node_modules/bufferutil/LICENSE +20 -0
  1485. package/node_modules/bufferutil/README.md +79 -0
  1486. package/node_modules/bufferutil/binding.gyp +19 -0
  1487. package/node_modules/bufferutil/fallback.js +34 -0
  1488. package/node_modules/bufferutil/index.js +7 -0
  1489. package/node_modules/bufferutil/package.json +35 -0
  1490. package/node_modules/bufferutil/prebuilds/darwin-arm64/bufferutil.node +0 -0
  1491. package/node_modules/bufferutil/prebuilds/darwin-x64/bufferutil.node +0 -0
  1492. package/node_modules/bufferutil/prebuilds/linux-x64/bufferutil.node +0 -0
  1493. package/node_modules/bufferutil/prebuilds/win32-ia32/bufferutil.node +0 -0
  1494. package/node_modules/bufferutil/prebuilds/win32-x64/bufferutil.node +0 -0
  1495. package/node_modules/bufferutil/src/bufferutil.c +169 -0
  1496. package/node_modules/chalk/license +9 -0
  1497. package/node_modules/chalk/package.json +83 -0
  1498. package/node_modules/chalk/readme.md +297 -0
  1499. package/node_modules/chalk/source/index.d.ts +325 -0
  1500. package/node_modules/chalk/source/index.js +225 -0
  1501. package/node_modules/chalk/source/utilities.js +33 -0
  1502. package/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
  1503. package/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
  1504. package/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
  1505. package/node_modules/chalk/source/vendor/supports-color/browser.js +34 -0
  1506. package/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
  1507. package/node_modules/chalk/source/vendor/supports-color/index.js +190 -0
  1508. package/node_modules/commander/LICENSE +22 -0
  1509. package/node_modules/commander/Readme.md +1176 -0
  1510. package/node_modules/commander/esm.mjs +16 -0
  1511. package/node_modules/commander/index.js +24 -0
  1512. package/node_modules/commander/lib/argument.js +150 -0
  1513. package/node_modules/commander/lib/command.js +2777 -0
  1514. package/node_modules/commander/lib/error.js +39 -0
  1515. package/node_modules/commander/lib/help.js +747 -0
  1516. package/node_modules/commander/lib/option.js +380 -0
  1517. package/node_modules/commander/lib/suggestSimilar.js +101 -0
  1518. package/node_modules/commander/package-support.json +19 -0
  1519. package/node_modules/commander/package.json +82 -0
  1520. package/node_modules/commander/typings/esm.d.mts +3 -0
  1521. package/node_modules/commander/typings/index.d.ts +1113 -0
  1522. package/node_modules/delay/index.d.ts +107 -0
  1523. package/node_modules/delay/index.js +72 -0
  1524. package/node_modules/delay/license +9 -0
  1525. package/node_modules/delay/package.json +54 -0
  1526. package/node_modules/delay/readme.md +173 -0
  1527. package/node_modules/es6-promise/CHANGELOG.md +155 -0
  1528. package/node_modules/es6-promise/LICENSE +19 -0
  1529. package/node_modules/es6-promise/README.md +97 -0
  1530. package/node_modules/es6-promise/auto.js +4 -0
  1531. package/node_modules/es6-promise/dist/es6-promise.auto.js +1176 -0
  1532. package/node_modules/es6-promise/dist/es6-promise.auto.map +1 -0
  1533. package/node_modules/es6-promise/dist/es6-promise.auto.min.js +1 -0
  1534. package/node_modules/es6-promise/dist/es6-promise.auto.min.map +1 -0
  1535. package/node_modules/es6-promise/dist/es6-promise.js +1174 -0
  1536. package/node_modules/es6-promise/dist/es6-promise.map +1 -0
  1537. package/node_modules/es6-promise/dist/es6-promise.min.js +1 -0
  1538. package/node_modules/es6-promise/dist/es6-promise.min.map +1 -0
  1539. package/node_modules/es6-promise/es6-promise.d.ts +85 -0
  1540. package/node_modules/es6-promise/lib/es6-promise/-internal.js +243 -0
  1541. package/node_modules/es6-promise/lib/es6-promise/asap.js +119 -0
  1542. package/node_modules/es6-promise/lib/es6-promise/enumerator.js +124 -0
  1543. package/node_modules/es6-promise/lib/es6-promise/polyfill.js +35 -0
  1544. package/node_modules/es6-promise/lib/es6-promise/promise/all.js +52 -0
  1545. package/node_modules/es6-promise/lib/es6-promise/promise/race.js +84 -0
  1546. package/node_modules/es6-promise/lib/es6-promise/promise/reject.js +46 -0
  1547. package/node_modules/es6-promise/lib/es6-promise/promise/resolve.js +48 -0
  1548. package/node_modules/es6-promise/lib/es6-promise/promise.js +431 -0
  1549. package/node_modules/es6-promise/lib/es6-promise/then.js +32 -0
  1550. package/node_modules/es6-promise/lib/es6-promise/utils.js +21 -0
  1551. package/node_modules/es6-promise/lib/es6-promise.auto.js +3 -0
  1552. package/node_modules/es6-promise/lib/es6-promise.js +7 -0
  1553. package/node_modules/es6-promise/package.json +78 -0
  1554. package/node_modules/es6-promisify/README.md +89 -0
  1555. package/node_modules/es6-promisify/dist/promise.js +73 -0
  1556. package/node_modules/es6-promisify/dist/promisify.js +85 -0
  1557. package/node_modules/es6-promisify/package.json +41 -0
  1558. package/node_modules/eventemitter3/LICENSE +21 -0
  1559. package/node_modules/eventemitter3/README.md +85 -0
  1560. package/node_modules/eventemitter3/dist/eventemitter3.esm.js +355 -0
  1561. package/node_modules/eventemitter3/dist/eventemitter3.esm.min.js +1 -0
  1562. package/node_modules/eventemitter3/dist/eventemitter3.esm.min.js.map +1 -0
  1563. package/node_modules/eventemitter3/dist/eventemitter3.umd.js +363 -0
  1564. package/node_modules/eventemitter3/dist/eventemitter3.umd.min.js +1 -0
  1565. package/node_modules/eventemitter3/dist/eventemitter3.umd.min.js.map +1 -0
  1566. package/node_modules/eventemitter3/index.d.ts +135 -0
  1567. package/node_modules/eventemitter3/index.js +336 -0
  1568. package/node_modules/eventemitter3/index.mjs +4 -0
  1569. package/node_modules/eventemitter3/package.json +62 -0
  1570. package/node_modules/eyes/LICENSE +20 -0
  1571. package/node_modules/eyes/Makefile +4 -0
  1572. package/node_modules/eyes/README.md +73 -0
  1573. package/node_modules/eyes/lib/eyes.js +236 -0
  1574. package/node_modules/eyes/package.json +14 -0
  1575. package/node_modules/eyes/test/eyes-test.js +56 -0
  1576. package/node_modules/fast-stable-stringify/.npmignore +4 -0
  1577. package/node_modules/fast-stable-stringify/.travis.yml +10 -0
  1578. package/node_modules/fast-stable-stringify/LICENSE +21 -0
  1579. package/node_modules/fast-stable-stringify/README.md +81 -0
  1580. package/node_modules/fast-stable-stringify/cli/files-to-comparison-results.js +67 -0
  1581. package/node_modules/fast-stable-stringify/cli/format-table.js +70 -0
  1582. package/node_modules/fast-stable-stringify/cli/index.js +19 -0
  1583. package/node_modules/fast-stable-stringify/fixtures/index.js +5 -0
  1584. package/node_modules/fast-stable-stringify/fixtures/input-data-types.js +191 -0
  1585. package/node_modules/fast-stable-stringify/fixtures/log-result.json +22 -0
  1586. package/node_modules/fast-stable-stringify/fixtures/log.txt +24 -0
  1587. package/node_modules/fast-stable-stringify/index.js +73 -0
  1588. package/node_modules/fast-stable-stringify/karma.conf.js +124 -0
  1589. package/node_modules/fast-stable-stringify/karma.conf.travis.js +95 -0
  1590. package/node_modules/fast-stable-stringify/package.json +47 -0
  1591. package/node_modules/fast-stable-stringify/results/escape-long/Chrome 60.0.3112 (Windows 7 0.0.0).json +57 -0
  1592. package/node_modules/fast-stable-stringify/results/escape-long/Chrome Mobile 55.0.2883 (Android 6.0.0).json +57 -0
  1593. package/node_modules/fast-stable-stringify/results/escape-long/Edge 14.14393.0 (Windows 10 0.0.0).json +57 -0
  1594. package/node_modules/fast-stable-stringify/results/escape-long/Firefox 54.0.0 (Windows 7 0.0.0).json +57 -0
  1595. package/node_modules/fast-stable-stringify/results/escape-long/IE 10.0.0 (Windows 7 0.0.0).json +57 -0
  1596. package/node_modules/fast-stable-stringify/results/escape-long/IE 11.0.0 (Windows 7 0.0.0).json +57 -0
  1597. package/node_modules/fast-stable-stringify/results/escape-long/IE 9.0.0 (Windows 7 0.0.0).json +57 -0
  1598. package/node_modules/fast-stable-stringify/results/escape-long/Mobile Safari 10.0.0 (iOS 10.3.0).json +57 -0
  1599. package/node_modules/fast-stable-stringify/results/escape-long/Safari 10.0.1 (Mac OS X 10.12.1).json +57 -0
  1600. package/node_modules/fast-stable-stringify/results/escape-short/Chrome 60.0.3112 (Windows 7 0.0.0).json +57 -0
  1601. package/node_modules/fast-stable-stringify/results/escape-short/Chrome Mobile 55.0.2883 (Android 6.0.0).json +57 -0
  1602. package/node_modules/fast-stable-stringify/results/escape-short/Edge 14.14393.0 (Windows 10 0.0.0).json +57 -0
  1603. package/node_modules/fast-stable-stringify/results/escape-short/Firefox 54.0.0 (Windows 7 0.0.0).json +57 -0
  1604. package/node_modules/fast-stable-stringify/results/escape-short/IE 10.0.0 (Windows 7 0.0.0).json +57 -0
  1605. package/node_modules/fast-stable-stringify/results/escape-short/IE 11.0.0 (Windows 7 0.0.0).json +57 -0
  1606. package/node_modules/fast-stable-stringify/results/escape-short/IE 9.0.0 (Windows 7 0.0.0).json +57 -0
  1607. package/node_modules/fast-stable-stringify/results/escape-short/Mobile Safari 10.0.0 (iOS 10.3.0).json +57 -0
  1608. package/node_modules/fast-stable-stringify/results/escape-short/Safari 10.0.1 (Mac OS X 10.12.1).json +57 -0
  1609. package/node_modules/fast-stable-stringify/results/escape.md +20 -0
  1610. package/node_modules/fast-stable-stringify/results/itar-long/Chrome 60.0.3112 (Windows 7 0.0.0).json +35 -0
  1611. package/node_modules/fast-stable-stringify/results/itar-long/Chrome Mobile 55.0.2883 (Android 6.0.0).json +35 -0
  1612. package/node_modules/fast-stable-stringify/results/itar-long/Edge 14.14393.0 (Windows 10 0.0.0).json +35 -0
  1613. package/node_modules/fast-stable-stringify/results/itar-long/Firefox 54.0.0 (Windows 7 0.0.0).json +35 -0
  1614. package/node_modules/fast-stable-stringify/results/itar-long/IE 10.0.0 (Windows 7 0.0.0).json +35 -0
  1615. package/node_modules/fast-stable-stringify/results/itar-long/IE 11.0.0 (Windows 7 0.0.0).json +35 -0
  1616. package/node_modules/fast-stable-stringify/results/itar-long/IE 9.0.0 (Windows 7 0.0.0).json +35 -0
  1617. package/node_modules/fast-stable-stringify/results/itar-long/Mobile Safari 10.0.0 (iOS 10.3.0).json +35 -0
  1618. package/node_modules/fast-stable-stringify/results/itar-long/Safari 10.0.1 (Mac OS X 10.12.1).json +35 -0
  1619. package/node_modules/fast-stable-stringify/results/itar-short/Chrome 60.0.3112 (Windows 7 0.0.0).json +35 -0
  1620. package/node_modules/fast-stable-stringify/results/itar-short/Chrome Mobile 55.0.2883 (Android 6.0.0).json +35 -0
  1621. package/node_modules/fast-stable-stringify/results/itar-short/Edge 14.14393.0 (Windows 10 0.0.0).json +35 -0
  1622. package/node_modules/fast-stable-stringify/results/itar-short/Firefox 54.0.0 (Windows 7 0.0.0).json +35 -0
  1623. package/node_modules/fast-stable-stringify/results/itar-short/IE 10.0.0 (Windows 7 0.0.0).json +35 -0
  1624. package/node_modules/fast-stable-stringify/results/itar-short/IE 11.0.0 (Windows 7 0.0.0).json +35 -0
  1625. package/node_modules/fast-stable-stringify/results/itar-short/IE 9.0.0 (Windows 7 0.0.0).json +35 -0
  1626. package/node_modules/fast-stable-stringify/results/itar-short/Mobile Safari 10.0.0 (iOS 10.3.0).json +35 -0
  1627. package/node_modules/fast-stable-stringify/results/itar-short/Safari 10.0.1 (Mac OS X 10.12.1).json +35 -0
  1628. package/node_modules/fast-stable-stringify/results/itar.md +20 -0
  1629. package/node_modules/fast-stable-stringify/results/iter/Chrome 60.0.3112 (Windows 7 0.0.0).json +35 -0
  1630. package/node_modules/fast-stable-stringify/results/iter/Chrome Mobile 39.0.0 (Android 5.1.1).json +35 -0
  1631. package/node_modules/fast-stable-stringify/results/iter/Chrome Mobile 55.0.2883 (Android 6.0.0).json +35 -0
  1632. package/node_modules/fast-stable-stringify/results/iter/Edge 14.14393.0 (Windows 10 0.0.0).json +35 -0
  1633. package/node_modules/fast-stable-stringify/results/iter/Firefox 54.0.0 (Windows 7 0.0.0).json +35 -0
  1634. package/node_modules/fast-stable-stringify/results/iter/IE 10.0.0 (Windows 7 0.0.0).json +35 -0
  1635. package/node_modules/fast-stable-stringify/results/iter/IE 11.0.0 (Windows 7 0.0.0).json +35 -0
  1636. package/node_modules/fast-stable-stringify/results/iter/IE 9.0.0 (Windows 7 0.0.0).json +35 -0
  1637. package/node_modules/fast-stable-stringify/results/iter/Mobile Safari 10.0.0 (iOS 10.3.0).json +35 -0
  1638. package/node_modules/fast-stable-stringify/results/iter/Mobile Safari 9.0.0 (iOS 9.2.0).json +35 -0
  1639. package/node_modules/fast-stable-stringify/results/iter/Safari 10.0.1 (Mac OS X 10.12.1).json +35 -0
  1640. package/node_modules/fast-stable-stringify/results/iter/Safari 9.1.2 (Mac OS X 10.11.6).json +35 -0
  1641. package/node_modules/fast-stable-stringify/results/iter.md +14 -0
  1642. package/node_modules/fast-stable-stringify/results/libs/Chrome 60.0.3112 (Windows 7 0.0.0).json +46 -0
  1643. package/node_modules/fast-stable-stringify/results/libs/Chrome Mobile 55.0.2883 (Android 6.0.0).json +46 -0
  1644. package/node_modules/fast-stable-stringify/results/libs/Edge 14.14393.0 (Windows 10 0.0.0).json +46 -0
  1645. package/node_modules/fast-stable-stringify/results/libs/Firefox 54.0.0 (Windows 7 0.0.0).json +46 -0
  1646. package/node_modules/fast-stable-stringify/results/libs/IE 10.0.0 (Windows 7 0.0.0).json +35 -0
  1647. package/node_modules/fast-stable-stringify/results/libs/IE 11.0.0 (Windows 7 0.0.0).json +35 -0
  1648. package/node_modules/fast-stable-stringify/results/libs/IE 9.0.0 (Windows 7 0.0.0).json +35 -0
  1649. package/node_modules/fast-stable-stringify/results/libs/Mobile Safari 10.0.0 (iOS 10.3.0).json +46 -0
  1650. package/node_modules/fast-stable-stringify/results/libs/Safari 10.0.1 (Mac OS X 10.12.1).json +46 -0
  1651. package/node_modules/fast-stable-stringify/results/libs.md +15 -0
  1652. package/node_modules/fast-stable-stringify/test/escape-long.js +147 -0
  1653. package/node_modules/fast-stable-stringify/test/escape-short.js +147 -0
  1654. package/node_modules/fast-stable-stringify/test/index.js +6 -0
  1655. package/node_modules/fast-stable-stringify/test/itar-long.js +52 -0
  1656. package/node_modules/fast-stable-stringify/test/itar-short.js +52 -0
  1657. package/node_modules/fast-stable-stringify/test/iter.js +84 -0
  1658. package/node_modules/fast-stable-stringify/test/libs.js +57 -0
  1659. package/node_modules/fast-stable-stringify/test/travis.js +43 -0
  1660. package/node_modules/fast-stable-stringify/test/validate.js +24 -0
  1661. package/node_modules/fast-stable-stringify/util/eachRecursive.js +9 -0
  1662. package/node_modules/fast-stable-stringify/util/get-git-hash-sync.js +21 -0
  1663. package/node_modules/fast-stable-stringify/util/get-lib-info.js +22 -0
  1664. package/node_modules/fast-stable-stringify/util/object-path.js +47 -0
  1665. package/node_modules/fast-stable-stringify/v8-profile/bench.js +8 -0
  1666. package/node_modules/fast-stable-stringify/v8-profile/run.sh +2 -0
  1667. package/node_modules/fast-stable-stringify/zuul-local.sh +2 -0
  1668. package/node_modules/humanize-ms/History.md +25 -0
  1669. package/node_modules/humanize-ms/LICENSE +17 -0
  1670. package/node_modules/humanize-ms/README.md +40 -0
  1671. package/node_modules/humanize-ms/index.js +24 -0
  1672. package/node_modules/humanize-ms/package.json +37 -0
  1673. package/node_modules/ieee754/LICENSE +11 -0
  1674. package/node_modules/ieee754/README.md +51 -0
  1675. package/node_modules/ieee754/index.d.ts +10 -0
  1676. package/node_modules/ieee754/index.js +85 -0
  1677. package/node_modules/ieee754/package.json +52 -0
  1678. package/node_modules/isomorphic-ws/LICENSE +21 -0
  1679. package/node_modules/isomorphic-ws/README.md +58 -0
  1680. package/node_modules/isomorphic-ws/browser.js +17 -0
  1681. package/node_modules/isomorphic-ws/index.d.ts +8 -0
  1682. package/node_modules/isomorphic-ws/node.js +3 -0
  1683. package/node_modules/isomorphic-ws/package.json +34 -0
  1684. package/node_modules/jayson/.npmignore +8 -0
  1685. package/node_modules/jayson/LICENSE +22 -0
  1686. package/node_modules/jayson/README.md +1387 -0
  1687. package/node_modules/jayson/bin/jayson.js +111 -0
  1688. package/node_modules/jayson/index.d.ts +391 -0
  1689. package/node_modules/jayson/index.js +1 -0
  1690. package/node_modules/jayson/lib/client/browser/index.d.ts +14 -0
  1691. package/node_modules/jayson/lib/client/browser/index.js +167 -0
  1692. package/node_modules/jayson/lib/client/http.js +118 -0
  1693. package/node_modules/jayson/lib/client/https.js +34 -0
  1694. package/node_modules/jayson/lib/client/index.js +221 -0
  1695. package/node_modules/jayson/lib/client/tcp.js +92 -0
  1696. package/node_modules/jayson/lib/client/tls.js +91 -0
  1697. package/node_modules/jayson/lib/client/websocket.js +135 -0
  1698. package/node_modules/jayson/lib/generateRequest.js +63 -0
  1699. package/node_modules/jayson/lib/index.js +31 -0
  1700. package/node_modules/jayson/lib/method.js +120 -0
  1701. package/node_modules/jayson/lib/server/http.js +26 -0
  1702. package/node_modules/jayson/lib/server/https.js +26 -0
  1703. package/node_modules/jayson/lib/server/index.js +476 -0
  1704. package/node_modules/jayson/lib/server/middleware.js +75 -0
  1705. package/node_modules/jayson/lib/server/tcp.js +72 -0
  1706. package/node_modules/jayson/lib/server/tls.js +72 -0
  1707. package/node_modules/jayson/lib/server/websocket.js +62 -0
  1708. package/node_modules/jayson/lib/utils.js +517 -0
  1709. package/node_modules/jayson/node_modules/commander/CHANGELOG.md +419 -0
  1710. package/node_modules/jayson/node_modules/commander/LICENSE +22 -0
  1711. package/node_modules/jayson/node_modules/commander/Readme.md +428 -0
  1712. package/node_modules/jayson/node_modules/commander/index.js +1224 -0
  1713. package/node_modules/jayson/node_modules/commander/package.json +38 -0
  1714. package/node_modules/jayson/node_modules/commander/typings/index.d.ts +310 -0
  1715. package/node_modules/jayson/package.json +87 -0
  1716. package/node_modules/jayson/promise/index.d.ts +391 -0
  1717. package/node_modules/jayson/promise/index.js +3 -0
  1718. package/node_modules/jayson/promise/lib/client/browser/index.d.ts +12 -0
  1719. package/node_modules/jayson/promise/lib/client/browser/index.js +28 -0
  1720. package/node_modules/jayson/promise/lib/client/http.js +23 -0
  1721. package/node_modules/jayson/promise/lib/client/https.js +24 -0
  1722. package/node_modules/jayson/promise/lib/client/index.js +53 -0
  1723. package/node_modules/jayson/promise/lib/client/tcp.js +23 -0
  1724. package/node_modules/jayson/promise/lib/client/tls.js +23 -0
  1725. package/node_modules/jayson/promise/lib/client/websocket.js +23 -0
  1726. package/node_modules/jayson/promise/lib/index.js +33 -0
  1727. package/node_modules/jayson/promise/lib/method.js +54 -0
  1728. package/node_modules/jayson/promise/lib/server.js +23 -0
  1729. package/node_modules/jayson/promise/lib/utils.js +23 -0
  1730. package/node_modules/json-stringify-safe/.npmignore +1 -0
  1731. package/node_modules/json-stringify-safe/CHANGELOG.md +14 -0
  1732. package/node_modules/json-stringify-safe/LICENSE +15 -0
  1733. package/node_modules/json-stringify-safe/Makefile +35 -0
  1734. package/node_modules/json-stringify-safe/README.md +52 -0
  1735. package/node_modules/json-stringify-safe/package.json +31 -0
  1736. package/node_modules/json-stringify-safe/stringify.js +27 -0
  1737. package/node_modules/json-stringify-safe/test/mocha.opts +2 -0
  1738. package/node_modules/json-stringify-safe/test/stringify_test.js +246 -0
  1739. package/node_modules/ms/index.js +162 -0
  1740. package/node_modules/ms/license.md +21 -0
  1741. package/node_modules/ms/package.json +38 -0
  1742. package/node_modules/ms/readme.md +59 -0
  1743. package/node_modules/node-fetch/LICENSE.md +22 -0
  1744. package/node_modules/node-fetch/README.md +634 -0
  1745. package/node_modules/node-fetch/browser.js +25 -0
  1746. package/node_modules/node-fetch/lib/index.es.js +1777 -0
  1747. package/node_modules/node-fetch/lib/index.js +1787 -0
  1748. package/node_modules/node-fetch/lib/index.mjs +1775 -0
  1749. package/node_modules/node-fetch/package.json +89 -0
  1750. package/node_modules/node-gyp-build/LICENSE +21 -0
  1751. package/node_modules/node-gyp-build/README.md +58 -0
  1752. package/node_modules/node-gyp-build/SECURITY.md +5 -0
  1753. package/node_modules/node-gyp-build/bin.js +84 -0
  1754. package/node_modules/node-gyp-build/build-test.js +19 -0
  1755. package/node_modules/node-gyp-build/index.js +6 -0
  1756. package/node_modules/node-gyp-build/node-gyp-build.js +207 -0
  1757. package/node_modules/node-gyp-build/optional.js +7 -0
  1758. package/node_modules/node-gyp-build/package.json +43 -0
  1759. package/node_modules/rpc-websockets/LICENSE +10 -0
  1760. package/node_modules/rpc-websockets/README.md +153 -0
  1761. package/node_modules/rpc-websockets/dist/index.browser-bundle.js +5 -0
  1762. package/node_modules/rpc-websockets/dist/index.browser.cjs +425 -0
  1763. package/node_modules/rpc-websockets/dist/index.browser.cjs.map +1 -0
  1764. package/node_modules/rpc-websockets/dist/index.browser.d.mts +255 -0
  1765. package/node_modules/rpc-websockets/dist/index.browser.d.ts +255 -0
  1766. package/node_modules/rpc-websockets/dist/index.browser.mjs +420 -0
  1767. package/node_modules/rpc-websockets/dist/index.browser.mjs.map +1 -0
  1768. package/node_modules/rpc-websockets/dist/index.cjs +936 -0
  1769. package/node_modules/rpc-websockets/dist/index.cjs.map +1 -0
  1770. package/node_modules/rpc-websockets/dist/index.d.mts +452 -0
  1771. package/node_modules/rpc-websockets/dist/index.d.ts +452 -0
  1772. package/node_modules/rpc-websockets/dist/index.mjs +924 -0
  1773. package/node_modules/rpc-websockets/dist/index.mjs.map +1 -0
  1774. package/node_modules/rpc-websockets/node_modules/@types/ws/LICENSE +21 -0
  1775. package/node_modules/rpc-websockets/node_modules/@types/ws/README.md +15 -0
  1776. package/node_modules/rpc-websockets/node_modules/@types/ws/index.d.mts +451 -0
  1777. package/node_modules/rpc-websockets/node_modules/@types/ws/index.d.ts +445 -0
  1778. package/node_modules/rpc-websockets/node_modules/@types/ws/package.json +72 -0
  1779. package/node_modules/rpc-websockets/node_modules/utf-8-validate/LICENSE +51 -0
  1780. package/node_modules/rpc-websockets/node_modules/utf-8-validate/README.md +52 -0
  1781. package/node_modules/rpc-websockets/node_modules/utf-8-validate/binding.gyp +22 -0
  1782. package/node_modules/rpc-websockets/node_modules/utf-8-validate/deps/is_utf8/LICENSE-MIT +18 -0
  1783. package/node_modules/rpc-websockets/node_modules/utf-8-validate/deps/is_utf8/include/is_utf8.h +10 -0
  1784. package/node_modules/rpc-websockets/node_modules/utf-8-validate/deps/is_utf8/src/is_utf8.cpp +6755 -0
  1785. package/node_modules/rpc-websockets/node_modules/utf-8-validate/fallback.js +62 -0
  1786. package/node_modules/rpc-websockets/node_modules/utf-8-validate/index.js +7 -0
  1787. package/node_modules/rpc-websockets/node_modules/utf-8-validate/package.json +47 -0
  1788. package/node_modules/rpc-websockets/node_modules/utf-8-validate/prebuilds/darwin-arm64/utf-8-validate.node +0 -0
  1789. package/node_modules/rpc-websockets/node_modules/utf-8-validate/prebuilds/darwin-x64/utf-8-validate.node +0 -0
  1790. package/node_modules/rpc-websockets/node_modules/utf-8-validate/prebuilds/linux-x64/utf-8-validate.musl.node +0 -0
  1791. package/node_modules/rpc-websockets/node_modules/utf-8-validate/prebuilds/linux-x64/utf-8-validate.node +0 -0
  1792. package/node_modules/rpc-websockets/node_modules/utf-8-validate/prebuilds/win32-ia32/utf-8-validate.node +0 -0
  1793. package/node_modules/rpc-websockets/node_modules/utf-8-validate/prebuilds/win32-x64/utf-8-validate.node +0 -0
  1794. package/node_modules/rpc-websockets/node_modules/utf-8-validate/src/validation.cc +40 -0
  1795. package/node_modules/rpc-websockets/package.json +91 -0
  1796. package/node_modules/safe-buffer/LICENSE +21 -0
  1797. package/node_modules/safe-buffer/README.md +584 -0
  1798. package/node_modules/safe-buffer/index.d.ts +187 -0
  1799. package/node_modules/safe-buffer/index.js +65 -0
  1800. package/node_modules/safe-buffer/package.json +51 -0
  1801. package/node_modules/stream-chain/LICENSE +11 -0
  1802. package/node_modules/stream-chain/README.md +334 -0
  1803. package/node_modules/stream-chain/defs.js +22 -0
  1804. package/node_modules/stream-chain/index.js +203 -0
  1805. package/node_modules/stream-chain/package.json +31 -0
  1806. package/node_modules/stream-chain/utils/FromIterable.js +94 -0
  1807. package/node_modules/stream-chain/utils/Reduce.js +40 -0
  1808. package/node_modules/stream-chain/utils/asFun.js +85 -0
  1809. package/node_modules/stream-chain/utils/asGen.js +77 -0
  1810. package/node_modules/stream-chain/utils/comp.js +20 -0
  1811. package/node_modules/stream-chain/utils/fold.js +43 -0
  1812. package/node_modules/stream-chain/utils/gen.js +24 -0
  1813. package/node_modules/stream-chain/utils/scan.js +41 -0
  1814. package/node_modules/stream-chain/utils/skip.js +32 -0
  1815. package/node_modules/stream-chain/utils/skipWhile.js +46 -0
  1816. package/node_modules/stream-chain/utils/take.js +39 -0
  1817. package/node_modules/stream-chain/utils/takeWhile.js +47 -0
  1818. package/node_modules/stream-json/Assembler.js +154 -0
  1819. package/node_modules/stream-json/Disassembler.js +209 -0
  1820. package/node_modules/stream-json/Emitter.js +22 -0
  1821. package/node_modules/stream-json/LICENSE +34 -0
  1822. package/node_modules/stream-json/Parser.js +545 -0
  1823. package/node_modules/stream-json/README.md +128 -0
  1824. package/node_modules/stream-json/Stringer.js +153 -0
  1825. package/node_modules/stream-json/filters/Filter.js +130 -0
  1826. package/node_modules/stream-json/filters/FilterBase.js +201 -0
  1827. package/node_modules/stream-json/filters/Ignore.js +24 -0
  1828. package/node_modules/stream-json/filters/Pick.js +58 -0
  1829. package/node_modules/stream-json/filters/Replace.js +115 -0
  1830. package/node_modules/stream-json/index.js +11 -0
  1831. package/node_modules/stream-json/jsonl/Parser.js +131 -0
  1832. package/node_modules/stream-json/jsonl/Stringer.js +29 -0
  1833. package/node_modules/stream-json/package.json +45 -0
  1834. package/node_modules/stream-json/streamers/StreamArray.js +44 -0
  1835. package/node_modules/stream-json/streamers/StreamBase.js +101 -0
  1836. package/node_modules/stream-json/streamers/StreamObject.js +43 -0
  1837. package/node_modules/stream-json/streamers/StreamValues.js +33 -0
  1838. package/node_modules/stream-json/utils/Batch.js +44 -0
  1839. package/node_modules/stream-json/utils/Utf8Stream.js +53 -0
  1840. package/node_modules/stream-json/utils/Verifier.js +485 -0
  1841. package/node_modules/stream-json/utils/emit.js +5 -0
  1842. package/node_modules/stream-json/utils/withParser.js +10 -0
  1843. package/node_modules/superstruct/License.md +9 -0
  1844. package/node_modules/superstruct/Readme.md +230 -0
  1845. package/node_modules/superstruct/dist/error.d.ts +33 -0
  1846. package/node_modules/superstruct/dist/error.d.ts.map +1 -0
  1847. package/node_modules/superstruct/dist/index.cjs +1084 -0
  1848. package/node_modules/superstruct/dist/index.cjs.map +1 -0
  1849. package/node_modules/superstruct/dist/index.d.ts +7 -0
  1850. package/node_modules/superstruct/dist/index.d.ts.map +1 -0
  1851. package/node_modules/superstruct/dist/index.mjs +1026 -0
  1852. package/node_modules/superstruct/dist/index.mjs.map +1 -0
  1853. package/node_modules/superstruct/dist/struct.d.ts +119 -0
  1854. package/node_modules/superstruct/dist/struct.d.ts.map +1 -0
  1855. package/node_modules/superstruct/dist/structs/coercions.d.ts +29 -0
  1856. package/node_modules/superstruct/dist/structs/coercions.d.ts.map +1 -0
  1857. package/node_modules/superstruct/dist/structs/refinements.d.ts +38 -0
  1858. package/node_modules/superstruct/dist/structs/refinements.d.ts.map +1 -0
  1859. package/node_modules/superstruct/dist/structs/types.d.ts +142 -0
  1860. package/node_modules/superstruct/dist/structs/types.d.ts.map +1 -0
  1861. package/node_modules/superstruct/dist/structs/utilities.d.ts +66 -0
  1862. package/node_modules/superstruct/dist/structs/utilities.d.ts.map +1 -0
  1863. package/node_modules/superstruct/dist/utils.d.ts +144 -0
  1864. package/node_modules/superstruct/dist/utils.d.ts.map +1 -0
  1865. package/node_modules/superstruct/package.json +85 -0
  1866. package/node_modules/text-encoding-utf-8/LICENSE.md +29 -0
  1867. package/node_modules/text-encoding-utf-8/README.md +63 -0
  1868. package/node_modules/text-encoding-utf-8/lib/encoding.js +655 -0
  1869. package/node_modules/text-encoding-utf-8/lib/encoding.lib.js +642 -0
  1870. package/node_modules/text-encoding-utf-8/lib/encoding.lib.mjs +665 -0
  1871. package/node_modules/text-encoding-utf-8/package.json +26 -0
  1872. package/node_modules/text-encoding-utf-8/src/encoding.js +665 -0
  1873. package/node_modules/text-encoding-utf-8/src/polyfill.js +21 -0
  1874. package/node_modules/tr46/.npmignore +4 -0
  1875. package/node_modules/tr46/index.js +193 -0
  1876. package/node_modules/tr46/lib/.gitkeep +0 -0
  1877. package/node_modules/tr46/lib/mappingTable.json +1 -0
  1878. package/node_modules/tr46/package.json +31 -0
  1879. package/node_modules/tslib/CopyrightNotice.txt +15 -0
  1880. package/node_modules/tslib/LICENSE.txt +12 -0
  1881. package/node_modules/tslib/README.md +164 -0
  1882. package/node_modules/tslib/SECURITY.md +41 -0
  1883. package/node_modules/tslib/modules/index.d.ts +38 -0
  1884. package/node_modules/tslib/modules/index.js +70 -0
  1885. package/node_modules/tslib/modules/package.json +3 -0
  1886. package/node_modules/tslib/package.json +47 -0
  1887. package/node_modules/tslib/tslib.d.ts +460 -0
  1888. package/node_modules/tslib/tslib.es6.html +1 -0
  1889. package/node_modules/tslib/tslib.es6.js +402 -0
  1890. package/node_modules/tslib/tslib.es6.mjs +401 -0
  1891. package/node_modules/tslib/tslib.html +1 -0
  1892. package/node_modules/tslib/tslib.js +484 -0
  1893. package/node_modules/uuid/LICENSE.md +9 -0
  1894. package/node_modules/uuid/README.md +510 -0
  1895. package/node_modules/uuid/dist/cjs/index.d.ts +15 -0
  1896. package/node_modules/uuid/dist/cjs/index.js +31 -0
  1897. package/node_modules/uuid/dist/cjs/max.d.ts +2 -0
  1898. package/node_modules/uuid/dist/cjs/max.js +3 -0
  1899. package/node_modules/uuid/dist/cjs/md5.d.ts +4 -0
  1900. package/node_modules/uuid/dist/cjs/md5.js +13 -0
  1901. package/node_modules/uuid/dist/cjs/native.d.ts +6 -0
  1902. package/node_modules/uuid/dist/cjs/native.js +4 -0
  1903. package/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
  1904. package/node_modules/uuid/dist/cjs/nil.js +3 -0
  1905. package/node_modules/uuid/dist/cjs/package.json +1 -0
  1906. package/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
  1907. package/node_modules/uuid/dist/cjs/parse.js +11 -0
  1908. package/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
  1909. package/node_modules/uuid/dist/cjs/regex.js +3 -0
  1910. package/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
  1911. package/node_modules/uuid/dist/cjs/rng.js +13 -0
  1912. package/node_modules/uuid/dist/cjs/sha1.d.ts +4 -0
  1913. package/node_modules/uuid/dist/cjs/sha1.js +13 -0
  1914. package/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
  1915. package/node_modules/uuid/dist/cjs/stringify.js +39 -0
  1916. package/node_modules/uuid/dist/cjs/types.d.ts +21 -0
  1917. package/node_modules/uuid/dist/cjs/types.js +2 -0
  1918. package/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
  1919. package/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
  1920. package/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
  1921. package/node_modules/uuid/dist/cjs/v1.js +87 -0
  1922. package/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
  1923. package/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
  1924. package/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
  1925. package/node_modules/uuid/dist/cjs/v3.js +14 -0
  1926. package/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
  1927. package/node_modules/uuid/dist/cjs/v35.js +44 -0
  1928. package/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
  1929. package/node_modules/uuid/dist/cjs/v4.js +29 -0
  1930. package/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
  1931. package/node_modules/uuid/dist/cjs/v5.js +14 -0
  1932. package/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
  1933. package/node_modules/uuid/dist/cjs/v6.js +22 -0
  1934. package/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
  1935. package/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
  1936. package/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
  1937. package/node_modules/uuid/dist/cjs/v7.js +69 -0
  1938. package/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
  1939. package/node_modules/uuid/dist/cjs/validate.js +7 -0
  1940. package/node_modules/uuid/dist/cjs/version.d.ts +2 -0
  1941. package/node_modules/uuid/dist/cjs/version.js +10 -0
  1942. package/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
  1943. package/node_modules/uuid/dist/cjs-browser/index.js +31 -0
  1944. package/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
  1945. package/node_modules/uuid/dist/cjs-browser/max.js +3 -0
  1946. package/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
  1947. package/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
  1948. package/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
  1949. package/node_modules/uuid/dist/cjs-browser/native.js +4 -0
  1950. package/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
  1951. package/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
  1952. package/node_modules/uuid/dist/cjs-browser/package.json +1 -0
  1953. package/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
  1954. package/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
  1955. package/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
  1956. package/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
  1957. package/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
  1958. package/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
  1959. package/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
  1960. package/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
  1961. package/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
  1962. package/node_modules/uuid/dist/cjs-browser/stringify.js +39 -0
  1963. package/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
  1964. package/node_modules/uuid/dist/cjs-browser/types.js +2 -0
  1965. package/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
  1966. package/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
  1967. package/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
  1968. package/node_modules/uuid/dist/cjs-browser/v1.js +87 -0
  1969. package/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
  1970. package/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
  1971. package/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
  1972. package/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
  1973. package/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
  1974. package/node_modules/uuid/dist/cjs-browser/v35.js +44 -0
  1975. package/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
  1976. package/node_modules/uuid/dist/cjs-browser/v4.js +29 -0
  1977. package/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
  1978. package/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
  1979. package/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
  1980. package/node_modules/uuid/dist/cjs-browser/v6.js +22 -0
  1981. package/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
  1982. package/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
  1983. package/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
  1984. package/node_modules/uuid/dist/cjs-browser/v7.js +69 -0
  1985. package/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
  1986. package/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
  1987. package/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
  1988. package/node_modules/uuid/dist/cjs-browser/version.js +10 -0
  1989. package/node_modules/uuid/dist/esm/bin/uuid +2 -0
  1990. package/node_modules/uuid/dist/esm/index.d.ts +15 -0
  1991. package/node_modules/uuid/dist/esm/index.js +14 -0
  1992. package/node_modules/uuid/dist/esm/max.d.ts +2 -0
  1993. package/node_modules/uuid/dist/esm/max.js +1 -0
  1994. package/node_modules/uuid/dist/esm/md5.d.ts +4 -0
  1995. package/node_modules/uuid/dist/esm/md5.js +11 -0
  1996. package/node_modules/uuid/dist/esm/native.d.ts +6 -0
  1997. package/node_modules/uuid/dist/esm/native.js +2 -0
  1998. package/node_modules/uuid/dist/esm/nil.d.ts +2 -0
  1999. package/node_modules/uuid/dist/esm/nil.js +1 -0
  2000. package/node_modules/uuid/dist/esm/parse.d.ts +2 -0
  2001. package/node_modules/uuid/dist/esm/parse.js +9 -0
  2002. package/node_modules/uuid/dist/esm/regex.d.ts +2 -0
  2003. package/node_modules/uuid/dist/esm/regex.js +1 -0
  2004. package/node_modules/uuid/dist/esm/rng.d.ts +1 -0
  2005. package/node_modules/uuid/dist/esm/rng.js +10 -0
  2006. package/node_modules/uuid/dist/esm/sha1.d.ts +4 -0
  2007. package/node_modules/uuid/dist/esm/sha1.js +11 -0
  2008. package/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
  2009. package/node_modules/uuid/dist/esm/stringify.js +35 -0
  2010. package/node_modules/uuid/dist/esm/types.d.ts +21 -0
  2011. package/node_modules/uuid/dist/esm/types.js +1 -0
  2012. package/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
  2013. package/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
  2014. package/node_modules/uuid/dist/esm/v1.d.ts +11 -0
  2015. package/node_modules/uuid/dist/esm/v1.js +83 -0
  2016. package/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
  2017. package/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
  2018. package/node_modules/uuid/dist/esm/v3.d.ts +9 -0
  2019. package/node_modules/uuid/dist/esm/v3.js +9 -0
  2020. package/node_modules/uuid/dist/esm/v35.d.ts +7 -0
  2021. package/node_modules/uuid/dist/esm/v35.js +39 -0
  2022. package/node_modules/uuid/dist/esm/v4.d.ts +4 -0
  2023. package/node_modules/uuid/dist/esm/v4.js +27 -0
  2024. package/node_modules/uuid/dist/esm/v5.d.ts +9 -0
  2025. package/node_modules/uuid/dist/esm/v5.js +9 -0
  2026. package/node_modules/uuid/dist/esm/v6.d.ts +4 -0
  2027. package/node_modules/uuid/dist/esm/v6.js +20 -0
  2028. package/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
  2029. package/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
  2030. package/node_modules/uuid/dist/esm/v7.d.ts +9 -0
  2031. package/node_modules/uuid/dist/esm/v7.js +65 -0
  2032. package/node_modules/uuid/dist/esm/validate.d.ts +2 -0
  2033. package/node_modules/uuid/dist/esm/validate.js +5 -0
  2034. package/node_modules/uuid/dist/esm/version.d.ts +2 -0
  2035. package/node_modules/uuid/dist/esm/version.js +8 -0
  2036. package/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
  2037. package/node_modules/uuid/dist/esm-browser/index.js +14 -0
  2038. package/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
  2039. package/node_modules/uuid/dist/esm-browser/max.js +1 -0
  2040. package/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
  2041. package/node_modules/uuid/dist/esm-browser/md5.js +135 -0
  2042. package/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
  2043. package/node_modules/uuid/dist/esm-browser/native.js +2 -0
  2044. package/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
  2045. package/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  2046. package/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
  2047. package/node_modules/uuid/dist/esm-browser/parse.js +9 -0
  2048. package/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
  2049. package/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  2050. package/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
  2051. package/node_modules/uuid/dist/esm-browser/rng.js +11 -0
  2052. package/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
  2053. package/node_modules/uuid/dist/esm-browser/sha1.js +70 -0
  2054. package/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
  2055. package/node_modules/uuid/dist/esm-browser/stringify.js +35 -0
  2056. package/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
  2057. package/node_modules/uuid/dist/esm-browser/types.js +1 -0
  2058. package/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
  2059. package/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
  2060. package/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
  2061. package/node_modules/uuid/dist/esm-browser/v1.js +83 -0
  2062. package/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
  2063. package/node_modules/uuid/dist/esm-browser/v1ToV6.js +10 -0
  2064. package/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
  2065. package/node_modules/uuid/dist/esm-browser/v3.js +9 -0
  2066. package/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
  2067. package/node_modules/uuid/dist/esm-browser/v35.js +39 -0
  2068. package/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
  2069. package/node_modules/uuid/dist/esm-browser/v4.js +27 -0
  2070. package/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
  2071. package/node_modules/uuid/dist/esm-browser/v5.js +9 -0
  2072. package/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
  2073. package/node_modules/uuid/dist/esm-browser/v6.js +20 -0
  2074. package/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
  2075. package/node_modules/uuid/dist/esm-browser/v6ToV1.js +10 -0
  2076. package/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
  2077. package/node_modules/uuid/dist/esm-browser/v7.js +65 -0
  2078. package/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
  2079. package/node_modules/uuid/dist/esm-browser/validate.js +5 -0
  2080. package/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
  2081. package/node_modules/uuid/dist/esm-browser/version.js +8 -0
  2082. package/node_modules/uuid/package.json +132 -0
  2083. package/node_modules/webidl-conversions/LICENSE.md +12 -0
  2084. package/node_modules/webidl-conversions/README.md +53 -0
  2085. package/node_modules/webidl-conversions/lib/index.js +189 -0
  2086. package/node_modules/webidl-conversions/package.json +23 -0
  2087. package/node_modules/whatwg-url/LICENSE.txt +21 -0
  2088. package/node_modules/whatwg-url/README.md +67 -0
  2089. package/node_modules/whatwg-url/lib/URL-impl.js +200 -0
  2090. package/node_modules/whatwg-url/lib/URL.js +196 -0
  2091. package/node_modules/whatwg-url/lib/public-api.js +11 -0
  2092. package/node_modules/whatwg-url/lib/url-state-machine.js +1297 -0
  2093. package/node_modules/whatwg-url/lib/utils.js +20 -0
  2094. package/node_modules/whatwg-url/package.json +32 -0
  2095. package/node_modules/ws/LICENSE +20 -0
  2096. package/node_modules/ws/README.md +548 -0
  2097. package/node_modules/ws/browser.js +8 -0
  2098. package/node_modules/ws/index.js +22 -0
  2099. package/node_modules/ws/lib/buffer-util.js +131 -0
  2100. package/node_modules/ws/lib/constants.js +19 -0
  2101. package/node_modules/ws/lib/event-target.js +292 -0
  2102. package/node_modules/ws/lib/extension.js +203 -0
  2103. package/node_modules/ws/lib/limiter.js +55 -0
  2104. package/node_modules/ws/lib/permessage-deflate.js +530 -0
  2105. package/node_modules/ws/lib/receiver.js +743 -0
  2106. package/node_modules/ws/lib/sender.js +607 -0
  2107. package/node_modules/ws/lib/stream.js +161 -0
  2108. package/node_modules/ws/lib/subprotocol.js +62 -0
  2109. package/node_modules/ws/lib/validation.js +152 -0
  2110. package/node_modules/ws/lib/websocket-server.js +562 -0
  2111. package/node_modules/ws/lib/websocket.js +1407 -0
  2112. package/node_modules/ws/package.json +74 -0
  2113. package/node_modules/ws/wrapper.mjs +21 -0
  2114. package/package.json +13 -1
  2115. package/src/attestation-request.js +176 -0
  2116. package/src/borsh-reader.d.ts +3 -1
  2117. package/src/borsh-reader.js +23 -4
  2118. package/src/constants.js +27 -4
  2119. package/src/index.d.ts +222 -0
  2120. package/src/index.js +20 -71
  2121. package/src/runtime-authorization-evidence.js +350 -0
  2122. package/src/runtime-policy-adapter.js +342 -11
  2123. package/src/v3-sdk.d.ts +3 -1
  2124. package/src/v3-sdk.js +2 -70
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","sources":["../src/error.ts","../src/utils.ts","../src/struct.ts","../src/structs/utilities.ts","../src/structs/types.ts","../src/structs/coercions.ts","../src/structs/refinements.ts"],"sourcesContent":[null,null,null,null,null,null,null],"names":[],"mappings":"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"}
@@ -0,0 +1,119 @@
1
+ import { StructSchema } from './utils.js';
2
+ import { StructError, Failure } from './error.js';
3
+ /**
4
+ * `Struct` objects encapsulate the validation logic for a specific type of
5
+ * values. Once constructed, you use the `assert`, `is` or `validate` helpers to
6
+ * validate unknown input data against the struct.
7
+ */
8
+ export declare class Struct<T = unknown, S = unknown> {
9
+ readonly TYPE: T;
10
+ type: string;
11
+ schema: S;
12
+ coercer: (value: unknown, context: Context) => unknown;
13
+ validator: (value: unknown, context: Context) => Iterable<Failure>;
14
+ refiner: (value: T, context: Context) => Iterable<Failure>;
15
+ entries: (value: unknown, context: Context) => Iterable<[string | number, unknown, Struct<any> | Struct<never>]>;
16
+ constructor(props: {
17
+ type: string;
18
+ schema: S;
19
+ coercer?: Coercer;
20
+ validator?: Validator;
21
+ refiner?: Refiner<T>;
22
+ entries?: Struct<T, S>['entries'];
23
+ });
24
+ /**
25
+ * Assert that a value passes the struct's validation, throwing if it doesn't.
26
+ */
27
+ assert(value: unknown, message?: string): asserts value is T;
28
+ /**
29
+ * Create a value with the struct's coercion logic, then validate it.
30
+ */
31
+ create(value: unknown, message?: string): T;
32
+ /**
33
+ * Check if a value passes the struct's validation.
34
+ */
35
+ is(value: unknown): value is T;
36
+ /**
37
+ * Mask a value, coercing and validating it, but returning only the subset of
38
+ * properties defined by the struct's schema. Masking applies recursively to
39
+ * props of `object` structs only.
40
+ */
41
+ mask(value: unknown, message?: string): T;
42
+ /**
43
+ * Validate a value with the struct's validation logic, returning a tuple
44
+ * representing the result.
45
+ *
46
+ * You may optionally pass `true` for the `coerce` argument to coerce
47
+ * the value before attempting to validate it. If you do, the result will
48
+ * contain the coerced result when successful. Also, `mask` will turn on
49
+ * masking of the unknown `object` props recursively if passed.
50
+ */
51
+ validate(value: unknown, options?: {
52
+ coerce?: boolean;
53
+ mask?: boolean;
54
+ message?: string;
55
+ }): [StructError, undefined] | [undefined, T];
56
+ }
57
+ /**
58
+ * Assert that a value passes a struct, throwing if it doesn't.
59
+ */
60
+ export declare function assert<T, S>(value: unknown, struct: Struct<T, S>, message?: string): asserts value is T;
61
+ /**
62
+ * Create a value with the coercion logic of struct and validate it.
63
+ */
64
+ export declare function create<T, S>(value: unknown, struct: Struct<T, S>, message?: string): T;
65
+ /**
66
+ * Mask a value, returning only the subset of properties defined by a struct.
67
+ */
68
+ export declare function mask<T, S>(value: unknown, struct: Struct<T, S>, message?: string): T;
69
+ /**
70
+ * Check if a value passes a struct.
71
+ */
72
+ export declare function is<T, S>(value: unknown, struct: Struct<T, S>): value is T;
73
+ /**
74
+ * Validate a value against a struct, returning an error if invalid, or the
75
+ * value (with potential coercion) if valid.
76
+ */
77
+ export declare function validate<T, S>(value: unknown, struct: Struct<T, S>, options?: {
78
+ coerce?: boolean;
79
+ mask?: boolean;
80
+ message?: string;
81
+ }): [StructError, undefined] | [undefined, T];
82
+ /**
83
+ * A `Context` contains information about the current location of the
84
+ * validation inside the initial input value. It also carries `mask`
85
+ * since it's a run-time flag determining how the validation was invoked
86
+ * (via `mask()` or via `validate()`), plus it applies recursively
87
+ * to all of the nested structs.
88
+ */
89
+ export type Context = {
90
+ branch: Array<any>;
91
+ path: Array<any>;
92
+ mask?: boolean;
93
+ };
94
+ /**
95
+ * A type utility to extract the type from a `Struct` class.
96
+ */
97
+ export type Infer<T extends Struct<any, any>> = T['TYPE'];
98
+ /**
99
+ * A type utility to describe that a struct represents a TypeScript type.
100
+ */
101
+ export type Describe<T> = Struct<T, StructSchema<T>>;
102
+ /**
103
+ * A `Result` is returned from validation functions.
104
+ */
105
+ export type Result = boolean | string | Partial<Failure> | Iterable<boolean | string | Partial<Failure>>;
106
+ /**
107
+ * A `Coercer` takes an unknown value and optionally coerces it.
108
+ */
109
+ export type Coercer<T = unknown> = (value: T, context: Context) => unknown;
110
+ /**
111
+ * A `Validator` takes an unknown value and validates it.
112
+ */
113
+ export type Validator = (value: unknown, context: Context) => Result;
114
+ /**
115
+ * A `Refiner` takes a value of a known type and validates it against a further
116
+ * constraint.
117
+ */
118
+ export type Refiner<T> = (value: T, context: Context) => Result;
119
+ //# sourceMappingURL=struct.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"struct.d.ts","sourceRoot":"","sources":["../src/struct.ts"],"names":[],"mappings":"AAAA,OAAO,EAA6B,YAAY,EAAO,MAAM,YAAY,CAAA;AACzE,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA;AAEjD;;;;GAIG;AAEH,qBAAa,MAAM,CAAC,CAAC,GAAG,OAAO,EAAE,CAAC,GAAG,OAAO;IAC1C,QAAQ,CAAC,IAAI,EAAG,CAAC,CAAA;IACjB,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,CAAC,CAAA;IACT,OAAO,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,KAAK,OAAO,CAAA;IACtD,SAAS,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,KAAK,QAAQ,CAAC,OAAO,CAAC,CAAA;IAClE,OAAO,EAAE,CAAC,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,OAAO,KAAK,QAAQ,CAAC,OAAO,CAAC,CAAA;IAC1D,OAAO,EAAE,CACP,KAAK,EAAE,OAAO,EACd,OAAO,EAAE,OAAO,KACb,QAAQ,CAAC,CAAC,MAAM,GAAG,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;gBAE1D,KAAK,EAAE;QACjB,IAAI,EAAE,MAAM,CAAA;QACZ,MAAM,EAAE,CAAC,CAAA;QACT,OAAO,CAAC,EAAE,OAAO,CAAA;QACjB,SAAS,CAAC,EAAE,SAAS,CAAA;QACrB,OAAO,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAA;QACpB,OAAO,CAAC,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;KAClC;IAkCD;;OAEG;IAEH,MAAM,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,IAAI,CAAC;IAI5D;;OAEG;IAEH,MAAM,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,CAAC;IAI3C;;OAEG;IAEH,EAAE,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,CAAC;IAI9B;;;;OAIG;IAEH,IAAI,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,CAAC;IAIzC;;;;;;;;OAQG;IAEH,QAAQ,CACN,KAAK,EAAE,OAAO,EACd,OAAO,GAAE;QACP,MAAM,CAAC,EAAE,OAAO,CAAA;QAChB,IAAI,CAAC,EAAE,OAAO,CAAA;QACd,OAAO,CAAC,EAAE,MAAM,CAAA;KACZ,GACL,CAAC,WAAW,EAAE,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC,CAAC;CAG7C;AAED;;GAEG;AAEH,wBAAgB,MAAM,CAAC,CAAC,EAAE,CAAC,EACzB,KAAK,EAAE,OAAO,EACd,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EACpB,OAAO,CAAC,EAAE,MAAM,GACf,OAAO,CAAC,KAAK,IAAI,CAAC,CAMpB;AAED;;GAEG;AAEH,wBAAgB,MAAM,CAAC,CAAC,EAAE,CAAC,EACzB,KAAK,EAAE,OAAO,EACd,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EACpB,OAAO,CAAC,EAAE,MAAM,GACf,CAAC,CAQH;AAED;;GAEG;AAEH,wBAAgB,IAAI,CAAC,CAAC,EAAE,CAAC,EACvB,KAAK,EAAE,OAAO,EACd,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EACpB,OAAO,CAAC,EAAE,MAAM,GACf,CAAC,CAQH;AAED;;GAEG;AAEH,wBAAgB,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,KAAK,IAAI,CAAC,CAGzE;AAED;;;GAGG;AAEH,wBAAgB,QAAQ,CAAC,CAAC,EAAE,CAAC,EAC3B,KAAK,EAAE,OAAO,EACd,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EACpB,OAAO,GAAE;IACP,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;CACZ,GACL,CAAC,WAAW,EAAE,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC,CAAC,CAkB3C;AAED;;;;;;GAMG;AAEH,MAAM,MAAM,OAAO,GAAG;IACpB,MAAM,EAAE,KAAK,CAAC,GAAG,CAAC,CAAA;IAClB,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,CAAA;IAChB,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA;AAED;;GAEG;AAEH,MAAM,MAAM,KAAK,CAAC,CAAC,SAAS,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAA;AAEzD;;GAEG;AAEH,MAAM,MAAM,QAAQ,CAAC,CAAC,IAAI,MAAM,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,CAAA;AAEpD;;GAEG;AAEH,MAAM,MAAM,MAAM,GACd,OAAO,GACP,MAAM,GACN,OAAO,CAAC,OAAO,CAAC,GAChB,QAAQ,CAAC,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC,CAAA;AAEjD;;GAEG;AAEH,MAAM,MAAM,OAAO,CAAC,CAAC,GAAG,OAAO,IAAI,CAAC,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,OAAO,KAAK,OAAO,CAAA;AAE1E;;GAEG;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,KAAK,MAAM,CAAA;AAEpE;;;GAGG;AAEH,MAAM,MAAM,OAAO,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,OAAO,KAAK,MAAM,CAAA"}
@@ -0,0 +1,29 @@
1
+ import { Struct, Coercer } from '../struct.js';
2
+ /**
3
+ * Augment a `Struct` to add an additional coercion step to its input.
4
+ *
5
+ * This allows you to transform input data before validating it, to increase the
6
+ * likelihood that it passes validation—for example for default values, parsing
7
+ * different formats, etc.
8
+ *
9
+ * Note: You must use `create(value, Struct)` on the value to have the coercion
10
+ * take effect! Using simply `assert()` or `is()` will not use coercion.
11
+ */
12
+ export declare function coerce<T, S, C>(struct: Struct<T, S>, condition: Struct<C, any>, coercer: Coercer<C>): Struct<T, S>;
13
+ /**
14
+ * Augment a struct to replace `undefined` values with a default.
15
+ *
16
+ * Note: You must use `create(value, Struct)` on the value to have the coercion
17
+ * take effect! Using simply `assert()` or `is()` will not use coercion.
18
+ */
19
+ export declare function defaulted<T, S>(struct: Struct<T, S>, fallback: any, options?: {
20
+ strict?: boolean;
21
+ }): Struct<T, S>;
22
+ /**
23
+ * Augment a struct to trim string inputs.
24
+ *
25
+ * Note: You must use `create(value, Struct)` on the value to have the coercion
26
+ * take effect! Using simply `assert()` or `is()` will not use coercion.
27
+ */
28
+ export declare function trimmed<T, S>(struct: Struct<T, S>): Struct<T, S>;
29
+ //# sourceMappingURL=coercions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"coercions.d.ts","sourceRoot":"","sources":["../../src/structs/coercions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAM,OAAO,EAAE,MAAM,cAAc,CAAA;AAIlD;;;;;;;;;GASG;AAEH,wBAAgB,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAC5B,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EACpB,SAAS,EAAE,MAAM,CAAC,CAAC,EAAE,GAAG,CAAC,EACzB,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,GAClB,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CASd;AAED;;;;;GAKG;AAEH,wBAAgB,SAAS,CAAC,CAAC,EAAE,CAAC,EAC5B,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EACpB,QAAQ,EAAE,GAAG,EACb,OAAO,GAAE;IACP,MAAM,CAAC,EAAE,OAAO,CAAA;CACZ,GACL,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CA0Bd;AAED;;;;;GAKG;AAEH,wBAAgB,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAEhE"}
@@ -0,0 +1,38 @@
1
+ import { Struct, Refiner } from '../struct.js';
2
+ /**
3
+ * Ensure that a string, array, map, or set is empty.
4
+ */
5
+ export declare function empty<T extends string | any[] | Map<any, any> | Set<any>, S extends any>(struct: Struct<T, S>): Struct<T, S>;
6
+ /**
7
+ * Ensure that a number or date is below a threshold.
8
+ */
9
+ export declare function max<T extends number | Date, S extends any>(struct: Struct<T, S>, threshold: T, options?: {
10
+ exclusive?: boolean;
11
+ }): Struct<T, S>;
12
+ /**
13
+ * Ensure that a number or date is above a threshold.
14
+ */
15
+ export declare function min<T extends number | Date, S extends any>(struct: Struct<T, S>, threshold: T, options?: {
16
+ exclusive?: boolean;
17
+ }): Struct<T, S>;
18
+ /**
19
+ * Ensure that a string, array, map or set is not empty.
20
+ */
21
+ export declare function nonempty<T extends string | any[] | Map<any, any> | Set<any>, S extends any>(struct: Struct<T, S>): Struct<T, S>;
22
+ /**
23
+ * Ensure that a string matches a regular expression.
24
+ */
25
+ export declare function pattern<T extends string, S extends any>(struct: Struct<T, S>, regexp: RegExp): Struct<T, S>;
26
+ /**
27
+ * Ensure that a string, array, number, date, map, or set has a size (or length, or time) between `min` and `max`.
28
+ */
29
+ export declare function size<T extends string | number | Date | any[] | Map<any, any> | Set<any>, S extends any>(struct: Struct<T, S>, min: number, max?: number): Struct<T, S>;
30
+ /**
31
+ * Augment a `Struct` to add an additional refinement to the validation.
32
+ *
33
+ * The refiner function is guaranteed to receive a value of the struct's type,
34
+ * because the struct's existing validation will already have passed. This
35
+ * allows you to layer additional validation on top of existing structs.
36
+ */
37
+ export declare function refine<T, S>(struct: Struct<T, S>, name: string, refiner: Refiner<T>): Struct<T, S>;
38
+ //# sourceMappingURL=refinements.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"refinements.d.ts","sourceRoot":"","sources":["../../src/structs/refinements.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAG9C;;GAEG;AAEH,wBAAgB,KAAK,CACnB,CAAC,SAAS,MAAM,GAAG,GAAG,EAAE,GAAG,GAAG,CAAC,GAAG,EAAE,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,EACnD,CAAC,SAAS,GAAG,EACb,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAQpC;AAUD;;GAEG;AAEH,wBAAgB,GAAG,CAAC,CAAC,SAAS,MAAM,GAAG,IAAI,EAAE,CAAC,SAAS,GAAG,EACxD,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EACpB,SAAS,EAAE,CAAC,EACZ,OAAO,GAAE;IACP,SAAS,CAAC,EAAE,OAAO,CAAA;CACf,GACL,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAUd;AAED;;GAEG;AAEH,wBAAgB,GAAG,CAAC,CAAC,SAAS,MAAM,GAAG,IAAI,EAAE,CAAC,SAAS,GAAG,EACxD,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EACpB,SAAS,EAAE,CAAC,EACZ,OAAO,GAAE;IACP,SAAS,CAAC,EAAE,OAAO,CAAA;CACf,GACL,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAUd;AAED;;GAEG;AAEH,wBAAgB,QAAQ,CACtB,CAAC,SAAS,MAAM,GAAG,GAAG,EAAE,GAAG,GAAG,CAAC,GAAG,EAAE,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,EACnD,CAAC,SAAS,GAAG,EACb,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAOpC;AAED;;GAEG;AAEH,wBAAgB,OAAO,CAAC,CAAC,SAAS,MAAM,EAAE,CAAC,SAAS,GAAG,EACrD,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EACpB,MAAM,EAAE,MAAM,GACb,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAOd;AAED;;GAEG;AAEH,wBAAgB,IAAI,CAClB,CAAC,SAAS,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,GAAG,EAAE,GAAG,GAAG,CAAC,GAAG,EAAE,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,EACnE,CAAC,SAAS,GAAG,EACb,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,GAAE,MAAY,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAwBpE;AAED;;;;;;GAMG;AAEH,wBAAgB,MAAM,CAAC,CAAC,EAAE,CAAC,EACzB,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EACpB,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,GAClB,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAad"}
@@ -0,0 +1,142 @@
1
+ import { Infer, Struct } from '../struct.js';
2
+ import { ObjectSchema, ObjectType, AnyStruct, InferStructTuple, UnionToIntersection } from '../utils.js';
3
+ /**
4
+ * Ensure that any value passes validation.
5
+ */
6
+ export declare function any(): Struct<any, null>;
7
+ /**
8
+ * Ensure that a value is an array and that its elements are of a specific type.
9
+ *
10
+ * Note: If you omit the element struct, the arrays elements will not be
11
+ * iterated at all. This can be helpful for cases where performance is critical,
12
+ * and it is preferred to using `array(any())`.
13
+ */
14
+ export declare function array<T extends Struct<any>>(Element: T): Struct<Infer<T>[], T>;
15
+ export declare function array(): Struct<unknown[], undefined>;
16
+ /**
17
+ * Ensure that a value is a bigint.
18
+ */
19
+ export declare function bigint(): Struct<bigint, null>;
20
+ /**
21
+ * Ensure that a value is a boolean.
22
+ */
23
+ export declare function boolean(): Struct<boolean, null>;
24
+ /**
25
+ * Ensure that a value is a valid `Date`.
26
+ *
27
+ * Note: this also ensures that the value is *not* an invalid `Date` object,
28
+ * which can occur when parsing a date fails but still returns a `Date`.
29
+ */
30
+ export declare function date(): Struct<Date, null>;
31
+ /**
32
+ * Ensure that a value is one of a set of potential values.
33
+ *
34
+ * Note: after creating the struct, you can access the definition of the
35
+ * potential values as `struct.schema`.
36
+ */
37
+ export declare function enums<U extends number, T extends readonly U[]>(values: T): Struct<T[number], {
38
+ [K in T[number]]: K;
39
+ }>;
40
+ export declare function enums<U extends string, T extends readonly U[]>(values: T): Struct<T[number], {
41
+ [K in T[number]]: K;
42
+ }>;
43
+ /**
44
+ * Ensure that a value is a function.
45
+ */
46
+ export declare function func(): Struct<Function, null>;
47
+ /**
48
+ * Ensure that a value is an instance of a specific class.
49
+ */
50
+ export declare function instance<T extends {
51
+ new (...args: any): any;
52
+ }>(Class: T): Struct<InstanceType<T>, null>;
53
+ /**
54
+ * Ensure that a value is an integer.
55
+ */
56
+ export declare function integer(): Struct<number, null>;
57
+ /**
58
+ * Ensure that a value matches all of a set of types.
59
+ */
60
+ export declare function intersection<A extends AnyStruct, B extends AnyStruct[]>(Structs: [A, ...B]): Struct<Infer<A> & UnionToIntersection<InferStructTuple<B>[number]>, null>;
61
+ /**
62
+ * Ensure that a value is an exact value, using `===` for comparison.
63
+ */
64
+ export declare function literal<T extends boolean>(constant: T): Struct<T, T>;
65
+ export declare function literal<T extends number>(constant: T): Struct<T, T>;
66
+ export declare function literal<T extends string>(constant: T): Struct<T, T>;
67
+ export declare function literal<T>(constant: T): Struct<T, null>;
68
+ /**
69
+ * Ensure that a value is a `Map` object, and that its keys and values are of
70
+ * specific types.
71
+ */
72
+ export declare function map(): Struct<Map<unknown, unknown>, null>;
73
+ export declare function map<K, V>(Key: Struct<K>, Value: Struct<V>): Struct<Map<K, V>, null>;
74
+ /**
75
+ * Ensure that no value ever passes validation.
76
+ */
77
+ export declare function never(): Struct<never, null>;
78
+ /**
79
+ * Augment an existing struct to allow `null` values.
80
+ */
81
+ export declare function nullable<T, S>(struct: Struct<T, S>): Struct<T | null, S>;
82
+ /**
83
+ * Ensure that a value is a number.
84
+ */
85
+ export declare function number(): Struct<number, null>;
86
+ /**
87
+ * Ensure that a value is an object, that is has a known set of properties,
88
+ * and that its properties are of specific types.
89
+ *
90
+ * Note: Unrecognized properties will fail validation.
91
+ */
92
+ export declare function object(): Struct<Record<string, unknown>, null>;
93
+ export declare function object<S extends ObjectSchema>(schema: S): Struct<ObjectType<S>, S>;
94
+ /**
95
+ * Augment a struct to allow `undefined` values.
96
+ */
97
+ export declare function optional<T, S>(struct: Struct<T, S>): Struct<T | undefined, S>;
98
+ /**
99
+ * Ensure that a value is an object with keys and values of specific types, but
100
+ * without ensuring any specific shape of properties.
101
+ *
102
+ * Like TypeScript's `Record` utility.
103
+ */
104
+ export declare function record<K extends string, V>(Key: Struct<K>, Value: Struct<V>): Struct<Record<K, V>, null>;
105
+ /**
106
+ * Ensure that a value is a `RegExp`.
107
+ *
108
+ * Note: this does not test the value against the regular expression! For that
109
+ * you need to use the `pattern()` refinement.
110
+ */
111
+ export declare function regexp(): Struct<RegExp, null>;
112
+ /**
113
+ * Ensure that a value is a `Set` object, and that its elements are of a
114
+ * specific type.
115
+ */
116
+ export declare function set(): Struct<Set<unknown>, null>;
117
+ export declare function set<T>(Element: Struct<T>): Struct<Set<T>, null>;
118
+ /**
119
+ * Ensure that a value is a string.
120
+ */
121
+ export declare function string(): Struct<string, null>;
122
+ /**
123
+ * Ensure that a value is a tuple of a specific length, and that each of its
124
+ * elements is of a specific type.
125
+ */
126
+ export declare function tuple<A extends AnyStruct, B extends AnyStruct[]>(Structs: [A, ...B]): Struct<[Infer<A>, ...InferStructTuple<B>], null>;
127
+ /**
128
+ * Ensure that a value has a set of known properties of specific types.
129
+ *
130
+ * Note: Unrecognized properties are allowed and untouched. This is similar to
131
+ * how TypeScript's structural typing works.
132
+ */
133
+ export declare function type<S extends ObjectSchema>(schema: S): Struct<ObjectType<S>, S>;
134
+ /**
135
+ * Ensure that a value matches one of a set of types.
136
+ */
137
+ export declare function union<A extends AnyStruct, B extends AnyStruct[]>(Structs: [A, ...B]): Struct<Infer<A> | InferStructTuple<B>[number], null>;
138
+ /**
139
+ * Ensure that any value passes validation, without widening its type to `any`.
140
+ */
141
+ export declare function unknown(): Struct<unknown, null>;
142
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/structs/types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,66 @@
1
+ import { Context, Struct, Validator } from '../struct.js';
2
+ import { Assign, ObjectSchema, ObjectType, PartialObjectSchema } from '../utils.js';
3
+ /**
4
+ * Create a new struct that combines the properties properties from multiple
5
+ * object or type structs. Its return type will match the first parameter's type.
6
+ *
7
+ * Like JavaScript's `Object.assign` utility.
8
+ */
9
+ export declare function assign<A extends ObjectSchema, B extends ObjectSchema>(A: Struct<ObjectType<A>, A>, B: Struct<ObjectType<B>, B>): Struct<ObjectType<Assign<A, B>>, Assign<A, B>>;
10
+ export declare function assign<A extends ObjectSchema, B extends ObjectSchema, C extends ObjectSchema>(A: Struct<ObjectType<A>, A>, B: Struct<ObjectType<B>, B>, C: Struct<ObjectType<C>, C>): Struct<ObjectType<Assign<Assign<A, B>, C>>, Assign<Assign<A, B>, C>>;
11
+ export declare function assign<A extends ObjectSchema, B extends ObjectSchema, C extends ObjectSchema, D extends ObjectSchema>(A: Struct<ObjectType<A>, A>, B: Struct<ObjectType<B>, B>, C: Struct<ObjectType<C>, C>, D: Struct<ObjectType<D>, D>): Struct<ObjectType<Assign<Assign<Assign<A, B>, C>, D>>, Assign<Assign<Assign<A, B>, C>, D>>;
12
+ export declare function assign<A extends ObjectSchema, B extends ObjectSchema, C extends ObjectSchema, D extends ObjectSchema, E extends ObjectSchema>(A: Struct<ObjectType<A>, A>, B: Struct<ObjectType<B>, B>, C: Struct<ObjectType<C>, C>, D: Struct<ObjectType<D>, D>, E: Struct<ObjectType<E>, E>): Struct<ObjectType<Assign<Assign<Assign<Assign<A, B>, C>, D>, E>>, Assign<Assign<Assign<Assign<A, B>, C>, D>, E>>;
13
+ /**
14
+ * Define a new struct type with a custom validation function.
15
+ */
16
+ export declare function define<T>(name: string, validator: Validator): Struct<T, null>;
17
+ /**
18
+ * Create a new struct based on an existing struct, but the value is allowed to
19
+ * be `undefined`. `log` will be called if the value is not `undefined`.
20
+ */
21
+ export declare function deprecated<T>(struct: Struct<T>, log: (value: unknown, ctx: Context) => void): Struct<T>;
22
+ /**
23
+ * Create a struct with dynamic validation logic.
24
+ *
25
+ * The callback will receive the value currently being validated, and must
26
+ * return a struct object to validate it with. This can be useful to model
27
+ * validation logic that changes based on its input.
28
+ */
29
+ export declare function dynamic<T>(fn: (value: unknown, ctx: Context) => Struct<T, any>): Struct<T, null>;
30
+ /**
31
+ * Create a struct with lazily evaluated validation logic.
32
+ *
33
+ * The first time validation is run with the struct, the callback will be called
34
+ * and must return a struct object to use. This is useful for cases where you
35
+ * want to have self-referential structs for nested data structures to avoid a
36
+ * circular definition problem.
37
+ */
38
+ export declare function lazy<T>(fn: () => Struct<T, any>): Struct<T, null>;
39
+ /**
40
+ * Create a new struct based on an existing object struct, but excluding
41
+ * specific properties.
42
+ *
43
+ * Like TypeScript's `Omit` utility.
44
+ */
45
+ export declare function omit<S extends ObjectSchema, K extends keyof S>(struct: Struct<ObjectType<S>, S>, keys: K[]): Struct<ObjectType<Omit<S, K>>, Omit<S, K>>;
46
+ /**
47
+ * Create a new struct based on an existing object struct, but with all of its
48
+ * properties allowed to be `undefined`.
49
+ *
50
+ * Like TypeScript's `Partial` utility.
51
+ */
52
+ export declare function partial<S extends ObjectSchema>(struct: Struct<ObjectType<S>, S> | S): Struct<ObjectType<PartialObjectSchema<S>>, PartialObjectSchema<S>>;
53
+ /**
54
+ * Create a new struct based on an existing object struct, but only including
55
+ * specific properties.
56
+ *
57
+ * Like TypeScript's `Pick` utility.
58
+ */
59
+ export declare function pick<S extends ObjectSchema, K extends keyof S>(struct: Struct<ObjectType<S>, S>, keys: K[]): Struct<ObjectType<Pick<S, K>>, Pick<S, K>>;
60
+ /**
61
+ * Define a new struct type with a custom validation function.
62
+ *
63
+ * @deprecated This function has been renamed to `define`.
64
+ */
65
+ export declare function struct<T>(name: string, validator: Validator): Struct<T, null>;
66
+ //# sourceMappingURL=utilities.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utilities.d.ts","sourceRoot":"","sources":["../../src/structs/utilities.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,144 @@
1
+ import { Struct, Infer, Result, Context, Describe } from './struct.js';
2
+ import { Failure } from './error.js';
3
+ /**
4
+ * Check if a value is a plain object.
5
+ */
6
+ export declare function isObject(x: unknown): x is object;
7
+ /**
8
+ * Check if a value is a non-array object.
9
+ */
10
+ export declare function isNonArrayObject(x: unknown): x is object;
11
+ /**
12
+ * Check if a value is a plain object.
13
+ */
14
+ export declare function isPlainObject(x: unknown): x is {
15
+ [key: string]: any;
16
+ };
17
+ /**
18
+ * Return a value as a printable string.
19
+ */
20
+ export declare function print(value: any): string;
21
+ /**
22
+ * Shifts (removes and returns) the first value from the `input` iterator.
23
+ * Like `Array.prototype.shift()` but for an `Iterator`.
24
+ */
25
+ export declare function shiftIterator<T>(input: Iterator<T>): T | undefined;
26
+ /**
27
+ * Convert a single validation result to a failure.
28
+ */
29
+ export declare function toFailure<T, S>(result: string | boolean | Partial<Failure>, context: Context, struct: Struct<T, S>, value: any): Failure | undefined;
30
+ /**
31
+ * Convert a validation result to an iterable of failures.
32
+ */
33
+ export declare function toFailures<T, S>(result: Result, context: Context, struct: Struct<T, S>, value: any): IterableIterator<Failure>;
34
+ /**
35
+ * Check a value against a struct, traversing deeply into nested values, and
36
+ * returning an iterator of failures or success.
37
+ */
38
+ export declare function run<T, S>(value: unknown, struct: Struct<T, S>, options?: {
39
+ path?: any[];
40
+ branch?: any[];
41
+ coerce?: boolean;
42
+ mask?: boolean;
43
+ message?: string;
44
+ }): IterableIterator<[Failure, undefined] | [undefined, T]>;
45
+ /**
46
+ * Convert a union of type to an intersection.
47
+ */
48
+ export type UnionToIntersection<U> = (U extends any ? (arg: U) => any : never) extends (arg: infer I) => void ? I : never;
49
+ /**
50
+ * Assign properties from one type to another, overwriting existing.
51
+ */
52
+ export type Assign<T, U> = Simplify<U & Omit<T, keyof U>>;
53
+ /**
54
+ * A schema for enum structs.
55
+ */
56
+ export type EnumSchema<T extends string | number | undefined | null> = {
57
+ [K in NonNullable<T>]: K;
58
+ };
59
+ /**
60
+ * Check if a type is a match for another whilst treating overlapping
61
+ * unions as a match.
62
+ */
63
+ export type IsMatch<T, G> = T extends G ? (G extends T ? T : never) : never;
64
+ /**
65
+ * Check if a type is an exact match.
66
+ */
67
+ export type IsExactMatch<T, U> = (<G>() => G extends T ? 1 : 2) extends <G>() => G extends U ? 1 : 2 ? T : never;
68
+ /**
69
+ * Check if a type is a record type.
70
+ */
71
+ export type IsRecord<T> = T extends object ? string extends keyof T ? T : never : never;
72
+ /**
73
+ * Check if a type is a tuple.
74
+ */
75
+ export type IsTuple<T> = T extends [any] ? T : T extends [any, any] ? T : T extends [any, any, any] ? T : T extends [any, any, any, any] ? T : T extends [any, any, any, any, any] ? T : never;
76
+ /**
77
+ * Check if a type is a union.
78
+ */
79
+ export type IsUnion<T, U extends T = T> = (T extends any ? (U extends T ? false : true) : false) extends false ? never : T;
80
+ /**
81
+ * A schema for object structs.
82
+ */
83
+ export type ObjectSchema = Record<string, Struct<any, any>>;
84
+ /**
85
+ * Infer a type from an object struct schema.
86
+ */
87
+ export type ObjectType<S extends ObjectSchema> = Simplify<Optionalize<{
88
+ [K in keyof S]: Infer<S[K]>;
89
+ }>>;
90
+ /**
91
+ * Omit properties from a type that extend from a specific type.
92
+ */
93
+ export type OmitBy<T, V> = Omit<T, {
94
+ [K in keyof T]: V extends Extract<T[K], V> ? K : never;
95
+ }[keyof T]>;
96
+ /**
97
+ * Normalize properties of a type that allow `undefined` to make them optional.
98
+ */
99
+ export type Optionalize<S extends object> = OmitBy<S, undefined> & Partial<PickBy<S, undefined>>;
100
+ /**
101
+ * Transform an object schema type to represent a partial.
102
+ */
103
+ export type PartialObjectSchema<S extends ObjectSchema> = {
104
+ [K in keyof S]: Struct<Infer<S[K]> | undefined>;
105
+ };
106
+ /**
107
+ * Pick properties from a type that extend from a specific type.
108
+ */
109
+ export type PickBy<T, V> = Pick<T, {
110
+ [K in keyof T]: V extends Extract<T[K], V> ? K : never;
111
+ }[keyof T]>;
112
+ /**
113
+ * Simplifies a type definition to its most basic representation.
114
+ */
115
+ export type Simplify<T> = T extends any[] | Date ? T : {
116
+ [K in keyof T]: T[K];
117
+ } & {};
118
+ export type If<B extends Boolean, Then, Else> = B extends true ? Then : Else;
119
+ /**
120
+ * A schema for any type of struct.
121
+ */
122
+ export type StructSchema<T> = [T] extends [string | undefined | null] ? [T] extends [IsMatch<T, string | undefined | null>] ? null : [T] extends [IsUnion<T>] ? EnumSchema<T> : T : [T] extends [number | undefined | null] ? [T] extends [IsMatch<T, number | undefined | null>] ? null : [T] extends [IsUnion<T>] ? EnumSchema<T> : T : [T] extends [boolean] ? [T] extends [IsExactMatch<T, boolean>] ? null : T : T extends bigint | symbol | undefined | null | Function | Date | Error | RegExp | Map<any, any> | WeakMap<any, any> | Set<any> | WeakSet<any> | Promise<any> ? null : T extends Array<infer E> ? T extends IsTuple<T> ? null : Struct<E> : T extends object ? T extends IsRecord<T> ? null : {
123
+ [K in keyof T]: Describe<T[K]>;
124
+ } : null;
125
+ /**
126
+ * A schema for tuple structs.
127
+ */
128
+ export type TupleSchema<T> = {
129
+ [K in keyof T]: Struct<T[K]>;
130
+ };
131
+ /**
132
+ * Shorthand type for matching any `Struct`.
133
+ */
134
+ export type AnyStruct = Struct<any, any>;
135
+ /**
136
+ * Infer a tuple of types from a tuple of `Struct`s.
137
+ *
138
+ * This is used to recursively retrieve the type from `union` `intersection` and
139
+ * `tuple` structs.
140
+ */
141
+ export type InferStructTuple<Tuple extends AnyStruct[], Length extends number = Tuple['length']> = Length extends Length ? number extends Length ? Tuple : _InferTuple<Tuple, Length, []> : never;
142
+ type _InferTuple<Tuple extends AnyStruct[], Length extends number, Accumulated extends unknown[], Index extends number = Accumulated['length']> = Index extends Length ? Accumulated : _InferTuple<Tuple, Length, [...Accumulated, Infer<Tuple[Index]>]>;
143
+ export {};
144
+ //# sourceMappingURL=utils.d.ts.map