@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,639 @@
1
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { Timestamp } from "@bufbuild/protobuf/wkt";
3
+ import type { VersionDrainageStatus, WorkerDeploymentVersionStatus, WorkerVersioningMode } from "../../enums/v1/deployment_pb.js";
4
+ import type { RoutingConfigUpdateState, TaskQueueType } from "../../enums/v1/task_queue_pb.js";
5
+ import type { Payload } from "../../common/v1/message_pb.js";
6
+ import type { Message } from "@bufbuild/protobuf";
7
+ /**
8
+ * Describes the file temporal/api/deployment/v1/message.proto.
9
+ */
10
+ export declare const file_temporal_api_deployment_v1_message: GenFile;
11
+ /**
12
+ * Worker Deployment options set in SDK that need to be sent to server in every poll.
13
+ * Experimental. Worker Deployments are experimental and might significantly change in the future.
14
+ *
15
+ * @generated from message temporal.api.deployment.v1.WorkerDeploymentOptions
16
+ */
17
+ export type WorkerDeploymentOptions = Message<"temporal.api.deployment.v1.WorkerDeploymentOptions"> & {
18
+ /**
19
+ * Required. Worker Deployment name.
20
+ *
21
+ * @generated from field: string deployment_name = 1;
22
+ */
23
+ deploymentName: string;
24
+ /**
25
+ * The Build ID of the worker. Required when `worker_versioning_mode==VERSIONED`, in which case,
26
+ * the worker will be part of a Deployment Version.
27
+ *
28
+ * @generated from field: string build_id = 2;
29
+ */
30
+ buildId: string;
31
+ /**
32
+ * Required. Versioning Mode for this worker. Must be the same for all workers with the
33
+ * same `deployment_name` and `build_id` combination, across all Task Queues.
34
+ * When `worker_versioning_mode==VERSIONED`, the worker will be part of a Deployment Version.
35
+ *
36
+ * @generated from field: temporal.api.enums.v1.WorkerVersioningMode worker_versioning_mode = 3;
37
+ */
38
+ workerVersioningMode: WorkerVersioningMode;
39
+ };
40
+ /**
41
+ * Describes the message temporal.api.deployment.v1.WorkerDeploymentOptions.
42
+ * Use `create(WorkerDeploymentOptionsSchema)` to create a new message.
43
+ */
44
+ export declare const WorkerDeploymentOptionsSchema: GenMessage<WorkerDeploymentOptions>;
45
+ /**
46
+ * `Deployment` identifies a deployment of Temporal workers. The combination of deployment series
47
+ * name + build ID serves as the identifier. User can use `WorkerDeploymentOptions` in their worker
48
+ * programs to specify these values.
49
+ * Deprecated.
50
+ *
51
+ * @generated from message temporal.api.deployment.v1.Deployment
52
+ */
53
+ export type Deployment = Message<"temporal.api.deployment.v1.Deployment"> & {
54
+ /**
55
+ * Different versions of the same worker service/application are related together by having a
56
+ * shared series name.
57
+ * Out of all deployments of a series, one can be designated as the current deployment, which
58
+ * receives new workflow executions and new tasks of workflows with
59
+ * `VERSIONING_BEHAVIOR_AUTO_UPGRADE` versioning behavior.
60
+ *
61
+ * @generated from field: string series_name = 1;
62
+ */
63
+ seriesName: string;
64
+ /**
65
+ * Build ID changes with each version of the worker when the worker program code and/or config
66
+ * changes.
67
+ *
68
+ * @generated from field: string build_id = 2;
69
+ */
70
+ buildId: string;
71
+ };
72
+ /**
73
+ * Describes the message temporal.api.deployment.v1.Deployment.
74
+ * Use `create(DeploymentSchema)` to create a new message.
75
+ */
76
+ export declare const DeploymentSchema: GenMessage<Deployment>;
77
+ /**
78
+ * `DeploymentInfo` holds information about a deployment. Deployment information is tracked
79
+ * automatically by server as soon as the first poll from that deployment reaches the server. There
80
+ * can be multiple task queue workers in a single deployment which are listed in this message.
81
+ * Deprecated.
82
+ *
83
+ * @generated from message temporal.api.deployment.v1.DeploymentInfo
84
+ */
85
+ export type DeploymentInfo = Message<"temporal.api.deployment.v1.DeploymentInfo"> & {
86
+ /**
87
+ * @generated from field: temporal.api.deployment.v1.Deployment deployment = 1;
88
+ */
89
+ deployment?: Deployment;
90
+ /**
91
+ * @generated from field: google.protobuf.Timestamp create_time = 2;
92
+ */
93
+ createTime?: Timestamp;
94
+ /**
95
+ * @generated from field: repeated temporal.api.deployment.v1.DeploymentInfo.TaskQueueInfo task_queue_infos = 3;
96
+ */
97
+ taskQueueInfos: DeploymentInfo_TaskQueueInfo[];
98
+ /**
99
+ * A user-defined set of key-values. Can be updated as part of write operations to the
100
+ * deployment, such as `SetCurrentDeployment`.
101
+ *
102
+ * @generated from field: map<string, temporal.api.common.v1.Payload> metadata = 4;
103
+ */
104
+ metadata: {
105
+ [key: string]: Payload;
106
+ };
107
+ /**
108
+ * If this deployment is the current deployment of its deployment series.
109
+ *
110
+ * @generated from field: bool is_current = 5;
111
+ */
112
+ isCurrent: boolean;
113
+ };
114
+ /**
115
+ * Describes the message temporal.api.deployment.v1.DeploymentInfo.
116
+ * Use `create(DeploymentInfoSchema)` to create a new message.
117
+ */
118
+ export declare const DeploymentInfoSchema: GenMessage<DeploymentInfo>;
119
+ /**
120
+ * @generated from message temporal.api.deployment.v1.DeploymentInfo.TaskQueueInfo
121
+ */
122
+ export type DeploymentInfo_TaskQueueInfo = Message<"temporal.api.deployment.v1.DeploymentInfo.TaskQueueInfo"> & {
123
+ /**
124
+ * @generated from field: string name = 1;
125
+ */
126
+ name: string;
127
+ /**
128
+ * @generated from field: temporal.api.enums.v1.TaskQueueType type = 2;
129
+ */
130
+ type: TaskQueueType;
131
+ /**
132
+ * When server saw the first poller for this task queue in this deployment.
133
+ *
134
+ * @generated from field: google.protobuf.Timestamp first_poller_time = 3;
135
+ */
136
+ firstPollerTime?: Timestamp;
137
+ };
138
+ /**
139
+ * Describes the message temporal.api.deployment.v1.DeploymentInfo.TaskQueueInfo.
140
+ * Use `create(DeploymentInfo_TaskQueueInfoSchema)` to create a new message.
141
+ */
142
+ export declare const DeploymentInfo_TaskQueueInfoSchema: GenMessage<DeploymentInfo_TaskQueueInfo>;
143
+ /**
144
+ * Used as part of Deployment write APIs to update metadata attached to a deployment.
145
+ * Deprecated.
146
+ *
147
+ * @generated from message temporal.api.deployment.v1.UpdateDeploymentMetadata
148
+ */
149
+ export type UpdateDeploymentMetadata = Message<"temporal.api.deployment.v1.UpdateDeploymentMetadata"> & {
150
+ /**
151
+ * @generated from field: map<string, temporal.api.common.v1.Payload> upsert_entries = 1;
152
+ */
153
+ upsertEntries: {
154
+ [key: string]: Payload;
155
+ };
156
+ /**
157
+ * List of keys to remove from the metadata.
158
+ *
159
+ * @generated from field: repeated string remove_entries = 2;
160
+ */
161
+ removeEntries: string[];
162
+ };
163
+ /**
164
+ * Describes the message temporal.api.deployment.v1.UpdateDeploymentMetadata.
165
+ * Use `create(UpdateDeploymentMetadataSchema)` to create a new message.
166
+ */
167
+ export declare const UpdateDeploymentMetadataSchema: GenMessage<UpdateDeploymentMetadata>;
168
+ /**
169
+ * DeploymentListInfo is an abbreviated set of fields from DeploymentInfo that's returned in
170
+ * ListDeployments.
171
+ * Deprecated.
172
+ *
173
+ * @generated from message temporal.api.deployment.v1.DeploymentListInfo
174
+ */
175
+ export type DeploymentListInfo = Message<"temporal.api.deployment.v1.DeploymentListInfo"> & {
176
+ /**
177
+ * @generated from field: temporal.api.deployment.v1.Deployment deployment = 1;
178
+ */
179
+ deployment?: Deployment;
180
+ /**
181
+ * @generated from field: google.protobuf.Timestamp create_time = 2;
182
+ */
183
+ createTime?: Timestamp;
184
+ /**
185
+ * If this deployment is the current deployment of its deployment series.
186
+ *
187
+ * @generated from field: bool is_current = 3;
188
+ */
189
+ isCurrent: boolean;
190
+ };
191
+ /**
192
+ * Describes the message temporal.api.deployment.v1.DeploymentListInfo.
193
+ * Use `create(DeploymentListInfoSchema)` to create a new message.
194
+ */
195
+ export declare const DeploymentListInfoSchema: GenMessage<DeploymentListInfo>;
196
+ /**
197
+ * A Worker Deployment Version (Version, for short) represents all workers of the same
198
+ * code and config within a Deployment. Workers of the same Version are expected to
199
+ * behave exactly the same so when executions move between them there are no
200
+ * non-determinism issues.
201
+ * Worker Deployment Versions are created in Temporal server automatically when
202
+ * their first poller arrives to the server.
203
+ * Experimental. Worker Deployments are experimental and might significantly change in the future.
204
+ *
205
+ * @generated from message temporal.api.deployment.v1.WorkerDeploymentVersionInfo
206
+ */
207
+ export type WorkerDeploymentVersionInfo = Message<"temporal.api.deployment.v1.WorkerDeploymentVersionInfo"> & {
208
+ /**
209
+ * Deprecated. Use `deployment_version`.
210
+ *
211
+ * @generated from field: string version = 1 [deprecated = true];
212
+ * @deprecated
213
+ */
214
+ version: string;
215
+ /**
216
+ * The status of the Worker Deployment Version.
217
+ *
218
+ * @generated from field: temporal.api.enums.v1.WorkerDeploymentVersionStatus status = 14;
219
+ */
220
+ status: WorkerDeploymentVersionStatus;
221
+ /**
222
+ * Required.
223
+ *
224
+ * @generated from field: temporal.api.deployment.v1.WorkerDeploymentVersion deployment_version = 11;
225
+ */
226
+ deploymentVersion?: WorkerDeploymentVersion;
227
+ /**
228
+ * @generated from field: string deployment_name = 2;
229
+ */
230
+ deploymentName: string;
231
+ /**
232
+ * @generated from field: google.protobuf.Timestamp create_time = 3;
233
+ */
234
+ createTime?: Timestamp;
235
+ /**
236
+ * Last time `current_since_time`, `ramping_since_time, or `ramp_percentage` of this version changed.
237
+ *
238
+ * @generated from field: google.protobuf.Timestamp routing_changed_time = 4;
239
+ */
240
+ routingChangedTime?: Timestamp;
241
+ /**
242
+ * (-- api-linter: core::0140::prepositions=disabled
243
+ * aip.dev/not-precedent: 'Since' captures the field semantics despite being a preposition. --)
244
+ * Unset if not current.
245
+ *
246
+ * @generated from field: google.protobuf.Timestamp current_since_time = 5;
247
+ */
248
+ currentSinceTime?: Timestamp;
249
+ /**
250
+ * (-- api-linter: core::0140::prepositions=disabled
251
+ * aip.dev/not-precedent: 'Since' captures the field semantics despite being a preposition. --)
252
+ * Unset if not ramping. Updated when the version first starts ramping, not on each ramp change.
253
+ *
254
+ * @generated from field: google.protobuf.Timestamp ramping_since_time = 6;
255
+ */
256
+ rampingSinceTime?: Timestamp;
257
+ /**
258
+ * Timestamp when this version first became current or ramping.
259
+ *
260
+ * @generated from field: google.protobuf.Timestamp first_activation_time = 12;
261
+ */
262
+ firstActivationTime?: Timestamp;
263
+ /**
264
+ * Timestamp when this version last stopped being current or ramping.
265
+ *
266
+ * @generated from field: google.protobuf.Timestamp last_deactivation_time = 13;
267
+ */
268
+ lastDeactivationTime?: Timestamp;
269
+ /**
270
+ * Range: [0, 100]. Must be zero if the version is not ramping (i.e. `ramping_since_time` is nil).
271
+ * Can be in the range [0, 100] if the version is ramping.
272
+ *
273
+ * @generated from field: float ramp_percentage = 7;
274
+ */
275
+ rampPercentage: number;
276
+ /**
277
+ * All the Task Queues that have ever polled from this Deployment version.
278
+ * Deprecated. Use `version_task_queues` in DescribeWorkerDeploymentVersionResponse instead.
279
+ *
280
+ * @generated from field: repeated temporal.api.deployment.v1.WorkerDeploymentVersionInfo.VersionTaskQueueInfo task_queue_infos = 8;
281
+ */
282
+ taskQueueInfos: WorkerDeploymentVersionInfo_VersionTaskQueueInfo[];
283
+ /**
284
+ * Helps user determine when it is safe to decommission the workers of this
285
+ * Version. Not present when version is current or ramping.
286
+ * Current limitations:
287
+ * - Not supported for Unversioned mode.
288
+ * - Periodically refreshed, may have delays up to few minutes (consult the
289
+ * last_checked_time value).
290
+ * - Refreshed only when version is not current or ramping AND the status is not
291
+ * "drained" yet.
292
+ * - Once the status is changed to "drained", it is not changed until the Version
293
+ * becomes Current or Ramping again, at which time the drainage info is cleared.
294
+ * This means if the Version is "drained" but new workflows are sent to it via
295
+ * Pinned Versioning Override, the status does not account for those Pinned-override
296
+ * executions and remains "drained".
297
+ *
298
+ * @generated from field: temporal.api.deployment.v1.VersionDrainageInfo drainage_info = 9;
299
+ */
300
+ drainageInfo?: VersionDrainageInfo;
301
+ /**
302
+ * Arbitrary user-provided metadata attached to this version.
303
+ *
304
+ * @generated from field: temporal.api.deployment.v1.VersionMetadata metadata = 10;
305
+ */
306
+ metadata?: VersionMetadata;
307
+ };
308
+ /**
309
+ * Describes the message temporal.api.deployment.v1.WorkerDeploymentVersionInfo.
310
+ * Use `create(WorkerDeploymentVersionInfoSchema)` to create a new message.
311
+ */
312
+ export declare const WorkerDeploymentVersionInfoSchema: GenMessage<WorkerDeploymentVersionInfo>;
313
+ /**
314
+ * @generated from message temporal.api.deployment.v1.WorkerDeploymentVersionInfo.VersionTaskQueueInfo
315
+ */
316
+ export type WorkerDeploymentVersionInfo_VersionTaskQueueInfo = Message<"temporal.api.deployment.v1.WorkerDeploymentVersionInfo.VersionTaskQueueInfo"> & {
317
+ /**
318
+ * @generated from field: string name = 1;
319
+ */
320
+ name: string;
321
+ /**
322
+ * @generated from field: temporal.api.enums.v1.TaskQueueType type = 2;
323
+ */
324
+ type: TaskQueueType;
325
+ };
326
+ /**
327
+ * Describes the message temporal.api.deployment.v1.WorkerDeploymentVersionInfo.VersionTaskQueueInfo.
328
+ * Use `create(WorkerDeploymentVersionInfo_VersionTaskQueueInfoSchema)` to create a new message.
329
+ */
330
+ export declare const WorkerDeploymentVersionInfo_VersionTaskQueueInfoSchema: GenMessage<WorkerDeploymentVersionInfo_VersionTaskQueueInfo>;
331
+ /**
332
+ * Information about workflow drainage to help the user determine when it is safe
333
+ * to decommission a Version. Not present while version is current or ramping.
334
+ * Experimental. Worker Deployments are experimental and might significantly change in the future.
335
+ *
336
+ * @generated from message temporal.api.deployment.v1.VersionDrainageInfo
337
+ */
338
+ export type VersionDrainageInfo = Message<"temporal.api.deployment.v1.VersionDrainageInfo"> & {
339
+ /**
340
+ * Set to DRAINING when the version first stops accepting new executions (is no longer current or ramping).
341
+ * Set to DRAINED when no more open pinned workflows exist on this version.
342
+ *
343
+ * @generated from field: temporal.api.enums.v1.VersionDrainageStatus status = 1;
344
+ */
345
+ status: VersionDrainageStatus;
346
+ /**
347
+ * Last time the drainage status changed.
348
+ *
349
+ * @generated from field: google.protobuf.Timestamp last_changed_time = 2;
350
+ */
351
+ lastChangedTime?: Timestamp;
352
+ /**
353
+ * Last time the system checked for drainage of this version.
354
+ *
355
+ * @generated from field: google.protobuf.Timestamp last_checked_time = 3;
356
+ */
357
+ lastCheckedTime?: Timestamp;
358
+ };
359
+ /**
360
+ * Describes the message temporal.api.deployment.v1.VersionDrainageInfo.
361
+ * Use `create(VersionDrainageInfoSchema)` to create a new message.
362
+ */
363
+ export declare const VersionDrainageInfoSchema: GenMessage<VersionDrainageInfo>;
364
+ /**
365
+ * A Worker Deployment (Deployment, for short) represents all workers serving
366
+ * a shared set of Task Queues. Typically, a Deployment represents one service or
367
+ * application.
368
+ * A Deployment contains multiple Deployment Versions, each representing a different
369
+ * version of workers. (see documentation of WorkerDeploymentVersionInfo)
370
+ * Deployment records are created in Temporal server automatically when their
371
+ * first poller arrives to the server.
372
+ * Experimental. Worker Deployments are experimental and might significantly change in the future.
373
+ *
374
+ * @generated from message temporal.api.deployment.v1.WorkerDeploymentInfo
375
+ */
376
+ export type WorkerDeploymentInfo = Message<"temporal.api.deployment.v1.WorkerDeploymentInfo"> & {
377
+ /**
378
+ * Identifies a Worker Deployment. Must be unique within the namespace.
379
+ *
380
+ * @generated from field: string name = 1;
381
+ */
382
+ name: string;
383
+ /**
384
+ * Deployment Versions that are currently tracked in this Deployment. A DeploymentVersion will be
385
+ * cleaned up automatically if all the following conditions meet:
386
+ * - It does not receive new executions (is not current or ramping)
387
+ * - It has no active pollers (see WorkerDeploymentVersionInfo.pollers_status)
388
+ * - It is drained (see WorkerDeploymentVersionInfo.drainage_status)
389
+ *
390
+ * @generated from field: repeated temporal.api.deployment.v1.WorkerDeploymentInfo.WorkerDeploymentVersionSummary version_summaries = 2;
391
+ */
392
+ versionSummaries: WorkerDeploymentInfo_WorkerDeploymentVersionSummary[];
393
+ /**
394
+ * @generated from field: google.protobuf.Timestamp create_time = 3;
395
+ */
396
+ createTime?: Timestamp;
397
+ /**
398
+ * @generated from field: temporal.api.deployment.v1.RoutingConfig routing_config = 4;
399
+ */
400
+ routingConfig?: RoutingConfig;
401
+ /**
402
+ * Identity of the last client who modified the configuration of this Deployment. Set to the
403
+ * `identity` value sent by APIs such as `SetWorkerDeploymentCurrentVersion` and
404
+ * `SetWorkerDeploymentRampingVersion`.
405
+ *
406
+ * @generated from field: string last_modifier_identity = 5;
407
+ */
408
+ lastModifierIdentity: string;
409
+ /**
410
+ * Identity of the client that has the exclusive right to make changes to this Worker Deployment.
411
+ * Empty by default.
412
+ * If this is set, clients whose identity does not match `manager_identity` will not be able to make changes
413
+ * to this Worker Deployment. They can either set their own identity as the manager or unset the field to proceed.
414
+ *
415
+ * @generated from field: string manager_identity = 6;
416
+ */
417
+ managerIdentity: string;
418
+ /**
419
+ * Indicates whether the routing_config has been fully propagated to all
420
+ * relevant task queues and their partitions.
421
+ *
422
+ * @generated from field: temporal.api.enums.v1.RoutingConfigUpdateState routing_config_update_state = 7;
423
+ */
424
+ routingConfigUpdateState: RoutingConfigUpdateState;
425
+ };
426
+ /**
427
+ * Describes the message temporal.api.deployment.v1.WorkerDeploymentInfo.
428
+ * Use `create(WorkerDeploymentInfoSchema)` to create a new message.
429
+ */
430
+ export declare const WorkerDeploymentInfoSchema: GenMessage<WorkerDeploymentInfo>;
431
+ /**
432
+ * @generated from message temporal.api.deployment.v1.WorkerDeploymentInfo.WorkerDeploymentVersionSummary
433
+ */
434
+ export type WorkerDeploymentInfo_WorkerDeploymentVersionSummary = Message<"temporal.api.deployment.v1.WorkerDeploymentInfo.WorkerDeploymentVersionSummary"> & {
435
+ /**
436
+ * Deprecated. Use `deployment_version`.
437
+ *
438
+ * @generated from field: string version = 1 [deprecated = true];
439
+ * @deprecated
440
+ */
441
+ version: string;
442
+ /**
443
+ * The status of the Worker Deployment Version.
444
+ *
445
+ * @generated from field: temporal.api.enums.v1.WorkerDeploymentVersionStatus status = 11;
446
+ */
447
+ status: WorkerDeploymentVersionStatus;
448
+ /**
449
+ * Required.
450
+ *
451
+ * @generated from field: temporal.api.deployment.v1.WorkerDeploymentVersion deployment_version = 4;
452
+ */
453
+ deploymentVersion?: WorkerDeploymentVersion;
454
+ /**
455
+ * @generated from field: google.protobuf.Timestamp create_time = 2;
456
+ */
457
+ createTime?: Timestamp;
458
+ /**
459
+ * Deprecated. Use `drainage_info` instead.
460
+ *
461
+ * @generated from field: temporal.api.enums.v1.VersionDrainageStatus drainage_status = 3;
462
+ */
463
+ drainageStatus: VersionDrainageStatus;
464
+ /**
465
+ * Information about workflow drainage to help the user determine when it is safe
466
+ * to decommission a Version. Not present while version is current or ramping
467
+ *
468
+ * @generated from field: temporal.api.deployment.v1.VersionDrainageInfo drainage_info = 5;
469
+ */
470
+ drainageInfo?: VersionDrainageInfo;
471
+ /**
472
+ * Unset if not current.
473
+ * (-- api-linter: core::0140::prepositions=disabled
474
+ * aip.dev/not-precedent: 'Since' captures the field semantics despite being a preposition. --)
475
+ *
476
+ * @generated from field: google.protobuf.Timestamp current_since_time = 6;
477
+ */
478
+ currentSinceTime?: Timestamp;
479
+ /**
480
+ * Unset if not ramping. Updated when the version first starts ramping, not on each ramp change.
481
+ * (-- api-linter: core::0140::prepositions=disabled
482
+ * aip.dev/not-precedent: 'Since' captures the field semantics despite being a preposition. --)
483
+ *
484
+ * @generated from field: google.protobuf.Timestamp ramping_since_time = 7;
485
+ */
486
+ rampingSinceTime?: Timestamp;
487
+ /**
488
+ * Last time `current_since_time`, `ramping_since_time, or `ramp_percentage` of this version changed.
489
+ *
490
+ * @generated from field: google.protobuf.Timestamp routing_update_time = 8;
491
+ */
492
+ routingUpdateTime?: Timestamp;
493
+ /**
494
+ * Timestamp when this version first became current or ramping.
495
+ *
496
+ * @generated from field: google.protobuf.Timestamp first_activation_time = 9;
497
+ */
498
+ firstActivationTime?: Timestamp;
499
+ /**
500
+ * Timestamp when this version last stopped being current or ramping.
501
+ *
502
+ * @generated from field: google.protobuf.Timestamp last_deactivation_time = 10;
503
+ */
504
+ lastDeactivationTime?: Timestamp;
505
+ };
506
+ /**
507
+ * Describes the message temporal.api.deployment.v1.WorkerDeploymentInfo.WorkerDeploymentVersionSummary.
508
+ * Use `create(WorkerDeploymentInfo_WorkerDeploymentVersionSummarySchema)` to create a new message.
509
+ */
510
+ export declare const WorkerDeploymentInfo_WorkerDeploymentVersionSummarySchema: GenMessage<WorkerDeploymentInfo_WorkerDeploymentVersionSummary>;
511
+ /**
512
+ * A Worker Deployment Version (Version, for short) represents a
513
+ * version of workers within a Worker Deployment. (see documentation of WorkerDeploymentVersionInfo)
514
+ * Version records are created in Temporal server automatically when their
515
+ * first poller arrives to the server.
516
+ * Experimental. Worker Deployment Versions are experimental and might significantly change in the future.
517
+ *
518
+ * @generated from message temporal.api.deployment.v1.WorkerDeploymentVersion
519
+ */
520
+ export type WorkerDeploymentVersion = Message<"temporal.api.deployment.v1.WorkerDeploymentVersion"> & {
521
+ /**
522
+ * A unique identifier for this Version within the Deployment it is a part of.
523
+ * Not necessarily unique within the namespace.
524
+ * The combination of `deployment_name` and `build_id` uniquely identifies this
525
+ * Version within the namespace, because Deployment names are unique within a namespace.
526
+ *
527
+ * @generated from field: string build_id = 1;
528
+ */
529
+ buildId: string;
530
+ /**
531
+ * Identifies the Worker Deployment this Version is part of.
532
+ *
533
+ * @generated from field: string deployment_name = 2;
534
+ */
535
+ deploymentName: string;
536
+ };
537
+ /**
538
+ * Describes the message temporal.api.deployment.v1.WorkerDeploymentVersion.
539
+ * Use `create(WorkerDeploymentVersionSchema)` to create a new message.
540
+ */
541
+ export declare const WorkerDeploymentVersionSchema: GenMessage<WorkerDeploymentVersion>;
542
+ /**
543
+ * @generated from message temporal.api.deployment.v1.VersionMetadata
544
+ */
545
+ export type VersionMetadata = Message<"temporal.api.deployment.v1.VersionMetadata"> & {
546
+ /**
547
+ * Arbitrary key-values.
548
+ *
549
+ * @generated from field: map<string, temporal.api.common.v1.Payload> entries = 1;
550
+ */
551
+ entries: {
552
+ [key: string]: Payload;
553
+ };
554
+ };
555
+ /**
556
+ * Describes the message temporal.api.deployment.v1.VersionMetadata.
557
+ * Use `create(VersionMetadataSchema)` to create a new message.
558
+ */
559
+ export declare const VersionMetadataSchema: GenMessage<VersionMetadata>;
560
+ /**
561
+ * @generated from message temporal.api.deployment.v1.RoutingConfig
562
+ */
563
+ export type RoutingConfig = Message<"temporal.api.deployment.v1.RoutingConfig"> & {
564
+ /**
565
+ * Specifies which Deployment Version should receive new workflow executions and tasks of
566
+ * existing unversioned or AutoUpgrade workflows.
567
+ * Nil value means no Version in this Deployment (except Ramping Version, if present) receives traffic other than tasks of previously Pinned workflows. In absence of a Current Version, remaining traffic after any ramp (if set) goes to unversioned workers (those with `UNVERSIONED` (or unspecified) `WorkerVersioningMode`.).
568
+ * Note: Current Version is overridden by the Ramping Version for a portion of traffic when ramp percentage
569
+ * is non-zero (see `ramping_deployment_version` and `ramping_version_percentage`).
570
+ *
571
+ * @generated from field: temporal.api.deployment.v1.WorkerDeploymentVersion current_deployment_version = 7;
572
+ */
573
+ currentDeploymentVersion?: WorkerDeploymentVersion;
574
+ /**
575
+ * Deprecated. Use `current_deployment_version`.
576
+ *
577
+ * @generated from field: string current_version = 1 [deprecated = true];
578
+ * @deprecated
579
+ */
580
+ currentVersion: string;
581
+ /**
582
+ * When ramp percentage is non-zero, that portion of traffic is shifted from the Current Version to the Ramping Version.
583
+ * Must always be different from `current_deployment_version` unless both are nil.
584
+ * Nil value represents all the unversioned workers (those with `UNVERSIONED` (or unspecified) `WorkerVersioningMode`.)
585
+ * Note that it is possible to ramp from one Version to another Version, or from unversioned
586
+ * workers to a particular Version, or from a particular Version to unversioned workers.
587
+ *
588
+ * @generated from field: temporal.api.deployment.v1.WorkerDeploymentVersion ramping_deployment_version = 9;
589
+ */
590
+ rampingDeploymentVersion?: WorkerDeploymentVersion;
591
+ /**
592
+ * Deprecated. Use `ramping_deployment_version`.
593
+ *
594
+ * @generated from field: string ramping_version = 2 [deprecated = true];
595
+ * @deprecated
596
+ */
597
+ rampingVersion: string;
598
+ /**
599
+ * Percentage of tasks that are routed to the Ramping Version instead of the Current Version.
600
+ * Valid range: [0, 100]. A 100% value means the Ramping Version is receiving full traffic but
601
+ * not yet "promoted" to be the Current Version, likely due to pending validations.
602
+ * A 0% value means the Ramping Version is receiving no traffic.
603
+ *
604
+ * @generated from field: float ramping_version_percentage = 3;
605
+ */
606
+ rampingVersionPercentage: number;
607
+ /**
608
+ * Last time current version was changed.
609
+ *
610
+ * @generated from field: google.protobuf.Timestamp current_version_changed_time = 4;
611
+ */
612
+ currentVersionChangedTime?: Timestamp;
613
+ /**
614
+ * Last time ramping version was changed. Not updated if only the ramp percentage changes.
615
+ *
616
+ * @generated from field: google.protobuf.Timestamp ramping_version_changed_time = 5;
617
+ */
618
+ rampingVersionChangedTime?: Timestamp;
619
+ /**
620
+ * Last time ramping version percentage was changed.
621
+ * If ramping version is changed, this is also updated, even if the percentage stays the same.
622
+ *
623
+ * @generated from field: google.protobuf.Timestamp ramping_version_percentage_changed_time = 6;
624
+ */
625
+ rampingVersionPercentageChangedTime?: Timestamp;
626
+ /**
627
+ * Monotonically increasing value which is incremented on every mutation
628
+ * to any field of this message to achieve eventual consistency between task queues and their partitions.
629
+ *
630
+ * @generated from field: int64 revision_number = 10;
631
+ */
632
+ revisionNumber: bigint;
633
+ };
634
+ /**
635
+ * Describes the message temporal.api.deployment.v1.RoutingConfig.
636
+ * Use `create(RoutingConfigSchema)` to create a new message.
637
+ */
638
+ export declare const RoutingConfigSchema: GenMessage<RoutingConfig>;
639
+ //# sourceMappingURL=message_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/deployment/v1/message_pb.ts"],"names":[],"mappings":"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"}