@gitopia/gitopiajs 0.0.4 → 0.0.5

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 (310) hide show
  1. package/dist/LICENSE +21 -0
  2. package/dist/amino/amino.d.ts +1 -0
  3. package/dist/amino/amino.js +2 -0
  4. package/dist/amino/bundle.d.ts +1 -0
  5. package/dist/amino/bundle.js +41 -0
  6. package/dist/binary.d.ts +130 -0
  7. package/dist/binary.js +371 -0
  8. package/dist/cosmos/bank/v1beta1/bank.d.ts +407 -0
  9. package/dist/cosmos/bank/v1beta1/bank.js +664 -0
  10. package/dist/cosmos/bank/v1beta1/query.d.ts +1062 -0
  11. package/dist/cosmos/bank/v1beta1/query.js +1759 -0
  12. package/dist/cosmos/bank/v1beta1/query.lcd.d.ts +19 -0
  13. package/dist/cosmos/bank/v1beta1/query.lcd.js +173 -0
  14. package/dist/cosmos/bank/v1beta1/query.rpc.Query.d.ts +106 -0
  15. package/dist/cosmos/bank/v1beta1/query.rpc.Query.js +123 -0
  16. package/dist/cosmos/base/query/v1beta1/pagination.d.ts +190 -0
  17. package/dist/cosmos/base/query/v1beta1/pagination.js +204 -0
  18. package/dist/cosmos/base/v1beta1/coin.d.ts +193 -0
  19. package/dist/cosmos/base/v1beta1/coin.js +306 -0
  20. package/dist/cosmos/bundle.d.ts +2311 -0
  21. package/dist/cosmos/bundle.js +134 -0
  22. package/dist/cosmos/client.d.ts +84 -0
  23. package/dist/cosmos/client.js +65 -0
  24. package/dist/cosmos/feegrant/v1beta1/feegrant.d.ts +245 -0
  25. package/dist/cosmos/feegrant/v1beta1/feegrant.js +456 -0
  26. package/dist/cosmos/feegrant/v1beta1/query.d.ts +258 -0
  27. package/dist/cosmos/feegrant/v1beta1/query.js +487 -0
  28. package/dist/cosmos/feegrant/v1beta1/query.lcd.d.ts +11 -0
  29. package/dist/cosmos/feegrant/v1beta1/query.lcd.js +44 -0
  30. package/dist/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +28 -0
  31. package/dist/cosmos/feegrant/v1beta1/query.rpc.Query.js +47 -0
  32. package/dist/cosmos/gov/v1beta1/gov.d.ts +571 -0
  33. package/dist/cosmos/gov/v1beta1/gov.js +1122 -0
  34. package/dist/cosmos/gov/v1beta1/query.d.ts +636 -0
  35. package/dist/cosmos/gov/v1beta1/query.js +1264 -0
  36. package/dist/cosmos/gov/v1beta1/query.lcd.d.ts +16 -0
  37. package/dist/cosmos/gov/v1beta1/query.lcd.js +87 -0
  38. package/dist/cosmos/gov/v1beta1/query.rpc.Query.d.ts +44 -0
  39. package/dist/cosmos/gov/v1beta1/query.rpc.Query.js +92 -0
  40. package/dist/cosmos/group/v1/query.d.ts +1097 -0
  41. package/dist/cosmos/group/v1/query.js +2182 -0
  42. package/dist/cosmos/group/v1/query.lcd.d.ts +22 -0
  43. package/dist/cosmos/group/v1/query.lcd.js +158 -0
  44. package/dist/cosmos/group/v1/query.rpc.Query.d.ts +78 -0
  45. package/dist/cosmos/group/v1/query.rpc.Query.js +148 -0
  46. package/dist/cosmos/group/v1/tx.amino.d.ts +73 -0
  47. package/dist/cosmos/group/v1/tx.amino.js +77 -0
  48. package/dist/cosmos/group/v1/tx.d.ts +1198 -0
  49. package/dist/cosmos/group/v1/tx.js +2362 -0
  50. package/dist/cosmos/group/v1/tx.registry.d.ts +180 -0
  51. package/dist/cosmos/group/v1/tx.registry.js +271 -0
  52. package/dist/cosmos/group/v1/tx.rpc.msg.d.ts +51 -0
  53. package/dist/cosmos/group/v1/tx.rpc.msg.js +96 -0
  54. package/dist/cosmos/group/v1/types.d.ts +873 -0
  55. package/dist/cosmos/group/v1/types.js +1495 -0
  56. package/dist/cosmos/msg/v1/msg.d.ts +1 -0
  57. package/dist/cosmos/msg/v1/msg.js +2 -0
  58. package/dist/cosmos/query/v1/query.d.ts +1 -0
  59. package/dist/cosmos/query/v1/query.js +2 -0
  60. package/dist/cosmos/rpc.query.d.ts +59 -0
  61. package/dist/cosmos/rpc.query.js +60 -0
  62. package/dist/cosmos/rpc.tx.d.ts +10 -0
  63. package/dist/cosmos/rpc.tx.js +44 -0
  64. package/dist/cosmos/upgrade/v1beta1/upgrade.d.ts +278 -0
  65. package/dist/cosmos/upgrade/v1beta1/upgrade.js +382 -0
  66. package/dist/cosmos_proto/bundle.d.ts +32 -0
  67. package/dist/cosmos_proto/bundle.js +41 -0
  68. package/dist/cosmos_proto/cosmos.d.ts +171 -0
  69. package/dist/cosmos_proto/cosmos.js +221 -0
  70. package/dist/esm/amino/amino.js +1 -0
  71. package/dist/esm/amino/bundle.js +5 -0
  72. package/dist/esm/binary.js +366 -0
  73. package/dist/esm/cosmos/bank/v1beta1/bank.js +661 -0
  74. package/dist/esm/cosmos/bank/v1beta1/query.js +1756 -0
  75. package/dist/esm/cosmos/bank/v1beta1/query.lcd.js +169 -0
  76. package/dist/esm/cosmos/bank/v1beta1/query.rpc.Query.js +118 -0
  77. package/dist/esm/cosmos/base/query/v1beta1/pagination.js +201 -0
  78. package/dist/esm/cosmos/base/v1beta1/coin.js +303 -0
  79. package/dist/esm/cosmos/bundle.js +98 -0
  80. package/dist/esm/cosmos/client.js +27 -0
  81. package/dist/esm/cosmos/feegrant/v1beta1/feegrant.js +450 -0
  82. package/dist/esm/cosmos/feegrant/v1beta1/query.js +484 -0
  83. package/dist/esm/cosmos/feegrant/v1beta1/query.lcd.js +40 -0
  84. package/dist/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +42 -0
  85. package/dist/esm/cosmos/gov/v1beta1/gov.js +1112 -0
  86. package/dist/esm/cosmos/gov/v1beta1/query.js +1261 -0
  87. package/dist/esm/cosmos/gov/v1beta1/query.lcd.js +83 -0
  88. package/dist/esm/cosmos/gov/v1beta1/query.rpc.Query.js +87 -0
  89. package/dist/esm/cosmos/group/v1/query.js +2179 -0
  90. package/dist/esm/cosmos/group/v1/query.lcd.js +154 -0
  91. package/dist/esm/cosmos/group/v1/query.rpc.Query.js +143 -0
  92. package/dist/esm/cosmos/group/v1/tx.amino.js +74 -0
  93. package/dist/esm/cosmos/group/v1/tx.js +2354 -0
  94. package/dist/esm/cosmos/group/v1/tx.registry.js +267 -0
  95. package/dist/esm/cosmos/group/v1/tx.rpc.msg.js +92 -0
  96. package/dist/esm/cosmos/group/v1/types.js +1483 -0
  97. package/dist/esm/cosmos/msg/v1/msg.js +1 -0
  98. package/dist/esm/cosmos/query/v1/query.js +1 -0
  99. package/dist/esm/cosmos/rpc.query.js +23 -0
  100. package/dist/esm/cosmos/rpc.tx.js +7 -0
  101. package/dist/esm/cosmos/upgrade/v1beta1/upgrade.js +379 -0
  102. package/dist/esm/cosmos_proto/bundle.js +5 -0
  103. package/dist/esm/cosmos_proto/cosmos.js +216 -0
  104. package/dist/esm/gitopia/bundle.js +95 -0
  105. package/dist/esm/gitopia/client.js +32 -0
  106. package/dist/esm/gitopia/custom-lcd-client.js +50 -0
  107. package/dist/esm/gitopia/gitopia/gitopia/attachment.js +101 -0
  108. package/dist/esm/gitopia/gitopia/gitopia/bounty.js +255 -0
  109. package/dist/esm/gitopia/gitopia/gitopia/branch.js +137 -0
  110. package/dist/esm/gitopia/gitopia/gitopia/comment.js +488 -0
  111. package/dist/esm/gitopia/gitopia/gitopia/dao.js +451 -0
  112. package/dist/esm/gitopia/gitopia/gitopia/exercised_amount.js +78 -0
  113. package/dist/esm/gitopia/gitopia/gitopia/genesis.js +460 -0
  114. package/dist/esm/gitopia/gitopia/gitopia/issue.js +323 -0
  115. package/dist/esm/gitopia/gitopia/gitopia/params.js +293 -0
  116. package/dist/esm/gitopia/gitopia/gitopia/pullRequest.js +565 -0
  117. package/dist/esm/gitopia/gitopia/gitopia/query.js +7351 -0
  118. package/dist/esm/gitopia/gitopia/gitopia/query.lcd.js +452 -0
  119. package/dist/esm/gitopia/gitopia/gitopia/query.rpc.Query.js +453 -0
  120. package/dist/esm/gitopia/gitopia/gitopia/reaction.js +123 -0
  121. package/dist/esm/gitopia/gitopia/gitopia/release.js +225 -0
  122. package/dist/esm/gitopia/gitopia/gitopia/repository.js +1200 -0
  123. package/dist/esm/gitopia/gitopia/gitopia/tag.js +125 -0
  124. package/dist/esm/gitopia/gitopia/gitopia/task.js +197 -0
  125. package/dist/esm/gitopia/gitopia/gitopia/tx.amino.js +464 -0
  126. package/dist/esm/gitopia/gitopia/gitopia/tx.js +14679 -0
  127. package/dist/esm/gitopia/gitopia/gitopia/tx.registry.js +1671 -0
  128. package/dist/esm/gitopia/gitopia/gitopia/tx.rpc.msg.js +560 -0
  129. package/dist/esm/gitopia/gitopia/gitopia/user.js +340 -0
  130. package/dist/esm/gitopia/gitopia/gitopia/whois.js +146 -0
  131. package/dist/esm/gitopia/gitopia/offchain/offchain.js +144 -0
  132. package/dist/esm/gitopia/gitopia/rewards/genesis.js +82 -0
  133. package/dist/esm/gitopia/gitopia/rewards/params.js +81 -0
  134. package/dist/esm/gitopia/gitopia/rewards/pool.js +191 -0
  135. package/dist/esm/gitopia/gitopia/rewards/query.js +654 -0
  136. package/dist/esm/gitopia/gitopia/rewards/query.lcd.js +40 -0
  137. package/dist/esm/gitopia/gitopia/rewards/query.rpc.Query.js +53 -0
  138. package/dist/esm/gitopia/gitopia/rewards/rewards.js +191 -0
  139. package/dist/esm/gitopia/gitopia/rewards/task.js +176 -0
  140. package/dist/esm/gitopia/gitopia/rewards/tx.amino.js +19 -0
  141. package/dist/esm/gitopia/gitopia/rewards/tx.js +525 -0
  142. package/dist/esm/gitopia/gitopia/rewards/tx.registry.js +69 -0
  143. package/dist/esm/gitopia/gitopia/rewards/tx.rpc.msg.js +26 -0
  144. package/dist/esm/gitopia/rpc.query.js +29 -0
  145. package/dist/esm/gitopia/rpc.tx.js +13 -0
  146. package/dist/esm/gogoproto/bundle.js +5 -0
  147. package/dist/esm/gogoproto/gogo.js +1 -0
  148. package/dist/esm/google/api/annotations.js +1 -0
  149. package/dist/esm/google/api/http.js +329 -0
  150. package/dist/esm/google/bundle.js +14 -0
  151. package/dist/esm/google/protobuf/any.js +74 -0
  152. package/dist/esm/google/protobuf/descriptor.js +4848 -0
  153. package/dist/esm/google/protobuf/duration.js +71 -0
  154. package/dist/esm/google/protobuf/timestamp.js +68 -0
  155. package/dist/esm/helpers.js +129 -0
  156. package/dist/esm/ibc/applications/transfer/v1/query.js +847 -0
  157. package/dist/esm/ibc/applications/transfer/v1/query.lcd.js +70 -0
  158. package/dist/esm/ibc/applications/transfer/v1/query.rpc.Query.js +71 -0
  159. package/dist/esm/ibc/applications/transfer/v1/transfer.js +164 -0
  160. package/dist/esm/ibc/applications/transfer/v1/tx.amino.js +9 -0
  161. package/dist/esm/ibc/applications/transfer/v1/tx.js +226 -0
  162. package/dist/esm/ibc/applications/transfer/v1/tx.registry.js +33 -0
  163. package/dist/esm/ibc/applications/transfer/v1/tx.rpc.msg.js +14 -0
  164. package/dist/esm/ibc/bundle.js +44 -0
  165. package/dist/esm/ibc/client.js +29 -0
  166. package/dist/esm/ibc/core/client/v1/client.js +611 -0
  167. package/dist/esm/ibc/rpc.query.js +30 -0
  168. package/dist/esm/ibc/rpc.tx.js +14 -0
  169. package/dist/esm/index.js +19 -0
  170. package/dist/esm/utf8.js +137 -0
  171. package/dist/esm/varint.js +408 -0
  172. package/dist/gitopia/bundle.d.ts +6123 -0
  173. package/dist/gitopia/bundle.js +131 -0
  174. package/dist/gitopia/client.d.ts +492 -0
  175. package/dist/gitopia/client.js +70 -0
  176. package/dist/gitopia/custom-lcd-client.d.ts +31 -0
  177. package/dist/gitopia/custom-lcd-client.js +87 -0
  178. package/dist/gitopia/gitopia/gitopia/attachment.d.ts +39 -0
  179. package/dist/gitopia/gitopia/gitopia/attachment.js +104 -0
  180. package/dist/gitopia/gitopia/gitopia/bounty.d.ts +79 -0
  181. package/dist/gitopia/gitopia/gitopia/bounty.js +262 -0
  182. package/dist/gitopia/gitopia/gitopia/branch.d.ts +48 -0
  183. package/dist/gitopia/gitopia/gitopia/branch.js +140 -0
  184. package/dist/gitopia/gitopia/gitopia/comment.d.ts +125 -0
  185. package/dist/gitopia/gitopia/gitopia/comment.js +495 -0
  186. package/dist/gitopia/gitopia/gitopia/dao.d.ts +160 -0
  187. package/dist/gitopia/gitopia/gitopia/dao.js +454 -0
  188. package/dist/gitopia/gitopia/gitopia/exercised_amount.d.ts +34 -0
  189. package/dist/gitopia/gitopia/gitopia/exercised_amount.js +81 -0
  190. package/dist/gitopia/gitopia/gitopia/genesis.d.ts +143 -0
  191. package/dist/gitopia/gitopia/gitopia/genesis.js +463 -0
  192. package/dist/gitopia/gitopia/gitopia/issue.d.ts +88 -0
  193. package/dist/gitopia/gitopia/gitopia/issue.js +328 -0
  194. package/dist/gitopia/gitopia/gitopia/params.d.ts +115 -0
  195. package/dist/gitopia/gitopia/gitopia/params.js +296 -0
  196. package/dist/gitopia/gitopia/gitopia/pullRequest.d.ts +177 -0
  197. package/dist/gitopia/gitopia/gitopia/pullRequest.js +570 -0
  198. package/dist/gitopia/gitopia/gitopia/query.d.ts +3130 -0
  199. package/dist/gitopia/gitopia/gitopia/query.js +7355 -0
  200. package/dist/gitopia/gitopia/gitopia/query.lcd.d.ts +54 -0
  201. package/dist/gitopia/gitopia/gitopia/query.lcd.js +456 -0
  202. package/dist/gitopia/gitopia/gitopia/query.rpc.Query.d.ts +188 -0
  203. package/dist/gitopia/gitopia/gitopia/query.rpc.Query.js +458 -0
  204. package/dist/gitopia/gitopia/gitopia/reaction.d.ts +42 -0
  205. package/dist/gitopia/gitopia/gitopia/reaction.js +128 -0
  206. package/dist/gitopia/gitopia/gitopia/release.d.ts +70 -0
  207. package/dist/gitopia/gitopia/gitopia/release.js +228 -0
  208. package/dist/gitopia/gitopia/gitopia/repository.d.ts +424 -0
  209. package/dist/gitopia/gitopia/gitopia/repository.js +1207 -0
  210. package/dist/gitopia/gitopia/gitopia/tag.d.ts +45 -0
  211. package/dist/gitopia/gitopia/gitopia/tag.js +128 -0
  212. package/dist/gitopia/gitopia/gitopia/task.d.ts +64 -0
  213. package/dist/gitopia/gitopia/gitopia/task.js +204 -0
  214. package/dist/gitopia/gitopia/gitopia/tx.amino.d.ts +463 -0
  215. package/dist/gitopia/gitopia/gitopia/tx.amino.js +467 -0
  216. package/dist/gitopia/gitopia/gitopia/tx.d.ts +6246 -0
  217. package/dist/gitopia/gitopia/gitopia/tx.js +14687 -0
  218. package/dist/gitopia/gitopia/gitopia/tx.registry.d.ts +1116 -0
  219. package/dist/gitopia/gitopia/gitopia/tx.registry.js +1675 -0
  220. package/dist/gitopia/gitopia/gitopia/tx.rpc.msg.d.ts +200 -0
  221. package/dist/gitopia/gitopia/gitopia/tx.rpc.msg.js +564 -0
  222. package/dist/gitopia/gitopia/gitopia/user.d.ts +104 -0
  223. package/dist/gitopia/gitopia/gitopia/user.js +343 -0
  224. package/dist/gitopia/gitopia/gitopia/whois.d.ts +51 -0
  225. package/dist/gitopia/gitopia/gitopia/whois.js +151 -0
  226. package/dist/gitopia/gitopia/offchain/offchain.d.ts +74 -0
  227. package/dist/gitopia/gitopia/offchain/offchain.js +147 -0
  228. package/dist/gitopia/gitopia/rewards/genesis.d.ts +40 -0
  229. package/dist/gitopia/gitopia/rewards/genesis.js +85 -0
  230. package/dist/gitopia/gitopia/rewards/params.d.ts +37 -0
  231. package/dist/gitopia/gitopia/rewards/params.js +84 -0
  232. package/dist/gitopia/gitopia/rewards/pool.d.ts +59 -0
  233. package/dist/gitopia/gitopia/rewards/pool.js +196 -0
  234. package/dist/gitopia/gitopia/rewards/query.d.ts +294 -0
  235. package/dist/gitopia/gitopia/rewards/query.js +657 -0
  236. package/dist/gitopia/gitopia/rewards/query.lcd.d.ts +12 -0
  237. package/dist/gitopia/gitopia/rewards/query.lcd.js +44 -0
  238. package/dist/gitopia/gitopia/rewards/query.rpc.Query.d.ts +28 -0
  239. package/dist/gitopia/gitopia/rewards/query.rpc.Query.js +58 -0
  240. package/dist/gitopia/gitopia/rewards/rewards.d.ts +79 -0
  241. package/dist/gitopia/gitopia/rewards/rewards.js +194 -0
  242. package/dist/gitopia/gitopia/rewards/task.d.ts +54 -0
  243. package/dist/gitopia/gitopia/rewards/task.js +181 -0
  244. package/dist/gitopia/gitopia/rewards/tx.amino.d.ts +18 -0
  245. package/dist/gitopia/gitopia/rewards/tx.amino.js +22 -0
  246. package/dist/gitopia/gitopia/rewards/tx.d.ts +242 -0
  247. package/dist/gitopia/gitopia/rewards/tx.js +528 -0
  248. package/dist/gitopia/gitopia/rewards/tx.registry.d.ts +48 -0
  249. package/dist/gitopia/gitopia/rewards/tx.registry.js +73 -0
  250. package/dist/gitopia/gitopia/rewards/tx.rpc.msg.d.ts +19 -0
  251. package/dist/gitopia/gitopia/rewards/tx.rpc.msg.js +30 -0
  252. package/dist/gitopia/rpc.query.d.ts +117 -0
  253. package/dist/gitopia/rpc.query.js +66 -0
  254. package/dist/gitopia/rpc.tx.d.ts +16 -0
  255. package/dist/gitopia/rpc.tx.js +50 -0
  256. package/dist/gogoproto/bundle.d.ts +1 -0
  257. package/dist/gogoproto/bundle.js +41 -0
  258. package/dist/gogoproto/gogo.d.ts +1 -0
  259. package/dist/gogoproto/gogo.js +2 -0
  260. package/dist/google/api/annotations.d.ts +1 -0
  261. package/dist/google/api/annotations.js +2 -0
  262. package/dist/google/api/http.d.ts +1049 -0
  263. package/dist/google/api/http.js +332 -0
  264. package/dist/google/bundle.d.ts +525 -0
  265. package/dist/google/bundle.js +50 -0
  266. package/dist/google/protobuf/any.d.ts +358 -0
  267. package/dist/google/protobuf/any.js +77 -0
  268. package/dist/google/protobuf/descriptor.d.ts +3178 -0
  269. package/dist/google/protobuf/descriptor.js +4886 -0
  270. package/dist/google/protobuf/duration.d.ts +223 -0
  271. package/dist/google/protobuf/duration.js +74 -0
  272. package/dist/google/protobuf/timestamp.d.ts +314 -0
  273. package/dist/google/protobuf/timestamp.js +71 -0
  274. package/dist/helpers.d.ts +82 -0
  275. package/dist/helpers.js +144 -0
  276. package/dist/ibc/applications/transfer/v1/query.d.ts +479 -0
  277. package/dist/ibc/applications/transfer/v1/query.js +850 -0
  278. package/dist/ibc/applications/transfer/v1/query.lcd.d.ts +14 -0
  279. package/dist/ibc/applications/transfer/v1/query.lcd.js +74 -0
  280. package/dist/ibc/applications/transfer/v1/query.rpc.Query.d.ts +36 -0
  281. package/dist/ibc/applications/transfer/v1/query.rpc.Query.js +76 -0
  282. package/dist/ibc/applications/transfer/v1/transfer.d.ts +123 -0
  283. package/dist/ibc/applications/transfer/v1/transfer.js +167 -0
  284. package/dist/ibc/applications/transfer/v1/tx.amino.d.ts +8 -0
  285. package/dist/ibc/applications/transfer/v1/tx.amino.js +12 -0
  286. package/dist/ibc/applications/transfer/v1/tx.d.ts +132 -0
  287. package/dist/ibc/applications/transfer/v1/tx.js +229 -0
  288. package/dist/ibc/applications/transfer/v1/tx.registry.d.ts +24 -0
  289. package/dist/ibc/applications/transfer/v1/tx.registry.js +37 -0
  290. package/dist/ibc/applications/transfer/v1/tx.rpc.msg.d.ts +12 -0
  291. package/dist/ibc/applications/transfer/v1/tx.rpc.msg.js +18 -0
  292. package/dist/ibc/bundle.d.ts +450 -0
  293. package/dist/ibc/bundle.js +80 -0
  294. package/dist/ibc/client.d.ts +22 -0
  295. package/dist/ibc/client.js +67 -0
  296. package/dist/ibc/core/client/v1/client.d.ts +408 -0
  297. package/dist/ibc/core/client/v1/client.js +614 -0
  298. package/dist/ibc/rpc.query.d.ts +73 -0
  299. package/dist/ibc/rpc.query.js +67 -0
  300. package/dist/ibc/rpc.tx.d.ts +17 -0
  301. package/dist/ibc/rpc.tx.js +51 -0
  302. package/dist/index.d.ts +18 -0
  303. package/dist/index.js +35 -0
  304. package/dist/package.json +48 -0
  305. package/dist/utf8.d.ts +27 -0
  306. package/dist/utf8.js +141 -0
  307. package/dist/varint.d.ts +105 -0
  308. package/dist/varint.js +426 -0
  309. package/package.json +8 -6
  310. package/CHANGELOG.md +0 -8
