reqon-dsl 0.2.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 (388) hide show
  1. package/.claude/settings.local.json +31 -0
  2. package/.claude/skills/api-integration.md +125 -0
  3. package/.claude/skills/database-schema.md +51 -0
  4. package/.claude/skills/dsl-design.md +80 -0
  5. package/.claude/skills/property-testing.md +143 -0
  6. package/.claude/skills/reqon/SKILL.md +44 -0
  7. package/.claude/skills/reqon/references/examples.md +206 -0
  8. package/.claude/skills/reqon/references/syntax.md +263 -0
  9. package/.claude/skills/vscode-extension.md +113 -0
  10. package/.github/dependabot.yml +32 -0
  11. package/.github/pull_request_template.md +21 -0
  12. package/.github/workflows/ci.yml +174 -0
  13. package/.github/workflows/release.yml +73 -0
  14. package/CLAUDE.md +72 -0
  15. package/CONTRIBUTING.md +161 -0
  16. package/README.md +235 -0
  17. package/TODO.md +51 -0
  18. package/dist/ast/index.d.ts +1 -0
  19. package/dist/ast/index.js +1 -0
  20. package/dist/ast/nodes.d.ts +237 -0
  21. package/dist/ast/nodes.js +12 -0
  22. package/dist/auth/auth.test.d.ts +1 -0
  23. package/dist/auth/auth.test.js +255 -0
  24. package/dist/auth/circuit-breaker.d.ts +115 -0
  25. package/dist/auth/circuit-breaker.js +267 -0
  26. package/dist/auth/credentials.d.ts +91 -0
  27. package/dist/auth/credentials.js +169 -0
  28. package/dist/auth/index.d.ts +5 -0
  29. package/dist/auth/index.js +8 -0
  30. package/dist/auth/oauth2-provider.d.ts +41 -0
  31. package/dist/auth/oauth2-provider.js +131 -0
  32. package/dist/auth/rate-limiter.d.ts +61 -0
  33. package/dist/auth/rate-limiter.js +380 -0
  34. package/dist/auth/token-store.d.ts +30 -0
  35. package/dist/auth/token-store.js +148 -0
  36. package/dist/auth/types.d.ts +142 -0
  37. package/dist/auth/types.js +1 -0
  38. package/dist/cli.d.ts +2 -0
  39. package/dist/cli.js +270 -0
  40. package/dist/errors/errors.test.d.ts +1 -0
  41. package/dist/errors/errors.test.js +165 -0
  42. package/dist/errors/index.d.ts +83 -0
  43. package/dist/errors/index.js +159 -0
  44. package/dist/execution/execution.test.d.ts +1 -0
  45. package/dist/execution/execution.test.js +246 -0
  46. package/dist/execution/index.d.ts +4 -0
  47. package/dist/execution/index.js +2 -0
  48. package/dist/execution/state.d.ts +136 -0
  49. package/dist/execution/state.js +82 -0
  50. package/dist/execution/store.d.ts +52 -0
  51. package/dist/execution/store.js +120 -0
  52. package/dist/index.d.ts +27 -0
  53. package/dist/index.js +57 -0
  54. package/dist/integration.test.d.ts +1 -0
  55. package/dist/integration.test.js +168 -0
  56. package/dist/interpreter/context.d.ts +15 -0
  57. package/dist/interpreter/context.js +29 -0
  58. package/dist/interpreter/evaluator.d.ts +5 -0
  59. package/dist/interpreter/evaluator.js +223 -0
  60. package/dist/interpreter/evaluator.test.d.ts +1 -0
  61. package/dist/interpreter/evaluator.test.js +512 -0
  62. package/dist/interpreter/executor.d.ts +131 -0
  63. package/dist/interpreter/executor.js +663 -0
  64. package/dist/interpreter/fetch-handler.d.ts +43 -0
  65. package/dist/interpreter/fetch-handler.js +203 -0
  66. package/dist/interpreter/http.d.ts +57 -0
  67. package/dist/interpreter/http.js +210 -0
  68. package/dist/interpreter/http.test.d.ts +1 -0
  69. package/dist/interpreter/http.test.js +299 -0
  70. package/dist/interpreter/index.d.ts +7 -0
  71. package/dist/interpreter/index.js +7 -0
  72. package/dist/interpreter/pagination.d.ts +63 -0
  73. package/dist/interpreter/pagination.js +155 -0
  74. package/dist/interpreter/progress.test.d.ts +1 -0
  75. package/dist/interpreter/progress.test.js +216 -0
  76. package/dist/interpreter/schema-matcher.d.ts +16 -0
  77. package/dist/interpreter/schema-matcher.js +136 -0
  78. package/dist/interpreter/schema-matcher.test.d.ts +1 -0
  79. package/dist/interpreter/schema-matcher.test.js +122 -0
  80. package/dist/interpreter/signals.d.ts +57 -0
  81. package/dist/interpreter/signals.js +73 -0
  82. package/dist/interpreter/step-handlers/for-handler.d.ts +17 -0
  83. package/dist/interpreter/step-handlers/for-handler.js +51 -0
  84. package/dist/interpreter/step-handlers/index.d.ts +8 -0
  85. package/dist/interpreter/step-handlers/index.js +8 -0
  86. package/dist/interpreter/step-handlers/map-handler.d.ts +10 -0
  87. package/dist/interpreter/step-handlers/map-handler.js +20 -0
  88. package/dist/interpreter/step-handlers/match-handler.d.ts +27 -0
  89. package/dist/interpreter/step-handlers/match-handler.js +61 -0
  90. package/dist/interpreter/step-handlers/store-handler.d.ts +13 -0
  91. package/dist/interpreter/step-handlers/store-handler.js +66 -0
  92. package/dist/interpreter/step-handlers/types.d.ts +15 -0
  93. package/dist/interpreter/step-handlers/types.js +1 -0
  94. package/dist/interpreter/step-handlers/validate-handler.d.ts +10 -0
  95. package/dist/interpreter/step-handlers/validate-handler.js +26 -0
  96. package/dist/interpreter/step-handlers/webhook-handler.d.ts +36 -0
  97. package/dist/interpreter/step-handlers/webhook-handler.js +104 -0
  98. package/dist/lexer/index.d.ts +10 -0
  99. package/dist/lexer/index.js +12 -0
  100. package/dist/lexer/lexer.d.ts +24 -0
  101. package/dist/lexer/lexer.js +264 -0
  102. package/dist/lexer/lexer.test.d.ts +1 -0
  103. package/dist/lexer/lexer.test.js +259 -0
  104. package/dist/lexer/tokens.d.ts +69 -0
  105. package/dist/lexer/tokens.js +146 -0
  106. package/dist/loader/index.d.ts +36 -0
  107. package/dist/loader/index.js +220 -0
  108. package/dist/loader/loader.test.d.ts +1 -0
  109. package/dist/loader/loader.test.js +287 -0
  110. package/dist/oas/index.d.ts +4 -0
  111. package/dist/oas/index.js +2 -0
  112. package/dist/oas/loader.d.ts +21 -0
  113. package/dist/oas/loader.js +82 -0
  114. package/dist/oas/oas.test.d.ts +1 -0
  115. package/dist/oas/oas.test.js +218 -0
  116. package/dist/oas/validator.d.ts +12 -0
  117. package/dist/oas/validator.js +227 -0
  118. package/dist/parser/base.d.ts +33 -0
  119. package/dist/parser/base.js +97 -0
  120. package/dist/parser/expressions.d.ts +27 -0
  121. package/dist/parser/expressions.js +248 -0
  122. package/dist/parser/expressions.test.d.ts +1 -0
  123. package/dist/parser/expressions.test.js +378 -0
  124. package/dist/parser/index.d.ts +3 -0
  125. package/dist/parser/index.js +3 -0
  126. package/dist/parser/match.test.d.ts +1 -0
  127. package/dist/parser/match.test.js +254 -0
  128. package/dist/parser/parser.d.ts +68 -0
  129. package/dist/parser/parser.js +1229 -0
  130. package/dist/parser/parser.test.d.ts +1 -0
  131. package/dist/parser/parser.test.js +333 -0
  132. package/dist/parser/schedule.test.d.ts +1 -0
  133. package/dist/parser/schedule.test.js +241 -0
  134. package/dist/plugin.d.ts +35 -0
  135. package/dist/plugin.js +68 -0
  136. package/dist/scheduler/cron-parser.d.ts +32 -0
  137. package/dist/scheduler/cron-parser.js +198 -0
  138. package/dist/scheduler/cron-parser.test.d.ts +1 -0
  139. package/dist/scheduler/cron-parser.test.js +188 -0
  140. package/dist/scheduler/index.d.ts +3 -0
  141. package/dist/scheduler/index.js +2 -0
  142. package/dist/scheduler/scheduler.d.ts +81 -0
  143. package/dist/scheduler/scheduler.js +376 -0
  144. package/dist/scheduler/types.d.ts +65 -0
  145. package/dist/scheduler/types.js +1 -0
  146. package/dist/stores/factory.d.ts +36 -0
  147. package/dist/stores/factory.js +73 -0
  148. package/dist/stores/file.d.ts +60 -0
  149. package/dist/stores/file.js +173 -0
  150. package/dist/stores/file.test.d.ts +1 -0
  151. package/dist/stores/file.test.js +165 -0
  152. package/dist/stores/index.d.ts +6 -0
  153. package/dist/stores/index.js +5 -0
  154. package/dist/stores/memory.d.ts +19 -0
  155. package/dist/stores/memory.js +51 -0
  156. package/dist/stores/memory.test.d.ts +1 -0
  157. package/dist/stores/memory.test.js +157 -0
  158. package/dist/stores/postgrest.d.ts +55 -0
  159. package/dist/stores/postgrest.js +217 -0
  160. package/dist/stores/stores.test.d.ts +1 -0
  161. package/dist/stores/stores.test.js +158 -0
  162. package/dist/stores/types.d.ts +31 -0
  163. package/dist/stores/types.js +26 -0
  164. package/dist/sync/index.d.ts +4 -0
  165. package/dist/sync/index.js +2 -0
  166. package/dist/sync/state.d.ts +69 -0
  167. package/dist/sync/state.js +66 -0
  168. package/dist/sync/store.d.ts +49 -0
  169. package/dist/sync/store.js +93 -0
  170. package/dist/sync/sync.test.d.ts +1 -0
  171. package/dist/sync/sync.test.js +221 -0
  172. package/dist/utils/async.d.ts +7 -0
  173. package/dist/utils/async.js +9 -0
  174. package/dist/utils/file.d.ts +38 -0
  175. package/dist/utils/file.js +92 -0
  176. package/dist/utils/index.d.ts +4 -0
  177. package/dist/utils/index.js +4 -0
  178. package/dist/utils/logger.d.ts +34 -0
  179. package/dist/utils/logger.js +39 -0
  180. package/dist/utils/path.d.ts +12 -0
  181. package/dist/utils/path.js +41 -0
  182. package/dist/webhook/index.d.ts +8 -0
  183. package/dist/webhook/index.js +7 -0
  184. package/dist/webhook/server.d.ts +84 -0
  185. package/dist/webhook/server.js +319 -0
  186. package/dist/webhook/store.d.ts +67 -0
  187. package/dist/webhook/store.js +193 -0
  188. package/dist/webhook/types.d.ts +88 -0
  189. package/dist/webhook/types.js +6 -0
  190. package/docusaurus/README.md +41 -0
  191. package/docusaurus/docs/advanced/execution-state.md +283 -0
  192. package/docusaurus/docs/advanced/extending-reqon.md +388 -0
  193. package/docusaurus/docs/advanced/multi-file-missions.md +250 -0
  194. package/docusaurus/docs/advanced/parallel-execution.md +353 -0
  195. package/docusaurus/docs/api-reference.md +443 -0
  196. package/docusaurus/docs/authentication/api-key.md +339 -0
  197. package/docusaurus/docs/authentication/basic.md +276 -0
  198. package/docusaurus/docs/authentication/bearer.md +282 -0
  199. package/docusaurus/docs/authentication/oauth2.md +317 -0
  200. package/docusaurus/docs/authentication/overview.md +251 -0
  201. package/docusaurus/docs/cli.md +229 -0
  202. package/docusaurus/docs/core-concepts/actions.md +286 -0
  203. package/docusaurus/docs/core-concepts/missions.md +264 -0
  204. package/docusaurus/docs/core-concepts/schemas.md +353 -0
  205. package/docusaurus/docs/core-concepts/sources.md +339 -0
  206. package/docusaurus/docs/core-concepts/stores.md +332 -0
  207. package/docusaurus/docs/dsl-syntax/expressions.md +361 -0
  208. package/docusaurus/docs/dsl-syntax/fetch.md +293 -0
  209. package/docusaurus/docs/dsl-syntax/for-loops.md +324 -0
  210. package/docusaurus/docs/dsl-syntax/map.md +345 -0
  211. package/docusaurus/docs/dsl-syntax/match.md +387 -0
  212. package/docusaurus/docs/dsl-syntax/pipelines.md +397 -0
  213. package/docusaurus/docs/dsl-syntax/validate.md +401 -0
  214. package/docusaurus/docs/error-handling/dead-letter-queues.md +399 -0
  215. package/docusaurus/docs/error-handling/flow-control.md +337 -0
  216. package/docusaurus/docs/error-handling/retry-strategies.md +368 -0
  217. package/docusaurus/docs/examples.md +488 -0
  218. package/docusaurus/docs/getting-started.md +256 -0
  219. package/docusaurus/docs/http/circuit-breaker.md +401 -0
  220. package/docusaurus/docs/http/incremental-sync.md +394 -0
  221. package/docusaurus/docs/http/pagination.md +361 -0
  222. package/docusaurus/docs/http/rate-limiting.md +383 -0
  223. package/docusaurus/docs/http/requests.md +328 -0
  224. package/docusaurus/docs/http/retry.md +402 -0
  225. package/docusaurus/docs/intro.md +90 -0
  226. package/docusaurus/docs/openapi/loading-specs.md +305 -0
  227. package/docusaurus/docs/openapi/operation-calls.md +314 -0
  228. package/docusaurus/docs/openapi/overview.md +212 -0
  229. package/docusaurus/docs/openapi/response-validation.md +344 -0
  230. package/docusaurus/docs/scheduling/cron.md +305 -0
  231. package/docusaurus/docs/scheduling/daemon-mode.md +317 -0
  232. package/docusaurus/docs/scheduling/intervals.md +289 -0
  233. package/docusaurus/docs/scheduling/overview.md +231 -0
  234. package/docusaurus/docs/stores/custom-adapters.md +376 -0
  235. package/docusaurus/docs/stores/file.md +236 -0
  236. package/docusaurus/docs/stores/memory.md +193 -0
  237. package/docusaurus/docs/stores/overview.md +274 -0
  238. package/docusaurus/docs/stores/postgrest.md +316 -0
  239. package/docusaurus/docusaurus.config.ts +148 -0
  240. package/docusaurus/package-lock.json +18029 -0
  241. package/docusaurus/package.json +47 -0
  242. package/docusaurus/sidebars.ts +155 -0
  243. package/docusaurus/src/components/HomepageFeatures/index.tsx +105 -0
  244. package/docusaurus/src/components/HomepageFeatures/styles.module.css +12 -0
  245. package/docusaurus/src/css/custom.css +169 -0
  246. package/docusaurus/src/pages/index.module.css +48 -0
  247. package/docusaurus/src/pages/index.tsx +110 -0
  248. package/docusaurus/src/pages/markdown-page.md +7 -0
  249. package/docusaurus/static/.nojekyll +0 -0
  250. package/docusaurus/static/img/docusaurus-social-card.jpg +0 -0
  251. package/docusaurus/static/img/docusaurus.png +0 -0
  252. package/docusaurus/static/img/favicon.ico +0 -0
  253. package/docusaurus/static/img/logo.svg +10 -0
  254. package/docusaurus/static/img/undraw_docusaurus_mountain.svg +171 -0
  255. package/docusaurus/static/img/undraw_docusaurus_react.svg +170 -0
  256. package/docusaurus/static/img/undraw_docusaurus_tree.svg +40 -0
  257. package/docusaurus/tsconfig.json +8 -0
  258. package/examples/README.md +112 -0
  259. package/examples/error-handling/README.md +150 -0
  260. package/examples/error-handling/payment-processor.vague +287 -0
  261. package/examples/github-sync/README.md +74 -0
  262. package/examples/github-sync/fetch-issues.vague +47 -0
  263. package/examples/github-sync/fetch-prs.vague +40 -0
  264. package/examples/github-sync/mission.vague +101 -0
  265. package/examples/github-sync/normalize.vague +70 -0
  266. package/examples/jsonplaceholder/README.md +28 -0
  267. package/examples/jsonplaceholder/posts.vague +48 -0
  268. package/examples/petstore/README.md +35 -0
  269. package/examples/petstore/openapi.yaml +97 -0
  270. package/examples/petstore/sync.vague +52 -0
  271. package/examples/temporal-comparison/README.md +297 -0
  272. package/examples/temporal-comparison/reconciliation.vague +355 -0
  273. package/examples/temporal-comparison/temporal/activities/index.ts +8 -0
  274. package/examples/temporal-comparison/temporal/activities/shipstation.ts +225 -0
  275. package/examples/temporal-comparison/temporal/activities/shopify.ts +257 -0
  276. package/examples/temporal-comparison/temporal/activities/storage.ts +198 -0
  277. package/examples/temporal-comparison/temporal/activities/stripe.ts +169 -0
  278. package/examples/temporal-comparison/temporal/activities/validation.ts +205 -0
  279. package/examples/temporal-comparison/temporal/client/schedule.ts +218 -0
  280. package/examples/temporal-comparison/temporal/config/retry.ts +63 -0
  281. package/examples/temporal-comparison/temporal/types/index.ts +129 -0
  282. package/examples/temporal-comparison/temporal/workers/main.ts +130 -0
  283. package/examples/temporal-comparison/temporal/workflows/orderReconciliation.ts +262 -0
  284. package/examples/xero/README.md +88 -0
  285. package/examples/xero/invoices.vague +189 -0
  286. package/package.json +40 -0
  287. package/src/api-integration.test.ts +954 -0
  288. package/src/ast/index.ts +1 -0
  289. package/src/ast/nodes.ts +310 -0
  290. package/src/auth/auth.test.ts +326 -0
  291. package/src/auth/circuit-breaker.test.ts +390 -0
  292. package/src/auth/circuit-breaker.ts +379 -0
  293. package/src/auth/credentials.test.ts +273 -0
  294. package/src/auth/credentials.ts +246 -0
  295. package/src/auth/index.ts +40 -0
  296. package/src/auth/oauth2-provider.ts +177 -0
  297. package/src/auth/rate-limiter.ts +459 -0
  298. package/src/auth/token-store.ts +177 -0
  299. package/src/auth/types.ts +159 -0
  300. package/src/benchmark/e2e.bench.ts +288 -0
  301. package/src/benchmark/evaluator.bench.ts +331 -0
  302. package/src/benchmark/fixtures.ts +295 -0
  303. package/src/benchmark/index.ts +108 -0
  304. package/src/benchmark/lexer.bench.ts +69 -0
  305. package/src/benchmark/parser.bench.ts +103 -0
  306. package/src/benchmark/resilience.bench.ts +193 -0
  307. package/src/benchmark/store.bench.ts +147 -0
  308. package/src/benchmark/utils.ts +230 -0
  309. package/src/cli.ts +313 -0
  310. package/src/errors/errors.test.ts +234 -0
  311. package/src/errors/index.ts +223 -0
  312. package/src/execution/execution.test.ts +307 -0
  313. package/src/execution/index.ts +21 -0
  314. package/src/execution/state.ts +207 -0
  315. package/src/execution/store.ts +188 -0
  316. package/src/index.ts +169 -0
  317. package/src/integration.test.ts +192 -0
  318. package/src/interpreter/context.ts +57 -0
  319. package/src/interpreter/evaluator.test.ts +796 -0
  320. package/src/interpreter/evaluator.ts +245 -0
  321. package/src/interpreter/executor.ts +946 -0
  322. package/src/interpreter/fetch-handler.ts +302 -0
  323. package/src/interpreter/http.test.ts +423 -0
  324. package/src/interpreter/http.ts +308 -0
  325. package/src/interpreter/index.ts +32 -0
  326. package/src/interpreter/pagination.ts +207 -0
  327. package/src/interpreter/progress.test.ts +276 -0
  328. package/src/interpreter/schema-matcher.test.ts +160 -0
  329. package/src/interpreter/schema-matcher.ts +168 -0
  330. package/src/interpreter/signals.ts +73 -0
  331. package/src/interpreter/step-handlers/for-handler.ts +65 -0
  332. package/src/interpreter/step-handlers/index.ts +17 -0
  333. package/src/interpreter/step-handlers/map-handler.ts +24 -0
  334. package/src/interpreter/step-handlers/match-handler.ts +101 -0
  335. package/src/interpreter/step-handlers/store-handler.ts +78 -0
  336. package/src/interpreter/step-handlers/types.ts +17 -0
  337. package/src/interpreter/step-handlers/validate-handler.ts +30 -0
  338. package/src/interpreter/step-handlers/webhook-handler.ts +142 -0
  339. package/src/lexer/index.ts +18 -0
  340. package/src/lexer/lexer.test.ts +316 -0
  341. package/src/lexer/tokens.ts +179 -0
  342. package/src/loader/index.ts +288 -0
  343. package/src/loader/loader.test.ts +360 -0
  344. package/src/oas/index.ts +4 -0
  345. package/src/oas/loader.ts +126 -0
  346. package/src/oas/oas.test.ts +254 -0
  347. package/src/oas/validator.ts +299 -0
  348. package/src/parser/base.ts +124 -0
  349. package/src/parser/expressions.test.ts +525 -0
  350. package/src/parser/expressions.ts +314 -0
  351. package/src/parser/index.ts +3 -0
  352. package/src/parser/match.test.ts +296 -0
  353. package/src/parser/parser.test.ts +739 -0
  354. package/src/parser/parser.ts +1469 -0
  355. package/src/parser/schedule.test.ts +287 -0
  356. package/src/parser/webhook.test.ts +248 -0
  357. package/src/plugin.ts +83 -0
  358. package/src/scheduler/cron-parser.test.ts +236 -0
  359. package/src/scheduler/cron-parser.ts +236 -0
  360. package/src/scheduler/index.ts +10 -0
  361. package/src/scheduler/scheduler.ts +443 -0
  362. package/src/scheduler/types.ts +71 -0
  363. package/src/stores/factory.ts +104 -0
  364. package/src/stores/file.test.ts +276 -0
  365. package/src/stores/file.ts +211 -0
  366. package/src/stores/index.ts +6 -0
  367. package/src/stores/memory.test.ts +238 -0
  368. package/src/stores/memory.ts +63 -0
  369. package/src/stores/postgrest.test.ts +488 -0
  370. package/src/stores/postgrest.ts +263 -0
  371. package/src/stores/stores.test.ts +197 -0
  372. package/src/stores/types.ts +58 -0
  373. package/src/sync/index.ts +16 -0
  374. package/src/sync/state.ts +126 -0
  375. package/src/sync/store.ts +139 -0
  376. package/src/sync/sync.test.ts +271 -0
  377. package/src/utils/async.ts +10 -0
  378. package/src/utils/file.ts +106 -0
  379. package/src/utils/index.ts +14 -0
  380. package/src/utils/logger.ts +53 -0
  381. package/src/utils/path.ts +47 -0
  382. package/src/webhook/index.ts +15 -0
  383. package/src/webhook/server.test.ts +253 -0
  384. package/src/webhook/server.ts +389 -0
  385. package/src/webhook/store.ts +239 -0
  386. package/src/webhook/types.ts +93 -0
  387. package/tsconfig.json +17 -0
  388. package/vitest.config.ts +39 -0
