@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,549 @@
1
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { Timestamp } from "@bufbuild/protobuf/wkt";
3
+ import type { Payload } from "../../common/v1/message_pb.js";
4
+ import type { NexusHandlerErrorRetryBehavior } from "../../enums/v1/nexus_pb.js";
5
+ import type { Message } from "@bufbuild/protobuf";
6
+ /**
7
+ * Describes the file temporal/api/nexus/v1/message.proto.
8
+ */
9
+ export declare const file_temporal_api_nexus_v1_message: GenFile;
10
+ /**
11
+ * A general purpose failure message.
12
+ * See: https://github.com/nexus-rpc/api/blob/main/SPEC.md#failure
13
+ *
14
+ * @generated from message temporal.api.nexus.v1.Failure
15
+ */
16
+ export type Failure = Message<"temporal.api.nexus.v1.Failure"> & {
17
+ /**
18
+ * @generated from field: string message = 1;
19
+ */
20
+ message: string;
21
+ /**
22
+ * @generated from field: map<string, string> metadata = 2;
23
+ */
24
+ metadata: {
25
+ [key: string]: string;
26
+ };
27
+ /**
28
+ * UTF-8 encoded JSON serializable details.
29
+ *
30
+ * @generated from field: bytes details = 3;
31
+ */
32
+ details: Uint8Array;
33
+ };
34
+ /**
35
+ * Describes the message temporal.api.nexus.v1.Failure.
36
+ * Use `create(FailureSchema)` to create a new message.
37
+ */
38
+ export declare const FailureSchema: GenMessage<Failure>;
39
+ /**
40
+ * @generated from message temporal.api.nexus.v1.HandlerError
41
+ */
42
+ export type HandlerError = Message<"temporal.api.nexus.v1.HandlerError"> & {
43
+ /**
44
+ * See https://github.com/nexus-rpc/api/blob/main/SPEC.md#predefined-handler-errors.
45
+ *
46
+ * @generated from field: string error_type = 1;
47
+ */
48
+ errorType: string;
49
+ /**
50
+ * @generated from field: temporal.api.nexus.v1.Failure failure = 2;
51
+ */
52
+ failure?: Failure;
53
+ /**
54
+ * Retry behavior, defaults to the retry behavior of the error type as defined in the spec.
55
+ *
56
+ * @generated from field: temporal.api.enums.v1.NexusHandlerErrorRetryBehavior retry_behavior = 3;
57
+ */
58
+ retryBehavior: NexusHandlerErrorRetryBehavior;
59
+ };
60
+ /**
61
+ * Describes the message temporal.api.nexus.v1.HandlerError.
62
+ * Use `create(HandlerErrorSchema)` to create a new message.
63
+ */
64
+ export declare const HandlerErrorSchema: GenMessage<HandlerError>;
65
+ /**
66
+ * @generated from message temporal.api.nexus.v1.UnsuccessfulOperationError
67
+ */
68
+ export type UnsuccessfulOperationError = Message<"temporal.api.nexus.v1.UnsuccessfulOperationError"> & {
69
+ /**
70
+ * See https://github.com/nexus-rpc/api/blob/main/SPEC.md#operationinfo.
71
+ *
72
+ * @generated from field: string operation_state = 1;
73
+ */
74
+ operationState: string;
75
+ /**
76
+ * @generated from field: temporal.api.nexus.v1.Failure failure = 2;
77
+ */
78
+ failure?: Failure;
79
+ };
80
+ /**
81
+ * Describes the message temporal.api.nexus.v1.UnsuccessfulOperationError.
82
+ * Use `create(UnsuccessfulOperationErrorSchema)` to create a new message.
83
+ */
84
+ export declare const UnsuccessfulOperationErrorSchema: GenMessage<UnsuccessfulOperationError>;
85
+ /**
86
+ * @generated from message temporal.api.nexus.v1.Link
87
+ */
88
+ export type Link = Message<"temporal.api.nexus.v1.Link"> & {
89
+ /**
90
+ * See https://github.com/nexus-rpc/api/blob/main/SPEC.md#links.
91
+ *
92
+ * @generated from field: string url = 1;
93
+ */
94
+ url: string;
95
+ /**
96
+ * @generated from field: string type = 2;
97
+ */
98
+ type: string;
99
+ };
100
+ /**
101
+ * Describes the message temporal.api.nexus.v1.Link.
102
+ * Use `create(LinkSchema)` to create a new message.
103
+ */
104
+ export declare const LinkSchema: GenMessage<Link>;
105
+ /**
106
+ * A request to start an operation.
107
+ *
108
+ * @generated from message temporal.api.nexus.v1.StartOperationRequest
109
+ */
110
+ export type StartOperationRequest = Message<"temporal.api.nexus.v1.StartOperationRequest"> & {
111
+ /**
112
+ * Name of service to start the operation in.
113
+ *
114
+ * @generated from field: string service = 1;
115
+ */
116
+ service: string;
117
+ /**
118
+ * Type of operation to start.
119
+ *
120
+ * @generated from field: string operation = 2;
121
+ */
122
+ operation: string;
123
+ /**
124
+ * A request ID that can be used as an idempotentency key.
125
+ *
126
+ * @generated from field: string request_id = 3;
127
+ */
128
+ requestId: string;
129
+ /**
130
+ * Callback URL to call upon completion if the started operation is async.
131
+ *
132
+ * @generated from field: string callback = 4;
133
+ */
134
+ callback: string;
135
+ /**
136
+ * Full request body from the incoming HTTP request.
137
+ *
138
+ * @generated from field: temporal.api.common.v1.Payload payload = 5;
139
+ */
140
+ payload?: Payload;
141
+ /**
142
+ * Header that is expected to be attached to the callback request when the operation completes.
143
+ *
144
+ * @generated from field: map<string, string> callback_header = 6;
145
+ */
146
+ callbackHeader: {
147
+ [key: string]: string;
148
+ };
149
+ /**
150
+ * Links contain caller information and can be attached to the operations started by the handler.
151
+ *
152
+ * @generated from field: repeated temporal.api.nexus.v1.Link links = 7;
153
+ */
154
+ links: Link[];
155
+ };
156
+ /**
157
+ * Describes the message temporal.api.nexus.v1.StartOperationRequest.
158
+ * Use `create(StartOperationRequestSchema)` to create a new message.
159
+ */
160
+ export declare const StartOperationRequestSchema: GenMessage<StartOperationRequest>;
161
+ /**
162
+ * A request to cancel an operation.
163
+ *
164
+ * @generated from message temporal.api.nexus.v1.CancelOperationRequest
165
+ */
166
+ export type CancelOperationRequest = Message<"temporal.api.nexus.v1.CancelOperationRequest"> & {
167
+ /**
168
+ * Service name.
169
+ *
170
+ * @generated from field: string service = 1;
171
+ */
172
+ service: string;
173
+ /**
174
+ * Type of operation to cancel.
175
+ *
176
+ * @generated from field: string operation = 2;
177
+ */
178
+ operation: string;
179
+ /**
180
+ * Operation ID as originally generated by a Handler.
181
+ *
182
+ * Deprecated. Renamed to operation_token.
183
+ *
184
+ * @generated from field: string operation_id = 3 [deprecated = true];
185
+ * @deprecated
186
+ */
187
+ operationId: string;
188
+ /**
189
+ * Operation token as originally generated by a Handler.
190
+ *
191
+ * @generated from field: string operation_token = 4;
192
+ */
193
+ operationToken: string;
194
+ };
195
+ /**
196
+ * Describes the message temporal.api.nexus.v1.CancelOperationRequest.
197
+ * Use `create(CancelOperationRequestSchema)` to create a new message.
198
+ */
199
+ export declare const CancelOperationRequestSchema: GenMessage<CancelOperationRequest>;
200
+ /**
201
+ * A Nexus request.
202
+ *
203
+ * @generated from message temporal.api.nexus.v1.Request
204
+ */
205
+ export type Request = Message<"temporal.api.nexus.v1.Request"> & {
206
+ /**
207
+ * Headers extracted from the original request in the Temporal frontend.
208
+ * When using Nexus over HTTP, this includes the request's HTTP headers ignoring multiple values.
209
+ *
210
+ * @generated from field: map<string, string> header = 1;
211
+ */
212
+ header: {
213
+ [key: string]: string;
214
+ };
215
+ /**
216
+ * The timestamp when the request was scheduled in the frontend.
217
+ * (-- api-linter: core::0142::time-field-names=disabled
218
+ * aip.dev/not-precedent: Not following linter rules. --)
219
+ *
220
+ * @generated from field: google.protobuf.Timestamp scheduled_time = 2;
221
+ */
222
+ scheduledTime?: Timestamp;
223
+ /**
224
+ * @generated from oneof temporal.api.nexus.v1.Request.variant
225
+ */
226
+ variant: {
227
+ /**
228
+ * @generated from field: temporal.api.nexus.v1.StartOperationRequest start_operation = 3;
229
+ */
230
+ value: StartOperationRequest;
231
+ case: "startOperation";
232
+ } | {
233
+ /**
234
+ * @generated from field: temporal.api.nexus.v1.CancelOperationRequest cancel_operation = 4;
235
+ */
236
+ value: CancelOperationRequest;
237
+ case: "cancelOperation";
238
+ } | {
239
+ case: undefined;
240
+ value?: undefined;
241
+ };
242
+ /**
243
+ * The endpoint this request was addressed to before forwarding to the worker.
244
+ * Supported from server version 1.30.0.
245
+ *
246
+ * @generated from field: string endpoint = 10;
247
+ */
248
+ endpoint: string;
249
+ };
250
+ /**
251
+ * Describes the message temporal.api.nexus.v1.Request.
252
+ * Use `create(RequestSchema)` to create a new message.
253
+ */
254
+ export declare const RequestSchema: GenMessage<Request>;
255
+ /**
256
+ * Response variant for StartOperationRequest.
257
+ *
258
+ * @generated from message temporal.api.nexus.v1.StartOperationResponse
259
+ */
260
+ export type StartOperationResponse = Message<"temporal.api.nexus.v1.StartOperationResponse"> & {
261
+ /**
262
+ * @generated from oneof temporal.api.nexus.v1.StartOperationResponse.variant
263
+ */
264
+ variant: {
265
+ /**
266
+ * @generated from field: temporal.api.nexus.v1.StartOperationResponse.Sync sync_success = 1;
267
+ */
268
+ value: StartOperationResponse_Sync;
269
+ case: "syncSuccess";
270
+ } | {
271
+ /**
272
+ * @generated from field: temporal.api.nexus.v1.StartOperationResponse.Async async_success = 2;
273
+ */
274
+ value: StartOperationResponse_Async;
275
+ case: "asyncSuccess";
276
+ } | {
277
+ /**
278
+ * The operation completed unsuccessfully (failed or canceled).
279
+ *
280
+ * @generated from field: temporal.api.nexus.v1.UnsuccessfulOperationError operation_error = 3;
281
+ */
282
+ value: UnsuccessfulOperationError;
283
+ case: "operationError";
284
+ } | {
285
+ case: undefined;
286
+ value?: undefined;
287
+ };
288
+ };
289
+ /**
290
+ * Describes the message temporal.api.nexus.v1.StartOperationResponse.
291
+ * Use `create(StartOperationResponseSchema)` to create a new message.
292
+ */
293
+ export declare const StartOperationResponseSchema: GenMessage<StartOperationResponse>;
294
+ /**
295
+ * An operation completed successfully.
296
+ *
297
+ * @generated from message temporal.api.nexus.v1.StartOperationResponse.Sync
298
+ */
299
+ export type StartOperationResponse_Sync = Message<"temporal.api.nexus.v1.StartOperationResponse.Sync"> & {
300
+ /**
301
+ * @generated from field: temporal.api.common.v1.Payload payload = 1;
302
+ */
303
+ payload?: Payload;
304
+ /**
305
+ * @generated from field: repeated temporal.api.nexus.v1.Link links = 2;
306
+ */
307
+ links: Link[];
308
+ };
309
+ /**
310
+ * Describes the message temporal.api.nexus.v1.StartOperationResponse.Sync.
311
+ * Use `create(StartOperationResponse_SyncSchema)` to create a new message.
312
+ */
313
+ export declare const StartOperationResponse_SyncSchema: GenMessage<StartOperationResponse_Sync>;
314
+ /**
315
+ * The operation will complete asynchronously.
316
+ * The returned ID can be used to reference this operation.
317
+ *
318
+ * @generated from message temporal.api.nexus.v1.StartOperationResponse.Async
319
+ */
320
+ export type StartOperationResponse_Async = Message<"temporal.api.nexus.v1.StartOperationResponse.Async"> & {
321
+ /**
322
+ * Deprecated. Renamed to operation_token.
323
+ *
324
+ * @generated from field: string operation_id = 1 [deprecated = true];
325
+ * @deprecated
326
+ */
327
+ operationId: string;
328
+ /**
329
+ * @generated from field: repeated temporal.api.nexus.v1.Link links = 2;
330
+ */
331
+ links: Link[];
332
+ /**
333
+ * @generated from field: string operation_token = 3;
334
+ */
335
+ operationToken: string;
336
+ };
337
+ /**
338
+ * Describes the message temporal.api.nexus.v1.StartOperationResponse.Async.
339
+ * Use `create(StartOperationResponse_AsyncSchema)` to create a new message.
340
+ */
341
+ export declare const StartOperationResponse_AsyncSchema: GenMessage<StartOperationResponse_Async>;
342
+ /**
343
+ * Response variant for CancelOperationRequest.
344
+ *
345
+ * @generated from message temporal.api.nexus.v1.CancelOperationResponse
346
+ */
347
+ export type CancelOperationResponse = Message<"temporal.api.nexus.v1.CancelOperationResponse"> & {};
348
+ /**
349
+ * Describes the message temporal.api.nexus.v1.CancelOperationResponse.
350
+ * Use `create(CancelOperationResponseSchema)` to create a new message.
351
+ */
352
+ export declare const CancelOperationResponseSchema: GenMessage<CancelOperationResponse>;
353
+ /**
354
+ * A response indicating that the handler has successfully processed a request.
355
+ *
356
+ * @generated from message temporal.api.nexus.v1.Response
357
+ */
358
+ export type Response = Message<"temporal.api.nexus.v1.Response"> & {
359
+ /**
360
+ * Variant must correlate to the corresponding Request's variant.
361
+ *
362
+ * @generated from oneof temporal.api.nexus.v1.Response.variant
363
+ */
364
+ variant: {
365
+ /**
366
+ * @generated from field: temporal.api.nexus.v1.StartOperationResponse start_operation = 1;
367
+ */
368
+ value: StartOperationResponse;
369
+ case: "startOperation";
370
+ } | {
371
+ /**
372
+ * @generated from field: temporal.api.nexus.v1.CancelOperationResponse cancel_operation = 2;
373
+ */
374
+ value: CancelOperationResponse;
375
+ case: "cancelOperation";
376
+ } | {
377
+ case: undefined;
378
+ value?: undefined;
379
+ };
380
+ };
381
+ /**
382
+ * Describes the message temporal.api.nexus.v1.Response.
383
+ * Use `create(ResponseSchema)` to create a new message.
384
+ */
385
+ export declare const ResponseSchema: GenMessage<Response>;
386
+ /**
387
+ * A cluster-global binding from an endpoint ID to a target for dispatching incoming Nexus requests.
388
+ *
389
+ * @generated from message temporal.api.nexus.v1.Endpoint
390
+ */
391
+ export type Endpoint = Message<"temporal.api.nexus.v1.Endpoint"> & {
392
+ /**
393
+ * Data version for this endpoint, incremented for every update issued via the UpdateNexusEndpoint API.
394
+ *
395
+ * @generated from field: int64 version = 1;
396
+ */
397
+ version: bigint;
398
+ /**
399
+ * Unique server-generated endpoint ID.
400
+ *
401
+ * @generated from field: string id = 2;
402
+ */
403
+ id: string;
404
+ /**
405
+ * Spec for the endpoint.
406
+ *
407
+ * @generated from field: temporal.api.nexus.v1.EndpointSpec spec = 3;
408
+ */
409
+ spec?: EndpointSpec;
410
+ /**
411
+ * The date and time when the endpoint was created.
412
+ * (-- api-linter: core::0142::time-field-names=disabled
413
+ * aip.dev/not-precedent: Not following linter rules. --)
414
+ *
415
+ * @generated from field: google.protobuf.Timestamp created_time = 4;
416
+ */
417
+ createdTime?: Timestamp;
418
+ /**
419
+ * The date and time when the endpoint was last modified.
420
+ * Will not be set if the endpoint has never been modified.
421
+ * (-- api-linter: core::0142::time-field-names=disabled
422
+ * aip.dev/not-precedent: Not following linter rules. --)
423
+ *
424
+ * @generated from field: google.protobuf.Timestamp last_modified_time = 5;
425
+ */
426
+ lastModifiedTime?: Timestamp;
427
+ /**
428
+ * Server exposed URL prefix for invocation of operations on this endpoint.
429
+ * This doesn't include the protocol, hostname or port as the server does not know how it should be accessed
430
+ * publicly. The URL is stable in the face of endpoint renames.
431
+ *
432
+ * @generated from field: string url_prefix = 6;
433
+ */
434
+ urlPrefix: string;
435
+ };
436
+ /**
437
+ * Describes the message temporal.api.nexus.v1.Endpoint.
438
+ * Use `create(EndpointSchema)` to create a new message.
439
+ */
440
+ export declare const EndpointSchema: GenMessage<Endpoint>;
441
+ /**
442
+ * Contains mutable fields for an Endpoint.
443
+ *
444
+ * @generated from message temporal.api.nexus.v1.EndpointSpec
445
+ */
446
+ export type EndpointSpec = Message<"temporal.api.nexus.v1.EndpointSpec"> & {
447
+ /**
448
+ * Endpoint name, unique for this cluster. Must match `[a-zA-Z_][a-zA-Z0-9_]*`.
449
+ * Renaming an endpoint breaks all workflow callers that reference this endpoint, causing operations to fail.
450
+ *
451
+ * @generated from field: string name = 1;
452
+ */
453
+ name: string;
454
+ /**
455
+ * Markdown description serialized as a single JSON string.
456
+ * If the Payload is encrypted, the UI and CLI may decrypt with the configured codec server endpoint.
457
+ * By default, the server enforces a limit of 20,000 bytes for this entire payload.
458
+ *
459
+ * @generated from field: temporal.api.common.v1.Payload description = 2;
460
+ */
461
+ description?: Payload;
462
+ /**
463
+ * Target to route requests to.
464
+ *
465
+ * @generated from field: temporal.api.nexus.v1.EndpointTarget target = 3;
466
+ */
467
+ target?: EndpointTarget;
468
+ };
469
+ /**
470
+ * Describes the message temporal.api.nexus.v1.EndpointSpec.
471
+ * Use `create(EndpointSpecSchema)` to create a new message.
472
+ */
473
+ export declare const EndpointSpecSchema: GenMessage<EndpointSpec>;
474
+ /**
475
+ * Target to route requests to.
476
+ *
477
+ * @generated from message temporal.api.nexus.v1.EndpointTarget
478
+ */
479
+ export type EndpointTarget = Message<"temporal.api.nexus.v1.EndpointTarget"> & {
480
+ /**
481
+ * @generated from oneof temporal.api.nexus.v1.EndpointTarget.variant
482
+ */
483
+ variant: {
484
+ /**
485
+ * @generated from field: temporal.api.nexus.v1.EndpointTarget.Worker worker = 1;
486
+ */
487
+ value: EndpointTarget_Worker;
488
+ case: "worker";
489
+ } | {
490
+ /**
491
+ * @generated from field: temporal.api.nexus.v1.EndpointTarget.External external = 2;
492
+ */
493
+ value: EndpointTarget_External;
494
+ case: "external";
495
+ } | {
496
+ case: undefined;
497
+ value?: undefined;
498
+ };
499
+ };
500
+ /**
501
+ * Describes the message temporal.api.nexus.v1.EndpointTarget.
502
+ * Use `create(EndpointTargetSchema)` to create a new message.
503
+ */
504
+ export declare const EndpointTargetSchema: GenMessage<EndpointTarget>;
505
+ /**
506
+ * Target a worker polling on a Nexus task queue in a specific namespace.
507
+ *
508
+ * @generated from message temporal.api.nexus.v1.EndpointTarget.Worker
509
+ */
510
+ export type EndpointTarget_Worker = Message<"temporal.api.nexus.v1.EndpointTarget.Worker"> & {
511
+ /**
512
+ * Namespace to route requests to.
513
+ *
514
+ * @generated from field: string namespace = 1;
515
+ */
516
+ namespace: string;
517
+ /**
518
+ * Nexus task queue to route requests to.
519
+ *
520
+ * @generated from field: string task_queue = 2;
521
+ */
522
+ taskQueue: string;
523
+ };
524
+ /**
525
+ * Describes the message temporal.api.nexus.v1.EndpointTarget.Worker.
526
+ * Use `create(EndpointTarget_WorkerSchema)` to create a new message.
527
+ */
528
+ export declare const EndpointTarget_WorkerSchema: GenMessage<EndpointTarget_Worker>;
529
+ /**
530
+ * Target an external server by URL.
531
+ * At a later point, this will support providing credentials, in the meantime, an http.RoundTripper can be injected
532
+ * into the server to modify the request.
533
+ *
534
+ * @generated from message temporal.api.nexus.v1.EndpointTarget.External
535
+ */
536
+ export type EndpointTarget_External = Message<"temporal.api.nexus.v1.EndpointTarget.External"> & {
537
+ /**
538
+ * URL to call.
539
+ *
540
+ * @generated from field: string url = 1;
541
+ */
542
+ url: string;
543
+ };
544
+ /**
545
+ * Describes the message temporal.api.nexus.v1.EndpointTarget.External.
546
+ * Use `create(EndpointTarget_ExternalSchema)` to create a new message.
547
+ */
548
+ export declare const EndpointTarget_ExternalSchema: GenMessage<EndpointTarget_External>;
549
+ //# sourceMappingURL=message_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/nexus/v1/message_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAExE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAExD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AAE7D,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,4BAA4B,CAAC;AAEjF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,kCAAkC,EAAE,OAC0oH,CAAC;AAE5rH;;;;;GAKG;AACH,MAAM,MAAM,OAAO,GAAG,OAAO,CAAC,+BAA+B,CAAC,GAAG;IAC/D;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,QAAQ,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAEpC;;;;OAIG;IACH,OAAO,EAAE,UAAU,CAAC;CACrB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,OAAO,CACM,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,CAAC,oCAAoC,CAAC,GAAG;IACzE;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;;;OAIG;IACH,aAAa,EAAE,8BAA8B,CAAC;CAC/C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,YAAY,CACJ,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,0BAA0B,GAAG,OAAO,CAAC,kDAAkD,CAAC,GAAG;IACrG;;;;OAIG;IACH,cAAc,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,0BAA0B,CAChC,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,IAAI,GAAG,OAAO,CAAC,4BAA4B,CAAC,GAAG;IACzD;;;;OAIG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,IAAI,CACY,CAAC;AAErD;;;;GAIG;AACH,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,6CAA6C,CAAC,GAAG;IAC3F;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;;;OAIG;IACH,cAAc,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAE1C;;;;OAIG;IACH,KAAK,EAAE,IAAI,EAAE,CAAC;CACf,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,qBAAqB,CACtB,CAAC;AAErD;;;;GAIG;AACH,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,8CAA8C,CAAC,GAAG;IAC7F;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;;;;OAOG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;;;OAIG;IACH,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,4BAA4B,EAAE,UAAU,CAAC,sBAAsB,CACxB,CAAC;AAErD;;;;GAIG;AACH,MAAM,MAAM,OAAO,GAAG,OAAO,CAAC,+BAA+B,CAAC,GAAG;IAC/D;;;;;OAKG;IACH,MAAM,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAElC;;;;;;OAMG;IACH,aAAa,CAAC,EAAE,SAAS,CAAC;IAE1B;;OAEG;IACH,OAAO,EAAE;QACP;;WAEG;QACH,KAAK,EAAE,qBAAqB,CAAC;QAC7B,IAAI,EAAE,gBAAgB,CAAC;KACxB,GAAG;QACF;;WAEG;QACH,KAAK,EAAE,sBAAsB,CAAC;QAC9B,IAAI,EAAE,iBAAiB,CAAC;KACzB,GAAG;QAAE,IAAI,EAAE,SAAS,CAAC;QAAC,KAAK,CAAC,EAAE,SAAS,CAAA;KAAE,CAAC;IAE3C;;;;;OAKG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,OAAO,CACM,CAAC;AAErD;;;;GAIG;AACH,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,8CAA8C,CAAC,GAAG;IAC7F;;OAEG;IACH,OAAO,EAAE;QACP;;WAEG;QACH,KAAK,EAAE,2BAA2B,CAAC;QACnC,IAAI,EAAE,aAAa,CAAC;KACrB,GAAG;QACF;;WAEG;QACH,KAAK,EAAE,4BAA4B,CAAC;QACpC,IAAI,EAAE,cAAc,CAAC;KACtB,GAAG;QACF;;;;WAIG;QACH,KAAK,EAAE,0BAA0B,CAAC;QAClC,IAAI,EAAE,gBAAgB,CAAC;KACxB,GAAG;QAAE,IAAI,EAAE,SAAS,CAAC;QAAC,KAAK,CAAC,EAAE,SAAS,CAAA;KAAE,CAAC;CAC5C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,4BAA4B,EAAE,UAAU,CAAC,sBAAsB,CACxB,CAAC;AAErD;;;;GAIG;AACH,MAAM,MAAM,2BAA2B,GAAG,OAAO,CAAC,mDAAmD,CAAC,GAAG;IACvG;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,KAAK,EAAE,IAAI,EAAE,CAAC;CACf,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iCAAiC,EAAE,UAAU,CAAC,2BAA2B,CAC/B,CAAC;AAExD;;;;;GAKG;AACH,MAAM,MAAM,4BAA4B,GAAG,OAAO,CAAC,oDAAoD,CAAC,GAAG;IACzG;;;;;OAKG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,KAAK,EAAE,IAAI,EAAE,CAAC;IAEd;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kCAAkC,EAAE,UAAU,CAAC,4BAA4B,CACjC,CAAC;AAExD;;;;GAIG;AACH,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC,+CAA+C,CAAC,GAAG,EAChG,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,uBAAuB,CAC1B,CAAC;AAErD;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,OAAO,CAAC,gCAAgC,CAAC,GAAG;IACjE;;;;OAIG;IACH,OAAO,EAAE;QACP;;WAEG;QACH,KAAK,EAAE,sBAAsB,CAAC;QAC9B,IAAI,EAAE,gBAAgB,CAAC;KACxB,GAAG;QACF;;WAEG;QACH,KAAK,EAAE,uBAAuB,CAAC;QAC/B,IAAI,EAAE,iBAAiB,CAAC;KACzB,GAAG;QAAE,IAAI,EAAE,SAAS,CAAC;QAAC,KAAK,CAAC,EAAE,SAAS,CAAA;KAAE,CAAC;CAC5C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,QAAQ,CACI,CAAC;AAErD;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,OAAO,CAAC,gCAAgC,CAAC,GAAG;IACjE;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;;OAIG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;;;OAIG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;IAEpB;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IAExB;;;;;;;OAOG;IACH,gBAAgB,CAAC,EAAE,SAAS,CAAC;IAE7B;;;;;;OAMG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,QAAQ,CACK,CAAC;AAEtD;;;;GAIG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,CAAC,oCAAoC,CAAC,GAAG;IACzE;;;;;OAKG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;;;OAIG;IACH,MAAM,CAAC,EAAE,cAAc,CAAC;CACzB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,YAAY,CACH,CAAC;AAEtD;;;;GAIG;AACH,MAAM,MAAM,cAAc,GAAG,OAAO,CAAC,sCAAsC,CAAC,GAAG;IAC7E;;OAEG;IACH,OAAO,EAAE;QACP;;WAEG;QACH,KAAK,EAAE,qBAAqB,CAAC;QAC7B,IAAI,EAAE,QAAQ,CAAC;KAChB,GAAG;QACF;;WAEG;QACH,KAAK,EAAE,uBAAuB,CAAC;QAC/B,IAAI,EAAE,UAAU,CAAC;KAClB,GAAG;QAAE,IAAI,EAAE,SAAS,CAAC;QAAC,KAAK,CAAC,EAAE,SAAS,CAAA;KAAE,CAAC;CAC5C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,cAAc,CACP,CAAC;AAEtD;;;;GAIG;AACH,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,6CAA6C,CAAC,GAAG;IAC3F;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,qBAAqB,CAClB,CAAC;AAEzD;;;;;;GAMG;AACH,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC,+CAA+C,CAAC,GAAG;IAC/F;;;;OAIG;IACH,GAAG,EAAE,MAAM,CAAC;CACb,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,uBAAuB,CACtB,CAAC"}
@@ -0,0 +1,97 @@
1
+ // @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
2
+ // @generated from file temporal/api/nexus/v1/message.proto (package temporal.api.nexus.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
5
+ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
6
+ import { file_temporal_api_common_v1_message } from "../../common/v1/message_pb.js";
7
+ import { file_temporal_api_enums_v1_nexus } from "../../enums/v1/nexus_pb.js";
8
+ /**
9
+ * Describes the file temporal/api/nexus/v1/message.proto.
10
+ */
11
+ export const file_temporal_api_nexus_v1_message = /*@__PURE__*/ fileDesc("CiN0ZW1wb3JhbC9hcGkvbmV4dXMvdjEvbWVzc2FnZS5wcm90bxIVdGVtcG9yYWwuYXBpLm5leHVzLnYxIpwBCgdGYWlsdXJlEg8KB21lc3NhZ2UYASABKAkSPgoIbWV0YWRhdGEYAiADKAsyLC50ZW1wb3JhbC5hcGkubmV4dXMudjEuRmFpbHVyZS5NZXRhZGF0YUVudHJ5Eg8KB2RldGFpbHMYAyABKAwaLwoNTWV0YWRhdGFFbnRyeRILCgNrZXkYASABKAkSDQoFdmFsdWUYAiABKAk6AjgBIqIBCgxIYW5kbGVyRXJyb3ISEgoKZXJyb3JfdHlwZRgBIAEoCRIvCgdmYWlsdXJlGAIgASgLMh4udGVtcG9yYWwuYXBpLm5leHVzLnYxLkZhaWx1cmUSTQoOcmV0cnlfYmVoYXZpb3IYAyABKA4yNS50ZW1wb3JhbC5hcGkuZW51bXMudjEuTmV4dXNIYW5kbGVyRXJyb3JSZXRyeUJlaGF2aW9yImYKGlVuc3VjY2Vzc2Z1bE9wZXJhdGlvbkVycm9yEhcKD29wZXJhdGlvbl9zdGF0ZRgBIAEoCRIvCgdmYWlsdXJlGAIgASgLMh4udGVtcG9yYWwuYXBpLm5leHVzLnYxLkZhaWx1cmUiIQoETGluaxILCgN1cmwYASABKAkSDAoEdHlwZRgCIAEoCSLRAgoVU3RhcnRPcGVyYXRpb25SZXF1ZXN0Eg8KB3NlcnZpY2UYASABKAkSEQoJb3BlcmF0aW9uGAIgASgJEhIKCnJlcXVlc3RfaWQYAyABKAkSEAoIY2FsbGJhY2sYBCABKAkSMAoHcGF5bG9hZBgFIAEoCzIfLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUGF5bG9hZBJZCg9jYWxsYmFja19oZWFkZXIYBiADKAsyQC50ZW1wb3JhbC5hcGkubmV4dXMudjEuU3RhcnRPcGVyYXRpb25SZXF1ZXN0LkNhbGxiYWNrSGVhZGVyRW50cnkSKgoFbGlua3MYByADKAsyGy50ZW1wb3JhbC5hcGkubmV4dXMudjEuTGluaxo1ChNDYWxsYmFja0hlYWRlckVudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAEibwoWQ2FuY2VsT3BlcmF0aW9uUmVxdWVzdBIPCgdzZXJ2aWNlGAEgASgJEhEKCW9wZXJhdGlvbhgCIAEoCRIYCgxvcGVyYXRpb25faWQYAyABKAlCAhgBEhcKD29wZXJhdGlvbl90b2tlbhgEIAEoCSLZAgoHUmVxdWVzdBI6CgZoZWFkZXIYASADKAsyKi50ZW1wb3JhbC5hcGkubmV4dXMudjEuUmVxdWVzdC5IZWFkZXJFbnRyeRIyCg5zY2hlZHVsZWRfdGltZRgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASRwoPc3RhcnRfb3BlcmF0aW9uGAMgASgLMiwudGVtcG9yYWwuYXBpLm5leHVzLnYxLlN0YXJ0T3BlcmF0aW9uUmVxdWVzdEgAEkkKEGNhbmNlbF9vcGVyYXRpb24YBCABKAsyLS50ZW1wb3JhbC5hcGkubmV4dXMudjEuQ2FuY2VsT3BlcmF0aW9uUmVxdWVzdEgAEhAKCGVuZHBvaW50GAogASgJGi0KC0hlYWRlckVudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAFCCQoHdmFyaWFudCLZAwoWU3RhcnRPcGVyYXRpb25SZXNwb25zZRJKCgxzeW5jX3N1Y2Nlc3MYASABKAsyMi50ZW1wb3JhbC5hcGkubmV4dXMudjEuU3RhcnRPcGVyYXRpb25SZXNwb25zZS5TeW5jSAASTAoNYXN5bmNfc3VjY2VzcxgCIAEoCzIzLnRlbXBvcmFsLmFwaS5uZXh1cy52MS5TdGFydE9wZXJhdGlvblJlc3BvbnNlLkFzeW5jSAASTAoPb3BlcmF0aW9uX2Vycm9yGAMgASgLMjEudGVtcG9yYWwuYXBpLm5leHVzLnYxLlVuc3VjY2Vzc2Z1bE9wZXJhdGlvbkVycm9ySAAaZAoEU3luYxIwCgdwYXlsb2FkGAEgASgLMh8udGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkEioKBWxpbmtzGAIgAygLMhsudGVtcG9yYWwuYXBpLm5leHVzLnYxLkxpbmsaZgoFQXN5bmMSGAoMb3BlcmF0aW9uX2lkGAEgASgJQgIYARIqCgVsaW5rcxgCIAMoCzIbLnRlbXBvcmFsLmFwaS5uZXh1cy52MS5MaW5rEhcKD29wZXJhdGlvbl90b2tlbhgDIAEoCUIJCgd2YXJpYW50IhkKF0NhbmNlbE9wZXJhdGlvblJlc3BvbnNlIqsBCghSZXNwb25zZRJICg9zdGFydF9vcGVyYXRpb24YASABKAsyLS50ZW1wb3JhbC5hcGkubmV4dXMudjEuU3RhcnRPcGVyYXRpb25SZXNwb25zZUgAEkoKEGNhbmNlbF9vcGVyYXRpb24YAiABKAsyLi50ZW1wb3JhbC5hcGkubmV4dXMudjEuQ2FuY2VsT3BlcmF0aW9uUmVzcG9uc2VIAEIJCgd2YXJpYW50ItgBCghFbmRwb2ludBIPCgd2ZXJzaW9uGAEgASgDEgoKAmlkGAIgASgJEjEKBHNwZWMYAyABKAsyIy50ZW1wb3JhbC5hcGkubmV4dXMudjEuRW5kcG9pbnRTcGVjEjAKDGNyZWF0ZWRfdGltZRgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASNgoSbGFzdF9tb2RpZmllZF90aW1lGAUgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBISCgp1cmxfcHJlZml4GAYgASgJIokBCgxFbmRwb2ludFNwZWMSDAoEbmFtZRgBIAEoCRI0CgtkZXNjcmlwdGlvbhgCIAEoCzIfLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUGF5bG9hZBI1CgZ0YXJnZXQYAyABKAsyJS50ZW1wb3JhbC5hcGkubmV4dXMudjEuRW5kcG9pbnRUYXJnZXQi6QEKDkVuZHBvaW50VGFyZ2V0Ej4KBndvcmtlchgBIAEoCzIsLnRlbXBvcmFsLmFwaS5uZXh1cy52MS5FbmRwb2ludFRhcmdldC5Xb3JrZXJIABJCCghleHRlcm5hbBgCIAEoCzIuLnRlbXBvcmFsLmFwaS5uZXh1cy52MS5FbmRwb2ludFRhcmdldC5FeHRlcm5hbEgAGi8KBldvcmtlchIRCgluYW1lc3BhY2UYASABKAkSEgoKdGFza19xdWV1ZRgCIAEoCRoXCghFeHRlcm5hbBILCgN1cmwYASABKAlCCQoHdmFyaWFudEKEAQoYaW8udGVtcG9yYWwuYXBpLm5leHVzLnYxQgxNZXNzYWdlUHJvdG9QAVohZ28udGVtcG9yYWwuaW8vYXBpL25leHVzL3YxO25leHVzqgIXVGVtcG9yYWxpby5BcGkuTmV4dXMuVjHqAhpUZW1wb3JhbGlvOjpBcGk6Ok5leHVzOjpWMWIGcHJvdG8z", [file_google_protobuf_timestamp, file_temporal_api_common_v1_message, file_temporal_api_enums_v1_nexus]);
12
+ /**
13
+ * Describes the message temporal.api.nexus.v1.Failure.
14
+ * Use `create(FailureSchema)` to create a new message.
15
+ */
16
+ export const FailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 0);
17
+ /**
18
+ * Describes the message temporal.api.nexus.v1.HandlerError.
19
+ * Use `create(HandlerErrorSchema)` to create a new message.
20
+ */
21
+ export const HandlerErrorSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 1);
22
+ /**
23
+ * Describes the message temporal.api.nexus.v1.UnsuccessfulOperationError.
24
+ * Use `create(UnsuccessfulOperationErrorSchema)` to create a new message.
25
+ */
26
+ export const UnsuccessfulOperationErrorSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 2);
27
+ /**
28
+ * Describes the message temporal.api.nexus.v1.Link.
29
+ * Use `create(LinkSchema)` to create a new message.
30
+ */
31
+ export const LinkSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 3);
32
+ /**
33
+ * Describes the message temporal.api.nexus.v1.StartOperationRequest.
34
+ * Use `create(StartOperationRequestSchema)` to create a new message.
35
+ */
36
+ export const StartOperationRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 4);
37
+ /**
38
+ * Describes the message temporal.api.nexus.v1.CancelOperationRequest.
39
+ * Use `create(CancelOperationRequestSchema)` to create a new message.
40
+ */
41
+ export const CancelOperationRequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 5);
42
+ /**
43
+ * Describes the message temporal.api.nexus.v1.Request.
44
+ * Use `create(RequestSchema)` to create a new message.
45
+ */
46
+ export const RequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 6);
47
+ /**
48
+ * Describes the message temporal.api.nexus.v1.StartOperationResponse.
49
+ * Use `create(StartOperationResponseSchema)` to create a new message.
50
+ */
51
+ export const StartOperationResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 7);
52
+ /**
53
+ * Describes the message temporal.api.nexus.v1.StartOperationResponse.Sync.
54
+ * Use `create(StartOperationResponse_SyncSchema)` to create a new message.
55
+ */
56
+ export const StartOperationResponse_SyncSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 7, 0);
57
+ /**
58
+ * Describes the message temporal.api.nexus.v1.StartOperationResponse.Async.
59
+ * Use `create(StartOperationResponse_AsyncSchema)` to create a new message.
60
+ */
61
+ export const StartOperationResponse_AsyncSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 7, 1);
62
+ /**
63
+ * Describes the message temporal.api.nexus.v1.CancelOperationResponse.
64
+ * Use `create(CancelOperationResponseSchema)` to create a new message.
65
+ */
66
+ export const CancelOperationResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 8);
67
+ /**
68
+ * Describes the message temporal.api.nexus.v1.Response.
69
+ * Use `create(ResponseSchema)` to create a new message.
70
+ */
71
+ export const ResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 9);
72
+ /**
73
+ * Describes the message temporal.api.nexus.v1.Endpoint.
74
+ * Use `create(EndpointSchema)` to create a new message.
75
+ */
76
+ export const EndpointSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 10);
77
+ /**
78
+ * Describes the message temporal.api.nexus.v1.EndpointSpec.
79
+ * Use `create(EndpointSpecSchema)` to create a new message.
80
+ */
81
+ export const EndpointSpecSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 11);
82
+ /**
83
+ * Describes the message temporal.api.nexus.v1.EndpointTarget.
84
+ * Use `create(EndpointTargetSchema)` to create a new message.
85
+ */
86
+ export const EndpointTargetSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 12);
87
+ /**
88
+ * Describes the message temporal.api.nexus.v1.EndpointTarget.Worker.
89
+ * Use `create(EndpointTarget_WorkerSchema)` to create a new message.
90
+ */
91
+ export const EndpointTarget_WorkerSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 12, 0);
92
+ /**
93
+ * Describes the message temporal.api.nexus.v1.EndpointTarget.External.
94
+ * Use `create(EndpointTarget_ExternalSchema)` to create a new message.
95
+ */
96
+ export const EndpointTarget_ExternalSchema = /*@__PURE__*/ messageDesc(file_temporal_api_nexus_v1_message, 12, 1);
97
+ //# sourceMappingURL=message_pb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/nexus/v1/message_pb.ts"],"names":[],"mappings":"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"}