@@ -0,0 +1,424 @@
1
+ import { OwnerType } from "./whois";
2
+ import { BinaryReader, BinaryWriter } from "../../../binary";
3
+ export declare enum RepositoryCollaborator_Permission {
4
+ READ = 0,
5
+ TRIAGE = 1,
6
+ WRITE = 2,
7
+ MAINTAIN = 3,
8
+ ADMIN = 4,
9
+ UNRECOGNIZED = -1
10
+ }
11
+ export declare const RepositoryCollaborator_PermissionSDKType: typeof RepositoryCollaborator_Permission;
12
+ export declare const RepositoryCollaborator_PermissionAmino: typeof RepositoryCollaborator_Permission;
13
+ export declare function repositoryCollaborator_PermissionFromJSON(object: any): RepositoryCollaborator_Permission;
14
+ export declare function repositoryCollaborator_PermissionToJSON(object: RepositoryCollaborator_Permission): string;
15
+ export declare enum RepositoryBackup_Store {
16
+ IPFS = 0,
17
+ ARWEAVE = 1,
18
+ UNRECOGNIZED = -1
19
+ }
20
+ export declare const RepositoryBackup_StoreSDKType: typeof RepositoryBackup_Store;
21
+ export declare const RepositoryBackup_StoreAmino: typeof RepositoryBackup_Store;
22
+ export declare function repositoryBackup_StoreFromJSON(object: any): RepositoryBackup_Store;
23
+ export declare function repositoryBackup_StoreToJSON(object: RepositoryBackup_Store): string;
24
+ export interface Repository {
25
+ creator: string;
26
+ id: bigint;
27
+ name: string;
28
+ owner?: RepositoryOwner;
29
+ description: string;
30
+ forks: bigint[];
31
+ subscribers: string;
32
+ commits: string;
33
+ issuesCount: bigint;
34
+ pullsCount: bigint;
35
+ labels: RepositoryLabel[];
36
+ labelsCount: bigint;
37
+ releases: RepositoryRelease[];
38
+ createdAt: bigint;
39
+ updatedAt: bigint;
40
+ pushedAt: bigint;
41
+ stargazers: bigint[];
42
+ archived: boolean;
43
+ license: string;
44
+ defaultBranch: string;
45
+ parent: bigint;
46
+ fork: boolean;
47
+ collaborators: RepositoryCollaborator[];
48
+ allowForking: boolean;
49
+ backups: RepositoryBackup[];
50
+ enableArweaveBackup: boolean;
51
+ }
52
+ export interface RepositoryProtoMsg {
53
+ typeUrl: "/gitopia.gitopia.gitopia.Repository";
54
+ value: Uint8Array;
55
+ }
56
+ export interface RepositoryAmino {
57
+ creator?: string;
58
+ id?: string;
59
+ name?: string;
60
+ owner?: RepositoryOwnerAmino;
61
+ description?: string;
62
+ forks?: string[];
63
+ subscribers?: string;
64
+ commits?: string;
65
+ issuesCount?: string;
66
+ pullsCount?: string;
67
+ labels?: RepositoryLabelAmino[];
68
+ labelsCount?: string;
69
+ releases?: RepositoryReleaseAmino[];
70
+ createdAt?: string;
71
+ updatedAt?: string;
72
+ pushedAt?: string;
73
+ stargazers?: string[];
74
+ archived?: boolean;
75
+ license?: string;
76
+ defaultBranch?: string;
77
+ parent?: string;
78
+ fork?: boolean;
79
+ collaborators?: RepositoryCollaboratorAmino[];
80
+ allowForking?: boolean;
81
+ backups?: RepositoryBackupAmino[];
82
+ enableArweaveBackup?: boolean;
83
+ }
84
+ export interface RepositoryAminoMsg {
85
+ type: "/gitopia.gitopia.gitopia.Repository";
86
+ value: RepositoryAmino;
87
+ }
88
+ export interface RepositorySDKType {
89
+ creator: string;
90
+ id: bigint;
91
+ name: string;
92
+ owner?: RepositoryOwnerSDKType;
93
+ description: string;
94
+ forks: bigint[];
95
+ subscribers: string;
96
+ commits: string;
97
+ issuesCount: bigint;
98
+ pullsCount: bigint;
99
+ labels: RepositoryLabelSDKType[];
100
+ labelsCount: bigint;
101
+ releases: RepositoryReleaseSDKType[];
102
+ createdAt: bigint;
103
+ updatedAt: bigint;
104
+ pushedAt: bigint;
105
+ stargazers: bigint[];
106
+ archived: boolean;
107
+ license: string;
108
+ defaultBranch: string;
109
+ parent: bigint;
110
+ fork: boolean;
111
+ collaborators: RepositoryCollaboratorSDKType[];
112
+ allowForking: boolean;
113
+ backups: RepositoryBackupSDKType[];
114
+ enableArweaveBackup: boolean;
115
+ }
116
+ export interface RepositoryId {
117
+ id: string;
118
+ name: string;
119
+ }
120
+ export interface RepositoryIdProtoMsg {
121
+ typeUrl: "/gitopia.gitopia.gitopia.RepositoryId";
122
+ value: Uint8Array;
123
+ }
124
+ export interface RepositoryIdAmino {
125
+ id?: string;
126
+ name?: string;
127
+ }
128
+ export interface RepositoryIdAminoMsg {
129
+ type: "/gitopia.gitopia.gitopia.RepositoryId";
130
+ value: RepositoryIdAmino;
131
+ }
132
+ export interface RepositoryIdSDKType {
133
+ id: string;
134
+ name: string;
135
+ }
136
+ export interface BaseRepositoryKey {
137
+ id: bigint;
138
+ address: string;
139
+ name: string;
140
+ }
141
+ export interface BaseRepositoryKeyProtoMsg {
142
+ typeUrl: "/gitopia.gitopia.gitopia.BaseRepositoryKey";
143
+ value: Uint8Array;
144
+ }
145
+ export interface BaseRepositoryKeyAmino {
146
+ id?: string;
147
+ address?: string;
148
+ name?: string;
149
+ }
150
+ export interface BaseRepositoryKeyAminoMsg {
151
+ type: "/gitopia.gitopia.gitopia.BaseRepositoryKey";
152
+ value: BaseRepositoryKeyAmino;
153
+ }
154
+ export interface BaseRepositoryKeySDKType {
155
+ id: bigint;
156
+ address: string;
157
+ name: string;
158
+ }
159
+ export interface RepositoryOwner {
160
+ id: string;
161
+ type: OwnerType;
162
+ }
163
+ export interface RepositoryOwnerProtoMsg {
164
+ typeUrl: "/gitopia.gitopia.gitopia.RepositoryOwner";
165
+ value: Uint8Array;
166
+ }
167
+ export interface RepositoryOwnerAmino {
168
+ id?: string;
169
+ type?: OwnerType;
170
+ }
171
+ export interface RepositoryOwnerAminoMsg {
172
+ type: "/gitopia.gitopia.gitopia.RepositoryOwner";
173
+ value: RepositoryOwnerAmino;
174
+ }
175
+ export interface RepositoryOwnerSDKType {
176
+ id: string;
177
+ type: OwnerType;
178
+ }
179
+ export interface IssueIid {
180
+ iid: bigint;
181
+ id: bigint;
182
+ }
183
+ export interface IssueIidProtoMsg {
184
+ typeUrl: "/gitopia.gitopia.gitopia.IssueIid";
185
+ value: Uint8Array;
186
+ }
187
+ export interface IssueIidAmino {
188
+ iid?: string;
189
+ id?: string;
190
+ }
191
+ export interface IssueIidAminoMsg {
192
+ type: "/gitopia.gitopia.gitopia.IssueIid";
193
+ value: IssueIidAmino;
194
+ }
195
+ export interface IssueIidSDKType {
196
+ iid: bigint;
197
+ id: bigint;
198
+ }
199
+ export interface PullRequestIid {
200
+ iid: bigint;
201
+ id: bigint;
202
+ }
203
+ export interface PullRequestIidProtoMsg {
204
+ typeUrl: "/gitopia.gitopia.gitopia.PullRequestIid";
205
+ value: Uint8Array;
206
+ }
207
+ export interface PullRequestIidAmino {
208
+ iid?: string;
209
+ id?: string;
210
+ }
211
+ export interface PullRequestIidAminoMsg {
212
+ type: "/gitopia.gitopia.gitopia.PullRequestIid";
213
+ value: PullRequestIidAmino;
214
+ }
215
+ export interface PullRequestIidSDKType {
216
+ iid: bigint;
217
+ id: bigint;
218
+ }
219
+ export interface RepositoryCollaborator {
220
+ id: string;
221
+ permission: RepositoryCollaborator_Permission;
222
+ }
223
+ export interface RepositoryCollaboratorProtoMsg {
224
+ typeUrl: "/gitopia.gitopia.gitopia.RepositoryCollaborator";
225
+ value: Uint8Array;
226
+ }
227
+ export interface RepositoryCollaboratorAmino {
228
+ id?: string;
229
+ permission?: RepositoryCollaborator_Permission;
230
+ }
231
+ export interface RepositoryCollaboratorAminoMsg {
232
+ type: "/gitopia.gitopia.gitopia.RepositoryCollaborator";
233
+ value: RepositoryCollaboratorAmino;
234
+ }
235
+ export interface RepositoryCollaboratorSDKType {
236
+ id: string;
237
+ permission: RepositoryCollaborator_Permission;
238
+ }
239
+ export interface RepositoryLabel {
240
+ id: bigint;
241
+ name: string;
242
+ color: string;
243
+ description: string;
244
+ }
245
+ export interface RepositoryLabelProtoMsg {
246
+ typeUrl: "/gitopia.gitopia.gitopia.RepositoryLabel";
247
+ value: Uint8Array;
248
+ }
249
+ export interface RepositoryLabelAmino {
250
+ id?: string;
251
+ name?: string;
252
+ color?: string;
253
+ description?: string;
254
+ }
255
+ export interface RepositoryLabelAminoMsg {
256
+ type: "/gitopia.gitopia.gitopia.RepositoryLabel";
257
+ value: RepositoryLabelAmino;
258
+ }
259
+ export interface RepositoryLabelSDKType {
260
+ id: bigint;
261
+ name: string;
262
+ color: string;
263
+ description: string;
264
+ }
265
+ export interface RepositoryRelease {
266
+ id: bigint;
267
+ tagName: string;
268
+ }
269
+ export interface RepositoryReleaseProtoMsg {
270
+ typeUrl: "/gitopia.gitopia.gitopia.RepositoryRelease";
271
+ value: Uint8Array;
272
+ }
273
+ export interface RepositoryReleaseAmino {
274
+ id?: string;
275
+ tagName?: string;
276
+ }
277
+ export interface RepositoryReleaseAminoMsg {
278
+ type: "/gitopia.gitopia.gitopia.RepositoryRelease";
279
+ value: RepositoryReleaseAmino;
280
+ }
281
+ export interface RepositoryReleaseSDKType {
282
+ id: bigint;
283
+ tagName: string;
284
+ }
285
+ export interface RepositoryBackup {
286
+ store: RepositoryBackup_Store;
287
+ refs: string[];
288
+ }
289
+ export interface RepositoryBackupProtoMsg {
290
+ typeUrl: "/gitopia.gitopia.gitopia.RepositoryBackup";
291
+ value: Uint8Array;
292
+ }
293
+ export interface RepositoryBackupAmino {
294
+ store?: RepositoryBackup_Store;
295
+ refs?: string[];
296
+ }
297
+ export interface RepositoryBackupAminoMsg {
298
+ type: "/gitopia.gitopia.gitopia.RepositoryBackup";
299
+ value: RepositoryBackupAmino;
300
+ }
301
+ export interface RepositoryBackupSDKType {
302
+ store: RepositoryBackup_Store;
303
+ refs: string[];
304
+ }
305
+ export declare const Repository: {
306
+ typeUrl: string;
307
+ encode(message: Repository, writer?: BinaryWriter): BinaryWriter;
308
+ decode(input: BinaryReader | Uint8Array, length?: number): Repository;
309
+ fromPartial(object: Partial<Repository>): Repository;
310
+ fromAmino(object: RepositoryAmino): Repository;
311
+ toAmino(message: Repository): RepositoryAmino;
312
+ fromAminoMsg(object: RepositoryAminoMsg): Repository;
313
+ fromProtoMsg(message: RepositoryProtoMsg): Repository;
314
+ toProto(message: Repository): Uint8Array;
315
+ toProtoMsg(message: Repository): RepositoryProtoMsg;
316
+ };
317
+ export declare const RepositoryId: {
318
+ typeUrl: string;
319
+ encode(message: RepositoryId, writer?: BinaryWriter): BinaryWriter;
320
+ decode(input: BinaryReader | Uint8Array, length?: number): RepositoryId;
321
+ fromPartial(object: Partial<RepositoryId>): RepositoryId;
322
+ fromAmino(object: RepositoryIdAmino): RepositoryId;
323
+ toAmino(message: RepositoryId): RepositoryIdAmino;
324
+ fromAminoMsg(object: RepositoryIdAminoMsg): RepositoryId;
325
+ fromProtoMsg(message: RepositoryIdProtoMsg): RepositoryId;
326
+ toProto(message: RepositoryId): Uint8Array;
327
+ toProtoMsg(message: RepositoryId): RepositoryIdProtoMsg;
328
+ };
329
+ export declare const BaseRepositoryKey: {
330
+ typeUrl: string;
331
+ encode(message: BaseRepositoryKey, writer?: BinaryWriter): BinaryWriter;
332
+ decode(input: BinaryReader | Uint8Array, length?: number): BaseRepositoryKey;
333
+ fromPartial(object: Partial<BaseRepositoryKey>): BaseRepositoryKey;
334
+ fromAmino(object: BaseRepositoryKeyAmino): BaseRepositoryKey;
335
+ toAmino(message: BaseRepositoryKey): BaseRepositoryKeyAmino;
336
+ fromAminoMsg(object: BaseRepositoryKeyAminoMsg): BaseRepositoryKey;
337
+ fromProtoMsg(message: BaseRepositoryKeyProtoMsg): BaseRepositoryKey;
338
+ toProto(message: BaseRepositoryKey): Uint8Array;
339
+ toProtoMsg(message: BaseRepositoryKey): BaseRepositoryKeyProtoMsg;
340
+ };
341
+ export declare const RepositoryOwner: {
342
+ typeUrl: string;
343
+ encode(message: RepositoryOwner, writer?: BinaryWriter): BinaryWriter;
344
+ decode(input: BinaryReader | Uint8Array, length?: number): RepositoryOwner;
345
+ fromPartial(object: Partial<RepositoryOwner>): RepositoryOwner;
346
+ fromAmino(object: RepositoryOwnerAmino): RepositoryOwner;
347
+ toAmino(message: RepositoryOwner): RepositoryOwnerAmino;
348
+ fromAminoMsg(object: RepositoryOwnerAminoMsg): RepositoryOwner;
349
+ fromProtoMsg(message: RepositoryOwnerProtoMsg): RepositoryOwner;
350
+ toProto(message: RepositoryOwner): Uint8Array;
351
+ toProtoMsg(message: RepositoryOwner): RepositoryOwnerProtoMsg;
352
+ };
353
+ export declare const IssueIid: {
354
+ typeUrl: string;
355
+ encode(message: IssueIid, writer?: BinaryWriter): BinaryWriter;
356
+ decode(input: BinaryReader | Uint8Array, length?: number): IssueIid;
357
+ fromPartial(object: Partial<IssueIid>): IssueIid;
358
+ fromAmino(object: IssueIidAmino): IssueIid;
359
+ toAmino(message: IssueIid): IssueIidAmino;
360
+ fromAminoMsg(object: IssueIidAminoMsg): IssueIid;
361
+ fromProtoMsg(message: IssueIidProtoMsg): IssueIid;
362
+ toProto(message: IssueIid): Uint8Array;
363
+ toProtoMsg(message: IssueIid): IssueIidProtoMsg;
364
+ };
365
+ export declare const PullRequestIid: {
366
+ typeUrl: string;
367
+ encode(message: PullRequestIid, writer?: BinaryWriter): BinaryWriter;
368
+ decode(input: BinaryReader | Uint8Array, length?: number): PullRequestIid;
369
+ fromPartial(object: Partial<PullRequestIid>): PullRequestIid;
370
+ fromAmino(object: PullRequestIidAmino): PullRequestIid;
371
+ toAmino(message: PullRequestIid): PullRequestIidAmino;
372
+ fromAminoMsg(object: PullRequestIidAminoMsg): PullRequestIid;
373
+ fromProtoMsg(message: PullRequestIidProtoMsg): PullRequestIid;
374
+ toProto(message: PullRequestIid): Uint8Array;
375
+ toProtoMsg(message: PullRequestIid): PullRequestIidProtoMsg;
376
+ };
377
+ export declare const RepositoryCollaborator: {
378
+ typeUrl: string;
379
+ encode(message: RepositoryCollaborator, writer?: BinaryWriter): BinaryWriter;
380
+ decode(input: BinaryReader | Uint8Array, length?: number): RepositoryCollaborator;
381
+ fromPartial(object: Partial<RepositoryCollaborator>): RepositoryCollaborator;
382
+ fromAmino(object: RepositoryCollaboratorAmino): RepositoryCollaborator;
383
+ toAmino(message: RepositoryCollaborator): RepositoryCollaboratorAmino;
384
+ fromAminoMsg(object: RepositoryCollaboratorAminoMsg): RepositoryCollaborator;
385
+ fromProtoMsg(message: RepositoryCollaboratorProtoMsg): RepositoryCollaborator;
386
+ toProto(message: RepositoryCollaborator): Uint8Array;
387
+ toProtoMsg(message: RepositoryCollaborator): RepositoryCollaboratorProtoMsg;
388
+ };
389
+ export declare const RepositoryLabel: {
390
+ typeUrl: string;
391
+ encode(message: RepositoryLabel, writer?: BinaryWriter): BinaryWriter;
392
+ decode(input: BinaryReader | Uint8Array, length?: number): RepositoryLabel;
393
+ fromPartial(object: Partial<RepositoryLabel>): RepositoryLabel;
394
+ fromAmino(object: RepositoryLabelAmino): RepositoryLabel;
395
+ toAmino(message: RepositoryLabel): RepositoryLabelAmino;
396
+ fromAminoMsg(object: RepositoryLabelAminoMsg): RepositoryLabel;
397
+ fromProtoMsg(message: RepositoryLabelProtoMsg): RepositoryLabel;
398
+ toProto(message: RepositoryLabel): Uint8Array;
399
+ toProtoMsg(message: RepositoryLabel): RepositoryLabelProtoMsg;
400
+ };
401
+ export declare const RepositoryRelease: {
402
+ typeUrl: string;
403
+ encode(message: RepositoryRelease, writer?: BinaryWriter): BinaryWriter;
404
+ decode(input: BinaryReader | Uint8Array, length?: number): RepositoryRelease;
405
+ fromPartial(object: Partial<RepositoryRelease>): RepositoryRelease;
406
+ fromAmino(object: RepositoryReleaseAmino): RepositoryRelease;
407
+ toAmino(message: RepositoryRelease): RepositoryReleaseAmino;
408
+ fromAminoMsg(object: RepositoryReleaseAminoMsg): RepositoryRelease;
409
+ fromProtoMsg(message: RepositoryReleaseProtoMsg): RepositoryRelease;
410
+ toProto(message: RepositoryRelease): Uint8Array;
411
+ toProtoMsg(message: RepositoryRelease): RepositoryReleaseProtoMsg;
412
+ };
413
+ export declare const RepositoryBackup: {
414
+ typeUrl: string;
415
+ encode(message: RepositoryBackup, writer?: BinaryWriter): BinaryWriter;
416
+ decode(input: BinaryReader | Uint8Array, length?: number): RepositoryBackup;
417
+ fromPartial(object: Partial<RepositoryBackup>): RepositoryBackup;
418
+ fromAmino(object: RepositoryBackupAmino): RepositoryBackup;
419
+ toAmino(message: RepositoryBackup): RepositoryBackupAmino;
420
+ fromAminoMsg(object: RepositoryBackupAminoMsg): RepositoryBackup;
421
+ fromProtoMsg(message: RepositoryBackupProtoMsg): RepositoryBackup;
422
+ toProto(message: RepositoryBackup): Uint8Array;
423
+ toProtoMsg(message: RepositoryBackup): RepositoryBackupProtoMsg;
424
+ };