@mastra/factory 0.1.0-alpha.2 → 0.1.0-alpha.3

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 (41) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/factory.d.ts.map +1 -1
  3. package/dist/factory.js +40 -3
  4. package/dist/factory.js.map +1 -1
  5. package/dist/index.js +40 -3
  6. package/dist/index.js.map +1 -1
  7. package/dist/integrations/github/integration.js +2 -0
  8. package/dist/integrations/github/integration.js.map +1 -1
  9. package/dist/integrations/github/routes.d.ts.map +1 -1
  10. package/dist/integrations/github/routes.js +2 -0
  11. package/dist/integrations/github/routes.js.map +1 -1
  12. package/dist/integrations/platform/github/event-worker.d.ts +2 -0
  13. package/dist/integrations/platform/github/event-worker.d.ts.map +1 -1
  14. package/dist/integrations/platform/github/event-worker.js +8 -0
  15. package/dist/integrations/platform/github/event-worker.js.map +1 -1
  16. package/dist/integrations/platform/github/integration.d.ts.map +1 -1
  17. package/dist/integrations/platform/github/integration.js +11 -0
  18. package/dist/integrations/platform/github/integration.js.map +1 -1
  19. package/dist/routes/surface.d.ts.map +1 -1
  20. package/dist/routes/surface.js +16 -1
  21. package/dist/routes/surface.js.map +1 -1
  22. package/dist/routes/work-items.js.map +1 -1
  23. package/dist/rules/defaults.d.ts.map +1 -1
  24. package/dist/rules/defaults.js +8 -2
  25. package/dist/rules/defaults.js.map +1 -1
  26. package/dist/rules/dispatcher.js.map +1 -1
  27. package/dist/rules/github-service.d.ts +2 -0
  28. package/dist/rules/github-service.d.ts.map +1 -1
  29. package/dist/rules/github-service.js +15 -1
  30. package/dist/rules/github-service.js.map +1 -1
  31. package/dist/rules/index.js +8 -2
  32. package/dist/rules/index.js.map +1 -1
  33. package/dist/rules/linear-service.js.map +1 -1
  34. package/dist/rules/processor.js.map +1 -1
  35. package/dist/rules/tools.js.map +1 -1
  36. package/dist/rules/transition-service.js.map +1 -1
  37. package/dist/rules/types.d.ts +5 -0
  38. package/dist/rules/types.d.ts.map +1 -1
  39. package/dist/rules/types.js.map +1 -1
  40. package/dist/rules/validation.js.map +1 -1
  41. package/package.json +4 -4
@@ -924,6 +924,7 @@ function polledIssueEvent(project, issue) {
924
924
  number: issue.number,
925
925
  title: issue.title,
926
926
  html_url: issue.url,
927
+ created_at: issue.createdAt,
927
928
  labels: issue.labels.map((name) => ({ name }))
928
929
  }
929
930
  }
@@ -943,6 +944,7 @@ function polledPullRequestEvent(project, pullRequest) {
943
944
  number: pullRequest.number,
944
945
  title: pullRequest.title,
945
946
  html_url: pullRequest.url,
947
+ created_at: pullRequest.createdAt,
946
948
  state: "open",
947
949
  merged: false,
948
950
  head: { ref: pullRequest.headBranch },