@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.
- package/CHANGELOG.md +13 -0
- package/dist/factory.d.ts.map +1 -1
- package/dist/factory.js +40 -3
- package/dist/factory.js.map +1 -1
- package/dist/index.js +40 -3
- package/dist/index.js.map +1 -1
- package/dist/integrations/github/integration.js +2 -0
- package/dist/integrations/github/integration.js.map +1 -1
- package/dist/integrations/github/routes.d.ts.map +1 -1
- package/dist/integrations/github/routes.js +2 -0
- package/dist/integrations/github/routes.js.map +1 -1
- package/dist/integrations/platform/github/event-worker.d.ts +2 -0
- package/dist/integrations/platform/github/event-worker.d.ts.map +1 -1
- package/dist/integrations/platform/github/event-worker.js +8 -0
- package/dist/integrations/platform/github/event-worker.js.map +1 -1
- package/dist/integrations/platform/github/integration.d.ts.map +1 -1
- package/dist/integrations/platform/github/integration.js +11 -0
- package/dist/integrations/platform/github/integration.js.map +1 -1
- package/dist/routes/surface.d.ts.map +1 -1
- package/dist/routes/surface.js +16 -1
- package/dist/routes/surface.js.map +1 -1
- package/dist/routes/work-items.js.map +1 -1
- package/dist/rules/defaults.d.ts.map +1 -1
- package/dist/rules/defaults.js +8 -2
- package/dist/rules/defaults.js.map +1 -1
- package/dist/rules/dispatcher.js.map +1 -1
- package/dist/rules/github-service.d.ts +2 -0
- package/dist/rules/github-service.d.ts.map +1 -1
- package/dist/rules/github-service.js +15 -1
- package/dist/rules/github-service.js.map +1 -1
- package/dist/rules/index.js +8 -2
- package/dist/rules/index.js.map +1 -1
- package/dist/rules/linear-service.js.map +1 -1
- package/dist/rules/processor.js.map +1 -1
- package/dist/rules/tools.js.map +1 -1
- package/dist/rules/transition-service.js.map +1 -1
- package/dist/rules/types.d.ts +5 -0
- package/dist/rules/types.d.ts.map +1 -1
- package/dist/rules/types.js.map +1 -1
- package/dist/rules/validation.js.map +1 -1
- 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 },
|