@in-human-resources/backend-proto 0.1.4 → 0.1.6

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 (692) hide show
  1. package/README.md +16 -1
  2. package/api/v1/README.md +7 -0
  3. package/api/v1/hiring.proto +19 -0
  4. package/api/v1/pipeline.proto +156 -0
  5. package/buf.gen.yaml +3 -3
  6. package/gen/ts/api/v1/auth_connect.ts +3 -3
  7. package/gen/ts/api/v1/auth_pb.ts +2 -2
  8. package/gen/ts/api/v1/candidate_connect.ts +3 -3
  9. package/gen/ts/api/v1/candidate_pb.ts +1 -1
  10. package/gen/ts/api/v1/common_pb.ts +1 -1
  11. package/gen/ts/api/v1/company_connect.ts +3 -3
  12. package/gen/ts/api/v1/company_pb.ts +1 -1
  13. package/gen/ts/api/v1/hiring_connect.ts +95 -2
  14. package/gen/ts/api/v1/hiring_pb.ts +31 -1
  15. package/gen/ts/api/v1/pipeline_pb.ts +1220 -0
  16. package/gen/ts/auth/v1/service_connect.ts +2 -2
  17. package/gen/ts/auth/v1/service_pb.ts +2 -2
  18. package/gen/ts/common/v1/common_pb.ts +1 -1
  19. package/gen/ts/hiring/v1/pipeline_pb.ts +1220 -0
  20. package/gen/ts/hiring/v1/service_connect.ts +95 -2
  21. package/gen/ts/hiring/v1/service_pb.ts +31 -1
  22. package/gen/ts/in-human-resources-backend-proto-0.1.6-local.tgz +0 -0
  23. package/gen/ts/node_modules/.package-lock.json +39 -0
  24. package/gen/ts/node_modules/@bufbuild/protobuf/README.md +43 -0
  25. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.d.ts +422 -0
  26. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.js +444 -0
  27. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.d.ts +113 -0
  28. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.js +15 -0
  29. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.d.ts +33 -0
  30. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.js +69 -0
  31. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.d.ts +36 -0
  32. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.js +910 -0
  33. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.d.ts +15 -0
  34. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.js +264 -0
  35. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.d.ts +13 -0
  36. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.js +103 -0
  37. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.d.ts +672 -0
  38. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.js +15 -0
  39. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/enum.d.ts +35 -0
  40. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/enum.js +15 -0
  41. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.d.ts +35 -0
  42. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.js +114 -0
  43. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/extension.d.ts +24 -0
  44. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/extension.js +15 -0
  45. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/field-list.d.ts +27 -0
  46. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/field-list.js +15 -0
  47. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/field.d.ts +314 -0
  48. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/field.js +15 -0
  49. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.d.ts +157 -0
  50. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.js +273 -0
  51. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.d.ts +256 -0
  52. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.js +316 -0
  53. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.d.ts +271 -0
  54. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.js +219 -0
  55. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.d.ts +2277 -0
  56. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.js +2077 -0
  57. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.d.ts +100 -0
  58. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.js +169 -0
  59. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.d.ts +28 -0
  60. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.js +52 -0
  61. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.d.ts +227 -0
  62. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.js +311 -0
  63. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.d.ts +29 -0
  64. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.js +55 -0
  65. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.d.ts +158 -0
  66. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.js +240 -0
  67. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.d.ts +132 -0
  68. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.js +213 -0
  69. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.d.ts +437 -0
  70. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.js +562 -0
  71. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.d.ts +267 -0
  72. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.js +569 -0
  73. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/varint.d.ts +70 -0
  74. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/varint.js +323 -0
  75. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/index.d.ts +42 -0
  76. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/index.js +85 -0
  77. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/is-message.d.ts +22 -0
  78. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js +52 -0
  79. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/json-format.d.ts +111 -0
  80. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/json-format.js +15 -0
  81. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/message-type.d.ts +51 -0
  82. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/message-type.js +15 -0
  83. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/message.d.ts +131 -0
  84. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/message.js +129 -0
  85. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/package.json +1 -0
  86. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/assert.d.ts +16 -0
  87. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/assert.js +59 -0
  88. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/binary-format.d.ts +7 -0
  89. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/binary-format.js +431 -0
  90. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.d.ts +27 -0
  91. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.js +94 -0
  92. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.d.ts +34 -0
  93. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.js +86 -0
  94. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.d.ts +19 -0
  95. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.js +120 -0
  96. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.d.ts +18 -0
  97. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.js +76 -0
  98. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-normalize.d.ts +9 -0
  99. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-normalize.js +69 -0
  100. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.d.ts +25 -0
  101. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.js +57 -0
  102. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field.d.ts +16 -0
  103. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field.js +45 -0
  104. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/json-format.d.ts +2 -0
  105. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/json-format.js +626 -0
  106. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/message-type.d.ts +18 -0
  107. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/message-type.js +50 -0
  108. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/names.d.ts +43 -0
  109. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/names.js +278 -0
  110. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/options-map.d.ts +7 -0
  111. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/options-map.js +15 -0
  112. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.d.ts +53 -0
  113. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.js +41 -0
  114. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/reflect.d.ts +9 -0
  115. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/reflect.js +79 -0
  116. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.d.ts +102 -0
  117. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.js +172 -0
  118. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/scalars.d.ts +18 -0
  119. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/scalars.js +105 -0
  120. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/text-format.d.ts +4 -0
  121. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/text-format.js +189 -0
  122. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/util-common.d.ts +2 -0
  123. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/util-common.js +247 -0
  124. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/util.d.ts +38 -0
  125. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/util.js +15 -0
  126. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.d.ts +18 -0
  127. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.js +128 -0
  128. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.d.ts +54 -0
  129. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.js +155 -0
  130. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.d.ts +5 -0
  131. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.js +29 -0
  132. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.d.ts +95 -0
  133. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js +116 -0
  134. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto2.d.ts +4 -0
  135. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto2.js +53 -0
  136. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto3.d.ts +4 -0
  137. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto3.js +56 -0
  138. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/scalar.d.ts +53 -0
  139. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/scalar.js +81 -0
  140. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/service-type.d.ts +96 -0
  141. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/service-type.js +53 -0
  142. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.d.ts +12 -0
  143. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.js +72 -0
  144. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.d.ts +66 -0
  145. package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.js +15 -0
  146. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.d.ts +422 -0
  147. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.js +439 -0
  148. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/binary-format.d.ts +113 -0
  149. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/binary-format.js +14 -0
  150. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/codegen-info.d.ts +33 -0
  151. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/codegen-info.js +67 -0
  152. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-descriptor-set.d.ts +36 -0
  153. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-descriptor-set.js +906 -0
  154. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-registry-from-desc.d.ts +15 -0
  155. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-registry-from-desc.js +261 -0
  156. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-registry.d.ts +13 -0
  157. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-registry.js +98 -0
  158. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/descriptor-set.d.ts +672 -0
  159. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/descriptor-set.js +14 -0
  160. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/enum.d.ts +35 -0
  161. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/enum.js +14 -0
  162. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.d.ts +35 -0
  163. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.js +107 -0
  164. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/extension.d.ts +24 -0
  165. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/extension.js +14 -0
  166. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/field-list.d.ts +27 -0
  167. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/field-list.js +14 -0
  168. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/field.d.ts +314 -0
  169. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/field.js +14 -0
  170. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/any_pb.d.ts +157 -0
  171. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/any_pb.js +269 -0
  172. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/api_pb.d.ts +256 -0
  173. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/api_pb.js +310 -0
  174. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/compiler/plugin_pb.d.ts +271 -0
  175. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/compiler/plugin_pb.js +212 -0
  176. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/descriptor_pb.d.ts +2277 -0
  177. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/descriptor_pb.js +2041 -0
  178. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.d.ts +100 -0
  179. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.js +165 -0
  180. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.d.ts +28 -0
  181. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.js +48 -0
  182. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/field_mask_pb.d.ts +227 -0
  183. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/field_mask_pb.js +307 -0
  184. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/source_context_pb.d.ts +29 -0
  185. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/source_context_pb.js +51 -0
  186. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/struct_pb.d.ts +158 -0
  187. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/struct_pb.js +234 -0
  188. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.d.ts +132 -0
  189. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.js +209 -0
  190. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/type_pb.d.ts +437 -0
  191. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/type_pb.js +554 -0
  192. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/wrappers_pb.d.ts +267 -0
  193. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/wrappers_pb.js +557 -0
  194. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/varint.d.ts +70 -0
  195. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/varint.js +313 -0
  196. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/index.d.ts +42 -0
  197. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/index.js +43 -0
  198. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/is-message.d.ts +22 -0
  199. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/is-message.js +48 -0
  200. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/json-format.d.ts +111 -0
  201. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/json-format.js +14 -0
  202. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/message-type.d.ts +51 -0
  203. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/message-type.js +14 -0
  204. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/message.d.ts +131 -0
  205. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/message.js +125 -0
  206. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/assert.d.ts +16 -0
  207. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/assert.js +52 -0
  208. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.d.ts +7 -0
  209. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.js +427 -0
  210. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/enum.d.ts +27 -0
  211. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/enum.js +87 -0
  212. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/extensions.d.ts +34 -0
  213. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/extensions.js +81 -0
  214. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/feature-set.d.ts +19 -0
  215. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/feature-set.js +116 -0
  216. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-list.d.ts +18 -0
  217. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-list.js +72 -0
  218. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-normalize.d.ts +9 -0
  219. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-normalize.js +65 -0
  220. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-wrapper.d.ts +25 -0
  221. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-wrapper.js +53 -0
  222. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field.d.ts +16 -0
  223. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field.js +41 -0
  224. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.d.ts +2 -0
  225. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.js +623 -0
  226. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.d.ts +18 -0
  227. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.js +46 -0
  228. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/names.d.ts +43 -0
  229. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/names.js +269 -0
  230. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/options-map.d.ts +7 -0
  231. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/options-map.js +14 -0
  232. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/proto-runtime.d.ts +53 -0
  233. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/proto-runtime.js +37 -0
  234. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.d.ts +9 -0
  235. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.js +74 -0
  236. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/reify-wkt.d.ts +102 -0
  237. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/reify-wkt.js +168 -0
  238. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.d.ts +18 -0
  239. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.js +99 -0
  240. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/text-format.d.ts +4 -0
  241. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/text-format.js +184 -0
  242. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/util-common.d.ts +2 -0
  243. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/util-common.js +244 -0
  244. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/util.d.ts +38 -0
  245. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/util.js +14 -0
  246. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.d.ts +18 -0
  247. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.js +125 -0
  248. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-delimited.d.ts +54 -0
  249. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-delimited.js +152 -0
  250. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-double.d.ts +5 -0
  251. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-double.js +26 -0
  252. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.d.ts +95 -0
  253. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js +113 -0
  254. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto2.d.ts +4 -0
  255. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto2.js +50 -0
  256. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto3.d.ts +4 -0
  257. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto3.js +53 -0
  258. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/scalar.d.ts +53 -0
  259. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/scalar.js +78 -0
  260. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/service-type.d.ts +96 -0
  261. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/service-type.js +50 -0
  262. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/to-plain-message.d.ts +12 -0
  263. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/to-plain-message.js +70 -0
  264. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/type-registry.d.ts +66 -0
  265. package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/type-registry.js +14 -0
  266. package/gen/ts/node_modules/@bufbuild/protobuf/package.json +40 -0
  267. package/gen/ts/node_modules/@connectrpc/connect/README.md +62 -0
  268. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/any-client.d.ts +22 -0
  269. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/any-client.js +34 -0
  270. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/call-options.d.ts +34 -0
  271. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/call-options.js +15 -0
  272. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/callback-client.d.ts +31 -0
  273. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/callback-client.js +116 -0
  274. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/code.d.ts +75 -0
  275. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/code.js +92 -0
  276. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/connect-error.d.ts +90 -0
  277. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/connect-error.js +134 -0
  278. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/context-values.d.ts +34 -0
  279. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/context-values.js +41 -0
  280. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/cors.d.ts +45 -0
  281. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/cors.js +82 -0
  282. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/http-headers.d.ts +36 -0
  283. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/http-headers.js +68 -0
  284. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/implementation.d.ts +165 -0
  285. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/implementation.js +79 -0
  286. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/index.d.ts +22 -0
  287. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/index.js +47 -0
  288. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/interceptor.d.ts +155 -0
  289. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/interceptor.js +27 -0
  290. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/method-type.d.ts +43 -0
  291. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/method-type.js +15 -0
  292. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/package.json +1 -0
  293. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/promise-client.d.ts +49 -0
  294. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/promise-client.js +147 -0
  295. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/async-iterable.d.ts +527 -0
  296. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/async-iterable.js +959 -0
  297. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/compression.d.ts +48 -0
  298. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/compression.js +75 -0
  299. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/content-type-matcher.d.ts +16 -0
  300. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/content-type-matcher.js +43 -0
  301. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/create-method-url.d.ts +17 -0
  302. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/create-method-url.js +36 -0
  303. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/envelope.d.ts +59 -0
  304. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/envelope.js +152 -0
  305. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/index.d.ts +24 -0
  306. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/index.js +93 -0
  307. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/invoke-implementation.d.ts +21 -0
  308. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/invoke-implementation.js +250 -0
  309. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/limit-io.d.ts +24 -0
  310. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/limit-io.js +80 -0
  311. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/normalize.d.ts +12 -0
  312. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/normalize.js +56 -0
  313. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/protocol-handler-factory.d.ts +18 -0
  314. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/protocol-handler-factory.js +15 -0
  315. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/run-call.d.ts +45 -0
  316. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/run-call.js +119 -0
  317. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/serialization.d.ts +104 -0
  318. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/serialization.js +148 -0
  319. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/signals.d.ts +36 -0
  320. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/signals.js +100 -0
  321. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/transport-options.d.ts +98 -0
  322. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/transport-options.js +15 -0
  323. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-fetch.d.ts +35 -0
  324. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-fetch.js +150 -0
  325. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler-client.d.ts +7 -0
  326. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler-client.js +90 -0
  327. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler.d.ts +155 -0
  328. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler.js +131 -0
  329. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal.d.ts +102 -0
  330. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal.js +78 -0
  331. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/code-string.d.ts +16 -0
  332. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/code-string.js +52 -0
  333. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/content-type.d.ts +40 -0
  334. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/content-type.js +71 -0
  335. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/end-stream.d.ts +44 -0
  336. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/end-stream.js +132 -0
  337. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/error-json.d.ts +36 -0
  338. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/error-json.js +163 -0
  339. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/get-request.d.ts +7 -0
  340. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/get-request.js +68 -0
  341. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/handler-factory.d.ts +6 -0
  342. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/handler-factory.js +281 -0
  343. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/headers.d.ts +12 -0
  344. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/headers.js +28 -0
  345. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/http-status.d.ts +15 -0
  346. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/http-status.js +90 -0
  347. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.d.ts +16 -0
  348. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.js +81 -0
  349. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/parse-timeout.d.ts +13 -0
  350. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/parse-timeout.js +44 -0
  351. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/query-params.d.ts +8 -0
  352. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/query-params.js +24 -0
  353. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/request-header.d.ts +19 -0
  354. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/request-header.js +70 -0
  355. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/trailer-mux.d.ts +19 -0
  356. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/trailer-mux.js +53 -0
  357. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/transport.d.ts +6 -0
  358. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/transport.js +214 -0
  359. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/validate-response.d.ts +30 -0
  360. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/validate-response.js +72 -0
  361. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/version.d.ts +20 -0
  362. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/version.js +58 -0
  363. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/content-type.d.ts +16 -0
  364. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/content-type.js +38 -0
  365. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/gen/status_pb.d.ts +89 -0
  366. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/gen/status_pb.js +120 -0
  367. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/handler-factory.d.ts +6 -0
  368. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/handler-factory.js +122 -0
  369. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/headers.d.ts +12 -0
  370. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/headers.js +28 -0
  371. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/http-status.d.ts +8 -0
  372. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/http-status.js +46 -0
  373. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.d.ts +10 -0
  374. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.js +61 -0
  375. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/parse-timeout.d.ts +13 -0
  376. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/parse-timeout.js +53 -0
  377. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/request-header.d.ts +13 -0
  378. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/request-header.js +56 -0
  379. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/trailer-status.d.ts +28 -0
  380. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/trailer-status.js +104 -0
  381. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/transport.d.ts +6 -0
  382. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/transport.js +185 -0
  383. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-response.d.ts +33 -0
  384. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-response.js +75 -0
  385. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-trailer.d.ts +13 -0
  386. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-trailer.js +44 -0
  387. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/content-type.d.ts +19 -0
  388. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/content-type.js +41 -0
  389. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/handler-factory.d.ts +6 -0
  390. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/handler-factory.js +128 -0
  391. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/headers.d.ts +20 -0
  392. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/headers.js +44 -0
  393. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.d.ts +8 -0
  394. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.js +61 -0
  395. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/request-header.d.ts +13 -0
  396. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/request-header.js +59 -0
  397. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/trailer.d.ts +27 -0
  398. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/trailer.js +71 -0
  399. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/transport.d.ts +6 -0
  400. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/transport.js +238 -0
  401. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/validate-response.d.ts +34 -0
  402. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/validate-response.js +73 -0
  403. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/router-transport.d.ts +13 -0
  404. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/router-transport.js +32 -0
  405. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/router.d.ts +88 -0
  406. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/router.js +83 -0
  407. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/transport.d.ts +20 -0
  408. package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/transport.js +15 -0
  409. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/any-client.d.ts +22 -0
  410. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/any-client.js +31 -0
  411. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/call-options.d.ts +34 -0
  412. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/call-options.js +14 -0
  413. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/callback-client.d.ts +31 -0
  414. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/callback-client.js +113 -0
  415. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/code.d.ts +75 -0
  416. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/code.js +89 -0
  417. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/connect-error.d.ts +90 -0
  418. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/connect-error.js +130 -0
  419. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/context-values.d.ts +34 -0
  420. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/context-values.js +37 -0
  421. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/cors.d.ts +45 -0
  422. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/cors.js +79 -0
  423. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/http-headers.d.ts +36 -0
  424. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/http-headers.js +63 -0
  425. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/implementation.d.ts +165 -0
  426. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/implementation.js +75 -0
  427. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/index.d.ts +22 -0
  428. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/index.js +27 -0
  429. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/interceptor.d.ts +155 -0
  430. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/interceptor.js +24 -0
  431. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/method-type.d.ts +43 -0
  432. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/method-type.js +14 -0
  433. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/promise-client.d.ts +49 -0
  434. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/promise-client.js +139 -0
  435. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.d.ts +527 -0
  436. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.js +937 -0
  437. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/compression.d.ts +48 -0
  438. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/compression.js +71 -0
  439. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/content-type-matcher.d.ts +16 -0
  440. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/content-type-matcher.js +40 -0
  441. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/create-method-url.d.ts +17 -0
  442. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/create-method-url.js +33 -0
  443. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/envelope.d.ts +59 -0
  444. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/envelope.js +145 -0
  445. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/index.d.ts +24 -0
  446. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/index.js +32 -0
  447. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/invoke-implementation.d.ts +21 -0
  448. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/invoke-implementation.js +246 -0
  449. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.d.ts +24 -0
  450. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.js +75 -0
  451. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/normalize.d.ts +12 -0
  452. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/normalize.js +53 -0
  453. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/protocol-handler-factory.d.ts +18 -0
  454. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/protocol-handler-factory.js +14 -0
  455. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/run-call.d.ts +45 -0
  456. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/run-call.js +115 -0
  457. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/serialization.d.ts +104 -0
  458. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/serialization.js +140 -0
  459. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/signals.d.ts +36 -0
  460. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/signals.js +95 -0
  461. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/transport-options.d.ts +98 -0
  462. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/transport-options.js +14 -0
  463. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-fetch.d.ts +35 -0
  464. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-fetch.js +142 -0
  465. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler-client.d.ts +7 -0
  466. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler-client.js +87 -0
  467. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler.d.ts +155 -0
  468. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler.js +125 -0
  469. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal.d.ts +102 -0
  470. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal.js +74 -0
  471. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.d.ts +16 -0
  472. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.js +48 -0
  473. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/content-type.d.ts +40 -0
  474. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/content-type.js +66 -0
  475. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/end-stream.d.ts +44 -0
  476. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/end-stream.js +126 -0
  477. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/error-json.d.ts +36 -0
  478. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/error-json.js +157 -0
  479. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/get-request.d.ts +7 -0
  480. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/get-request.js +65 -0
  481. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/handler-factory.d.ts +6 -0
  482. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/handler-factory.js +278 -0
  483. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/headers.d.ts +12 -0
  484. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/headers.js +25 -0
  485. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/http-status.d.ts +15 -0
  486. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/http-status.js +86 -0
  487. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/index.d.ts +16 -0
  488. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/index.js +33 -0
  489. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/parse-timeout.d.ts +13 -0
  490. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/parse-timeout.js +41 -0
  491. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/query-params.d.ts +8 -0
  492. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/query-params.js +21 -0
  493. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/request-header.d.ts +19 -0
  494. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/request-header.js +66 -0
  495. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/trailer-mux.d.ts +19 -0
  496. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/trailer-mux.js +49 -0
  497. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.d.ts +6 -0
  498. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.js +211 -0
  499. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/validate-response.d.ts +30 -0
  500. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/validate-response.js +68 -0
  501. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/version.d.ts +20 -0
  502. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/version.js +53 -0
  503. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/content-type.d.ts +16 -0
  504. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/content-type.js +34 -0
  505. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/gen/status_pb.d.ts +89 -0
  506. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/gen/status_pb.js +116 -0
  507. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/handler-factory.d.ts +6 -0
  508. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/handler-factory.js +119 -0
  509. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/headers.d.ts +12 -0
  510. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/headers.js +25 -0
  511. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/http-status.d.ts +8 -0
  512. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/http-status.js +43 -0
  513. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/index.d.ts +10 -0
  514. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/index.js +28 -0
  515. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/parse-timeout.d.ts +13 -0
  516. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/parse-timeout.js +50 -0
  517. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/request-header.d.ts +13 -0
  518. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/request-header.js +52 -0
  519. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/trailer-status.d.ts +28 -0
  520. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/trailer-status.js +99 -0
  521. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/transport.d.ts +6 -0
  522. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/transport.js +182 -0
  523. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-response.d.ts +33 -0
  524. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-response.js +71 -0
  525. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-trailer.d.ts +13 -0
  526. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-trailer.js +41 -0
  527. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/content-type.d.ts +19 -0
  528. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/content-type.js +37 -0
  529. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/handler-factory.d.ts +6 -0
  530. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/handler-factory.js +125 -0
  531. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/headers.d.ts +20 -0
  532. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/headers.js +33 -0
  533. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/index.d.ts +8 -0
  534. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/index.js +26 -0
  535. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/request-header.d.ts +13 -0
  536. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/request-header.js +55 -0
  537. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/trailer.d.ts +27 -0
  538. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/trailer.js +65 -0
  539. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/transport.d.ts +6 -0
  540. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/transport.js +235 -0
  541. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/validate-response.d.ts +34 -0
  542. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/validate-response.js +69 -0
  543. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/router-transport.d.ts +13 -0
  544. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/router-transport.js +29 -0
  545. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/router.d.ts +88 -0
  546. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/router.js +80 -0
  547. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/transport.d.ts +20 -0
  548. package/gen/ts/node_modules/@connectrpc/connect/dist/esm/transport.js +14 -0
  549. package/gen/ts/node_modules/@connectrpc/connect/package.json +75 -0
  550. package/gen/ts/node_modules/@connectrpc/connect/protocol-connect.js +16 -0
  551. package/gen/ts/node_modules/@connectrpc/connect/protocol-grpc-web.js +16 -0
  552. package/gen/ts/node_modules/@connectrpc/connect/protocol-grpc.js +16 -0
  553. package/gen/ts/node_modules/@connectrpc/connect/protocol.js +16 -0
  554. package/gen/ts/node_modules/typescript/LICENSE.txt +55 -0
  555. package/gen/ts/node_modules/typescript/README.md +50 -0
  556. package/gen/ts/node_modules/typescript/SECURITY.md +41 -0
  557. package/gen/ts/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  558. package/gen/ts/node_modules/typescript/bin/tsc +2 -0
  559. package/gen/ts/node_modules/typescript/bin/tsserver +2 -0
  560. package/gen/ts/node_modules/typescript/lib/_tsc.js +133818 -0
  561. package/gen/ts/node_modules/typescript/lib/_tsserver.js +659 -0
  562. package/gen/ts/node_modules/typescript/lib/_typingsInstaller.js +222 -0
  563. package/gen/ts/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
  564. package/gen/ts/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
  565. package/gen/ts/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
  566. package/gen/ts/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
  567. package/gen/ts/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
  568. package/gen/ts/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
  569. package/gen/ts/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
  570. package/gen/ts/node_modules/typescript/lib/lib.d.ts +22 -0
  571. package/gen/ts/node_modules/typescript/lib/lib.decorators.d.ts +384 -0
  572. package/gen/ts/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
  573. package/gen/ts/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
  574. package/gen/ts/node_modules/typescript/lib/lib.dom.d.ts +39429 -0
  575. package/gen/ts/node_modules/typescript/lib/lib.dom.iterable.d.ts +571 -0
  576. package/gen/ts/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
  577. package/gen/ts/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
  578. package/gen/ts/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
  579. package/gen/ts/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
  580. package/gen/ts/node_modules/typescript/lib/lib.es2015.iterable.d.ts +605 -0
  581. package/gen/ts/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
  582. package/gen/ts/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
  583. package/gen/ts/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
  584. package/gen/ts/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
  585. package/gen/ts/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
  586. package/gen/ts/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
  587. package/gen/ts/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
  588. package/gen/ts/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
  589. package/gen/ts/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
  590. package/gen/ts/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +21 -0
  591. package/gen/ts/node_modules/typescript/lib/lib.es2017.d.ts +26 -0
  592. package/gen/ts/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
  593. package/gen/ts/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
  594. package/gen/ts/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
  595. package/gen/ts/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
  596. package/gen/ts/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
  597. package/gen/ts/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
  598. package/gen/ts/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
  599. package/gen/ts/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
  600. package/gen/ts/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
  601. package/gen/ts/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
  602. package/gen/ts/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
  603. package/gen/ts/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
  604. package/gen/ts/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
  605. package/gen/ts/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
  606. package/gen/ts/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
  607. package/gen/ts/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
  608. package/gen/ts/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
  609. package/gen/ts/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
  610. package/gen/ts/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
  611. package/gen/ts/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
  612. package/gen/ts/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
  613. package/gen/ts/node_modules/typescript/lib/lib.es2020.bigint.d.ts +765 -0
  614. package/gen/ts/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
  615. package/gen/ts/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
  616. package/gen/ts/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
  617. package/gen/ts/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
  618. package/gen/ts/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
  619. package/gen/ts/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
  620. package/gen/ts/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +99 -0
  621. package/gen/ts/node_modules/typescript/lib/lib.es2020.string.d.ts +44 -0
  622. package/gen/ts/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
  623. package/gen/ts/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
  624. package/gen/ts/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
  625. package/gen/ts/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
  626. package/gen/ts/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
  627. package/gen/ts/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
  628. package/gen/ts/node_modules/typescript/lib/lib.es2021.weakref.d.ts +78 -0
  629. package/gen/ts/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
  630. package/gen/ts/node_modules/typescript/lib/lib.es2022.d.ts +25 -0
  631. package/gen/ts/node_modules/typescript/lib/lib.es2022.error.d.ts +75 -0
  632. package/gen/ts/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
  633. package/gen/ts/node_modules/typescript/lib/lib.es2022.intl.d.ts +145 -0
  634. package/gen/ts/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
  635. package/gen/ts/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
  636. package/gen/ts/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
  637. package/gen/ts/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
  638. package/gen/ts/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
  639. package/gen/ts/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
  640. package/gen/ts/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
  641. package/gen/ts/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
  642. package/gen/ts/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +65 -0
  643. package/gen/ts/node_modules/typescript/lib/lib.es2024.collection.d.ts +29 -0
  644. package/gen/ts/node_modules/typescript/lib/lib.es2024.d.ts +26 -0
  645. package/gen/ts/node_modules/typescript/lib/lib.es2024.full.d.ts +24 -0
  646. package/gen/ts/node_modules/typescript/lib/lib.es2024.object.d.ts +29 -0
  647. package/gen/ts/node_modules/typescript/lib/lib.es2024.promise.d.ts +35 -0
  648. package/gen/ts/node_modules/typescript/lib/lib.es2024.regexp.d.ts +25 -0
  649. package/gen/ts/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +68 -0
  650. package/gen/ts/node_modules/typescript/lib/lib.es2024.string.d.ts +29 -0
  651. package/gen/ts/node_modules/typescript/lib/lib.es5.d.ts +4601 -0
  652. package/gen/ts/node_modules/typescript/lib/lib.es6.d.ts +23 -0
  653. package/gen/ts/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
  654. package/gen/ts/node_modules/typescript/lib/lib.esnext.collection.d.ts +96 -0
  655. package/gen/ts/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
  656. package/gen/ts/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
  657. package/gen/ts/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
  658. package/gen/ts/node_modules/typescript/lib/lib.esnext.error.d.ts +24 -0
  659. package/gen/ts/node_modules/typescript/lib/lib.esnext.float16.d.ts +445 -0
  660. package/gen/ts/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
  661. package/gen/ts/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
  662. package/gen/ts/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
  663. package/gen/ts/node_modules/typescript/lib/lib.esnext.promise.d.ts +34 -0
  664. package/gen/ts/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +25 -0
  665. package/gen/ts/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
  666. package/gen/ts/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
  667. package/gen/ts/node_modules/typescript/lib/lib.webworker.d.ts +13150 -0
  668. package/gen/ts/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
  669. package/gen/ts/node_modules/typescript/lib/lib.webworker.iterable.d.ts +340 -0
  670. package/gen/ts/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
  671. package/gen/ts/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
  672. package/gen/ts/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
  673. package/gen/ts/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
  674. package/gen/ts/node_modules/typescript/lib/tsc.js +8 -0
  675. package/gen/ts/node_modules/typescript/lib/tsserver.js +8 -0
  676. package/gen/ts/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
  677. package/gen/ts/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  678. package/gen/ts/node_modules/typescript/lib/typesMap.json +497 -0
  679. package/gen/ts/node_modules/typescript/lib/typescript.d.ts +11437 -0
  680. package/gen/ts/node_modules/typescript/lib/typescript.js +200276 -0
  681. package/gen/ts/node_modules/typescript/lib/typingsInstaller.js +8 -0
  682. package/gen/ts/node_modules/typescript/lib/watchGuard.js +53 -0
  683. package/gen/ts/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
  684. package/gen/ts/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
  685. package/gen/ts/node_modules/typescript/package.json +120 -0
  686. package/gen/ts/package-lock.json +51 -0
  687. package/gen/ts/workflow/v1/service_connect.ts +87 -0
  688. package/gen/ts/workflow/v1/service_pb.ts +594 -0
  689. package/hiring/v1/pipeline.proto +156 -0
  690. package/hiring/v1/service.proto +19 -0
  691. package/package.json +14 -2
  692. package/workflow/v1/service.proto +87 -0
