@proompteng/temporal-bun-sdk 0.1.0

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 (448) hide show
  1. package/README.md +387 -0
  2. package/dist/bin/start-worker.js +3 -0
  3. package/dist/bin/temporal-bun.js +3 -0
  4. package/dist/src/activities/index.d.ts +6 -0
  5. package/dist/src/activities/index.d.ts.map +1 -0
  6. package/dist/src/activities/index.js +5 -0
  7. package/dist/src/activities/index.js.map +1 -0
  8. package/dist/src/activities/lifecycle.d.ts +48 -0
  9. package/dist/src/activities/lifecycle.d.ts.map +1 -0
  10. package/dist/src/activities/lifecycle.js +306 -0
  11. package/dist/src/activities/lifecycle.js.map +1 -0
  12. package/dist/src/bin/replay-command.d.ts +104 -0
  13. package/dist/src/bin/replay-command.d.ts.map +1 -0
  14. package/dist/src/bin/replay-command.js +582 -0
  15. package/dist/src/bin/replay-command.js.map +1 -0
  16. package/dist/src/bin/start-worker.d.ts +3 -0
  17. package/dist/src/bin/start-worker.d.ts.map +1 -0
  18. package/dist/src/bin/start-worker.js +29 -0
  19. package/dist/src/bin/start-worker.js.map +1 -0
  20. package/dist/src/bin/temporal-bun.d.ts +25 -0
  21. package/dist/src/bin/temporal-bun.d.ts.map +1 -0
  22. package/dist/src/bin/temporal-bun.js +427 -0
  23. package/dist/src/bin/temporal-bun.js.map +1 -0
  24. package/dist/src/build_id_preflight.d.ts +7 -0
  25. package/dist/src/build_id_preflight.d.ts.map +1 -0
  26. package/dist/src/build_id_preflight.js +123 -0
  27. package/dist/src/build_id_preflight.js.map +1 -0
  28. package/dist/src/client/headers.d.ts +4 -0
  29. package/dist/src/client/headers.d.ts.map +1 -0
  30. package/dist/src/client/headers.js +79 -0
  31. package/dist/src/client/headers.js.map +1 -0
  32. package/dist/src/client/index.d.ts +2 -0
  33. package/dist/src/client/index.d.ts.map +1 -0
  34. package/dist/src/client/index.js +2 -0
  35. package/dist/src/client/index.js.map +1 -0
  36. package/dist/src/client/interceptors.d.ts +17 -0
  37. package/dist/src/client/interceptors.d.ts.map +1 -0
  38. package/dist/src/client/interceptors.js +71 -0
  39. package/dist/src/client/interceptors.js.map +1 -0
  40. package/dist/src/client/layer.d.ts +10 -0
  41. package/dist/src/client/layer.d.ts.map +1 -0
  42. package/dist/src/client/layer.js +7 -0
  43. package/dist/src/client/layer.js.map +1 -0
  44. package/dist/src/client/retries.d.ts +13 -0
  45. package/dist/src/client/retries.d.ts.map +1 -0
  46. package/dist/src/client/retries.js +51 -0
  47. package/dist/src/client/retries.js.map +1 -0
  48. package/dist/src/client/serialization.d.ts +48 -0
  49. package/dist/src/client/serialization.d.ts.map +1 -0
  50. package/dist/src/client/serialization.js +310 -0
  51. package/dist/src/client/serialization.js.map +1 -0
  52. package/dist/src/client/serialization.test.d.ts +2 -0
  53. package/dist/src/client/serialization.test.d.ts.map +1 -0
  54. package/dist/src/client/serialization.test.js +251 -0
  55. package/dist/src/client/serialization.test.js.map +1 -0
  56. package/dist/src/client/transport.d.ts +12 -0
  57. package/dist/src/client/transport.d.ts.map +1 -0
  58. package/dist/src/client/transport.js +36 -0
  59. package/dist/src/client/transport.js.map +1 -0
  60. package/dist/src/client/types.d.ts +51 -0
  61. package/dist/src/client/types.d.ts.map +1 -0
  62. package/dist/src/client/types.js +7 -0
  63. package/dist/src/client/types.js.map +1 -0
  64. package/dist/src/client.d.ts +92 -0
  65. package/dist/src/client.d.ts.map +1 -0
  66. package/dist/src/client.js +666 -0
  67. package/dist/src/client.js.map +1 -0
  68. package/dist/src/common/duration.d.ts +4 -0
  69. package/dist/src/common/duration.d.ts.map +1 -0
  70. package/dist/src/common/duration.js +14 -0
  71. package/dist/src/common/duration.js.map +1 -0
  72. package/dist/src/common/index.d.ts +2 -0
  73. package/dist/src/common/index.d.ts.map +1 -0
  74. package/dist/src/common/index.js +2 -0
  75. package/dist/src/common/index.js.map +1 -0
  76. package/dist/src/common/payloads/converter.d.ts +16 -0
  77. package/dist/src/common/payloads/converter.d.ts.map +1 -0
  78. package/dist/src/common/payloads/converter.js +33 -0
  79. package/dist/src/common/payloads/converter.js.map +1 -0
  80. package/dist/src/common/payloads/failure.d.ts +7 -0
  81. package/dist/src/common/payloads/failure.d.ts.map +1 -0
  82. package/dist/src/common/payloads/failure.js +53 -0
  83. package/dist/src/common/payloads/failure.js.map +1 -0
  84. package/dist/src/common/payloads/index.d.ts +4 -0
  85. package/dist/src/common/payloads/index.d.ts.map +1 -0
  86. package/dist/src/common/payloads/index.js +4 -0
  87. package/dist/src/common/payloads/index.js.map +1 -0
  88. package/dist/src/common/payloads/json-codec.d.ts +16 -0
  89. package/dist/src/common/payloads/json-codec.d.ts.map +1 -0
  90. package/dist/src/common/payloads/json-codec.js +185 -0
  91. package/dist/src/common/payloads/json-codec.js.map +1 -0
  92. package/dist/src/common/sleep.d.ts +2 -0
  93. package/dist/src/common/sleep.d.ts.map +1 -0
  94. package/dist/src/common/sleep.js +3 -0
  95. package/dist/src/common/sleep.js.map +1 -0
  96. package/dist/src/config.d.ts +115 -0
  97. package/dist/src/config.d.ts.map +1 -0
  98. package/dist/src/config.js +505 -0
  99. package/dist/src/config.js.map +1 -0
  100. package/dist/src/core-bridge/client.d.ts +36 -0
  101. package/dist/src/core-bridge/client.d.ts.map +1 -0
  102. package/dist/src/core-bridge/client.js +111 -0
  103. package/dist/src/core-bridge/client.js.map +1 -0
  104. package/dist/src/core-bridge/index.d.ts +4 -0
  105. package/dist/src/core-bridge/index.d.ts.map +1 -0
  106. package/dist/src/core-bridge/index.js +4 -0
  107. package/dist/src/core-bridge/index.js.map +1 -0
  108. package/dist/src/core-bridge/runtime.d.ts +20 -0
  109. package/dist/src/core-bridge/runtime.d.ts.map +1 -0
  110. package/dist/src/core-bridge/runtime.js +62 -0
  111. package/dist/src/core-bridge/runtime.js.map +1 -0
  112. package/dist/src/core-bridge/runtime.test.d.ts +2 -0
  113. package/dist/src/core-bridge/runtime.test.d.ts.map +1 -0
  114. package/dist/src/core-bridge/runtime.test.js +68 -0
  115. package/dist/src/core-bridge/runtime.test.js.map +1 -0
  116. package/dist/src/index.d.ts +11 -0
  117. package/dist/src/index.d.ts.map +1 -0
  118. package/dist/src/index.js +7 -0
  119. package/dist/src/index.js.map +1 -0
  120. package/dist/src/internal/core-bridge/native.d.ts +176 -0
  121. package/dist/src/internal/core-bridge/native.d.ts.map +1 -0
  122. package/dist/src/internal/core-bridge/native.js +1208 -0
  123. package/dist/src/internal/core-bridge/native.js.map +1 -0
  124. package/dist/src/observability/index.d.ts +21 -0
  125. package/dist/src/observability/index.d.ts.map +1 -0
  126. package/dist/src/observability/index.js +19 -0
  127. package/dist/src/observability/index.js.map +1 -0
  128. package/dist/src/observability/logger.d.ts +28 -0
  129. package/dist/src/observability/logger.d.ts.map +1 -0
  130. package/dist/src/observability/logger.js +53 -0
  131. package/dist/src/observability/logger.js.map +1 -0
  132. package/dist/src/observability/metrics.d.ts +28 -0
  133. package/dist/src/observability/metrics.d.ts.map +1 -0
  134. package/dist/src/observability/metrics.js +355 -0
  135. package/dist/src/observability/metrics.js.map +1 -0
  136. package/dist/src/proto/google/api/annotations_pb.d.ts +14 -0
  137. package/dist/src/proto/google/api/annotations_pb.d.ts.map +1 -0
  138. package/dist/src/proto/google/api/annotations_pb.js +27 -0
  139. package/dist/src/proto/google/api/annotations_pb.js.map +1 -0
  140. package/dist/src/proto/google/api/http_pb.d.ts +441 -0
  141. package/dist/src/proto/google/api/http_pb.d.ts.map +1 -0
  142. package/dist/src/proto/google/api/http_pb.js +34 -0
  143. package/dist/src/proto/google/api/http_pb.js.map +1 -0
  144. package/dist/src/proto/temporal/api/activity/v1/message_pb.d.ts +67 -0
  145. package/dist/src/proto/temporal/api/activity/v1/message_pb.d.ts.map +1 -0
  146. package/dist/src/proto/temporal/api/activity/v1/message_pb.js +17 -0
  147. package/dist/src/proto/temporal/api/activity/v1/message_pb.js.map +1 -0
  148. package/dist/src/proto/temporal/api/batch/v1/message_pb.d.ts +464 -0
  149. package/dist/src/proto/temporal/api/batch/v1/message_pb.d.ts.map +1 -0
  150. package/dist/src/proto/temporal/api/batch/v1/message_pb.js +71 -0
  151. package/dist/src/proto/temporal/api/batch/v1/message_pb.js.map +1 -0
  152. package/dist/src/proto/temporal/api/command/v1/message_pb.d.ts +796 -0
  153. package/dist/src/proto/temporal/api/command/v1/message_pb.d.ts.map +1 -0
  154. package/dist/src/proto/temporal/api/command/v1/message_pb.js +106 -0
  155. package/dist/src/proto/temporal/api/command/v1/message_pb.js.map +1 -0
  156. package/dist/src/proto/temporal/api/common/v1/message_pb.d.ts +751 -0
  157. package/dist/src/proto/temporal/api/common/v1/message_pb.d.ts.map +1 -0
  158. package/dist/src/proto/temporal/api/common/v1/message_pb.js +133 -0
  159. package/dist/src/proto/temporal/api/common/v1/message_pb.js.map +1 -0
  160. package/dist/src/proto/temporal/api/deployment/v1/message_pb.d.ts +639 -0
  161. package/dist/src/proto/temporal/api/deployment/v1/message_pb.d.ts.map +1 -0
  162. package/dist/src/proto/temporal/api/deployment/v1/message_pb.js +83 -0
  163. package/dist/src/proto/temporal/api/deployment/v1/message_pb.js.map +1 -0
  164. package/dist/src/proto/temporal/api/enums/v1/batch_operation_pb.d.ts +80 -0
  165. package/dist/src/proto/temporal/api/enums/v1/batch_operation_pb.d.ts.map +1 -0
  166. package/dist/src/proto/temporal/api/enums/v1/batch_operation_pb.js +85 -0
  167. package/dist/src/proto/temporal/api/enums/v1/batch_operation_pb.js.map +1 -0
  168. package/dist/src/proto/temporal/api/enums/v1/command_type_pb.d.ts +89 -0
  169. package/dist/src/proto/temporal/api/enums/v1/command_type_pb.d.ts.map +1 -0
  170. package/dist/src/proto/temporal/api/enums/v1/command_type_pb.js +93 -0
  171. package/dist/src/proto/temporal/api/enums/v1/command_type_pb.js.map +1 -0
  172. package/dist/src/proto/temporal/api/enums/v1/common_pb.d.ts +314 -0
  173. package/dist/src/proto/temporal/api/enums/v1/common_pb.d.ts.map +1 -0
  174. package/dist/src/proto/temporal/api/enums/v1/common_pb.js +326 -0
  175. package/dist/src/proto/temporal/api/enums/v1/common_pb.js.map +1 -0
  176. package/dist/src/proto/temporal/api/enums/v1/deployment_pb.d.ts +186 -0
  177. package/dist/src/proto/temporal/api/enums/v1/deployment_pb.d.ts.map +1 -0
  178. package/dist/src/proto/temporal/api/enums/v1/deployment_pb.js +193 -0
  179. package/dist/src/proto/temporal/api/enums/v1/deployment_pb.js.map +1 -0
  180. package/dist/src/proto/temporal/api/enums/v1/event_type_pb.d.ts +407 -0
  181. package/dist/src/proto/temporal/api/enums/v1/event_type_pb.d.ts.map +1 -0
  182. package/dist/src/proto/temporal/api/enums/v1/event_type_pb.js +411 -0
  183. package/dist/src/proto/temporal/api/enums/v1/event_type_pb.js.map +1 -0
  184. package/dist/src/proto/temporal/api/enums/v1/failed_cause_pb.d.ts +371 -0
  185. package/dist/src/proto/temporal/api/enums/v1/failed_cause_pb.d.ts.map +1 -0
  186. package/dist/src/proto/temporal/api/enums/v1/failed_cause_pb.js +380 -0
  187. package/dist/src/proto/temporal/api/enums/v1/failed_cause_pb.js.map +1 -0
  188. package/dist/src/proto/temporal/api/enums/v1/namespace_pb.d.ts +73 -0
  189. package/dist/src/proto/temporal/api/enums/v1/namespace_pb.d.ts.map +1 -0
  190. package/dist/src/proto/temporal/api/enums/v1/namespace_pb.js +79 -0
  191. package/dist/src/proto/temporal/api/enums/v1/namespace_pb.js.map +1 -0
  192. package/dist/src/proto/temporal/api/enums/v1/nexus_pb.d.ts +35 -0
  193. package/dist/src/proto/temporal/api/enums/v1/nexus_pb.d.ts.map +1 -0
  194. package/dist/src/proto/temporal/api/enums/v1/nexus_pb.js +39 -0
  195. package/dist/src/proto/temporal/api/enums/v1/nexus_pb.js.map +1 -0
  196. package/dist/src/proto/temporal/api/enums/v1/query_pb.d.ts +58 -0
  197. package/dist/src/proto/temporal/api/enums/v1/query_pb.d.ts.map +1 -0
  198. package/dist/src/proto/temporal/api/enums/v1/query_pb.js +63 -0
  199. package/dist/src/proto/temporal/api/enums/v1/query_pb.js.map +1 -0
  200. package/dist/src/proto/temporal/api/enums/v1/reset_pb.d.ts +108 -0
  201. package/dist/src/proto/temporal/api/enums/v1/reset_pb.d.ts.map +1 -0
  202. package/dist/src/proto/temporal/api/enums/v1/reset_pb.js +114 -0
  203. package/dist/src/proto/temporal/api/enums/v1/reset_pb.js.map +1 -0
  204. package/dist/src/proto/temporal/api/enums/v1/schedule_pb.d.ts +67 -0
  205. package/dist/src/proto/temporal/api/enums/v1/schedule_pb.d.ts.map +1 -0
  206. package/dist/src/proto/temporal/api/enums/v1/schedule_pb.js +71 -0
  207. package/dist/src/proto/temporal/api/enums/v1/schedule_pb.js.map +1 -0
  208. package/dist/src/proto/temporal/api/enums/v1/task_queue_pb.d.ts +249 -0
  209. package/dist/src/proto/temporal/api/enums/v1/task_queue_pb.d.ts.map +1 -0
  210. package/dist/src/proto/temporal/api/enums/v1/task_queue_pb.js +259 -0
  211. package/dist/src/proto/temporal/api/enums/v1/task_queue_pb.js.map +1 -0
  212. package/dist/src/proto/temporal/api/enums/v1/update_pb.d.ts +78 -0
  213. package/dist/src/proto/temporal/api/enums/v1/update_pb.d.ts.map +1 -0
  214. package/dist/src/proto/temporal/api/enums/v1/update_pb.js +83 -0
  215. package/dist/src/proto/temporal/api/enums/v1/update_pb.js.map +1 -0
  216. package/dist/src/proto/temporal/api/enums/v1/workflow_pb.d.ts +408 -0
  217. package/dist/src/proto/temporal/api/enums/v1/workflow_pb.d.ts.map +1 -0
  218. package/dist/src/proto/temporal/api/enums/v1/workflow_pb.js +422 -0
  219. package/dist/src/proto/temporal/api/enums/v1/workflow_pb.js.map +1 -0
  220. package/dist/src/proto/temporal/api/errordetails/v1/message_pb.d.ts +331 -0
  221. package/dist/src/proto/temporal/api/errordetails/v1/message_pb.d.ts.map +1 -0
  222. package/dist/src/proto/temporal/api/errordetails/v1/message_pb.js +104 -0
  223. package/dist/src/proto/temporal/api/errordetails/v1/message_pb.js.map +1 -0
  224. package/dist/src/proto/temporal/api/export/v1/message_pb.d.ts +39 -0
  225. package/dist/src/proto/temporal/api/export/v1/message_pb.d.ts.map +1 -0
  226. package/dist/src/proto/temporal/api/export/v1/message_pb.js +20 -0
  227. package/dist/src/proto/temporal/api/export/v1/message_pb.js.map +1 -0
  228. package/dist/src/proto/temporal/api/failure/v1/message_pb.d.ts +381 -0
  229. package/dist/src/proto/temporal/api/failure/v1/message_pb.d.ts.map +1 -0
  230. package/dist/src/proto/temporal/api/failure/v1/message_pb.js +74 -0
  231. package/dist/src/proto/temporal/api/failure/v1/message_pb.js.map +1 -0
  232. package/dist/src/proto/temporal/api/filter/v1/message_pb.d.ts +73 -0
  233. package/dist/src/proto/temporal/api/filter/v1/message_pb.d.ts.map +1 -0
  234. package/dist/src/proto/temporal/api/filter/v1/message_pb.js +31 -0
  235. package/dist/src/proto/temporal/api/filter/v1/message_pb.js.map +1 -0
  236. package/dist/src/proto/temporal/api/history/v1/message_pb.d.ts +3136 -0
  237. package/dist/src/proto/temporal/api/history/v1/message_pb.d.ts.map +1 -0
  238. package/dist/src/proto/temporal/api/history/v1/message_pb.js +317 -0
  239. package/dist/src/proto/temporal/api/history/v1/message_pb.js.map +1 -0
  240. package/dist/src/proto/temporal/api/namespace/v1/message_pb.d.ts +242 -0
  241. package/dist/src/proto/temporal/api/namespace/v1/message_pb.d.ts.map +1 -0
  242. package/dist/src/proto/temporal/api/namespace/v1/message_pb.js +46 -0
  243. package/dist/src/proto/temporal/api/namespace/v1/message_pb.js.map +1 -0
  244. package/dist/src/proto/temporal/api/nexus/v1/message_pb.d.ts +549 -0
  245. package/dist/src/proto/temporal/api/nexus/v1/message_pb.d.ts.map +1 -0
  246. package/dist/src/proto/temporal/api/nexus/v1/message_pb.js +97 -0
  247. package/dist/src/proto/temporal/api/nexus/v1/message_pb.js.map +1 -0
  248. package/dist/src/proto/temporal/api/operatorservice/v1/request_response_pb.d.ts +499 -0
  249. package/dist/src/proto/temporal/api/operatorservice/v1/request_response_pb.d.ts.map +1 -0
  250. package/dist/src/proto/temporal/api/operatorservice/v1/request_response_pb.js +137 -0
  251. package/dist/src/proto/temporal/api/operatorservice/v1/request_response_pb.js.map +1 -0
  252. package/dist/src/proto/temporal/api/operatorservice/v1/service_pb.d.ts +153 -0
  253. package/dist/src/proto/temporal/api/operatorservice/v1/service_pb.d.ts.map +1 -0
  254. package/dist/src/proto/temporal/api/operatorservice/v1/service_pb.js +22 -0
  255. package/dist/src/proto/temporal/api/operatorservice/v1/service_pb.js.map +1 -0
  256. package/dist/src/proto/temporal/api/protocol/v1/message_pb.d.ts +64 -0
  257. package/dist/src/proto/temporal/api/protocol/v1/message_pb.d.ts.map +1 -0
  258. package/dist/src/proto/temporal/api/protocol/v1/message_pb.js +15 -0
  259. package/dist/src/proto/temporal/api/protocol/v1/message_pb.js.map +1 -0
  260. package/dist/src/proto/temporal/api/query/v1/message_pb.d.ts +96 -0
  261. package/dist/src/proto/temporal/api/query/v1/message_pb.d.ts.map +1 -0
  262. package/dist/src/proto/temporal/api/query/v1/message_pb.js +28 -0
  263. package/dist/src/proto/temporal/api/query/v1/message_pb.js.map +1 -0
  264. package/dist/src/proto/temporal/api/replication/v1/message_pb.d.ts +67 -0
  265. package/dist/src/proto/temporal/api/replication/v1/message_pb.d.ts.map +1 -0
  266. package/dist/src/proto/temporal/api/replication/v1/message_pb.js +26 -0
  267. package/dist/src/proto/temporal/api/replication/v1/message_pb.js.map +1 -0
  268. package/dist/src/proto/temporal/api/rules/v1/message_pb.d.ts +172 -0
  269. package/dist/src/proto/temporal/api/rules/v1/message_pb.d.ts.map +1 -0
  270. package/dist/src/proto/temporal/api/rules/v1/message_pb.js +35 -0
  271. package/dist/src/proto/temporal/api/rules/v1/message_pb.js.map +1 -0
  272. package/dist/src/proto/temporal/api/schedule/v1/message_pb.d.ts +779 -0
  273. package/dist/src/proto/temporal/api/schedule/v1/message_pb.d.ts.map +1 -0
  274. package/dist/src/proto/temporal/api/schedule/v1/message_pb.js +95 -0
  275. package/dist/src/proto/temporal/api/schedule/v1/message_pb.js.map +1 -0
  276. package/dist/src/proto/temporal/api/sdk/v1/enhanced_stack_trace_pb.d.ts +157 -0
  277. package/dist/src/proto/temporal/api/sdk/v1/enhanced_stack_trace_pb.d.ts.map +1 -0
  278. package/dist/src/proto/temporal/api/sdk/v1/enhanced_stack_trace_pb.js +34 -0
  279. package/dist/src/proto/temporal/api/sdk/v1/enhanced_stack_trace_pb.js.map +1 -0
  280. package/dist/src/proto/temporal/api/sdk/v1/task_complete_metadata_pb.d.ts +71 -0
  281. package/dist/src/proto/temporal/api/sdk/v1/task_complete_metadata_pb.d.ts.map +1 -0
  282. package/dist/src/proto/temporal/api/sdk/v1/task_complete_metadata_pb.js +14 -0
  283. package/dist/src/proto/temporal/api/sdk/v1/task_complete_metadata_pb.js.map +1 -0
  284. package/dist/src/proto/temporal/api/sdk/v1/user_metadata_pb.d.ts +37 -0
  285. package/dist/src/proto/temporal/api/sdk/v1/user_metadata_pb.d.ts.map +1 -0
  286. package/dist/src/proto/temporal/api/sdk/v1/user_metadata_pb.js +15 -0
  287. package/dist/src/proto/temporal/api/sdk/v1/user_metadata_pb.js.map +1 -0
  288. package/dist/src/proto/temporal/api/sdk/v1/worker_config_pb.d.ts +84 -0
  289. package/dist/src/proto/temporal/api/sdk/v1/worker_config_pb.d.ts.map +1 -0
  290. package/dist/src/proto/temporal/api/sdk/v1/worker_config_pb.js +24 -0
  291. package/dist/src/proto/temporal/api/sdk/v1/worker_config_pb.js.map +1 -0
  292. package/dist/src/proto/temporal/api/sdk/v1/workflow_metadata_pb.d.ts +99 -0
  293. package/dist/src/proto/temporal/api/sdk/v1/workflow_metadata_pb.d.ts.map +1 -0
  294. package/dist/src/proto/temporal/api/sdk/v1/workflow_metadata_pb.js +24 -0
  295. package/dist/src/proto/temporal/api/sdk/v1/workflow_metadata_pb.js.map +1 -0
  296. package/dist/src/proto/temporal/api/taskqueue/v1/message_pb.d.ts +757 -0
  297. package/dist/src/proto/temporal/api/taskqueue/v1/message_pb.d.ts.map +1 -0
  298. package/dist/src/proto/temporal/api/taskqueue/v1/message_pb.js +138 -0
  299. package/dist/src/proto/temporal/api/taskqueue/v1/message_pb.js.map +1 -0
  300. package/dist/src/proto/temporal/api/update/v1/message_pb.d.ts +230 -0
  301. package/dist/src/proto/temporal/api/update/v1/message_pb.d.ts.map +1 -0
  302. package/dist/src/proto/temporal/api/update/v1/message_pb.js +57 -0
  303. package/dist/src/proto/temporal/api/update/v1/message_pb.js.map +1 -0
  304. package/dist/src/proto/temporal/api/version/v1/message_pb.d.ts +85 -0
  305. package/dist/src/proto/temporal/api/version/v1/message_pb.d.ts.map +1 -0
  306. package/dist/src/proto/temporal/api/version/v1/message_pb.js +26 -0
  307. package/dist/src/proto/temporal/api/version/v1/message_pb.js.map +1 -0
  308. package/dist/src/proto/temporal/api/worker/v1/message_pb.d.ts +311 -0
  309. package/dist/src/proto/temporal/api/worker/v1/message_pb.d.ts.map +1 -0
  310. package/dist/src/proto/temporal/api/worker/v1/message_pb.js +42 -0
  311. package/dist/src/proto/temporal/api/worker/v1/message_pb.js.map +1 -0
  312. package/dist/src/proto/temporal/api/workflow/v1/message_pb.d.ts +1500 -0
  313. package/dist/src/proto/temporal/api/workflow/v1/message_pb.d.ts.map +1 -0
  314. package/dist/src/proto/temporal/api/workflow/v1/message_pb.js +183 -0
  315. package/dist/src/proto/temporal/api/workflow/v1/message_pb.js.map +1 -0
  316. package/dist/src/proto/temporal/api/workflowservice/v1/request_response_pb.d.ts +6967 -0
  317. package/dist/src/proto/temporal/api/workflowservice/v1/request_response_pb.d.ts.map +1 -0
  318. package/dist/src/proto/temporal/api/workflowservice/v1/request_response_pb.js +1073 -0
  319. package/dist/src/proto/temporal/api/workflowservice/v1/request_response_pb.js.map +1 -0
  320. package/dist/src/proto/temporal/api/workflowservice/v1/service_pb.d.ts +1305 -0
  321. package/dist/src/proto/temporal/api/workflowservice/v1/service_pb.d.ts.map +1 -0
  322. package/dist/src/proto/temporal/api/workflowservice/v1/service_pb.js +27 -0
  323. package/dist/src/proto/temporal/api/workflowservice/v1/service_pb.js.map +1 -0
  324. package/dist/src/runtime/cli-layer.d.ts +12 -0
  325. package/dist/src/runtime/cli-layer.d.ts.map +1 -0
  326. package/dist/src/runtime/cli-layer.js +19 -0
  327. package/dist/src/runtime/cli-layer.js.map +1 -0
  328. package/dist/src/runtime/config-layer.d.ts +9 -0
  329. package/dist/src/runtime/config-layer.d.ts.map +1 -0
  330. package/dist/src/runtime/config-layer.js +15 -0
  331. package/dist/src/runtime/config-layer.js.map +1 -0
  332. package/dist/src/runtime/effect-layers.d.ts +518 -0
  333. package/dist/src/runtime/effect-layers.d.ts.map +1 -0
  334. package/dist/src/runtime/effect-layers.js +68 -0
  335. package/dist/src/runtime/effect-layers.js.map +1 -0
  336. package/dist/src/runtime/worker-app.d.ts +14 -0
  337. package/dist/src/runtime/worker-app.d.ts.map +1 -0
  338. package/dist/src/runtime/worker-app.js +58 -0
  339. package/dist/src/runtime/worker-app.js.map +1 -0
  340. package/dist/src/telemetry/runtime.d.ts +5 -0
  341. package/dist/src/telemetry/runtime.d.ts.map +1 -0
  342. package/dist/src/telemetry/runtime.js +94 -0
  343. package/dist/src/telemetry/runtime.js.map +1 -0
  344. package/dist/src/worker/activity-context.d.ts +30 -0
  345. package/dist/src/worker/activity-context.d.ts.map +1 -0
  346. package/dist/src/worker/activity-context.js +9 -0
  347. package/dist/src/worker/activity-context.js.map +1 -0
  348. package/dist/src/worker/build-id.d.ts +20 -0
  349. package/dist/src/worker/build-id.d.ts.map +1 -0
  350. package/dist/src/worker/build-id.js +98 -0
  351. package/dist/src/worker/build-id.js.map +1 -0
  352. package/dist/src/worker/concurrency.d.ts +31 -0
  353. package/dist/src/worker/concurrency.d.ts.map +1 -0
  354. package/dist/src/worker/concurrency.js +129 -0
  355. package/dist/src/worker/concurrency.js.map +1 -0
  356. package/dist/src/worker/defaults.d.ts +9 -0
  357. package/dist/src/worker/defaults.d.ts.map +1 -0
  358. package/dist/src/worker/defaults.js +53 -0
  359. package/dist/src/worker/defaults.js.map +1 -0
  360. package/dist/src/worker/index.d.ts +7 -0
  361. package/dist/src/worker/index.d.ts.map +1 -0
  362. package/dist/src/worker/index.js +4 -0
  363. package/dist/src/worker/index.js.map +1 -0
  364. package/dist/src/worker/layer.d.ts +19 -0
  365. package/dist/src/worker/layer.d.ts.map +1 -0
  366. package/dist/src/worker/layer.js +71 -0
  367. package/dist/src/worker/layer.js.map +1 -0
  368. package/dist/src/worker/runtime.d.ts +59 -0
  369. package/dist/src/worker/runtime.d.ts.map +1 -0
  370. package/dist/src/worker/runtime.js +1415 -0
  371. package/dist/src/worker/runtime.js.map +1 -0
  372. package/dist/src/worker/service.d.ts +19 -0
  373. package/dist/src/worker/service.d.ts.map +1 -0
  374. package/dist/src/worker/service.js +14 -0
  375. package/dist/src/worker/service.js.map +1 -0
  376. package/dist/src/worker/sticky-cache.d.ts +41 -0
  377. package/dist/src/worker/sticky-cache.d.ts.map +1 -0
  378. package/dist/src/worker/sticky-cache.js +127 -0
  379. package/dist/src/worker/sticky-cache.js.map +1 -0
  380. package/dist/src/worker.d.ts +30 -0
  381. package/dist/src/worker.d.ts.map +1 -0
  382. package/dist/src/worker.js +82 -0
  383. package/dist/src/worker.js.map +1 -0
  384. package/dist/src/workflow/commands.d.ts +84 -0
  385. package/dist/src/workflow/commands.d.ts.map +1 -0
  386. package/dist/src/workflow/commands.js +159 -0
  387. package/dist/src/workflow/commands.js.map +1 -0
  388. package/dist/src/workflow/context.d.ts +119 -0
  389. package/dist/src/workflow/context.d.ts.map +1 -0
  390. package/dist/src/workflow/context.js +197 -0
  391. package/dist/src/workflow/context.js.map +1 -0
  392. package/dist/src/workflow/definition.d.ts +15 -0
  393. package/dist/src/workflow/definition.d.ts.map +1 -0
  394. package/dist/src/workflow/definition.js +19 -0
  395. package/dist/src/workflow/definition.js.map +1 -0
  396. package/dist/src/workflow/determinism.d.ts +54 -0
  397. package/dist/src/workflow/determinism.d.ts.map +1 -0
  398. package/dist/src/workflow/determinism.js +147 -0
  399. package/dist/src/workflow/determinism.js.map +1 -0
  400. package/dist/src/workflow/errors.d.ts +37 -0
  401. package/dist/src/workflow/errors.d.ts.map +1 -0
  402. package/dist/src/workflow/errors.js +35 -0
  403. package/dist/src/workflow/errors.js.map +1 -0
  404. package/dist/src/workflow/executor.d.ts +35 -0
  405. package/dist/src/workflow/executor.d.ts.map +1 -0
  406. package/dist/src/workflow/executor.js +178 -0
  407. package/dist/src/workflow/executor.js.map +1 -0
  408. package/dist/src/workflow/index.d.ts +8 -0
  409. package/dist/src/workflow/index.d.ts.map +1 -0
  410. package/dist/src/workflow/index.js +8 -0
  411. package/dist/src/workflow/index.js.map +1 -0
  412. package/dist/src/workflow/registry.d.ts +9 -0
  413. package/dist/src/workflow/registry.d.ts.map +1 -0
  414. package/dist/src/workflow/registry.js +51 -0
  415. package/dist/src/workflow/registry.js.map +1 -0
  416. package/dist/src/workflow/replay.d.ts +87 -0
  417. package/dist/src/workflow/replay.d.ts.map +1 -0
  418. package/dist/src/workflow/replay.js +759 -0
  419. package/dist/src/workflow/replay.js.map +1 -0
  420. package/dist/src/workflow/runtime/bootstrap.d.ts +15 -0
  421. package/dist/src/workflow/runtime/bootstrap.d.ts.map +1 -0
  422. package/dist/src/workflow/runtime/bootstrap.js +124 -0
  423. package/dist/src/workflow/runtime/bootstrap.js.map +1 -0
  424. package/dist/src/workflow/runtime/engine.d.ts +21 -0
  425. package/dist/src/workflow/runtime/engine.d.ts.map +1 -0
  426. package/dist/src/workflow/runtime/engine.js +73 -0
  427. package/dist/src/workflow/runtime/engine.js.map +1 -0
  428. package/dist/src/workflow/runtime/environment.d.ts +29 -0
  429. package/dist/src/workflow/runtime/environment.d.ts.map +1 -0
  430. package/dist/src/workflow/runtime/environment.js +298 -0
  431. package/dist/src/workflow/runtime/environment.js.map +1 -0
  432. package/dist/src/workflow/runtime/index.d.ts +7 -0
  433. package/dist/src/workflow/runtime/index.d.ts.map +1 -0
  434. package/dist/src/workflow/runtime/index.js +4 -0
  435. package/dist/src/workflow/runtime/index.js.map +1 -0
  436. package/dist/src/workflow/runtime/info.d.ts +5 -0
  437. package/dist/src/workflow/runtime/info.d.ts.map +1 -0
  438. package/dist/src/workflow/runtime/info.js +22 -0
  439. package/dist/src/workflow/runtime/info.js.map +1 -0
  440. package/dist/src/workflow/runtime/replay.d.ts +26 -0
  441. package/dist/src/workflow/runtime/replay.d.ts.map +1 -0
  442. package/dist/src/workflow/runtime/replay.js +254 -0
  443. package/dist/src/workflow/runtime/replay.js.map +1 -0
  444. package/dist/src/workflows/index.d.ts +3 -0
  445. package/dist/src/workflows/index.d.ts.map +1 -0
  446. package/dist/src/workflows/index.js +15 -0
  447. package/dist/src/workflows/index.js.map +1 -0
  448. package/package.json +74 -0