@@ -0,0 +1,946 @@
1
+ import type { Expression, SchemaDefinition } from 'vague-lang';
2
+ import type {
3
+ ReqonProgram,
4
+ MissionDefinition,
5
+ ActionDefinition,
6
+ ActionStep,
7
+ FetchStep,
8
+ ForStep,
9
+ MapStep,
10
+ ValidateStep,
11
+ StoreStep,
12
+ MatchStep,
13
+ LetStep,
14
+ WebhookStep,
15
+ PipelineDefinition,
16
+ PipelineStage,
17
+ SourceDefinition,
18
+ StoreDefinition,
19
+ FieldMapping,
20
+ RateLimitSourceConfig,
21
+ } from '../ast/nodes.js';
22
+ import { isParallelStage, getStageActions } from '../ast/nodes.js';
23
+ import type { ExecutionContext } from './context.js';
24
+ import { createContext, childContext, setVariable, getVariable } from './context.js';
25
+ import { evaluate, interpolatePath } from './evaluator.js';
26
+ import { HttpClient, BearerAuthProvider, OAuth2AuthProvider } from './http.js';
27
+ import { createStore, resolveStoreType } from '../stores/index.js';
28
+ import type { StoreAdapter } from '../stores/types.js';
29
+ import { loadOAS, resolveOperation, getResponseSchema, validateResponse } from '../oas/index.js';
30
+ import type { OASSource } from '../oas/index.js';
31
+ import { AdaptiveRateLimiter } from '../auth/rate-limiter.js';
32
+ import { CircuitBreaker, type CircuitBreakerCallbacks } from '../auth/circuit-breaker.js';
33
+ import type { RateLimiter, RateLimitCallbacks } from '../auth/types.js';
34
+ import {
35
+ createExecutionState,
36
+ findResumePoint,
37
+ type ExecutionState,
38
+ type ExecutionStore,
39
+ FileExecutionStore,
40
+ } from '../execution/index.js';
41
+ import {
42
+ generateCheckpointKey,
43
+ formatSinceDate,
44
+ type SyncStore,
45
+ FileSyncStore,
46
+ } from '../sync/index.js';
47
+ import { FetchHandler } from './fetch-handler.js';
48
+ import {
49
+ ForHandler,
50
+ MapHandler,
51
+ ValidateHandler,
52
+ StoreHandler,
53
+ MatchHandler,
54
+ WebhookHandler,
55
+ SkipSignal,
56
+ AbortError,
57
+ RetrySignal,
58
+ JumpSignal,
59
+ QueueSignal,
60
+ } from './step-handlers/index.js';
61
+ import type { WebhookServer } from '../webhook/index.js';
62
+
63
+ export interface ExecutionResult {
64
+ success: boolean;
65
+ duration: number;
66
+ actionsRun: string[];
67
+ errors: ExecutionError[];
68
+ stores: Map<string, StoreAdapter>;
69
+ /** Execution ID for resuming */
70
+ executionId?: string;
71
+ /** Execution state (if persistence enabled) */
72
+ state?: ExecutionState;
73
+ }
74
+
75
+ export interface ExecutionError {
76
+ action: string;
77
+ step: string;
78
+ message: string;
79
+ details?: unknown;
80
+ }
81
+
82
+ /** Event emitted when execution starts */
83
+ export interface ExecutionStartEvent {
84
+ executionId: string;
85
+ mission: string;
86
+ stageCount: number;
87
+ isResume: boolean;
88
+ metadata?: Record<string, unknown>;
89
+ }
90
+
91
+ /** Event emitted when execution completes */
92
+ export interface ExecutionCompleteEvent {
93
+ executionId: string;
94
+ mission: string;
95
+ success: boolean;
96
+ duration: number;
97
+ stagesCompleted: number;
98
+ stagesFailed: number;
99
+ errors: ExecutionError[];
100
+ }
101
+
102
+ /** Event emitted when a stage starts */
103
+ export interface StageStartEvent {
104
+ executionId: string;
105
+ mission: string;
106
+ stageIndex: number;
107
+ stageName: string;
108
+ totalStages: number;
109
+ }
110
+
111
+ /** Event emitted when a stage completes */
112
+ export interface StageCompleteEvent {
113
+ executionId: string;
114
+ mission: string;
115
+ stageIndex: number;
116
+ stageName: string;
117
+ totalStages: number;
118
+ success: boolean;
119
+ duration: number;
120
+ error?: string;
121
+ }
122
+
123
+ /** Callbacks for execution progress */
124
+ export interface ProgressCallbacks {
125
+ onExecutionStart?: (event: ExecutionStartEvent) => void;
126
+ onExecutionComplete?: (event: ExecutionCompleteEvent) => void;
127
+ onStageStart?: (event: StageStartEvent) => void;
128
+ onStageComplete?: (event: StageCompleteEvent) => void;
129
+ }
130
+
131
+ export interface ExecutorConfig {
132
+ // Auth tokens for sources
133
+ auth?: Record<string, AuthConfig>;
134
+ // Custom store adapters
135
+ stores?: Record<string, StoreAdapter>;
136
+ // Dry run mode
137
+ dryRun?: boolean;
138
+ // Verbose logging
139
+ verbose?: boolean;
140
+ // Rate limit callbacks (optional)
141
+ rateLimitCallbacks?: RateLimitCallbacks;
142
+ // Circuit breaker callbacks (optional)
143
+ circuitBreakerCallbacks?: CircuitBreakerCallbacks;
144
+ // Development mode - use file stores instead of sql/nosql (default: true)
145
+ developmentMode?: boolean;
146
+ // Base directory for file stores (default: '.reqon-data')
147
+ dataDir?: string;
148
+ // Enable state persistence for resumable executions
149
+ persistState?: boolean;
150
+ // Custom execution store (defaults to FileExecutionStore)
151
+ executionStore?: ExecutionStore;
152
+ // Resume from a previous execution ID
153
+ resumeFrom?: string;
154
+ // Metadata to attach to execution state
155
+ metadata?: Record<string, unknown>;
156
+ // Custom sync store (defaults to FileSyncStore)
157
+ syncStore?: SyncStore;
158
+ // Progress callbacks for real-time UI updates
159
+ progress?: ProgressCallbacks;
160
+ // Webhook server for handling wait steps
161
+ webhookServer?: WebhookServer;
162
+ }
163
+
164
+ interface AuthConfig {
165
+ type: 'bearer' | 'oauth2' | 'none';
166
+ token?: string;
167
+ accessToken?: string;
168
+ refreshToken?: string;
169
+ tokenEndpoint?: string;
170
+ clientId?: string;
171
+ clientSecret?: string;
172
+ }
173
+
174
+ export class MissionExecutor {
175
+ private config: ExecutorConfig;
176
+ private ctx: ExecutionContext;
177
+ private errors: ExecutionError[] = [];
178
+ private actionsRun: string[] = [];
179
+ private oasSources: Map<string, OASSource> = new Map();
180
+ private sourceConfigs: Map<string, SourceDefinition> = new Map();
181
+ private rateLimiter: RateLimiter;
182
+ private circuitBreaker: CircuitBreaker;
183
+ private executionStore?: ExecutionStore;
184
+ private executionState?: ExecutionState;
185
+ private syncStore?: SyncStore;
186
+ private missionName?: string;
187
+
188
+ constructor(config: ExecutorConfig = {}) {
189
+ this.config = config;
190
+ this.ctx = createContext();
191
+ this.rateLimiter = new AdaptiveRateLimiter();
192
+ this.circuitBreaker = new CircuitBreaker();
193
+
194
+ // Set up rate limit callbacks with default logging if verbose
195
+ const callbacks: RateLimitCallbacks = config.rateLimitCallbacks ?? {};
196
+ if (config.verbose && !callbacks.onRateLimited) {
197
+ callbacks.onRateLimited = (event) => {
198
+ console.log(
199
+ `[Reqon] Rate limited on ${event.source}${event.endpoint ? `:${event.endpoint}` : ''} - ` +
200
+ `waiting ${event.waitSeconds}s (strategy: ${event.strategy})`
201
+ );
202
+ };
203
+ }
204
+ if (config.verbose && !callbacks.onResumed) {
205
+ callbacks.onResumed = (event) => {
206
+ console.log(
207
+ `[Reqon] Rate limit cleared for ${event.source}${event.endpoint ? `:${event.endpoint}` : ''} ` +
208
+ `(waited ${event.waitedSeconds}s)`
209
+ );
210
+ };
211
+ }
212
+ if (config.verbose && !callbacks.onWaiting) {
213
+ callbacks.onWaiting = (event) => {
214
+ console.log(
215
+ `[Reqon] Still waiting for ${event.source}${event.endpoint ? `:${event.endpoint}` : ''} - ` +
216
+ `${event.waitSeconds}s remaining (elapsed: ${event.elapsedSeconds}s)`
217
+ );
218
+ };
219
+ }
220
+ this.rateLimiter.setCallbacks(callbacks);
221
+
222
+ // Set up circuit breaker callbacks with default logging if verbose
223
+ const cbCallbacks: CircuitBreakerCallbacks = config.circuitBreakerCallbacks ?? {};
224
+ if (config.verbose && !cbCallbacks.onOpen) {
225
+ cbCallbacks.onOpen = (event) => {
226
+ console.log(
227
+ `[Reqon] Circuit breaker OPEN for ${event.source}${event.endpoint ? `:${event.endpoint}` : ''} - ` +
228
+ `${event.failures} failures (${event.reason ?? 'threshold exceeded'})`
229
+ );
230
+ };
231
+ }
232
+ if (config.verbose && !cbCallbacks.onHalfOpen) {
233
+ cbCallbacks.onHalfOpen = (event) => {
234
+ console.log(
235
+ `[Reqon] Circuit breaker HALF-OPEN for ${event.source}${event.endpoint ? `:${event.endpoint}` : ''} - ` +
236
+ `testing recovery`
237
+ );
238
+ };
239
+ }
240
+ if (config.verbose && !cbCallbacks.onClose) {
241
+ cbCallbacks.onClose = (event) => {
242
+ console.log(
243
+ `[Reqon] Circuit breaker CLOSED for ${event.source}${event.endpoint ? `:${event.endpoint}` : ''} - ` +
244
+ `recovery successful`
245
+ );
246
+ };
247
+ }
248
+ if (config.verbose && !cbCallbacks.onRejected) {
249
+ cbCallbacks.onRejected = (event) => {
250
+ console.log(
251
+ `[Reqon] Request REJECTED by circuit breaker for ${event.source}${event.endpoint ? `:${event.endpoint}` : ''} - ` +
252
+ `retry in ${Math.ceil(event.nextAttemptIn / 1000)}s`
253
+ );
254
+ };
255
+ }
256
+ this.circuitBreaker.setCallbacks(cbCallbacks);
257
+
258
+ // Initialize execution store if persistence enabled
259
+ if (config.persistState) {
260
+ this.executionStore = config.executionStore ?? new FileExecutionStore(
261
+ `${config.dataDir ?? '.reqon-data'}/executions`
262
+ );
263
+ }
264
+ }
265
+
266
+ async execute(program: ReqonProgram): Promise<ExecutionResult> {
267
+ const startTime = Date.now();
268
+
269
+ // Find mission definition
270
+ const mission = program.statements.find(
271
+ (s): s is MissionDefinition => s.type === 'MissionDefinition'
272
+ );
273
+
274
+ if (!mission) {
275
+ return {
276
+ success: false,
277
+ duration: Date.now() - startTime,
278
+ actionsRun: [],
279
+ errors: [{ action: '', step: '', message: 'No mission found in program' }],
280
+ stores: this.ctx.stores,
281
+ };
282
+ }
283
+
284
+ // Initialize or resume execution state
285
+ await this.initializeExecutionState(mission);
286
+
287
+ try {
288
+ await this.executeMission(mission);
289
+
290
+ // Mark execution as completed
291
+ if (this.executionState) {
292
+ this.executionState.status = 'completed';
293
+ this.executionState.completedAt = new Date();
294
+ this.executionState.duration = Date.now() - startTime;
295
+ await this.saveExecutionState();
296
+ }
297
+ } catch (error) {
298
+ this.errors.push({
299
+ action: 'mission',
300
+ step: 'execute',
301
+ message: (error as Error).message,
302
+ details: error,
303
+ });
304
+
305
+ // Mark execution as failed
306
+ if (this.executionState) {
307
+ this.executionState.status = 'failed';
308
+ this.executionState.completedAt = new Date();
309
+ this.executionState.duration = Date.now() - startTime;
310
+ await this.saveExecutionState();
311
+ }
312
+ }
313
+
314
+ const duration = Date.now() - startTime;
315
+ const success = this.errors.length === 0;
316
+
317
+ // Emit onExecutionComplete callback - count stages in a single pass
318
+ const stageCounts = this.executionState?.stages.reduce(
319
+ (acc, s) => {
320
+ if (s.status === 'completed') acc.completed++;
321
+ else if (s.status === 'failed') acc.failed++;
322
+ return acc;
323
+ },
324
+ { completed: 0, failed: 0 }
325
+ );
326
+ const stagesCompleted = stageCounts?.completed ?? this.actionsRun.length;
327
+ const stagesFailed = stageCounts?.failed ?? (success ? 0 : 1);
328
+
329
+ this.config.progress?.onExecutionComplete?.({
330
+ executionId: this.executionState?.id ?? 'ephemeral',
331
+ mission: mission.name,
332
+ success,
333
+ duration,
334
+ stagesCompleted,
335
+ stagesFailed,
336
+ errors: this.errors,
337
+ });
338
+
339
+ return {
340
+ success,
341
+ duration,
342
+ actionsRun: this.actionsRun,
343
+ errors: this.errors,
344
+ stores: this.ctx.stores,
345
+ executionId: this.executionState?.id,
346
+ state: this.executionState,
347
+ };
348
+ }
349
+
350
+ private async initializeExecutionState(mission: MissionDefinition): Promise<void> {
351
+ let isResume = false;
352
+
353
+ if (this.executionStore) {
354
+ // Resume from previous execution?
355
+ if (this.config.resumeFrom) {
356
+ const previous = await this.executionStore.load(this.config.resumeFrom);
357
+ if (previous) {
358
+ this.executionState = previous;
359
+ this.executionState.status = 'running';
360
+ this.log(`Resuming execution ${previous.id} from previous run`);
361
+ await this.saveExecutionState();
362
+ isResume = true;
363
+ } else {
364
+ this.log(`Warning: Could not find execution ${this.config.resumeFrom} to resume`);
365
+ }
366
+ }
367
+
368
+ if (!this.executionState) {
369
+ // Create new execution state
370
+ const stages = mission.pipeline.stages.map((s) => this.getStageName(s));
371
+ this.executionState = createExecutionState({
372
+ mission: mission.name,
373
+ stages,
374
+ metadata: this.config.metadata,
375
+ });
376
+ this.executionState.status = 'running';
377
+ await this.saveExecutionState();
378
+ this.log(`Started execution ${this.executionState.id}`);
379
+ }
380
+ }
381
+
382
+ // Emit onExecutionStart callback
383
+ this.config.progress?.onExecutionStart?.({
384
+ executionId: this.executionState?.id ?? 'ephemeral',
385
+ mission: mission.name,
386
+ stageCount: mission.pipeline.stages.length,
387
+ isResume,
388
+ metadata: this.config.metadata,
389
+ });
390
+ }
391
+
392
+ private async saveExecutionState(): Promise<void> {
393
+ if (this.executionStore && this.executionState) {
394
+ await this.executionStore.save(this.executionState);
395
+ }
396
+ }
397
+
398
+ private updateStageState(
399
+ stageIndex: number,
400
+ updates: Partial<{ status: 'pending' | 'running' | 'completed' | 'failed' | 'skipped'; error?: string }>
401
+ ): void {
402
+ if (!this.executionState) return;
403
+
404
+ const stage = this.executionState.stages[stageIndex];
405
+ if (!stage) return;
406
+
407
+ if (updates.status === 'running' && !stage.startedAt) {
408
+ stage.startedAt = new Date();
409
+ }
410
+ if (updates.status === 'completed' || updates.status === 'failed') {
411
+ stage.completedAt = new Date();
412
+ }
413
+ if (updates.status) {
414
+ stage.status = updates.status;
415
+ }
416
+ if (updates.error) {
417
+ stage.error = updates.error;
418
+ this.executionState.errors.push({
419
+ stageIndex,
420
+ action: stage.action,
421
+ step: 'unknown',
422
+ message: updates.error,
423
+ timestamp: new Date(),
424
+ attempt: stage.attempt,
425
+ });
426
+ }
427
+ }
428
+
429
+ private async executeMission(mission: MissionDefinition): Promise<void> {
430
+ this.log(`Executing mission: ${mission.name}`);
431
+ this.missionName = mission.name;
432
+
433
+ // Initialize sync store
434
+ this.syncStore = this.config.syncStore ?? new FileSyncStore(
435
+ mission.name,
436
+ `${this.config.dataDir ?? '.reqon-data'}/sync`
437
+ );
438
+
439
+ // Initialize sources (HTTP clients)
440
+ for (const source of mission.sources) {
441
+ await this.initializeSource(source);
442
+ }
443
+
444
+ // Initialize stores
445
+ for (const store of mission.stores) {
446
+ await this.initializeStore(store);
447
+ }
448
+
449
+ // Initialize schemas (for match step schema matching)
450
+ for (const schema of mission.schemas) {
451
+ this.ctx.schemas.set(schema.name, schema);
452
+ this.log(`Registered schema: ${schema.name}`);
453
+ }
454
+
455
+ // Build action lookup
456
+ const actions = new Map<string, ActionDefinition>();
457
+ for (const action of mission.actions) {
458
+ actions.set(action.name, action);
459
+ }
460
+
461
+ // Determine resume point
462
+ const resumeIndex = this.executionState ? findResumePoint(this.executionState) : 0;
463
+ if (resumeIndex > 0) {
464
+ const resumeStage = mission.pipeline.stages[resumeIndex];
465
+ const stageName = this.getStageName(resumeStage);
466
+ this.log(`Resuming from stage ${resumeIndex} (${stageName})`);
467
+ }
468
+
469
+ // Execute pipeline
470
+ for (let i = 0; i < mission.pipeline.stages.length; i++) {
471
+ const stage = mission.pipeline.stages[i];
472
+
473
+ // Skip already completed stages when resuming
474
+ if (i < resumeIndex) {
475
+ this.log(`Skipping ${this.getStageName(stage)} (already completed)`);
476
+ continue;
477
+ }
478
+
479
+ // Check condition if present
480
+ if (stage.condition) {
481
+ const shouldRun = evaluate(stage.condition, this.ctx);
482
+ if (!shouldRun) {
483
+ this.log(`Skipping ${this.getStageName(stage)} (condition not met)`);
484
+ this.updateStageState(i, { status: 'skipped' });
485
+ await this.saveExecutionState();
486
+ continue;
487
+ }
488
+ }
489
+
490
+ // Execute stage (parallel or sequential)
491
+ if (isParallelStage(stage)) {
492
+ await this.executeParallelStage(i, stage, actions, mission);
493
+ } else if (stage.action) {
494
+ await this.executeSequentialStage(i, stage.action, actions, mission);
495
+ }
496
+ }
497
+ }
498
+
499
+ private getStageName(stage: PipelineStage): string {
500
+ if (isParallelStage(stage)) {
501
+ return `[${stage.actions.join(', ')}]`;
502
+ }
503
+ return stage.action ?? 'unknown';
504
+ }
505
+
506
+ private async executeSequentialStage(
507
+ stageIndex: number,
508
+ actionName: string,
509
+ actions: Map<string, ActionDefinition>,
510
+ mission: MissionDefinition
511
+ ): Promise<void> {
512
+ const action = actions.get(actionName);
513
+ if (!action) {
514
+ throw new Error(`Action not found: ${actionName}`);
515
+ }
516
+
517
+ // Update stage state to running
518
+ this.updateStageState(stageIndex, { status: 'running' });
519
+ await this.saveExecutionState();
520
+
521
+ const stageStartTime = Date.now();
522
+
523
+ // Emit onStageStart callback
524
+ this.config.progress?.onStageStart?.({
525
+ executionId: this.executionState?.id ?? 'ephemeral',
526
+ mission: mission.name,
527
+ stageIndex,
528
+ stageName: actionName,
529
+ totalStages: mission.pipeline.stages.length,
530
+ });
531
+
532
+ try {
533
+ await this.executeAction(action);
534
+ this.actionsRun.push(action.name);
535
+
536
+ // Mark stage as completed
537
+ this.updateStageState(stageIndex, { status: 'completed' });
538
+ await this.saveExecutionState();
539
+
540
+ // Emit onStageComplete callback (success)
541
+ this.config.progress?.onStageComplete?.({
542
+ executionId: this.executionState?.id ?? 'ephemeral',
543
+ mission: mission.name,
544
+ stageIndex,
545
+ stageName: actionName,
546
+ totalStages: mission.pipeline.stages.length,
547
+ success: true,
548
+ duration: Date.now() - stageStartTime,
549
+ });
550
+ } catch (error) {
551
+ // Mark stage as failed
552
+ this.updateStageState(stageIndex, {
553
+ status: 'failed',
554
+ error: (error as Error).message,
555
+ });
556
+ await this.saveExecutionState();
557
+
558
+ // Emit onStageComplete callback (failure)
559
+ this.config.progress?.onStageComplete?.({
560
+ executionId: this.executionState?.id ?? 'ephemeral',
561
+ mission: mission.name,
562
+ stageIndex,
563
+ stageName: actionName,
564
+ totalStages: mission.pipeline.stages.length,
565
+ success: false,
566
+ duration: Date.now() - stageStartTime,
567
+ error: (error as Error).message,
568
+ });
569
+
570
+ throw error; // Re-throw to stop execution
571
+ }
572
+ }
573
+
574
+ private async executeParallelStage(
575
+ stageIndex: number,
576
+ stage: PipelineStage & { actions: string[] },
577
+ actions: Map<string, ActionDefinition>,
578
+ mission: MissionDefinition
579
+ ): Promise<void> {
580
+ const actionNames = stage.actions;
581
+ const stageName = `[${actionNames.join(', ')}]`;
582
+
583
+ // Validate all actions exist
584
+ const actionDefs: ActionDefinition[] = [];
585
+ for (const name of actionNames) {
586
+ const action = actions.get(name);
587
+ if (!action) {
588
+ throw new Error(`Action not found: ${name}`);
589
+ }
590
+ actionDefs.push(action);
591
+ }
592
+
593
+ // Update stage state to running
594
+ this.updateStageState(stageIndex, { status: 'running' });
595
+ await this.saveExecutionState();
596
+
597
+ const stageStartTime = Date.now();
598
+
599
+ // Emit onStageStart callback
600
+ this.config.progress?.onStageStart?.({
601
+ executionId: this.executionState?.id ?? 'ephemeral',
602
+ mission: mission.name,
603
+ stageIndex,
604
+ stageName,
605
+ totalStages: mission.pipeline.stages.length,
606
+ });
607
+
608
+ this.log(`Executing parallel stage: ${stageName}`);
609
+
610
+ try {
611
+ // Execute all actions in parallel
612
+ const results = await Promise.allSettled(
613
+ actionDefs.map(action => this.executeAction(action))
614
+ );
615
+
616
+ // Check for failures
617
+ const failures: { name: string; error: Error }[] = [];
618
+ for (let i = 0; i < results.length; i++) {
619
+ const result = results[i];
620
+ if (result.status === 'fulfilled') {
621
+ this.actionsRun.push(actionDefs[i].name);
622
+ } else {
623
+ failures.push({ name: actionDefs[i].name, error: result.reason });
624
+ }
625
+ }
626
+
627
+ if (failures.length > 0) {
628
+ const errorMsg = failures.map(f => `${f.name}: ${f.error.message}`).join('; ');
629
+ throw new Error(`Parallel stage failed: ${errorMsg}`);
630
+ }
631
+
632
+ // Mark stage as completed
633
+ this.updateStageState(stageIndex, { status: 'completed' });
634
+ await this.saveExecutionState();
635
+
636
+ // Emit onStageComplete callback (success)
637
+ this.config.progress?.onStageComplete?.({
638
+ executionId: this.executionState?.id ?? 'ephemeral',
639
+ mission: mission.name,
640
+ stageIndex,
641
+ stageName,
642
+ totalStages: mission.pipeline.stages.length,
643
+ success: true,
644
+ duration: Date.now() - stageStartTime,
645
+ });
646
+ } catch (error) {
647
+ // Mark stage as failed
648
+ this.updateStageState(stageIndex, {
649
+ status: 'failed',
650
+ error: (error as Error).message,
651
+ });
652
+ await this.saveExecutionState();
653
+
654
+ // Emit onStageComplete callback (failure)
655
+ this.config.progress?.onStageComplete?.({
656
+ executionId: this.executionState?.id ?? 'ephemeral',
657
+ mission: mission.name,
658
+ stageIndex,
659
+ stageName,
660
+ totalStages: mission.pipeline.stages.length,
661
+ success: false,
662
+ duration: Date.now() - stageStartTime,
663
+ error: (error as Error).message,
664
+ });
665
+
666
+ throw error; // Re-throw to stop execution
667
+ }
668
+ }
669
+
670
+ private async initializeSource(source: SourceDefinition): Promise<void> {
671
+ // Store source config for later reference
672
+ this.sourceConfigs.set(source.name, source);
673
+
674
+ const authConfig = this.config.auth?.[source.name];
675
+
676
+ let authProvider;
677
+ if (authConfig) {
678
+ if (authConfig.type === 'bearer' && authConfig.token) {
679
+ authProvider = new BearerAuthProvider(authConfig.token);
680
+ } else if (authConfig.type === 'oauth2' && authConfig.accessToken) {
681
+ authProvider = new OAuth2AuthProvider({
682
+ accessToken: authConfig.accessToken,
683
+ refreshToken: authConfig.refreshToken,
684
+ tokenEndpoint: authConfig.tokenEndpoint,
685
+ clientId: authConfig.clientId,
686
+ clientSecret: authConfig.clientSecret,
687
+ });
688
+ }
689
+ }
690
+
691
+ // If source has OAS spec, load it
692
+ let baseUrl = source.config.base;
693
+ if (source.specPath) {
694
+ try {
695
+ const oasSource = await loadOAS(source.specPath);
696
+ this.oasSources.set(source.name, oasSource);
697
+ // Use base URL from OAS if not explicitly provided
698
+ if (!baseUrl) {
699
+ baseUrl = oasSource.baseUrl;
700
+ }
701
+ this.log(`Loaded OAS spec for ${source.name}: ${oasSource.operations.size} operations`);
702
+ } catch (error) {
703
+ throw new Error(`Failed to load OAS spec for ${source.name}: ${(error as Error).message}`);
704
+ }
705
+ }
706
+
707
+ if (!baseUrl) {
708
+ throw new Error(`Source ${source.name} has no base URL (provide 'base' or OAS spec with servers)`);
709
+ }
710
+
711
+ // Configure rate limiter for this source
712
+ if (source.config.rateLimit) {
713
+ this.rateLimiter.configure(source.name, {
714
+ strategy: source.config.rateLimit.strategy,
715
+ maxWait: source.config.rateLimit.maxWait,
716
+ fallbackRpm: source.config.rateLimit.fallbackRpm,
717
+ });
718
+ this.log(
719
+ `Rate limit config for ${source.name}: strategy=${source.config.rateLimit.strategy ?? 'pause'}, ` +
720
+ `maxWait=${source.config.rateLimit.maxWait ?? 300}s`
721
+ );
722
+ }
723
+
724
+ // Configure circuit breaker for this source
725
+ if (source.config.circuitBreaker) {
726
+ this.circuitBreaker.configure(source.name, {
727
+ failureThreshold: source.config.circuitBreaker.failureThreshold,
728
+ // Convert seconds to milliseconds for the circuit breaker
729
+ resetTimeout: source.config.circuitBreaker.resetTimeout
730
+ ? source.config.circuitBreaker.resetTimeout * 1000
731
+ : undefined,
732
+ successThreshold: source.config.circuitBreaker.successThreshold,
733
+ failureWindow: source.config.circuitBreaker.failureWindow
734
+ ? source.config.circuitBreaker.failureWindow * 1000
735
+ : undefined,
736
+ });
737
+ this.log(
738
+ `Circuit breaker config for ${source.name}: ` +
739
+ `failureThreshold=${source.config.circuitBreaker.failureThreshold ?? 5}, ` +
740
+ `resetTimeout=${source.config.circuitBreaker.resetTimeout ?? 30}s`
741
+ );
742
+ }
743
+
744
+ const client = new HttpClient({
745
+ baseUrl,
746
+ auth: authProvider,
747
+ rateLimiter: this.rateLimiter,
748
+ circuitBreaker: this.circuitBreaker,
749
+ sourceName: source.name,
750
+ });
751
+
752
+ this.ctx.sources.set(source.name, client);
753
+ this.log(`Initialized source: ${source.name}`);
754
+ }
755
+
756
+ private async initializeStore(store: StoreDefinition): Promise<void> {
757
+ // Check for custom store adapter
758
+ if (this.config.stores?.[store.name]) {
759
+ this.ctx.stores.set(store.name, this.config.stores[store.name]);
760
+ this.log(`Initialized store: ${store.name} (custom adapter)`);
761
+ return;
762
+ }
763
+
764
+ // Use store factory to create appropriate adapter
765
+ const developmentMode = this.config.developmentMode ?? true;
766
+ const storeType = resolveStoreType(store.storeType, developmentMode);
767
+
768
+ const adapter = createStore({
769
+ type: storeType,
770
+ name: store.target,
771
+ baseDir: this.config.dataDir,
772
+ });
773
+
774
+ this.ctx.stores.set(store.name, adapter);
775
+ this.log(`Initialized store: ${store.name} (${storeType}${storeType !== store.storeType ? ` <- ${store.storeType}` : ''})`);
776
+ }
777
+
778
+ private async executeAction(action: ActionDefinition): Promise<void> {
779
+ this.log(`Executing action: ${action.name}`);
780
+
781
+ for (const step of action.steps) {
782
+ await this.executeStep(step, action.name);
783
+ }
784
+ }
785
+
786
+ private async executeStep(step: ActionStep, actionName: string, ctx?: ExecutionContext): Promise<void> {
787
+ // Use provided context or default to this.ctx
788
+ const execCtx = ctx ?? this.ctx;
789
+ const originalCtx = this.ctx;
790
+
791
+ // Temporarily use the provided context
792
+ if (ctx) {
793
+ this.ctx = ctx;
794
+ }
795
+
796
+ try {
797
+ switch (step.type) {
798
+ case 'FetchStep':
799
+ await this.executeFetch(step);
800
+ break;
801
+ case 'ForStep':
802
+ await this.executeFor(step, actionName);
803
+ break;
804
+ case 'MapStep':
805
+ await this.executeMap(step);
806
+ break;
807
+ case 'ValidateStep':
808
+ await this.executeValidate(step);
809
+ break;
810
+ case 'StoreStep':
811
+ await this.executeStore(step);
812
+ break;
813
+ case 'MatchStep':
814
+ await this.executeMatch(step, actionName);
815
+ break;
816
+ case 'LetStep':
817
+ await this.executeLet(step);
818
+ break;
819
+ case 'WebhookStep':
820
+ await this.executeWebhook(step);
821
+ break;
822
+ default:
823
+ throw new Error(`Unknown step type: ${(step as ActionStep).type}`);
824
+ }
825
+ } catch (error) {
826
+ // Re-throw flow control signals without recording as errors
827
+ if (
828
+ error instanceof SkipSignal ||
829
+ error instanceof RetrySignal ||
830
+ error instanceof JumpSignal ||
831
+ error instanceof QueueSignal
832
+ ) {
833
+ throw error;
834
+ }
835
+
836
+ // AbortError is a controlled abort, still record it
837
+ this.errors.push({
838
+ action: actionName,
839
+ step: step.type,
840
+ message: (error as Error).message,
841
+ details: error,
842
+ });
843
+ throw error;
844
+ } finally {
845
+ // Restore original context
846
+ if (ctx) {
847
+ this.ctx = originalCtx;
848
+ }
849
+ }
850
+ }
851
+
852
+ private async executeFetch(step: FetchStep): Promise<void> {
853
+ const fetchHandler = new FetchHandler({
854
+ ctx: this.ctx,
855
+ oasSources: this.oasSources,
856
+ sourceConfigs: this.sourceConfigs,
857
+ syncStore: this.syncStore,
858
+ missionName: this.missionName,
859
+ executionId: this.executionState?.id,
860
+ dryRun: this.config.dryRun,
861
+ log: (msg) => this.log(msg),
862
+ });
863
+
864
+ const result = await fetchHandler.execute(step);
865
+ this.ctx.response = result.data;
866
+
867
+ // Update sync checkpoint after successful fetch
868
+ if (result.checkpointKey && this.syncStore) {
869
+ await fetchHandler.recordCheckpoint(result.checkpointKey, step, result.data);
870
+ }
871
+ }
872
+
873
+ private async executeFor(step: ForStep, actionName: string): Promise<void> {
874
+ const handler = new ForHandler({
875
+ ctx: this.ctx,
876
+ log: (msg) => this.log(msg),
877
+ executeStep: (s, a, c) => this.executeStep(s, a, c),
878
+ actionName,
879
+ });
880
+ await handler.execute(step);
881
+ }
882
+
883
+ private async executeMap(step: MapStep): Promise<void> {
884
+ const handler = new MapHandler({
885
+ ctx: this.ctx,
886
+ log: (msg) => this.log(msg),
887
+ });
888
+ await handler.execute(step);
889
+ }
890
+
891
+ private async executeValidate(step: ValidateStep): Promise<void> {
892
+ const handler = new ValidateHandler({
893
+ ctx: this.ctx,
894
+ log: (msg) => this.log(msg),
895
+ });
896
+ await handler.execute(step);
897
+ }
898
+
899
+ private async executeStore(step: StoreStep): Promise<void> {
900
+ const handler = new StoreHandler({
901
+ ctx: this.ctx,
902
+ log: (msg) => this.log(msg),
903
+ });
904
+ await handler.execute(step);
905
+ }
906
+
907
+ private async executeMatch(step: MatchStep, actionName: string): Promise<void> {
908
+ const handler = new MatchHandler({
909
+ ctx: this.ctx,
910
+ log: (msg) => this.log(msg),
911
+ executeStep: (s, a, c) => this.executeStep(s, a, c),
912
+ actionName,
913
+ });
914
+ await handler.execute(step);
915
+ // Flow control signals (SkipSignal, RetrySignal, etc.) will propagate up
916
+ }
917
+
918
+ private async executeLet(step: LetStep): Promise<void> {
919
+ const value = evaluate(step.value, this.ctx);
920
+ setVariable(this.ctx, step.name, value);
921
+ this.log(`Set variable '${step.name}' = ${JSON.stringify(value)}`);
922
+ }
923
+
924
+ private async executeWebhook(step: WebhookStep): Promise<void> {
925
+ if (!this.config.webhookServer) {
926
+ throw new Error(
927
+ 'Webhook server not configured. Use --webhook flag or configure webhookServer in executor config.'
928
+ );
929
+ }
930
+
931
+ const handler = new WebhookHandler({
932
+ ctx: this.ctx,
933
+ webhookServer: this.config.webhookServer,
934
+ executionId: this.executionState?.id ?? 'ephemeral',
935
+ log: (msg) => this.log(msg),
936
+ });
937
+
938
+ await handler.execute(step);
939
+ }
940
+
941
+ private log(message: string): void {
942
+ if (this.config.verbose) {
943
+ console.log(`[Reqon] ${message}`);
944
+ }
945
+ }
946
+ }