@@ -0,0 +1,2277 @@
1
+ import { proto2 } from "../../proto2.js";
2
+ import type { PartialMessage, PlainMessage } from "../../message.js";
3
+ import { Message } from "../../message.js";
4
+ import type { FieldList } from "../../field-list.js";
5
+ import type { BinaryReadOptions } from "../../binary-format.js";
6
+ import type { JsonReadOptions, JsonValue } from "../../json-format.js";
7
+ /**
8
+ * The full set of known editions.
9
+ *
10
+ * @generated from enum google.protobuf.Edition
11
+ */
12
+ export declare enum Edition {
13
+ /**
14
+ * A placeholder for an unknown edition value.
15
+ *
16
+ * @generated from enum value: EDITION_UNKNOWN = 0;
17
+ */
18
+ EDITION_UNKNOWN = 0,
19
+ /**
20
+ * A placeholder edition for specifying default behaviors *before* a feature
21
+ * was first introduced. This is effectively an "infinite past".
22
+ *
23
+ * @generated from enum value: EDITION_LEGACY = 900;
24
+ */
25
+ EDITION_LEGACY = 900,
26
+ /**
27
+ * Legacy syntax "editions". These pre-date editions, but behave much like
28
+ * distinct editions. These can't be used to specify the edition of proto
29
+ * files, but feature definitions must supply proto2/proto3 defaults for
30
+ * backwards compatibility.
31
+ *
32
+ * @generated from enum value: EDITION_PROTO2 = 998;
33
+ */
34
+ EDITION_PROTO2 = 998,
35
+ /**
36
+ * @generated from enum value: EDITION_PROTO3 = 999;
37
+ */
38
+ EDITION_PROTO3 = 999,
39
+ /**
40
+ * Editions that have been released. The specific values are arbitrary and
41
+ * should not be depended on, but they will always be time-ordered for easy
42
+ * comparison.
43
+ *
44
+ * @generated from enum value: EDITION_2023 = 1000;
45
+ */
46
+ EDITION_2023 = 1000,
47
+ /**
48
+ * @generated from enum value: EDITION_2024 = 1001;
49
+ */
50
+ EDITION_2024 = 1001,
51
+ /**
52
+ * Placeholder editions for testing feature resolution. These should not be
53
+ * used or relyed on outside of tests.
54
+ *
55
+ * @generated from enum value: EDITION_1_TEST_ONLY = 1;
56
+ */
57
+ EDITION_1_TEST_ONLY = 1,
58
+ /**
59
+ * @generated from enum value: EDITION_2_TEST_ONLY = 2;
60
+ */
61
+ EDITION_2_TEST_ONLY = 2,
62
+ /**
63
+ * @generated from enum value: EDITION_99997_TEST_ONLY = 99997;
64
+ */
65
+ EDITION_99997_TEST_ONLY = 99997,
66
+ /**
67
+ * @generated from enum value: EDITION_99998_TEST_ONLY = 99998;
68
+ */
69
+ EDITION_99998_TEST_ONLY = 99998,
70
+ /**
71
+ * @generated from enum value: EDITION_99999_TEST_ONLY = 99999;
72
+ */
73
+ EDITION_99999_TEST_ONLY = 99999,
74
+ /**
75
+ * Placeholder for specifying unbounded edition support. This should only
76
+ * ever be used by plugins that can expect to never require any changes to
77
+ * support a new edition.
78
+ *
79
+ * @generated from enum value: EDITION_MAX = 2147483647;
80
+ */
81
+ EDITION_MAX = 2147483647
82
+ }
83
+ /**
84
+ * The protocol compiler can output a FileDescriptorSet containing the .proto
85
+ * files it parses.
86
+ *
87
+ * @generated from message google.protobuf.FileDescriptorSet
88
+ */
89
+ export declare class FileDescriptorSet extends Message<FileDescriptorSet> {
90
+ /**
91
+ * @generated from field: repeated google.protobuf.FileDescriptorProto file = 1;
92
+ */
93
+ file: FileDescriptorProto[];
94
+ constructor(data?: PartialMessage<FileDescriptorSet>);
95
+ static readonly runtime: typeof proto2;
96
+ static readonly typeName = "google.protobuf.FileDescriptorSet";
97
+ static readonly fields: FieldList;
98
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileDescriptorSet;
99
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileDescriptorSet;
100
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileDescriptorSet;
101
+ static equals(a: FileDescriptorSet | PlainMessage<FileDescriptorSet> | undefined, b: FileDescriptorSet | PlainMessage<FileDescriptorSet> | undefined): boolean;
102
+ }
103
+ /**
104
+ * Describes a complete .proto file.
105
+ *
106
+ * @generated from message google.protobuf.FileDescriptorProto
107
+ */
108
+ export declare class FileDescriptorProto extends Message<FileDescriptorProto> {
109
+ /**
110
+ * file name, relative to root of source tree
111
+ *
112
+ * @generated from field: optional string name = 1;
113
+ */
114
+ name?: string;
115
+ /**
116
+ * e.g. "foo", "foo.bar", etc.
117
+ *
118
+ * @generated from field: optional string package = 2;
119
+ */
120
+ package?: string;
121
+ /**
122
+ * Names of files imported by this file.
123
+ *
124
+ * @generated from field: repeated string dependency = 3;
125
+ */
126
+ dependency: string[];
127
+ /**
128
+ * Indexes of the public imported files in the dependency list above.
129
+ *
130
+ * @generated from field: repeated int32 public_dependency = 10;
131
+ */
132
+ publicDependency: number[];
133
+ /**
134
+ * Indexes of the weak imported files in the dependency list.
135
+ * For Google-internal migration only. Do not use.
136
+ *
137
+ * @generated from field: repeated int32 weak_dependency = 11;
138
+ */
139
+ weakDependency: number[];
140
+ /**
141
+ * All top-level definitions in this file.
142
+ *
143
+ * @generated from field: repeated google.protobuf.DescriptorProto message_type = 4;
144
+ */
145
+ messageType: DescriptorProto[];
146
+ /**
147
+ * @generated from field: repeated google.protobuf.EnumDescriptorProto enum_type = 5;
148
+ */
149
+ enumType: EnumDescriptorProto[];
150
+ /**
151
+ * @generated from field: repeated google.protobuf.ServiceDescriptorProto service = 6;
152
+ */
153
+ service: ServiceDescriptorProto[];
154
+ /**
155
+ * @generated from field: repeated google.protobuf.FieldDescriptorProto extension = 7;
156
+ */
157
+ extension: FieldDescriptorProto[];
158
+ /**
159
+ * @generated from field: optional google.protobuf.FileOptions options = 8;
160
+ */
161
+ options?: FileOptions;
162
+ /**
163
+ * This field contains optional information about the original source code.
164
+ * You may safely remove this entire field without harming runtime
165
+ * functionality of the descriptors -- the information is needed only by
166
+ * development tools.
167
+ *
168
+ * @generated from field: optional google.protobuf.SourceCodeInfo source_code_info = 9;
169
+ */
170
+ sourceCodeInfo?: SourceCodeInfo;
171
+ /**
172
+ * The syntax of the proto file.
173
+ * The supported values are "proto2", "proto3", and "editions".
174
+ *
175
+ * If `edition` is present, this value must be "editions".
176
+ *
177
+ * @generated from field: optional string syntax = 12;
178
+ */
179
+ syntax?: string;
180
+ /**
181
+ * The edition of the proto file.
182
+ *
183
+ * @generated from field: optional google.protobuf.Edition edition = 14;
184
+ */
185
+ edition?: Edition;
186
+ constructor(data?: PartialMessage<FileDescriptorProto>);
187
+ static readonly runtime: typeof proto2;
188
+ static readonly typeName = "google.protobuf.FileDescriptorProto";
189
+ static readonly fields: FieldList;
190
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileDescriptorProto;
191
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileDescriptorProto;
192
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileDescriptorProto;
193
+ static equals(a: FileDescriptorProto | PlainMessage<FileDescriptorProto> | undefined, b: FileDescriptorProto | PlainMessage<FileDescriptorProto> | undefined): boolean;
194
+ }
195
+ /**
196
+ * Describes a message type.
197
+ *
198
+ * @generated from message google.protobuf.DescriptorProto
199
+ */
200
+ export declare class DescriptorProto extends Message<DescriptorProto> {
201
+ /**
202
+ * @generated from field: optional string name = 1;
203
+ */
204
+ name?: string;
205
+ /**
206
+ * @generated from field: repeated google.protobuf.FieldDescriptorProto field = 2;
207
+ */
208
+ field: FieldDescriptorProto[];
209
+ /**
210
+ * @generated from field: repeated google.protobuf.FieldDescriptorProto extension = 6;
211
+ */
212
+ extension: FieldDescriptorProto[];
213
+ /**
214
+ * @generated from field: repeated google.protobuf.DescriptorProto nested_type = 3;
215
+ */
216
+ nestedType: DescriptorProto[];
217
+ /**
218
+ * @generated from field: repeated google.protobuf.EnumDescriptorProto enum_type = 4;
219
+ */
220
+ enumType: EnumDescriptorProto[];
221
+ /**
222
+ * @generated from field: repeated google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;
223
+ */
224
+ extensionRange: DescriptorProto_ExtensionRange[];
225
+ /**
226
+ * @generated from field: repeated google.protobuf.OneofDescriptorProto oneof_decl = 8;
227
+ */
228
+ oneofDecl: OneofDescriptorProto[];
229
+ /**
230
+ * @generated from field: optional google.protobuf.MessageOptions options = 7;
231
+ */
232
+ options?: MessageOptions;
233
+ /**
234
+ * @generated from field: repeated google.protobuf.DescriptorProto.ReservedRange reserved_range = 9;
235
+ */
236
+ reservedRange: DescriptorProto_ReservedRange[];
237
+ /**
238
+ * Reserved field names, which may not be used by fields in the same message.
239
+ * A given name may only be reserved once.
240
+ *
241
+ * @generated from field: repeated string reserved_name = 10;
242
+ */
243
+ reservedName: string[];
244
+ constructor(data?: PartialMessage<DescriptorProto>);
245
+ static readonly runtime: typeof proto2;
246
+ static readonly typeName = "google.protobuf.DescriptorProto";
247
+ static readonly fields: FieldList;
248
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DescriptorProto;
249
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DescriptorProto;
250
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DescriptorProto;
251
+ static equals(a: DescriptorProto | PlainMessage<DescriptorProto> | undefined, b: DescriptorProto | PlainMessage<DescriptorProto> | undefined): boolean;
252
+ }
253
+ /**
254
+ * @generated from message google.protobuf.DescriptorProto.ExtensionRange
255
+ */
256
+ export declare class DescriptorProto_ExtensionRange extends Message<DescriptorProto_ExtensionRange> {
257
+ /**
258
+ * Inclusive.
259
+ *
260
+ * @generated from field: optional int32 start = 1;
261
+ */
262
+ start?: number;
263
+ /**
264
+ * Exclusive.
265
+ *
266
+ * @generated from field: optional int32 end = 2;
267
+ */
268
+ end?: number;
269
+ /**
270
+ * @generated from field: optional google.protobuf.ExtensionRangeOptions options = 3;
271
+ */
272
+ options?: ExtensionRangeOptions;
273
+ constructor(data?: PartialMessage<DescriptorProto_ExtensionRange>);
274
+ static readonly runtime: typeof proto2;
275
+ static readonly typeName = "google.protobuf.DescriptorProto.ExtensionRange";
276
+ static readonly fields: FieldList;
277
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DescriptorProto_ExtensionRange;
278
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DescriptorProto_ExtensionRange;
279
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DescriptorProto_ExtensionRange;
280
+ static equals(a: DescriptorProto_ExtensionRange | PlainMessage<DescriptorProto_ExtensionRange> | undefined, b: DescriptorProto_ExtensionRange | PlainMessage<DescriptorProto_ExtensionRange> | undefined): boolean;
281
+ }
282
+ /**
283
+ * Range of reserved tag numbers. Reserved tag numbers may not be used by
284
+ * fields or extension ranges in the same message. Reserved ranges may
285
+ * not overlap.
286
+ *
287
+ * @generated from message google.protobuf.DescriptorProto.ReservedRange
288
+ */
289
+ export declare class DescriptorProto_ReservedRange extends Message<DescriptorProto_ReservedRange> {
290
+ /**
291
+ * Inclusive.
292
+ *
293
+ * @generated from field: optional int32 start = 1;
294
+ */
295
+ start?: number;
296
+ /**
297
+ * Exclusive.
298
+ *
299
+ * @generated from field: optional int32 end = 2;
300
+ */
301
+ end?: number;
302
+ constructor(data?: PartialMessage<DescriptorProto_ReservedRange>);
303
+ static readonly runtime: typeof proto2;
304
+ static readonly typeName = "google.protobuf.DescriptorProto.ReservedRange";
305
+ static readonly fields: FieldList;
306
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DescriptorProto_ReservedRange;
307
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DescriptorProto_ReservedRange;
308
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DescriptorProto_ReservedRange;
309
+ static equals(a: DescriptorProto_ReservedRange | PlainMessage<DescriptorProto_ReservedRange> | undefined, b: DescriptorProto_ReservedRange | PlainMessage<DescriptorProto_ReservedRange> | undefined): boolean;
310
+ }
311
+ /**
312
+ * @generated from message google.protobuf.ExtensionRangeOptions
313
+ */
314
+ export declare class ExtensionRangeOptions extends Message<ExtensionRangeOptions> {
315
+ /**
316
+ * The parser stores options it doesn't recognize here. See above.
317
+ *
318
+ * @generated from field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
319
+ */
320
+ uninterpretedOption: UninterpretedOption[];
321
+ /**
322
+ * For external users: DO NOT USE. We are in the process of open sourcing
323
+ * extension declaration and executing internal cleanups before it can be
324
+ * used externally.
325
+ *
326
+ * @generated from field: repeated google.protobuf.ExtensionRangeOptions.Declaration declaration = 2;
327
+ */
328
+ declaration: ExtensionRangeOptions_Declaration[];
329
+ /**
330
+ * Any features defined in the specific edition.
331
+ *
332
+ * @generated from field: optional google.protobuf.FeatureSet features = 50;
333
+ */
334
+ features?: FeatureSet;
335
+ /**
336
+ * The verification state of the range.
337
+ * TODO: flip the default to DECLARATION once all empty ranges
338
+ * are marked as UNVERIFIED.
339
+ *
340
+ * @generated from field: optional google.protobuf.ExtensionRangeOptions.VerificationState verification = 3 [default = UNVERIFIED];
341
+ */
342
+ verification?: ExtensionRangeOptions_VerificationState;
343
+ constructor(data?: PartialMessage<ExtensionRangeOptions>);
344
+ static readonly runtime: typeof proto2;
345
+ static readonly typeName = "google.protobuf.ExtensionRangeOptions";
346
+ static readonly fields: FieldList;
347
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExtensionRangeOptions;
348
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExtensionRangeOptions;
349
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExtensionRangeOptions;
350
+ static equals(a: ExtensionRangeOptions | PlainMessage<ExtensionRangeOptions> | undefined, b: ExtensionRangeOptions | PlainMessage<ExtensionRangeOptions> | undefined): boolean;
351
+ }
352
+ /**
353
+ * The verification state of the extension range.
354
+ *
355
+ * @generated from enum google.protobuf.ExtensionRangeOptions.VerificationState
356
+ */
357
+ export declare enum ExtensionRangeOptions_VerificationState {
358
+ /**
359
+ * All the extensions of the range must be declared.
360
+ *
361
+ * @generated from enum value: DECLARATION = 0;
362
+ */
363
+ DECLARATION = 0,
364
+ /**
365
+ * @generated from enum value: UNVERIFIED = 1;
366
+ */
367
+ UNVERIFIED = 1
368
+ }
369
+ /**
370
+ * @generated from message google.protobuf.ExtensionRangeOptions.Declaration
371
+ */
372
+ export declare class ExtensionRangeOptions_Declaration extends Message<ExtensionRangeOptions_Declaration> {
373
+ /**
374
+ * The extension number declared within the extension range.
375
+ *
376
+ * @generated from field: optional int32 number = 1;
377
+ */
378
+ number?: number;
379
+ /**
380
+ * The fully-qualified name of the extension field. There must be a leading
381
+ * dot in front of the full name.
382
+ *
383
+ * @generated from field: optional string full_name = 2;
384
+ */
385
+ fullName?: string;
386
+ /**
387
+ * The fully-qualified type name of the extension field. Unlike
388
+ * Metadata.type, Declaration.type must have a leading dot for messages
389
+ * and enums.
390
+ *
391
+ * @generated from field: optional string type = 3;
392
+ */
393
+ type?: string;
394
+ /**
395
+ * If true, indicates that the number is reserved in the extension range,
396
+ * and any extension field with the number will fail to compile. Set this
397
+ * when a declared extension field is deleted.
398
+ *
399
+ * @generated from field: optional bool reserved = 5;
400
+ */
401
+ reserved?: boolean;
402
+ /**
403
+ * If true, indicates that the extension must be defined as repeated.
404
+ * Otherwise the extension must be defined as optional.
405
+ *
406
+ * @generated from field: optional bool repeated = 6;
407
+ */
408
+ repeated?: boolean;
409
+ constructor(data?: PartialMessage<ExtensionRangeOptions_Declaration>);
410
+ static readonly runtime: typeof proto2;
411
+ static readonly typeName = "google.protobuf.ExtensionRangeOptions.Declaration";
412
+ static readonly fields: FieldList;
413
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExtensionRangeOptions_Declaration;
414
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExtensionRangeOptions_Declaration;
415
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExtensionRangeOptions_Declaration;
416
+ static equals(a: ExtensionRangeOptions_Declaration | PlainMessage<ExtensionRangeOptions_Declaration> | undefined, b: ExtensionRangeOptions_Declaration | PlainMessage<ExtensionRangeOptions_Declaration> | undefined): boolean;
417
+ }
418
+ /**
419
+ * Describes a field within a message.
420
+ *
421
+ * @generated from message google.protobuf.FieldDescriptorProto
422
+ */
423
+ export declare class FieldDescriptorProto extends Message<FieldDescriptorProto> {
424
+ /**
425
+ * @generated from field: optional string name = 1;
426
+ */
427
+ name?: string;
428
+ /**
429
+ * @generated from field: optional int32 number = 3;
430
+ */
431
+ number?: number;
432
+ /**
433
+ * @generated from field: optional google.protobuf.FieldDescriptorProto.Label label = 4;
434
+ */
435
+ label?: FieldDescriptorProto_Label;
436
+ /**
437
+ * If type_name is set, this need not be set. If both this and type_name
438
+ * are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
439
+ *
440
+ * @generated from field: optional google.protobuf.FieldDescriptorProto.Type type = 5;
441
+ */
442
+ type?: FieldDescriptorProto_Type;
443
+ /**
444
+ * For message and enum types, this is the name of the type. If the name
445
+ * starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
446
+ * rules are used to find the type (i.e. first the nested types within this
447
+ * message are searched, then within the parent, on up to the root
448
+ * namespace).
449
+ *
450
+ * @generated from field: optional string type_name = 6;
451
+ */
452
+ typeName?: string;
453
+ /**
454
+ * For extensions, this is the name of the type being extended. It is
455
+ * resolved in the same manner as type_name.
456
+ *
457
+ * @generated from field: optional string extendee = 2;
458
+ */
459
+ extendee?: string;
460
+ /**
461
+ * For numeric types, contains the original text representation of the value.
462
+ * For booleans, "true" or "false".
463
+ * For strings, contains the default text contents (not escaped in any way).
464
+ * For bytes, contains the C escaped value. All bytes >= 128 are escaped.
465
+ *
466
+ * @generated from field: optional string default_value = 7;
467
+ */
468
+ defaultValue?: string;
469
+ /**
470
+ * If set, gives the index of a oneof in the containing type's oneof_decl
471
+ * list. This field is a member of that oneof.
472
+ *
473
+ * @generated from field: optional int32 oneof_index = 9;
474
+ */
475
+ oneofIndex?: number;
476
+ /**
477
+ * JSON name of this field. The value is set by protocol compiler. If the
478
+ * user has set a "json_name" option on this field, that option's value
479
+ * will be used. Otherwise, it's deduced from the field's name by converting
480
+ * it to camelCase.
481
+ *
482
+ * @generated from field: optional string json_name = 10;
483
+ */
484
+ jsonName?: string;
485
+ /**
486
+ * @generated from field: optional google.protobuf.FieldOptions options = 8;
487
+ */
488
+ options?: FieldOptions;
489
+ /**
490
+ * If true, this is a proto3 "optional". When a proto3 field is optional, it
491
+ * tracks presence regardless of field type.
492
+ *
493
+ * When proto3_optional is true, this field must belong to a oneof to signal
494
+ * to old proto3 clients that presence is tracked for this field. This oneof
495
+ * is known as a "synthetic" oneof, and this field must be its sole member
496
+ * (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs
497
+ * exist in the descriptor only, and do not generate any API. Synthetic oneofs
498
+ * must be ordered after all "real" oneofs.
499
+ *
500
+ * For message fields, proto3_optional doesn't create any semantic change,
501
+ * since non-repeated message fields always track presence. However it still
502
+ * indicates the semantic detail of whether the user wrote "optional" or not.
503
+ * This can be useful for round-tripping the .proto file. For consistency we
504
+ * give message fields a synthetic oneof also, even though it is not required
505
+ * to track presence. This is especially important because the parser can't
506
+ * tell if a field is a message or an enum, so it must always create a
507
+ * synthetic oneof.
508
+ *
509
+ * Proto2 optional fields do not set this flag, because they already indicate
510
+ * optional with `LABEL_OPTIONAL`.
511
+ *
512
+ * @generated from field: optional bool proto3_optional = 17;
513
+ */
514
+ proto3Optional?: boolean;
515
+ constructor(data?: PartialMessage<FieldDescriptorProto>);
516
+ static readonly runtime: typeof proto2;
517
+ static readonly typeName = "google.protobuf.FieldDescriptorProto";
518
+ static readonly fields: FieldList;
519
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FieldDescriptorProto;
520
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FieldDescriptorProto;
521
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FieldDescriptorProto;
522
+ static equals(a: FieldDescriptorProto | PlainMessage<FieldDescriptorProto> | undefined, b: FieldDescriptorProto | PlainMessage<FieldDescriptorProto> | undefined): boolean;
523
+ }
524
+ /**
525
+ * @generated from enum google.protobuf.FieldDescriptorProto.Type
526
+ */
527
+ export declare enum FieldDescriptorProto_Type {
528
+ /**
529
+ * 0 is reserved for errors.
530
+ * Order is weird for historical reasons.
531
+ *
532
+ * @generated from enum value: TYPE_DOUBLE = 1;
533
+ */
534
+ DOUBLE = 1,
535
+ /**
536
+ * @generated from enum value: TYPE_FLOAT = 2;
537
+ */
538
+ FLOAT = 2,
539
+ /**
540
+ * Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
541
+ * negative values are likely.
542
+ *
543
+ * @generated from enum value: TYPE_INT64 = 3;
544
+ */
545
+ INT64 = 3,
546
+ /**
547
+ * @generated from enum value: TYPE_UINT64 = 4;
548
+ */
549
+ UINT64 = 4,
550
+ /**
551
+ * Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
552
+ * negative values are likely.
553
+ *
554
+ * @generated from enum value: TYPE_INT32 = 5;
555
+ */
556
+ INT32 = 5,
557
+ /**
558
+ * @generated from enum value: TYPE_FIXED64 = 6;
559
+ */
560
+ FIXED64 = 6,
561
+ /**
562
+ * @generated from enum value: TYPE_FIXED32 = 7;
563
+ */
564
+ FIXED32 = 7,
565
+ /**
566
+ * @generated from enum value: TYPE_BOOL = 8;
567
+ */
568
+ BOOL = 8,
569
+ /**
570
+ * @generated from enum value: TYPE_STRING = 9;
571
+ */
572
+ STRING = 9,
573
+ /**
574
+ * Tag-delimited aggregate.
575
+ * Group type is deprecated and not supported after google.protobuf. However, Proto3
576
+ * implementations should still be able to parse the group wire format and
577
+ * treat group fields as unknown fields. In Editions, the group wire format
578
+ * can be enabled via the `message_encoding` feature.
579
+ *
580
+ * @generated from enum value: TYPE_GROUP = 10;
581
+ */
582
+ GROUP = 10,
583
+ /**
584
+ * Length-delimited aggregate.
585
+ *
586
+ * @generated from enum value: TYPE_MESSAGE = 11;
587
+ */
588
+ MESSAGE = 11,
589
+ /**
590
+ * New in version 2.
591
+ *
592
+ * @generated from enum value: TYPE_BYTES = 12;
593
+ */
594
+ BYTES = 12,
595
+ /**
596
+ * @generated from enum value: TYPE_UINT32 = 13;
597
+ */
598
+ UINT32 = 13,
599
+ /**
600
+ * @generated from enum value: TYPE_ENUM = 14;
601
+ */
602
+ ENUM = 14,
603
+ /**
604
+ * @generated from enum value: TYPE_SFIXED32 = 15;
605
+ */
606
+ SFIXED32 = 15,
607
+ /**
608
+ * @generated from enum value: TYPE_SFIXED64 = 16;
609
+ */
610
+ SFIXED64 = 16,
611
+ /**
612
+ * Uses ZigZag encoding.
613
+ *
614
+ * @generated from enum value: TYPE_SINT32 = 17;
615
+ */
616
+ SINT32 = 17,
617
+ /**
618
+ * Uses ZigZag encoding.
619
+ *
620
+ * @generated from enum value: TYPE_SINT64 = 18;
621
+ */
622
+ SINT64 = 18
623
+ }
624
+ /**
625
+ * @generated from enum google.protobuf.FieldDescriptorProto.Label
626
+ */
627
+ export declare enum FieldDescriptorProto_Label {
628
+ /**
629
+ * 0 is reserved for errors
630
+ *
631
+ * @generated from enum value: LABEL_OPTIONAL = 1;
632
+ */
633
+ OPTIONAL = 1,
634
+ /**
635
+ * @generated from enum value: LABEL_REPEATED = 3;
636
+ */
637
+ REPEATED = 3,
638
+ /**
639
+ * The required label is only allowed in google.protobuf. In proto3 and Editions
640
+ * it's explicitly prohibited. In Editions, the `field_presence` feature
641
+ * can be used to get this behavior.
642
+ *
643
+ * @generated from enum value: LABEL_REQUIRED = 2;
644
+ */
645
+ REQUIRED = 2
646
+ }
647
+ /**
648
+ * Describes a oneof.
649
+ *
650
+ * @generated from message google.protobuf.OneofDescriptorProto
651
+ */
652
+ export declare class OneofDescriptorProto extends Message<OneofDescriptorProto> {
653
+ /**
654
+ * @generated from field: optional string name = 1;
655
+ */
656
+ name?: string;
657
+ /**
658
+ * @generated from field: optional google.protobuf.OneofOptions options = 2;
659
+ */
660
+ options?: OneofOptions;
661
+ constructor(data?: PartialMessage<OneofDescriptorProto>);
662
+ static readonly runtime: typeof proto2;
663
+ static readonly typeName = "google.protobuf.OneofDescriptorProto";
664
+ static readonly fields: FieldList;
665
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OneofDescriptorProto;
666
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OneofDescriptorProto;
667
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OneofDescriptorProto;
668
+ static equals(a: OneofDescriptorProto | PlainMessage<OneofDescriptorProto> | undefined, b: OneofDescriptorProto | PlainMessage<OneofDescriptorProto> | undefined): boolean;
669
+ }
670
+ /**
671
+ * Describes an enum type.
672
+ *
673
+ * @generated from message google.protobuf.EnumDescriptorProto
674
+ */
675
+ export declare class EnumDescriptorProto extends Message<EnumDescriptorProto> {
676
+ /**
677
+ * @generated from field: optional string name = 1;
678
+ */
679
+ name?: string;
680
+ /**
681
+ * @generated from field: repeated google.protobuf.EnumValueDescriptorProto value = 2;
682
+ */
683
+ value: EnumValueDescriptorProto[];
684
+ /**
685
+ * @generated from field: optional google.protobuf.EnumOptions options = 3;
686
+ */
687
+ options?: EnumOptions;
688
+ /**
689
+ * Range of reserved numeric values. Reserved numeric values may not be used
690
+ * by enum values in the same enum declaration. Reserved ranges may not
691
+ * overlap.
692
+ *
693
+ * @generated from field: repeated google.protobuf.EnumDescriptorProto.EnumReservedRange reserved_range = 4;
694
+ */
695
+ reservedRange: EnumDescriptorProto_EnumReservedRange[];
696
+ /**
697
+ * Reserved enum value names, which may not be reused. A given name may only
698
+ * be reserved once.
699
+ *
700
+ * @generated from field: repeated string reserved_name = 5;
701
+ */
702
+ reservedName: string[];
703
+ constructor(data?: PartialMessage<EnumDescriptorProto>);
704
+ static readonly runtime: typeof proto2;
705
+ static readonly typeName = "google.protobuf.EnumDescriptorProto";
706
+ static readonly fields: FieldList;
707
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnumDescriptorProto;
708
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnumDescriptorProto;
709
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnumDescriptorProto;
710
+ static equals(a: EnumDescriptorProto | PlainMessage<EnumDescriptorProto> | undefined, b: EnumDescriptorProto | PlainMessage<EnumDescriptorProto> | undefined): boolean;
711
+ }
712
+ /**
713
+ * Range of reserved numeric values. Reserved values may not be used by
714
+ * entries in the same enum. Reserved ranges may not overlap.
715
+ *
716
+ * Note that this is distinct from DescriptorProto.ReservedRange in that it
717
+ * is inclusive such that it can appropriately represent the entire int32
718
+ * domain.
719
+ *
720
+ * @generated from message google.protobuf.EnumDescriptorProto.EnumReservedRange
721
+ */
722
+ export declare class EnumDescriptorProto_EnumReservedRange extends Message<EnumDescriptorProto_EnumReservedRange> {
723
+ /**
724
+ * Inclusive.
725
+ *
726
+ * @generated from field: optional int32 start = 1;
727
+ */
728
+ start?: number;
729
+ /**
730
+ * Inclusive.
731
+ *
732
+ * @generated from field: optional int32 end = 2;
733
+ */
734
+ end?: number;
735
+ constructor(data?: PartialMessage<EnumDescriptorProto_EnumReservedRange>);
736
+ static readonly runtime: typeof proto2;
737
+ static readonly typeName = "google.protobuf.EnumDescriptorProto.EnumReservedRange";
738
+ static readonly fields: FieldList;
739
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnumDescriptorProto_EnumReservedRange;
740
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnumDescriptorProto_EnumReservedRange;
741
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnumDescriptorProto_EnumReservedRange;
742
+ static equals(a: EnumDescriptorProto_EnumReservedRange | PlainMessage<EnumDescriptorProto_EnumReservedRange> | undefined, b: EnumDescriptorProto_EnumReservedRange | PlainMessage<EnumDescriptorProto_EnumReservedRange> | undefined): boolean;
743
+ }
744
+ /**
745
+ * Describes a value within an enum.
746
+ *
747
+ * @generated from message google.protobuf.EnumValueDescriptorProto
748
+ */
749
+ export declare class EnumValueDescriptorProto extends Message<EnumValueDescriptorProto> {
750
+ /**
751
+ * @generated from field: optional string name = 1;
752
+ */
753
+ name?: string;
754
+ /**
755
+ * @generated from field: optional int32 number = 2;
756
+ */
757
+ number?: number;
758
+ /**
759
+ * @generated from field: optional google.protobuf.EnumValueOptions options = 3;
760
+ */
761
+ options?: EnumValueOptions;
762
+ constructor(data?: PartialMessage<EnumValueDescriptorProto>);
763
+ static readonly runtime: typeof proto2;
764
+ static readonly typeName = "google.protobuf.EnumValueDescriptorProto";
765
+ static readonly fields: FieldList;
766
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnumValueDescriptorProto;
767
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnumValueDescriptorProto;
768
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnumValueDescriptorProto;
769
+ static equals(a: EnumValueDescriptorProto | PlainMessage<EnumValueDescriptorProto> | undefined, b: EnumValueDescriptorProto | PlainMessage<EnumValueDescriptorProto> | undefined): boolean;
770
+ }
771
+ /**
772
+ * Describes a service.
773
+ *
774
+ * @generated from message google.protobuf.ServiceDescriptorProto
775
+ */
776
+ export declare class ServiceDescriptorProto extends Message<ServiceDescriptorProto> {
777
+ /**
778
+ * @generated from field: optional string name = 1;
779
+ */
780
+ name?: string;
781
+ /**
782
+ * @generated from field: repeated google.protobuf.MethodDescriptorProto method = 2;
783
+ */
784
+ method: MethodDescriptorProto[];
785
+ /**
786
+ * @generated from field: optional google.protobuf.ServiceOptions options = 3;
787
+ */
788
+ options?: ServiceOptions;
789
+ constructor(data?: PartialMessage<ServiceDescriptorProto>);
790
+ static readonly runtime: typeof proto2;
791
+ static readonly typeName = "google.protobuf.ServiceDescriptorProto";
792
+ static readonly fields: FieldList;
793
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ServiceDescriptorProto;
794
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ServiceDescriptorProto;
795
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ServiceDescriptorProto;
796
+ static equals(a: ServiceDescriptorProto | PlainMessage<ServiceDescriptorProto> | undefined, b: ServiceDescriptorProto | PlainMessage<ServiceDescriptorProto> | undefined): boolean;
797
+ }
798
+ /**
799
+ * Describes a method of a service.
800
+ *
801
+ * @generated from message google.protobuf.MethodDescriptorProto
802
+ */
803
+ export declare class MethodDescriptorProto extends Message<MethodDescriptorProto> {
804
+ /**
805
+ * @generated from field: optional string name = 1;
806
+ */
807
+ name?: string;
808
+ /**
809
+ * Input and output type names. These are resolved in the same way as
810
+ * FieldDescriptorProto.type_name, but must refer to a message type.
811
+ *
812
+ * @generated from field: optional string input_type = 2;
813
+ */
814
+ inputType?: string;
815
+ /**
816
+ * @generated from field: optional string output_type = 3;
817
+ */
818
+ outputType?: string;
819
+ /**
820
+ * @generated from field: optional google.protobuf.MethodOptions options = 4;
821
+ */
822
+ options?: MethodOptions;
823
+ /**
824
+ * Identifies if client streams multiple client messages
825
+ *
826
+ * @generated from field: optional bool client_streaming = 5 [default = false];
827
+ */
828
+ clientStreaming?: boolean;
829
+ /**
830
+ * Identifies if server streams multiple server messages
831
+ *
832
+ * @generated from field: optional bool server_streaming = 6 [default = false];
833
+ */
834
+ serverStreaming?: boolean;
835
+ constructor(data?: PartialMessage<MethodDescriptorProto>);
836
+ static readonly runtime: typeof proto2;
837
+ static readonly typeName = "google.protobuf.MethodDescriptorProto";
838
+ static readonly fields: FieldList;
839
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MethodDescriptorProto;
840
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MethodDescriptorProto;
841
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MethodDescriptorProto;
842
+ static equals(a: MethodDescriptorProto | PlainMessage<MethodDescriptorProto> | undefined, b: MethodDescriptorProto | PlainMessage<MethodDescriptorProto> | undefined): boolean;
843
+ }
844
+ /**
845
+ * @generated from message google.protobuf.FileOptions
846
+ */
847
+ export declare class FileOptions extends Message<FileOptions> {
848
+ /**
849
+ * Sets the Java package where classes generated from this .proto will be
850
+ * placed. By default, the proto package is used, but this is often
851
+ * inappropriate because proto packages do not normally start with backwards
852
+ * domain names.
853
+ *
854
+ * @generated from field: optional string java_package = 1;
855
+ */
856
+ javaPackage?: string;
857
+ /**
858
+ * Controls the name of the wrapper Java class generated for the .proto file.
859
+ * That class will always contain the .proto file's getDescriptor() method as
860
+ * well as any top-level extensions defined in the .proto file.
861
+ * If java_multiple_files is disabled, then all the other classes from the
862
+ * .proto file will be nested inside the single wrapper outer class.
863
+ *
864
+ * @generated from field: optional string java_outer_classname = 8;
865
+ */
866
+ javaOuterClassname?: string;
867
+ /**
868
+ * If enabled, then the Java code generator will generate a separate .java
869
+ * file for each top-level message, enum, and service defined in the .proto
870
+ * file. Thus, these types will *not* be nested inside the wrapper class
871
+ * named by java_outer_classname. However, the wrapper class will still be
872
+ * generated to contain the file's getDescriptor() method as well as any
873
+ * top-level extensions defined in the file.
874
+ *
875
+ * @generated from field: optional bool java_multiple_files = 10 [default = false];
876
+ */
877
+ javaMultipleFiles?: boolean;
878
+ /**
879
+ * This option does nothing.
880
+ *
881
+ * @generated from field: optional bool java_generate_equals_and_hash = 20 [deprecated = true];
882
+ * @deprecated
883
+ */
884
+ javaGenerateEqualsAndHash?: boolean;
885
+ /**
886
+ * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
887
+ * which will throw an exception if invalid UTF-8 is parsed from the wire or
888
+ * assigned to a string field.
889
+ *
890
+ * TODO: clarify exactly what kinds of field types this option
891
+ * applies to, and update these docs accordingly.
892
+ *
893
+ * Proto3 files already perform these checks. Setting the option explicitly to
894
+ * false has no effect: it cannot be used to opt proto3 files out of UTF-8
895
+ * checks.
896
+ *
897
+ * @generated from field: optional bool java_string_check_utf8 = 27 [default = false];
898
+ */
899
+ javaStringCheckUtf8?: boolean;
900
+ /**
901
+ * @generated from field: optional google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];
902
+ */
903
+ optimizeFor?: FileOptions_OptimizeMode;
904
+ /**
905
+ * Sets the Go package where structs generated from this .proto will be
906
+ * placed. If omitted, the Go package will be derived from the following:
907
+ * - The basename of the package import path, if provided.
908
+ * - Otherwise, the package statement in the .proto file, if present.
909
+ * - Otherwise, the basename of the .proto file, without extension.
910
+ *
911
+ * @generated from field: optional string go_package = 11;
912
+ */
913
+ goPackage?: string;
914
+ /**
915
+ * Should generic services be generated in each language? "Generic" services
916
+ * are not specific to any particular RPC system. They are generated by the
917
+ * main code generators in each language (without additional plugins).
918
+ * Generic services were the only kind of service generation supported by
919
+ * early versions of google.protobuf.
920
+ *
921
+ * Generic services are now considered deprecated in favor of using plugins
922
+ * that generate code specific to your particular RPC system. Therefore,
923
+ * these default to false. Old code which depends on generic services should
924
+ * explicitly set them to true.
925
+ *
926
+ * @generated from field: optional bool cc_generic_services = 16 [default = false];
927
+ */
928
+ ccGenericServices?: boolean;
929
+ /**
930
+ * @generated from field: optional bool java_generic_services = 17 [default = false];
931
+ */
932
+ javaGenericServices?: boolean;
933
+ /**
934
+ * @generated from field: optional bool py_generic_services = 18 [default = false];
935
+ */
936
+ pyGenericServices?: boolean;
937
+ /**
938
+ * Is this file deprecated?
939
+ * Depending on the target platform, this can emit Deprecated annotations
940
+ * for everything in the file, or it will be completely ignored; in the very
941
+ * least, this is a formalization for deprecating files.
942
+ *
943
+ * @generated from field: optional bool deprecated = 23 [default = false];
944
+ */
945
+ deprecated?: boolean;
946
+ /**
947
+ * Enables the use of arenas for the proto messages in this file. This applies
948
+ * only to generated classes for C++.
949
+ *
950
+ * @generated from field: optional bool cc_enable_arenas = 31 [default = true];
951
+ */
952
+ ccEnableArenas?: boolean;
953
+ /**
954
+ * Sets the objective c class prefix which is prepended to all objective c
955
+ * generated classes from this .proto. There is no default.
956
+ *
957
+ * @generated from field: optional string objc_class_prefix = 36;
958
+ */
959
+ objcClassPrefix?: string;
960
+ /**
961
+ * Namespace for generated classes; defaults to the package.
962
+ *
963
+ * @generated from field: optional string csharp_namespace = 37;
964
+ */
965
+ csharpNamespace?: string;
966
+ /**
967
+ * By default Swift generators will take the proto package and CamelCase it
968
+ * replacing '.' with underscore and use that to prefix the types/symbols
969
+ * defined. When this options is provided, they will use this value instead
970
+ * to prefix the types/symbols defined.
971
+ *
972
+ * @generated from field: optional string swift_prefix = 39;
973
+ */
974
+ swiftPrefix?: string;
975
+ /**
976
+ * Sets the php class prefix which is prepended to all php generated classes
977
+ * from this .proto. Default is empty.
978
+ *
979
+ * @generated from field: optional string php_class_prefix = 40;
980
+ */
981
+ phpClassPrefix?: string;
982
+ /**
983
+ * Use this option to change the namespace of php generated classes. Default
984
+ * is empty. When this option is empty, the package name will be used for
985
+ * determining the namespace.
986
+ *
987
+ * @generated from field: optional string php_namespace = 41;
988
+ */
989
+ phpNamespace?: string;
990
+ /**
991
+ * Use this option to change the namespace of php generated metadata classes.
992
+ * Default is empty. When this option is empty, the proto file name will be
993
+ * used for determining the namespace.
994
+ *
995
+ * @generated from field: optional string php_metadata_namespace = 44;
996
+ */
997
+ phpMetadataNamespace?: string;
998
+ /**
999
+ * Use this option to change the package of ruby generated classes. Default
1000
+ * is empty. When this option is not set, the package name will be used for
1001
+ * determining the ruby package.
1002
+ *
1003
+ * @generated from field: optional string ruby_package = 45;
1004
+ */
1005
+ rubyPackage?: string;
1006
+ /**
1007
+ * Any features defined in the specific edition.
1008
+ *
1009
+ * @generated from field: optional google.protobuf.FeatureSet features = 50;
1010
+ */
1011
+ features?: FeatureSet;
1012
+ /**
1013
+ * The parser stores options it doesn't recognize here.
1014
+ * See the documentation for the "Options" section above.
1015
+ *
1016
+ * @generated from field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
1017
+ */
1018
+ uninterpretedOption: UninterpretedOption[];
1019
+ constructor(data?: PartialMessage<FileOptions>);
1020
+ static readonly runtime: typeof proto2;
1021
+ static readonly typeName = "google.protobuf.FileOptions";
1022
+ static readonly fields: FieldList;
1023
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileOptions;
1024
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileOptions;
1025
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileOptions;
1026
+ static equals(a: FileOptions | PlainMessage<FileOptions> | undefined, b: FileOptions | PlainMessage<FileOptions> | undefined): boolean;
1027
+ }
1028
+ /**
1029
+ * Generated classes can be optimized for speed or code size.
1030
+ *
1031
+ * @generated from enum google.protobuf.FileOptions.OptimizeMode
1032
+ */
1033
+ export declare enum FileOptions_OptimizeMode {
1034
+ /**
1035
+ * Generate complete code for parsing, serialization,
1036
+ *
1037
+ * @generated from enum value: SPEED = 1;
1038
+ */
1039
+ SPEED = 1,
1040
+ /**
1041
+ * etc.
1042
+ *
1043
+ * Use ReflectionOps to implement these methods.
1044
+ *
1045
+ * @generated from enum value: CODE_SIZE = 2;
1046
+ */
1047
+ CODE_SIZE = 2,
1048
+ /**
1049
+ * Generate code using MessageLite and the lite runtime.
1050
+ *
1051
+ * @generated from enum value: LITE_RUNTIME = 3;
1052
+ */
1053
+ LITE_RUNTIME = 3
1054
+ }
1055
+ /**
1056
+ * @generated from message google.protobuf.MessageOptions
1057
+ */
1058
+ export declare class MessageOptions extends Message<MessageOptions> {
1059
+ /**
1060
+ * Set true to use the old proto1 MessageSet wire format for extensions.
1061
+ * This is provided for backwards-compatibility with the MessageSet wire
1062
+ * format. You should not use this for any other reason: It's less
1063
+ * efficient, has fewer features, and is more complicated.
1064
+ *
1065
+ * The message must be defined exactly as follows:
1066
+ * message Foo {
1067
+ * option message_set_wire_format = true;
1068
+ * extensions 4 to max;
1069
+ * }
1070
+ * Note that the message cannot have any defined fields; MessageSets only
1071
+ * have extensions.
1072
+ *
1073
+ * All extensions of your type must be singular messages; e.g. they cannot
1074
+ * be int32s, enums, or repeated messages.
1075
+ *
1076
+ * Because this is an option, the above two restrictions are not enforced by
1077
+ * the protocol compiler.
1078
+ *
1079
+ * @generated from field: optional bool message_set_wire_format = 1 [default = false];
1080
+ */
1081
+ messageSetWireFormat?: boolean;
1082
+ /**
1083
+ * Disables the generation of the standard "descriptor()" accessor, which can
1084
+ * conflict with a field of the same name. This is meant to make migration
1085
+ * from proto1 easier; new code should avoid fields named "descriptor".
1086
+ *
1087
+ * @generated from field: optional bool no_standard_descriptor_accessor = 2 [default = false];
1088
+ */
1089
+ noStandardDescriptorAccessor?: boolean;
1090
+ /**
1091
+ * Is this message deprecated?
1092
+ * Depending on the target platform, this can emit Deprecated annotations
1093
+ * for the message, or it will be completely ignored; in the very least,
1094
+ * this is a formalization for deprecating messages.
1095
+ *
1096
+ * @generated from field: optional bool deprecated = 3 [default = false];
1097
+ */
1098
+ deprecated?: boolean;
1099
+ /**
1100
+ * Whether the message is an automatically generated map entry type for the
1101
+ * maps field.
1102
+ *
1103
+ * For maps fields:
1104
+ * map<KeyType, ValueType> map_field = 1;
1105
+ * The parsed descriptor looks like:
1106
+ * message MapFieldEntry {
1107
+ * option map_entry = true;
1108
+ * optional KeyType key = 1;
1109
+ * optional ValueType value = 2;
1110
+ * }
1111
+ * repeated MapFieldEntry map_field = 1;
1112
+ *
1113
+ * Implementations may choose not to generate the map_entry=true message, but
1114
+ * use a native map in the target language to hold the keys and values.
1115
+ * The reflection APIs in such implementations still need to work as
1116
+ * if the field is a repeated message field.
1117
+ *
1118
+ * NOTE: Do not set the option in .proto files. Always use the maps syntax
1119
+ * instead. The option should only be implicitly set by the proto compiler
1120
+ * parser.
1121
+ *
1122
+ * @generated from field: optional bool map_entry = 7;
1123
+ */
1124
+ mapEntry?: boolean;
1125
+ /**
1126
+ * Enable the legacy handling of JSON field name conflicts. This lowercases
1127
+ * and strips underscored from the fields before comparison in proto3 only.
1128
+ * The new behavior takes `json_name` into account and applies to proto2 as
1129
+ * well.
1130
+ *
1131
+ * This should only be used as a temporary measure against broken builds due
1132
+ * to the change in behavior for JSON field name conflicts.
1133
+ *
1134
+ * TODO This is legacy behavior we plan to remove once downstream
1135
+ * teams have had time to migrate.
1136
+ *
1137
+ * @generated from field: optional bool deprecated_legacy_json_field_conflicts = 11 [deprecated = true];
1138
+ * @deprecated
1139
+ */
1140
+ deprecatedLegacyJsonFieldConflicts?: boolean;
1141
+ /**
1142
+ * Any features defined in the specific edition.
1143
+ *
1144
+ * @generated from field: optional google.protobuf.FeatureSet features = 12;
1145
+ */
1146
+ features?: FeatureSet;
1147
+ /**
1148
+ * The parser stores options it doesn't recognize here. See above.
1149
+ *
1150
+ * @generated from field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
1151
+ */
1152
+ uninterpretedOption: UninterpretedOption[];
1153
+ constructor(data?: PartialMessage<MessageOptions>);
1154
+ static readonly runtime: typeof proto2;
1155
+ static readonly typeName = "google.protobuf.MessageOptions";
1156
+ static readonly fields: FieldList;
1157
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MessageOptions;
1158
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MessageOptions;
1159
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MessageOptions;
1160
+ static equals(a: MessageOptions | PlainMessage<MessageOptions> | undefined, b: MessageOptions | PlainMessage<MessageOptions> | undefined): boolean;
1161
+ }
1162
+ /**
1163
+ * @generated from message google.protobuf.FieldOptions
1164
+ */
1165
+ export declare class FieldOptions extends Message<FieldOptions> {
1166
+ /**
1167
+ * The ctype option instructs the C++ code generator to use a different
1168
+ * representation of the field than it normally would. See the specific
1169
+ * options below. This option is only implemented to support use of
1170
+ * [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
1171
+ * type "bytes" in the open source release -- sorry, we'll try to include
1172
+ * other types in a future version!
1173
+ *
1174
+ * @generated from field: optional google.protobuf.FieldOptions.CType ctype = 1 [default = STRING];
1175
+ */
1176
+ ctype?: FieldOptions_CType;
1177
+ /**
1178
+ * The packed option can be enabled for repeated primitive fields to enable
1179
+ * a more efficient representation on the wire. Rather than repeatedly
1180
+ * writing the tag and type for each element, the entire array is encoded as
1181
+ * a single length-delimited blob. In proto3, only explicit setting it to
1182
+ * false will avoid using packed encoding. This option is prohibited in
1183
+ * Editions, but the `repeated_field_encoding` feature can be used to control
1184
+ * the behavior.
1185
+ *
1186
+ * @generated from field: optional bool packed = 2;
1187
+ */
1188
+ packed?: boolean;
1189
+ /**
1190
+ * The jstype option determines the JavaScript type used for values of the
1191
+ * field. The option is permitted only for 64 bit integral and fixed types
1192
+ * (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
1193
+ * is represented as JavaScript string, which avoids loss of precision that
1194
+ * can happen when a large value is converted to a floating point JavaScript.
1195
+ * Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
1196
+ * use the JavaScript "number" type. The behavior of the default option
1197
+ * JS_NORMAL is implementation dependent.
1198
+ *
1199
+ * This option is an enum to permit additional types to be added, e.g.
1200
+ * goog.math.Integer.
1201
+ *
1202
+ * @generated from field: optional google.protobuf.FieldOptions.JSType jstype = 6 [default = JS_NORMAL];
1203
+ */
1204
+ jstype?: FieldOptions_JSType;
1205
+ /**
1206
+ * Should this field be parsed lazily? Lazy applies only to message-type
1207
+ * fields. It means that when the outer message is initially parsed, the
1208
+ * inner message's contents will not be parsed but instead stored in encoded
1209
+ * form. The inner message will actually be parsed when it is first accessed.
1210
+ *
1211
+ * This is only a hint. Implementations are free to choose whether to use
1212
+ * eager or lazy parsing regardless of the value of this option. However,
1213
+ * setting this option true suggests that the protocol author believes that
1214
+ * using lazy parsing on this field is worth the additional bookkeeping
1215
+ * overhead typically needed to implement it.
1216
+ *
1217
+ * This option does not affect the public interface of any generated code;
1218
+ * all method signatures remain the same. Furthermore, thread-safety of the
1219
+ * interface is not affected by this option; const methods remain safe to
1220
+ * call from multiple threads concurrently, while non-const methods continue
1221
+ * to require exclusive access.
1222
+ *
1223
+ * Note that lazy message fields are still eagerly verified to check
1224
+ * ill-formed wireformat or missing required fields. Calling IsInitialized()
1225
+ * on the outer message would fail if the inner message has missing required
1226
+ * fields. Failed verification would result in parsing failure (except when
1227
+ * uninitialized messages are acceptable).
1228
+ *
1229
+ * @generated from field: optional bool lazy = 5 [default = false];
1230
+ */
1231
+ lazy?: boolean;
1232
+ /**
1233
+ * unverified_lazy does no correctness checks on the byte stream. This should
1234
+ * only be used where lazy with verification is prohibitive for performance
1235
+ * reasons.
1236
+ *
1237
+ * @generated from field: optional bool unverified_lazy = 15 [default = false];
1238
+ */
1239
+ unverifiedLazy?: boolean;
1240
+ /**
1241
+ * Is this field deprecated?
1242
+ * Depending on the target platform, this can emit Deprecated annotations
1243
+ * for accessors, or it will be completely ignored; in the very least, this
1244
+ * is a formalization for deprecating fields.
1245
+ *
1246
+ * @generated from field: optional bool deprecated = 3 [default = false];
1247
+ */
1248
+ deprecated?: boolean;
1249
+ /**
1250
+ * For Google-internal migration only. Do not use.
1251
+ *
1252
+ * @generated from field: optional bool weak = 10 [default = false];
1253
+ */
1254
+ weak?: boolean;
1255
+ /**
1256
+ * Indicate that the field value should not be printed out when using debug
1257
+ * formats, e.g. when the field contains sensitive credentials.
1258
+ *
1259
+ * @generated from field: optional bool debug_redact = 16 [default = false];
1260
+ */
1261
+ debugRedact?: boolean;
1262
+ /**
1263
+ * @generated from field: optional google.protobuf.FieldOptions.OptionRetention retention = 17;
1264
+ */
1265
+ retention?: FieldOptions_OptionRetention;
1266
+ /**
1267
+ * @generated from field: repeated google.protobuf.FieldOptions.OptionTargetType targets = 19;
1268
+ */
1269
+ targets: FieldOptions_OptionTargetType[];
1270
+ /**
1271
+ * @generated from field: repeated google.protobuf.FieldOptions.EditionDefault edition_defaults = 20;
1272
+ */
1273
+ editionDefaults: FieldOptions_EditionDefault[];
1274
+ /**
1275
+ * Any features defined in the specific edition.
1276
+ *
1277
+ * @generated from field: optional google.protobuf.FeatureSet features = 21;
1278
+ */
1279
+ features?: FeatureSet;
1280
+ /**
1281
+ * @generated from field: optional google.protobuf.FieldOptions.FeatureSupport feature_support = 22;
1282
+ */
1283
+ featureSupport?: FieldOptions_FeatureSupport;
1284
+ /**
1285
+ * The parser stores options it doesn't recognize here. See above.
1286
+ *
1287
+ * @generated from field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
1288
+ */
1289
+ uninterpretedOption: UninterpretedOption[];
1290
+ constructor(data?: PartialMessage<FieldOptions>);
1291
+ static readonly runtime: typeof proto2;
1292
+ static readonly typeName = "google.protobuf.FieldOptions";
1293
+ static readonly fields: FieldList;
1294
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FieldOptions;
1295
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FieldOptions;
1296
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FieldOptions;
1297
+ static equals(a: FieldOptions | PlainMessage<FieldOptions> | undefined, b: FieldOptions | PlainMessage<FieldOptions> | undefined): boolean;
1298
+ }
1299
+ /**
1300
+ * @generated from enum google.protobuf.FieldOptions.CType
1301
+ */
1302
+ export declare enum FieldOptions_CType {
1303
+ /**
1304
+ * Default mode.
1305
+ *
1306
+ * @generated from enum value: STRING = 0;
1307
+ */
1308
+ STRING = 0,
1309
+ /**
1310
+ * The option [ctype=CORD] may be applied to a non-repeated field of type
1311
+ * "bytes". It indicates that in C++, the data should be stored in a Cord
1312
+ * instead of a string. For very large strings, this may reduce memory
1313
+ * fragmentation. It may also allow better performance when parsing from a
1314
+ * Cord, or when parsing with aliasing enabled, as the parsed Cord may then
1315
+ * alias the original buffer.
1316
+ *
1317
+ * @generated from enum value: CORD = 1;
1318
+ */
1319
+ CORD = 1,
1320
+ /**
1321
+ * @generated from enum value: STRING_PIECE = 2;
1322
+ */
1323
+ STRING_PIECE = 2
1324
+ }
1325
+ /**
1326
+ * @generated from enum google.protobuf.FieldOptions.JSType
1327
+ */
1328
+ export declare enum FieldOptions_JSType {
1329
+ /**
1330
+ * Use the default type.
1331
+ *
1332
+ * @generated from enum value: JS_NORMAL = 0;
1333
+ */
1334
+ JS_NORMAL = 0,
1335
+ /**
1336
+ * Use JavaScript strings.
1337
+ *
1338
+ * @generated from enum value: JS_STRING = 1;
1339
+ */
1340
+ JS_STRING = 1,
1341
+ /**
1342
+ * Use JavaScript numbers.
1343
+ *
1344
+ * @generated from enum value: JS_NUMBER = 2;
1345
+ */
1346
+ JS_NUMBER = 2
1347
+ }
1348
+ /**
1349
+ * If set to RETENTION_SOURCE, the option will be omitted from the binary.
1350
+ * Note: as of January 2023, support for this is in progress and does not yet
1351
+ * have an effect (b/264593489).
1352
+ *
1353
+ * @generated from enum google.protobuf.FieldOptions.OptionRetention
1354
+ */
1355
+ export declare enum FieldOptions_OptionRetention {
1356
+ /**
1357
+ * @generated from enum value: RETENTION_UNKNOWN = 0;
1358
+ */
1359
+ RETENTION_UNKNOWN = 0,
1360
+ /**
1361
+ * @generated from enum value: RETENTION_RUNTIME = 1;
1362
+ */
1363
+ RETENTION_RUNTIME = 1,
1364
+ /**
1365
+ * @generated from enum value: RETENTION_SOURCE = 2;
1366
+ */
1367
+ RETENTION_SOURCE = 2
1368
+ }
1369
+ /**
1370
+ * This indicates the types of entities that the field may apply to when used
1371
+ * as an option. If it is unset, then the field may be freely used as an
1372
+ * option on any kind of entity. Note: as of January 2023, support for this is
1373
+ * in progress and does not yet have an effect (b/264593489).
1374
+ *
1375
+ * @generated from enum google.protobuf.FieldOptions.OptionTargetType
1376
+ */
1377
+ export declare enum FieldOptions_OptionTargetType {
1378
+ /**
1379
+ * @generated from enum value: TARGET_TYPE_UNKNOWN = 0;
1380
+ */
1381
+ TARGET_TYPE_UNKNOWN = 0,
1382
+ /**
1383
+ * @generated from enum value: TARGET_TYPE_FILE = 1;
1384
+ */
1385
+ TARGET_TYPE_FILE = 1,
1386
+ /**
1387
+ * @generated from enum value: TARGET_TYPE_EXTENSION_RANGE = 2;
1388
+ */
1389
+ TARGET_TYPE_EXTENSION_RANGE = 2,
1390
+ /**
1391
+ * @generated from enum value: TARGET_TYPE_MESSAGE = 3;
1392
+ */
1393
+ TARGET_TYPE_MESSAGE = 3,
1394
+ /**
1395
+ * @generated from enum value: TARGET_TYPE_FIELD = 4;
1396
+ */
1397
+ TARGET_TYPE_FIELD = 4,
1398
+ /**
1399
+ * @generated from enum value: TARGET_TYPE_ONEOF = 5;
1400
+ */
1401
+ TARGET_TYPE_ONEOF = 5,
1402
+ /**
1403
+ * @generated from enum value: TARGET_TYPE_ENUM = 6;
1404
+ */
1405
+ TARGET_TYPE_ENUM = 6,
1406
+ /**
1407
+ * @generated from enum value: TARGET_TYPE_ENUM_ENTRY = 7;
1408
+ */
1409
+ TARGET_TYPE_ENUM_ENTRY = 7,
1410
+ /**
1411
+ * @generated from enum value: TARGET_TYPE_SERVICE = 8;
1412
+ */
1413
+ TARGET_TYPE_SERVICE = 8,
1414
+ /**
1415
+ * @generated from enum value: TARGET_TYPE_METHOD = 9;
1416
+ */
1417
+ TARGET_TYPE_METHOD = 9
1418
+ }
1419
+ /**
1420
+ * @generated from message google.protobuf.FieldOptions.EditionDefault
1421
+ */
1422
+ export declare class FieldOptions_EditionDefault extends Message<FieldOptions_EditionDefault> {
1423
+ /**
1424
+ * @generated from field: optional google.protobuf.Edition edition = 3;
1425
+ */
1426
+ edition?: Edition;
1427
+ /**
1428
+ * Textproto value.
1429
+ *
1430
+ * @generated from field: optional string value = 2;
1431
+ */
1432
+ value?: string;
1433
+ constructor(data?: PartialMessage<FieldOptions_EditionDefault>);
1434
+ static readonly runtime: typeof proto2;
1435
+ static readonly typeName = "google.protobuf.FieldOptions.EditionDefault";
1436
+ static readonly fields: FieldList;
1437
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FieldOptions_EditionDefault;
1438
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FieldOptions_EditionDefault;
1439
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FieldOptions_EditionDefault;
1440
+ static equals(a: FieldOptions_EditionDefault | PlainMessage<FieldOptions_EditionDefault> | undefined, b: FieldOptions_EditionDefault | PlainMessage<FieldOptions_EditionDefault> | undefined): boolean;
1441
+ }
1442
+ /**
1443
+ * Information about the support window of a feature.
1444
+ *
1445
+ * @generated from message google.protobuf.FieldOptions.FeatureSupport
1446
+ */
1447
+ export declare class FieldOptions_FeatureSupport extends Message<FieldOptions_FeatureSupport> {
1448
+ /**
1449
+ * The edition that this feature was first available in. In editions
1450
+ * earlier than this one, the default assigned to EDITION_LEGACY will be
1451
+ * used, and proto files will not be able to override it.
1452
+ *
1453
+ * @generated from field: optional google.protobuf.Edition edition_introduced = 1;
1454
+ */
1455
+ editionIntroduced?: Edition;
1456
+ /**
1457
+ * The edition this feature becomes deprecated in. Using this after this
1458
+ * edition may trigger warnings.
1459
+ *
1460
+ * @generated from field: optional google.protobuf.Edition edition_deprecated = 2;
1461
+ */
1462
+ editionDeprecated?: Edition;
1463
+ /**
1464
+ * The deprecation warning text if this feature is used after the edition it
1465
+ * was marked deprecated in.
1466
+ *
1467
+ * @generated from field: optional string deprecation_warning = 3;
1468
+ */
1469
+ deprecationWarning?: string;
1470
+ /**
1471
+ * The edition this feature is no longer available in. In editions after
1472
+ * this one, the last default assigned will be used, and proto files will
1473
+ * not be able to override it.
1474
+ *
1475
+ * @generated from field: optional google.protobuf.Edition edition_removed = 4;
1476
+ */
1477
+ editionRemoved?: Edition;
1478
+ constructor(data?: PartialMessage<FieldOptions_FeatureSupport>);
1479
+ static readonly runtime: typeof proto2;
1480
+ static readonly typeName = "google.protobuf.FieldOptions.FeatureSupport";
1481
+ static readonly fields: FieldList;
1482
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FieldOptions_FeatureSupport;
1483
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FieldOptions_FeatureSupport;
1484
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FieldOptions_FeatureSupport;
1485
+ static equals(a: FieldOptions_FeatureSupport | PlainMessage<FieldOptions_FeatureSupport> | undefined, b: FieldOptions_FeatureSupport | PlainMessage<FieldOptions_FeatureSupport> | undefined): boolean;
1486
+ }
1487
+ /**
1488
+ * @generated from message google.protobuf.OneofOptions
1489
+ */
1490
+ export declare class OneofOptions extends Message<OneofOptions> {
1491
+ /**
1492
+ * Any features defined in the specific edition.
1493
+ *
1494
+ * @generated from field: optional google.protobuf.FeatureSet features = 1;
1495
+ */
1496
+ features?: FeatureSet;
1497
+ /**
1498
+ * The parser stores options it doesn't recognize here. See above.
1499
+ *
1500
+ * @generated from field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
1501
+ */
1502
+ uninterpretedOption: UninterpretedOption[];
1503
+ constructor(data?: PartialMessage<OneofOptions>);
1504
+ static readonly runtime: typeof proto2;
1505
+ static readonly typeName = "google.protobuf.OneofOptions";
1506
+ static readonly fields: FieldList;
1507
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OneofOptions;
1508
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OneofOptions;
1509
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OneofOptions;
1510
+ static equals(a: OneofOptions | PlainMessage<OneofOptions> | undefined, b: OneofOptions | PlainMessage<OneofOptions> | undefined): boolean;
1511
+ }
1512
+ /**
1513
+ * @generated from message google.protobuf.EnumOptions
1514
+ */
1515
+ export declare class EnumOptions extends Message<EnumOptions> {
1516
+ /**
1517
+ * Set this option to true to allow mapping different tag names to the same
1518
+ * value.
1519
+ *
1520
+ * @generated from field: optional bool allow_alias = 2;
1521
+ */
1522
+ allowAlias?: boolean;
1523
+ /**
1524
+ * Is this enum deprecated?
1525
+ * Depending on the target platform, this can emit Deprecated annotations
1526
+ * for the enum, or it will be completely ignored; in the very least, this
1527
+ * is a formalization for deprecating enums.
1528
+ *
1529
+ * @generated from field: optional bool deprecated = 3 [default = false];
1530
+ */
1531
+ deprecated?: boolean;
1532
+ /**
1533
+ * Enable the legacy handling of JSON field name conflicts. This lowercases
1534
+ * and strips underscored from the fields before comparison in proto3 only.
1535
+ * The new behavior takes `json_name` into account and applies to proto2 as
1536
+ * well.
1537
+ * TODO Remove this legacy behavior once downstream teams have
1538
+ * had time to migrate.
1539
+ *
1540
+ * @generated from field: optional bool deprecated_legacy_json_field_conflicts = 6 [deprecated = true];
1541
+ * @deprecated
1542
+ */
1543
+ deprecatedLegacyJsonFieldConflicts?: boolean;
1544
+ /**
1545
+ * Any features defined in the specific edition.
1546
+ *
1547
+ * @generated from field: optional google.protobuf.FeatureSet features = 7;
1548
+ */
1549
+ features?: FeatureSet;
1550
+ /**
1551
+ * The parser stores options it doesn't recognize here. See above.
1552
+ *
1553
+ * @generated from field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
1554
+ */
1555
+ uninterpretedOption: UninterpretedOption[];
1556
+ constructor(data?: PartialMessage<EnumOptions>);
1557
+ static readonly runtime: typeof proto2;
1558
+ static readonly typeName = "google.protobuf.EnumOptions";
1559
+ static readonly fields: FieldList;
1560
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnumOptions;
1561
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnumOptions;
1562
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnumOptions;
1563
+ static equals(a: EnumOptions | PlainMessage<EnumOptions> | undefined, b: EnumOptions | PlainMessage<EnumOptions> | undefined): boolean;
1564
+ }
1565
+ /**
1566
+ * @generated from message google.protobuf.EnumValueOptions
1567
+ */
1568
+ export declare class EnumValueOptions extends Message<EnumValueOptions> {
1569
+ /**
1570
+ * Is this enum value deprecated?
1571
+ * Depending on the target platform, this can emit Deprecated annotations
1572
+ * for the enum value, or it will be completely ignored; in the very least,
1573
+ * this is a formalization for deprecating enum values.
1574
+ *
1575
+ * @generated from field: optional bool deprecated = 1 [default = false];
1576
+ */
1577
+ deprecated?: boolean;
1578
+ /**
1579
+ * Any features defined in the specific edition.
1580
+ *
1581
+ * @generated from field: optional google.protobuf.FeatureSet features = 2;
1582
+ */
1583
+ features?: FeatureSet;
1584
+ /**
1585
+ * Indicate that fields annotated with this enum value should not be printed
1586
+ * out when using debug formats, e.g. when the field contains sensitive
1587
+ * credentials.
1588
+ *
1589
+ * @generated from field: optional bool debug_redact = 3 [default = false];
1590
+ */
1591
+ debugRedact?: boolean;
1592
+ /**
1593
+ * Information about the support window of a feature value.
1594
+ *
1595
+ * @generated from field: optional google.protobuf.FieldOptions.FeatureSupport feature_support = 4;
1596
+ */
1597
+ featureSupport?: FieldOptions_FeatureSupport;
1598
+ /**
1599
+ * The parser stores options it doesn't recognize here. See above.
1600
+ *
1601
+ * @generated from field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
1602
+ */
1603
+ uninterpretedOption: UninterpretedOption[];
1604
+ constructor(data?: PartialMessage<EnumValueOptions>);
1605
+ static readonly runtime: typeof proto2;
1606
+ static readonly typeName = "google.protobuf.EnumValueOptions";
1607
+ static readonly fields: FieldList;
1608
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnumValueOptions;
1609
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnumValueOptions;
1610
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnumValueOptions;
1611
+ static equals(a: EnumValueOptions | PlainMessage<EnumValueOptions> | undefined, b: EnumValueOptions | PlainMessage<EnumValueOptions> | undefined): boolean;
1612
+ }
1613
+ /**
1614
+ * @generated from message google.protobuf.ServiceOptions
1615
+ */
1616
+ export declare class ServiceOptions extends Message<ServiceOptions> {
1617
+ /**
1618
+ * Any features defined in the specific edition.
1619
+ *
1620
+ * @generated from field: optional google.protobuf.FeatureSet features = 34;
1621
+ */
1622
+ features?: FeatureSet;
1623
+ /**
1624
+ * Is this service deprecated?
1625
+ * Depending on the target platform, this can emit Deprecated annotations
1626
+ * for the service, or it will be completely ignored; in the very least,
1627
+ * this is a formalization for deprecating services.
1628
+ *
1629
+ * @generated from field: optional bool deprecated = 33 [default = false];
1630
+ */
1631
+ deprecated?: boolean;
1632
+ /**
1633
+ * The parser stores options it doesn't recognize here. See above.
1634
+ *
1635
+ * @generated from field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
1636
+ */
1637
+ uninterpretedOption: UninterpretedOption[];
1638
+ constructor(data?: PartialMessage<ServiceOptions>);
1639
+ static readonly runtime: typeof proto2;
1640
+ static readonly typeName = "google.protobuf.ServiceOptions";
1641
+ static readonly fields: FieldList;
1642
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ServiceOptions;
1643
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ServiceOptions;
1644
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ServiceOptions;
1645
+ static equals(a: ServiceOptions | PlainMessage<ServiceOptions> | undefined, b: ServiceOptions | PlainMessage<ServiceOptions> | undefined): boolean;
1646
+ }
1647
+ /**
1648
+ * @generated from message google.protobuf.MethodOptions
1649
+ */
1650
+ export declare class MethodOptions extends Message<MethodOptions> {
1651
+ /**
1652
+ * Is this method deprecated?
1653
+ * Depending on the target platform, this can emit Deprecated annotations
1654
+ * for the method, or it will be completely ignored; in the very least,
1655
+ * this is a formalization for deprecating methods.
1656
+ *
1657
+ * @generated from field: optional bool deprecated = 33 [default = false];
1658
+ */
1659
+ deprecated?: boolean;
1660
+ /**
1661
+ * @generated from field: optional google.protobuf.MethodOptions.IdempotencyLevel idempotency_level = 34 [default = IDEMPOTENCY_UNKNOWN];
1662
+ */
1663
+ idempotencyLevel?: MethodOptions_IdempotencyLevel;
1664
+ /**
1665
+ * Any features defined in the specific edition.
1666
+ *
1667
+ * @generated from field: optional google.protobuf.FeatureSet features = 35;
1668
+ */
1669
+ features?: FeatureSet;
1670
+ /**
1671
+ * The parser stores options it doesn't recognize here. See above.
1672
+ *
1673
+ * @generated from field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
1674
+ */
1675
+ uninterpretedOption: UninterpretedOption[];
1676
+ constructor(data?: PartialMessage<MethodOptions>);
1677
+ static readonly runtime: typeof proto2;
1678
+ static readonly typeName = "google.protobuf.MethodOptions";
1679
+ static readonly fields: FieldList;
1680
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MethodOptions;
1681
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MethodOptions;
1682
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MethodOptions;
1683
+ static equals(a: MethodOptions | PlainMessage<MethodOptions> | undefined, b: MethodOptions | PlainMessage<MethodOptions> | undefined): boolean;
1684
+ }
1685
+ /**
1686
+ * Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
1687
+ * or neither? HTTP based RPC implementation may choose GET verb for safe
1688
+ * methods, and PUT verb for idempotent methods instead of the default POST.
1689
+ *
1690
+ * @generated from enum google.protobuf.MethodOptions.IdempotencyLevel
1691
+ */
1692
+ export declare enum MethodOptions_IdempotencyLevel {
1693
+ /**
1694
+ * @generated from enum value: IDEMPOTENCY_UNKNOWN = 0;
1695
+ */
1696
+ IDEMPOTENCY_UNKNOWN = 0,
1697
+ /**
1698
+ * implies idempotent
1699
+ *
1700
+ * @generated from enum value: NO_SIDE_EFFECTS = 1;
1701
+ */
1702
+ NO_SIDE_EFFECTS = 1,
1703
+ /**
1704
+ * idempotent, but may have side effects
1705
+ *
1706
+ * @generated from enum value: IDEMPOTENT = 2;
1707
+ */
1708
+ IDEMPOTENT = 2
1709
+ }
1710
+ /**
1711
+ * A message representing a option the parser does not recognize. This only
1712
+ * appears in options protos created by the compiler::Parser class.
1713
+ * DescriptorPool resolves these when building Descriptor objects. Therefore,
1714
+ * options protos in descriptor objects (e.g. returned by Descriptor::options(),
1715
+ * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
1716
+ * in them.
1717
+ *
1718
+ * @generated from message google.protobuf.UninterpretedOption
1719
+ */
1720
+ export declare class UninterpretedOption extends Message<UninterpretedOption> {
1721
+ /**
1722
+ * @generated from field: repeated google.protobuf.UninterpretedOption.NamePart name = 2;
1723
+ */
1724
+ name: UninterpretedOption_NamePart[];
1725
+ /**
1726
+ * The value of the uninterpreted option, in whatever type the tokenizer
1727
+ * identified it as during parsing. Exactly one of these should be set.
1728
+ *
1729
+ * @generated from field: optional string identifier_value = 3;
1730
+ */
1731
+ identifierValue?: string;
1732
+ /**
1733
+ * @generated from field: optional uint64 positive_int_value = 4;
1734
+ */
1735
+ positiveIntValue?: bigint;
1736
+ /**
1737
+ * @generated from field: optional int64 negative_int_value = 5;
1738
+ */
1739
+ negativeIntValue?: bigint;
1740
+ /**
1741
+ * @generated from field: optional double double_value = 6;
1742
+ */
1743
+ doubleValue?: number;
1744
+ /**
1745
+ * @generated from field: optional bytes string_value = 7;
1746
+ */
1747
+ stringValue?: Uint8Array;
1748
+ /**
1749
+ * @generated from field: optional string aggregate_value = 8;
1750
+ */
1751
+ aggregateValue?: string;
1752
+ constructor(data?: PartialMessage<UninterpretedOption>);
1753
+ static readonly runtime: typeof proto2;
1754
+ static readonly typeName = "google.protobuf.UninterpretedOption";
1755
+ static readonly fields: FieldList;
1756
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UninterpretedOption;
1757
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UninterpretedOption;
1758
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UninterpretedOption;
1759
+ static equals(a: UninterpretedOption | PlainMessage<UninterpretedOption> | undefined, b: UninterpretedOption | PlainMessage<UninterpretedOption> | undefined): boolean;
1760
+ }
1761
+ /**
1762
+ * The name of the uninterpreted option. Each string represents a segment in
1763
+ * a dot-separated name. is_extension is true iff a segment represents an
1764
+ * extension (denoted with parentheses in options specs in .proto files).
1765
+ * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
1766
+ * "foo.(bar.baz).moo".
1767
+ *
1768
+ * @generated from message google.protobuf.UninterpretedOption.NamePart
1769
+ */
1770
+ export declare class UninterpretedOption_NamePart extends Message<UninterpretedOption_NamePart> {
1771
+ /**
1772
+ * @generated from field: required string name_part = 1;
1773
+ */
1774
+ namePart?: string;
1775
+ /**
1776
+ * @generated from field: required bool is_extension = 2;
1777
+ */
1778
+ isExtension?: boolean;
1779
+ constructor(data?: PartialMessage<UninterpretedOption_NamePart>);
1780
+ static readonly runtime: typeof proto2;
1781
+ static readonly typeName = "google.protobuf.UninterpretedOption.NamePart";
1782
+ static readonly fields: FieldList;
1783
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UninterpretedOption_NamePart;
1784
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UninterpretedOption_NamePart;
1785
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UninterpretedOption_NamePart;
1786
+ static equals(a: UninterpretedOption_NamePart | PlainMessage<UninterpretedOption_NamePart> | undefined, b: UninterpretedOption_NamePart | PlainMessage<UninterpretedOption_NamePart> | undefined): boolean;
1787
+ }
1788
+ /**
1789
+ * TODO Enums in C++ gencode (and potentially other languages) are
1790
+ * not well scoped. This means that each of the feature enums below can clash
1791
+ * with each other. The short names we've chosen maximize call-site
1792
+ * readability, but leave us very open to this scenario. A future feature will
1793
+ * be designed and implemented to handle this, hopefully before we ever hit a
1794
+ * conflict here.
1795
+ *
1796
+ * @generated from message google.protobuf.FeatureSet
1797
+ */
1798
+ export declare class FeatureSet extends Message<FeatureSet> {
1799
+ /**
1800
+ * @generated from field: optional google.protobuf.FeatureSet.FieldPresence field_presence = 1;
1801
+ */
1802
+ fieldPresence?: FeatureSet_FieldPresence;
1803
+ /**
1804
+ * @generated from field: optional google.protobuf.FeatureSet.EnumType enum_type = 2;
1805
+ */
1806
+ enumType?: FeatureSet_EnumType;
1807
+ /**
1808
+ * @generated from field: optional google.protobuf.FeatureSet.RepeatedFieldEncoding repeated_field_encoding = 3;
1809
+ */
1810
+ repeatedFieldEncoding?: FeatureSet_RepeatedFieldEncoding;
1811
+ /**
1812
+ * @generated from field: optional google.protobuf.FeatureSet.Utf8Validation utf8_validation = 4;
1813
+ */
1814
+ utf8Validation?: FeatureSet_Utf8Validation;
1815
+ /**
1816
+ * @generated from field: optional google.protobuf.FeatureSet.MessageEncoding message_encoding = 5;
1817
+ */
1818
+ messageEncoding?: FeatureSet_MessageEncoding;
1819
+ /**
1820
+ * @generated from field: optional google.protobuf.FeatureSet.JsonFormat json_format = 6;
1821
+ */
1822
+ jsonFormat?: FeatureSet_JsonFormat;
1823
+ constructor(data?: PartialMessage<FeatureSet>);
1824
+ static readonly runtime: typeof proto2;
1825
+ static readonly typeName = "google.protobuf.FeatureSet";
1826
+ static readonly fields: FieldList;
1827
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FeatureSet;
1828
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FeatureSet;
1829
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FeatureSet;
1830
+ static equals(a: FeatureSet | PlainMessage<FeatureSet> | undefined, b: FeatureSet | PlainMessage<FeatureSet> | undefined): boolean;
1831
+ }
1832
+ /**
1833
+ * @generated from enum google.protobuf.FeatureSet.FieldPresence
1834
+ */
1835
+ export declare enum FeatureSet_FieldPresence {
1836
+ /**
1837
+ * @generated from enum value: FIELD_PRESENCE_UNKNOWN = 0;
1838
+ */
1839
+ FIELD_PRESENCE_UNKNOWN = 0,
1840
+ /**
1841
+ * @generated from enum value: EXPLICIT = 1;
1842
+ */
1843
+ EXPLICIT = 1,
1844
+ /**
1845
+ * @generated from enum value: IMPLICIT = 2;
1846
+ */
1847
+ IMPLICIT = 2,
1848
+ /**
1849
+ * @generated from enum value: LEGACY_REQUIRED = 3;
1850
+ */
1851
+ LEGACY_REQUIRED = 3
1852
+ }
1853
+ /**
1854
+ * @generated from enum google.protobuf.FeatureSet.EnumType
1855
+ */
1856
+ export declare enum FeatureSet_EnumType {
1857
+ /**
1858
+ * @generated from enum value: ENUM_TYPE_UNKNOWN = 0;
1859
+ */
1860
+ ENUM_TYPE_UNKNOWN = 0,
1861
+ /**
1862
+ * @generated from enum value: OPEN = 1;
1863
+ */
1864
+ OPEN = 1,
1865
+ /**
1866
+ * @generated from enum value: CLOSED = 2;
1867
+ */
1868
+ CLOSED = 2
1869
+ }
1870
+ /**
1871
+ * @generated from enum google.protobuf.FeatureSet.RepeatedFieldEncoding
1872
+ */
1873
+ export declare enum FeatureSet_RepeatedFieldEncoding {
1874
+ /**
1875
+ * @generated from enum value: REPEATED_FIELD_ENCODING_UNKNOWN = 0;
1876
+ */
1877
+ REPEATED_FIELD_ENCODING_UNKNOWN = 0,
1878
+ /**
1879
+ * @generated from enum value: PACKED = 1;
1880
+ */
1881
+ PACKED = 1,
1882
+ /**
1883
+ * @generated from enum value: EXPANDED = 2;
1884
+ */
1885
+ EXPANDED = 2
1886
+ }
1887
+ /**
1888
+ * @generated from enum google.protobuf.FeatureSet.Utf8Validation
1889
+ */
1890
+ export declare enum FeatureSet_Utf8Validation {
1891
+ /**
1892
+ * @generated from enum value: UTF8_VALIDATION_UNKNOWN = 0;
1893
+ */
1894
+ UTF8_VALIDATION_UNKNOWN = 0,
1895
+ /**
1896
+ * @generated from enum value: VERIFY = 2;
1897
+ */
1898
+ VERIFY = 2,
1899
+ /**
1900
+ * @generated from enum value: NONE = 3;
1901
+ */
1902
+ NONE = 3
1903
+ }
1904
+ /**
1905
+ * @generated from enum google.protobuf.FeatureSet.MessageEncoding
1906
+ */
1907
+ export declare enum FeatureSet_MessageEncoding {
1908
+ /**
1909
+ * @generated from enum value: MESSAGE_ENCODING_UNKNOWN = 0;
1910
+ */
1911
+ MESSAGE_ENCODING_UNKNOWN = 0,
1912
+ /**
1913
+ * @generated from enum value: LENGTH_PREFIXED = 1;
1914
+ */
1915
+ LENGTH_PREFIXED = 1,
1916
+ /**
1917
+ * @generated from enum value: DELIMITED = 2;
1918
+ */
1919
+ DELIMITED = 2
1920
+ }
1921
+ /**
1922
+ * @generated from enum google.protobuf.FeatureSet.JsonFormat
1923
+ */
1924
+ export declare enum FeatureSet_JsonFormat {
1925
+ /**
1926
+ * @generated from enum value: JSON_FORMAT_UNKNOWN = 0;
1927
+ */
1928
+ JSON_FORMAT_UNKNOWN = 0,
1929
+ /**
1930
+ * @generated from enum value: ALLOW = 1;
1931
+ */
1932
+ ALLOW = 1,
1933
+ /**
1934
+ * @generated from enum value: LEGACY_BEST_EFFORT = 2;
1935
+ */
1936
+ LEGACY_BEST_EFFORT = 2
1937
+ }
1938
+ /**
1939
+ * A compiled specification for the defaults of a set of features. These
1940
+ * messages are generated from FeatureSet extensions and can be used to seed
1941
+ * feature resolution. The resolution with this object becomes a simple search
1942
+ * for the closest matching edition, followed by proto merges.
1943
+ *
1944
+ * @generated from message google.protobuf.FeatureSetDefaults
1945
+ */
1946
+ export declare class FeatureSetDefaults extends Message<FeatureSetDefaults> {
1947
+ /**
1948
+ * @generated from field: repeated google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault defaults = 1;
1949
+ */
1950
+ defaults: FeatureSetDefaults_FeatureSetEditionDefault[];
1951
+ /**
1952
+ * The minimum supported edition (inclusive) when this was constructed.
1953
+ * Editions before this will not have defaults.
1954
+ *
1955
+ * @generated from field: optional google.protobuf.Edition minimum_edition = 4;
1956
+ */
1957
+ minimumEdition?: Edition;
1958
+ /**
1959
+ * The maximum known edition (inclusive) when this was constructed. Editions
1960
+ * after this will not have reliable defaults.
1961
+ *
1962
+ * @generated from field: optional google.protobuf.Edition maximum_edition = 5;
1963
+ */
1964
+ maximumEdition?: Edition;
1965
+ constructor(data?: PartialMessage<FeatureSetDefaults>);
1966
+ static readonly runtime: typeof proto2;
1967
+ static readonly typeName = "google.protobuf.FeatureSetDefaults";
1968
+ static readonly fields: FieldList;
1969
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FeatureSetDefaults;
1970
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FeatureSetDefaults;
1971
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FeatureSetDefaults;
1972
+ static equals(a: FeatureSetDefaults | PlainMessage<FeatureSetDefaults> | undefined, b: FeatureSetDefaults | PlainMessage<FeatureSetDefaults> | undefined): boolean;
1973
+ }
1974
+ /**
1975
+ * A map from every known edition with a unique set of defaults to its
1976
+ * defaults. Not all editions may be contained here. For a given edition,
1977
+ * the defaults at the closest matching edition ordered at or before it should
1978
+ * be used. This field must be in strict ascending order by edition.
1979
+ *
1980
+ * @generated from message google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault
1981
+ */
1982
+ export declare class FeatureSetDefaults_FeatureSetEditionDefault extends Message<FeatureSetDefaults_FeatureSetEditionDefault> {
1983
+ /**
1984
+ * @generated from field: optional google.protobuf.Edition edition = 3;
1985
+ */
1986
+ edition?: Edition;
1987
+ /**
1988
+ * Defaults of features that can be overridden in this edition.
1989
+ *
1990
+ * @generated from field: optional google.protobuf.FeatureSet overridable_features = 4;
1991
+ */
1992
+ overridableFeatures?: FeatureSet;
1993
+ /**
1994
+ * Defaults of features that can't be overridden in this edition.
1995
+ *
1996
+ * @generated from field: optional google.protobuf.FeatureSet fixed_features = 5;
1997
+ */
1998
+ fixedFeatures?: FeatureSet;
1999
+ constructor(data?: PartialMessage<FeatureSetDefaults_FeatureSetEditionDefault>);
2000
+ static readonly runtime: typeof proto2;
2001
+ static readonly typeName = "google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault";
2002
+ static readonly fields: FieldList;
2003
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FeatureSetDefaults_FeatureSetEditionDefault;
2004
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FeatureSetDefaults_FeatureSetEditionDefault;
2005
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FeatureSetDefaults_FeatureSetEditionDefault;
2006
+ static equals(a: FeatureSetDefaults_FeatureSetEditionDefault | PlainMessage<FeatureSetDefaults_FeatureSetEditionDefault> | undefined, b: FeatureSetDefaults_FeatureSetEditionDefault | PlainMessage<FeatureSetDefaults_FeatureSetEditionDefault> | undefined): boolean;
2007
+ }
2008
+ /**
2009
+ * Encapsulates information about the original source file from which a
2010
+ * FileDescriptorProto was generated.
2011
+ *
2012
+ * @generated from message google.protobuf.SourceCodeInfo
2013
+ */
2014
+ export declare class SourceCodeInfo extends Message<SourceCodeInfo> {
2015
+ /**
2016
+ * A Location identifies a piece of source code in a .proto file which
2017
+ * corresponds to a particular definition. This information is intended
2018
+ * to be useful to IDEs, code indexers, documentation generators, and similar
2019
+ * tools.
2020
+ *
2021
+ * For example, say we have a file like:
2022
+ * message Foo {
2023
+ * optional string foo = 1;
2024
+ * }
2025
+ * Let's look at just the field definition:
2026
+ * optional string foo = 1;
2027
+ * ^ ^^ ^^ ^ ^^^
2028
+ * a bc de f ghi
2029
+ * We have the following locations:
2030
+ * span path represents
2031
+ * [a,i) [ 4, 0, 2, 0 ] The whole field definition.
2032
+ * [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
2033
+ * [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
2034
+ * [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
2035
+ * [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
2036
+ *
2037
+ * Notes:
2038
+ * - A location may refer to a repeated field itself (i.e. not to any
2039
+ * particular index within it). This is used whenever a set of elements are
2040
+ * logically enclosed in a single code segment. For example, an entire
2041
+ * extend block (possibly containing multiple extension definitions) will
2042
+ * have an outer location whose path refers to the "extensions" repeated
2043
+ * field without an index.
2044
+ * - Multiple locations may have the same path. This happens when a single
2045
+ * logical declaration is spread out across multiple places. The most
2046
+ * obvious example is the "extend" block again -- there may be multiple
2047
+ * extend blocks in the same scope, each of which will have the same path.
2048
+ * - A location's span is not always a subset of its parent's span. For
2049
+ * example, the "extendee" of an extension declaration appears at the
2050
+ * beginning of the "extend" block and is shared by all extensions within
2051
+ * the block.
2052
+ * - Just because a location's span is a subset of some other location's span
2053
+ * does not mean that it is a descendant. For example, a "group" defines
2054
+ * both a type and a field in a single declaration. Thus, the locations
2055
+ * corresponding to the type and field and their components will overlap.
2056
+ * - Code which tries to interpret locations should probably be designed to
2057
+ * ignore those that it doesn't understand, as more types of locations could
2058
+ * be recorded in the future.
2059
+ *
2060
+ * @generated from field: repeated google.protobuf.SourceCodeInfo.Location location = 1;
2061
+ */
2062
+ location: SourceCodeInfo_Location[];
2063
+ constructor(data?: PartialMessage<SourceCodeInfo>);
2064
+ static readonly runtime: typeof proto2;
2065
+ static readonly typeName = "google.protobuf.SourceCodeInfo";
2066
+ static readonly fields: FieldList;
2067
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SourceCodeInfo;
2068
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SourceCodeInfo;
2069
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SourceCodeInfo;
2070
+ static equals(a: SourceCodeInfo | PlainMessage<SourceCodeInfo> | undefined, b: SourceCodeInfo | PlainMessage<SourceCodeInfo> | undefined): boolean;
2071
+ }
2072
+ /**
2073
+ * @generated from message google.protobuf.SourceCodeInfo.Location
2074
+ */
2075
+ export declare class SourceCodeInfo_Location extends Message<SourceCodeInfo_Location> {
2076
+ /**
2077
+ * Identifies which part of the FileDescriptorProto was defined at this
2078
+ * location.
2079
+ *
2080
+ * Each element is a field number or an index. They form a path from
2081
+ * the root FileDescriptorProto to the place where the definition appears.
2082
+ * For example, this path:
2083
+ * [ 4, 3, 2, 7, 1 ]
2084
+ * refers to:
2085
+ * file.message_type(3) // 4, 3
2086
+ * .field(7) // 2, 7
2087
+ * .name() // 1
2088
+ * This is because FileDescriptorProto.message_type has field number 4:
2089
+ * repeated DescriptorProto message_type = 4;
2090
+ * and DescriptorProto.field has field number 2:
2091
+ * repeated FieldDescriptorProto field = 2;
2092
+ * and FieldDescriptorProto.name has field number 1:
2093
+ * optional string name = 1;
2094
+ *
2095
+ * Thus, the above path gives the location of a field name. If we removed
2096
+ * the last element:
2097
+ * [ 4, 3, 2, 7 ]
2098
+ * this path refers to the whole field declaration (from the beginning
2099
+ * of the label to the terminating semicolon).
2100
+ *
2101
+ * @generated from field: repeated int32 path = 1 [packed = true];
2102
+ */
2103
+ path: number[];
2104
+ /**
2105
+ * Always has exactly three or four elements: start line, start column,
2106
+ * end line (optional, otherwise assumed same as start line), end column.
2107
+ * These are packed into a single field for efficiency. Note that line
2108
+ * and column numbers are zero-based -- typically you will want to add
2109
+ * 1 to each before displaying to a user.
2110
+ *
2111
+ * @generated from field: repeated int32 span = 2 [packed = true];
2112
+ */
2113
+ span: number[];
2114
+ /**
2115
+ * If this SourceCodeInfo represents a complete declaration, these are any
2116
+ * comments appearing before and after the declaration which appear to be
2117
+ * attached to the declaration.
2118
+ *
2119
+ * A series of line comments appearing on consecutive lines, with no other
2120
+ * tokens appearing on those lines, will be treated as a single comment.
2121
+ *
2122
+ * leading_detached_comments will keep paragraphs of comments that appear
2123
+ * before (but not connected to) the current element. Each paragraph,
2124
+ * separated by empty lines, will be one comment element in the repeated
2125
+ * field.
2126
+ *
2127
+ * Only the comment content is provided; comment markers (e.g. //) are
2128
+ * stripped out. For block comments, leading whitespace and an asterisk
2129
+ * will be stripped from the beginning of each line other than the first.
2130
+ * Newlines are included in the output.
2131
+ *
2132
+ * Examples:
2133
+ *
2134
+ * optional int32 foo = 1; // Comment attached to foo.
2135
+ * // Comment attached to bar.
2136
+ * optional int32 bar = 2;
2137
+ *
2138
+ * optional string baz = 3;
2139
+ * // Comment attached to baz.
2140
+ * // Another line attached to baz.
2141
+ *
2142
+ * // Comment attached to moo.
2143
+ * //
2144
+ * // Another line attached to moo.
2145
+ * optional double moo = 4;
2146
+ *
2147
+ * // Detached comment for corge. This is not leading or trailing comments
2148
+ * // to moo or corge because there are blank lines separating it from
2149
+ * // both.
2150
+ *
2151
+ * // Detached comment for corge paragraph 2.
2152
+ *
2153
+ * optional string corge = 5;
2154
+ * /* Block comment attached
2155
+ * * to corge. Leading asterisks
2156
+ * * will be removed. *\/
2157
+ * /* Block comment attached to
2158
+ * * grault. *\/
2159
+ * optional int32 grault = 6;
2160
+ *
2161
+ * // ignored detached comments.
2162
+ *
2163
+ * @generated from field: optional string leading_comments = 3;
2164
+ */
2165
+ leadingComments?: string;
2166
+ /**
2167
+ * @generated from field: optional string trailing_comments = 4;
2168
+ */
2169
+ trailingComments?: string;
2170
+ /**
2171
+ * @generated from field: repeated string leading_detached_comments = 6;
2172
+ */
2173
+ leadingDetachedComments: string[];
2174
+ constructor(data?: PartialMessage<SourceCodeInfo_Location>);
2175
+ static readonly runtime: typeof proto2;
2176
+ static readonly typeName = "google.protobuf.SourceCodeInfo.Location";
2177
+ static readonly fields: FieldList;
2178
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SourceCodeInfo_Location;
2179
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SourceCodeInfo_Location;
2180
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SourceCodeInfo_Location;
2181
+ static equals(a: SourceCodeInfo_Location | PlainMessage<SourceCodeInfo_Location> | undefined, b: SourceCodeInfo_Location | PlainMessage<SourceCodeInfo_Location> | undefined): boolean;
2182
+ }
2183
+ /**
2184
+ * Describes the relationship between generated code and its original source
2185
+ * file. A GeneratedCodeInfo message is associated with only one generated
2186
+ * source file, but may contain references to different source .proto files.
2187
+ *
2188
+ * @generated from message google.protobuf.GeneratedCodeInfo
2189
+ */
2190
+ export declare class GeneratedCodeInfo extends Message<GeneratedCodeInfo> {
2191
+ /**
2192
+ * An Annotation connects some span of text in generated code to an element
2193
+ * of its generating .proto file.
2194
+ *
2195
+ * @generated from field: repeated google.protobuf.GeneratedCodeInfo.Annotation annotation = 1;
2196
+ */
2197
+ annotation: GeneratedCodeInfo_Annotation[];
2198
+ constructor(data?: PartialMessage<GeneratedCodeInfo>);
2199
+ static readonly runtime: typeof proto2;
2200
+ static readonly typeName = "google.protobuf.GeneratedCodeInfo";
2201
+ static readonly fields: FieldList;
2202
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeneratedCodeInfo;
2203
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GeneratedCodeInfo;
2204
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GeneratedCodeInfo;
2205
+ static equals(a: GeneratedCodeInfo | PlainMessage<GeneratedCodeInfo> | undefined, b: GeneratedCodeInfo | PlainMessage<GeneratedCodeInfo> | undefined): boolean;
2206
+ }
2207
+ /**
2208
+ * @generated from message google.protobuf.GeneratedCodeInfo.Annotation
2209
+ */
2210
+ export declare class GeneratedCodeInfo_Annotation extends Message<GeneratedCodeInfo_Annotation> {
2211
+ /**
2212
+ * Identifies the element in the original source .proto file. This field
2213
+ * is formatted the same as SourceCodeInfo.Location.path.
2214
+ *
2215
+ * @generated from field: repeated int32 path = 1 [packed = true];
2216
+ */
2217
+ path: number[];
2218
+ /**
2219
+ * Identifies the filesystem path to the original source .proto.
2220
+ *
2221
+ * @generated from field: optional string source_file = 2;
2222
+ */
2223
+ sourceFile?: string;
2224
+ /**
2225
+ * Identifies the starting offset in bytes in the generated code
2226
+ * that relates to the identified object.
2227
+ *
2228
+ * @generated from field: optional int32 begin = 3;
2229
+ */
2230
+ begin?: number;
2231
+ /**
2232
+ * Identifies the ending offset in bytes in the generated code that
2233
+ * relates to the identified object. The end offset should be one past
2234
+ * the last relevant byte (so the length of the text = end - begin).
2235
+ *
2236
+ * @generated from field: optional int32 end = 4;
2237
+ */
2238
+ end?: number;
2239
+ /**
2240
+ * @generated from field: optional google.protobuf.GeneratedCodeInfo.Annotation.Semantic semantic = 5;
2241
+ */
2242
+ semantic?: GeneratedCodeInfo_Annotation_Semantic;
2243
+ constructor(data?: PartialMessage<GeneratedCodeInfo_Annotation>);
2244
+ static readonly runtime: typeof proto2;
2245
+ static readonly typeName = "google.protobuf.GeneratedCodeInfo.Annotation";
2246
+ static readonly fields: FieldList;
2247
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeneratedCodeInfo_Annotation;
2248
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GeneratedCodeInfo_Annotation;
2249
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GeneratedCodeInfo_Annotation;
2250
+ static equals(a: GeneratedCodeInfo_Annotation | PlainMessage<GeneratedCodeInfo_Annotation> | undefined, b: GeneratedCodeInfo_Annotation | PlainMessage<GeneratedCodeInfo_Annotation> | undefined): boolean;
2251
+ }
2252
+ /**
2253
+ * Represents the identified object's effect on the element in the original
2254
+ * .proto file.
2255
+ *
2256
+ * @generated from enum google.protobuf.GeneratedCodeInfo.Annotation.Semantic
2257
+ */
2258
+ export declare enum GeneratedCodeInfo_Annotation_Semantic {
2259
+ /**
2260
+ * There is no effect or the effect is indescribable.
2261
+ *
2262
+ * @generated from enum value: NONE = 0;
2263
+ */
2264
+ NONE = 0,
2265
+ /**
2266
+ * The element is set or otherwise mutated.
2267
+ *
2268
+ * @generated from enum value: SET = 1;
2269
+ */
2270
+ SET = 1,
2271
+ /**
2272
+ * An alias to the element is returned.
2273
+ *
2274
+ * @generated from enum value: ALIAS = 2;
2275
+ */
2276
+ ALIAS = 2
2277
+ }