@@ -0,0 +1,1073 @@
1
+ // @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
2
+ // @generated from file temporal/api/workflowservice/v1/request_response.proto (package temporal.api.workflowservice.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
5
+ import { file_temporal_api_enums_v1_batch_operation } from "../../enums/v1/batch_operation_pb.js";
6
+ import { file_temporal_api_enums_v1_common } from "../../enums/v1/common_pb.js";
7
+ import { file_temporal_api_enums_v1_workflow } from "../../enums/v1/workflow_pb.js";
8
+ import { file_temporal_api_enums_v1_namespace } from "../../enums/v1/namespace_pb.js";
9
+ import { file_temporal_api_enums_v1_failed_cause } from "../../enums/v1/failed_cause_pb.js";
10
+ import { file_temporal_api_enums_v1_query } from "../../enums/v1/query_pb.js";
11
+ import { file_temporal_api_enums_v1_reset } from "../../enums/v1/reset_pb.js";
12
+ import { file_temporal_api_enums_v1_task_queue } from "../../enums/v1/task_queue_pb.js";
13
+ import { file_temporal_api_enums_v1_deployment } from "../../enums/v1/deployment_pb.js";
14
+ import { file_temporal_api_enums_v1_update } from "../../enums/v1/update_pb.js";
15
+ import { file_temporal_api_activity_v1_message } from "../../activity/v1/message_pb.js";
16
+ import { file_temporal_api_common_v1_message } from "../../common/v1/message_pb.js";
17
+ import { file_temporal_api_history_v1_message } from "../../history/v1/message_pb.js";
18
+ import { file_temporal_api_workflow_v1_message } from "../../workflow/v1/message_pb.js";
19
+ import { file_temporal_api_command_v1_message } from "../../command/v1/message_pb.js";
20
+ import { file_temporal_api_deployment_v1_message } from "../../deployment/v1/message_pb.js";
21
+ import { file_temporal_api_failure_v1_message } from "../../failure/v1/message_pb.js";
22
+ import { file_temporal_api_filter_v1_message } from "../../filter/v1/message_pb.js";
23
+ import { file_temporal_api_protocol_v1_message } from "../../protocol/v1/message_pb.js";
24
+ import { file_temporal_api_namespace_v1_message } from "../../namespace/v1/message_pb.js";
25
+ import { file_temporal_api_query_v1_message } from "../../query/v1/message_pb.js";
26
+ import { file_temporal_api_replication_v1_message } from "../../replication/v1/message_pb.js";
27
+ import { file_temporal_api_rules_v1_message } from "../../rules/v1/message_pb.js";
28
+ import { file_temporal_api_sdk_v1_worker_config } from "../../sdk/v1/worker_config_pb.js";
29
+ import { file_temporal_api_schedule_v1_message } from "../../schedule/v1/message_pb.js";
30
+ import { file_temporal_api_taskqueue_v1_message } from "../../taskqueue/v1/message_pb.js";
31
+ import { file_temporal_api_update_v1_message } from "../../update/v1/message_pb.js";
32
+ import { file_temporal_api_version_v1_message } from "../../version/v1/message_pb.js";
33
+ import { file_temporal_api_batch_v1_message } from "../../batch/v1/message_pb.js";
34
+ import { file_temporal_api_sdk_v1_task_complete_metadata } from "../../sdk/v1/task_complete_metadata_pb.js";
35
+ import { file_temporal_api_sdk_v1_user_metadata } from "../../sdk/v1/user_metadata_pb.js";
36
+ import { file_temporal_api_nexus_v1_message } from "../../nexus/v1/message_pb.js";
37
+ import { file_temporal_api_worker_v1_message } from "../../worker/v1/message_pb.js";
38
+ import { file_google_protobuf_duration, file_google_protobuf_field_mask, file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
39
+ /**
40
+ * Describes the file temporal/api/workflowservice/v1/request_response.proto.
41
+ */
42
+ export const file_temporal_api_workflowservice_v1_request_response = /*@__PURE__*/ fileDesc("CjZ0ZW1wb3JhbC9hcGkvd29ya2Zsb3dzZXJ2aWNlL3YxL3JlcXVlc3RfcmVzcG9uc2UucHJvdG8SH3RlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEiiAUKGFJlZ2lzdGVyTmFtZXNwYWNlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSEwoLZGVzY3JpcHRpb24YAiABKAkSEwoLb3duZXJfZW1haWwYAyABKAkSRgojd29ya2Zsb3dfZXhlY3V0aW9uX3JldGVudGlvbl9wZXJpb2QYBCABKAsyGS5nb29nbGUucHJvdG9idWYuRHVyYXRpb24SRwoIY2x1c3RlcnMYBSADKAsyNS50ZW1wb3JhbC5hcGkucmVwbGljYXRpb24udjEuQ2x1c3RlclJlcGxpY2F0aW9uQ29uZmlnEhsKE2FjdGl2ZV9jbHVzdGVyX25hbWUYBiABKAkSUQoEZGF0YRgHIAMoCzJDLnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuUmVnaXN0ZXJOYW1lc3BhY2VSZXF1ZXN0LkRhdGFFbnRyeRIWCg5zZWN1cml0eV90b2tlbhgIIAEoCRIbChNpc19nbG9iYWxfbmFtZXNwYWNlGAkgASgIEkQKFmhpc3RvcnlfYXJjaGl2YWxfc3RhdGUYCiABKA4yJC50ZW1wb3JhbC5hcGkuZW51bXMudjEuQXJjaGl2YWxTdGF0ZRIcChRoaXN0b3J5X2FyY2hpdmFsX3VyaRgLIAEoCRJHChl2aXNpYmlsaXR5X2FyY2hpdmFsX3N0YXRlGAwgASgOMiQudGVtcG9yYWwuYXBpLmVudW1zLnYxLkFyY2hpdmFsU3RhdGUSHwoXdmlzaWJpbGl0eV9hcmNoaXZhbF91cmkYDSABKAkaKwoJRGF0YUVudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAEiGwoZUmVnaXN0ZXJOYW1lc3BhY2VSZXNwb25zZSKJAQoVTGlzdE5hbWVzcGFjZXNSZXF1ZXN0EhEKCXBhZ2Vfc2l6ZRgBIAEoBRIXCg9uZXh0X3BhZ2VfdG9rZW4YAiABKAwSRAoQbmFtZXNwYWNlX2ZpbHRlchgDIAEoCzIqLnRlbXBvcmFsLmFwaS5uYW1lc3BhY2UudjEuTmFtZXNwYWNlRmlsdGVyIoEBChZMaXN0TmFtZXNwYWNlc1Jlc3BvbnNlEk4KCm5hbWVzcGFjZXMYASADKAsyOi50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLkRlc2NyaWJlTmFtZXNwYWNlUmVzcG9uc2USFwoPbmV4dF9wYWdlX3Rva2VuGAIgASgMIjkKGERlc2NyaWJlTmFtZXNwYWNlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSCgoCaWQYAiABKAki7AIKGURlc2NyaWJlTmFtZXNwYWNlUmVzcG9uc2USQAoObmFtZXNwYWNlX2luZm8YASABKAsyKC50ZW1wb3JhbC5hcGkubmFtZXNwYWNlLnYxLk5hbWVzcGFjZUluZm8SOgoGY29uZmlnGAIgASgLMioudGVtcG9yYWwuYXBpLm5hbWVzcGFjZS52MS5OYW1lc3BhY2VDb25maWcSUwoScmVwbGljYXRpb25fY29uZmlnGAMgASgLMjcudGVtcG9yYWwuYXBpLnJlcGxpY2F0aW9uLnYxLk5hbWVzcGFjZVJlcGxpY2F0aW9uQ29uZmlnEhgKEGZhaWxvdmVyX3ZlcnNpb24YBCABKAMSGwoTaXNfZ2xvYmFsX25hbWVzcGFjZRgFIAEoCBJFChBmYWlsb3Zlcl9oaXN0b3J5GAYgAygLMisudGVtcG9yYWwuYXBpLnJlcGxpY2F0aW9uLnYxLkZhaWxvdmVyU3RhdHVzIs8CChZVcGRhdGVOYW1lc3BhY2VSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRJDCgt1cGRhdGVfaW5mbxgCIAEoCzIuLnRlbXBvcmFsLmFwaS5uYW1lc3BhY2UudjEuVXBkYXRlTmFtZXNwYWNlSW5mbxI6CgZjb25maWcYAyABKAsyKi50ZW1wb3JhbC5hcGkubmFtZXNwYWNlLnYxLk5hbWVzcGFjZUNvbmZpZxJTChJyZXBsaWNhdGlvbl9jb25maWcYBCABKAsyNy50ZW1wb3JhbC5hcGkucmVwbGljYXRpb24udjEuTmFtZXNwYWNlUmVwbGljYXRpb25Db25maWcSFgoOc2VjdXJpdHlfdG9rZW4YBSABKAkSGQoRZGVsZXRlX2JhZF9iaW5hcnkYBiABKAkSGQoRcHJvbW90ZV9uYW1lc3BhY2UYByABKAgiowIKF1VwZGF0ZU5hbWVzcGFjZVJlc3BvbnNlEkAKDm5hbWVzcGFjZV9pbmZvGAEgASgLMigudGVtcG9yYWwuYXBpLm5hbWVzcGFjZS52MS5OYW1lc3BhY2VJbmZvEjoKBmNvbmZpZxgCIAEoCzIqLnRlbXBvcmFsLmFwaS5uYW1lc3BhY2UudjEuTmFtZXNwYWNlQ29uZmlnElMKEnJlcGxpY2F0aW9uX2NvbmZpZxgDIAEoCzI3LnRlbXBvcmFsLmFwaS5yZXBsaWNhdGlvbi52MS5OYW1lc3BhY2VSZXBsaWNhdGlvbkNvbmZpZxIYChBmYWlsb3Zlcl92ZXJzaW9uGAQgASgDEhsKE2lzX2dsb2JhbF9uYW1lc3BhY2UYBSABKAgiRgoZRGVwcmVjYXRlTmFtZXNwYWNlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSFgoOc2VjdXJpdHlfdG9rZW4YAiABKAkiHAoaRGVwcmVjYXRlTmFtZXNwYWNlUmVzcG9uc2UihwwKHVN0YXJ0V29ya2Zsb3dFeGVjdXRpb25SZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRITCgt3b3JrZmxvd19pZBgCIAEoCRI7Cg13b3JrZmxvd190eXBlGAMgASgLMiQudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd1R5cGUSOAoKdGFza19xdWV1ZRgEIAEoCzIkLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGFza1F1ZXVlEi8KBWlucHV0GAUgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcxI9Chp3b3JrZmxvd19leGVjdXRpb25fdGltZW91dBgGIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdGlvbhI3ChR3b3JrZmxvd19ydW5fdGltZW91dBgHIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdGlvbhI4ChV3b3JrZmxvd190YXNrX3RpbWVvdXQYCCABKAsyGS5nb29nbGUucHJvdG9idWYuRHVyYXRpb24SEAoIaWRlbnRpdHkYCSABKAkSEgoKcmVxdWVzdF9pZBgKIAEoCRJOChh3b3JrZmxvd19pZF9yZXVzZV9wb2xpY3kYCyABKA4yLC50ZW1wb3JhbC5hcGkuZW51bXMudjEuV29ya2Zsb3dJZFJldXNlUG9saWN5ElQKG3dvcmtmbG93X2lkX2NvbmZsaWN0X3BvbGljeRgWIAEoDjIvLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5Xb3JrZmxvd0lkQ29uZmxpY3RQb2xpY3kSOQoMcmV0cnlfcG9saWN5GAwgASgLMiMudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5SZXRyeVBvbGljeRIVCg1jcm9uX3NjaGVkdWxlGA0gASgJEioKBG1lbW8YDiABKAsyHC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLk1lbW8SQwoRc2VhcmNoX2F0dHJpYnV0ZXMYDyABKAsyKC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlNlYXJjaEF0dHJpYnV0ZXMSLgoGaGVhZGVyGBAgASgLMh4udGVtcG9yYWwuYXBpLmNvbW1vbi52MS5IZWFkZXISHwoXcmVxdWVzdF9lYWdlcl9leGVjdXRpb24YESABKAgSOwoRY29udGludWVkX2ZhaWx1cmUYEiABKAsyIC50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5GYWlsdXJlEkAKFmxhc3RfY29tcGxldGlvbl9yZXN1bHQYEyABKAsyIC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlBheWxvYWRzEjcKFHdvcmtmbG93X3N0YXJ0X2RlbGF5GBQgASgLMhkuZ29vZ2xlLnByb3RvYnVmLkR1cmF0aW9uEj4KFGNvbXBsZXRpb25fY2FsbGJhY2tzGBUgAygLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5DYWxsYmFjaxI4Cg11c2VyX21ldGFkYXRhGBcgASgLMiEudGVtcG9yYWwuYXBpLnNkay52MS5Vc2VyTWV0YWRhdGESKwoFbGlua3MYGCADKAsyHC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLkxpbmsSSQoTdmVyc2lvbmluZ19vdmVycmlkZRgZIAEoCzIsLnRlbXBvcmFsLmFwaS53b3JrZmxvdy52MS5WZXJzaW9uaW5nT3ZlcnJpZGUSSAoTb25fY29uZmxpY3Rfb3B0aW9ucxgaIAEoCzIrLnRlbXBvcmFsLmFwaS53b3JrZmxvdy52MS5PbkNvbmZsaWN0T3B0aW9ucxIyCghwcmlvcml0eRgbIAEoCzIgLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUHJpb3JpdHkSXAofZWFnZXJfd29ya2VyX2RlcGxveW1lbnRfb3B0aW9ucxgcIAEoCzIzLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRPcHRpb25zIooCCh5TdGFydFdvcmtmbG93RXhlY3V0aW9uUmVzcG9uc2USDgoGcnVuX2lkGAEgASgJEg8KB3N0YXJ0ZWQYAyABKAgSPgoGc3RhdHVzGAUgASgOMi4udGVtcG9yYWwuYXBpLmVudW1zLnYxLldvcmtmbG93RXhlY3V0aW9uU3RhdHVzElsKE2VhZ2VyX3dvcmtmbG93X3Rhc2sYAiABKAsyPi50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLlBvbGxXb3JrZmxvd1Rhc2tRdWV1ZVJlc3BvbnNlEioKBGxpbmsYBCABKAsyHC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLkxpbmsiqgIKIkdldFdvcmtmbG93RXhlY3V0aW9uSGlzdG9yeVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEjwKCWV4ZWN1dGlvbhgCIAEoCzIpLnRlbXBvcmFsLmFwaS5jb21tb24udjEuV29ya2Zsb3dFeGVjdXRpb24SGQoRbWF4aW11bV9wYWdlX3NpemUYAyABKAUSFwoPbmV4dF9wYWdlX3Rva2VuGAQgASgMEhYKDndhaXRfbmV3X2V2ZW50GAUgASgIElAKGWhpc3RvcnlfZXZlbnRfZmlsdGVyX3R5cGUYBiABKA4yLS50ZW1wb3JhbC5hcGkuZW51bXMudjEuSGlzdG9yeUV2ZW50RmlsdGVyVHlwZRIVCg1za2lwX2FyY2hpdmFsGAcgASgIIroBCiNHZXRXb3JrZmxvd0V4ZWN1dGlvbkhpc3RvcnlSZXNwb25zZRIxCgdoaXN0b3J5GAEgASgLMiAudGVtcG9yYWwuYXBpLmhpc3RvcnkudjEuSGlzdG9yeRI1CgtyYXdfaGlzdG9yeRgCIAMoCzIgLnRlbXBvcmFsLmFwaS5jb21tb24udjEuRGF0YUJsb2ISFwoPbmV4dF9wYWdlX3Rva2VuGAMgASgMEhAKCGFyY2hpdmVkGAQgASgIIrABCilHZXRXb3JrZmxvd0V4ZWN1dGlvbkhpc3RvcnlSZXZlcnNlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSPAoJZXhlY3V0aW9uGAIgASgLMikudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbhIZChFtYXhpbXVtX3BhZ2Vfc2l6ZRgDIAEoBRIXCg9uZXh0X3BhZ2VfdG9rZW4YBCABKAwieAoqR2V0V29ya2Zsb3dFeGVjdXRpb25IaXN0b3J5UmV2ZXJzZVJlc3BvbnNlEjEKB2hpc3RvcnkYASABKAsyIC50ZW1wb3JhbC5hcGkuaGlzdG9yeS52MS5IaXN0b3J5EhcKD25leHRfcGFnZV90b2tlbhgDIAEoDCLHAgocUG9sbFdvcmtmbG93VGFza1F1ZXVlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSOAoKdGFza19xdWV1ZRgCIAEoCzIkLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGFza1F1ZXVlEhAKCGlkZW50aXR5GAMgASgJEhsKD2JpbmFyeV9jaGVja3N1bRgEIAEoCUICGAESWgobd29ya2VyX3ZlcnNpb25fY2FwYWJpbGl0aWVzGAUgASgLMjEudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZXJWZXJzaW9uQ2FwYWJpbGl0aWVzQgIYARJPChJkZXBsb3ltZW50X29wdGlvbnMYBiABKAsyMy50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5Xb3JrZXJEZXBsb3ltZW50T3B0aW9ucyKRBwodUG9sbFdvcmtmbG93VGFza1F1ZXVlUmVzcG9uc2USEgoKdGFza190b2tlbhgBIAEoDBJFChJ3b3JrZmxvd19leGVjdXRpb24YAiABKAsyKS50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtmbG93RXhlY3V0aW9uEjsKDXdvcmtmbG93X3R5cGUYAyABKAsyJC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtmbG93VHlwZRIhChlwcmV2aW91c19zdGFydGVkX2V2ZW50X2lkGAQgASgDEhgKEHN0YXJ0ZWRfZXZlbnRfaWQYBSABKAMSDwoHYXR0ZW1wdBgGIAEoBRIaChJiYWNrbG9nX2NvdW50X2hpbnQYByABKAMSMQoHaGlzdG9yeRgIIAEoCzIgLnRlbXBvcmFsLmFwaS5oaXN0b3J5LnYxLkhpc3RvcnkSFwoPbmV4dF9wYWdlX3Rva2VuGAkgASgMEjMKBXF1ZXJ5GAogASgLMiQudGVtcG9yYWwuYXBpLnF1ZXJ5LnYxLldvcmtmbG93UXVlcnkSSwodd29ya2Zsb3dfZXhlY3V0aW9uX3Rhc2tfcXVldWUYCyABKAsyJC50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlRhc2tRdWV1ZRIyCg5zY2hlZHVsZWRfdGltZRgMIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASMAoMc3RhcnRlZF90aW1lGA0gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBJcCgdxdWVyaWVzGA4gAygLMksudGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5Qb2xsV29ya2Zsb3dUYXNrUXVldWVSZXNwb25zZS5RdWVyaWVzRW50cnkSMwoIbWVzc2FnZXMYDyADKAsyIS50ZW1wb3JhbC5hcGkucHJvdG9jb2wudjEuTWVzc2FnZRJRChdwb2xsZXJfc2NhbGluZ19kZWNpc2lvbhgQIAEoCzIwLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuUG9sbGVyU2NhbGluZ0RlY2lzaW9uGlQKDFF1ZXJpZXNFbnRyeRILCgNrZXkYASABKAkSMwoFdmFsdWUYAiABKAsyJC50ZW1wb3JhbC5hcGkucXVlcnkudjEuV29ya2Zsb3dRdWVyeToCOAEitQkKI1Jlc3BvbmRXb3JrZmxvd1Rhc2tDb21wbGV0ZWRSZXF1ZXN0EhIKCnRhc2tfdG9rZW4YASABKAwSMgoIY29tbWFuZHMYAiADKAsyIC50ZW1wb3JhbC5hcGkuY29tbWFuZC52MS5Db21tYW5kEhAKCGlkZW50aXR5GAMgASgJEk8KEXN0aWNreV9hdHRyaWJ1dGVzGAQgASgLMjQudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5TdGlja3lFeGVjdXRpb25BdHRyaWJ1dGVzEiAKGHJldHVybl9uZXdfd29ya2Zsb3dfdGFzaxgFIAEoCBImCh5mb3JjZV9jcmVhdGVfbmV3X3dvcmtmbG93X3Rhc2sYBiABKAgSGwoPYmluYXJ5X2NoZWNrc3VtGAcgASgJQgIYARJtCg1xdWVyeV9yZXN1bHRzGAggAygLMlYudGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5SZXNwb25kV29ya2Zsb3dUYXNrQ29tcGxldGVkUmVxdWVzdC5RdWVyeVJlc3VsdHNFbnRyeRIRCgluYW1lc3BhY2UYCSABKAkSTAoUd29ya2VyX3ZlcnNpb25fc3RhbXAYCiABKAsyKi50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtlclZlcnNpb25TdGFtcEICGAESMwoIbWVzc2FnZXMYCyADKAsyIS50ZW1wb3JhbC5hcGkucHJvdG9jb2wudjEuTWVzc2FnZRJICgxzZGtfbWV0YWRhdGEYDCABKAsyMi50ZW1wb3JhbC5hcGkuc2RrLnYxLldvcmtmbG93VGFza0NvbXBsZXRlZE1ldGFkYXRhEkMKEW1ldGVyaW5nX21ldGFkYXRhGA0gASgLMigudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5NZXRlcmluZ01ldGFkYXRhEmcKDGNhcGFiaWxpdGllcxgOIAEoCzJRLnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuUmVzcG9uZFdvcmtmbG93VGFza0NvbXBsZXRlZFJlcXVlc3QuQ2FwYWJpbGl0aWVzEj4KCmRlcGxveW1lbnQYDyABKAsyJi50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5EZXBsb3ltZW50QgIYARJGChN2ZXJzaW9uaW5nX2JlaGF2aW9yGBAgASgOMikudGVtcG9yYWwuYXBpLmVudW1zLnYxLlZlcnNpb25pbmdCZWhhdmlvchJPChJkZXBsb3ltZW50X29wdGlvbnMYESABKAsyMy50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5Xb3JrZXJEZXBsb3ltZW50T3B0aW9ucxpfChFRdWVyeVJlc3VsdHNFbnRyeRILCgNrZXkYASABKAkSOQoFdmFsdWUYAiABKAsyKi50ZW1wb3JhbC5hcGkucXVlcnkudjEuV29ya2Zsb3dRdWVyeVJlc3VsdDoCOAEaRQoMQ2FwYWJpbGl0aWVzEjUKLWRpc2NhcmRfc3BlY3VsYXRpdmVfd29ya2Zsb3dfdGFza193aXRoX2V2ZW50cxgBIAEoCCL1AQokUmVzcG9uZFdvcmtmbG93VGFza0NvbXBsZXRlZFJlc3BvbnNlElUKDXdvcmtmbG93X3Rhc2sYASABKAsyPi50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLlBvbGxXb3JrZmxvd1Rhc2tRdWV1ZVJlc3BvbnNlElYKDmFjdGl2aXR5X3Rhc2tzGAIgAygLMj4udGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5Qb2xsQWN0aXZpdHlUYXNrUXVldWVSZXNwb25zZRIeChZyZXNldF9oaXN0b3J5X2V2ZW50X2lkGAMgASgDIvgDCiBSZXNwb25kV29ya2Zsb3dUYXNrRmFpbGVkUmVxdWVzdBISCgp0YXNrX3Rva2VuGAEgASgMEj0KBWNhdXNlGAIgASgOMi4udGVtcG9yYWwuYXBpLmVudW1zLnYxLldvcmtmbG93VGFza0ZhaWxlZENhdXNlEjEKB2ZhaWx1cmUYAyABKAsyIC50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5GYWlsdXJlEhAKCGlkZW50aXR5GAQgASgJEhsKD2JpbmFyeV9jaGVja3N1bRgFIAEoCUICGAESEQoJbmFtZXNwYWNlGAYgASgJEjMKCG1lc3NhZ2VzGAcgAygLMiEudGVtcG9yYWwuYXBpLnByb3RvY29sLnYxLk1lc3NhZ2USRgoOd29ya2VyX3ZlcnNpb24YCCABKAsyKi50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtlclZlcnNpb25TdGFtcEICGAESPgoKZGVwbG95bWVudBgJIAEoCzImLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLkRlcGxveW1lbnRCAhgBEk8KEmRlcGxveW1lbnRfb3B0aW9ucxgKIAEoCzIzLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRPcHRpb25zIiMKIVJlc3BvbmRXb3JrZmxvd1Rhc2tGYWlsZWRSZXNwb25zZSL1AgocUG9sbEFjdGl2aXR5VGFza1F1ZXVlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSOAoKdGFza19xdWV1ZRgCIAEoCzIkLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGFza1F1ZXVlEhAKCGlkZW50aXR5GAMgASgJEkkKE3Rhc2tfcXVldWVfbWV0YWRhdGEYBCABKAsyLC50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlRhc2tRdWV1ZU1ldGFkYXRhEloKG3dvcmtlcl92ZXJzaW9uX2NhcGFiaWxpdGllcxgFIAEoCzIxLnRlbXBvcmFsLmFwaS5jb21tb24udjEuV29ya2VyVmVyc2lvbkNhcGFiaWxpdGllc0ICGAESTwoSZGVwbG95bWVudF9vcHRpb25zGAYgASgLMjMudGVtcG9yYWwuYXBpLmRlcGxveW1lbnQudjEuV29ya2VyRGVwbG95bWVudE9wdGlvbnMi7wcKHVBvbGxBY3Rpdml0eVRhc2tRdWV1ZVJlc3BvbnNlEhIKCnRhc2tfdG9rZW4YASABKAwSGgoSd29ya2Zsb3dfbmFtZXNwYWNlGAIgASgJEjsKDXdvcmtmbG93X3R5cGUYAyABKAsyJC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtmbG93VHlwZRJFChJ3b3JrZmxvd19leGVjdXRpb24YBCABKAsyKS50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtmbG93RXhlY3V0aW9uEjsKDWFjdGl2aXR5X3R5cGUYBSABKAsyJC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLkFjdGl2aXR5VHlwZRITCgthY3Rpdml0eV9pZBgGIAEoCRIuCgZoZWFkZXIYByABKAsyHi50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLkhlYWRlchIvCgVpbnB1dBgIIAEoCzIgLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUGF5bG9hZHMSOwoRaGVhcnRiZWF0X2RldGFpbHMYCSABKAsyIC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlBheWxvYWRzEjIKDnNjaGVkdWxlZF90aW1lGAogASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBJCCh5jdXJyZW50X2F0dGVtcHRfc2NoZWR1bGVkX3RpbWUYCyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjAKDHN0YXJ0ZWRfdGltZRgMIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASDwoHYXR0ZW1wdBgNIAEoBRI8ChlzY2hlZHVsZV90b19jbG9zZV90aW1lb3V0GA4gASgLMhkuZ29vZ2xlLnByb3RvYnVmLkR1cmF0aW9uEjkKFnN0YXJ0X3RvX2Nsb3NlX3RpbWVvdXQYDyABKAsyGS5nb29nbGUucHJvdG9idWYuRHVyYXRpb24SNAoRaGVhcnRiZWF0X3RpbWVvdXQYECABKAsyGS5nb29nbGUucHJvdG9idWYuRHVyYXRpb24SOQoMcmV0cnlfcG9saWN5GBEgASgLMiMudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5SZXRyeVBvbGljeRJRChdwb2xsZXJfc2NhbGluZ19kZWNpc2lvbhgSIAEoCzIwLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuUG9sbGVyU2NhbGluZ0RlY2lzaW9uEjIKCHByaW9yaXR5GBMgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Qcmlvcml0eSKQAQoiUmVjb3JkQWN0aXZpdHlUYXNrSGVhcnRiZWF0UmVxdWVzdBISCgp0YXNrX3Rva2VuGAEgASgMEjEKB2RldGFpbHMYAiABKAsyIC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlBheWxvYWRzEhAKCGlkZW50aXR5GAMgASgJEhEKCW5hbWVzcGFjZRgEIAEoCSJwCiNSZWNvcmRBY3Rpdml0eVRhc2tIZWFydGJlYXRSZXNwb25zZRIYChBjYW5jZWxfcmVxdWVzdGVkGAEgASgIEhcKD2FjdGl2aXR5X3BhdXNlZBgCIAEoCBIWCg5hY3Rpdml0eV9yZXNldBgDIAEoCCK6AQomUmVjb3JkQWN0aXZpdHlUYXNrSGVhcnRiZWF0QnlJZFJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhMKC3dvcmtmbG93X2lkGAIgASgJEg4KBnJ1bl9pZBgDIAEoCRITCgthY3Rpdml0eV9pZBgEIAEoCRIxCgdkZXRhaWxzGAUgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcxIQCghpZGVudGl0eRgGIAEoCSJ0CidSZWNvcmRBY3Rpdml0eVRhc2tIZWFydGJlYXRCeUlkUmVzcG9uc2USGAoQY2FuY2VsX3JlcXVlc3RlZBgBIAEoCBIXCg9hY3Rpdml0eV9wYXVzZWQYAiABKAgSFgoOYWN0aXZpdHlfcmVzZXQYAyABKAgi6QIKI1Jlc3BvbmRBY3Rpdml0eVRhc2tDb21wbGV0ZWRSZXF1ZXN0EhIKCnRhc2tfdG9rZW4YASABKAwSMAoGcmVzdWx0GAIgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcxIQCghpZGVudGl0eRgDIAEoCRIRCgluYW1lc3BhY2UYBCABKAkSRgoOd29ya2VyX3ZlcnNpb24YBSABKAsyKi50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtlclZlcnNpb25TdGFtcEICGAESPgoKZGVwbG95bWVudBgGIAEoCzImLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLkRlcGxveW1lbnRCAhgBEk8KEmRlcGxveW1lbnRfb3B0aW9ucxgHIAEoCzIzLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRPcHRpb25zIiYKJFJlc3BvbmRBY3Rpdml0eVRhc2tDb21wbGV0ZWRSZXNwb25zZSK6AQonUmVzcG9uZEFjdGl2aXR5VGFza0NvbXBsZXRlZEJ5SWRSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRITCgt3b3JrZmxvd19pZBgCIAEoCRIOCgZydW5faWQYAyABKAkSEwoLYWN0aXZpdHlfaWQYBCABKAkSMAoGcmVzdWx0GAUgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcxIQCghpZGVudGl0eRgGIAEoCSIqCihSZXNwb25kQWN0aXZpdHlUYXNrQ29tcGxldGVkQnlJZFJlc3BvbnNlIqkDCiBSZXNwb25kQWN0aXZpdHlUYXNrRmFpbGVkUmVxdWVzdBISCgp0YXNrX3Rva2VuGAEgASgMEjEKB2ZhaWx1cmUYAiABKAsyIC50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5GYWlsdXJlEhAKCGlkZW50aXR5GAMgASgJEhEKCW5hbWVzcGFjZRgEIAEoCRJAChZsYXN0X2hlYXJ0YmVhdF9kZXRhaWxzGAUgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcxJGCg53b3JrZXJfdmVyc2lvbhgGIAEoCzIqLnRlbXBvcmFsLmFwaS5jb21tb24udjEuV29ya2VyVmVyc2lvblN0YW1wQgIYARI+CgpkZXBsb3ltZW50GAcgASgLMiYudGVtcG9yYWwuYXBpLmRlcGxveW1lbnQudjEuRGVwbG95bWVudEICGAESTwoSZGVwbG95bWVudF9vcHRpb25zGAggASgLMjMudGVtcG9yYWwuYXBpLmRlcGxveW1lbnQudjEuV29ya2VyRGVwbG95bWVudE9wdGlvbnMiVwohUmVzcG9uZEFjdGl2aXR5VGFza0ZhaWxlZFJlc3BvbnNlEjIKCGZhaWx1cmVzGAEgAygLMiAudGVtcG9yYWwuYXBpLmZhaWx1cmUudjEuRmFpbHVyZSL6AQokUmVzcG9uZEFjdGl2aXR5VGFza0ZhaWxlZEJ5SWRSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRITCgt3b3JrZmxvd19pZBgCIAEoCRIOCgZydW5faWQYAyABKAkSEwoLYWN0aXZpdHlfaWQYBCABKAkSMQoHZmFpbHVyZRgFIAEoCzIgLnRlbXBvcmFsLmFwaS5mYWlsdXJlLnYxLkZhaWx1cmUSEAoIaWRlbnRpdHkYBiABKAkSQAoWbGFzdF9oZWFydGJlYXRfZGV0YWlscxgHIAEoCzIgLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUGF5bG9hZHMiWwolUmVzcG9uZEFjdGl2aXR5VGFza0ZhaWxlZEJ5SWRSZXNwb25zZRIyCghmYWlsdXJlcxgBIAMoCzIgLnRlbXBvcmFsLmFwaS5mYWlsdXJlLnYxLkZhaWx1cmUi6QIKIlJlc3BvbmRBY3Rpdml0eVRhc2tDYW5jZWxlZFJlcXVlc3QSEgoKdGFza190b2tlbhgBIAEoDBIxCgdkZXRhaWxzGAIgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcxIQCghpZGVudGl0eRgDIAEoCRIRCgluYW1lc3BhY2UYBCABKAkSRgoOd29ya2VyX3ZlcnNpb24YBSABKAsyKi50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtlclZlcnNpb25TdGFtcEICGAESPgoKZGVwbG95bWVudBgGIAEoCzImLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLkRlcGxveW1lbnRCAhgBEk8KEmRlcGxveW1lbnRfb3B0aW9ucxgHIAEoCzIzLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRPcHRpb25zIiUKI1Jlc3BvbmRBY3Rpdml0eVRhc2tDYW5jZWxlZFJlc3BvbnNlIosCCiZSZXNwb25kQWN0aXZpdHlUYXNrQ2FuY2VsZWRCeUlkUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSEwoLd29ya2Zsb3dfaWQYAiABKAkSDgoGcnVuX2lkGAMgASgJEhMKC2FjdGl2aXR5X2lkGAQgASgJEjEKB2RldGFpbHMYBSABKAsyIC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlBheWxvYWRzEhAKCGlkZW50aXR5GAYgASgJEk8KEmRlcGxveW1lbnRfb3B0aW9ucxgHIAEoCzIzLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRPcHRpb25zIikKJ1Jlc3BvbmRBY3Rpdml0eVRhc2tDYW5jZWxlZEJ5SWRSZXNwb25zZSKEAgolUmVxdWVzdENhbmNlbFdvcmtmbG93RXhlY3V0aW9uUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSRQoSd29ya2Zsb3dfZXhlY3V0aW9uGAIgASgLMikudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbhIQCghpZGVudGl0eRgDIAEoCRISCgpyZXF1ZXN0X2lkGAQgASgJEh4KFmZpcnN0X2V4ZWN1dGlvbl9ydW5faWQYBSABKAkSDgoGcmVhc29uGAYgASgJEisKBWxpbmtzGAcgAygLMhwudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5MaW5rIigKJlJlcXVlc3RDYW5jZWxXb3JrZmxvd0V4ZWN1dGlvblJlc3BvbnNlIt4CCh5TaWduYWxXb3JrZmxvd0V4ZWN1dGlvblJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEkUKEndvcmtmbG93X2V4ZWN1dGlvbhgCIAEoCzIpLnRlbXBvcmFsLmFwaS5jb21tb24udjEuV29ya2Zsb3dFeGVjdXRpb24SEwoLc2lnbmFsX25hbWUYAyABKAkSLwoFaW5wdXQYBCABKAsyIC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlBheWxvYWRzEhAKCGlkZW50aXR5GAUgASgJEhIKCnJlcXVlc3RfaWQYBiABKAkSEwoHY29udHJvbBgHIAEoCUICGAESLgoGaGVhZGVyGAggASgLMh4udGVtcG9yYWwuYXBpLmNvbW1vbi52MS5IZWFkZXISKwoFbGlua3MYCiADKAsyHC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLkxpbmtKBAgJEAoiIQofU2lnbmFsV29ya2Zsb3dFeGVjdXRpb25SZXNwb25zZSLxCQonU2lnbmFsV2l0aFN0YXJ0V29ya2Zsb3dFeGVjdXRpb25SZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRITCgt3b3JrZmxvd19pZBgCIAEoCRI7Cg13b3JrZmxvd190eXBlGAMgASgLMiQudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd1R5cGUSOAoKdGFza19xdWV1ZRgEIAEoCzIkLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGFza1F1ZXVlEi8KBWlucHV0GAUgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcxI9Chp3b3JrZmxvd19leGVjdXRpb25fdGltZW91dBgGIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdGlvbhI3ChR3b3JrZmxvd19ydW5fdGltZW91dBgHIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdGlvbhI4ChV3b3JrZmxvd190YXNrX3RpbWVvdXQYCCABKAsyGS5nb29nbGUucHJvdG9idWYuRHVyYXRpb24SEAoIaWRlbnRpdHkYCSABKAkSEgoKcmVxdWVzdF9pZBgKIAEoCRJOChh3b3JrZmxvd19pZF9yZXVzZV9wb2xpY3kYCyABKA4yLC50ZW1wb3JhbC5hcGkuZW51bXMudjEuV29ya2Zsb3dJZFJldXNlUG9saWN5ElQKG3dvcmtmbG93X2lkX2NvbmZsaWN0X3BvbGljeRgWIAEoDjIvLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5Xb3JrZmxvd0lkQ29uZmxpY3RQb2xpY3kSEwoLc2lnbmFsX25hbWUYDCABKAkSNgoMc2lnbmFsX2lucHV0GA0gASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcxITCgdjb250cm9sGA4gASgJQgIYARI5CgxyZXRyeV9wb2xpY3kYDyABKAsyIy50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlJldHJ5UG9saWN5EhUKDWNyb25fc2NoZWR1bGUYECABKAkSKgoEbWVtbxgRIAEoCzIcLnRlbXBvcmFsLmFwaS5jb21tb24udjEuTWVtbxJDChFzZWFyY2hfYXR0cmlidXRlcxgSIAEoCzIoLnRlbXBvcmFsLmFwaS5jb21tb24udjEuU2VhcmNoQXR0cmlidXRlcxIuCgZoZWFkZXIYEyABKAsyHi50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLkhlYWRlchI3ChR3b3JrZmxvd19zdGFydF9kZWxheRgUIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdGlvbhI4Cg11c2VyX21ldGFkYXRhGBcgASgLMiEudGVtcG9yYWwuYXBpLnNkay52MS5Vc2VyTWV0YWRhdGESKwoFbGlua3MYGCADKAsyHC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLkxpbmsSSQoTdmVyc2lvbmluZ19vdmVycmlkZRgZIAEoCzIsLnRlbXBvcmFsLmFwaS53b3JrZmxvdy52MS5WZXJzaW9uaW5nT3ZlcnJpZGUSMgoIcHJpb3JpdHkYGiABKAsyIC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlByaW9yaXR5SgQIFRAWIksKKFNpZ25hbFdpdGhTdGFydFdvcmtmbG93RXhlY3V0aW9uUmVzcG9uc2USDgoGcnVuX2lkGAEgASgJEg8KB3N0YXJ0ZWQYAiABKAgiwQMKHVJlc2V0V29ya2Zsb3dFeGVjdXRpb25SZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRJFChJ3b3JrZmxvd19leGVjdXRpb24YAiABKAsyKS50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtmbG93RXhlY3V0aW9uEg4KBnJlYXNvbhgDIAEoCRIlCh13b3JrZmxvd190YXNrX2ZpbmlzaF9ldmVudF9pZBgEIAEoAxISCgpyZXF1ZXN0X2lkGAUgASgJEkcKEnJlc2V0X3JlYXBwbHlfdHlwZRgGIAEoDjInLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5SZXNldFJlYXBwbHlUeXBlQgIYARJTChtyZXNldF9yZWFwcGx5X2V4Y2x1ZGVfdHlwZXMYByADKA4yLi50ZW1wb3JhbC5hcGkuZW51bXMudjEuUmVzZXRSZWFwcGx5RXhjbHVkZVR5cGUSSwoVcG9zdF9yZXNldF9vcGVyYXRpb25zGAggAygLMiwudGVtcG9yYWwuYXBpLndvcmtmbG93LnYxLlBvc3RSZXNldE9wZXJhdGlvbhIQCghpZGVudGl0eRgJIAEoCSIwCh5SZXNldFdvcmtmbG93RXhlY3V0aW9uUmVzcG9uc2USDgoGcnVuX2lkGAEgASgJIp8CCiFUZXJtaW5hdGVXb3JrZmxvd0V4ZWN1dGlvblJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEkUKEndvcmtmbG93X2V4ZWN1dGlvbhgCIAEoCzIpLnRlbXBvcmFsLmFwaS5jb21tb24udjEuV29ya2Zsb3dFeGVjdXRpb24SDgoGcmVhc29uGAMgASgJEjEKB2RldGFpbHMYBCABKAsyIC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlBheWxvYWRzEhAKCGlkZW50aXR5GAUgASgJEh4KFmZpcnN0X2V4ZWN1dGlvbl9ydW5faWQYBiABKAkSKwoFbGlua3MYByADKAsyHC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLkxpbmsiJAoiVGVybWluYXRlV29ya2Zsb3dFeGVjdXRpb25SZXNwb25zZSJ6Ch5EZWxldGVXb3JrZmxvd0V4ZWN1dGlvblJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEkUKEndvcmtmbG93X2V4ZWN1dGlvbhgCIAEoCzIpLnRlbXBvcmFsLmFwaS5jb21tb24udjEuV29ya2Zsb3dFeGVjdXRpb24iIQofRGVsZXRlV29ya2Zsb3dFeGVjdXRpb25SZXNwb25zZSLJAgohTGlzdE9wZW5Xb3JrZmxvd0V4ZWN1dGlvbnNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIZChFtYXhpbXVtX3BhZ2Vfc2l6ZRgCIAEoBRIXCg9uZXh0X3BhZ2VfdG9rZW4YAyABKAwSQgoRc3RhcnRfdGltZV9maWx0ZXIYBCABKAsyJy50ZW1wb3JhbC5hcGkuZmlsdGVyLnYxLlN0YXJ0VGltZUZpbHRlchJLChBleGVjdXRpb25fZmlsdGVyGAUgASgLMi8udGVtcG9yYWwuYXBpLmZpbHRlci52MS5Xb3JrZmxvd0V4ZWN1dGlvbkZpbHRlckgAEkEKC3R5cGVfZmlsdGVyGAYgASgLMioudGVtcG9yYWwuYXBpLmZpbHRlci52MS5Xb3JrZmxvd1R5cGVGaWx0ZXJIAEIJCgdmaWx0ZXJzIoIBCiJMaXN0T3BlbldvcmtmbG93RXhlY3V0aW9uc1Jlc3BvbnNlEkMKCmV4ZWN1dGlvbnMYASADKAsyLy50ZW1wb3JhbC5hcGkud29ya2Zsb3cudjEuV29ya2Zsb3dFeGVjdXRpb25JbmZvEhcKD25leHRfcGFnZV90b2tlbhgCIAEoDCKKAwojTGlzdENsb3NlZFdvcmtmbG93RXhlY3V0aW9uc1JlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhkKEW1heGltdW1fcGFnZV9zaXplGAIgASgFEhcKD25leHRfcGFnZV90b2tlbhgDIAEoDBJCChFzdGFydF90aW1lX2ZpbHRlchgEIAEoCzInLnRlbXBvcmFsLmFwaS5maWx0ZXIudjEuU3RhcnRUaW1lRmlsdGVyEksKEGV4ZWN1dGlvbl9maWx0ZXIYBSABKAsyLy50ZW1wb3JhbC5hcGkuZmlsdGVyLnYxLldvcmtmbG93RXhlY3V0aW9uRmlsdGVySAASQQoLdHlwZV9maWx0ZXIYBiABKAsyKi50ZW1wb3JhbC5hcGkuZmlsdGVyLnYxLldvcmtmbG93VHlwZUZpbHRlckgAEj0KDXN0YXR1c19maWx0ZXIYByABKAsyJC50ZW1wb3JhbC5hcGkuZmlsdGVyLnYxLlN0YXR1c0ZpbHRlckgAQgkKB2ZpbHRlcnMihAEKJExpc3RDbG9zZWRXb3JrZmxvd0V4ZWN1dGlvbnNSZXNwb25zZRJDCgpleGVjdXRpb25zGAEgAygLMi8udGVtcG9yYWwuYXBpLndvcmtmbG93LnYxLldvcmtmbG93RXhlY3V0aW9uSW5mbxIXCg9uZXh0X3BhZ2VfdG9rZW4YAiABKAwibQodTGlzdFdvcmtmbG93RXhlY3V0aW9uc1JlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhEKCXBhZ2Vfc2l6ZRgCIAEoBRIXCg9uZXh0X3BhZ2VfdG9rZW4YAyABKAwSDQoFcXVlcnkYBCABKAkifgoeTGlzdFdvcmtmbG93RXhlY3V0aW9uc1Jlc3BvbnNlEkMKCmV4ZWN1dGlvbnMYASADKAsyLy50ZW1wb3JhbC5hcGkud29ya2Zsb3cudjEuV29ya2Zsb3dFeGVjdXRpb25JbmZvEhcKD25leHRfcGFnZV90b2tlbhgCIAEoDCJ1CiVMaXN0QXJjaGl2ZWRXb3JrZmxvd0V4ZWN1dGlvbnNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIRCglwYWdlX3NpemUYAiABKAUSFwoPbmV4dF9wYWdlX3Rva2VuGAMgASgMEg0KBXF1ZXJ5GAQgASgJIoYBCiZMaXN0QXJjaGl2ZWRXb3JrZmxvd0V4ZWN1dGlvbnNSZXNwb25zZRJDCgpleGVjdXRpb25zGAEgAygLMi8udGVtcG9yYWwuYXBpLndvcmtmbG93LnYxLldvcmtmbG93RXhlY3V0aW9uSW5mbxIXCg9uZXh0X3BhZ2VfdG9rZW4YAiABKAwibQodU2NhbldvcmtmbG93RXhlY3V0aW9uc1JlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhEKCXBhZ2Vfc2l6ZRgCIAEoBRIXCg9uZXh0X3BhZ2VfdG9rZW4YAyABKAwSDQoFcXVlcnkYBCABKAkifgoeU2NhbldvcmtmbG93RXhlY3V0aW9uc1Jlc3BvbnNlEkMKCmV4ZWN1dGlvbnMYASADKAsyLy50ZW1wb3JhbC5hcGkud29ya2Zsb3cudjEuV29ya2Zsb3dFeGVjdXRpb25JbmZvEhcKD25leHRfcGFnZV90b2tlbhgCIAEoDCJCCh5Db3VudFdvcmtmbG93RXhlY3V0aW9uc1JlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEg0KBXF1ZXJ5GAIgASgJIu0BCh9Db3VudFdvcmtmbG93RXhlY3V0aW9uc1Jlc3BvbnNlEg0KBWNvdW50GAEgASgDEmEKBmdyb3VwcxgCIAMoCzJRLnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuQ291bnRXb3JrZmxvd0V4ZWN1dGlvbnNSZXNwb25zZS5BZ2dyZWdhdGlvbkdyb3VwGlgKEEFnZ3JlZ2F0aW9uR3JvdXASNQoMZ3JvdXBfdmFsdWVzGAEgAygLMh8udGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkEg0KBWNvdW50GAIgASgDIhwKGkdldFNlYXJjaEF0dHJpYnV0ZXNSZXF1ZXN0IskBChtHZXRTZWFyY2hBdHRyaWJ1dGVzUmVzcG9uc2USVAoEa2V5cxgBIAMoCzJGLnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuR2V0U2VhcmNoQXR0cmlidXRlc1Jlc3BvbnNlLktleXNFbnRyeRpUCglLZXlzRW50cnkSCwoDa2V5GAEgASgJEjYKBXZhbHVlGAIgASgOMicudGVtcG9yYWwuYXBpLmVudW1zLnYxLkluZGV4ZWRWYWx1ZVR5cGU6AjgBItACCiBSZXNwb25kUXVlcnlUYXNrQ29tcGxldGVkUmVxdWVzdBISCgp0YXNrX3Rva2VuGAEgASgMEj4KDmNvbXBsZXRlZF90eXBlGAIgASgOMiYudGVtcG9yYWwuYXBpLmVudW1zLnYxLlF1ZXJ5UmVzdWx0VHlwZRI2CgxxdWVyeV9yZXN1bHQYAyABKAsyIC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlBheWxvYWRzEhUKDWVycm9yX21lc3NhZ2UYBCABKAkSEQoJbmFtZXNwYWNlGAYgASgJEjEKB2ZhaWx1cmUYByABKAsyIC50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5GYWlsdXJlEj0KBWNhdXNlGAggASgOMi4udGVtcG9yYWwuYXBpLmVudW1zLnYxLldvcmtmbG93VGFza0ZhaWxlZENhdXNlSgQIBRAGIiMKIVJlc3BvbmRRdWVyeVRhc2tDb21wbGV0ZWRSZXNwb25zZSJuChtSZXNldFN0aWNreVRhc2tRdWV1ZVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEjwKCWV4ZWN1dGlvbhgCIAEoCzIpLnRlbXBvcmFsLmFwaS5jb21tb24udjEuV29ya2Zsb3dFeGVjdXRpb24iHgocUmVzZXRTdGlja3lUYXNrUXVldWVSZXNwb25zZSKqAQoVU2h1dGRvd25Xb3JrZXJSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIZChFzdGlja3lfdGFza19xdWV1ZRgCIAEoCRIQCghpZGVudGl0eRgDIAEoCRIOCgZyZWFzb24YBCABKAkSQQoQd29ya2VyX2hlYXJ0YmVhdBgFIAEoCzInLnRlbXBvcmFsLmFwaS53b3JrZXIudjEuV29ya2VySGVhcnRiZWF0IhgKFlNodXRkb3duV29ya2VyUmVzcG9uc2Ui6QEKFFF1ZXJ5V29ya2Zsb3dSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRI8CglleGVjdXRpb24YAiABKAsyKS50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtmbG93RXhlY3V0aW9uEjMKBXF1ZXJ5GAMgASgLMiQudGVtcG9yYWwuYXBpLnF1ZXJ5LnYxLldvcmtmbG93UXVlcnkSSwoWcXVlcnlfcmVqZWN0X2NvbmRpdGlvbhgEIAEoDjIrLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5RdWVyeVJlamVjdENvbmRpdGlvbiKNAQoVUXVlcnlXb3JrZmxvd1Jlc3BvbnNlEjYKDHF1ZXJ5X3Jlc3VsdBgBIAEoCzIgLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUGF5bG9hZHMSPAoOcXVlcnlfcmVqZWN0ZWQYAiABKAsyJC50ZW1wb3JhbC5hcGkucXVlcnkudjEuUXVlcnlSZWplY3RlZCJzCiBEZXNjcmliZVdvcmtmbG93RXhlY3V0aW9uUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSPAoJZXhlY3V0aW9uGAIgASgLMikudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbiKZBQohRGVzY3JpYmVXb3JrZmxvd0V4ZWN1dGlvblJlc3BvbnNlEksKEGV4ZWN1dGlvbl9jb25maWcYASABKAsyMS50ZW1wb3JhbC5hcGkud29ya2Zsb3cudjEuV29ya2Zsb3dFeGVjdXRpb25Db25maWcSUAoXd29ya2Zsb3dfZXhlY3V0aW9uX2luZm8YAiABKAsyLy50ZW1wb3JhbC5hcGkud29ya2Zsb3cudjEuV29ya2Zsb3dFeGVjdXRpb25JbmZvEkkKEnBlbmRpbmdfYWN0aXZpdGllcxgDIAMoCzItLnRlbXBvcmFsLmFwaS53b3JrZmxvdy52MS5QZW5kaW5nQWN0aXZpdHlJbmZvEk0KEHBlbmRpbmdfY2hpbGRyZW4YBCADKAsyMy50ZW1wb3JhbC5hcGkud29ya2Zsb3cudjEuUGVuZGluZ0NoaWxkRXhlY3V0aW9uSW5mbxJQChVwZW5kaW5nX3dvcmtmbG93X3Rhc2sYBSABKAsyMS50ZW1wb3JhbC5hcGkud29ya2Zsb3cudjEuUGVuZGluZ1dvcmtmbG93VGFza0luZm8SOQoJY2FsbGJhY2tzGAYgAygLMiYudGVtcG9yYWwuYXBpLndvcmtmbG93LnYxLkNhbGxiYWNrSW5mbxJVChhwZW5kaW5nX25leHVzX29wZXJhdGlvbnMYByADKAsyMy50ZW1wb3JhbC5hcGkud29ya2Zsb3cudjEuUGVuZGluZ05leHVzT3BlcmF0aW9uSW5mbxJXChZ3b3JrZmxvd19leHRlbmRlZF9pbmZvGAggASgLMjcudGVtcG9yYWwuYXBpLndvcmtmbG93LnYxLldvcmtmbG93RXhlY3V0aW9uRXh0ZW5kZWRJbmZvIpAEChhEZXNjcmliZVRhc2tRdWV1ZVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEjgKCnRhc2tfcXVldWUYAiABKAsyJC50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlRhc2tRdWV1ZRI9Cg90YXNrX3F1ZXVlX3R5cGUYAyABKA4yJC50ZW1wb3JhbC5hcGkuZW51bXMudjEuVGFza1F1ZXVlVHlwZRIUCgxyZXBvcnRfc3RhdHMYCCABKAgSFQoNcmVwb3J0X2NvbmZpZxgLIAEoCBIlChlpbmNsdWRlX3Rhc2tfcXVldWVfc3RhdHVzGAQgASgIQgIYARJCCghhcGlfbW9kZRgFIAEoDjIsLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5EZXNjcmliZVRhc2tRdWV1ZU1vZGVCAhgBEkoKCHZlcnNpb25zGAYgASgLMjQudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UYXNrUXVldWVWZXJzaW9uU2VsZWN0aW9uQgIYARJCChB0YXNrX3F1ZXVlX3R5cGVzGAcgAygOMiQudGVtcG9yYWwuYXBpLmVudW1zLnYxLlRhc2tRdWV1ZVR5cGVCAhgBEhoKDnJlcG9ydF9wb2xsZXJzGAkgASgIQgIYARIkChhyZXBvcnRfdGFza19yZWFjaGFiaWxpdHkYCiABKAhCAhgBIuwHChlEZXNjcmliZVRhc2tRdWV1ZVJlc3BvbnNlEjYKB3BvbGxlcnMYASADKAsyJS50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlBvbGxlckluZm8SOAoFc3RhdHMYBSABKAsyKS50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlRhc2tRdWV1ZVN0YXRzEnEKFXN0YXRzX2J5X3ByaW9yaXR5X2tleRgIIAMoCzJSLnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuRGVzY3JpYmVUYXNrUXVldWVSZXNwb25zZS5TdGF0c0J5UHJpb3JpdHlLZXlFbnRyeRJLCg92ZXJzaW9uaW5nX2luZm8YBCABKAsyMi50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlRhc2tRdWV1ZVZlcnNpb25pbmdJbmZvEjoKBmNvbmZpZxgGIAEoCzIqLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGFza1F1ZXVlQ29uZmlnEmsKFGVmZmVjdGl2ZV9yYXRlX2xpbWl0GAcgASgLMk0udGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5EZXNjcmliZVRhc2tRdWV1ZVJlc3BvbnNlLkVmZmVjdGl2ZVJhdGVMaW1pdBJJChF0YXNrX3F1ZXVlX3N0YXR1cxgCIAEoCzIqLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGFza1F1ZXVlU3RhdHVzQgIYARJnCg12ZXJzaW9uc19pbmZvGAMgAygLMkwudGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5EZXNjcmliZVRhc2tRdWV1ZVJlc3BvbnNlLlZlcnNpb25zSW5mb0VudHJ5QgIYARpkChdTdGF0c0J5UHJpb3JpdHlLZXlFbnRyeRILCgNrZXkYASABKAUSOAoFdmFsdWUYAiABKAsyKS50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlRhc2tRdWV1ZVN0YXRzOgI4ARp0ChJFZmZlY3RpdmVSYXRlTGltaXQSGwoTcmVxdWVzdHNfcGVyX3NlY29uZBgBIAEoAhJBChFyYXRlX2xpbWl0X3NvdXJjZRgCIAEoDjImLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5SYXRlTGltaXRTb3VyY2UaZAoRVmVyc2lvbnNJbmZvRW50cnkSCwoDa2V5GAEgASgJEj4KBXZhbHVlGAIgASgLMi8udGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UYXNrUXVldWVWZXJzaW9uSW5mbzoCOAEiFwoVR2V0Q2x1c3RlckluZm9SZXF1ZXN0ItEDChZHZXRDbHVzdGVySW5mb1Jlc3BvbnNlEmgKEXN1cHBvcnRlZF9jbGllbnRzGAEgAygLMk0udGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5HZXRDbHVzdGVySW5mb1Jlc3BvbnNlLlN1cHBvcnRlZENsaWVudHNFbnRyeRIWCg5zZXJ2ZXJfdmVyc2lvbhgCIAEoCRISCgpjbHVzdGVyX2lkGAMgASgJEjoKDHZlcnNpb25faW5mbxgEIAEoCzIkLnRlbXBvcmFsLmFwaS52ZXJzaW9uLnYxLlZlcnNpb25JbmZvEhQKDGNsdXN0ZXJfbmFtZRgFIAEoCRIbChNoaXN0b3J5X3NoYXJkX2NvdW50GAYgASgFEhkKEXBlcnNpc3RlbmNlX3N0b3JlGAcgASgJEhgKEHZpc2liaWxpdHlfc3RvcmUYCCABKAkSIAoYaW5pdGlhbF9mYWlsb3Zlcl92ZXJzaW9uGAkgASgDEiIKGmZhaWxvdmVyX3ZlcnNpb25faW5jcmVtZW50GAogASgDGjcKFVN1cHBvcnRlZENsaWVudHNFbnRyeRILCgNrZXkYASABKAkSDQoFdmFsdWUYAiABKAk6AjgBIhYKFEdldFN5c3RlbUluZm9SZXF1ZXN0IvQDChVHZXRTeXN0ZW1JbmZvUmVzcG9uc2USFgoOc2VydmVyX3ZlcnNpb24YASABKAkSWQoMY2FwYWJpbGl0aWVzGAIgASgLMkMudGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5HZXRTeXN0ZW1JbmZvUmVzcG9uc2UuQ2FwYWJpbGl0aWVzGucCCgxDYXBhYmlsaXRpZXMSHwoXc2lnbmFsX2FuZF9xdWVyeV9oZWFkZXIYASABKAgSJgoeaW50ZXJuYWxfZXJyb3JfZGlmZmVyZW50aWF0aW9uGAIgASgIEioKImFjdGl2aXR5X2ZhaWx1cmVfaW5jbHVkZV9oZWFydGJlYXQYAyABKAgSGgoSc3VwcG9ydHNfc2NoZWR1bGVzGAQgASgIEiIKGmVuY29kZWRfZmFpbHVyZV9hdHRyaWJ1dGVzGAUgASgIEiEKGWJ1aWxkX2lkX2Jhc2VkX3ZlcnNpb25pbmcYBiABKAgSEwoLdXBzZXJ0X21lbW8YByABKAgSHAoUZWFnZXJfd29ya2Zsb3dfc3RhcnQYCCABKAgSFAoMc2RrX21ldGFkYXRhGAkgASgIEicKH2NvdW50X2dyb3VwX2J5X2V4ZWN1dGlvbl9zdGF0dXMYCiABKAgSDQoFbmV4dXMYCyABKAgibQoeTGlzdFRhc2tRdWV1ZVBhcnRpdGlvbnNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRI4Cgp0YXNrX3F1ZXVlGAIgASgLMiQudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UYXNrUXVldWUi3wEKH0xpc3RUYXNrUXVldWVQYXJ0aXRpb25zUmVzcG9uc2USXQoeYWN0aXZpdHlfdGFza19xdWV1ZV9wYXJ0aXRpb25zGAEgAygLMjUudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UYXNrUXVldWVQYXJ0aXRpb25NZXRhZGF0YRJdCh53b3JrZmxvd190YXNrX3F1ZXVlX3BhcnRpdGlvbnMYAiADKAsyNS50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlRhc2tRdWV1ZVBhcnRpdGlvbk1ldGFkYXRhIswCChVDcmVhdGVTY2hlZHVsZVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhMKC3NjaGVkdWxlX2lkGAIgASgJEjQKCHNjaGVkdWxlGAMgASgLMiIudGVtcG9yYWwuYXBpLnNjaGVkdWxlLnYxLlNjaGVkdWxlEj4KDWluaXRpYWxfcGF0Y2gYBCABKAsyJy50ZW1wb3JhbC5hcGkuc2NoZWR1bGUudjEuU2NoZWR1bGVQYXRjaBIQCghpZGVudGl0eRgFIAEoCRISCgpyZXF1ZXN0X2lkGAYgASgJEioKBG1lbW8YByABKAsyHC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLk1lbW8SQwoRc2VhcmNoX2F0dHJpYnV0ZXMYCCABKAsyKC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlNlYXJjaEF0dHJpYnV0ZXMiMAoWQ3JlYXRlU2NoZWR1bGVSZXNwb25zZRIWCg5jb25mbGljdF90b2tlbhgBIAEoDCJBChdEZXNjcmliZVNjaGVkdWxlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSEwoLc2NoZWR1bGVfaWQYAiABKAkijwIKGERlc2NyaWJlU2NoZWR1bGVSZXNwb25zZRI0CghzY2hlZHVsZRgBIAEoCzIiLnRlbXBvcmFsLmFwaS5zY2hlZHVsZS52MS5TY2hlZHVsZRI0CgRpbmZvGAIgASgLMiYudGVtcG9yYWwuYXBpLnNjaGVkdWxlLnYxLlNjaGVkdWxlSW5mbxIqCgRtZW1vGAMgASgLMhwudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5NZW1vEkMKEXNlYXJjaF9hdHRyaWJ1dGVzGAQgASgLMigudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5TZWFyY2hBdHRyaWJ1dGVzEhYKDmNvbmZsaWN0X3Rva2VuGAUgASgMIvgBChVVcGRhdGVTY2hlZHVsZVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhMKC3NjaGVkdWxlX2lkGAIgASgJEjQKCHNjaGVkdWxlGAMgASgLMiIudGVtcG9yYWwuYXBpLnNjaGVkdWxlLnYxLlNjaGVkdWxlEhYKDmNvbmZsaWN0X3Rva2VuGAQgASgMEhAKCGlkZW50aXR5GAUgASgJEhIKCnJlcXVlc3RfaWQYBiABKAkSQwoRc2VhcmNoX2F0dHJpYnV0ZXMYByABKAsyKC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlNlYXJjaEF0dHJpYnV0ZXMiGAoWVXBkYXRlU2NoZWR1bGVSZXNwb25zZSKcAQoUUGF0Y2hTY2hlZHVsZVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhMKC3NjaGVkdWxlX2lkGAIgASgJEjYKBXBhdGNoGAMgASgLMicudGVtcG9yYWwuYXBpLnNjaGVkdWxlLnYxLlNjaGVkdWxlUGF0Y2gSEAoIaWRlbnRpdHkYBCABKAkSEgoKcmVxdWVzdF9pZBgFIAEoCSIXChVQYXRjaFNjaGVkdWxlUmVzcG9uc2UiqAEKIExpc3RTY2hlZHVsZU1hdGNoaW5nVGltZXNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRITCgtzY2hlZHVsZV9pZBgCIAEoCRIuCgpzdGFydF90aW1lGAMgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIsCghlbmRfdGltZRgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiUwohTGlzdFNjaGVkdWxlTWF0Y2hpbmdUaW1lc1Jlc3BvbnNlEi4KCnN0YXJ0X3RpbWUYASADKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIlEKFURlbGV0ZVNjaGVkdWxlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSEwoLc2NoZWR1bGVfaWQYAiABKAkSEAoIaWRlbnRpdHkYAyABKAkiGAoWRGVsZXRlU2NoZWR1bGVSZXNwb25zZSJsChRMaXN0U2NoZWR1bGVzUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSGQoRbWF4aW11bV9wYWdlX3NpemUYAiABKAUSFwoPbmV4dF9wYWdlX3Rva2VuGAMgASgMEg0KBXF1ZXJ5GAQgASgJInAKFUxpc3RTY2hlZHVsZXNSZXNwb25zZRI+CglzY2hlZHVsZXMYASADKAsyKy50ZW1wb3JhbC5hcGkuc2NoZWR1bGUudjEuU2NoZWR1bGVMaXN0RW50cnkSFwoPbmV4dF9wYWdlX3Rva2VuGAIgASgMIoYFCidVcGRhdGVXb3JrZXJCdWlsZElkQ29tcGF0aWJpbGl0eVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhIKCnRhc2tfcXVldWUYAiABKAkSLQojYWRkX25ld19idWlsZF9pZF9pbl9uZXdfZGVmYXVsdF9zZXQYAyABKAlIABKHAQobYWRkX25ld19jb21wYXRpYmxlX2J1aWxkX2lkGAQgASgLMmAudGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5VcGRhdGVXb3JrZXJCdWlsZElkQ29tcGF0aWJpbGl0eVJlcXVlc3QuQWRkTmV3Q29tcGF0aWJsZVZlcnNpb25IABIhChdwcm9tb3RlX3NldF9ieV9idWlsZF9pZBgFIAEoCUgAEiUKG3Byb21vdGVfYnVpbGRfaWRfd2l0aGluX3NldBgGIAEoCUgAEmgKCm1lcmdlX3NldHMYByABKAsyUi50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLlVwZGF0ZVdvcmtlckJ1aWxkSWRDb21wYXRpYmlsaXR5UmVxdWVzdC5NZXJnZVNldHNIABpvChdBZGROZXdDb21wYXRpYmxlVmVyc2lvbhIUCgxuZXdfYnVpbGRfaWQYASABKAkSJAocZXhpc3RpbmdfY29tcGF0aWJsZV9idWlsZF9pZBgCIAEoCRIYChBtYWtlX3NldF9kZWZhdWx0GAMgASgIGkkKCU1lcmdlU2V0cxIcChRwcmltYXJ5X3NldF9idWlsZF9pZBgBIAEoCRIeChZzZWNvbmRhcnlfc2V0X2J1aWxkX2lkGAIgASgJQgsKCW9wZXJhdGlvbiJACihVcGRhdGVXb3JrZXJCdWlsZElkQ29tcGF0aWJpbGl0eVJlc3BvbnNlSgQIARACUg52ZXJzaW9uX3NldF9pZCJfCiRHZXRXb3JrZXJCdWlsZElkQ29tcGF0aWJpbGl0eVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhIKCnRhc2tfcXVldWUYAiABKAkSEAoIbWF4X3NldHMYAyABKAUidAolR2V0V29ya2VyQnVpbGRJZENvbXBhdGliaWxpdHlSZXNwb25zZRJLChJtYWpvcl92ZXJzaW9uX3NldHMYASADKAsyLy50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLkNvbXBhdGlibGVWZXJzaW9uU2V0IrUNCiJVcGRhdGVXb3JrZXJWZXJzaW9uaW5nUnVsZXNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRISCgp0YXNrX3F1ZXVlGAIgASgJEhYKDmNvbmZsaWN0X3Rva2VuGAMgASgMEoEBChZpbnNlcnRfYXNzaWdubWVudF9ydWxlGAQgASgLMl8udGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5VcGRhdGVXb3JrZXJWZXJzaW9uaW5nUnVsZXNSZXF1ZXN0Lkluc2VydEJ1aWxkSWRBc3NpZ25tZW50UnVsZUgAEoMBChdyZXBsYWNlX2Fzc2lnbm1lbnRfcnVsZRgFIAEoCzJgLnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuVXBkYXRlV29ya2VyVmVyc2lvbmluZ1J1bGVzUmVxdWVzdC5SZXBsYWNlQnVpbGRJZEFzc2lnbm1lbnRSdWxlSAASgQEKFmRlbGV0ZV9hc3NpZ25tZW50X3J1bGUYBiABKAsyXy50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLlVwZGF0ZVdvcmtlclZlcnNpb25pbmdSdWxlc1JlcXVlc3QuRGVsZXRlQnVpbGRJZEFzc2lnbm1lbnRSdWxlSAASjAEKHGFkZF9jb21wYXRpYmxlX3JlZGlyZWN0X3J1bGUYByABKAsyZC50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLlVwZGF0ZVdvcmtlclZlcnNpb25pbmdSdWxlc1JlcXVlc3QuQWRkQ29tcGF0aWJsZUJ1aWxkSWRSZWRpcmVjdFJ1bGVIABKUAQogcmVwbGFjZV9jb21wYXRpYmxlX3JlZGlyZWN0X3J1bGUYCCABKAsyaC50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLlVwZGF0ZVdvcmtlclZlcnNpb25pbmdSdWxlc1JlcXVlc3QuUmVwbGFjZUNvbXBhdGlibGVCdWlsZElkUmVkaXJlY3RSdWxlSAASkgEKH2RlbGV0ZV9jb21wYXRpYmxlX3JlZGlyZWN0X3J1bGUYCSABKAsyZy50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLlVwZGF0ZVdvcmtlclZlcnNpb25pbmdSdWxlc1JlcXVlc3QuRGVsZXRlQ29tcGF0aWJsZUJ1aWxkSWRSZWRpcmVjdFJ1bGVIABJsCg9jb21taXRfYnVpbGRfaWQYCiABKAsyUS50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLlVwZGF0ZVdvcmtlclZlcnNpb25pbmdSdWxlc1JlcXVlc3QuQ29tbWl0QnVpbGRJZEgAGnEKG0luc2VydEJ1aWxkSWRBc3NpZ25tZW50UnVsZRISCgpydWxlX2luZGV4GAEgASgFEj4KBHJ1bGUYAiABKAsyMC50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLkJ1aWxkSWRBc3NpZ25tZW50UnVsZRqBAQocUmVwbGFjZUJ1aWxkSWRBc3NpZ25tZW50UnVsZRISCgpydWxlX2luZGV4GAEgASgFEj4KBHJ1bGUYAiABKAsyMC50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLkJ1aWxkSWRBc3NpZ25tZW50UnVsZRINCgVmb3JjZRgDIAEoCBpAChtEZWxldGVCdWlsZElkQXNzaWdubWVudFJ1bGUSEgoKcnVsZV9pbmRleBgBIAEoBRINCgVmb3JjZRgCIAEoCBpqCiBBZGRDb21wYXRpYmxlQnVpbGRJZFJlZGlyZWN0UnVsZRJGCgRydWxlGAEgASgLMjgudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5Db21wYXRpYmxlQnVpbGRJZFJlZGlyZWN0UnVsZRpuCiRSZXBsYWNlQ29tcGF0aWJsZUJ1aWxkSWRSZWRpcmVjdFJ1bGUSRgoEcnVsZRgBIAEoCzI4LnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuQ29tcGF0aWJsZUJ1aWxkSWRSZWRpcmVjdFJ1bGUaPgojRGVsZXRlQ29tcGF0aWJsZUJ1aWxkSWRSZWRpcmVjdFJ1bGUSFwoPc291cmNlX2J1aWxkX2lkGAEgASgJGjcKDUNvbW1pdEJ1aWxkSWQSFwoPdGFyZ2V0X2J1aWxkX2lkGAEgASgJEg0KBWZvcmNlGAIgASgIQgsKCW9wZXJhdGlvbiL8AQojVXBkYXRlV29ya2VyVmVyc2lvbmluZ1J1bGVzUmVzcG9uc2USVQoQYXNzaWdubWVudF9ydWxlcxgBIAMoCzI7LnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGltZXN0YW1wZWRCdWlsZElkQXNzaWdubWVudFJ1bGUSZgoZY29tcGF0aWJsZV9yZWRpcmVjdF9ydWxlcxgCIAMoCzJDLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGltZXN0YW1wZWRDb21wYXRpYmxlQnVpbGRJZFJlZGlyZWN0UnVsZRIWCg5jb25mbGljdF90b2tlbhgDIAEoDCJICh9HZXRXb3JrZXJWZXJzaW9uaW5nUnVsZXNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRISCgp0YXNrX3F1ZXVlGAIgASgJIvkBCiBHZXRXb3JrZXJWZXJzaW9uaW5nUnVsZXNSZXNwb25zZRJVChBhc3NpZ25tZW50X3J1bGVzGAEgAygLMjsudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UaW1lc3RhbXBlZEJ1aWxkSWRBc3NpZ25tZW50UnVsZRJmChljb21wYXRpYmxlX3JlZGlyZWN0X3J1bGVzGAIgAygLMkMudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UaW1lc3RhbXBlZENvbXBhdGlibGVCdWlsZElkUmVkaXJlY3RSdWxlEhYKDmNvbmZsaWN0X3Rva2VuGAMgASgMIpwBCiBHZXRXb3JrZXJUYXNrUmVhY2hhYmlsaXR5UmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSEQoJYnVpbGRfaWRzGAIgAygJEhMKC3Rhc2tfcXVldWVzGAMgAygJEj0KDHJlYWNoYWJpbGl0eRgEIAEoDjInLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5UYXNrUmVhY2hhYmlsaXR5InIKIUdldFdvcmtlclRhc2tSZWFjaGFiaWxpdHlSZXNwb25zZRJNChVidWlsZF9pZF9yZWFjaGFiaWxpdHkYASADKAsyLi50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLkJ1aWxkSWRSZWFjaGFiaWxpdHkihQIKHlVwZGF0ZVdvcmtmbG93RXhlY3V0aW9uUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSRQoSd29ya2Zsb3dfZXhlY3V0aW9uGAIgASgLMikudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbhIeChZmaXJzdF9leGVjdXRpb25fcnVuX2lkGAMgASgJEjcKC3dhaXRfcG9saWN5GAQgASgLMiIudGVtcG9yYWwuYXBpLnVwZGF0ZS52MS5XYWl0UG9saWN5EjAKB3JlcXVlc3QYBSABKAsyHy50ZW1wb3JhbC5hcGkudXBkYXRlLnYxLlJlcXVlc3Qi1wEKH1VwZGF0ZVdvcmtmbG93RXhlY3V0aW9uUmVzcG9uc2USNQoKdXBkYXRlX3JlZhgBIAEoCzIhLnRlbXBvcmFsLmFwaS51cGRhdGUudjEuVXBkYXRlUmVmEjAKB291dGNvbWUYAiABKAsyHy50ZW1wb3JhbC5hcGkudXBkYXRlLnYxLk91dGNvbWUSSwoFc3RhZ2UYAyABKA4yPC50ZW1wb3JhbC5hcGkuZW51bXMudjEuVXBkYXRlV29ya2Zsb3dFeGVjdXRpb25MaWZlY3ljbGVTdGFnZSL0BwoaU3RhcnRCYXRjaE9wZXJhdGlvblJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhgKEHZpc2liaWxpdHlfcXVlcnkYAiABKAkSDgoGam9iX2lkGAMgASgJEg4KBnJlYXNvbhgEIAEoCRI9CgpleGVjdXRpb25zGAUgAygLMikudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbhIhChltYXhfb3BlcmF0aW9uc19wZXJfc2Vjb25kGAYgASgCElEKFXRlcm1pbmF0aW9uX29wZXJhdGlvbhgKIAEoCzIwLnRlbXBvcmFsLmFwaS5iYXRjaC52MS5CYXRjaE9wZXJhdGlvblRlcm1pbmF0aW9uSAASRwoQc2lnbmFsX29wZXJhdGlvbhgLIAEoCzIrLnRlbXBvcmFsLmFwaS5iYXRjaC52MS5CYXRjaE9wZXJhdGlvblNpZ25hbEgAElMKFmNhbmNlbGxhdGlvbl9vcGVyYXRpb24YDCABKAsyMS50ZW1wb3JhbC5hcGkuYmF0Y2gudjEuQmF0Y2hPcGVyYXRpb25DYW5jZWxsYXRpb25IABJLChJkZWxldGlvbl9vcGVyYXRpb24YDSABKAsyLS50ZW1wb3JhbC5hcGkuYmF0Y2gudjEuQmF0Y2hPcGVyYXRpb25EZWxldGlvbkgAEkUKD3Jlc2V0X29wZXJhdGlvbhgOIAEoCzIqLnRlbXBvcmFsLmFwaS5iYXRjaC52MS5CYXRjaE9wZXJhdGlvblJlc2V0SAAScAohdXBkYXRlX3dvcmtmbG93X29wdGlvbnNfb3BlcmF0aW9uGA8gASgLMkMudGVtcG9yYWwuYXBpLmJhdGNoLnYxLkJhdGNoT3BlcmF0aW9uVXBkYXRlV29ya2Zsb3dFeGVjdXRpb25PcHRpb25zSAASXgocdW5wYXVzZV9hY3Rpdml0aWVzX29wZXJhdGlvbhgQIAEoCzI2LnRlbXBvcmFsLmFwaS5iYXRjaC52MS5CYXRjaE9wZXJhdGlvblVucGF1c2VBY3Rpdml0aWVzSAASWgoacmVzZXRfYWN0aXZpdGllc19vcGVyYXRpb24YESABKAsyNC50ZW1wb3JhbC5hcGkuYmF0Y2gudjEuQmF0Y2hPcGVyYXRpb25SZXNldEFjdGl2aXRpZXNIABJnCiF1cGRhdGVfYWN0aXZpdHlfb3B0aW9uc19vcGVyYXRpb24YEiABKAsyOi50ZW1wb3JhbC5hcGkuYmF0Y2gudjEuQmF0Y2hPcGVyYXRpb25VcGRhdGVBY3Rpdml0eU9wdGlvbnNIAEILCglvcGVyYXRpb24iHQobU3RhcnRCYXRjaE9wZXJhdGlvblJlc3BvbnNlImAKGVN0b3BCYXRjaE9wZXJhdGlvblJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEg4KBmpvYl9pZBgCIAEoCRIOCgZyZWFzb24YAyABKAkSEAoIaWRlbnRpdHkYBCABKAkiHAoaU3RvcEJhdGNoT3BlcmF0aW9uUmVzcG9uc2UiQgodRGVzY3JpYmVCYXRjaE9wZXJhdGlvblJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEg4KBmpvYl9pZBgCIAEoCSKSAwoeRGVzY3JpYmVCYXRjaE9wZXJhdGlvblJlc3BvbnNlEkEKDm9wZXJhdGlvbl90eXBlGAEgASgOMikudGVtcG9yYWwuYXBpLmVudW1zLnYxLkJhdGNoT3BlcmF0aW9uVHlwZRIOCgZqb2JfaWQYAiABKAkSOQoFc3RhdGUYAyABKA4yKi50ZW1wb3JhbC5hcGkuZW51bXMudjEuQmF0Y2hPcGVyYXRpb25TdGF0ZRIuCgpzdGFydF90aW1lGAQgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgpjbG9zZV90aW1lGAUgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIdChV0b3RhbF9vcGVyYXRpb25fY291bnQYBiABKAMSIAoYY29tcGxldGVfb3BlcmF0aW9uX2NvdW50GAcgASgDEh8KF2ZhaWx1cmVfb3BlcmF0aW9uX2NvdW50GAggASgDEhAKCGlkZW50aXR5GAkgASgJEg4KBnJlYXNvbhgKIAEoCSJbChpMaXN0QmF0Y2hPcGVyYXRpb25zUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSEQoJcGFnZV9zaXplGAIgASgFEhcKD25leHRfcGFnZV90b2tlbhgDIAEoDCJ5ChtMaXN0QmF0Y2hPcGVyYXRpb25zUmVzcG9uc2USQQoOb3BlcmF0aW9uX2luZm8YASADKAsyKS50ZW1wb3JhbC5hcGkuYmF0Y2gudjEuQmF0Y2hPcGVyYXRpb25JbmZvEhcKD25leHRfcGFnZV90b2tlbhgCIAEoDCK5AQoiUG9sbFdvcmtmbG93RXhlY3V0aW9uVXBkYXRlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSNQoKdXBkYXRlX3JlZhgCIAEoCzIhLnRlbXBvcmFsLmFwaS51cGRhdGUudjEuVXBkYXRlUmVmEhAKCGlkZW50aXR5GAMgASgJEjcKC3dhaXRfcG9saWN5GAQgASgLMiIudGVtcG9yYWwuYXBpLnVwZGF0ZS52MS5XYWl0UG9saWN5ItsBCiNQb2xsV29ya2Zsb3dFeGVjdXRpb25VcGRhdGVSZXNwb25zZRIwCgdvdXRjb21lGAEgASgLMh8udGVtcG9yYWwuYXBpLnVwZGF0ZS52MS5PdXRjb21lEksKBXN0YWdlGAIgASgOMjwudGVtcG9yYWwuYXBpLmVudW1zLnYxLlVwZGF0ZVdvcmtmbG93RXhlY3V0aW9uTGlmZWN5Y2xlU3RhZ2USNQoKdXBkYXRlX3JlZhgDIAEoCzIhLnRlbXBvcmFsLmFwaS51cGRhdGUudjEuVXBkYXRlUmVmIuoCChlQb2xsTmV4dXNUYXNrUXVldWVSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIQCghpZGVudGl0eRgCIAEoCRI4Cgp0YXNrX3F1ZXVlGAMgASgLMiQudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UYXNrUXVldWUSWgobd29ya2VyX3ZlcnNpb25fY2FwYWJpbGl0aWVzGAQgASgLMjEudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZXJWZXJzaW9uQ2FwYWJpbGl0aWVzQgIYARJPChJkZXBsb3ltZW50X29wdGlvbnMYBiABKAsyMy50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5Xb3JrZXJEZXBsb3ltZW50T3B0aW9ucxJBChB3b3JrZXJfaGVhcnRiZWF0GAcgAygLMicudGVtcG9yYWwuYXBpLndvcmtlci52MS5Xb3JrZXJIZWFydGJlYXQitAEKGlBvbGxOZXh1c1Rhc2tRdWV1ZVJlc3BvbnNlEhIKCnRhc2tfdG9rZW4YASABKAwSLwoHcmVxdWVzdBgCIAEoCzIeLnRlbXBvcmFsLmFwaS5uZXh1cy52MS5SZXF1ZXN0ElEKF3BvbGxlcl9zY2FsaW5nX2RlY2lzaW9uGAMgASgLMjAudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5Qb2xsZXJTY2FsaW5nRGVjaXNpb24ijgEKIFJlc3BvbmROZXh1c1Rhc2tDb21wbGV0ZWRSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIQCghpZGVudGl0eRgCIAEoCRISCgp0YXNrX3Rva2VuGAMgASgMEjEKCHJlc3BvbnNlGAQgASgLMh8udGVtcG9yYWwuYXBpLm5leHVzLnYxLlJlc3BvbnNlIiMKIVJlc3BvbmROZXh1c1Rhc2tDb21wbGV0ZWRSZXNwb25zZSKMAQodUmVzcG9uZE5leHVzVGFza0ZhaWxlZFJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhAKCGlkZW50aXR5GAIgASgJEhIKCnRhc2tfdG9rZW4YAyABKAwSMgoFZXJyb3IYBCABKAsyIy50ZW1wb3JhbC5hcGkubmV4dXMudjEuSGFuZGxlckVycm9yIiAKHlJlc3BvbmROZXh1c1Rhc2tGYWlsZWRSZXNwb25zZSLfAgocRXhlY3V0ZU11bHRpT3BlcmF0aW9uUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSWwoKb3BlcmF0aW9ucxgCIAMoCzJHLnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuRXhlY3V0ZU11bHRpT3BlcmF0aW9uUmVxdWVzdC5PcGVyYXRpb24azgEKCU9wZXJhdGlvbhJYCg5zdGFydF93b3JrZmxvdxgBIAEoCzI+LnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuU3RhcnRXb3JrZmxvd0V4ZWN1dGlvblJlcXVlc3RIABJaCg91cGRhdGVfd29ya2Zsb3cYAiABKAsyPy50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLlVwZGF0ZVdvcmtmbG93RXhlY3V0aW9uUmVxdWVzdEgAQgsKCW9wZXJhdGlvbiLMAgodRXhlY3V0ZU11bHRpT3BlcmF0aW9uUmVzcG9uc2USWgoJcmVzcG9uc2VzGAEgAygLMkcudGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5FeGVjdXRlTXVsdGlPcGVyYXRpb25SZXNwb25zZS5SZXNwb25zZRrOAQoIUmVzcG9uc2USWQoOc3RhcnRfd29ya2Zsb3cYASABKAsyPy50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLlN0YXJ0V29ya2Zsb3dFeGVjdXRpb25SZXNwb25zZUgAElsKD3VwZGF0ZV93b3JrZmxvdxgCIAEoCzJALnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuVXBkYXRlV29ya2Zsb3dFeGVjdXRpb25SZXNwb25zZUgAQgoKCHJlc3BvbnNlItACChxVcGRhdGVBY3Rpdml0eU9wdGlvbnNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRI8CglleGVjdXRpb24YAiABKAsyKS50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtmbG93RXhlY3V0aW9uEhAKCGlkZW50aXR5GAMgASgJEkMKEGFjdGl2aXR5X29wdGlvbnMYBCABKAsyKS50ZW1wb3JhbC5hcGkuYWN0aXZpdHkudjEuQWN0aXZpdHlPcHRpb25zEi8KC3VwZGF0ZV9tYXNrGAUgASgLMhouZ29vZ2xlLnByb3RvYnVmLkZpZWxkTWFzaxIMCgJpZBgGIAEoCUgAEg4KBHR5cGUYByABKAlIABITCgltYXRjaF9hbGwYCSABKAhIABIYChByZXN0b3JlX29yaWdpbmFsGAggASgIQgoKCGFjdGl2aXR5ImQKHVVwZGF0ZUFjdGl2aXR5T3B0aW9uc1Jlc3BvbnNlEkMKEGFjdGl2aXR5X29wdGlvbnMYASABKAsyKS50ZW1wb3JhbC5hcGkuYWN0aXZpdHkudjEuQWN0aXZpdHlPcHRpb25zIrMBChRQYXVzZUFjdGl2aXR5UmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSPAoJZXhlY3V0aW9uGAIgASgLMikudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbhIQCghpZGVudGl0eRgDIAEoCRIMCgJpZBgEIAEoCUgAEg4KBHR5cGUYBSABKAlIABIOCgZyZWFzb24YBiABKAlCCgoIYWN0aXZpdHkiFwoVUGF1c2VBY3Rpdml0eVJlc3BvbnNlIpgCChZVbnBhdXNlQWN0aXZpdHlSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRI8CglleGVjdXRpb24YAiABKAsyKS50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtmbG93RXhlY3V0aW9uEhAKCGlkZW50aXR5GAMgASgJEgwKAmlkGAQgASgJSAASDgoEdHlwZRgFIAEoCUgAEhUKC3VucGF1c2VfYWxsGAYgASgISAASFgoOcmVzZXRfYXR0ZW1wdHMYByABKAgSFwoPcmVzZXRfaGVhcnRiZWF0GAggASgIEikKBmppdHRlchgJIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdGlvbkIKCghhY3Rpdml0eSIZChdVbnBhdXNlQWN0aXZpdHlSZXNwb25zZSKzAgoUUmVzZXRBY3Rpdml0eVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEjwKCWV4ZWN1dGlvbhgCIAEoCzIpLnRlbXBvcmFsLmFwaS5jb21tb24udjEuV29ya2Zsb3dFeGVjdXRpb24SEAoIaWRlbnRpdHkYAyABKAkSDAoCaWQYBCABKAlIABIOCgR0eXBlGAUgASgJSAASEwoJbWF0Y2hfYWxsGAogASgISAASFwoPcmVzZXRfaGVhcnRiZWF0GAYgASgIEhMKC2tlZXBfcGF1c2VkGAcgASgIEikKBmppdHRlchgIIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdGlvbhIgChhyZXN0b3JlX29yaWdpbmFsX29wdGlvbnMYCSABKAhCCgoIYWN0aXZpdHkiFwoVUmVzZXRBY3Rpdml0eVJlc3BvbnNlIpwCCiVVcGRhdGVXb3JrZmxvd0V4ZWN1dGlvbk9wdGlvbnNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRJFChJ3b3JrZmxvd19leGVjdXRpb24YAiABKAsyKS50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtmbG93RXhlY3V0aW9uElYKGndvcmtmbG93X2V4ZWN1dGlvbl9vcHRpb25zGAMgASgLMjIudGVtcG9yYWwuYXBpLndvcmtmbG93LnYxLldvcmtmbG93RXhlY3V0aW9uT3B0aW9ucxIvCgt1cGRhdGVfbWFzaxgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5GaWVsZE1hc2sSEAoIaWRlbnRpdHkYBSABKAkigAEKJlVwZGF0ZVdvcmtmbG93RXhlY3V0aW9uT3B0aW9uc1Jlc3BvbnNlElYKGndvcmtmbG93X2V4ZWN1dGlvbl9vcHRpb25zGAEgASgLMjIudGVtcG9yYWwuYXBpLndvcmtmbG93LnYxLldvcmtmbG93RXhlY3V0aW9uT3B0aW9ucyJqChlEZXNjcmliZURlcGxveW1lbnRSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRI6CgpkZXBsb3ltZW50GAIgASgLMiYudGVtcG9yYWwuYXBpLmRlcGxveW1lbnQudjEuRGVwbG95bWVudCJhChpEZXNjcmliZURlcGxveW1lbnRSZXNwb25zZRJDCg9kZXBsb3ltZW50X2luZm8YASABKAsyKi50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5EZXBsb3ltZW50SW5mbyLCAQomRGVzY3JpYmVXb3JrZXJEZXBsb3ltZW50VmVyc2lvblJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhMKB3ZlcnNpb24YAiABKAlCAhgBEk8KEmRlcGxveW1lbnRfdmVyc2lvbhgDIAEoCzIzLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRWZXJzaW9uEh8KF3JlcG9ydF90YXNrX3F1ZXVlX3N0YXRzGAQgASgIIowFCidEZXNjcmliZVdvcmtlckRlcGxveW1lbnRWZXJzaW9uUmVzcG9uc2USXwoed29ya2VyX2RlcGxveW1lbnRfdmVyc2lvbl9pbmZvGAEgASgLMjcudGVtcG9yYWwuYXBpLmRlcGxveW1lbnQudjEuV29ya2VyRGVwbG95bWVudFZlcnNpb25JbmZvEnYKE3ZlcnNpb25fdGFza19xdWV1ZXMYAiADKAsyWS50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLkRlc2NyaWJlV29ya2VyRGVwbG95bWVudFZlcnNpb25SZXNwb25zZS5WZXJzaW9uVGFza1F1ZXVlGocDChBWZXJzaW9uVGFza1F1ZXVlEgwKBG5hbWUYASABKAkSMgoEdHlwZRgCIAEoDjIkLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5UYXNrUXVldWVUeXBlEjgKBXN0YXRzGAMgASgLMikudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UYXNrUXVldWVTdGF0cxKQAQoVc3RhdHNfYnlfcHJpb3JpdHlfa2V5GAQgAygLMnEudGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5EZXNjcmliZVdvcmtlckRlcGxveW1lbnRWZXJzaW9uUmVzcG9uc2UuVmVyc2lvblRhc2tRdWV1ZS5TdGF0c0J5UHJpb3JpdHlLZXlFbnRyeRpkChdTdGF0c0J5UHJpb3JpdHlLZXlFbnRyeRILCgNrZXkYASABKAUSOAoFdmFsdWUYAiABKAsyKS50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlRhc2tRdWV1ZVN0YXRzOgI4ASJNCh9EZXNjcmliZVdvcmtlckRlcGxveW1lbnRSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIXCg9kZXBsb3ltZW50X25hbWUYAiABKAkijAEKIERlc2NyaWJlV29ya2VyRGVwbG95bWVudFJlc3BvbnNlEhYKDmNvbmZsaWN0X3Rva2VuGAEgASgMElAKFndvcmtlcl9kZXBsb3ltZW50X2luZm8YAiABKAsyMC50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5Xb3JrZXJEZXBsb3ltZW50SW5mbyJsChZMaXN0RGVwbG95bWVudHNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIRCglwYWdlX3NpemUYAiABKAUSFwoPbmV4dF9wYWdlX3Rva2VuGAMgASgMEhMKC3Nlcmllc19uYW1lGAQgASgJIncKF0xpc3REZXBsb3ltZW50c1Jlc3BvbnNlEhcKD25leHRfcGFnZV90b2tlbhgBIAEoDBJDCgtkZXBsb3ltZW50cxgCIAMoCzIuLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLkRlcGxveW1lbnRMaXN0SW5mbyLNAQobU2V0Q3VycmVudERlcGxveW1lbnRSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRI6CgpkZXBsb3ltZW50GAIgASgLMiYudGVtcG9yYWwuYXBpLmRlcGxveW1lbnQudjEuRGVwbG95bWVudBIQCghpZGVudGl0eRgDIAEoCRJNCg91cGRhdGVfbWV0YWRhdGEYBCABKAsyNC50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5VcGRhdGVEZXBsb3ltZW50TWV0YWRhdGEiuQEKHFNldEN1cnJlbnREZXBsb3ltZW50UmVzcG9uc2USSwoXY3VycmVudF9kZXBsb3ltZW50X2luZm8YASABKAsyKi50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5EZXBsb3ltZW50SW5mbxJMChhwcmV2aW91c19kZXBsb3ltZW50X2luZm8YAiABKAsyKi50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5EZXBsb3ltZW50SW5mbyLlAQooU2V0V29ya2VyRGVwbG95bWVudEN1cnJlbnRWZXJzaW9uUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSFwoPZGVwbG95bWVudF9uYW1lGAIgASgJEhMKB3ZlcnNpb24YAyABKAlCAhgBEhAKCGJ1aWxkX2lkGAcgASgJEhYKDmNvbmZsaWN0X3Rva2VuGAQgASgMEhAKCGlkZW50aXR5GAUgASgJEiIKGmlnbm9yZV9taXNzaW5nX3Rhc2tfcXVldWVzGAYgASgIEhgKEGFsbG93X25vX3BvbGxlcnMYCSABKAgiuwEKKVNldFdvcmtlckRlcGxveW1lbnRDdXJyZW50VmVyc2lvblJlc3BvbnNlEhYKDmNvbmZsaWN0X3Rva2VuGAEgASgMEhwKEHByZXZpb3VzX3ZlcnNpb24YAiABKAlCAhgBElgKG3ByZXZpb3VzX2RlcGxveW1lbnRfdmVyc2lvbhgDIAEoCzIzLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRWZXJzaW9uIvkBCihTZXRXb3JrZXJEZXBsb3ltZW50UmFtcGluZ1ZlcnNpb25SZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIXCg9kZXBsb3ltZW50X25hbWUYAiABKAkSEwoHdmVyc2lvbhgDIAEoCUICGAESEAoIYnVpbGRfaWQYCCABKAkSEgoKcGVyY2VudGFnZRgEIAEoAhIWCg5jb25mbGljdF90b2tlbhgFIAEoDBIQCghpZGVudGl0eRgGIAEoCRIiChppZ25vcmVfbWlzc2luZ190YXNrX3F1ZXVlcxgHIAEoCBIYChBhbGxvd19ub19wb2xsZXJzGAogASgIItgBCilTZXRXb3JrZXJEZXBsb3ltZW50UmFtcGluZ1ZlcnNpb25SZXNwb25zZRIWCg5jb25mbGljdF90b2tlbhgBIAEoDBIcChBwcmV2aW91c192ZXJzaW9uGAIgASgJQgIYARJYChtwcmV2aW91c19kZXBsb3ltZW50X3ZlcnNpb24YBCABKAsyMy50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5Xb3JrZXJEZXBsb3ltZW50VmVyc2lvbhIbChNwcmV2aW91c19wZXJjZW50YWdlGAMgASgCIl0KHExpc3RXb3JrZXJEZXBsb3ltZW50c1JlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhEKCXBhZ2Vfc2l6ZRgCIAEoBRIXCg9uZXh0X3BhZ2VfdG9rZW4YAyABKAwinwUKHUxpc3RXb3JrZXJEZXBsb3ltZW50c1Jlc3BvbnNlEhcKD25leHRfcGFnZV90b2tlbhgBIAEoDBJyChJ3b3JrZXJfZGVwbG95bWVudHMYAiADKAsyVi50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxLkxpc3RXb3JrZXJEZXBsb3ltZW50c1Jlc3BvbnNlLldvcmtlckRlcGxveW1lbnRTdW1tYXJ5GvADChdXb3JrZXJEZXBsb3ltZW50U3VtbWFyeRIMCgRuYW1lGAEgASgJEi8KC2NyZWF0ZV90aW1lGAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBJBCg5yb3V0aW5nX2NvbmZpZxgDIAEoCzIpLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLlJvdXRpbmdDb25maWcSbwoWbGF0ZXN0X3ZlcnNpb25fc3VtbWFyeRgEIAEoCzJPLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRJbmZvLldvcmtlckRlcGxveW1lbnRWZXJzaW9uU3VtbWFyeRJwChdjdXJyZW50X3ZlcnNpb25fc3VtbWFyeRgFIAEoCzJPLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRJbmZvLldvcmtlckRlcGxveW1lbnRWZXJzaW9uU3VtbWFyeRJwChdyYW1waW5nX3ZlcnNpb25fc3VtbWFyeRgGIAEoCzJPLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRJbmZvLldvcmtlckRlcGxveW1lbnRWZXJzaW9uU3VtbWFyeSLIAQokRGVsZXRlV29ya2VyRGVwbG95bWVudFZlcnNpb25SZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRITCgd2ZXJzaW9uGAIgASgJQgIYARJPChJkZXBsb3ltZW50X3ZlcnNpb24YBSABKAsyMy50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5Xb3JrZXJEZXBsb3ltZW50VmVyc2lvbhIVCg1za2lwX2RyYWluYWdlGAMgASgIEhAKCGlkZW50aXR5GAQgASgJIicKJURlbGV0ZVdvcmtlckRlcGxveW1lbnRWZXJzaW9uUmVzcG9uc2UiXQodRGVsZXRlV29ya2VyRGVwbG95bWVudFJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhcKD2RlcGxveW1lbnRfbmFtZRgCIAEoCRIQCghpZGVudGl0eRgDIAEoCSIgCh5EZWxldGVXb3JrZXJEZXBsb3ltZW50UmVzcG9uc2UiogMKLFVwZGF0ZVdvcmtlckRlcGxveW1lbnRWZXJzaW9uTWV0YWRhdGFSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRITCgd2ZXJzaW9uGAIgASgJQgIYARJPChJkZXBsb3ltZW50X3ZlcnNpb24YBSABKAsyMy50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5Xb3JrZXJEZXBsb3ltZW50VmVyc2lvbhJ4Cg51cHNlcnRfZW50cmllcxgDIAMoCzJgLnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuVXBkYXRlV29ya2VyRGVwbG95bWVudFZlcnNpb25NZXRhZGF0YVJlcXVlc3QuVXBzZXJ0RW50cmllc0VudHJ5EhYKDnJlbW92ZV9lbnRyaWVzGAQgAygJEhAKCGlkZW50aXR5GAYgASgJGlUKElVwc2VydEVudHJpZXNFbnRyeRILCgNrZXkYASABKAkSLgoFdmFsdWUYAiABKAsyHy50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlBheWxvYWQ6AjgBIm4KLVVwZGF0ZVdvcmtlckRlcGxveW1lbnRWZXJzaW9uTWV0YWRhdGFSZXNwb25zZRI9CghtZXRhZGF0YRgBIAEoCzIrLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLlZlcnNpb25NZXRhZGF0YSK9AQohU2V0V29ya2VyRGVwbG95bWVudE1hbmFnZXJSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIXCg9kZXBsb3ltZW50X25hbWUYAiABKAkSGgoQbWFuYWdlcl9pZGVudGl0eRgDIAEoCUgAEg4KBHNlbGYYBCABKAhIABIWCg5jb25mbGljdF90b2tlbhgFIAEoDBIQCghpZGVudGl0eRgGIAEoCUIWChRuZXdfbWFuYWdlcl9pZGVudGl0eSJfCiJTZXRXb3JrZXJEZXBsb3ltZW50TWFuYWdlclJlc3BvbnNlEhYKDmNvbmZsaWN0X3Rva2VuGAEgASgMEiEKGXByZXZpb3VzX21hbmFnZXJfaWRlbnRpdHkYAiABKAkiRQobR2V0Q3VycmVudERlcGxveW1lbnRSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRITCgtzZXJpZXNfbmFtZRgCIAEoCSJrChxHZXRDdXJyZW50RGVwbG95bWVudFJlc3BvbnNlEksKF2N1cnJlbnRfZGVwbG95bWVudF9pbmZvGAEgASgLMioudGVtcG9yYWwuYXBpLmRlcGxveW1lbnQudjEuRGVwbG95bWVudEluZm8icQogR2V0RGVwbG95bWVudFJlYWNoYWJpbGl0eVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEjoKCmRlcGxveW1lbnQYAiABKAsyJi50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5EZXBsb3ltZW50IuMBCiFHZXREZXBsb3ltZW50UmVhY2hhYmlsaXR5UmVzcG9uc2USQwoPZGVwbG95bWVudF9pbmZvGAEgASgLMioudGVtcG9yYWwuYXBpLmRlcGxveW1lbnQudjEuRGVwbG95bWVudEluZm8SQwoMcmVhY2hhYmlsaXR5GAIgASgOMi0udGVtcG9yYWwuYXBpLmVudW1zLnYxLkRlcGxveW1lbnRSZWFjaGFiaWxpdHkSNAoQbGFzdF91cGRhdGVfdGltZRgDIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAitAEKGUNyZWF0ZVdvcmtmbG93UnVsZVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEjUKBHNwZWMYAiABKAsyJy50ZW1wb3JhbC5hcGkucnVsZXMudjEuV29ya2Zsb3dSdWxlU3BlYxISCgpmb3JjZV9zY2FuGAMgASgIEhIKCnJlcXVlc3RfaWQYBCABKAkSEAoIaWRlbnRpdHkYBSABKAkSEwoLZGVzY3JpcHRpb24YBiABKAkiXwoaQ3JlYXRlV29ya2Zsb3dSdWxlUmVzcG9uc2USMQoEcnVsZRgBIAEoCzIjLnRlbXBvcmFsLmFwaS5ydWxlcy52MS5Xb3JrZmxvd1J1bGUSDgoGam9iX2lkGAIgASgJIkEKG0Rlc2NyaWJlV29ya2Zsb3dSdWxlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSDwoHcnVsZV9pZBgCIAEoCSJRChxEZXNjcmliZVdvcmtmbG93UnVsZVJlc3BvbnNlEjEKBHJ1bGUYASABKAsyIy50ZW1wb3JhbC5hcGkucnVsZXMudjEuV29ya2Zsb3dSdWxlIj8KGURlbGV0ZVdvcmtmbG93UnVsZVJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEg8KB3J1bGVfaWQYAiABKAkiHAoaRGVsZXRlV29ya2Zsb3dSdWxlUmVzcG9uc2UiRgoYTGlzdFdvcmtmbG93UnVsZXNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIXCg9uZXh0X3BhZ2VfdG9rZW4YAiABKAwiaAoZTGlzdFdvcmtmbG93UnVsZXNSZXNwb25zZRIyCgVydWxlcxgBIAMoCzIjLnRlbXBvcmFsLmFwaS5ydWxlcy52MS5Xb3JrZmxvd1J1bGUSFwoPbmV4dF9wYWdlX3Rva2VuGAIgASgMIs4BChpUcmlnZ2VyV29ya2Zsb3dSdWxlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSPAoJZXhlY3V0aW9uGAIgASgLMikudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbhIMCgJpZBgEIAEoCUgAEjcKBHNwZWMYBSABKAsyJy50ZW1wb3JhbC5hcGkucnVsZXMudjEuV29ya2Zsb3dSdWxlU3BlY0gAEhAKCGlkZW50aXR5GAMgASgJQgYKBHJ1bGUiLgobVHJpZ2dlcldvcmtmbG93UnVsZVJlc3BvbnNlEg8KB2FwcGxpZWQYASABKAgihgEKHFJlY29yZFdvcmtlckhlYXJ0YmVhdFJlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhAKCGlkZW50aXR5GAIgASgJEkEKEHdvcmtlcl9oZWFydGJlYXQYAyADKAsyJy50ZW1wb3JhbC5hcGkud29ya2VyLnYxLldvcmtlckhlYXJ0YmVhdCIfCh1SZWNvcmRXb3JrZXJIZWFydGJlYXRSZXNwb25zZSJiChJMaXN0V29ya2Vyc1JlcXVlc3QSEQoJbmFtZXNwYWNlGAEgASgJEhEKCXBhZ2Vfc2l6ZRgCIAEoBRIXCg9uZXh0X3BhZ2VfdG9rZW4YAyABKAwSDQoFcXVlcnkYBCABKAkiaAoTTGlzdFdvcmtlcnNSZXNwb25zZRI4Cgx3b3JrZXJzX2luZm8YASADKAsyIi50ZW1wb3JhbC5hcGkud29ya2VyLnYxLldvcmtlckluZm8SFwoPbmV4dF9wYWdlX3Rva2VuGAIgASgMItUFChxVcGRhdGVUYXNrUXVldWVDb25maWdSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCRIQCghpZGVudGl0eRgCIAEoCRISCgp0YXNrX3F1ZXVlGAMgASgJEj0KD3Rhc2tfcXVldWVfdHlwZRgEIAEoDjIkLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5UYXNrUXVldWVUeXBlEm4KF3VwZGF0ZV9xdWV1ZV9yYXRlX2xpbWl0GAUgASgLMk0udGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5VcGRhdGVUYXNrUXVldWVDb25maWdSZXF1ZXN0LlJhdGVMaW1pdFVwZGF0ZRJ9CiZ1cGRhdGVfZmFpcm5lc3Nfa2V5X3JhdGVfbGltaXRfZGVmYXVsdBgGIAEoCzJNLnRlbXBvcmFsLmFwaS53b3JrZmxvd3NlcnZpY2UudjEuVXBkYXRlVGFza1F1ZXVlQ29uZmlnUmVxdWVzdC5SYXRlTGltaXRVcGRhdGUShAEKHXNldF9mYWlybmVzc193ZWlnaHRfb3ZlcnJpZGVzGAcgAygLMl0udGVtcG9yYWwuYXBpLndvcmtmbG93c2VydmljZS52MS5VcGRhdGVUYXNrUXVldWVDb25maWdSZXF1ZXN0LlNldEZhaXJuZXNzV2VpZ2h0T3ZlcnJpZGVzRW50cnkSJwofdW5zZXRfZmFpcm5lc3Nfd2VpZ2h0X292ZXJyaWRlcxgIIAMoCRpbCg9SYXRlTGltaXRVcGRhdGUSOAoKcmF0ZV9saW1pdBgBIAEoCzIkLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuUmF0ZUxpbWl0Eg4KBnJlYXNvbhgCIAEoCRpBCh9TZXRGYWlybmVzc1dlaWdodE92ZXJyaWRlc0VudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoAjoCOAEiWwodVXBkYXRlVGFza1F1ZXVlQ29uZmlnUmVzcG9uc2USOgoGY29uZmlnGAEgASgLMioudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UYXNrUXVldWVDb25maWciiQEKGEZldGNoV29ya2VyQ29uZmlnUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSEAoIaWRlbnRpdHkYAiABKAkSDgoGcmVhc29uGAMgASgJEjgKCHNlbGVjdG9yGAYgASgLMiYudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZXJTZWxlY3RvciJVChlGZXRjaFdvcmtlckNvbmZpZ1Jlc3BvbnNlEjgKDXdvcmtlcl9jb25maWcYASABKAsyIS50ZW1wb3JhbC5hcGkuc2RrLnYxLldvcmtlckNvbmZpZyL1AQoZVXBkYXRlV29ya2VyQ29uZmlnUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSEAoIaWRlbnRpdHkYAiABKAkSDgoGcmVhc29uGAMgASgJEjgKDXdvcmtlcl9jb25maWcYBCABKAsyIS50ZW1wb3JhbC5hcGkuc2RrLnYxLldvcmtlckNvbmZpZxIvCgt1cGRhdGVfbWFzaxgFIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5GaWVsZE1hc2sSOAoIc2VsZWN0b3IYBiABKAsyJi50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLldvcmtlclNlbGVjdG9yImQKGlVwZGF0ZVdvcmtlckNvbmZpZ1Jlc3BvbnNlEjoKDXdvcmtlcl9jb25maWcYASABKAsyIS50ZW1wb3JhbC5hcGkuc2RrLnYxLldvcmtlckNvbmZpZ0gAQgoKCHJlc3BvbnNlIkcKFURlc2NyaWJlV29ya2VyUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSGwoTd29ya2VyX2luc3RhbmNlX2tleRgCIAEoCSJRChZEZXNjcmliZVdvcmtlclJlc3BvbnNlEjcKC3dvcmtlcl9pbmZvGAEgASgLMiIudGVtcG9yYWwuYXBpLndvcmtlci52MS5Xb3JrZXJJbmZvQr4BCiJpby50ZW1wb3JhbC5hcGkud29ya2Zsb3dzZXJ2aWNlLnYxQhRSZXF1ZXN0UmVzcG9uc2VQcm90b1ABWjVnby50ZW1wb3JhbC5pby9hcGkvd29ya2Zsb3dzZXJ2aWNlL3YxO3dvcmtmbG93c2VydmljZaoCIVRlbXBvcmFsaW8uQXBpLldvcmtmbG93U2VydmljZS5WMeoCJFRlbXBvcmFsaW86OkFwaTo6V29ya2Zsb3dTZXJ2aWNlOjpWMWIGcHJvdG8z", [file_temporal_api_enums_v1_batch_operation, file_temporal_api_enums_v1_common, file_temporal_api_enums_v1_workflow, file_temporal_api_enums_v1_namespace, file_temporal_api_enums_v1_failed_cause, file_temporal_api_enums_v1_query, file_temporal_api_enums_v1_reset, file_temporal_api_enums_v1_task_queue, file_temporal_api_enums_v1_deployment, file_temporal_api_enums_v1_update, file_temporal_api_activity_v1_message, file_temporal_api_common_v1_message, file_temporal_api_history_v1_message, file_temporal_api_workflow_v1_message, file_temporal_api_command_v1_message, file_temporal_api_deployment_v1_message, file_temporal_api_failure_v1_message, file_temporal_api_filter_v1_message, file_temporal_api_protocol_v1_message, file_temporal_api_namespace_v1_message, file_temporal_api_query_v1_message, file_temporal_api_replication_v1_message, file_temporal_api_rules_v1_message, file_temporal_api_sdk_v1_worker_config, file_temporal_api_schedule_v1_message, file_temporal_api_taskqueue_v1_message, file_temporal_api_update_v1_message, file_temporal_api_version_v1_message, file_temporal_api_batch_v1_message, file_temporal_api_sdk_v1_task_complete_metadata, file_temporal_api_sdk_v1_user_metadata, file_temporal_api_nexus_v1_message, file_temporal_api_worker_v1_message, file_google_protobuf_duration, file_google_protobuf_field_mask, file_google_protobuf_timestamp]);
43
+ /**
44
+ * Describes the message temporal.api.workflowservice.v1.RegisterNamespaceRequest.
45
+ * Use `create(RegisterNamespaceRequestSchema)` to create a new message.
46
+ */
47
+ export const RegisterNamespaceRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 0);
48
+ /**
49
+ * Describes the message temporal.api.workflowservice.v1.RegisterNamespaceResponse.
50
+ * Use `create(RegisterNamespaceResponseSchema)` to create a new message.
51
+ */
52
+ export const RegisterNamespaceResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 1);
53
+ /**
54
+ * Describes the message temporal.api.workflowservice.v1.ListNamespacesRequest.
55
+ * Use `create(ListNamespacesRequestSchema)` to create a new message.
56
+ */
57
+ export const ListNamespacesRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 2);
58
+ /**
59
+ * Describes the message temporal.api.workflowservice.v1.ListNamespacesResponse.
60
+ * Use `create(ListNamespacesResponseSchema)` to create a new message.
61
+ */
62
+ export const ListNamespacesResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 3);
63
+ /**
64
+ * Describes the message temporal.api.workflowservice.v1.DescribeNamespaceRequest.
65
+ * Use `create(DescribeNamespaceRequestSchema)` to create a new message.
66
+ */
67
+ export const DescribeNamespaceRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 4);
68
+ /**
69
+ * Describes the message temporal.api.workflowservice.v1.DescribeNamespaceResponse.
70
+ * Use `create(DescribeNamespaceResponseSchema)` to create a new message.
71
+ */
72
+ export const DescribeNamespaceResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 5);
73
+ /**
74
+ * Describes the message temporal.api.workflowservice.v1.UpdateNamespaceRequest.
75
+ * Use `create(UpdateNamespaceRequestSchema)` to create a new message.
76
+ */
77
+ export const UpdateNamespaceRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 6);
78
+ /**
79
+ * Describes the message temporal.api.workflowservice.v1.UpdateNamespaceResponse.
80
+ * Use `create(UpdateNamespaceResponseSchema)` to create a new message.
81
+ */
82
+ export const UpdateNamespaceResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 7);
83
+ /**
84
+ * Describes the message temporal.api.workflowservice.v1.DeprecateNamespaceRequest.
85
+ * Use `create(DeprecateNamespaceRequestSchema)` to create a new message.
86
+ */
87
+ export const DeprecateNamespaceRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 8);
88
+ /**
89
+ * Describes the message temporal.api.workflowservice.v1.DeprecateNamespaceResponse.
90
+ * Use `create(DeprecateNamespaceResponseSchema)` to create a new message.
91
+ */
92
+ export const DeprecateNamespaceResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 9);
93
+ /**
94
+ * Describes the message temporal.api.workflowservice.v1.StartWorkflowExecutionRequest.
95
+ * Use `create(StartWorkflowExecutionRequestSchema)` to create a new message.
96
+ */
97
+ export const StartWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 10);
98
+ /**
99
+ * Describes the message temporal.api.workflowservice.v1.StartWorkflowExecutionResponse.
100
+ * Use `create(StartWorkflowExecutionResponseSchema)` to create a new message.
101
+ */
102
+ export const StartWorkflowExecutionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 11);
103
+ /**
104
+ * Describes the message temporal.api.workflowservice.v1.GetWorkflowExecutionHistoryRequest.
105
+ * Use `create(GetWorkflowExecutionHistoryRequestSchema)` to create a new message.
106
+ */
107
+ export const GetWorkflowExecutionHistoryRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 12);
108
+ /**
109
+ * Describes the message temporal.api.workflowservice.v1.GetWorkflowExecutionHistoryResponse.
110
+ * Use `create(GetWorkflowExecutionHistoryResponseSchema)` to create a new message.
111
+ */
112
+ export const GetWorkflowExecutionHistoryResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 13);
113
+ /**
114
+ * Describes the message temporal.api.workflowservice.v1.GetWorkflowExecutionHistoryReverseRequest.
115
+ * Use `create(GetWorkflowExecutionHistoryReverseRequestSchema)` to create a new message.
116
+ */
117
+ export const GetWorkflowExecutionHistoryReverseRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 14);
118
+ /**
119
+ * Describes the message temporal.api.workflowservice.v1.GetWorkflowExecutionHistoryReverseResponse.
120
+ * Use `create(GetWorkflowExecutionHistoryReverseResponseSchema)` to create a new message.
121
+ */
122
+ export const GetWorkflowExecutionHistoryReverseResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 15);
123
+ /**
124
+ * Describes the message temporal.api.workflowservice.v1.PollWorkflowTaskQueueRequest.
125
+ * Use `create(PollWorkflowTaskQueueRequestSchema)` to create a new message.
126
+ */
127
+ export const PollWorkflowTaskQueueRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 16);
128
+ /**
129
+ * Describes the message temporal.api.workflowservice.v1.PollWorkflowTaskQueueResponse.
130
+ * Use `create(PollWorkflowTaskQueueResponseSchema)` to create a new message.
131
+ */
132
+ export const PollWorkflowTaskQueueResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 17);
133
+ /**
134
+ * Describes the message temporal.api.workflowservice.v1.RespondWorkflowTaskCompletedRequest.
135
+ * Use `create(RespondWorkflowTaskCompletedRequestSchema)` to create a new message.
136
+ */
137
+ export const RespondWorkflowTaskCompletedRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 18);
138
+ /**
139
+ * Describes the message temporal.api.workflowservice.v1.RespondWorkflowTaskCompletedRequest.Capabilities.
140
+ * Use `create(RespondWorkflowTaskCompletedRequest_CapabilitiesSchema)` to create a new message.
141
+ */
142
+ export const RespondWorkflowTaskCompletedRequest_CapabilitiesSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 18, 0);
143
+ /**
144
+ * Describes the message temporal.api.workflowservice.v1.RespondWorkflowTaskCompletedResponse.
145
+ * Use `create(RespondWorkflowTaskCompletedResponseSchema)` to create a new message.
146
+ */
147
+ export const RespondWorkflowTaskCompletedResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 19);
148
+ /**
149
+ * Describes the message temporal.api.workflowservice.v1.RespondWorkflowTaskFailedRequest.
150
+ * Use `create(RespondWorkflowTaskFailedRequestSchema)` to create a new message.
151
+ */
152
+ export const RespondWorkflowTaskFailedRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 20);
153
+ /**
154
+ * Describes the message temporal.api.workflowservice.v1.RespondWorkflowTaskFailedResponse.
155
+ * Use `create(RespondWorkflowTaskFailedResponseSchema)` to create a new message.
156
+ */
157
+ export const RespondWorkflowTaskFailedResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 21);
158
+ /**
159
+ * Describes the message temporal.api.workflowservice.v1.PollActivityTaskQueueRequest.
160
+ * Use `create(PollActivityTaskQueueRequestSchema)` to create a new message.
161
+ */
162
+ export const PollActivityTaskQueueRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 22);
163
+ /**
164
+ * Describes the message temporal.api.workflowservice.v1.PollActivityTaskQueueResponse.
165
+ * Use `create(PollActivityTaskQueueResponseSchema)` to create a new message.
166
+ */
167
+ export const PollActivityTaskQueueResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 23);
168
+ /**
169
+ * Describes the message temporal.api.workflowservice.v1.RecordActivityTaskHeartbeatRequest.
170
+ * Use `create(RecordActivityTaskHeartbeatRequestSchema)` to create a new message.
171
+ */
172
+ export const RecordActivityTaskHeartbeatRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 24);
173
+ /**
174
+ * Describes the message temporal.api.workflowservice.v1.RecordActivityTaskHeartbeatResponse.
175
+ * Use `create(RecordActivityTaskHeartbeatResponseSchema)` to create a new message.
176
+ */
177
+ export const RecordActivityTaskHeartbeatResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 25);
178
+ /**
179
+ * Describes the message temporal.api.workflowservice.v1.RecordActivityTaskHeartbeatByIdRequest.
180
+ * Use `create(RecordActivityTaskHeartbeatByIdRequestSchema)` to create a new message.
181
+ */
182
+ export const RecordActivityTaskHeartbeatByIdRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 26);
183
+ /**
184
+ * Describes the message temporal.api.workflowservice.v1.RecordActivityTaskHeartbeatByIdResponse.
185
+ * Use `create(RecordActivityTaskHeartbeatByIdResponseSchema)` to create a new message.
186
+ */
187
+ export const RecordActivityTaskHeartbeatByIdResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 27);
188
+ /**
189
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskCompletedRequest.
190
+ * Use `create(RespondActivityTaskCompletedRequestSchema)` to create a new message.
191
+ */
192
+ export const RespondActivityTaskCompletedRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 28);
193
+ /**
194
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskCompletedResponse.
195
+ * Use `create(RespondActivityTaskCompletedResponseSchema)` to create a new message.
196
+ */
197
+ export const RespondActivityTaskCompletedResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 29);
198
+ /**
199
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskCompletedByIdRequest.
200
+ * Use `create(RespondActivityTaskCompletedByIdRequestSchema)` to create a new message.
201
+ */
202
+ export const RespondActivityTaskCompletedByIdRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 30);
203
+ /**
204
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskCompletedByIdResponse.
205
+ * Use `create(RespondActivityTaskCompletedByIdResponseSchema)` to create a new message.
206
+ */
207
+ export const RespondActivityTaskCompletedByIdResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 31);
208
+ /**
209
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskFailedRequest.
210
+ * Use `create(RespondActivityTaskFailedRequestSchema)` to create a new message.
211
+ */
212
+ export const RespondActivityTaskFailedRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 32);
213
+ /**
214
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskFailedResponse.
215
+ * Use `create(RespondActivityTaskFailedResponseSchema)` to create a new message.
216
+ */
217
+ export const RespondActivityTaskFailedResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 33);
218
+ /**
219
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskFailedByIdRequest.
220
+ * Use `create(RespondActivityTaskFailedByIdRequestSchema)` to create a new message.
221
+ */
222
+ export const RespondActivityTaskFailedByIdRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 34);
223
+ /**
224
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskFailedByIdResponse.
225
+ * Use `create(RespondActivityTaskFailedByIdResponseSchema)` to create a new message.
226
+ */
227
+ export const RespondActivityTaskFailedByIdResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 35);
228
+ /**
229
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskCanceledRequest.
230
+ * Use `create(RespondActivityTaskCanceledRequestSchema)` to create a new message.
231
+ */
232
+ export const RespondActivityTaskCanceledRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 36);
233
+ /**
234
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskCanceledResponse.
235
+ * Use `create(RespondActivityTaskCanceledResponseSchema)` to create a new message.
236
+ */
237
+ export const RespondActivityTaskCanceledResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 37);
238
+ /**
239
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskCanceledByIdRequest.
240
+ * Use `create(RespondActivityTaskCanceledByIdRequestSchema)` to create a new message.
241
+ */
242
+ export const RespondActivityTaskCanceledByIdRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 38);
243
+ /**
244
+ * Describes the message temporal.api.workflowservice.v1.RespondActivityTaskCanceledByIdResponse.
245
+ * Use `create(RespondActivityTaskCanceledByIdResponseSchema)` to create a new message.
246
+ */
247
+ export const RespondActivityTaskCanceledByIdResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 39);
248
+ /**
249
+ * Describes the message temporal.api.workflowservice.v1.RequestCancelWorkflowExecutionRequest.
250
+ * Use `create(RequestCancelWorkflowExecutionRequestSchema)` to create a new message.
251
+ */
252
+ export const RequestCancelWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 40);
253
+ /**
254
+ * Describes the message temporal.api.workflowservice.v1.RequestCancelWorkflowExecutionResponse.
255
+ * Use `create(RequestCancelWorkflowExecutionResponseSchema)` to create a new message.
256
+ */
257
+ export const RequestCancelWorkflowExecutionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 41);
258
+ /**
259
+ * Describes the message temporal.api.workflowservice.v1.SignalWorkflowExecutionRequest.
260
+ * Use `create(SignalWorkflowExecutionRequestSchema)` to create a new message.
261
+ */
262
+ export const SignalWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 42);
263
+ /**
264
+ * Describes the message temporal.api.workflowservice.v1.SignalWorkflowExecutionResponse.
265
+ * Use `create(SignalWorkflowExecutionResponseSchema)` to create a new message.
266
+ */
267
+ export const SignalWorkflowExecutionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 43);
268
+ /**
269
+ * Describes the message temporal.api.workflowservice.v1.SignalWithStartWorkflowExecutionRequest.
270
+ * Use `create(SignalWithStartWorkflowExecutionRequestSchema)` to create a new message.
271
+ */
272
+ export const SignalWithStartWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 44);
273
+ /**
274
+ * Describes the message temporal.api.workflowservice.v1.SignalWithStartWorkflowExecutionResponse.
275
+ * Use `create(SignalWithStartWorkflowExecutionResponseSchema)` to create a new message.
276
+ */
277
+ export const SignalWithStartWorkflowExecutionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 45);
278
+ /**
279
+ * Describes the message temporal.api.workflowservice.v1.ResetWorkflowExecutionRequest.
280
+ * Use `create(ResetWorkflowExecutionRequestSchema)` to create a new message.
281
+ */
282
+ export const ResetWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 46);
283
+ /**
284
+ * Describes the message temporal.api.workflowservice.v1.ResetWorkflowExecutionResponse.
285
+ * Use `create(ResetWorkflowExecutionResponseSchema)` to create a new message.
286
+ */
287
+ export const ResetWorkflowExecutionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 47);
288
+ /**
289
+ * Describes the message temporal.api.workflowservice.v1.TerminateWorkflowExecutionRequest.
290
+ * Use `create(TerminateWorkflowExecutionRequestSchema)` to create a new message.
291
+ */
292
+ export const TerminateWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 48);
293
+ /**
294
+ * Describes the message temporal.api.workflowservice.v1.TerminateWorkflowExecutionResponse.
295
+ * Use `create(TerminateWorkflowExecutionResponseSchema)` to create a new message.
296
+ */
297
+ export const TerminateWorkflowExecutionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 49);
298
+ /**
299
+ * Describes the message temporal.api.workflowservice.v1.DeleteWorkflowExecutionRequest.
300
+ * Use `create(DeleteWorkflowExecutionRequestSchema)` to create a new message.
301
+ */
302
+ export const DeleteWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 50);
303
+ /**
304
+ * Describes the message temporal.api.workflowservice.v1.DeleteWorkflowExecutionResponse.
305
+ * Use `create(DeleteWorkflowExecutionResponseSchema)` to create a new message.
306
+ */
307
+ export const DeleteWorkflowExecutionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 51);
308
+ /**
309
+ * Describes the message temporal.api.workflowservice.v1.ListOpenWorkflowExecutionsRequest.
310
+ * Use `create(ListOpenWorkflowExecutionsRequestSchema)` to create a new message.
311
+ */
312
+ export const ListOpenWorkflowExecutionsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 52);
313
+ /**
314
+ * Describes the message temporal.api.workflowservice.v1.ListOpenWorkflowExecutionsResponse.
315
+ * Use `create(ListOpenWorkflowExecutionsResponseSchema)` to create a new message.
316
+ */
317
+ export const ListOpenWorkflowExecutionsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 53);
318
+ /**
319
+ * Describes the message temporal.api.workflowservice.v1.ListClosedWorkflowExecutionsRequest.
320
+ * Use `create(ListClosedWorkflowExecutionsRequestSchema)` to create a new message.
321
+ */
322
+ export const ListClosedWorkflowExecutionsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 54);
323
+ /**
324
+ * Describes the message temporal.api.workflowservice.v1.ListClosedWorkflowExecutionsResponse.
325
+ * Use `create(ListClosedWorkflowExecutionsResponseSchema)` to create a new message.
326
+ */
327
+ export const ListClosedWorkflowExecutionsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 55);
328
+ /**
329
+ * Describes the message temporal.api.workflowservice.v1.ListWorkflowExecutionsRequest.
330
+ * Use `create(ListWorkflowExecutionsRequestSchema)` to create a new message.
331
+ */
332
+ export const ListWorkflowExecutionsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 56);
333
+ /**
334
+ * Describes the message temporal.api.workflowservice.v1.ListWorkflowExecutionsResponse.
335
+ * Use `create(ListWorkflowExecutionsResponseSchema)` to create a new message.
336
+ */
337
+ export const ListWorkflowExecutionsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 57);
338
+ /**
339
+ * Describes the message temporal.api.workflowservice.v1.ListArchivedWorkflowExecutionsRequest.
340
+ * Use `create(ListArchivedWorkflowExecutionsRequestSchema)` to create a new message.
341
+ */
342
+ export const ListArchivedWorkflowExecutionsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 58);
343
+ /**
344
+ * Describes the message temporal.api.workflowservice.v1.ListArchivedWorkflowExecutionsResponse.
345
+ * Use `create(ListArchivedWorkflowExecutionsResponseSchema)` to create a new message.
346
+ */
347
+ export const ListArchivedWorkflowExecutionsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 59);
348
+ /**
349
+ * Describes the message temporal.api.workflowservice.v1.ScanWorkflowExecutionsRequest.
350
+ * Use `create(ScanWorkflowExecutionsRequestSchema)` to create a new message.
351
+ */
352
+ export const ScanWorkflowExecutionsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 60);
353
+ /**
354
+ * Describes the message temporal.api.workflowservice.v1.ScanWorkflowExecutionsResponse.
355
+ * Use `create(ScanWorkflowExecutionsResponseSchema)` to create a new message.
356
+ */
357
+ export const ScanWorkflowExecutionsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 61);
358
+ /**
359
+ * Describes the message temporal.api.workflowservice.v1.CountWorkflowExecutionsRequest.
360
+ * Use `create(CountWorkflowExecutionsRequestSchema)` to create a new message.
361
+ */
362
+ export const CountWorkflowExecutionsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 62);
363
+ /**
364
+ * Describes the message temporal.api.workflowservice.v1.CountWorkflowExecutionsResponse.
365
+ * Use `create(CountWorkflowExecutionsResponseSchema)` to create a new message.
366
+ */
367
+ export const CountWorkflowExecutionsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 63);
368
+ /**
369
+ * Describes the message temporal.api.workflowservice.v1.CountWorkflowExecutionsResponse.AggregationGroup.
370
+ * Use `create(CountWorkflowExecutionsResponse_AggregationGroupSchema)` to create a new message.
371
+ */
372
+ export const CountWorkflowExecutionsResponse_AggregationGroupSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 63, 0);
373
+ /**
374
+ * Describes the message temporal.api.workflowservice.v1.GetSearchAttributesRequest.
375
+ * Use `create(GetSearchAttributesRequestSchema)` to create a new message.
376
+ */
377
+ export const GetSearchAttributesRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 64);
378
+ /**
379
+ * Describes the message temporal.api.workflowservice.v1.GetSearchAttributesResponse.
380
+ * Use `create(GetSearchAttributesResponseSchema)` to create a new message.
381
+ */
382
+ export const GetSearchAttributesResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 65);
383
+ /**
384
+ * Describes the message temporal.api.workflowservice.v1.RespondQueryTaskCompletedRequest.
385
+ * Use `create(RespondQueryTaskCompletedRequestSchema)` to create a new message.
386
+ */
387
+ export const RespondQueryTaskCompletedRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 66);
388
+ /**
389
+ * Describes the message temporal.api.workflowservice.v1.RespondQueryTaskCompletedResponse.
390
+ * Use `create(RespondQueryTaskCompletedResponseSchema)` to create a new message.
391
+ */
392
+ export const RespondQueryTaskCompletedResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 67);
393
+ /**
394
+ * Describes the message temporal.api.workflowservice.v1.ResetStickyTaskQueueRequest.
395
+ * Use `create(ResetStickyTaskQueueRequestSchema)` to create a new message.
396
+ */
397
+ export const ResetStickyTaskQueueRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 68);
398
+ /**
399
+ * Describes the message temporal.api.workflowservice.v1.ResetStickyTaskQueueResponse.
400
+ * Use `create(ResetStickyTaskQueueResponseSchema)` to create a new message.
401
+ */
402
+ export const ResetStickyTaskQueueResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 69);
403
+ /**
404
+ * Describes the message temporal.api.workflowservice.v1.ShutdownWorkerRequest.
405
+ * Use `create(ShutdownWorkerRequestSchema)` to create a new message.
406
+ */
407
+ export const ShutdownWorkerRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 70);
408
+ /**
409
+ * Describes the message temporal.api.workflowservice.v1.ShutdownWorkerResponse.
410
+ * Use `create(ShutdownWorkerResponseSchema)` to create a new message.
411
+ */
412
+ export const ShutdownWorkerResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 71);
413
+ /**
414
+ * Describes the message temporal.api.workflowservice.v1.QueryWorkflowRequest.
415
+ * Use `create(QueryWorkflowRequestSchema)` to create a new message.
416
+ */
417
+ export const QueryWorkflowRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 72);
418
+ /**
419
+ * Describes the message temporal.api.workflowservice.v1.QueryWorkflowResponse.
420
+ * Use `create(QueryWorkflowResponseSchema)` to create a new message.
421
+ */
422
+ export const QueryWorkflowResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 73);
423
+ /**
424
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkflowExecutionRequest.
425
+ * Use `create(DescribeWorkflowExecutionRequestSchema)` to create a new message.
426
+ */
427
+ export const DescribeWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 74);
428
+ /**
429
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkflowExecutionResponse.
430
+ * Use `create(DescribeWorkflowExecutionResponseSchema)` to create a new message.
431
+ */
432
+ export const DescribeWorkflowExecutionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 75);
433
+ /**
434
+ * Describes the message temporal.api.workflowservice.v1.DescribeTaskQueueRequest.
435
+ * Use `create(DescribeTaskQueueRequestSchema)` to create a new message.
436
+ */
437
+ export const DescribeTaskQueueRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 76);
438
+ /**
439
+ * Describes the message temporal.api.workflowservice.v1.DescribeTaskQueueResponse.
440
+ * Use `create(DescribeTaskQueueResponseSchema)` to create a new message.
441
+ */
442
+ export const DescribeTaskQueueResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 77);
443
+ /**
444
+ * Describes the message temporal.api.workflowservice.v1.DescribeTaskQueueResponse.EffectiveRateLimit.
445
+ * Use `create(DescribeTaskQueueResponse_EffectiveRateLimitSchema)` to create a new message.
446
+ */
447
+ export const DescribeTaskQueueResponse_EffectiveRateLimitSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 77, 0);
448
+ /**
449
+ * Describes the message temporal.api.workflowservice.v1.GetClusterInfoRequest.
450
+ * Use `create(GetClusterInfoRequestSchema)` to create a new message.
451
+ */
452
+ export const GetClusterInfoRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 78);
453
+ /**
454
+ * Describes the message temporal.api.workflowservice.v1.GetClusterInfoResponse.
455
+ * Use `create(GetClusterInfoResponseSchema)` to create a new message.
456
+ */
457
+ export const GetClusterInfoResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 79);
458
+ /**
459
+ * Describes the message temporal.api.workflowservice.v1.GetSystemInfoRequest.
460
+ * Use `create(GetSystemInfoRequestSchema)` to create a new message.
461
+ */
462
+ export const GetSystemInfoRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 80);
463
+ /**
464
+ * Describes the message temporal.api.workflowservice.v1.GetSystemInfoResponse.
465
+ * Use `create(GetSystemInfoResponseSchema)` to create a new message.
466
+ */
467
+ export const GetSystemInfoResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 81);
468
+ /**
469
+ * Describes the message temporal.api.workflowservice.v1.GetSystemInfoResponse.Capabilities.
470
+ * Use `create(GetSystemInfoResponse_CapabilitiesSchema)` to create a new message.
471
+ */
472
+ export const GetSystemInfoResponse_CapabilitiesSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 81, 0);
473
+ /**
474
+ * Describes the message temporal.api.workflowservice.v1.ListTaskQueuePartitionsRequest.
475
+ * Use `create(ListTaskQueuePartitionsRequestSchema)` to create a new message.
476
+ */
477
+ export const ListTaskQueuePartitionsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 82);
478
+ /**
479
+ * Describes the message temporal.api.workflowservice.v1.ListTaskQueuePartitionsResponse.
480
+ * Use `create(ListTaskQueuePartitionsResponseSchema)` to create a new message.
481
+ */
482
+ export const ListTaskQueuePartitionsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 83);
483
+ /**
484
+ * Describes the message temporal.api.workflowservice.v1.CreateScheduleRequest.
485
+ * Use `create(CreateScheduleRequestSchema)` to create a new message.
486
+ */
487
+ export const CreateScheduleRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 84);
488
+ /**
489
+ * Describes the message temporal.api.workflowservice.v1.CreateScheduleResponse.
490
+ * Use `create(CreateScheduleResponseSchema)` to create a new message.
491
+ */
492
+ export const CreateScheduleResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 85);
493
+ /**
494
+ * Describes the message temporal.api.workflowservice.v1.DescribeScheduleRequest.
495
+ * Use `create(DescribeScheduleRequestSchema)` to create a new message.
496
+ */
497
+ export const DescribeScheduleRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 86);
498
+ /**
499
+ * Describes the message temporal.api.workflowservice.v1.DescribeScheduleResponse.
500
+ * Use `create(DescribeScheduleResponseSchema)` to create a new message.
501
+ */
502
+ export const DescribeScheduleResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 87);
503
+ /**
504
+ * Describes the message temporal.api.workflowservice.v1.UpdateScheduleRequest.
505
+ * Use `create(UpdateScheduleRequestSchema)` to create a new message.
506
+ */
507
+ export const UpdateScheduleRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 88);
508
+ /**
509
+ * Describes the message temporal.api.workflowservice.v1.UpdateScheduleResponse.
510
+ * Use `create(UpdateScheduleResponseSchema)` to create a new message.
511
+ */
512
+ export const UpdateScheduleResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 89);
513
+ /**
514
+ * Describes the message temporal.api.workflowservice.v1.PatchScheduleRequest.
515
+ * Use `create(PatchScheduleRequestSchema)` to create a new message.
516
+ */
517
+ export const PatchScheduleRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 90);
518
+ /**
519
+ * Describes the message temporal.api.workflowservice.v1.PatchScheduleResponse.
520
+ * Use `create(PatchScheduleResponseSchema)` to create a new message.
521
+ */
522
+ export const PatchScheduleResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 91);
523
+ /**
524
+ * Describes the message temporal.api.workflowservice.v1.ListScheduleMatchingTimesRequest.
525
+ * Use `create(ListScheduleMatchingTimesRequestSchema)` to create a new message.
526
+ */
527
+ export const ListScheduleMatchingTimesRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 92);
528
+ /**
529
+ * Describes the message temporal.api.workflowservice.v1.ListScheduleMatchingTimesResponse.
530
+ * Use `create(ListScheduleMatchingTimesResponseSchema)` to create a new message.
531
+ */
532
+ export const ListScheduleMatchingTimesResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 93);
533
+ /**
534
+ * Describes the message temporal.api.workflowservice.v1.DeleteScheduleRequest.
535
+ * Use `create(DeleteScheduleRequestSchema)` to create a new message.
536
+ */
537
+ export const DeleteScheduleRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 94);
538
+ /**
539
+ * Describes the message temporal.api.workflowservice.v1.DeleteScheduleResponse.
540
+ * Use `create(DeleteScheduleResponseSchema)` to create a new message.
541
+ */
542
+ export const DeleteScheduleResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 95);
543
+ /**
544
+ * Describes the message temporal.api.workflowservice.v1.ListSchedulesRequest.
545
+ * Use `create(ListSchedulesRequestSchema)` to create a new message.
546
+ */
547
+ export const ListSchedulesRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 96);
548
+ /**
549
+ * Describes the message temporal.api.workflowservice.v1.ListSchedulesResponse.
550
+ * Use `create(ListSchedulesResponseSchema)` to create a new message.
551
+ */
552
+ export const ListSchedulesResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 97);
553
+ /**
554
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.
555
+ * Use `create(UpdateWorkerBuildIdCompatibilityRequestSchema)` to create a new message.
556
+ */
557
+ export const UpdateWorkerBuildIdCompatibilityRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 98);
558
+ /**
559
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersion.
560
+ * Use `create(UpdateWorkerBuildIdCompatibilityRequest_AddNewCompatibleVersionSchema)` to create a new message.
561
+ */
562
+ export const UpdateWorkerBuildIdCompatibilityRequest_AddNewCompatibleVersionSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 98, 0);
563
+ /**
564
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.MergeSets.
565
+ * Use `create(UpdateWorkerBuildIdCompatibilityRequest_MergeSetsSchema)` to create a new message.
566
+ */
567
+ export const UpdateWorkerBuildIdCompatibilityRequest_MergeSetsSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 98, 1);
568
+ /**
569
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityResponse.
570
+ * Use `create(UpdateWorkerBuildIdCompatibilityResponseSchema)` to create a new message.
571
+ */
572
+ export const UpdateWorkerBuildIdCompatibilityResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 99);
573
+ /**
574
+ * Describes the message temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityRequest.
575
+ * Use `create(GetWorkerBuildIdCompatibilityRequestSchema)` to create a new message.
576
+ */
577
+ export const GetWorkerBuildIdCompatibilityRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 100);
578
+ /**
579
+ * Describes the message temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.
580
+ * Use `create(GetWorkerBuildIdCompatibilityResponseSchema)` to create a new message.
581
+ */
582
+ export const GetWorkerBuildIdCompatibilityResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 101);
583
+ /**
584
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerVersioningRulesRequest.
585
+ * Use `create(UpdateWorkerVersioningRulesRequestSchema)` to create a new message.
586
+ */
587
+ export const UpdateWorkerVersioningRulesRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 102);
588
+ /**
589
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerVersioningRulesRequest.InsertBuildIdAssignmentRule.
590
+ * Use `create(UpdateWorkerVersioningRulesRequest_InsertBuildIdAssignmentRuleSchema)` to create a new message.
591
+ */
592
+ export const UpdateWorkerVersioningRulesRequest_InsertBuildIdAssignmentRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 102, 0);
593
+ /**
594
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerVersioningRulesRequest.ReplaceBuildIdAssignmentRule.
595
+ * Use `create(UpdateWorkerVersioningRulesRequest_ReplaceBuildIdAssignmentRuleSchema)` to create a new message.
596
+ */
597
+ export const UpdateWorkerVersioningRulesRequest_ReplaceBuildIdAssignmentRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 102, 1);
598
+ /**
599
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerVersioningRulesRequest.DeleteBuildIdAssignmentRule.
600
+ * Use `create(UpdateWorkerVersioningRulesRequest_DeleteBuildIdAssignmentRuleSchema)` to create a new message.
601
+ */
602
+ export const UpdateWorkerVersioningRulesRequest_DeleteBuildIdAssignmentRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 102, 2);
603
+ /**
604
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerVersioningRulesRequest.AddCompatibleBuildIdRedirectRule.
605
+ * Use `create(UpdateWorkerVersioningRulesRequest_AddCompatibleBuildIdRedirectRuleSchema)` to create a new message.
606
+ */
607
+ export const UpdateWorkerVersioningRulesRequest_AddCompatibleBuildIdRedirectRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 102, 3);
608
+ /**
609
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerVersioningRulesRequest.ReplaceCompatibleBuildIdRedirectRule.
610
+ * Use `create(UpdateWorkerVersioningRulesRequest_ReplaceCompatibleBuildIdRedirectRuleSchema)` to create a new message.
611
+ */
612
+ export const UpdateWorkerVersioningRulesRequest_ReplaceCompatibleBuildIdRedirectRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 102, 4);
613
+ /**
614
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerVersioningRulesRequest.DeleteCompatibleBuildIdRedirectRule.
615
+ * Use `create(UpdateWorkerVersioningRulesRequest_DeleteCompatibleBuildIdRedirectRuleSchema)` to create a new message.
616
+ */
617
+ export const UpdateWorkerVersioningRulesRequest_DeleteCompatibleBuildIdRedirectRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 102, 5);
618
+ /**
619
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerVersioningRulesRequest.CommitBuildId.
620
+ * Use `create(UpdateWorkerVersioningRulesRequest_CommitBuildIdSchema)` to create a new message.
621
+ */
622
+ export const UpdateWorkerVersioningRulesRequest_CommitBuildIdSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 102, 6);
623
+ /**
624
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerVersioningRulesResponse.
625
+ * Use `create(UpdateWorkerVersioningRulesResponseSchema)` to create a new message.
626
+ */
627
+ export const UpdateWorkerVersioningRulesResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 103);
628
+ /**
629
+ * Describes the message temporal.api.workflowservice.v1.GetWorkerVersioningRulesRequest.
630
+ * Use `create(GetWorkerVersioningRulesRequestSchema)` to create a new message.
631
+ */
632
+ export const GetWorkerVersioningRulesRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 104);
633
+ /**
634
+ * Describes the message temporal.api.workflowservice.v1.GetWorkerVersioningRulesResponse.
635
+ * Use `create(GetWorkerVersioningRulesResponseSchema)` to create a new message.
636
+ */
637
+ export const GetWorkerVersioningRulesResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 105);
638
+ /**
639
+ * Describes the message temporal.api.workflowservice.v1.GetWorkerTaskReachabilityRequest.
640
+ * Use `create(GetWorkerTaskReachabilityRequestSchema)` to create a new message.
641
+ */
642
+ export const GetWorkerTaskReachabilityRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 106);
643
+ /**
644
+ * Describes the message temporal.api.workflowservice.v1.GetWorkerTaskReachabilityResponse.
645
+ * Use `create(GetWorkerTaskReachabilityResponseSchema)` to create a new message.
646
+ */
647
+ export const GetWorkerTaskReachabilityResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 107);
648
+ /**
649
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkflowExecutionRequest.
650
+ * Use `create(UpdateWorkflowExecutionRequestSchema)` to create a new message.
651
+ */
652
+ export const UpdateWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 108);
653
+ /**
654
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkflowExecutionResponse.
655
+ * Use `create(UpdateWorkflowExecutionResponseSchema)` to create a new message.
656
+ */
657
+ export const UpdateWorkflowExecutionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 109);
658
+ /**
659
+ * Describes the message temporal.api.workflowservice.v1.StartBatchOperationRequest.
660
+ * Use `create(StartBatchOperationRequestSchema)` to create a new message.
661
+ */
662
+ export const StartBatchOperationRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 110);
663
+ /**
664
+ * Describes the message temporal.api.workflowservice.v1.StartBatchOperationResponse.
665
+ * Use `create(StartBatchOperationResponseSchema)` to create a new message.
666
+ */
667
+ export const StartBatchOperationResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 111);
668
+ /**
669
+ * Describes the message temporal.api.workflowservice.v1.StopBatchOperationRequest.
670
+ * Use `create(StopBatchOperationRequestSchema)` to create a new message.
671
+ */
672
+ export const StopBatchOperationRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 112);
673
+ /**
674
+ * Describes the message temporal.api.workflowservice.v1.StopBatchOperationResponse.
675
+ * Use `create(StopBatchOperationResponseSchema)` to create a new message.
676
+ */
677
+ export const StopBatchOperationResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 113);
678
+ /**
679
+ * Describes the message temporal.api.workflowservice.v1.DescribeBatchOperationRequest.
680
+ * Use `create(DescribeBatchOperationRequestSchema)` to create a new message.
681
+ */
682
+ export const DescribeBatchOperationRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 114);
683
+ /**
684
+ * Describes the message temporal.api.workflowservice.v1.DescribeBatchOperationResponse.
685
+ * Use `create(DescribeBatchOperationResponseSchema)` to create a new message.
686
+ */
687
+ export const DescribeBatchOperationResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 115);
688
+ /**
689
+ * Describes the message temporal.api.workflowservice.v1.ListBatchOperationsRequest.
690
+ * Use `create(ListBatchOperationsRequestSchema)` to create a new message.
691
+ */
692
+ export const ListBatchOperationsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 116);
693
+ /**
694
+ * Describes the message temporal.api.workflowservice.v1.ListBatchOperationsResponse.
695
+ * Use `create(ListBatchOperationsResponseSchema)` to create a new message.
696
+ */
697
+ export const ListBatchOperationsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 117);
698
+ /**
699
+ * Describes the message temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateRequest.
700
+ * Use `create(PollWorkflowExecutionUpdateRequestSchema)` to create a new message.
701
+ */
702
+ export const PollWorkflowExecutionUpdateRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 118);
703
+ /**
704
+ * Describes the message temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateResponse.
705
+ * Use `create(PollWorkflowExecutionUpdateResponseSchema)` to create a new message.
706
+ */
707
+ export const PollWorkflowExecutionUpdateResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 119);
708
+ /**
709
+ * Describes the message temporal.api.workflowservice.v1.PollNexusTaskQueueRequest.
710
+ * Use `create(PollNexusTaskQueueRequestSchema)` to create a new message.
711
+ */
712
+ export const PollNexusTaskQueueRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 120);
713
+ /**
714
+ * Describes the message temporal.api.workflowservice.v1.PollNexusTaskQueueResponse.
715
+ * Use `create(PollNexusTaskQueueResponseSchema)` to create a new message.
716
+ */
717
+ export const PollNexusTaskQueueResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 121);
718
+ /**
719
+ * Describes the message temporal.api.workflowservice.v1.RespondNexusTaskCompletedRequest.
720
+ * Use `create(RespondNexusTaskCompletedRequestSchema)` to create a new message.
721
+ */
722
+ export const RespondNexusTaskCompletedRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 122);
723
+ /**
724
+ * Describes the message temporal.api.workflowservice.v1.RespondNexusTaskCompletedResponse.
725
+ * Use `create(RespondNexusTaskCompletedResponseSchema)` to create a new message.
726
+ */
727
+ export const RespondNexusTaskCompletedResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 123);
728
+ /**
729
+ * Describes the message temporal.api.workflowservice.v1.RespondNexusTaskFailedRequest.
730
+ * Use `create(RespondNexusTaskFailedRequestSchema)` to create a new message.
731
+ */
732
+ export const RespondNexusTaskFailedRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 124);
733
+ /**
734
+ * Describes the message temporal.api.workflowservice.v1.RespondNexusTaskFailedResponse.
735
+ * Use `create(RespondNexusTaskFailedResponseSchema)` to create a new message.
736
+ */
737
+ export const RespondNexusTaskFailedResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 125);
738
+ /**
739
+ * Describes the message temporal.api.workflowservice.v1.ExecuteMultiOperationRequest.
740
+ * Use `create(ExecuteMultiOperationRequestSchema)` to create a new message.
741
+ */
742
+ export const ExecuteMultiOperationRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 126);
743
+ /**
744
+ * Describes the message temporal.api.workflowservice.v1.ExecuteMultiOperationRequest.Operation.
745
+ * Use `create(ExecuteMultiOperationRequest_OperationSchema)` to create a new message.
746
+ */
747
+ export const ExecuteMultiOperationRequest_OperationSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 126, 0);
748
+ /**
749
+ * Describes the message temporal.api.workflowservice.v1.ExecuteMultiOperationResponse.
750
+ * Use `create(ExecuteMultiOperationResponseSchema)` to create a new message.
751
+ */
752
+ export const ExecuteMultiOperationResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 127);
753
+ /**
754
+ * Describes the message temporal.api.workflowservice.v1.ExecuteMultiOperationResponse.Response.
755
+ * Use `create(ExecuteMultiOperationResponse_ResponseSchema)` to create a new message.
756
+ */
757
+ export const ExecuteMultiOperationResponse_ResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 127, 0);
758
+ /**
759
+ * Describes the message temporal.api.workflowservice.v1.UpdateActivityOptionsRequest.
760
+ * Use `create(UpdateActivityOptionsRequestSchema)` to create a new message.
761
+ */
762
+ export const UpdateActivityOptionsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 128);
763
+ /**
764
+ * Describes the message temporal.api.workflowservice.v1.UpdateActivityOptionsResponse.
765
+ * Use `create(UpdateActivityOptionsResponseSchema)` to create a new message.
766
+ */
767
+ export const UpdateActivityOptionsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 129);
768
+ /**
769
+ * Describes the message temporal.api.workflowservice.v1.PauseActivityRequest.
770
+ * Use `create(PauseActivityRequestSchema)` to create a new message.
771
+ */
772
+ export const PauseActivityRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 130);
773
+ /**
774
+ * Describes the message temporal.api.workflowservice.v1.PauseActivityResponse.
775
+ * Use `create(PauseActivityResponseSchema)` to create a new message.
776
+ */
777
+ export const PauseActivityResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 131);
778
+ /**
779
+ * Describes the message temporal.api.workflowservice.v1.UnpauseActivityRequest.
780
+ * Use `create(UnpauseActivityRequestSchema)` to create a new message.
781
+ */
782
+ export const UnpauseActivityRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 132);
783
+ /**
784
+ * Describes the message temporal.api.workflowservice.v1.UnpauseActivityResponse.
785
+ * Use `create(UnpauseActivityResponseSchema)` to create a new message.
786
+ */
787
+ export const UnpauseActivityResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 133);
788
+ /**
789
+ * Describes the message temporal.api.workflowservice.v1.ResetActivityRequest.
790
+ * Use `create(ResetActivityRequestSchema)` to create a new message.
791
+ */
792
+ export const ResetActivityRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 134);
793
+ /**
794
+ * Describes the message temporal.api.workflowservice.v1.ResetActivityResponse.
795
+ * Use `create(ResetActivityResponseSchema)` to create a new message.
796
+ */
797
+ export const ResetActivityResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 135);
798
+ /**
799
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkflowExecutionOptionsRequest.
800
+ * Use `create(UpdateWorkflowExecutionOptionsRequestSchema)` to create a new message.
801
+ */
802
+ export const UpdateWorkflowExecutionOptionsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 136);
803
+ /**
804
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkflowExecutionOptionsResponse.
805
+ * Use `create(UpdateWorkflowExecutionOptionsResponseSchema)` to create a new message.
806
+ */
807
+ export const UpdateWorkflowExecutionOptionsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 137);
808
+ /**
809
+ * Describes the message temporal.api.workflowservice.v1.DescribeDeploymentRequest.
810
+ * Use `create(DescribeDeploymentRequestSchema)` to create a new message.
811
+ */
812
+ export const DescribeDeploymentRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 138);
813
+ /**
814
+ * Describes the message temporal.api.workflowservice.v1.DescribeDeploymentResponse.
815
+ * Use `create(DescribeDeploymentResponseSchema)` to create a new message.
816
+ */
817
+ export const DescribeDeploymentResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 139);
818
+ /**
819
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkerDeploymentVersionRequest.
820
+ * Use `create(DescribeWorkerDeploymentVersionRequestSchema)` to create a new message.
821
+ */
822
+ export const DescribeWorkerDeploymentVersionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 140);
823
+ /**
824
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkerDeploymentVersionResponse.
825
+ * Use `create(DescribeWorkerDeploymentVersionResponseSchema)` to create a new message.
826
+ */
827
+ export const DescribeWorkerDeploymentVersionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 141);
828
+ /**
829
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkerDeploymentVersionResponse.VersionTaskQueue.
830
+ * Use `create(DescribeWorkerDeploymentVersionResponse_VersionTaskQueueSchema)` to create a new message.
831
+ */
832
+ export const DescribeWorkerDeploymentVersionResponse_VersionTaskQueueSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 141, 0);
833
+ /**
834
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkerDeploymentRequest.
835
+ * Use `create(DescribeWorkerDeploymentRequestSchema)` to create a new message.
836
+ */
837
+ export const DescribeWorkerDeploymentRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 142);
838
+ /**
839
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkerDeploymentResponse.
840
+ * Use `create(DescribeWorkerDeploymentResponseSchema)` to create a new message.
841
+ */
842
+ export const DescribeWorkerDeploymentResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 143);
843
+ /**
844
+ * Describes the message temporal.api.workflowservice.v1.ListDeploymentsRequest.
845
+ * Use `create(ListDeploymentsRequestSchema)` to create a new message.
846
+ */
847
+ export const ListDeploymentsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 144);
848
+ /**
849
+ * Describes the message temporal.api.workflowservice.v1.ListDeploymentsResponse.
850
+ * Use `create(ListDeploymentsResponseSchema)` to create a new message.
851
+ */
852
+ export const ListDeploymentsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 145);
853
+ /**
854
+ * Describes the message temporal.api.workflowservice.v1.SetCurrentDeploymentRequest.
855
+ * Use `create(SetCurrentDeploymentRequestSchema)` to create a new message.
856
+ */
857
+ export const SetCurrentDeploymentRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 146);
858
+ /**
859
+ * Describes the message temporal.api.workflowservice.v1.SetCurrentDeploymentResponse.
860
+ * Use `create(SetCurrentDeploymentResponseSchema)` to create a new message.
861
+ */
862
+ export const SetCurrentDeploymentResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 147);
863
+ /**
864
+ * Describes the message temporal.api.workflowservice.v1.SetWorkerDeploymentCurrentVersionRequest.
865
+ * Use `create(SetWorkerDeploymentCurrentVersionRequestSchema)` to create a new message.
866
+ */
867
+ export const SetWorkerDeploymentCurrentVersionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 148);
868
+ /**
869
+ * Describes the message temporal.api.workflowservice.v1.SetWorkerDeploymentCurrentVersionResponse.
870
+ * Use `create(SetWorkerDeploymentCurrentVersionResponseSchema)` to create a new message.
871
+ */
872
+ export const SetWorkerDeploymentCurrentVersionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 149);
873
+ /**
874
+ * Describes the message temporal.api.workflowservice.v1.SetWorkerDeploymentRampingVersionRequest.
875
+ * Use `create(SetWorkerDeploymentRampingVersionRequestSchema)` to create a new message.
876
+ */
877
+ export const SetWorkerDeploymentRampingVersionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 150);
878
+ /**
879
+ * Describes the message temporal.api.workflowservice.v1.SetWorkerDeploymentRampingVersionResponse.
880
+ * Use `create(SetWorkerDeploymentRampingVersionResponseSchema)` to create a new message.
881
+ */
882
+ export const SetWorkerDeploymentRampingVersionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 151);
883
+ /**
884
+ * Describes the message temporal.api.workflowservice.v1.ListWorkerDeploymentsRequest.
885
+ * Use `create(ListWorkerDeploymentsRequestSchema)` to create a new message.
886
+ */
887
+ export const ListWorkerDeploymentsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 152);
888
+ /**
889
+ * Describes the message temporal.api.workflowservice.v1.ListWorkerDeploymentsResponse.
890
+ * Use `create(ListWorkerDeploymentsResponseSchema)` to create a new message.
891
+ */
892
+ export const ListWorkerDeploymentsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 153);
893
+ /**
894
+ * Describes the message temporal.api.workflowservice.v1.ListWorkerDeploymentsResponse.WorkerDeploymentSummary.
895
+ * Use `create(ListWorkerDeploymentsResponse_WorkerDeploymentSummarySchema)` to create a new message.
896
+ */
897
+ export const ListWorkerDeploymentsResponse_WorkerDeploymentSummarySchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 153, 0);
898
+ /**
899
+ * Describes the message temporal.api.workflowservice.v1.DeleteWorkerDeploymentVersionRequest.
900
+ * Use `create(DeleteWorkerDeploymentVersionRequestSchema)` to create a new message.
901
+ */
902
+ export const DeleteWorkerDeploymentVersionRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 154);
903
+ /**
904
+ * Describes the message temporal.api.workflowservice.v1.DeleteWorkerDeploymentVersionResponse.
905
+ * Use `create(DeleteWorkerDeploymentVersionResponseSchema)` to create a new message.
906
+ */
907
+ export const DeleteWorkerDeploymentVersionResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 155);
908
+ /**
909
+ * Describes the message temporal.api.workflowservice.v1.DeleteWorkerDeploymentRequest.
910
+ * Use `create(DeleteWorkerDeploymentRequestSchema)` to create a new message.
911
+ */
912
+ export const DeleteWorkerDeploymentRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 156);
913
+ /**
914
+ * Describes the message temporal.api.workflowservice.v1.DeleteWorkerDeploymentResponse.
915
+ * Use `create(DeleteWorkerDeploymentResponseSchema)` to create a new message.
916
+ */
917
+ export const DeleteWorkerDeploymentResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 157);
918
+ /**
919
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerDeploymentVersionMetadataRequest.
920
+ * Use `create(UpdateWorkerDeploymentVersionMetadataRequestSchema)` to create a new message.
921
+ */
922
+ export const UpdateWorkerDeploymentVersionMetadataRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 158);
923
+ /**
924
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerDeploymentVersionMetadataResponse.
925
+ * Use `create(UpdateWorkerDeploymentVersionMetadataResponseSchema)` to create a new message.
926
+ */
927
+ export const UpdateWorkerDeploymentVersionMetadataResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 159);
928
+ /**
929
+ * Describes the message temporal.api.workflowservice.v1.SetWorkerDeploymentManagerRequest.
930
+ * Use `create(SetWorkerDeploymentManagerRequestSchema)` to create a new message.
931
+ */
932
+ export const SetWorkerDeploymentManagerRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 160);
933
+ /**
934
+ * Describes the message temporal.api.workflowservice.v1.SetWorkerDeploymentManagerResponse.
935
+ * Use `create(SetWorkerDeploymentManagerResponseSchema)` to create a new message.
936
+ */
937
+ export const SetWorkerDeploymentManagerResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 161);
938
+ /**
939
+ * Describes the message temporal.api.workflowservice.v1.GetCurrentDeploymentRequest.
940
+ * Use `create(GetCurrentDeploymentRequestSchema)` to create a new message.
941
+ */
942
+ export const GetCurrentDeploymentRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 162);
943
+ /**
944
+ * Describes the message temporal.api.workflowservice.v1.GetCurrentDeploymentResponse.
945
+ * Use `create(GetCurrentDeploymentResponseSchema)` to create a new message.
946
+ */
947
+ export const GetCurrentDeploymentResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 163);
948
+ /**
949
+ * Describes the message temporal.api.workflowservice.v1.GetDeploymentReachabilityRequest.
950
+ * Use `create(GetDeploymentReachabilityRequestSchema)` to create a new message.
951
+ */
952
+ export const GetDeploymentReachabilityRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 164);
953
+ /**
954
+ * Describes the message temporal.api.workflowservice.v1.GetDeploymentReachabilityResponse.
955
+ * Use `create(GetDeploymentReachabilityResponseSchema)` to create a new message.
956
+ */
957
+ export const GetDeploymentReachabilityResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 165);
958
+ /**
959
+ * Describes the message temporal.api.workflowservice.v1.CreateWorkflowRuleRequest.
960
+ * Use `create(CreateWorkflowRuleRequestSchema)` to create a new message.
961
+ */
962
+ export const CreateWorkflowRuleRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 166);
963
+ /**
964
+ * Describes the message temporal.api.workflowservice.v1.CreateWorkflowRuleResponse.
965
+ * Use `create(CreateWorkflowRuleResponseSchema)` to create a new message.
966
+ */
967
+ export const CreateWorkflowRuleResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 167);
968
+ /**
969
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkflowRuleRequest.
970
+ * Use `create(DescribeWorkflowRuleRequestSchema)` to create a new message.
971
+ */
972
+ export const DescribeWorkflowRuleRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 168);
973
+ /**
974
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkflowRuleResponse.
975
+ * Use `create(DescribeWorkflowRuleResponseSchema)` to create a new message.
976
+ */
977
+ export const DescribeWorkflowRuleResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 169);
978
+ /**
979
+ * Describes the message temporal.api.workflowservice.v1.DeleteWorkflowRuleRequest.
980
+ * Use `create(DeleteWorkflowRuleRequestSchema)` to create a new message.
981
+ */
982
+ export const DeleteWorkflowRuleRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 170);
983
+ /**
984
+ * Describes the message temporal.api.workflowservice.v1.DeleteWorkflowRuleResponse.
985
+ * Use `create(DeleteWorkflowRuleResponseSchema)` to create a new message.
986
+ */
987
+ export const DeleteWorkflowRuleResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 171);
988
+ /**
989
+ * Describes the message temporal.api.workflowservice.v1.ListWorkflowRulesRequest.
990
+ * Use `create(ListWorkflowRulesRequestSchema)` to create a new message.
991
+ */
992
+ export const ListWorkflowRulesRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 172);
993
+ /**
994
+ * Describes the message temporal.api.workflowservice.v1.ListWorkflowRulesResponse.
995
+ * Use `create(ListWorkflowRulesResponseSchema)` to create a new message.
996
+ */
997
+ export const ListWorkflowRulesResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 173);
998
+ /**
999
+ * Describes the message temporal.api.workflowservice.v1.TriggerWorkflowRuleRequest.
1000
+ * Use `create(TriggerWorkflowRuleRequestSchema)` to create a new message.
1001
+ */
1002
+ export const TriggerWorkflowRuleRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 174);
1003
+ /**
1004
+ * Describes the message temporal.api.workflowservice.v1.TriggerWorkflowRuleResponse.
1005
+ * Use `create(TriggerWorkflowRuleResponseSchema)` to create a new message.
1006
+ */
1007
+ export const TriggerWorkflowRuleResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 175);
1008
+ /**
1009
+ * Describes the message temporal.api.workflowservice.v1.RecordWorkerHeartbeatRequest.
1010
+ * Use `create(RecordWorkerHeartbeatRequestSchema)` to create a new message.
1011
+ */
1012
+ export const RecordWorkerHeartbeatRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 176);
1013
+ /**
1014
+ * Describes the message temporal.api.workflowservice.v1.RecordWorkerHeartbeatResponse.
1015
+ * Use `create(RecordWorkerHeartbeatResponseSchema)` to create a new message.
1016
+ */
1017
+ export const RecordWorkerHeartbeatResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 177);
1018
+ /**
1019
+ * Describes the message temporal.api.workflowservice.v1.ListWorkersRequest.
1020
+ * Use `create(ListWorkersRequestSchema)` to create a new message.
1021
+ */
1022
+ export const ListWorkersRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 178);
1023
+ /**
1024
+ * Describes the message temporal.api.workflowservice.v1.ListWorkersResponse.
1025
+ * Use `create(ListWorkersResponseSchema)` to create a new message.
1026
+ */
1027
+ export const ListWorkersResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 179);
1028
+ /**
1029
+ * Describes the message temporal.api.workflowservice.v1.UpdateTaskQueueConfigRequest.
1030
+ * Use `create(UpdateTaskQueueConfigRequestSchema)` to create a new message.
1031
+ */
1032
+ export const UpdateTaskQueueConfigRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 180);
1033
+ /**
1034
+ * Describes the message temporal.api.workflowservice.v1.UpdateTaskQueueConfigRequest.RateLimitUpdate.
1035
+ * Use `create(UpdateTaskQueueConfigRequest_RateLimitUpdateSchema)` to create a new message.
1036
+ */
1037
+ export const UpdateTaskQueueConfigRequest_RateLimitUpdateSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 180, 0);
1038
+ /**
1039
+ * Describes the message temporal.api.workflowservice.v1.UpdateTaskQueueConfigResponse.
1040
+ * Use `create(UpdateTaskQueueConfigResponseSchema)` to create a new message.
1041
+ */
1042
+ export const UpdateTaskQueueConfigResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 181);
1043
+ /**
1044
+ * Describes the message temporal.api.workflowservice.v1.FetchWorkerConfigRequest.
1045
+ * Use `create(FetchWorkerConfigRequestSchema)` to create a new message.
1046
+ */
1047
+ export const FetchWorkerConfigRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 182);
1048
+ /**
1049
+ * Describes the message temporal.api.workflowservice.v1.FetchWorkerConfigResponse.
1050
+ * Use `create(FetchWorkerConfigResponseSchema)` to create a new message.
1051
+ */
1052
+ export const FetchWorkerConfigResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 183);
1053
+ /**
1054
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerConfigRequest.
1055
+ * Use `create(UpdateWorkerConfigRequestSchema)` to create a new message.
1056
+ */
1057
+ export const UpdateWorkerConfigRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 184);
1058
+ /**
1059
+ * Describes the message temporal.api.workflowservice.v1.UpdateWorkerConfigResponse.
1060
+ * Use `create(UpdateWorkerConfigResponseSchema)` to create a new message.
1061
+ */
1062
+ export const UpdateWorkerConfigResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 185);
1063
+ /**
1064
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkerRequest.
1065
+ * Use `create(DescribeWorkerRequestSchema)` to create a new message.
1066
+ */
1067
+ export const DescribeWorkerRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 186);
1068
+ /**
1069
+ * Describes the message temporal.api.workflowservice.v1.DescribeWorkerResponse.
1070
+ * Use `create(DescribeWorkerResponseSchema)` to create a new message.
1071
+ */
1072
+ export const DescribeWorkerResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_workflowservice_v1_request_response, 187);
1073
+ //# sourceMappingURL=request_response_pb.js.map