@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,499 @@
1
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { IndexedValueType } from "../../enums/v1/common_pb.js";
3
+ import type { Endpoint, EndpointSpec } from "../../nexus/v1/message_pb.js";
4
+ import type { Duration } from "@bufbuild/protobuf/wkt";
5
+ import type { Message } from "@bufbuild/protobuf";
6
+ /**
7
+ * Describes the file temporal/api/operatorservice/v1/request_response.proto.
8
+ */
9
+ export declare const file_temporal_api_operatorservice_v1_request_response: GenFile;
10
+ /**
11
+ * @generated from message temporal.api.operatorservice.v1.AddSearchAttributesRequest
12
+ */
13
+ export type AddSearchAttributesRequest = Message<"temporal.api.operatorservice.v1.AddSearchAttributesRequest"> & {
14
+ /**
15
+ * Mapping between search attribute name and its IndexedValueType.
16
+ *
17
+ * @generated from field: map<string, temporal.api.enums.v1.IndexedValueType> search_attributes = 1;
18
+ */
19
+ searchAttributes: {
20
+ [key: string]: IndexedValueType;
21
+ };
22
+ /**
23
+ * @generated from field: string namespace = 2;
24
+ */
25
+ namespace: string;
26
+ };
27
+ /**
28
+ * Describes the message temporal.api.operatorservice.v1.AddSearchAttributesRequest.
29
+ * Use `create(AddSearchAttributesRequestSchema)` to create a new message.
30
+ */
31
+ export declare const AddSearchAttributesRequestSchema: GenMessage<AddSearchAttributesRequest>;
32
+ /**
33
+ * @generated from message temporal.api.operatorservice.v1.AddSearchAttributesResponse
34
+ */
35
+ export type AddSearchAttributesResponse = Message<"temporal.api.operatorservice.v1.AddSearchAttributesResponse"> & {};
36
+ /**
37
+ * Describes the message temporal.api.operatorservice.v1.AddSearchAttributesResponse.
38
+ * Use `create(AddSearchAttributesResponseSchema)` to create a new message.
39
+ */
40
+ export declare const AddSearchAttributesResponseSchema: GenMessage<AddSearchAttributesResponse>;
41
+ /**
42
+ * @generated from message temporal.api.operatorservice.v1.RemoveSearchAttributesRequest
43
+ */
44
+ export type RemoveSearchAttributesRequest = Message<"temporal.api.operatorservice.v1.RemoveSearchAttributesRequest"> & {
45
+ /**
46
+ * Search attribute names to delete.
47
+ *
48
+ * @generated from field: repeated string search_attributes = 1;
49
+ */
50
+ searchAttributes: string[];
51
+ /**
52
+ * @generated from field: string namespace = 2;
53
+ */
54
+ namespace: string;
55
+ };
56
+ /**
57
+ * Describes the message temporal.api.operatorservice.v1.RemoveSearchAttributesRequest.
58
+ * Use `create(RemoveSearchAttributesRequestSchema)` to create a new message.
59
+ */
60
+ export declare const RemoveSearchAttributesRequestSchema: GenMessage<RemoveSearchAttributesRequest>;
61
+ /**
62
+ * @generated from message temporal.api.operatorservice.v1.RemoveSearchAttributesResponse
63
+ */
64
+ export type RemoveSearchAttributesResponse = Message<"temporal.api.operatorservice.v1.RemoveSearchAttributesResponse"> & {};
65
+ /**
66
+ * Describes the message temporal.api.operatorservice.v1.RemoveSearchAttributesResponse.
67
+ * Use `create(RemoveSearchAttributesResponseSchema)` to create a new message.
68
+ */
69
+ export declare const RemoveSearchAttributesResponseSchema: GenMessage<RemoveSearchAttributesResponse>;
70
+ /**
71
+ * @generated from message temporal.api.operatorservice.v1.ListSearchAttributesRequest
72
+ */
73
+ export type ListSearchAttributesRequest = Message<"temporal.api.operatorservice.v1.ListSearchAttributesRequest"> & {
74
+ /**
75
+ * @generated from field: string namespace = 1;
76
+ */
77
+ namespace: string;
78
+ };
79
+ /**
80
+ * Describes the message temporal.api.operatorservice.v1.ListSearchAttributesRequest.
81
+ * Use `create(ListSearchAttributesRequestSchema)` to create a new message.
82
+ */
83
+ export declare const ListSearchAttributesRequestSchema: GenMessage<ListSearchAttributesRequest>;
84
+ /**
85
+ * @generated from message temporal.api.operatorservice.v1.ListSearchAttributesResponse
86
+ */
87
+ export type ListSearchAttributesResponse = Message<"temporal.api.operatorservice.v1.ListSearchAttributesResponse"> & {
88
+ /**
89
+ * Mapping between custom (user-registered) search attribute name to its IndexedValueType.
90
+ *
91
+ * @generated from field: map<string, temporal.api.enums.v1.IndexedValueType> custom_attributes = 1;
92
+ */
93
+ customAttributes: {
94
+ [key: string]: IndexedValueType;
95
+ };
96
+ /**
97
+ * Mapping between system (predefined) search attribute name to its IndexedValueType.
98
+ *
99
+ * @generated from field: map<string, temporal.api.enums.v1.IndexedValueType> system_attributes = 2;
100
+ */
101
+ systemAttributes: {
102
+ [key: string]: IndexedValueType;
103
+ };
104
+ /**
105
+ * Mapping from the attribute name to the visibility storage native type.
106
+ *
107
+ * @generated from field: map<string, string> storage_schema = 3;
108
+ */
109
+ storageSchema: {
110
+ [key: string]: string;
111
+ };
112
+ };
113
+ /**
114
+ * Describes the message temporal.api.operatorservice.v1.ListSearchAttributesResponse.
115
+ * Use `create(ListSearchAttributesResponseSchema)` to create a new message.
116
+ */
117
+ export declare const ListSearchAttributesResponseSchema: GenMessage<ListSearchAttributesResponse>;
118
+ /**
119
+ * @generated from message temporal.api.operatorservice.v1.DeleteNamespaceRequest
120
+ */
121
+ export type DeleteNamespaceRequest = Message<"temporal.api.operatorservice.v1.DeleteNamespaceRequest"> & {
122
+ /**
123
+ * Only one of namespace or namespace_id must be specified to identify namespace.
124
+ *
125
+ * @generated from field: string namespace = 1;
126
+ */
127
+ namespace: string;
128
+ /**
129
+ * @generated from field: string namespace_id = 2;
130
+ */
131
+ namespaceId: string;
132
+ /**
133
+ * If provided, the deletion of namespace info will be delayed for the given duration (0 means no delay).
134
+ * If not provided, the default delay configured in the cluster will be used.
135
+ *
136
+ * @generated from field: google.protobuf.Duration namespace_delete_delay = 3;
137
+ */
138
+ namespaceDeleteDelay?: Duration;
139
+ };
140
+ /**
141
+ * Describes the message temporal.api.operatorservice.v1.DeleteNamespaceRequest.
142
+ * Use `create(DeleteNamespaceRequestSchema)` to create a new message.
143
+ */
144
+ export declare const DeleteNamespaceRequestSchema: GenMessage<DeleteNamespaceRequest>;
145
+ /**
146
+ * @generated from message temporal.api.operatorservice.v1.DeleteNamespaceResponse
147
+ */
148
+ export type DeleteNamespaceResponse = Message<"temporal.api.operatorservice.v1.DeleteNamespaceResponse"> & {
149
+ /**
150
+ * Temporary namespace name that is used during reclaim resources step.
151
+ *
152
+ * @generated from field: string deleted_namespace = 1;
153
+ */
154
+ deletedNamespace: string;
155
+ };
156
+ /**
157
+ * Describes the message temporal.api.operatorservice.v1.DeleteNamespaceResponse.
158
+ * Use `create(DeleteNamespaceResponseSchema)` to create a new message.
159
+ */
160
+ export declare const DeleteNamespaceResponseSchema: GenMessage<DeleteNamespaceResponse>;
161
+ /**
162
+ * @generated from message temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterRequest
163
+ */
164
+ export type AddOrUpdateRemoteClusterRequest = Message<"temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterRequest"> & {
165
+ /**
166
+ * Frontend Address is a cross cluster accessible address for gRPC traffic. This field is required.
167
+ *
168
+ * @generated from field: string frontend_address = 1;
169
+ */
170
+ frontendAddress: string;
171
+ /**
172
+ * Flag to enable / disable the cross cluster connection.
173
+ *
174
+ * @generated from field: bool enable_remote_cluster_connection = 2;
175
+ */
176
+ enableRemoteClusterConnection: boolean;
177
+ /**
178
+ * Frontend HTTP Address is a cross cluster accessible address for HTTP traffic. This field is optional. If not provided
179
+ * on update, the existing HTTP address will be removed.
180
+ *
181
+ * @generated from field: string frontend_http_address = 3;
182
+ */
183
+ frontendHttpAddress: string;
184
+ };
185
+ /**
186
+ * Describes the message temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterRequest.
187
+ * Use `create(AddOrUpdateRemoteClusterRequestSchema)` to create a new message.
188
+ */
189
+ export declare const AddOrUpdateRemoteClusterRequestSchema: GenMessage<AddOrUpdateRemoteClusterRequest>;
190
+ /**
191
+ * @generated from message temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterResponse
192
+ */
193
+ export type AddOrUpdateRemoteClusterResponse = Message<"temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterResponse"> & {};
194
+ /**
195
+ * Describes the message temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterResponse.
196
+ * Use `create(AddOrUpdateRemoteClusterResponseSchema)` to create a new message.
197
+ */
198
+ export declare const AddOrUpdateRemoteClusterResponseSchema: GenMessage<AddOrUpdateRemoteClusterResponse>;
199
+ /**
200
+ * @generated from message temporal.api.operatorservice.v1.RemoveRemoteClusterRequest
201
+ */
202
+ export type RemoveRemoteClusterRequest = Message<"temporal.api.operatorservice.v1.RemoveRemoteClusterRequest"> & {
203
+ /**
204
+ * Remote cluster name to be removed.
205
+ *
206
+ * @generated from field: string cluster_name = 1;
207
+ */
208
+ clusterName: string;
209
+ };
210
+ /**
211
+ * Describes the message temporal.api.operatorservice.v1.RemoveRemoteClusterRequest.
212
+ * Use `create(RemoveRemoteClusterRequestSchema)` to create a new message.
213
+ */
214
+ export declare const RemoveRemoteClusterRequestSchema: GenMessage<RemoveRemoteClusterRequest>;
215
+ /**
216
+ * @generated from message temporal.api.operatorservice.v1.RemoveRemoteClusterResponse
217
+ */
218
+ export type RemoveRemoteClusterResponse = Message<"temporal.api.operatorservice.v1.RemoveRemoteClusterResponse"> & {};
219
+ /**
220
+ * Describes the message temporal.api.operatorservice.v1.RemoveRemoteClusterResponse.
221
+ * Use `create(RemoveRemoteClusterResponseSchema)` to create a new message.
222
+ */
223
+ export declare const RemoveRemoteClusterResponseSchema: GenMessage<RemoveRemoteClusterResponse>;
224
+ /**
225
+ * @generated from message temporal.api.operatorservice.v1.ListClustersRequest
226
+ */
227
+ export type ListClustersRequest = Message<"temporal.api.operatorservice.v1.ListClustersRequest"> & {
228
+ /**
229
+ * @generated from field: int32 page_size = 1;
230
+ */
231
+ pageSize: number;
232
+ /**
233
+ * @generated from field: bytes next_page_token = 2;
234
+ */
235
+ nextPageToken: Uint8Array;
236
+ };
237
+ /**
238
+ * Describes the message temporal.api.operatorservice.v1.ListClustersRequest.
239
+ * Use `create(ListClustersRequestSchema)` to create a new message.
240
+ */
241
+ export declare const ListClustersRequestSchema: GenMessage<ListClustersRequest>;
242
+ /**
243
+ * @generated from message temporal.api.operatorservice.v1.ListClustersResponse
244
+ */
245
+ export type ListClustersResponse = Message<"temporal.api.operatorservice.v1.ListClustersResponse"> & {
246
+ /**
247
+ * List of all cluster information
248
+ *
249
+ * @generated from field: repeated temporal.api.operatorservice.v1.ClusterMetadata clusters = 1;
250
+ */
251
+ clusters: ClusterMetadata[];
252
+ /**
253
+ * @generated from field: bytes next_page_token = 4;
254
+ */
255
+ nextPageToken: Uint8Array;
256
+ };
257
+ /**
258
+ * Describes the message temporal.api.operatorservice.v1.ListClustersResponse.
259
+ * Use `create(ListClustersResponseSchema)` to create a new message.
260
+ */
261
+ export declare const ListClustersResponseSchema: GenMessage<ListClustersResponse>;
262
+ /**
263
+ * @generated from message temporal.api.operatorservice.v1.ClusterMetadata
264
+ */
265
+ export type ClusterMetadata = Message<"temporal.api.operatorservice.v1.ClusterMetadata"> & {
266
+ /**
267
+ * Name of the cluster name.
268
+ *
269
+ * @generated from field: string cluster_name = 1;
270
+ */
271
+ clusterName: string;
272
+ /**
273
+ * Id of the cluster.
274
+ *
275
+ * @generated from field: string cluster_id = 2;
276
+ */
277
+ clusterId: string;
278
+ /**
279
+ * gRPC address.
280
+ *
281
+ * @generated from field: string address = 3;
282
+ */
283
+ address: string;
284
+ /**
285
+ * HTTP address, if one exists.
286
+ *
287
+ * @generated from field: string http_address = 7;
288
+ */
289
+ httpAddress: string;
290
+ /**
291
+ * A unique failover version across all connected clusters.
292
+ *
293
+ * @generated from field: int64 initial_failover_version = 4;
294
+ */
295
+ initialFailoverVersion: bigint;
296
+ /**
297
+ * History service shard number.
298
+ *
299
+ * @generated from field: int32 history_shard_count = 5;
300
+ */
301
+ historyShardCount: number;
302
+ /**
303
+ * A flag to indicate if a connection is active.
304
+ *
305
+ * @generated from field: bool is_connection_enabled = 6;
306
+ */
307
+ isConnectionEnabled: boolean;
308
+ };
309
+ /**
310
+ * Describes the message temporal.api.operatorservice.v1.ClusterMetadata.
311
+ * Use `create(ClusterMetadataSchema)` to create a new message.
312
+ */
313
+ export declare const ClusterMetadataSchema: GenMessage<ClusterMetadata>;
314
+ /**
315
+ * @generated from message temporal.api.operatorservice.v1.GetNexusEndpointRequest
316
+ */
317
+ export type GetNexusEndpointRequest = Message<"temporal.api.operatorservice.v1.GetNexusEndpointRequest"> & {
318
+ /**
319
+ * Server-generated unique endpoint ID.
320
+ *
321
+ * @generated from field: string id = 1;
322
+ */
323
+ id: string;
324
+ };
325
+ /**
326
+ * Describes the message temporal.api.operatorservice.v1.GetNexusEndpointRequest.
327
+ * Use `create(GetNexusEndpointRequestSchema)` to create a new message.
328
+ */
329
+ export declare const GetNexusEndpointRequestSchema: GenMessage<GetNexusEndpointRequest>;
330
+ /**
331
+ * @generated from message temporal.api.operatorservice.v1.GetNexusEndpointResponse
332
+ */
333
+ export type GetNexusEndpointResponse = Message<"temporal.api.operatorservice.v1.GetNexusEndpointResponse"> & {
334
+ /**
335
+ * @generated from field: temporal.api.nexus.v1.Endpoint endpoint = 1;
336
+ */
337
+ endpoint?: Endpoint;
338
+ };
339
+ /**
340
+ * Describes the message temporal.api.operatorservice.v1.GetNexusEndpointResponse.
341
+ * Use `create(GetNexusEndpointResponseSchema)` to create a new message.
342
+ */
343
+ export declare const GetNexusEndpointResponseSchema: GenMessage<GetNexusEndpointResponse>;
344
+ /**
345
+ * @generated from message temporal.api.operatorservice.v1.CreateNexusEndpointRequest
346
+ */
347
+ export type CreateNexusEndpointRequest = Message<"temporal.api.operatorservice.v1.CreateNexusEndpointRequest"> & {
348
+ /**
349
+ * Endpoint definition to create.
350
+ *
351
+ * @generated from field: temporal.api.nexus.v1.EndpointSpec spec = 1;
352
+ */
353
+ spec?: EndpointSpec;
354
+ };
355
+ /**
356
+ * Describes the message temporal.api.operatorservice.v1.CreateNexusEndpointRequest.
357
+ * Use `create(CreateNexusEndpointRequestSchema)` to create a new message.
358
+ */
359
+ export declare const CreateNexusEndpointRequestSchema: GenMessage<CreateNexusEndpointRequest>;
360
+ /**
361
+ * @generated from message temporal.api.operatorservice.v1.CreateNexusEndpointResponse
362
+ */
363
+ export type CreateNexusEndpointResponse = Message<"temporal.api.operatorservice.v1.CreateNexusEndpointResponse"> & {
364
+ /**
365
+ * Data post acceptance. Can be used to issue additional updates to this record.
366
+ *
367
+ * @generated from field: temporal.api.nexus.v1.Endpoint endpoint = 1;
368
+ */
369
+ endpoint?: Endpoint;
370
+ };
371
+ /**
372
+ * Describes the message temporal.api.operatorservice.v1.CreateNexusEndpointResponse.
373
+ * Use `create(CreateNexusEndpointResponseSchema)` to create a new message.
374
+ */
375
+ export declare const CreateNexusEndpointResponseSchema: GenMessage<CreateNexusEndpointResponse>;
376
+ /**
377
+ * @generated from message temporal.api.operatorservice.v1.UpdateNexusEndpointRequest
378
+ */
379
+ export type UpdateNexusEndpointRequest = Message<"temporal.api.operatorservice.v1.UpdateNexusEndpointRequest"> & {
380
+ /**
381
+ * Server-generated unique endpoint ID.
382
+ *
383
+ * @generated from field: string id = 1;
384
+ */
385
+ id: string;
386
+ /**
387
+ * Data version for this endpoint. Must match current version.
388
+ *
389
+ * @generated from field: int64 version = 2;
390
+ */
391
+ version: bigint;
392
+ /**
393
+ * @generated from field: temporal.api.nexus.v1.EndpointSpec spec = 3;
394
+ */
395
+ spec?: EndpointSpec;
396
+ };
397
+ /**
398
+ * Describes the message temporal.api.operatorservice.v1.UpdateNexusEndpointRequest.
399
+ * Use `create(UpdateNexusEndpointRequestSchema)` to create a new message.
400
+ */
401
+ export declare const UpdateNexusEndpointRequestSchema: GenMessage<UpdateNexusEndpointRequest>;
402
+ /**
403
+ * @generated from message temporal.api.operatorservice.v1.UpdateNexusEndpointResponse
404
+ */
405
+ export type UpdateNexusEndpointResponse = Message<"temporal.api.operatorservice.v1.UpdateNexusEndpointResponse"> & {
406
+ /**
407
+ * Data post acceptance. Can be used to issue additional updates to this record.
408
+ *
409
+ * @generated from field: temporal.api.nexus.v1.Endpoint endpoint = 1;
410
+ */
411
+ endpoint?: Endpoint;
412
+ };
413
+ /**
414
+ * Describes the message temporal.api.operatorservice.v1.UpdateNexusEndpointResponse.
415
+ * Use `create(UpdateNexusEndpointResponseSchema)` to create a new message.
416
+ */
417
+ export declare const UpdateNexusEndpointResponseSchema: GenMessage<UpdateNexusEndpointResponse>;
418
+ /**
419
+ * @generated from message temporal.api.operatorservice.v1.DeleteNexusEndpointRequest
420
+ */
421
+ export type DeleteNexusEndpointRequest = Message<"temporal.api.operatorservice.v1.DeleteNexusEndpointRequest"> & {
422
+ /**
423
+ * Server-generated unique endpoint ID.
424
+ *
425
+ * @generated from field: string id = 1;
426
+ */
427
+ id: string;
428
+ /**
429
+ * Data version for this endpoint. Must match current version.
430
+ *
431
+ * @generated from field: int64 version = 2;
432
+ */
433
+ version: bigint;
434
+ };
435
+ /**
436
+ * Describes the message temporal.api.operatorservice.v1.DeleteNexusEndpointRequest.
437
+ * Use `create(DeleteNexusEndpointRequestSchema)` to create a new message.
438
+ */
439
+ export declare const DeleteNexusEndpointRequestSchema: GenMessage<DeleteNexusEndpointRequest>;
440
+ /**
441
+ * @generated from message temporal.api.operatorservice.v1.DeleteNexusEndpointResponse
442
+ */
443
+ export type DeleteNexusEndpointResponse = Message<"temporal.api.operatorservice.v1.DeleteNexusEndpointResponse"> & {};
444
+ /**
445
+ * Describes the message temporal.api.operatorservice.v1.DeleteNexusEndpointResponse.
446
+ * Use `create(DeleteNexusEndpointResponseSchema)` to create a new message.
447
+ */
448
+ export declare const DeleteNexusEndpointResponseSchema: GenMessage<DeleteNexusEndpointResponse>;
449
+ /**
450
+ * @generated from message temporal.api.operatorservice.v1.ListNexusEndpointsRequest
451
+ */
452
+ export type ListNexusEndpointsRequest = Message<"temporal.api.operatorservice.v1.ListNexusEndpointsRequest"> & {
453
+ /**
454
+ * @generated from field: int32 page_size = 1;
455
+ */
456
+ pageSize: number;
457
+ /**
458
+ * To get the next page, pass in `ListNexusEndpointsResponse.next_page_token` from the previous page's
459
+ * response, the token will be empty if there's no other page.
460
+ * Note: the last page may be empty if the total number of endpoints registered is a multiple of the page size.
461
+ *
462
+ * @generated from field: bytes next_page_token = 2;
463
+ */
464
+ nextPageToken: Uint8Array;
465
+ /**
466
+ * Name of the incoming endpoint to filter on - optional. Specifying this will result in zero or one results.
467
+ * (-- api-linter: core::203::field-behavior-required=disabled
468
+ * aip.dev/not-precedent: Not following linter rules. --)
469
+ *
470
+ * @generated from field: string name = 3;
471
+ */
472
+ name: string;
473
+ };
474
+ /**
475
+ * Describes the message temporal.api.operatorservice.v1.ListNexusEndpointsRequest.
476
+ * Use `create(ListNexusEndpointsRequestSchema)` to create a new message.
477
+ */
478
+ export declare const ListNexusEndpointsRequestSchema: GenMessage<ListNexusEndpointsRequest>;
479
+ /**
480
+ * @generated from message temporal.api.operatorservice.v1.ListNexusEndpointsResponse
481
+ */
482
+ export type ListNexusEndpointsResponse = Message<"temporal.api.operatorservice.v1.ListNexusEndpointsResponse"> & {
483
+ /**
484
+ * Token for getting the next page.
485
+ *
486
+ * @generated from field: bytes next_page_token = 1;
487
+ */
488
+ nextPageToken: Uint8Array;
489
+ /**
490
+ * @generated from field: repeated temporal.api.nexus.v1.Endpoint endpoints = 2;
491
+ */
492
+ endpoints: Endpoint[];
493
+ };
494
+ /**
495
+ * Describes the message temporal.api.operatorservice.v1.ListNexusEndpointsResponse.
496
+ * Use `create(ListNexusEndpointsResponseSchema)` to create a new message.
497
+ */
498
+ export declare const ListNexusEndpointsResponseSchema: GenMessage<ListNexusEndpointsResponse>;
499
+ //# sourceMappingURL=request_response_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"request_response_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/operatorservice/v1/request_response_pb.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,137 @@
1
+ // @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
2
+ // @generated from file temporal/api/operatorservice/v1/request_response.proto (package temporal.api.operatorservice.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
5
+ import { file_temporal_api_enums_v1_common } from "../../enums/v1/common_pb.js";
6
+ import { file_temporal_api_nexus_v1_message } from "../../nexus/v1/message_pb.js";
7
+ import { file_google_protobuf_duration } from "@bufbuild/protobuf/wkt";
8
+ /**
9
+ * Describes the file temporal/api/operatorservice/v1/request_response.proto.
10
+ */
11
+ export const file_temporal_api_operatorservice_v1_request_response = /*@__PURE__*/ fileDesc("CjZ0ZW1wb3JhbC9hcGkvb3BlcmF0b3JzZXJ2aWNlL3YxL3JlcXVlc3RfcmVzcG9uc2UucHJvdG8SH3RlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEi/wEKGkFkZFNlYXJjaEF0dHJpYnV0ZXNSZXF1ZXN0EmwKEXNlYXJjaF9hdHRyaWJ1dGVzGAEgAygLMlEudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5BZGRTZWFyY2hBdHRyaWJ1dGVzUmVxdWVzdC5TZWFyY2hBdHRyaWJ1dGVzRW50cnkSEQoJbmFtZXNwYWNlGAIgASgJGmAKFVNlYXJjaEF0dHJpYnV0ZXNFbnRyeRILCgNrZXkYASABKAkSNgoFdmFsdWUYAiABKA4yJy50ZW1wb3JhbC5hcGkuZW51bXMudjEuSW5kZXhlZFZhbHVlVHlwZToCOAEiHQobQWRkU2VhcmNoQXR0cmlidXRlc1Jlc3BvbnNlIk0KHVJlbW92ZVNlYXJjaEF0dHJpYnV0ZXNSZXF1ZXN0EhkKEXNlYXJjaF9hdHRyaWJ1dGVzGAEgAygJEhEKCW5hbWVzcGFjZRgCIAEoCSIgCh5SZW1vdmVTZWFyY2hBdHRyaWJ1dGVzUmVzcG9uc2UiMAobTGlzdFNlYXJjaEF0dHJpYnV0ZXNSZXF1ZXN0EhEKCW5hbWVzcGFjZRgBIAEoCSLiBAocTGlzdFNlYXJjaEF0dHJpYnV0ZXNSZXNwb25zZRJuChFjdXN0b21fYXR0cmlidXRlcxgBIAMoCzJTLnRlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEuTGlzdFNlYXJjaEF0dHJpYnV0ZXNSZXNwb25zZS5DdXN0b21BdHRyaWJ1dGVzRW50cnkSbgoRc3lzdGVtX2F0dHJpYnV0ZXMYAiADKAsyUy50ZW1wb3JhbC5hcGkub3BlcmF0b3JzZXJ2aWNlLnYxLkxpc3RTZWFyY2hBdHRyaWJ1dGVzUmVzcG9uc2UuU3lzdGVtQXR0cmlidXRlc0VudHJ5EmgKDnN0b3JhZ2Vfc2NoZW1hGAMgAygLMlAudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5MaXN0U2VhcmNoQXR0cmlidXRlc1Jlc3BvbnNlLlN0b3JhZ2VTY2hlbWFFbnRyeRpgChVDdXN0b21BdHRyaWJ1dGVzRW50cnkSCwoDa2V5GAEgASgJEjYKBXZhbHVlGAIgASgOMicudGVtcG9yYWwuYXBpLmVudW1zLnYxLkluZGV4ZWRWYWx1ZVR5cGU6AjgBGmAKFVN5c3RlbUF0dHJpYnV0ZXNFbnRyeRILCgNrZXkYASABKAkSNgoFdmFsdWUYAiABKA4yJy50ZW1wb3JhbC5hcGkuZW51bXMudjEuSW5kZXhlZFZhbHVlVHlwZToCOAEaNAoSU3RvcmFnZVNjaGVtYUVudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAEifAoWRGVsZXRlTmFtZXNwYWNlUmVxdWVzdBIRCgluYW1lc3BhY2UYASABKAkSFAoMbmFtZXNwYWNlX2lkGAIgASgJEjkKFm5hbWVzcGFjZV9kZWxldGVfZGVsYXkYAyABKAsyGS5nb29nbGUucHJvdG9idWYuRHVyYXRpb24iNAoXRGVsZXRlTmFtZXNwYWNlUmVzcG9uc2USGQoRZGVsZXRlZF9uYW1lc3BhY2UYASABKAkihAEKH0FkZE9yVXBkYXRlUmVtb3RlQ2x1c3RlclJlcXVlc3QSGAoQZnJvbnRlbmRfYWRkcmVzcxgBIAEoCRIoCiBlbmFibGVfcmVtb3RlX2NsdXN0ZXJfY29ubmVjdGlvbhgCIAEoCBIdChVmcm9udGVuZF9odHRwX2FkZHJlc3MYAyABKAkiIgogQWRkT3JVcGRhdGVSZW1vdGVDbHVzdGVyUmVzcG9uc2UiMgoaUmVtb3ZlUmVtb3RlQ2x1c3RlclJlcXVlc3QSFAoMY2x1c3Rlcl9uYW1lGAEgASgJIh0KG1JlbW92ZVJlbW90ZUNsdXN0ZXJSZXNwb25zZSJBChNMaXN0Q2x1c3RlcnNSZXF1ZXN0EhEKCXBhZ2Vfc2l6ZRgBIAEoBRIXCg9uZXh0X3BhZ2VfdG9rZW4YAiABKAwicwoUTGlzdENsdXN0ZXJzUmVzcG9uc2USQgoIY2x1c3RlcnMYASADKAsyMC50ZW1wb3JhbC5hcGkub3BlcmF0b3JzZXJ2aWNlLnYxLkNsdXN0ZXJNZXRhZGF0YRIXCg9uZXh0X3BhZ2VfdG9rZW4YBCABKAwiwAEKD0NsdXN0ZXJNZXRhZGF0YRIUCgxjbHVzdGVyX25hbWUYASABKAkSEgoKY2x1c3Rlcl9pZBgCIAEoCRIPCgdhZGRyZXNzGAMgASgJEhQKDGh0dHBfYWRkcmVzcxgHIAEoCRIgChhpbml0aWFsX2ZhaWxvdmVyX3ZlcnNpb24YBCABKAMSGwoTaGlzdG9yeV9zaGFyZF9jb3VudBgFIAEoBRIdChVpc19jb25uZWN0aW9uX2VuYWJsZWQYBiABKAgiJQoXR2V0TmV4dXNFbmRwb2ludFJlcXVlc3QSCgoCaWQYASABKAkiTQoYR2V0TmV4dXNFbmRwb2ludFJlc3BvbnNlEjEKCGVuZHBvaW50GAEgASgLMh8udGVtcG9yYWwuYXBpLm5leHVzLnYxLkVuZHBvaW50Ik8KGkNyZWF0ZU5leHVzRW5kcG9pbnRSZXF1ZXN0EjEKBHNwZWMYASABKAsyIy50ZW1wb3JhbC5hcGkubmV4dXMudjEuRW5kcG9pbnRTcGVjIlAKG0NyZWF0ZU5leHVzRW5kcG9pbnRSZXNwb25zZRIxCghlbmRwb2ludBgBIAEoCzIfLnRlbXBvcmFsLmFwaS5uZXh1cy52MS5FbmRwb2ludCJsChpVcGRhdGVOZXh1c0VuZHBvaW50UmVxdWVzdBIKCgJpZBgBIAEoCRIPCgd2ZXJzaW9uGAIgASgDEjEKBHNwZWMYAyABKAsyIy50ZW1wb3JhbC5hcGkubmV4dXMudjEuRW5kcG9pbnRTcGVjIlAKG1VwZGF0ZU5leHVzRW5kcG9pbnRSZXNwb25zZRIxCghlbmRwb2ludBgBIAEoCzIfLnRlbXBvcmFsLmFwaS5uZXh1cy52MS5FbmRwb2ludCI5ChpEZWxldGVOZXh1c0VuZHBvaW50UmVxdWVzdBIKCgJpZBgBIAEoCRIPCgd2ZXJzaW9uGAIgASgDIh0KG0RlbGV0ZU5leHVzRW5kcG9pbnRSZXNwb25zZSJVChlMaXN0TmV4dXNFbmRwb2ludHNSZXF1ZXN0EhEKCXBhZ2Vfc2l6ZRgBIAEoBRIXCg9uZXh0X3BhZ2VfdG9rZW4YAiABKAwSDAoEbmFtZRgDIAEoCSJpChpMaXN0TmV4dXNFbmRwb2ludHNSZXNwb25zZRIXCg9uZXh0X3BhZ2VfdG9rZW4YASABKAwSMgoJZW5kcG9pbnRzGAIgAygLMh8udGVtcG9yYWwuYXBpLm5leHVzLnYxLkVuZHBvaW50Qr4BCiJpby50ZW1wb3JhbC5hcGkub3BlcmF0b3JzZXJ2aWNlLnYxQhRSZXF1ZXN0UmVzcG9uc2VQcm90b1ABWjVnby50ZW1wb3JhbC5pby9hcGkvb3BlcmF0b3JzZXJ2aWNlL3YxO29wZXJhdG9yc2VydmljZaoCIVRlbXBvcmFsaW8uQXBpLk9wZXJhdG9yU2VydmljZS5WMeoCJFRlbXBvcmFsaW86OkFwaTo6T3BlcmF0b3JTZXJ2aWNlOjpWMWIGcHJvdG8z", [file_temporal_api_enums_v1_common, file_temporal_api_nexus_v1_message, file_google_protobuf_duration]);
12
+ /**
13
+ * Describes the message temporal.api.operatorservice.v1.AddSearchAttributesRequest.
14
+ * Use `create(AddSearchAttributesRequestSchema)` to create a new message.
15
+ */
16
+ export const AddSearchAttributesRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 0);
17
+ /**
18
+ * Describes the message temporal.api.operatorservice.v1.AddSearchAttributesResponse.
19
+ * Use `create(AddSearchAttributesResponseSchema)` to create a new message.
20
+ */
21
+ export const AddSearchAttributesResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 1);
22
+ /**
23
+ * Describes the message temporal.api.operatorservice.v1.RemoveSearchAttributesRequest.
24
+ * Use `create(RemoveSearchAttributesRequestSchema)` to create a new message.
25
+ */
26
+ export const RemoveSearchAttributesRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 2);
27
+ /**
28
+ * Describes the message temporal.api.operatorservice.v1.RemoveSearchAttributesResponse.
29
+ * Use `create(RemoveSearchAttributesResponseSchema)` to create a new message.
30
+ */
31
+ export const RemoveSearchAttributesResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 3);
32
+ /**
33
+ * Describes the message temporal.api.operatorservice.v1.ListSearchAttributesRequest.
34
+ * Use `create(ListSearchAttributesRequestSchema)` to create a new message.
35
+ */
36
+ export const ListSearchAttributesRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 4);
37
+ /**
38
+ * Describes the message temporal.api.operatorservice.v1.ListSearchAttributesResponse.
39
+ * Use `create(ListSearchAttributesResponseSchema)` to create a new message.
40
+ */
41
+ export const ListSearchAttributesResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 5);
42
+ /**
43
+ * Describes the message temporal.api.operatorservice.v1.DeleteNamespaceRequest.
44
+ * Use `create(DeleteNamespaceRequestSchema)` to create a new message.
45
+ */
46
+ export const DeleteNamespaceRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 6);
47
+ /**
48
+ * Describes the message temporal.api.operatorservice.v1.DeleteNamespaceResponse.
49
+ * Use `create(DeleteNamespaceResponseSchema)` to create a new message.
50
+ */
51
+ export const DeleteNamespaceResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 7);
52
+ /**
53
+ * Describes the message temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterRequest.
54
+ * Use `create(AddOrUpdateRemoteClusterRequestSchema)` to create a new message.
55
+ */
56
+ export const AddOrUpdateRemoteClusterRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 8);
57
+ /**
58
+ * Describes the message temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterResponse.
59
+ * Use `create(AddOrUpdateRemoteClusterResponseSchema)` to create a new message.
60
+ */
61
+ export const AddOrUpdateRemoteClusterResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 9);
62
+ /**
63
+ * Describes the message temporal.api.operatorservice.v1.RemoveRemoteClusterRequest.
64
+ * Use `create(RemoveRemoteClusterRequestSchema)` to create a new message.
65
+ */
66
+ export const RemoveRemoteClusterRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 10);
67
+ /**
68
+ * Describes the message temporal.api.operatorservice.v1.RemoveRemoteClusterResponse.
69
+ * Use `create(RemoveRemoteClusterResponseSchema)` to create a new message.
70
+ */
71
+ export const RemoveRemoteClusterResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 11);
72
+ /**
73
+ * Describes the message temporal.api.operatorservice.v1.ListClustersRequest.
74
+ * Use `create(ListClustersRequestSchema)` to create a new message.
75
+ */
76
+ export const ListClustersRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 12);
77
+ /**
78
+ * Describes the message temporal.api.operatorservice.v1.ListClustersResponse.
79
+ * Use `create(ListClustersResponseSchema)` to create a new message.
80
+ */
81
+ export const ListClustersResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 13);
82
+ /**
83
+ * Describes the message temporal.api.operatorservice.v1.ClusterMetadata.
84
+ * Use `create(ClusterMetadataSchema)` to create a new message.
85
+ */
86
+ export const ClusterMetadataSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 14);
87
+ /**
88
+ * Describes the message temporal.api.operatorservice.v1.GetNexusEndpointRequest.
89
+ * Use `create(GetNexusEndpointRequestSchema)` to create a new message.
90
+ */
91
+ export const GetNexusEndpointRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 15);
92
+ /**
93
+ * Describes the message temporal.api.operatorservice.v1.GetNexusEndpointResponse.
94
+ * Use `create(GetNexusEndpointResponseSchema)` to create a new message.
95
+ */
96
+ export const GetNexusEndpointResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 16);
97
+ /**
98
+ * Describes the message temporal.api.operatorservice.v1.CreateNexusEndpointRequest.
99
+ * Use `create(CreateNexusEndpointRequestSchema)` to create a new message.
100
+ */
101
+ export const CreateNexusEndpointRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 17);
102
+ /**
103
+ * Describes the message temporal.api.operatorservice.v1.CreateNexusEndpointResponse.
104
+ * Use `create(CreateNexusEndpointResponseSchema)` to create a new message.
105
+ */
106
+ export const CreateNexusEndpointResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 18);
107
+ /**
108
+ * Describes the message temporal.api.operatorservice.v1.UpdateNexusEndpointRequest.
109
+ * Use `create(UpdateNexusEndpointRequestSchema)` to create a new message.
110
+ */
111
+ export const UpdateNexusEndpointRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 19);
112
+ /**
113
+ * Describes the message temporal.api.operatorservice.v1.UpdateNexusEndpointResponse.
114
+ * Use `create(UpdateNexusEndpointResponseSchema)` to create a new message.
115
+ */
116
+ export const UpdateNexusEndpointResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 20);
117
+ /**
118
+ * Describes the message temporal.api.operatorservice.v1.DeleteNexusEndpointRequest.
119
+ * Use `create(DeleteNexusEndpointRequestSchema)` to create a new message.
120
+ */
121
+ export const DeleteNexusEndpointRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 21);
122
+ /**
123
+ * Describes the message temporal.api.operatorservice.v1.DeleteNexusEndpointResponse.
124
+ * Use `create(DeleteNexusEndpointResponseSchema)` to create a new message.
125
+ */
126
+ export const DeleteNexusEndpointResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 22);
127
+ /**
128
+ * Describes the message temporal.api.operatorservice.v1.ListNexusEndpointsRequest.
129
+ * Use `create(ListNexusEndpointsRequestSchema)` to create a new message.
130
+ */
131
+ export const ListNexusEndpointsRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 23);
132
+ /**
133
+ * Describes the message temporal.api.operatorservice.v1.ListNexusEndpointsResponse.
134
+ * Use `create(ListNexusEndpointsResponseSchema)` to create a new message.
135
+ */
136
+ export const ListNexusEndpointsResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_operatorservice_v1_request_response, 24);
137
+ //# sourceMappingURL=request_response_pb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"request_response_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/operatorservice/v1/request_response_pb.ts"],"names":[],"mappings":"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"}