@invect/core 0.0.1
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/LICENSE +21 -0
- package/README.md +103 -0
- package/dist/_virtual/_rolldown/runtime.cjs +33 -0
- package/dist/_virtual/_rolldown/runtime.js +13 -0
- package/dist/actions/action-executor.cjs +166 -0
- package/dist/actions/action-executor.cjs.map +1 -0
- package/dist/actions/action-executor.d.cts +33 -0
- package/dist/actions/action-executor.d.cts.map +1 -0
- package/dist/actions/action-executor.d.ts +33 -0
- package/dist/actions/action-executor.d.ts.map +1 -0
- package/dist/actions/action-executor.js +164 -0
- package/dist/actions/action-executor.js.map +1 -0
- package/dist/actions/action-registry.cjs +236 -0
- package/dist/actions/action-registry.cjs.map +1 -0
- package/dist/actions/action-registry.d.cts +58 -0
- package/dist/actions/action-registry.d.cts.map +1 -0
- package/dist/actions/action-registry.d.ts +58 -0
- package/dist/actions/action-registry.d.ts.map +1 -0
- package/dist/actions/action-registry.js +233 -0
- package/dist/actions/action-registry.js.map +1 -0
- package/dist/actions/core/if-else.cjs +111 -0
- package/dist/actions/core/if-else.cjs.map +1 -0
- package/dist/actions/core/if-else.d.cts +1 -0
- package/dist/actions/core/if-else.d.ts +1 -0
- package/dist/actions/core/if-else.js +98 -0
- package/dist/actions/core/if-else.js.map +1 -0
- package/dist/actions/core/index.cjs +20 -0
- package/dist/actions/core/index.cjs.map +1 -0
- package/dist/actions/core/index.d.cts +7 -0
- package/dist/actions/core/index.d.cts.map +1 -0
- package/dist/actions/core/index.d.ts +7 -0
- package/dist/actions/core/index.d.ts.map +1 -0
- package/dist/actions/core/index.js +20 -0
- package/dist/actions/core/index.js.map +1 -0
- package/dist/actions/core/input.cjs +73 -0
- package/dist/actions/core/input.cjs.map +1 -0
- package/dist/actions/core/input.d.cts +1 -0
- package/dist/actions/core/input.d.ts +1 -0
- package/dist/actions/core/input.js +72 -0
- package/dist/actions/core/input.js.map +1 -0
- package/dist/actions/core/javascript.cjs +77 -0
- package/dist/actions/core/javascript.cjs.map +1 -0
- package/dist/actions/core/javascript.d.cts +1 -0
- package/dist/actions/core/javascript.d.ts +1 -0
- package/dist/actions/core/javascript.js +62 -0
- package/dist/actions/core/javascript.js.map +1 -0
- package/dist/actions/core/model.cjs +285 -0
- package/dist/actions/core/model.cjs.map +1 -0
- package/dist/actions/core/model.d.cts +1 -0
- package/dist/actions/core/model.d.ts +1 -0
- package/dist/actions/core/model.js +276 -0
- package/dist/actions/core/model.js.map +1 -0
- package/dist/actions/core/output.cjs +66 -0
- package/dist/actions/core/output.cjs.map +1 -0
- package/dist/actions/core/output.d.cts +1 -0
- package/dist/actions/core/output.d.ts +1 -0
- package/dist/actions/core/output.js +57 -0
- package/dist/actions/core/output.js.map +1 -0
- package/dist/actions/core/template-string.cjs +85 -0
- package/dist/actions/core/template-string.cjs.map +1 -0
- package/dist/actions/core/template-string.d.cts +1 -0
- package/dist/actions/core/template-string.d.ts +1 -0
- package/dist/actions/core/template-string.js +76 -0
- package/dist/actions/core/template-string.js.map +1 -0
- package/dist/actions/define-action.cjs +14 -0
- package/dist/actions/define-action.cjs.map +1 -0
- package/dist/actions/define-action.d.cts +13 -0
- package/dist/actions/define-action.d.cts.map +1 -0
- package/dist/actions/define-action.d.ts +13 -0
- package/dist/actions/define-action.d.ts.map +1 -0
- package/dist/actions/define-action.js +14 -0
- package/dist/actions/define-action.js.map +1 -0
- package/dist/actions/github/add-issue-comment.cjs +152 -0
- package/dist/actions/github/add-issue-comment.cjs.map +1 -0
- package/dist/actions/github/add-issue-comment.d.cts +1 -0
- package/dist/actions/github/add-issue-comment.d.ts +1 -0
- package/dist/actions/github/add-issue-comment.js +150 -0
- package/dist/actions/github/add-issue-comment.js.map +1 -0
- package/dist/actions/github/create-branch.cjs +201 -0
- package/dist/actions/github/create-branch.cjs.map +1 -0
- package/dist/actions/github/create-branch.d.cts +1 -0
- package/dist/actions/github/create-branch.d.ts +1 -0
- package/dist/actions/github/create-branch.js +199 -0
- package/dist/actions/github/create-branch.js.map +1 -0
- package/dist/actions/github/create-issue.cjs +190 -0
- package/dist/actions/github/create-issue.cjs.map +1 -0
- package/dist/actions/github/create-issue.d.cts +1 -0
- package/dist/actions/github/create-issue.d.ts +1 -0
- package/dist/actions/github/create-issue.js +188 -0
- package/dist/actions/github/create-issue.js.map +1 -0
- package/dist/actions/github/create-or-update-file.cjs +216 -0
- package/dist/actions/github/create-or-update-file.cjs.map +1 -0
- package/dist/actions/github/create-or-update-file.d.cts +1 -0
- package/dist/actions/github/create-or-update-file.d.ts +1 -0
- package/dist/actions/github/create-or-update-file.js +214 -0
- package/dist/actions/github/create-or-update-file.js.map +1 -0
- package/dist/actions/github/create-pull-request.cjs +206 -0
- package/dist/actions/github/create-pull-request.cjs.map +1 -0
- package/dist/actions/github/create-pull-request.d.cts +1 -0
- package/dist/actions/github/create-pull-request.d.ts +1 -0
- package/dist/actions/github/create-pull-request.js +204 -0
- package/dist/actions/github/create-pull-request.js.map +1 -0
- package/dist/actions/github/create-release.cjs +218 -0
- package/dist/actions/github/create-release.cjs.map +1 -0
- package/dist/actions/github/create-release.d.cts +1 -0
- package/dist/actions/github/create-release.d.ts +1 -0
- package/dist/actions/github/create-release.js +216 -0
- package/dist/actions/github/create-release.js.map +1 -0
- package/dist/actions/github/get-file-content.cjs +164 -0
- package/dist/actions/github/get-file-content.cjs.map +1 -0
- package/dist/actions/github/get-file-content.d.cts +1 -0
- package/dist/actions/github/get-file-content.d.ts +1 -0
- package/dist/actions/github/get-file-content.js +162 -0
- package/dist/actions/github/get-file-content.js.map +1 -0
- package/dist/actions/github/get-issue.cjs +149 -0
- package/dist/actions/github/get-issue.cjs.map +1 -0
- package/dist/actions/github/get-issue.d.cts +1 -0
- package/dist/actions/github/get-issue.d.ts +1 -0
- package/dist/actions/github/get-issue.js +147 -0
- package/dist/actions/github/get-issue.js.map +1 -0
- package/dist/actions/github/get-pull-request.cjs +160 -0
- package/dist/actions/github/get-pull-request.cjs.map +1 -0
- package/dist/actions/github/get-pull-request.d.cts +1 -0
- package/dist/actions/github/get-pull-request.d.ts +1 -0
- package/dist/actions/github/get-pull-request.js +158 -0
- package/dist/actions/github/get-pull-request.js.map +1 -0
- package/dist/actions/github/get-repo.cjs +144 -0
- package/dist/actions/github/get-repo.cjs.map +1 -0
- package/dist/actions/github/get-repo.d.cts +1 -0
- package/dist/actions/github/get-repo.d.ts +1 -0
- package/dist/actions/github/get-repo.js +142 -0
- package/dist/actions/github/get-repo.js.map +1 -0
- package/dist/actions/github/index.cjs +48 -0
- package/dist/actions/github/index.cjs.map +1 -0
- package/dist/actions/github/index.d.cts +7 -0
- package/dist/actions/github/index.d.cts.map +1 -0
- package/dist/actions/github/index.d.ts +7 -0
- package/dist/actions/github/index.d.ts.map +1 -0
- package/dist/actions/github/index.js +48 -0
- package/dist/actions/github/index.js.map +1 -0
- package/dist/actions/github/list-branches.cjs +149 -0
- package/dist/actions/github/list-branches.cjs.map +1 -0
- package/dist/actions/github/list-branches.d.cts +1 -0
- package/dist/actions/github/list-branches.d.ts +1 -0
- package/dist/actions/github/list-branches.js +147 -0
- package/dist/actions/github/list-branches.js.map +1 -0
- package/dist/actions/github/list-commits.cjs +200 -0
- package/dist/actions/github/list-commits.cjs.map +1 -0
- package/dist/actions/github/list-commits.d.cts +1 -0
- package/dist/actions/github/list-commits.d.ts +1 -0
- package/dist/actions/github/list-commits.js +198 -0
- package/dist/actions/github/list-commits.js.map +1 -0
- package/dist/actions/github/list-issue-comments.cjs +153 -0
- package/dist/actions/github/list-issue-comments.cjs.map +1 -0
- package/dist/actions/github/list-issue-comments.d.cts +1 -0
- package/dist/actions/github/list-issue-comments.d.ts +1 -0
- package/dist/actions/github/list-issue-comments.js +151 -0
- package/dist/actions/github/list-issue-comments.js.map +1 -0
- package/dist/actions/github/list-issues.cjs +244 -0
- package/dist/actions/github/list-issues.cjs.map +1 -0
- package/dist/actions/github/list-issues.d.cts +1 -0
- package/dist/actions/github/list-issues.d.ts +1 -0
- package/dist/actions/github/list-issues.js +242 -0
- package/dist/actions/github/list-issues.js.map +1 -0
- package/dist/actions/github/list-pull-requests.cjs +252 -0
- package/dist/actions/github/list-pull-requests.cjs.map +1 -0
- package/dist/actions/github/list-pull-requests.d.cts +1 -0
- package/dist/actions/github/list-pull-requests.d.ts +1 -0
- package/dist/actions/github/list-pull-requests.js +250 -0
- package/dist/actions/github/list-pull-requests.js.map +1 -0
- package/dist/actions/github/list-releases.cjs +152 -0
- package/dist/actions/github/list-releases.cjs.map +1 -0
- package/dist/actions/github/list-releases.d.cts +1 -0
- package/dist/actions/github/list-releases.d.ts +1 -0
- package/dist/actions/github/list-releases.js +150 -0
- package/dist/actions/github/list-releases.js.map +1 -0
- package/dist/actions/github/list-repos.cjs +227 -0
- package/dist/actions/github/list-repos.cjs.map +1 -0
- package/dist/actions/github/list-repos.d.cts +1 -0
- package/dist/actions/github/list-repos.d.ts +1 -0
- package/dist/actions/github/list-repos.js +225 -0
- package/dist/actions/github/list-repos.js.map +1 -0
- package/dist/actions/github/merge-pull-request.cjs +204 -0
- package/dist/actions/github/merge-pull-request.cjs.map +1 -0
- package/dist/actions/github/merge-pull-request.d.cts +1 -0
- package/dist/actions/github/merge-pull-request.d.ts +1 -0
- package/dist/actions/github/merge-pull-request.js +202 -0
- package/dist/actions/github/merge-pull-request.js.map +1 -0
- package/dist/actions/github/search-issues.cjs +200 -0
- package/dist/actions/github/search-issues.cjs.map +1 -0
- package/dist/actions/github/search-issues.d.cts +1 -0
- package/dist/actions/github/search-issues.d.ts +1 -0
- package/dist/actions/github/search-issues.js +198 -0
- package/dist/actions/github/search-issues.js.map +1 -0
- package/dist/actions/github/update-issue.cjs +243 -0
- package/dist/actions/github/update-issue.cjs.map +1 -0
- package/dist/actions/github/update-issue.d.cts +1 -0
- package/dist/actions/github/update-issue.d.ts +1 -0
- package/dist/actions/github/update-issue.js +241 -0
- package/dist/actions/github/update-issue.js.map +1 -0
- package/dist/actions/gmail/create-draft.cjs +228 -0
- package/dist/actions/gmail/create-draft.cjs.map +1 -0
- package/dist/actions/gmail/create-draft.d.cts +1 -0
- package/dist/actions/gmail/create-draft.d.ts +1 -0
- package/dist/actions/gmail/create-draft.js +226 -0
- package/dist/actions/gmail/create-draft.js.map +1 -0
- package/dist/actions/gmail/get-message.cjs +205 -0
- package/dist/actions/gmail/get-message.cjs.map +1 -0
- package/dist/actions/gmail/get-message.d.cts +1 -0
- package/dist/actions/gmail/get-message.d.ts +1 -0
- package/dist/actions/gmail/get-message.js +203 -0
- package/dist/actions/gmail/get-message.js.map +1 -0
- package/dist/actions/gmail/index.cjs +18 -0
- package/dist/actions/gmail/index.cjs.map +1 -0
- package/dist/actions/gmail/index.d.cts +7 -0
- package/dist/actions/gmail/index.d.cts.map +1 -0
- package/dist/actions/gmail/index.d.ts +7 -0
- package/dist/actions/gmail/index.d.ts.map +1 -0
- package/dist/actions/gmail/index.js +18 -0
- package/dist/actions/gmail/index.js.map +1 -0
- package/dist/actions/gmail/list-messages.cjs +195 -0
- package/dist/actions/gmail/list-messages.cjs.map +1 -0
- package/dist/actions/gmail/list-messages.d.cts +1 -0
- package/dist/actions/gmail/list-messages.d.ts +1 -0
- package/dist/actions/gmail/list-messages.js +193 -0
- package/dist/actions/gmail/list-messages.js.map +1 -0
- package/dist/actions/gmail/modify-labels.cjs +163 -0
- package/dist/actions/gmail/modify-labels.cjs.map +1 -0
- package/dist/actions/gmail/modify-labels.d.cts +1 -0
- package/dist/actions/gmail/modify-labels.d.ts +1 -0
- package/dist/actions/gmail/modify-labels.js +161 -0
- package/dist/actions/gmail/modify-labels.js.map +1 -0
- package/dist/actions/gmail/send-message.cjs +233 -0
- package/dist/actions/gmail/send-message.cjs.map +1 -0
- package/dist/actions/gmail/send-message.d.cts +1 -0
- package/dist/actions/gmail/send-message.d.ts +1 -0
- package/dist/actions/gmail/send-message.js +231 -0
- package/dist/actions/gmail/send-message.js.map +1 -0
- package/dist/actions/google-calendar/create-event.cjs +274 -0
- package/dist/actions/google-calendar/create-event.cjs.map +1 -0
- package/dist/actions/google-calendar/create-event.d.cts +1 -0
- package/dist/actions/google-calendar/create-event.d.ts +1 -0
- package/dist/actions/google-calendar/create-event.js +272 -0
- package/dist/actions/google-calendar/create-event.js.map +1 -0
- package/dist/actions/google-calendar/delete-event.cjs +145 -0
- package/dist/actions/google-calendar/delete-event.cjs.map +1 -0
- package/dist/actions/google-calendar/delete-event.d.cts +1 -0
- package/dist/actions/google-calendar/delete-event.d.ts +1 -0
- package/dist/actions/google-calendar/delete-event.js +143 -0
- package/dist/actions/google-calendar/delete-event.js.map +1 -0
- package/dist/actions/google-calendar/get-event.cjs +128 -0
- package/dist/actions/google-calendar/get-event.cjs.map +1 -0
- package/dist/actions/google-calendar/get-event.d.cts +1 -0
- package/dist/actions/google-calendar/get-event.d.ts +1 -0
- package/dist/actions/google-calendar/get-event.js +126 -0
- package/dist/actions/google-calendar/get-event.js.map +1 -0
- package/dist/actions/google-calendar/index.cjs +20 -0
- package/dist/actions/google-calendar/index.cjs.map +1 -0
- package/dist/actions/google-calendar/index.d.cts +7 -0
- package/dist/actions/google-calendar/index.d.cts.map +1 -0
- package/dist/actions/google-calendar/index.d.ts +7 -0
- package/dist/actions/google-calendar/index.d.ts.map +1 -0
- package/dist/actions/google-calendar/index.js +20 -0
- package/dist/actions/google-calendar/index.js.map +1 -0
- package/dist/actions/google-calendar/list-events.cjs +193 -0
- package/dist/actions/google-calendar/list-events.cjs.map +1 -0
- package/dist/actions/google-calendar/list-events.d.cts +1 -0
- package/dist/actions/google-calendar/list-events.d.ts +1 -0
- package/dist/actions/google-calendar/list-events.js +191 -0
- package/dist/actions/google-calendar/list-events.js.map +1 -0
- package/dist/actions/google-calendar/query-freebusy.cjs +160 -0
- package/dist/actions/google-calendar/query-freebusy.cjs.map +1 -0
- package/dist/actions/google-calendar/query-freebusy.d.cts +1 -0
- package/dist/actions/google-calendar/query-freebusy.d.ts +1 -0
- package/dist/actions/google-calendar/query-freebusy.js +158 -0
- package/dist/actions/google-calendar/query-freebusy.js.map +1 -0
- package/dist/actions/google-calendar/update-event.cjs +221 -0
- package/dist/actions/google-calendar/update-event.cjs.map +1 -0
- package/dist/actions/google-calendar/update-event.d.cts +1 -0
- package/dist/actions/google-calendar/update-event.d.ts +1 -0
- package/dist/actions/google-calendar/update-event.js +219 -0
- package/dist/actions/google-calendar/update-event.js.map +1 -0
- package/dist/actions/google-docs/append-text.cjs +138 -0
- package/dist/actions/google-docs/append-text.cjs.map +1 -0
- package/dist/actions/google-docs/append-text.d.cts +1 -0
- package/dist/actions/google-docs/append-text.d.ts +1 -0
- package/dist/actions/google-docs/append-text.js +136 -0
- package/dist/actions/google-docs/append-text.js.map +1 -0
- package/dist/actions/google-docs/create-document.cjs +138 -0
- package/dist/actions/google-docs/create-document.cjs.map +1 -0
- package/dist/actions/google-docs/create-document.d.cts +1 -0
- package/dist/actions/google-docs/create-document.d.ts +1 -0
- package/dist/actions/google-docs/create-document.js +136 -0
- package/dist/actions/google-docs/create-document.js.map +1 -0
- package/dist/actions/google-docs/get-document.cjs +118 -0
- package/dist/actions/google-docs/get-document.cjs.map +1 -0
- package/dist/actions/google-docs/get-document.d.cts +1 -0
- package/dist/actions/google-docs/get-document.d.ts +1 -0
- package/dist/actions/google-docs/get-document.js +116 -0
- package/dist/actions/google-docs/get-document.js.map +1 -0
- package/dist/actions/google-docs/index.cjs +18 -0
- package/dist/actions/google-docs/index.cjs.map +1 -0
- package/dist/actions/google-docs/index.d.cts +7 -0
- package/dist/actions/google-docs/index.d.cts.map +1 -0
- package/dist/actions/google-docs/index.d.ts +7 -0
- package/dist/actions/google-docs/index.d.ts.map +1 -0
- package/dist/actions/google-docs/index.js +18 -0
- package/dist/actions/google-docs/index.js.map +1 -0
- package/dist/actions/google-docs/insert-text.cjs +136 -0
- package/dist/actions/google-docs/insert-text.cjs.map +1 -0
- package/dist/actions/google-docs/insert-text.d.cts +1 -0
- package/dist/actions/google-docs/insert-text.d.ts +1 -0
- package/dist/actions/google-docs/insert-text.js +134 -0
- package/dist/actions/google-docs/insert-text.js.map +1 -0
- package/dist/actions/google-docs/replace-text.cjs +152 -0
- package/dist/actions/google-docs/replace-text.cjs.map +1 -0
- package/dist/actions/google-docs/replace-text.d.cts +1 -0
- package/dist/actions/google-docs/replace-text.d.ts +1 -0
- package/dist/actions/google-docs/replace-text.js +150 -0
- package/dist/actions/google-docs/replace-text.js.map +1 -0
- package/dist/actions/google-drive/create-file.cjs +155 -0
- package/dist/actions/google-drive/create-file.cjs.map +1 -0
- package/dist/actions/google-drive/create-file.d.cts +1 -0
- package/dist/actions/google-drive/create-file.d.ts +1 -0
- package/dist/actions/google-drive/create-file.js +153 -0
- package/dist/actions/google-drive/create-file.js.map +1 -0
- package/dist/actions/google-drive/create-folder.cjs +130 -0
- package/dist/actions/google-drive/create-folder.cjs.map +1 -0
- package/dist/actions/google-drive/create-folder.d.cts +1 -0
- package/dist/actions/google-drive/create-folder.d.ts +1 -0
- package/dist/actions/google-drive/create-folder.js +128 -0
- package/dist/actions/google-drive/create-folder.js.map +1 -0
- package/dist/actions/google-drive/delete-file.cjs +98 -0
- package/dist/actions/google-drive/delete-file.cjs.map +1 -0
- package/dist/actions/google-drive/delete-file.d.cts +1 -0
- package/dist/actions/google-drive/delete-file.d.ts +1 -0
- package/dist/actions/google-drive/delete-file.js +96 -0
- package/dist/actions/google-drive/delete-file.js.map +1 -0
- package/dist/actions/google-drive/get-file.cjs +103 -0
- package/dist/actions/google-drive/get-file.cjs.map +1 -0
- package/dist/actions/google-drive/get-file.d.cts +1 -0
- package/dist/actions/google-drive/get-file.d.ts +1 -0
- package/dist/actions/google-drive/get-file.js +101 -0
- package/dist/actions/google-drive/get-file.js.map +1 -0
- package/dist/actions/google-drive/index.cjs +22 -0
- package/dist/actions/google-drive/index.cjs.map +1 -0
- package/dist/actions/google-drive/index.d.cts +7 -0
- package/dist/actions/google-drive/index.d.cts.map +1 -0
- package/dist/actions/google-drive/index.d.ts +7 -0
- package/dist/actions/google-drive/index.d.ts.map +1 -0
- package/dist/actions/google-drive/index.js +22 -0
- package/dist/actions/google-drive/index.js.map +1 -0
- package/dist/actions/google-drive/list-files.cjs +156 -0
- package/dist/actions/google-drive/list-files.cjs.map +1 -0
- package/dist/actions/google-drive/list-files.d.cts +1 -0
- package/dist/actions/google-drive/list-files.d.ts +1 -0
- package/dist/actions/google-drive/list-files.js +154 -0
- package/dist/actions/google-drive/list-files.js.map +1 -0
- package/dist/actions/google-drive/search-files.cjs +138 -0
- package/dist/actions/google-drive/search-files.cjs.map +1 -0
- package/dist/actions/google-drive/search-files.d.cts +1 -0
- package/dist/actions/google-drive/search-files.d.ts +1 -0
- package/dist/actions/google-drive/search-files.js +136 -0
- package/dist/actions/google-drive/search-files.js.map +1 -0
- package/dist/actions/google-drive/share-file.cjs +226 -0
- package/dist/actions/google-drive/share-file.cjs.map +1 -0
- package/dist/actions/google-drive/share-file.d.cts +1 -0
- package/dist/actions/google-drive/share-file.d.ts +1 -0
- package/dist/actions/google-drive/share-file.js +224 -0
- package/dist/actions/google-drive/share-file.js.map +1 -0
- package/dist/actions/google-sheets/append-values.cjs +175 -0
- package/dist/actions/google-sheets/append-values.cjs.map +1 -0
- package/dist/actions/google-sheets/append-values.d.cts +1 -0
- package/dist/actions/google-sheets/append-values.d.ts +1 -0
- package/dist/actions/google-sheets/append-values.js +173 -0
- package/dist/actions/google-sheets/append-values.js.map +1 -0
- package/dist/actions/google-sheets/clear-values.cjs +118 -0
- package/dist/actions/google-sheets/clear-values.cjs.map +1 -0
- package/dist/actions/google-sheets/clear-values.d.cts +1 -0
- package/dist/actions/google-sheets/clear-values.d.ts +1 -0
- package/dist/actions/google-sheets/clear-values.js +116 -0
- package/dist/actions/google-sheets/clear-values.js.map +1 -0
- package/dist/actions/google-sheets/create-spreadsheet.cjs +128 -0
- package/dist/actions/google-sheets/create-spreadsheet.cjs.map +1 -0
- package/dist/actions/google-sheets/create-spreadsheet.d.cts +1 -0
- package/dist/actions/google-sheets/create-spreadsheet.d.ts +1 -0
- package/dist/actions/google-sheets/create-spreadsheet.js +126 -0
- package/dist/actions/google-sheets/create-spreadsheet.js.map +1 -0
- package/dist/actions/google-sheets/get-values.cjs +168 -0
- package/dist/actions/google-sheets/get-values.cjs.map +1 -0
- package/dist/actions/google-sheets/get-values.d.cts +1 -0
- package/dist/actions/google-sheets/get-values.d.ts +1 -0
- package/dist/actions/google-sheets/get-values.js +166 -0
- package/dist/actions/google-sheets/get-values.js.map +1 -0
- package/dist/actions/google-sheets/index.cjs +18 -0
- package/dist/actions/google-sheets/index.cjs.map +1 -0
- package/dist/actions/google-sheets/index.d.cts +7 -0
- package/dist/actions/google-sheets/index.d.cts.map +1 -0
- package/dist/actions/google-sheets/index.d.ts +7 -0
- package/dist/actions/google-sheets/index.d.ts.map +1 -0
- package/dist/actions/google-sheets/index.js +18 -0
- package/dist/actions/google-sheets/index.js.map +1 -0
- package/dist/actions/google-sheets/update-values.cjs +158 -0
- package/dist/actions/google-sheets/update-values.cjs.map +1 -0
- package/dist/actions/google-sheets/update-values.d.cts +1 -0
- package/dist/actions/google-sheets/update-values.d.ts +1 -0
- package/dist/actions/google-sheets/update-values.js +156 -0
- package/dist/actions/google-sheets/update-values.js.map +1 -0
- package/dist/actions/http/index.cjs +7 -0
- package/dist/actions/http/index.cjs.map +1 -0
- package/dist/actions/http/index.d.cts +7 -0
- package/dist/actions/http/index.d.cts.map +1 -0
- package/dist/actions/http/index.d.ts +7 -0
- package/dist/actions/http/index.d.ts.map +1 -0
- package/dist/actions/http/index.js +8 -0
- package/dist/actions/http/index.js.map +1 -0
- package/dist/actions/http/request.cjs +223 -0
- package/dist/actions/http/request.cjs.map +1 -0
- package/dist/actions/http/request.d.cts +1 -0
- package/dist/actions/http/request.d.ts +1 -0
- package/dist/actions/http/request.js +222 -0
- package/dist/actions/http/request.js.map +1 -0
- package/dist/actions/index.cjs +46 -0
- package/dist/actions/index.cjs.map +1 -0
- package/dist/actions/index.d.cts +27 -0
- package/dist/actions/index.d.cts.map +1 -0
- package/dist/actions/index.d.ts +27 -0
- package/dist/actions/index.d.ts.map +1 -0
- package/dist/actions/index.js +45 -0
- package/dist/actions/index.js.map +1 -0
- package/dist/actions/linear/create-issue.cjs +296 -0
- package/dist/actions/linear/create-issue.cjs.map +1 -0
- package/dist/actions/linear/create-issue.d.cts +1 -0
- package/dist/actions/linear/create-issue.d.ts +1 -0
- package/dist/actions/linear/create-issue.js +294 -0
- package/dist/actions/linear/create-issue.js.map +1 -0
- package/dist/actions/linear/index.cjs +16 -0
- package/dist/actions/linear/index.cjs.map +1 -0
- package/dist/actions/linear/index.d.cts +7 -0
- package/dist/actions/linear/index.d.cts.map +1 -0
- package/dist/actions/linear/index.d.ts +7 -0
- package/dist/actions/linear/index.d.ts.map +1 -0
- package/dist/actions/linear/index.js +16 -0
- package/dist/actions/linear/index.js.map +1 -0
- package/dist/actions/linear/list-issues.cjs +239 -0
- package/dist/actions/linear/list-issues.cjs.map +1 -0
- package/dist/actions/linear/list-issues.d.cts +1 -0
- package/dist/actions/linear/list-issues.d.ts +1 -0
- package/dist/actions/linear/list-issues.js +237 -0
- package/dist/actions/linear/list-issues.js.map +1 -0
- package/dist/actions/linear/list-teams.cjs +183 -0
- package/dist/actions/linear/list-teams.cjs.map +1 -0
- package/dist/actions/linear/list-teams.d.cts +1 -0
- package/dist/actions/linear/list-teams.d.ts +1 -0
- package/dist/actions/linear/list-teams.js +181 -0
- package/dist/actions/linear/list-teams.js.map +1 -0
- package/dist/actions/linear/update-issue.cjs +282 -0
- package/dist/actions/linear/update-issue.cjs.map +1 -0
- package/dist/actions/linear/update-issue.d.cts +1 -0
- package/dist/actions/linear/update-issue.d.ts +1 -0
- package/dist/actions/linear/update-issue.js +280 -0
- package/dist/actions/linear/update-issue.js.map +1 -0
- package/dist/actions/microsoft/get-calendar-event.cjs +139 -0
- package/dist/actions/microsoft/get-calendar-event.cjs.map +1 -0
- package/dist/actions/microsoft/get-calendar-event.d.cts +1 -0
- package/dist/actions/microsoft/get-calendar-event.d.ts +1 -0
- package/dist/actions/microsoft/get-calendar-event.js +137 -0
- package/dist/actions/microsoft/get-calendar-event.js.map +1 -0
- package/dist/actions/microsoft/get-meeting-transcript.cjs +221 -0
- package/dist/actions/microsoft/get-meeting-transcript.cjs.map +1 -0
- package/dist/actions/microsoft/get-meeting-transcript.d.cts +1 -0
- package/dist/actions/microsoft/get-meeting-transcript.d.ts +1 -0
- package/dist/actions/microsoft/get-meeting-transcript.js +219 -0
- package/dist/actions/microsoft/get-meeting-transcript.js.map +1 -0
- package/dist/actions/microsoft/get-message.cjs +173 -0
- package/dist/actions/microsoft/get-message.cjs.map +1 -0
- package/dist/actions/microsoft/get-message.d.cts +1 -0
- package/dist/actions/microsoft/get-message.d.ts +1 -0
- package/dist/actions/microsoft/get-message.js +171 -0
- package/dist/actions/microsoft/get-message.js.map +1 -0
- package/dist/actions/microsoft/index.cjs +22 -0
- package/dist/actions/microsoft/index.cjs.map +1 -0
- package/dist/actions/microsoft/index.d.cts +1 -0
- package/dist/actions/microsoft/index.d.ts +1 -0
- package/dist/actions/microsoft/index.js +22 -0
- package/dist/actions/microsoft/index.js.map +1 -0
- package/dist/actions/microsoft/list-calendar-events.cjs +202 -0
- package/dist/actions/microsoft/list-calendar-events.cjs.map +1 -0
- package/dist/actions/microsoft/list-calendar-events.d.cts +1 -0
- package/dist/actions/microsoft/list-calendar-events.d.ts +1 -0
- package/dist/actions/microsoft/list-calendar-events.js +200 -0
- package/dist/actions/microsoft/list-calendar-events.js.map +1 -0
- package/dist/actions/microsoft/list-calendars.cjs +99 -0
- package/dist/actions/microsoft/list-calendars.cjs.map +1 -0
- package/dist/actions/microsoft/list-calendars.d.cts +1 -0
- package/dist/actions/microsoft/list-calendars.d.ts +1 -0
- package/dist/actions/microsoft/list-calendars.js +97 -0
- package/dist/actions/microsoft/list-calendars.js.map +1 -0
- package/dist/actions/microsoft/list-messages.cjs +223 -0
- package/dist/actions/microsoft/list-messages.cjs.map +1 -0
- package/dist/actions/microsoft/list-messages.d.cts +1 -0
- package/dist/actions/microsoft/list-messages.d.ts +1 -0
- package/dist/actions/microsoft/list-messages.js +221 -0
- package/dist/actions/microsoft/list-messages.js.map +1 -0
- package/dist/actions/microsoft/list-online-meetings.cjs +132 -0
- package/dist/actions/microsoft/list-online-meetings.cjs.map +1 -0
- package/dist/actions/microsoft/list-online-meetings.d.cts +1 -0
- package/dist/actions/microsoft/list-online-meetings.d.ts +1 -0
- package/dist/actions/microsoft/list-online-meetings.js +130 -0
- package/dist/actions/microsoft/list-online-meetings.js.map +1 -0
- package/dist/actions/postgres/describe-table.cjs +175 -0
- package/dist/actions/postgres/describe-table.cjs.map +1 -0
- package/dist/actions/postgres/describe-table.d.cts +1 -0
- package/dist/actions/postgres/describe-table.d.ts +1 -0
- package/dist/actions/postgres/describe-table.js +165 -0
- package/dist/actions/postgres/describe-table.js.map +1 -0
- package/dist/actions/postgres/execute-query.cjs +120 -0
- package/dist/actions/postgres/execute-query.cjs.map +1 -0
- package/dist/actions/postgres/execute-query.d.cts +1 -0
- package/dist/actions/postgres/execute-query.d.ts +1 -0
- package/dist/actions/postgres/execute-query.js +110 -0
- package/dist/actions/postgres/execute-query.js.map +1 -0
- package/dist/actions/postgres/index.cjs +16 -0
- package/dist/actions/postgres/index.cjs.map +1 -0
- package/dist/actions/postgres/index.d.cts +7 -0
- package/dist/actions/postgres/index.d.cts.map +1 -0
- package/dist/actions/postgres/index.d.ts +7 -0
- package/dist/actions/postgres/index.d.ts.map +1 -0
- package/dist/actions/postgres/index.js +16 -0
- package/dist/actions/postgres/index.js.map +1 -0
- package/dist/actions/postgres/insert-rows.cjs +168 -0
- package/dist/actions/postgres/insert-rows.cjs.map +1 -0
- package/dist/actions/postgres/insert-rows.d.cts +1 -0
- package/dist/actions/postgres/insert-rows.d.ts +1 -0
- package/dist/actions/postgres/insert-rows.js +158 -0
- package/dist/actions/postgres/insert-rows.js.map +1 -0
- package/dist/actions/postgres/list-tables.cjs +133 -0
- package/dist/actions/postgres/list-tables.cjs.map +1 -0
- package/dist/actions/postgres/list-tables.d.cts +1 -0
- package/dist/actions/postgres/list-tables.d.ts +1 -0
- package/dist/actions/postgres/list-tables.js +123 -0
- package/dist/actions/postgres/list-tables.js.map +1 -0
- package/dist/actions/providers.cjs +128 -0
- package/dist/actions/providers.cjs.map +1 -0
- package/dist/actions/providers.d.cts +22 -0
- package/dist/actions/providers.d.cts.map +1 -0
- package/dist/actions/providers.d.ts +22 -0
- package/dist/actions/providers.d.ts.map +1 -0
- package/dist/actions/providers.js +116 -0
- package/dist/actions/providers.js.map +1 -0
- package/dist/actions/slack/index.cjs +9 -0
- package/dist/actions/slack/index.cjs.map +1 -0
- package/dist/actions/slack/index.d.cts +7 -0
- package/dist/actions/slack/index.d.cts.map +1 -0
- package/dist/actions/slack/index.d.ts +7 -0
- package/dist/actions/slack/index.d.ts.map +1 -0
- package/dist/actions/slack/index.js +9 -0
- package/dist/actions/slack/index.js.map +1 -0
- package/dist/actions/slack/list-channels.cjs +157 -0
- package/dist/actions/slack/list-channels.cjs.map +1 -0
- package/dist/actions/slack/list-channels.d.cts +1 -0
- package/dist/actions/slack/list-channels.d.ts +1 -0
- package/dist/actions/slack/list-channels.js +155 -0
- package/dist/actions/slack/list-channels.js.map +1 -0
- package/dist/actions/slack/send-message.cjs +157 -0
- package/dist/actions/slack/send-message.cjs.map +1 -0
- package/dist/actions/slack/send-message.d.cts +1 -0
- package/dist/actions/slack/send-message.d.ts +1 -0
- package/dist/actions/slack/send-message.js +155 -0
- package/dist/actions/slack/send-message.js.map +1 -0
- package/dist/actions/triggers/cron.cjs +95 -0
- package/dist/actions/triggers/cron.cjs.map +1 -0
- package/dist/actions/triggers/cron.d.cts +1 -0
- package/dist/actions/triggers/cron.d.ts +1 -0
- package/dist/actions/triggers/cron.js +83 -0
- package/dist/actions/triggers/cron.js.map +1 -0
- package/dist/actions/triggers/index.cjs +9 -0
- package/dist/actions/triggers/index.cjs.map +1 -0
- package/dist/actions/triggers/index.d.cts +1 -0
- package/dist/actions/triggers/index.d.ts +1 -0
- package/dist/actions/triggers/index.js +9 -0
- package/dist/actions/triggers/index.js.map +1 -0
- package/dist/actions/triggers/manual.cjs +105 -0
- package/dist/actions/triggers/manual.cjs.map +1 -0
- package/dist/actions/triggers/manual.d.cts +1 -0
- package/dist/actions/triggers/manual.d.ts +1 -0
- package/dist/actions/triggers/manual.js +103 -0
- package/dist/actions/triggers/manual.js.map +1 -0
- package/dist/actions/types.d.cts +373 -0
- package/dist/actions/types.d.cts.map +1 -0
- package/dist/actions/types.d.ts +373 -0
- package/dist/actions/types.d.ts.map +1 -0
- package/dist/database/adapter-factory.cjs +188 -0
- package/dist/database/adapter-factory.cjs.map +1 -0
- package/dist/database/adapter-factory.js +187 -0
- package/dist/database/adapter-factory.js.map +1 -0
- package/dist/database/adapter.cjs +33 -0
- package/dist/database/adapter.cjs.map +1 -0
- package/dist/database/adapter.d.cts +76 -0
- package/dist/database/adapter.d.cts.map +1 -0
- package/dist/database/adapter.d.ts +76 -0
- package/dist/database/adapter.d.ts.map +1 -0
- package/dist/database/adapter.js +33 -0
- package/dist/database/adapter.js.map +1 -0
- package/dist/database/adapters/connection-bridge.cjs +119 -0
- package/dist/database/adapters/connection-bridge.cjs.map +1 -0
- package/dist/database/adapters/connection-bridge.js +118 -0
- package/dist/database/adapters/connection-bridge.js.map +1 -0
- package/dist/database/adapters/kysely-adapter.cjs +138 -0
- package/dist/database/adapters/kysely-adapter.cjs.map +1 -0
- package/dist/database/adapters/kysely-adapter.js +137 -0
- package/dist/database/adapters/kysely-adapter.js.map +1 -0
- package/dist/database/connection.cjs +277 -0
- package/dist/database/connection.cjs.map +1 -0
- package/dist/database/connection.d.cts +115 -0
- package/dist/database/connection.d.cts.map +1 -0
- package/dist/database/connection.d.ts +115 -0
- package/dist/database/connection.d.ts.map +1 -0
- package/dist/database/connection.js +271 -0
- package/dist/database/connection.js.map +1 -0
- package/dist/database/core-schema.cjs +644 -0
- package/dist/database/core-schema.cjs.map +1 -0
- package/dist/database/core-schema.d.cts +22 -0
- package/dist/database/core-schema.d.cts.map +1 -0
- package/dist/database/core-schema.d.ts +22 -0
- package/dist/database/core-schema.d.ts.map +1 -0
- package/dist/database/core-schema.js +642 -0
- package/dist/database/core-schema.js.map +1 -0
- package/dist/database/index.cjs +4 -0
- package/dist/database/index.d.cts +10 -0
- package/dist/database/index.d.cts.map +1 -0
- package/dist/database/index.d.ts +10 -0
- package/dist/database/index.d.ts.map +1 -0
- package/dist/database/index.js +5 -0
- package/dist/database/prisma-schema-generator.cjs +219 -0
- package/dist/database/prisma-schema-generator.cjs.map +1 -0
- package/dist/database/prisma-schema-generator.d.cts +19 -0
- package/dist/database/prisma-schema-generator.d.cts.map +1 -0
- package/dist/database/prisma-schema-generator.d.ts +19 -0
- package/dist/database/prisma-schema-generator.d.ts.map +1 -0
- package/dist/database/prisma-schema-generator.js +218 -0
- package/dist/database/prisma-schema-generator.js.map +1 -0
- package/dist/database/schema-generator.cjs +576 -0
- package/dist/database/schema-generator.cjs.map +1 -0
- package/dist/database/schema-generator.d.cts +18 -0
- package/dist/database/schema-generator.d.cts.map +1 -0
- package/dist/database/schema-generator.d.ts +18 -0
- package/dist/database/schema-generator.d.ts.map +1 -0
- package/dist/database/schema-generator.js +571 -0
- package/dist/database/schema-generator.js.map +1 -0
- package/dist/database/schema-merger.cjs +153 -0
- package/dist/database/schema-merger.cjs.map +1 -0
- package/dist/database/schema-merger.d.cts +53 -0
- package/dist/database/schema-merger.d.cts.map +1 -0
- package/dist/database/schema-merger.d.ts +53 -0
- package/dist/database/schema-merger.d.ts.map +1 -0
- package/dist/database/schema-merger.js +152 -0
- package/dist/database/schema-merger.js.map +1 -0
- package/dist/database/schema-metadata.cjs +98 -0
- package/dist/database/schema-metadata.cjs.map +1 -0
- package/dist/database/schema-metadata.js +98 -0
- package/dist/database/schema-metadata.js.map +1 -0
- package/dist/database/schema-mysql.cjs +288 -0
- package/dist/database/schema-mysql.cjs.map +1 -0
- package/dist/database/schema-mysql.d.cts +2117 -0
- package/dist/database/schema-mysql.d.cts.map +1 -0
- package/dist/database/schema-mysql.d.ts +2117 -0
- package/dist/database/schema-mysql.d.ts.map +1 -0
- package/dist/database/schema-mysql.js +263 -0
- package/dist/database/schema-mysql.js.map +1 -0
- package/dist/database/schema-postgres.cjs +312 -0
- package/dist/database/schema-postgres.cjs.map +1 -0
- package/dist/database/schema-postgres.d.cts +2127 -0
- package/dist/database/schema-postgres.d.cts.map +1 -0
- package/dist/database/schema-postgres.d.ts +2127 -0
- package/dist/database/schema-postgres.d.ts.map +1 -0
- package/dist/database/schema-postgres.js +280 -0
- package/dist/database/schema-postgres.js.map +1 -0
- package/dist/database/schema-sqlite.cjs +247 -0
- package/dist/database/schema-sqlite.cjs.map +1 -0
- package/dist/database/schema-sqlite.d.cts +2294 -0
- package/dist/database/schema-sqlite.d.cts.map +1 -0
- package/dist/database/schema-sqlite.d.ts +2294 -0
- package/dist/database/schema-sqlite.d.ts.map +1 -0
- package/dist/database/schema-sqlite.js +222 -0
- package/dist/database/schema-sqlite.js.map +1 -0
- package/dist/database/schema-verification.cjs +123 -0
- package/dist/database/schema-verification.cjs.map +1 -0
- package/dist/database/schema-verification.d.cts +40 -0
- package/dist/database/schema-verification.d.cts.map +1 -0
- package/dist/database/schema-verification.d.ts +40 -0
- package/dist/database/schema-verification.d.ts.map +1 -0
- package/dist/database/schema-verification.js +123 -0
- package/dist/database/schema-verification.js.map +1 -0
- package/dist/database/schema.cjs +3 -0
- package/dist/database/schema.d.cts +3 -0
- package/dist/database/schema.d.ts +3 -0
- package/dist/database/schema.js +4 -0
- package/dist/index.cjs +199 -0
- package/dist/index.d.cts +70 -0
- package/dist/index.d.ts +70 -0
- package/dist/index.js +56 -0
- package/dist/invect-core.cjs +1688 -0
- package/dist/invect-core.cjs.map +1 -0
- package/dist/invect-core.d.cts +846 -0
- package/dist/invect-core.d.cts.map +1 -0
- package/dist/invect-core.d.ts +846 -0
- package/dist/invect-core.d.ts.map +1 -0
- package/dist/invect-core.js +1688 -0
- package/dist/invect-core.js.map +1 -0
- package/dist/nodes/agent-executor.cjs +881 -0
- package/dist/nodes/agent-executor.cjs.map +1 -0
- package/dist/nodes/agent-executor.d.cts +243 -0
- package/dist/nodes/agent-executor.d.cts.map +1 -0
- package/dist/nodes/agent-executor.d.ts +243 -0
- package/dist/nodes/agent-executor.d.ts.map +1 -0
- package/dist/nodes/agent-executor.js +877 -0
- package/dist/nodes/agent-executor.js.map +1 -0
- package/dist/nodes/base-node.cjs +174 -0
- package/dist/nodes/base-node.cjs.map +1 -0
- package/dist/nodes/base-node.d.cts +125 -0
- package/dist/nodes/base-node.d.cts.map +1 -0
- package/dist/nodes/base-node.d.ts +125 -0
- package/dist/nodes/base-node.d.ts.map +1 -0
- package/dist/nodes/base-node.js +170 -0
- package/dist/nodes/base-node.js.map +1 -0
- package/dist/nodes/executor-registry.cjs +46 -0
- package/dist/nodes/executor-registry.cjs.map +1 -0
- package/dist/nodes/executor-registry.d.cts +18 -0
- package/dist/nodes/executor-registry.d.cts.map +1 -0
- package/dist/nodes/executor-registry.d.ts +18 -0
- package/dist/nodes/executor-registry.d.ts.map +1 -0
- package/dist/nodes/executor-registry.js +46 -0
- package/dist/nodes/executor-registry.js.map +1 -0
- package/dist/nodes/index.cjs +2 -0
- package/dist/nodes/index.d.cts +3 -0
- package/dist/nodes/index.d.ts +3 -0
- package/dist/nodes/index.js +3 -0
- package/dist/services/agent-tool-executions/agent-tool-execution.service.cjs +110 -0
- package/dist/services/agent-tool-executions/agent-tool-execution.service.cjs.map +1 -0
- package/dist/services/agent-tool-executions/agent-tool-execution.service.d.cts +42 -0
- package/dist/services/agent-tool-executions/agent-tool-execution.service.d.cts.map +1 -0
- package/dist/services/agent-tool-executions/agent-tool-execution.service.d.ts +42 -0
- package/dist/services/agent-tool-executions/agent-tool-execution.service.d.ts.map +1 -0
- package/dist/services/agent-tool-executions/agent-tool-execution.service.js +110 -0
- package/dist/services/agent-tool-executions/agent-tool-execution.service.js.map +1 -0
- package/dist/services/agent-tool-executions/agent-tool-executions.model.cjs +152 -0
- package/dist/services/agent-tool-executions/agent-tool-executions.model.cjs.map +1 -0
- package/dist/services/agent-tool-executions/agent-tool-executions.model.d.cts +71 -0
- package/dist/services/agent-tool-executions/agent-tool-executions.model.d.cts.map +1 -0
- package/dist/services/agent-tool-executions/agent-tool-executions.model.d.ts +71 -0
- package/dist/services/agent-tool-executions/agent-tool-executions.model.d.ts.map +1 -0
- package/dist/services/agent-tool-executions/agent-tool-executions.model.js +152 -0
- package/dist/services/agent-tool-executions/agent-tool-executions.model.js.map +1 -0
- package/dist/services/agent-tools/agent-tool-registry.cjs +101 -0
- package/dist/services/agent-tools/agent-tool-registry.cjs.map +1 -0
- package/dist/services/agent-tools/agent-tool-registry.d.cts +51 -0
- package/dist/services/agent-tools/agent-tool-registry.d.cts.map +1 -0
- package/dist/services/agent-tools/agent-tool-registry.d.ts +51 -0
- package/dist/services/agent-tools/agent-tool-registry.d.ts.map +1 -0
- package/dist/services/agent-tools/agent-tool-registry.js +98 -0
- package/dist/services/agent-tools/agent-tool-registry.js.map +1 -0
- package/dist/services/agent-tools/builtin/index.cjs +17 -0
- package/dist/services/agent-tools/builtin/index.cjs.map +1 -0
- package/dist/services/agent-tools/builtin/index.js +17 -0
- package/dist/services/agent-tools/builtin/index.js.map +1 -0
- package/dist/services/agent-tools/builtin/json-logic-tool.cjs +73 -0
- package/dist/services/agent-tools/builtin/json-logic-tool.cjs.map +1 -0
- package/dist/services/agent-tools/builtin/json-logic-tool.js +70 -0
- package/dist/services/agent-tools/builtin/json-logic-tool.js.map +1 -0
- package/dist/services/agent-tools/builtin/math-tool.cjs +117 -0
- package/dist/services/agent-tools/builtin/math-tool.cjs.map +1 -0
- package/dist/services/agent-tools/builtin/math-tool.js +116 -0
- package/dist/services/agent-tools/builtin/math-tool.js.map +1 -0
- package/dist/services/agent-tools/index.cjs +2 -0
- package/dist/services/agent-tools/index.js +3 -0
- package/dist/services/ai/ai-types.cjs +37 -0
- package/dist/services/ai/ai-types.cjs.map +1 -0
- package/dist/services/ai/ai-types.d.cts +105 -0
- package/dist/services/ai/ai-types.d.cts.map +1 -0
- package/dist/services/ai/ai-types.d.ts +105 -0
- package/dist/services/ai/ai-types.d.ts.map +1 -0
- package/dist/services/ai/ai-types.js +35 -0
- package/dist/services/ai/ai-types.js.map +1 -0
- package/dist/services/ai/anthropic-adapter.cjs +411 -0
- package/dist/services/ai/anthropic-adapter.cjs.map +1 -0
- package/dist/services/ai/anthropic-adapter.d.cts +1 -0
- package/dist/services/ai/anthropic-adapter.d.ts +1 -0
- package/dist/services/ai/anthropic-adapter.js +409 -0
- package/dist/services/ai/anthropic-adapter.js.map +1 -0
- package/dist/services/ai/base-client.cjs +345 -0
- package/dist/services/ai/base-client.cjs.map +1 -0
- package/dist/services/ai/base-client.d.cts +138 -0
- package/dist/services/ai/base-client.d.cts.map +1 -0
- package/dist/services/ai/base-client.d.ts +138 -0
- package/dist/services/ai/base-client.d.ts.map +1 -0
- package/dist/services/ai/base-client.js +345 -0
- package/dist/services/ai/base-client.js.map +1 -0
- package/dist/services/ai/openai-adapter.cjs +460 -0
- package/dist/services/ai/openai-adapter.cjs.map +1 -0
- package/dist/services/ai/openai-adapter.d.cts +1 -0
- package/dist/services/ai/openai-adapter.d.ts +1 -0
- package/dist/services/ai/openai-adapter.js +458 -0
- package/dist/services/ai/openai-adapter.js.map +1 -0
- package/dist/services/ai/openrouter-adapter.cjs +124 -0
- package/dist/services/ai/openrouter-adapter.cjs.map +1 -0
- package/dist/services/ai/openrouter-adapter.d.cts +1 -0
- package/dist/services/ai/openrouter-adapter.d.ts +1 -0
- package/dist/services/ai/openrouter-adapter.js +122 -0
- package/dist/services/ai/openrouter-adapter.js.map +1 -0
- package/dist/services/ai/provider-adapter.cjs +72 -0
- package/dist/services/ai/provider-adapter.cjs.map +1 -0
- package/dist/services/ai/provider-adapter.d.cts +81 -0
- package/dist/services/ai/provider-adapter.d.cts.map +1 -0
- package/dist/services/ai/provider-adapter.d.ts +81 -0
- package/dist/services/ai/provider-adapter.d.ts.map +1 -0
- package/dist/services/ai/provider-adapter.js +72 -0
- package/dist/services/ai/provider-adapter.js.map +1 -0
- package/dist/services/auth/authorization.service.cjs +259 -0
- package/dist/services/auth/authorization.service.cjs.map +1 -0
- package/dist/services/auth/authorization.service.d.cts +102 -0
- package/dist/services/auth/authorization.service.d.cts.map +1 -0
- package/dist/services/auth/authorization.service.d.ts +102 -0
- package/dist/services/auth/authorization.service.d.ts.map +1 -0
- package/dist/services/auth/authorization.service.js +257 -0
- package/dist/services/auth/authorization.service.js.map +1 -0
- package/dist/services/auth/flow-access.service.cjs +259 -0
- package/dist/services/auth/flow-access.service.cjs.map +1 -0
- package/dist/services/auth/flow-access.service.d.cts +89 -0
- package/dist/services/auth/flow-access.service.d.cts.map +1 -0
- package/dist/services/auth/flow-access.service.d.ts +89 -0
- package/dist/services/auth/flow-access.service.d.ts.map +1 -0
- package/dist/services/auth/flow-access.service.js +259 -0
- package/dist/services/auth/flow-access.service.js.map +1 -0
- package/dist/services/auth/index.d.ts +2 -0
- package/dist/services/batch-jobs/batch-jobs.model.cjs +213 -0
- package/dist/services/batch-jobs/batch-jobs.model.cjs.map +1 -0
- package/dist/services/batch-jobs/batch-jobs.model.d.cts +79 -0
- package/dist/services/batch-jobs/batch-jobs.model.d.cts.map +1 -0
- package/dist/services/batch-jobs/batch-jobs.model.d.ts +79 -0
- package/dist/services/batch-jobs/batch-jobs.model.d.ts.map +1 -0
- package/dist/services/batch-jobs/batch-jobs.model.js +213 -0
- package/dist/services/batch-jobs/batch-jobs.model.js.map +1 -0
- package/dist/services/batch-jobs/batch-jobs.service.cjs +178 -0
- package/dist/services/batch-jobs/batch-jobs.service.cjs.map +1 -0
- package/dist/services/batch-jobs/batch-jobs.service.d.cts +83 -0
- package/dist/services/batch-jobs/batch-jobs.service.d.cts.map +1 -0
- package/dist/services/batch-jobs/batch-jobs.service.d.ts +83 -0
- package/dist/services/batch-jobs/batch-jobs.service.d.ts.map +1 -0
- package/dist/services/batch-jobs/batch-jobs.service.js +178 -0
- package/dist/services/batch-jobs/batch-jobs.service.js.map +1 -0
- package/dist/services/chat/chat-messages.model.cjs +143 -0
- package/dist/services/chat/chat-messages.model.cjs.map +1 -0
- package/dist/services/chat/chat-messages.model.d.cts +43 -0
- package/dist/services/chat/chat-messages.model.d.cts.map +1 -0
- package/dist/services/chat/chat-messages.model.d.ts +43 -0
- package/dist/services/chat/chat-messages.model.d.ts.map +1 -0
- package/dist/services/chat/chat-messages.model.js +142 -0
- package/dist/services/chat/chat-messages.model.js.map +1 -0
- package/dist/services/chat/chat-stream-session.cjs +181 -0
- package/dist/services/chat/chat-stream-session.cjs.map +1 -0
- package/dist/services/chat/chat-stream-session.d.cts +1 -0
- package/dist/services/chat/chat-stream-session.d.ts +1 -0
- package/dist/services/chat/chat-stream-session.js +181 -0
- package/dist/services/chat/chat-stream-session.js.map +1 -0
- package/dist/services/chat/chat-stream.service.cjs +205 -0
- package/dist/services/chat/chat-stream.service.cjs.map +1 -0
- package/dist/services/chat/chat-stream.service.d.cts +84 -0
- package/dist/services/chat/chat-stream.service.d.cts.map +1 -0
- package/dist/services/chat/chat-stream.service.d.ts +84 -0
- package/dist/services/chat/chat-stream.service.d.ts.map +1 -0
- package/dist/services/chat/chat-stream.service.js +205 -0
- package/dist/services/chat/chat-stream.service.js.map +1 -0
- package/dist/services/chat/chat-toolkit.cjs +125 -0
- package/dist/services/chat/chat-toolkit.cjs.map +1 -0
- package/dist/services/chat/chat-toolkit.d.cts +58 -0
- package/dist/services/chat/chat-toolkit.d.cts.map +1 -0
- package/dist/services/chat/chat-toolkit.d.ts +58 -0
- package/dist/services/chat/chat-toolkit.d.ts.map +1 -0
- package/dist/services/chat/chat-toolkit.js +124 -0
- package/dist/services/chat/chat-toolkit.js.map +1 -0
- package/dist/services/chat/chat-types.cjs +24 -0
- package/dist/services/chat/chat-types.cjs.map +1 -0
- package/dist/services/chat/chat-types.d.cts +134 -0
- package/dist/services/chat/chat-types.d.cts.map +1 -0
- package/dist/services/chat/chat-types.d.ts +134 -0
- package/dist/services/chat/chat-types.d.ts.map +1 -0
- package/dist/services/chat/chat-types.js +23 -0
- package/dist/services/chat/chat-types.js.map +1 -0
- package/dist/services/chat/index.cjs +5 -0
- package/dist/services/chat/index.d.cts +3 -0
- package/dist/services/chat/index.d.ts +3 -0
- package/dist/services/chat/index.js +6 -0
- package/dist/services/chat/system-prompt.cjs +223 -0
- package/dist/services/chat/system-prompt.cjs.map +1 -0
- package/dist/services/chat/system-prompt.d.cts +1 -0
- package/dist/services/chat/system-prompt.d.ts +1 -0
- package/dist/services/chat/system-prompt.js +223 -0
- package/dist/services/chat/system-prompt.js.map +1 -0
- package/dist/services/chat/tools/agent-tools.cjs +472 -0
- package/dist/services/chat/tools/agent-tools.cjs.map +1 -0
- package/dist/services/chat/tools/agent-tools.js +471 -0
- package/dist/services/chat/tools/agent-tools.js.map +1 -0
- package/dist/services/chat/tools/context-tools.cjs +252 -0
- package/dist/services/chat/tools/context-tools.cjs.map +1 -0
- package/dist/services/chat/tools/context-tools.js +251 -0
- package/dist/services/chat/tools/context-tools.js.map +1 -0
- package/dist/services/chat/tools/flow-tools.cjs +244 -0
- package/dist/services/chat/tools/flow-tools.cjs.map +1 -0
- package/dist/services/chat/tools/flow-tools.js +243 -0
- package/dist/services/chat/tools/flow-tools.js.map +1 -0
- package/dist/services/chat/tools/index.cjs +22 -0
- package/dist/services/chat/tools/index.cjs.map +1 -0
- package/dist/services/chat/tools/index.js +22 -0
- package/dist/services/chat/tools/index.js.map +1 -0
- package/dist/services/chat/tools/node-tools.cjs +323 -0
- package/dist/services/chat/tools/node-tools.cjs.map +1 -0
- package/dist/services/chat/tools/node-tools.js +322 -0
- package/dist/services/chat/tools/node-tools.js.map +1 -0
- package/dist/services/chat/tools/plan-tools.cjs +94 -0
- package/dist/services/chat/tools/plan-tools.cjs.map +1 -0
- package/dist/services/chat/tools/plan-tools.js +93 -0
- package/dist/services/chat/tools/plan-tools.js.map +1 -0
- package/dist/services/chat/tools/run-tools.cjs +121 -0
- package/dist/services/chat/tools/run-tools.cjs.map +1 -0
- package/dist/services/chat/tools/run-tools.js +120 -0
- package/dist/services/chat/tools/run-tools.js.map +1 -0
- package/dist/services/credentials/credentials.model.cjs +313 -0
- package/dist/services/credentials/credentials.model.cjs.map +1 -0
- package/dist/services/credentials/credentials.model.d.cts +27 -0
- package/dist/services/credentials/credentials.model.d.cts.map +1 -0
- package/dist/services/credentials/credentials.model.d.ts +27 -0
- package/dist/services/credentials/credentials.model.d.ts.map +1 -0
- package/dist/services/credentials/credentials.model.js +312 -0
- package/dist/services/credentials/credentials.model.js.map +1 -0
- package/dist/services/credentials/credentials.service.cjs +358 -0
- package/dist/services/credentials/credentials.service.cjs.map +1 -0
- package/dist/services/credentials/credentials.service.d.cts +156 -0
- package/dist/services/credentials/credentials.service.d.cts.map +1 -0
- package/dist/services/credentials/credentials.service.d.ts +156 -0
- package/dist/services/credentials/credentials.service.d.ts.map +1 -0
- package/dist/services/credentials/credentials.service.js +357 -0
- package/dist/services/credentials/credentials.service.js.map +1 -0
- package/dist/services/credentials/encryption.service.cjs +121 -0
- package/dist/services/credentials/encryption.service.cjs.map +1 -0
- package/dist/services/credentials/encryption.service.d.cts +70 -0
- package/dist/services/credentials/encryption.service.d.cts.map +1 -0
- package/dist/services/credentials/encryption.service.d.ts +70 -0
- package/dist/services/credentials/encryption.service.d.ts.map +1 -0
- package/dist/services/credentials/encryption.service.js +119 -0
- package/dist/services/credentials/encryption.service.js.map +1 -0
- package/dist/services/credentials/index.d.cts +4 -0
- package/dist/services/credentials/index.d.ts +4 -0
- package/dist/services/credentials/oauth2-providers.cjs +668 -0
- package/dist/services/credentials/oauth2-providers.cjs.map +1 -0
- package/dist/services/credentials/oauth2-providers.d.cts +39 -0
- package/dist/services/credentials/oauth2-providers.d.cts.map +1 -0
- package/dist/services/credentials/oauth2-providers.d.ts +39 -0
- package/dist/services/credentials/oauth2-providers.d.ts.map +1 -0
- package/dist/services/credentials/oauth2-providers.js +667 -0
- package/dist/services/credentials/oauth2-providers.js.map +1 -0
- package/dist/services/credentials/oauth2.service.cjs +252 -0
- package/dist/services/credentials/oauth2.service.cjs.map +1 -0
- package/dist/services/credentials/oauth2.service.d.cts +132 -0
- package/dist/services/credentials/oauth2.service.d.cts.map +1 -0
- package/dist/services/credentials/oauth2.service.d.ts +132 -0
- package/dist/services/credentials/oauth2.service.d.ts.map +1 -0
- package/dist/services/credentials/oauth2.service.js +251 -0
- package/dist/services/credentials/oauth2.service.js.map +1 -0
- package/dist/services/database/database.service.cjs +469 -0
- package/dist/services/database/database.service.cjs.map +1 -0
- package/dist/services/database/database.service.d.cts +162 -0
- package/dist/services/database/database.service.d.cts.map +1 -0
- package/dist/services/database/database.service.d.ts +162 -0
- package/dist/services/database/database.service.d.ts.map +1 -0
- package/dist/services/database/database.service.js +469 -0
- package/dist/services/database/database.service.js.map +1 -0
- package/dist/services/execution-event-bus.cjs +80 -0
- package/dist/services/execution-event-bus.cjs.map +1 -0
- package/dist/services/execution-event-bus.d.cts +57 -0
- package/dist/services/execution-event-bus.d.cts.map +1 -0
- package/dist/services/execution-event-bus.d.ts +57 -0
- package/dist/services/execution-event-bus.d.ts.map +1 -0
- package/dist/services/execution-event-bus.js +77 -0
- package/dist/services/execution-event-bus.js.map +1 -0
- package/dist/services/flow-orchestration/flow-run-coordinator.cjs +499 -0
- package/dist/services/flow-orchestration/flow-run-coordinator.cjs.map +1 -0
- package/dist/services/flow-orchestration/flow-run-coordinator.js +499 -0
- package/dist/services/flow-orchestration/flow-run-coordinator.js.map +1 -0
- package/dist/services/flow-orchestration/node-execution-coordinator.cjs +657 -0
- package/dist/services/flow-orchestration/node-execution-coordinator.cjs.map +1 -0
- package/dist/services/flow-orchestration/node-execution-coordinator.js +657 -0
- package/dist/services/flow-orchestration/node-execution-coordinator.js.map +1 -0
- package/dist/services/flow-orchestration.service.cjs +493 -0
- package/dist/services/flow-orchestration.service.cjs.map +1 -0
- package/dist/services/flow-orchestration.service.d.cts +149 -0
- package/dist/services/flow-orchestration.service.d.cts.map +1 -0
- package/dist/services/flow-orchestration.service.d.ts +149 -0
- package/dist/services/flow-orchestration.service.d.ts.map +1 -0
- package/dist/services/flow-orchestration.service.js +493 -0
- package/dist/services/flow-orchestration.service.js.map +1 -0
- package/dist/services/flow-runs/flow-runs.model.cjs +403 -0
- package/dist/services/flow-runs/flow-runs.model.cjs.map +1 -0
- package/dist/services/flow-runs/flow-runs.model.d.cts +113 -0
- package/dist/services/flow-runs/flow-runs.model.d.cts.map +1 -0
- package/dist/services/flow-runs/flow-runs.model.d.ts +113 -0
- package/dist/services/flow-runs/flow-runs.model.d.ts.map +1 -0
- package/dist/services/flow-runs/flow-runs.model.js +403 -0
- package/dist/services/flow-runs/flow-runs.model.js.map +1 -0
- package/dist/services/flow-runs/flow-runs.service.cjs +273 -0
- package/dist/services/flow-runs/flow-runs.service.cjs.map +1 -0
- package/dist/services/flow-runs/flow-runs.service.d.cts +129 -0
- package/dist/services/flow-runs/flow-runs.service.d.cts.map +1 -0
- package/dist/services/flow-runs/flow-runs.service.d.ts +129 -0
- package/dist/services/flow-runs/flow-runs.service.d.ts.map +1 -0
- package/dist/services/flow-runs/flow-runs.service.js +273 -0
- package/dist/services/flow-runs/flow-runs.service.js.map +1 -0
- package/dist/services/flow-validator.cjs +149 -0
- package/dist/services/flow-validator.cjs.map +1 -0
- package/dist/services/flow-validator.js +149 -0
- package/dist/services/flow-validator.js.map +1 -0
- package/dist/services/flow-versions/flow-versions.model.cjs +231 -0
- package/dist/services/flow-versions/flow-versions.model.cjs.map +1 -0
- package/dist/services/flow-versions/flow-versions.model.d.cts +55 -0
- package/dist/services/flow-versions/flow-versions.model.d.cts.map +1 -0
- package/dist/services/flow-versions/flow-versions.model.d.ts +55 -0
- package/dist/services/flow-versions/flow-versions.model.d.ts.map +1 -0
- package/dist/services/flow-versions/flow-versions.model.js +231 -0
- package/dist/services/flow-versions/flow-versions.model.js.map +1 -0
- package/dist/services/flow-versions/flow-versions.service.cjs +72 -0
- package/dist/services/flow-versions/flow-versions.service.cjs.map +1 -0
- package/dist/services/flow-versions/flow-versions.service.d.cts +63 -0
- package/dist/services/flow-versions/flow-versions.service.d.cts.map +1 -0
- package/dist/services/flow-versions/flow-versions.service.d.ts +63 -0
- package/dist/services/flow-versions/flow-versions.service.d.ts.map +1 -0
- package/dist/services/flow-versions/flow-versions.service.js +72 -0
- package/dist/services/flow-versions/flow-versions.service.js.map +1 -0
- package/dist/services/flow-versions/schemas-fresh.cjs +90 -0
- package/dist/services/flow-versions/schemas-fresh.cjs.map +1 -0
- package/dist/services/flow-versions/schemas-fresh.d.cts +201 -0
- package/dist/services/flow-versions/schemas-fresh.d.cts.map +1 -0
- package/dist/services/flow-versions/schemas-fresh.d.ts +201 -0
- package/dist/services/flow-versions/schemas-fresh.d.ts.map +1 -0
- package/dist/services/flow-versions/schemas-fresh.js +85 -0
- package/dist/services/flow-versions/schemas-fresh.js.map +1 -0
- package/dist/services/flows/flows.model.cjs +273 -0
- package/dist/services/flows/flows.model.cjs.map +1 -0
- package/dist/services/flows/flows.model.d.cts +105 -0
- package/dist/services/flows/flows.model.d.cts.map +1 -0
- package/dist/services/flows/flows.model.d.ts +105 -0
- package/dist/services/flows/flows.model.d.ts.map +1 -0
- package/dist/services/flows/flows.model.js +273 -0
- package/dist/services/flows/flows.model.js.map +1 -0
- package/dist/services/flows/flows.service.cjs +134 -0
- package/dist/services/flows/flows.service.cjs.map +1 -0
- package/dist/services/flows/flows.service.d.cts +105 -0
- package/dist/services/flows/flows.service.d.cts.map +1 -0
- package/dist/services/flows/flows.service.d.ts +105 -0
- package/dist/services/flows/flows.service.d.ts.map +1 -0
- package/dist/services/flows/flows.service.js +134 -0
- package/dist/services/flows/flows.service.js.map +1 -0
- package/dist/services/graph.service.cjs +375 -0
- package/dist/services/graph.service.cjs.map +1 -0
- package/dist/services/graph.service.d.cts +90 -0
- package/dist/services/graph.service.d.cts.map +1 -0
- package/dist/services/graph.service.d.ts +90 -0
- package/dist/services/graph.service.d.ts.map +1 -0
- package/dist/services/graph.service.js +375 -0
- package/dist/services/graph.service.js.map +1 -0
- package/dist/services/node-data.service.cjs +232 -0
- package/dist/services/node-data.service.cjs.map +1 -0
- package/dist/services/node-data.service.d.cts +119 -0
- package/dist/services/node-data.service.d.cts.map +1 -0
- package/dist/services/node-data.service.d.ts +119 -0
- package/dist/services/node-data.service.d.ts.map +1 -0
- package/dist/services/node-data.service.js +230 -0
- package/dist/services/node-data.service.js.map +1 -0
- package/dist/services/node-executions/node-execution.service.cjs +236 -0
- package/dist/services/node-executions/node-execution.service.cjs.map +1 -0
- package/dist/services/node-executions/node-execution.service.d.cts +126 -0
- package/dist/services/node-executions/node-execution.service.d.cts.map +1 -0
- package/dist/services/node-executions/node-execution.service.d.ts +126 -0
- package/dist/services/node-executions/node-execution.service.d.ts.map +1 -0
- package/dist/services/node-executions/node-execution.service.js +236 -0
- package/dist/services/node-executions/node-execution.service.js.map +1 -0
- package/dist/services/node-executions/node-executions.model.cjs +300 -0
- package/dist/services/node-executions/node-executions.model.cjs.map +1 -0
- package/dist/services/node-executions/node-executions.model.d.cts +102 -0
- package/dist/services/node-executions/node-executions.model.d.cts.map +1 -0
- package/dist/services/node-executions/node-executions.model.d.ts +102 -0
- package/dist/services/node-executions/node-executions.model.d.ts.map +1 -0
- package/dist/services/node-executions/node-executions.model.js +300 -0
- package/dist/services/node-executions/node-executions.model.js.map +1 -0
- package/dist/services/plugin-manager.cjs +205 -0
- package/dist/services/plugin-manager.cjs.map +1 -0
- package/dist/services/plugin-manager.js +205 -0
- package/dist/services/plugin-manager.js.map +1 -0
- package/dist/services/react-flow-renderer.service.cjs +236 -0
- package/dist/services/react-flow-renderer.service.cjs.map +1 -0
- package/dist/services/react-flow-renderer.service.d.cts +149 -0
- package/dist/services/react-flow-renderer.service.d.cts.map +1 -0
- package/dist/services/react-flow-renderer.service.d.ts +149 -0
- package/dist/services/react-flow-renderer.service.d.ts.map +1 -0
- package/dist/services/react-flow-renderer.service.js +235 -0
- package/dist/services/react-flow-renderer.service.js.map +1 -0
- package/dist/services/service-factory.cjs +301 -0
- package/dist/services/service-factory.cjs.map +1 -0
- package/dist/services/service-factory.d.cts +172 -0
- package/dist/services/service-factory.d.cts.map +1 -0
- package/dist/services/service-factory.d.ts +172 -0
- package/dist/services/service-factory.d.ts.map +1 -0
- package/dist/services/service-factory.js +301 -0
- package/dist/services/service-factory.js.map +1 -0
- package/dist/services/templating/index.cjs +2 -0
- package/dist/services/templating/index.d.ts +2 -0
- package/dist/services/templating/index.js +3 -0
- package/dist/services/templating/js-expression.service.cjs +148 -0
- package/dist/services/templating/js-expression.service.cjs.map +1 -0
- package/dist/services/templating/js-expression.service.d.cts +61 -0
- package/dist/services/templating/js-expression.service.d.cts.map +1 -0
- package/dist/services/templating/js-expression.service.d.ts +60 -0
- package/dist/services/templating/js-expression.service.d.ts.map +1 -0
- package/dist/services/templating/js-expression.service.js +143 -0
- package/dist/services/templating/js-expression.service.js.map +1 -0
- package/dist/services/templating/template.service.cjs +182 -0
- package/dist/services/templating/template.service.cjs.map +1 -0
- package/dist/services/templating/template.service.d.cts +62 -0
- package/dist/services/templating/template.service.d.cts.map +1 -0
- package/dist/services/templating/template.service.d.ts +62 -0
- package/dist/services/templating/template.service.d.ts.map +1 -0
- package/dist/services/templating/template.service.js +180 -0
- package/dist/services/templating/template.service.js.map +1 -0
- package/dist/services/triggers/cron-scheduler.service.cjs +141 -0
- package/dist/services/triggers/cron-scheduler.service.cjs.map +1 -0
- package/dist/services/triggers/cron-scheduler.service.d.cts +36 -0
- package/dist/services/triggers/cron-scheduler.service.d.cts.map +1 -0
- package/dist/services/triggers/cron-scheduler.service.d.ts +36 -0
- package/dist/services/triggers/cron-scheduler.service.d.ts.map +1 -0
- package/dist/services/triggers/cron-scheduler.service.js +140 -0
- package/dist/services/triggers/cron-scheduler.service.js.map +1 -0
- package/dist/services/triggers/flow-triggers.model.cjs +241 -0
- package/dist/services/triggers/flow-triggers.model.cjs.map +1 -0
- package/dist/services/triggers/flow-triggers.model.d.cts +53 -0
- package/dist/services/triggers/flow-triggers.model.d.cts.map +1 -0
- package/dist/services/triggers/flow-triggers.model.d.ts +53 -0
- package/dist/services/triggers/flow-triggers.model.d.ts.map +1 -0
- package/dist/services/triggers/flow-triggers.model.js +241 -0
- package/dist/services/triggers/flow-triggers.model.js.map +1 -0
- package/dist/services/triggers/flow-triggers.service.cjs +218 -0
- package/dist/services/triggers/flow-triggers.service.cjs.map +1 -0
- package/dist/services/triggers/flow-triggers.service.d.cts +77 -0
- package/dist/services/triggers/flow-triggers.service.d.cts.map +1 -0
- package/dist/services/triggers/flow-triggers.service.d.ts +77 -0
- package/dist/services/triggers/flow-triggers.service.d.ts.map +1 -0
- package/dist/services/triggers/flow-triggers.service.js +217 -0
- package/dist/services/triggers/flow-triggers.service.js.map +1 -0
- package/dist/services/triggers/index.cjs +3 -0
- package/dist/services/triggers/index.d.cts +4 -0
- package/dist/services/triggers/index.d.ts +4 -0
- package/dist/services/triggers/index.js +4 -0
- package/dist/services/triggers/trigger.types.d.cts +63 -0
- package/dist/services/triggers/trigger.types.d.cts.map +1 -0
- package/dist/services/triggers/trigger.types.d.ts +63 -0
- package/dist/services/triggers/trigger.types.d.ts.map +1 -0
- package/dist/types/agent-tool.types.cjs +20 -0
- package/dist/types/agent-tool.types.cjs.map +1 -0
- package/dist/types/agent-tool.types.d.cts +211 -0
- package/dist/types/agent-tool.types.d.cts.map +1 -0
- package/dist/types/agent-tool.types.d.ts +211 -0
- package/dist/types/agent-tool.types.d.ts.map +1 -0
- package/dist/types/agent-tool.types.js +18 -0
- package/dist/types/agent-tool.types.js.map +1 -0
- package/dist/types/auth.types.cjs +76 -0
- package/dist/types/auth.types.cjs.map +1 -0
- package/dist/types/auth.types.d.cts +235 -0
- package/dist/types/auth.types.d.cts.map +1 -0
- package/dist/types/auth.types.d.ts +235 -0
- package/dist/types/auth.types.d.ts.map +1 -0
- package/dist/types/auth.types.js +75 -0
- package/dist/types/auth.types.js.map +1 -0
- package/dist/types/base.cjs +25 -0
- package/dist/types/base.cjs.map +1 -0
- package/dist/types/base.d.cts +21 -0
- package/dist/types/base.d.cts.map +1 -0
- package/dist/types/base.d.ts +21 -0
- package/dist/types/base.d.ts.map +1 -0
- package/dist/types/base.js +24 -0
- package/dist/types/base.js.map +1 -0
- package/dist/types/common/errors.types.cjs +46 -0
- package/dist/types/common/errors.types.cjs.map +1 -0
- package/dist/types/common/errors.types.js +44 -0
- package/dist/types/common/errors.types.js.map +1 -0
- package/dist/types/graph-node-types.cjs +46 -0
- package/dist/types/graph-node-types.cjs.map +1 -0
- package/dist/types/graph-node-types.d.cts +32 -0
- package/dist/types/graph-node-types.d.cts.map +1 -0
- package/dist/types/graph-node-types.d.ts +32 -0
- package/dist/types/graph-node-types.d.ts.map +1 -0
- package/dist/types/graph-node-types.js +45 -0
- package/dist/types/graph-node-types.js.map +1 -0
- package/dist/types/node-config-update.types.d.cts +33 -0
- package/dist/types/node-config-update.types.d.cts.map +1 -0
- package/dist/types/node-config-update.types.d.ts +33 -0
- package/dist/types/node-config-update.types.d.ts.map +1 -0
- package/dist/types/node-definition.types.d.cts +88 -0
- package/dist/types/node-definition.types.d.cts.map +1 -0
- package/dist/types/node-definition.types.d.ts +88 -0
- package/dist/types/node-definition.types.d.ts.map +1 -0
- package/dist/types/node-execution.types.d.cts +39 -0
- package/dist/types/node-execution.types.d.cts.map +1 -0
- package/dist/types/node-execution.types.d.ts +39 -0
- package/dist/types/node-execution.types.d.ts.map +1 -0
- package/dist/types/node-io-types.cjs +19 -0
- package/dist/types/node-io-types.cjs.map +1 -0
- package/dist/types/node-io-types.d.cts +65 -0
- package/dist/types/node-io-types.d.cts.map +1 -0
- package/dist/types/node-io-types.d.ts +65 -0
- package/dist/types/node-io-types.d.ts.map +1 -0
- package/dist/types/node-io-types.js +18 -0
- package/dist/types/node-io-types.js.map +1 -0
- package/dist/types/node-output-schemas.cjs +51 -0
- package/dist/types/node-output-schemas.cjs.map +1 -0
- package/dist/types/node-output-schemas.js +50 -0
- package/dist/types/node-output-schemas.js.map +1 -0
- package/dist/types/plugin.types.d.cts +654 -0
- package/dist/types/plugin.types.d.cts.map +1 -0
- package/dist/types/plugin.types.d.ts +654 -0
- package/dist/types/plugin.types.d.ts.map +1 -0
- package/dist/types/schemas/flow/create-flow-version.schema.cjs +1 -0
- package/dist/types/schemas/flow/create-flow-version.schema.d.ts +1 -0
- package/dist/types/schemas/flow/create-flow-version.schema.js +2 -0
- package/dist/types/schemas/flow/create-flow.schema.cjs +9 -0
- package/dist/types/schemas/flow/create-flow.schema.cjs.map +1 -0
- package/dist/types/schemas/flow/create-flow.schema.d.cts +14 -0
- package/dist/types/schemas/flow/create-flow.schema.d.cts.map +1 -0
- package/dist/types/schemas/flow/create-flow.schema.d.ts +14 -0
- package/dist/types/schemas/flow/create-flow.schema.d.ts.map +1 -0
- package/dist/types/schemas/flow/create-flow.schema.js +10 -0
- package/dist/types/schemas/flow/create-flow.schema.js.map +1 -0
- package/dist/types/schemas/flow/delete-flow.schema.cjs +11 -0
- package/dist/types/schemas/flow/delete-flow.schema.cjs.map +1 -0
- package/dist/types/schemas/flow/delete-flow.schema.d.ts +1 -0
- package/dist/types/schemas/flow/delete-flow.schema.js +11 -0
- package/dist/types/schemas/flow/delete-flow.schema.js.map +1 -0
- package/dist/types/schemas/flow/flow-executions.schema.cjs +36 -0
- package/dist/types/schemas/flow/flow-executions.schema.cjs.map +1 -0
- package/dist/types/schemas/flow/flow-executions.schema.d.ts +1 -0
- package/dist/types/schemas/flow/flow-executions.schema.js +35 -0
- package/dist/types/schemas/flow/flow-executions.schema.js.map +1 -0
- package/dist/types/schemas/flow/get-flow-by-id-response.schema.cjs +7 -0
- package/dist/types/schemas/flow/get-flow-by-id-response.schema.cjs.map +1 -0
- package/dist/types/schemas/flow/get-flow-by-id-response.schema.d.ts +1 -0
- package/dist/types/schemas/flow/get-flow-by-id-response.schema.js +7 -0
- package/dist/types/schemas/flow/get-flow-by-id-response.schema.js.map +1 -0
- package/dist/types/schemas/flow/get-flow-versions-response.schema.cjs +1 -0
- package/dist/types/schemas/flow/get-flow-versions-response.schema.d.ts +1 -0
- package/dist/types/schemas/flow/get-flow-versions-response.schema.js +2 -0
- package/dist/types/schemas/flow/get-flows-response.schema.cjs +6 -0
- package/dist/types/schemas/flow/get-flows-response.schema.cjs.map +1 -0
- package/dist/types/schemas/flow/get-flows-response.schema.d.ts +1 -0
- package/dist/types/schemas/flow/get-flows-response.schema.js +7 -0
- package/dist/types/schemas/flow/get-flows-response.schema.js.map +1 -0
- package/dist/types/schemas/flow/index.cjs +9 -0
- package/dist/types/schemas/flow/index.d.ts +1 -0
- package/dist/types/schemas/flow/index.js +10 -0
- package/dist/types/schemas/flow/update-flow.schema.cjs +1 -0
- package/dist/types/schemas/flow/update-flow.schema.d.ts +1 -0
- package/dist/types/schemas/flow/update-flow.schema.js +2 -0
- package/dist/types/schemas/flow/validate-flow.schema.cjs +19 -0
- package/dist/types/schemas/flow/validate-flow.schema.cjs.map +1 -0
- package/dist/types/schemas/flow/validate-flow.schema.d.ts +1 -0
- package/dist/types/schemas/flow/validate-flow.schema.js +19 -0
- package/dist/types/schemas/flow/validate-flow.schema.js.map +1 -0
- package/dist/types/schemas/index.cjs +3 -0
- package/dist/types/schemas/index.d.ts +2 -0
- package/dist/types/schemas/index.js +4 -0
- package/dist/types/schemas/pagination-sort-filter.cjs +56 -0
- package/dist/types/schemas/pagination-sort-filter.cjs.map +1 -0
- package/dist/types/schemas/pagination-sort-filter.d.cts +38 -0
- package/dist/types/schemas/pagination-sort-filter.d.cts.map +1 -0
- package/dist/types/schemas/pagination-sort-filter.d.ts +38 -0
- package/dist/types/schemas/pagination-sort-filter.d.ts.map +1 -0
- package/dist/types/schemas/pagination-sort-filter.js +50 -0
- package/dist/types/schemas/pagination-sort-filter.js.map +1 -0
- package/dist/types/schemas-fresh/invect-config.cjs +181 -0
- package/dist/types/schemas-fresh/invect-config.cjs.map +1 -0
- package/dist/types/schemas-fresh/invect-config.d.cts +207 -0
- package/dist/types/schemas-fresh/invect-config.d.cts.map +1 -0
- package/dist/types/schemas-fresh/invect-config.d.ts +207 -0
- package/dist/types/schemas-fresh/invect-config.d.ts.map +1 -0
- package/dist/types/schemas-fresh/invect-config.js +174 -0
- package/dist/types/schemas-fresh/invect-config.js.map +1 -0
- package/dist/types/validation/common.schemas.cjs +41 -0
- package/dist/types/validation/common.schemas.cjs.map +1 -0
- package/dist/types/validation/common.schemas.js +39 -0
- package/dist/types/validation/common.schemas.js.map +1 -0
- package/dist/types/validation/flow.schemas.cjs +49 -0
- package/dist/types/validation/flow.schemas.cjs.map +1 -0
- package/dist/types/validation/flow.schemas.js +46 -0
- package/dist/types/validation/flow.schemas.js.map +1 -0
- package/dist/types/validation.cjs +49 -0
- package/dist/types/validation.cjs.map +1 -0
- package/dist/types/validation.d.cts +49 -0
- package/dist/types/validation.d.cts.map +1 -0
- package/dist/types/validation.d.ts +49 -0
- package/dist/types/validation.d.ts.map +1 -0
- package/dist/types/validation.js +48 -0
- package/dist/types/validation.js.map +1 -0
- package/dist/types-export.cjs +11 -0
- package/dist/types-export.d.cts +25 -0
- package/dist/types-export.d.ts +25 -0
- package/dist/types-export.js +5 -0
- package/dist/types-fresh.cjs +9 -0
- package/dist/types-fresh.cjs.map +1 -0
- package/dist/types-fresh.d.cts +129 -0
- package/dist/types-fresh.d.cts.map +1 -0
- package/dist/types-fresh.d.ts +129 -0
- package/dist/types-fresh.d.ts.map +1 -0
- package/dist/types-fresh.js +8 -0
- package/dist/types-fresh.js.map +1 -0
- package/dist/utils/id-generator.cjs +34 -0
- package/dist/utils/id-generator.cjs.map +1 -0
- package/dist/utils/id-generator.js +34 -0
- package/dist/utils/id-generator.js.map +1 -0
- package/dist/utils/logger.cjs +285 -0
- package/dist/utils/logger.cjs.map +1 -0
- package/dist/utils/logger.d.cts +161 -0
- package/dist/utils/logger.d.cts.map +1 -0
- package/dist/utils/logger.d.ts +160 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +282 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/node-slug.cjs +13 -0
- package/dist/utils/node-slug.cjs.map +1 -0
- package/dist/utils/node-slug.d.cts +8 -0
- package/dist/utils/node-slug.d.cts.map +1 -0
- package/dist/utils/node-slug.d.ts +8 -0
- package/dist/utils/node-slug.d.ts.map +1 -0
- package/dist/utils/node-slug.js +13 -0
- package/dist/utils/node-slug.js.map +1 -0
- package/dist/utils/provider-detection.cjs +72 -0
- package/dist/utils/provider-detection.cjs.map +1 -0
- package/dist/utils/provider-detection.js +72 -0
- package/dist/utils/provider-detection.js.map +1 -0
- package/dist/utils/url-safe-id.cjs +52 -0
- package/dist/utils/url-safe-id.cjs.map +1 -0
- package/dist/utils/url-safe-id.js +52 -0
- package/dist/utils/url-safe-id.js.map +1 -0
- package/package.json +121 -0
|
@@ -0,0 +1,654 @@
|
|
|
1
|
+
import { ActionDefinition } from "../actions/types.cjs";
|
|
2
|
+
import { AuthorizationContext, AuthorizationResult, InvectIdentity, InvectPermission } from "./auth.types.cjs";
|
|
3
|
+
|
|
4
|
+
//#region src/types/plugin.types.d.ts
|
|
5
|
+
/**
|
|
6
|
+
* Abstract field types that map to concrete column types per dialect.
|
|
7
|
+
*
|
|
8
|
+
* | Abstract | SQLite | PostgreSQL | MySQL |
|
|
9
|
+
* |-------------|---------------|------------------|--------------------|
|
|
10
|
+
* | "string" | text | text | varchar(255) |
|
|
11
|
+
* | "text" | text | text | text |
|
|
12
|
+
* | "number" | integer | integer | int |
|
|
13
|
+
* | "boolean" | integer(bool) | boolean | boolean |
|
|
14
|
+
* | "date" | text | timestamp | timestamp |
|
|
15
|
+
* | "json" | text(json) | json | json |
|
|
16
|
+
* | "uuid" | text | uuid | varchar(36) |
|
|
17
|
+
* | "bigint" | integer | bigint | bigint |
|
|
18
|
+
* | string[] | N/A (enum) | pgEnum values | mysqlEnum values |
|
|
19
|
+
*/
|
|
20
|
+
type PluginFieldType = 'string' | 'text' | 'number' | 'boolean' | 'date' | 'json' | 'uuid' | 'bigint' | string[];
|
|
21
|
+
/**
|
|
22
|
+
* Abstract field definition for plugin database schemas.
|
|
23
|
+
*
|
|
24
|
+
* Plugins declare fields using this format. The CLI schema generator
|
|
25
|
+
* converts these to dialect-specific Drizzle column definitions.
|
|
26
|
+
*/
|
|
27
|
+
interface PluginFieldAttribute {
|
|
28
|
+
/** Abstract column type */
|
|
29
|
+
type: PluginFieldType;
|
|
30
|
+
/**
|
|
31
|
+
* Whether the field is required (NOT NULL).
|
|
32
|
+
* @default true
|
|
33
|
+
*/
|
|
34
|
+
required?: boolean;
|
|
35
|
+
/** Whether to add a UNIQUE constraint */
|
|
36
|
+
unique?: boolean;
|
|
37
|
+
/** Whether this field is the primary key (or part of a composite PK) */
|
|
38
|
+
primaryKey?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Foreign key reference.
|
|
41
|
+
* `table` is the Drizzle table name (e.g., "flows", "credentials").
|
|
42
|
+
*/
|
|
43
|
+
references?: {
|
|
44
|
+
table: string;
|
|
45
|
+
field: string;
|
|
46
|
+
onDelete?: 'cascade' | 'set null' | 'restrict' | 'no action';
|
|
47
|
+
};
|
|
48
|
+
/** Whether to create an index on this column */
|
|
49
|
+
index?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Default value for the column.
|
|
52
|
+
* - Primitives are used as literal defaults
|
|
53
|
+
* - "uuid()" generates a UUID default
|
|
54
|
+
* - "now()" generates a current timestamp default
|
|
55
|
+
* - "true" / "false" for booleans
|
|
56
|
+
*/
|
|
57
|
+
defaultValue?: string | number | boolean | 'uuid()' | 'now()';
|
|
58
|
+
/**
|
|
59
|
+
* For string fields, the max length (MySQL varchar).
|
|
60
|
+
* Ignored for SQLite/PostgreSQL text columns.
|
|
61
|
+
* @default 255
|
|
62
|
+
*/
|
|
63
|
+
maxLength?: number;
|
|
64
|
+
/**
|
|
65
|
+
* TypeScript type annotation for the column (Drizzle's $type<>()).
|
|
66
|
+
* Used for JSON columns or text columns storing typed data.
|
|
67
|
+
*
|
|
68
|
+
* @example "Record<string, unknown>"
|
|
69
|
+
* @example "string[]"
|
|
70
|
+
*/
|
|
71
|
+
typeAnnotation?: string;
|
|
72
|
+
/**
|
|
73
|
+
* JSON mode for text/json columns.
|
|
74
|
+
* When true on SQLite, uses text({ mode: 'json' }).
|
|
75
|
+
*/
|
|
76
|
+
jsonMode?: boolean;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Abstract table definition for plugin schemas.
|
|
80
|
+
*/
|
|
81
|
+
interface PluginTableDefinition {
|
|
82
|
+
/**
|
|
83
|
+
* Column definitions keyed by field name.
|
|
84
|
+
* Field names are camelCase; the generator converts to snake_case for DB columns.
|
|
85
|
+
*/
|
|
86
|
+
fields: Record<string, PluginFieldAttribute>;
|
|
87
|
+
/**
|
|
88
|
+
* Composite primary key columns (if not using a single-column PK).
|
|
89
|
+
* Array of field names that together form the primary key.
|
|
90
|
+
*/
|
|
91
|
+
compositePrimaryKey?: string[];
|
|
92
|
+
/**
|
|
93
|
+
* Whether to skip this table in migration generation.
|
|
94
|
+
* Useful for tables that are conditionally created.
|
|
95
|
+
* @default false
|
|
96
|
+
*/
|
|
97
|
+
disableMigration?: boolean;
|
|
98
|
+
/**
|
|
99
|
+
* Custom DB table name. If not provided, the key in the schema object
|
|
100
|
+
* is used, converted to snake_case.
|
|
101
|
+
*/
|
|
102
|
+
tableName?: string;
|
|
103
|
+
/**
|
|
104
|
+
* Table creation order hint. Lower numbers are created first.
|
|
105
|
+
* Use this when tables have foreign key dependencies.
|
|
106
|
+
* @default 100
|
|
107
|
+
*/
|
|
108
|
+
order?: number;
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Plugin schema declaration.
|
|
112
|
+
*
|
|
113
|
+
* Keys are logical table names (camelCase). Use an existing core table name
|
|
114
|
+
* (e.g., "flows", "credentials") to add fields to that table (additive only).
|
|
115
|
+
*
|
|
116
|
+
* @example
|
|
117
|
+
* ```typescript
|
|
118
|
+
* const schema: InvectPluginSchema = {
|
|
119
|
+
* // New table
|
|
120
|
+
* auditLogs: {
|
|
121
|
+
* fields: {
|
|
122
|
+
* id: { type: 'uuid', primaryKey: true, defaultValue: 'uuid()' },
|
|
123
|
+
* action: { type: 'string', required: true },
|
|
124
|
+
* userId: { type: 'string', references: { table: 'flows', field: 'id' } },
|
|
125
|
+
* metadata: { type: 'json' },
|
|
126
|
+
* createdAt: { type: 'date', defaultValue: 'now()' },
|
|
127
|
+
* },
|
|
128
|
+
* },
|
|
129
|
+
* // Extend existing core table
|
|
130
|
+
* flows: {
|
|
131
|
+
* fields: {
|
|
132
|
+
* ownerId: { type: 'string' },
|
|
133
|
+
* tenantId: { type: 'string', index: true },
|
|
134
|
+
* },
|
|
135
|
+
* },
|
|
136
|
+
* };
|
|
137
|
+
* ```
|
|
138
|
+
*/
|
|
139
|
+
type InvectPluginSchema = Record<string, PluginTableDefinition>;
|
|
140
|
+
/**
|
|
141
|
+
* An API endpoint defined by a plugin.
|
|
142
|
+
*
|
|
143
|
+
* Framework adapters (Express, Next.js, NestJS) mount these automatically.
|
|
144
|
+
* The handler receives a framework-agnostic request/response interface.
|
|
145
|
+
*/
|
|
146
|
+
interface InvectPluginEndpoint {
|
|
147
|
+
/** HTTP method */
|
|
148
|
+
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
149
|
+
/**
|
|
150
|
+
* Path relative to the Invect base path.
|
|
151
|
+
* Supports Express-style params: `/my-plugin/items/:id`
|
|
152
|
+
*/
|
|
153
|
+
path: string;
|
|
154
|
+
/**
|
|
155
|
+
* The handler function.
|
|
156
|
+
* Receives parsed body/params/query and the Invect core instance.
|
|
157
|
+
* Must return a serializable response.
|
|
158
|
+
*/
|
|
159
|
+
handler: (context: PluginEndpointContext) => Promise<PluginEndpointResponse>;
|
|
160
|
+
/**
|
|
161
|
+
* Required permission to access this endpoint.
|
|
162
|
+
* If set, the framework adapter enforces authorization before calling the handler.
|
|
163
|
+
*/
|
|
164
|
+
permission?: InvectPermission;
|
|
165
|
+
/**
|
|
166
|
+
* If true, this endpoint does not require authentication.
|
|
167
|
+
* @default false
|
|
168
|
+
*/
|
|
169
|
+
isPublic?: boolean;
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* Narrow API surface exposed to plugin endpoint handlers.
|
|
173
|
+
*
|
|
174
|
+
* This gives plugins access to core functionality (auth, flow access, etc.)
|
|
175
|
+
* without coupling them to the full Invect class. Framework adapters
|
|
176
|
+
* populate this from their core instance.
|
|
177
|
+
*/
|
|
178
|
+
interface PluginEndpointCoreApi {
|
|
179
|
+
/** Get all permissions for an identity (based on role) */
|
|
180
|
+
getPermissions(identity: InvectIdentity | null): InvectPermission[];
|
|
181
|
+
/** Get available roles and their permission definitions */
|
|
182
|
+
getAvailableRoles(): Array<{
|
|
183
|
+
role: string;
|
|
184
|
+
permissions: InvectPermission[];
|
|
185
|
+
}>;
|
|
186
|
+
/** Get the resolved role string for an identity */
|
|
187
|
+
getResolvedRole(identity: InvectIdentity): string | null;
|
|
188
|
+
/** Whether the flow access table feature is enabled */
|
|
189
|
+
isFlowAccessTableEnabled(): boolean;
|
|
190
|
+
/** List flow access records for a flow */
|
|
191
|
+
listFlowAccess(flowId: string): Promise<unknown[]>;
|
|
192
|
+
/** Grant access to a flow */
|
|
193
|
+
grantFlowAccess(input: {
|
|
194
|
+
flowId: string;
|
|
195
|
+
userId?: string;
|
|
196
|
+
teamId?: string;
|
|
197
|
+
permission: 'owner' | 'editor' | 'operator' | 'viewer';
|
|
198
|
+
grantedBy?: string;
|
|
199
|
+
expiresAt?: Date | string;
|
|
200
|
+
}): Promise<unknown>;
|
|
201
|
+
/** Revoke a specific flow access record */
|
|
202
|
+
revokeFlowAccess(accessId: string): Promise<void>;
|
|
203
|
+
/** Get all flow IDs accessible to a user/teams */
|
|
204
|
+
getAccessibleFlowIds(userId: string, teamIds?: string[]): Promise<string[]>;
|
|
205
|
+
/** Get the highest permission level a user/teams has for a flow */
|
|
206
|
+
getFlowPermission(flowId: string, userId: string, teamIds?: string[]): Promise<'owner' | 'editor' | 'operator' | 'viewer' | null>;
|
|
207
|
+
/** Authorize an action for an identity */
|
|
208
|
+
authorize(context: AuthorizationContext): Promise<AuthorizationResult>;
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* Narrow database API exposed to plugin endpoint handlers.
|
|
212
|
+
*
|
|
213
|
+
* Plugins should use this instead of reaching into framework-specific
|
|
214
|
+
* database clients directly. It keeps plugin code portable across the
|
|
215
|
+
* supported host database types while still allowing schema-owning plugins
|
|
216
|
+
* to persist their own records.
|
|
217
|
+
*/
|
|
218
|
+
interface PluginDatabaseApi {
|
|
219
|
+
/** Host database dialect */
|
|
220
|
+
type: 'postgresql' | 'sqlite' | 'mysql';
|
|
221
|
+
/** Execute a query and return result rows */
|
|
222
|
+
query<T = Record<string, unknown>>(sql: string, params?: unknown[]): Promise<T[]>;
|
|
223
|
+
/** Execute a statement where no result rows are needed */
|
|
224
|
+
execute(sql: string, params?: unknown[]): Promise<void>;
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* Context passed to plugin endpoint handlers.
|
|
228
|
+
*/
|
|
229
|
+
interface PluginEndpointContext {
|
|
230
|
+
/** Parsed request body (for POST/PUT/PATCH) */
|
|
231
|
+
body: Record<string, unknown>;
|
|
232
|
+
/** URL path parameters (e.g., { id: '123' }) */
|
|
233
|
+
params: Record<string, string>;
|
|
234
|
+
/** URL query parameters */
|
|
235
|
+
query: Record<string, string | undefined>;
|
|
236
|
+
/** Request headers */
|
|
237
|
+
headers: Record<string, string | undefined>;
|
|
238
|
+
/** Resolved identity (null if unauthenticated or public route) */
|
|
239
|
+
identity: InvectIdentity | null;
|
|
240
|
+
/** Database API for plugin-owned tables */
|
|
241
|
+
database: PluginDatabaseApi;
|
|
242
|
+
/** The raw Request object (Web API Request) */
|
|
243
|
+
request: Request;
|
|
244
|
+
/**
|
|
245
|
+
* Core API — provides access to auth, flow access, and authorization
|
|
246
|
+
* services. Populated by the framework adapter.
|
|
247
|
+
*/
|
|
248
|
+
core: PluginEndpointCoreApi;
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* Response from a plugin endpoint handler.
|
|
252
|
+
*/
|
|
253
|
+
type PluginEndpointResponse = {
|
|
254
|
+
status?: number;
|
|
255
|
+
body: unknown;
|
|
256
|
+
} | {
|
|
257
|
+
status?: number;
|
|
258
|
+
stream: ReadableStream;
|
|
259
|
+
} | Response;
|
|
260
|
+
/**
|
|
261
|
+
* Context for flow run lifecycle hooks.
|
|
262
|
+
*/
|
|
263
|
+
interface FlowRunHookContext {
|
|
264
|
+
/** The flow ID being executed */
|
|
265
|
+
flowId: string;
|
|
266
|
+
/** The flow run ID */
|
|
267
|
+
flowRunId: string;
|
|
268
|
+
/** The flow version number */
|
|
269
|
+
flowVersion: number;
|
|
270
|
+
/** Input data for the flow run */
|
|
271
|
+
inputs: Record<string, unknown>;
|
|
272
|
+
/** Identity of the user who triggered the run (if available) */
|
|
273
|
+
identity?: InvectIdentity | null;
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* Context for node execution lifecycle hooks.
|
|
277
|
+
*/
|
|
278
|
+
interface NodeExecutionHookContext {
|
|
279
|
+
/** The flow run context */
|
|
280
|
+
flowRun: FlowRunHookContext;
|
|
281
|
+
/** The node ID being executed */
|
|
282
|
+
nodeId: string;
|
|
283
|
+
/** The node type (action ID or "AGENT") */
|
|
284
|
+
nodeType: string;
|
|
285
|
+
/** The node's label */
|
|
286
|
+
nodeLabel?: string;
|
|
287
|
+
/** Input data for this node */
|
|
288
|
+
inputs: Record<string, unknown>;
|
|
289
|
+
/** Resolved config params for this node */
|
|
290
|
+
params: Record<string, unknown>;
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* Result from an afterNodeExecute hook.
|
|
294
|
+
*/
|
|
295
|
+
interface NodeExecutionHookResult {
|
|
296
|
+
/** Optionally override the node output */
|
|
297
|
+
output?: unknown;
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* Plugin hooks for intercepting Invect lifecycle events.
|
|
301
|
+
*
|
|
302
|
+
* Hooks run in plugin array order. A hook returning `{ cancel: true }`
|
|
303
|
+
* short-circuits the operation (remaining plugins are skipped).
|
|
304
|
+
*/
|
|
305
|
+
interface InvectPluginHooks {
|
|
306
|
+
/**
|
|
307
|
+
* Runs before a flow execution starts.
|
|
308
|
+
* Return `{ cancel: true, reason: '...' }` to prevent the run.
|
|
309
|
+
* Return `{ inputs: {...} }` to modify the inputs.
|
|
310
|
+
*/
|
|
311
|
+
beforeFlowRun?: (context: FlowRunHookContext) => Promise<void | {
|
|
312
|
+
cancel?: boolean;
|
|
313
|
+
reason?: string;
|
|
314
|
+
inputs?: Record<string, unknown>;
|
|
315
|
+
}>;
|
|
316
|
+
/**
|
|
317
|
+
* Runs after a flow execution completes (success or failure).
|
|
318
|
+
*/
|
|
319
|
+
afterFlowRun?: (context: FlowRunHookContext & {
|
|
320
|
+
status: 'SUCCESS' | 'FAILED' | 'CANCELLED';
|
|
321
|
+
outputs?: Record<string, unknown>;
|
|
322
|
+
error?: string;
|
|
323
|
+
duration?: number;
|
|
324
|
+
}) => Promise<void>;
|
|
325
|
+
/**
|
|
326
|
+
* Runs before each node executes.
|
|
327
|
+
* Return `{ skip: true }` to skip this node.
|
|
328
|
+
* Return `{ params: {...} }` to override resolved params.
|
|
329
|
+
*/
|
|
330
|
+
beforeNodeExecute?: (context: NodeExecutionHookContext) => Promise<void | {
|
|
331
|
+
skip?: boolean;
|
|
332
|
+
params?: Record<string, unknown>;
|
|
333
|
+
}>;
|
|
334
|
+
/**
|
|
335
|
+
* Runs after each node executes.
|
|
336
|
+
* Return `{ output: ... }` to override the node's output.
|
|
337
|
+
*/
|
|
338
|
+
afterNodeExecute?: (context: NodeExecutionHookContext & {
|
|
339
|
+
status: 'SUCCESS' | 'FAILED' | 'SKIPPED';
|
|
340
|
+
output?: unknown;
|
|
341
|
+
error?: string;
|
|
342
|
+
duration?: number;
|
|
343
|
+
}) => Promise<void | NodeExecutionHookResult>;
|
|
344
|
+
/**
|
|
345
|
+
* Runs before every API request (in framework adapters).
|
|
346
|
+
* Return a Response to short-circuit (like better-auth's onRequest).
|
|
347
|
+
* Return `{ request }` to modify the request.
|
|
348
|
+
*/
|
|
349
|
+
onRequest?: (request: Request, context: {
|
|
350
|
+
path: string;
|
|
351
|
+
method: string;
|
|
352
|
+
identity: InvectIdentity | null;
|
|
353
|
+
}) => Promise<void | {
|
|
354
|
+
response: Response;
|
|
355
|
+
} | {
|
|
356
|
+
request: Request;
|
|
357
|
+
}>;
|
|
358
|
+
/**
|
|
359
|
+
* Runs after every API response (in framework adapters).
|
|
360
|
+
* Return a Response to replace the original response.
|
|
361
|
+
*/
|
|
362
|
+
onResponse?: (response: Response, context: {
|
|
363
|
+
path: string;
|
|
364
|
+
method: string;
|
|
365
|
+
identity: InvectIdentity | null;
|
|
366
|
+
}) => Promise<void | {
|
|
367
|
+
response: Response;
|
|
368
|
+
}>;
|
|
369
|
+
/**
|
|
370
|
+
* Runs during authorization checks.
|
|
371
|
+
* Return `{ allowed: true/false }` to override the default RBAC result.
|
|
372
|
+
* Return void to use the default authorization logic.
|
|
373
|
+
*/
|
|
374
|
+
onAuthorize?: (context: {
|
|
375
|
+
identity: InvectIdentity | null;
|
|
376
|
+
action: InvectPermission;
|
|
377
|
+
resource?: {
|
|
378
|
+
type: string;
|
|
379
|
+
id?: string;
|
|
380
|
+
};
|
|
381
|
+
database?: PluginDatabaseApi;
|
|
382
|
+
}) => Promise<void | AuthorizationResult>;
|
|
383
|
+
}
|
|
384
|
+
/**
|
|
385
|
+
* Context provided to a plugin's `init()` function.
|
|
386
|
+
*
|
|
387
|
+
* Gives plugins access to Invect's internals for deep integration.
|
|
388
|
+
*/
|
|
389
|
+
interface InvectPluginContext {
|
|
390
|
+
/**
|
|
391
|
+
* The full Invect configuration (read-only).
|
|
392
|
+
* Plugins can read config but not modify it after init.
|
|
393
|
+
*/
|
|
394
|
+
config: Record<string, unknown>;
|
|
395
|
+
/** Logger instance for the plugin */
|
|
396
|
+
logger: {
|
|
397
|
+
debug(message: string, ...args: unknown[]): void;
|
|
398
|
+
info(message: string, ...args: unknown[]): void;
|
|
399
|
+
warn(message: string, ...args: unknown[]): void;
|
|
400
|
+
error(message: string, ...args: unknown[]): void;
|
|
401
|
+
};
|
|
402
|
+
/**
|
|
403
|
+
* Check if another plugin is registered.
|
|
404
|
+
*
|
|
405
|
+
* @example
|
|
406
|
+
* ```typescript
|
|
407
|
+
* if (ctx.hasPlugin('rbac')) {
|
|
408
|
+
* // RBAC plugin is active, can rely on identity being resolved
|
|
409
|
+
* }
|
|
410
|
+
* ```
|
|
411
|
+
*/
|
|
412
|
+
hasPlugin: (pluginId: string) => boolean;
|
|
413
|
+
/**
|
|
414
|
+
* Get another registered plugin by ID.
|
|
415
|
+
* Returns null if the plugin is not registered.
|
|
416
|
+
*/
|
|
417
|
+
getPlugin: (pluginId: string) => InvectPlugin | null;
|
|
418
|
+
/**
|
|
419
|
+
* Register additional actions at init time.
|
|
420
|
+
* Equivalent to calling `invect.registerAction()` for each action.
|
|
421
|
+
*/
|
|
422
|
+
registerAction: (action: ActionDefinition) => void;
|
|
423
|
+
/**
|
|
424
|
+
* Store plugin-specific data accessible to other plugins and hooks.
|
|
425
|
+
* This is a simple key-value store scoped to the plugin.
|
|
426
|
+
*/
|
|
427
|
+
store: Map<string, unknown>;
|
|
428
|
+
}
|
|
429
|
+
/**
|
|
430
|
+
* Optional return value from `init()`.
|
|
431
|
+
* Allows plugins to modify Invect's configuration or provide additional context.
|
|
432
|
+
*/
|
|
433
|
+
interface InvectPluginInitResult {
|
|
434
|
+
/**
|
|
435
|
+
* Additional options to merge into the Invect config.
|
|
436
|
+
* Shallow-merged with the existing config. Cannot override core fields.
|
|
437
|
+
*/
|
|
438
|
+
options?: Record<string, unknown>;
|
|
439
|
+
/**
|
|
440
|
+
* Additional context to merge into the plugin context.
|
|
441
|
+
* Available to other plugins via `ctx.store`.
|
|
442
|
+
*/
|
|
443
|
+
context?: Record<string, unknown>;
|
|
444
|
+
}
|
|
445
|
+
/**
|
|
446
|
+
* The Invect Plugin interface.
|
|
447
|
+
*
|
|
448
|
+
* Only `id` is required. All other properties are optional and enable
|
|
449
|
+
* specific extension capabilities.
|
|
450
|
+
*
|
|
451
|
+
* @example
|
|
452
|
+
* ```typescript
|
|
453
|
+
* import type { InvectPlugin } from '@invect/core';
|
|
454
|
+
*
|
|
455
|
+
* export function myPlugin(options?: MyPluginOptions): InvectPlugin {
|
|
456
|
+
* return {
|
|
457
|
+
* id: 'my-plugin',
|
|
458
|
+
*
|
|
459
|
+
* schema: {
|
|
460
|
+
* auditLogs: {
|
|
461
|
+
* fields: {
|
|
462
|
+
* id: { type: 'uuid', primaryKey: true, defaultValue: 'uuid()' },
|
|
463
|
+
* action: { type: 'string', required: true },
|
|
464
|
+
* createdAt: { type: 'date', defaultValue: 'now()' },
|
|
465
|
+
* },
|
|
466
|
+
* },
|
|
467
|
+
* },
|
|
468
|
+
*
|
|
469
|
+
* actions: [myCustomAction],
|
|
470
|
+
*
|
|
471
|
+
* endpoints: [{
|
|
472
|
+
* method: 'GET',
|
|
473
|
+
* path: '/my-plugin/stats',
|
|
474
|
+
* handler: async (ctx) => ({ body: { count: 42 } }),
|
|
475
|
+
* }],
|
|
476
|
+
*
|
|
477
|
+
* hooks: {
|
|
478
|
+
* afterFlowRun: async (context) => {
|
|
479
|
+
* console.log(`Flow ${context.flowId} completed with ${context.status}`);
|
|
480
|
+
* },
|
|
481
|
+
* },
|
|
482
|
+
*
|
|
483
|
+
* async init(ctx) {
|
|
484
|
+
* ctx.logger.info('My plugin initialized');
|
|
485
|
+
* },
|
|
486
|
+
*
|
|
487
|
+
* async shutdown() {
|
|
488
|
+
* // cleanup
|
|
489
|
+
* },
|
|
490
|
+
* };
|
|
491
|
+
* }
|
|
492
|
+
* ```
|
|
493
|
+
*/
|
|
494
|
+
interface InvectPlugin {
|
|
495
|
+
/**
|
|
496
|
+
* Unique plugin identifier.
|
|
497
|
+
* Used for `hasPlugin()` / `getPlugin()` lookups and logging.
|
|
498
|
+
*/
|
|
499
|
+
id: string;
|
|
500
|
+
/**
|
|
501
|
+
* Human-readable plugin name (for logging and diagnostics).
|
|
502
|
+
*/
|
|
503
|
+
name?: string;
|
|
504
|
+
/**
|
|
505
|
+
* Called during `Invect.initialize()`, after the action registry is created
|
|
506
|
+
* but before the service factory is built.
|
|
507
|
+
*
|
|
508
|
+
* Use this to:
|
|
509
|
+
* - Register actions dynamically
|
|
510
|
+
* - Set up plugin-internal state
|
|
511
|
+
* - Read configuration from other plugins
|
|
512
|
+
* - Validate plugin prerequisites
|
|
513
|
+
*/
|
|
514
|
+
init?: (context: InvectPluginContext) => Promise<InvectPluginInitResult | void> | InvectPluginInitResult | void;
|
|
515
|
+
/**
|
|
516
|
+
* Database schema required by this plugin.
|
|
517
|
+
*
|
|
518
|
+
* Declared using the abstract `InvectPluginSchema` format.
|
|
519
|
+
* The Invect CLI generates the concrete Drizzle schema files
|
|
520
|
+
* from core + plugin schemas combined.
|
|
521
|
+
*
|
|
522
|
+
* Run `npx invect generate` after adding/changing plugin schemas.
|
|
523
|
+
*/
|
|
524
|
+
schema?: InvectPluginSchema;
|
|
525
|
+
/**
|
|
526
|
+
* Table names that this plugin requires to exist in the database.
|
|
527
|
+
*
|
|
528
|
+
* Used during startup to verify that all required tables are present.
|
|
529
|
+
* If any are missing, Invect logs a clear, developer-friendly error
|
|
530
|
+
* explaining which plugin needs which tables and how to fix it.
|
|
531
|
+
*
|
|
532
|
+
* This is separate from `schema` — use `requiredTables` when your plugin
|
|
533
|
+
* relies on tables that are managed externally (e.g., better-auth creates
|
|
534
|
+
* its own tables) or when you want a lightweight existence check without
|
|
535
|
+
* needing to declare a full abstract schema.
|
|
536
|
+
*
|
|
537
|
+
* If `schema` is declared and `requiredTables` is not, the table names
|
|
538
|
+
* from `schema` are used automatically.
|
|
539
|
+
*
|
|
540
|
+
* @example
|
|
541
|
+
* ```typescript
|
|
542
|
+
* // Plugin that relies on better-auth's tables
|
|
543
|
+
* requiredTables: ['user', 'session', 'account', 'verification']
|
|
544
|
+
*
|
|
545
|
+
* // Plugin that declares its own schema (requiredTables inferred)
|
|
546
|
+
* schema: { auditLogs: { tableName: 'audit_logs', fields: { ... } } }
|
|
547
|
+
* ```
|
|
548
|
+
*/
|
|
549
|
+
requiredTables?: string[];
|
|
550
|
+
/**
|
|
551
|
+
* Actions (nodes + agent tools) provided by this plugin.
|
|
552
|
+
*
|
|
553
|
+
* These are registered into the ActionRegistry during initialization,
|
|
554
|
+
* making them available as flow nodes and agent tools.
|
|
555
|
+
*/
|
|
556
|
+
actions?: ActionDefinition[];
|
|
557
|
+
/**
|
|
558
|
+
* API endpoints provided by this plugin.
|
|
559
|
+
*
|
|
560
|
+
* Framework adapters (Express, Next.js, NestJS) automatically mount
|
|
561
|
+
* these alongside the core Invect routes.
|
|
562
|
+
*/
|
|
563
|
+
endpoints?: InvectPluginEndpoint[];
|
|
564
|
+
/**
|
|
565
|
+
* Lifecycle hooks for intercepting flow execution, API requests,
|
|
566
|
+
* and authorization.
|
|
567
|
+
*/
|
|
568
|
+
hooks?: InvectPluginHooks;
|
|
569
|
+
/**
|
|
570
|
+
* Human-readable setup instructions shown when required tables are missing.
|
|
571
|
+
* Overrides the default generic Drizzle instructions.
|
|
572
|
+
*
|
|
573
|
+
* @example
|
|
574
|
+
* ```typescript
|
|
575
|
+
* setupInstructions: 'Run `pnpm db:push` to create the better-auth tables.'
|
|
576
|
+
* ```
|
|
577
|
+
*/
|
|
578
|
+
setupInstructions?: string;
|
|
579
|
+
/**
|
|
580
|
+
* Error codes returned by this plugin.
|
|
581
|
+
* Merged into the global error code registry.
|
|
582
|
+
*/
|
|
583
|
+
$ERROR_CODES?: Record<string, {
|
|
584
|
+
message: string;
|
|
585
|
+
status?: number;
|
|
586
|
+
}>;
|
|
587
|
+
/**
|
|
588
|
+
* Called during `Invect.shutdown()`.
|
|
589
|
+
* Clean up connections, timers, or other resources.
|
|
590
|
+
*/
|
|
591
|
+
shutdown?: () => Promise<void> | void;
|
|
592
|
+
}
|
|
593
|
+
/**
|
|
594
|
+
* Collects and executes hooks from all registered plugins.
|
|
595
|
+
* Used internally by `Invect` and framework adapters.
|
|
596
|
+
*/
|
|
597
|
+
interface PluginHookRunner {
|
|
598
|
+
/** Run all beforeFlowRun hooks in order */
|
|
599
|
+
runBeforeFlowRun: (context: FlowRunHookContext) => Promise<{
|
|
600
|
+
cancelled: boolean;
|
|
601
|
+
reason?: string;
|
|
602
|
+
inputs?: Record<string, unknown>;
|
|
603
|
+
}>;
|
|
604
|
+
/** Run all afterFlowRun hooks in order */
|
|
605
|
+
runAfterFlowRun: (context: FlowRunHookContext & {
|
|
606
|
+
status: 'SUCCESS' | 'FAILED' | 'CANCELLED';
|
|
607
|
+
outputs?: Record<string, unknown>;
|
|
608
|
+
error?: string;
|
|
609
|
+
duration?: number;
|
|
610
|
+
}) => Promise<void>;
|
|
611
|
+
/** Run all beforeNodeExecute hooks in order */
|
|
612
|
+
runBeforeNodeExecute: (context: NodeExecutionHookContext) => Promise<{
|
|
613
|
+
skipped: boolean;
|
|
614
|
+
params?: Record<string, unknown>;
|
|
615
|
+
}>;
|
|
616
|
+
/** Run all afterNodeExecute hooks in order */
|
|
617
|
+
runAfterNodeExecute: (context: NodeExecutionHookContext & {
|
|
618
|
+
status: 'SUCCESS' | 'FAILED' | 'SKIPPED';
|
|
619
|
+
output?: unknown;
|
|
620
|
+
error?: string;
|
|
621
|
+
duration?: number;
|
|
622
|
+
}) => Promise<{
|
|
623
|
+
output?: unknown;
|
|
624
|
+
}>;
|
|
625
|
+
/** Run all onRequest hooks in order */
|
|
626
|
+
runOnRequest: (request: Request, context: {
|
|
627
|
+
path: string;
|
|
628
|
+
method: string;
|
|
629
|
+
identity: InvectIdentity | null;
|
|
630
|
+
}) => Promise<{
|
|
631
|
+
intercepted: boolean;
|
|
632
|
+
response?: Response;
|
|
633
|
+
request?: Request;
|
|
634
|
+
}>;
|
|
635
|
+
/** Run all onResponse hooks in order */
|
|
636
|
+
runOnResponse: (response: Response, context: {
|
|
637
|
+
path: string;
|
|
638
|
+
method: string;
|
|
639
|
+
identity: InvectIdentity | null;
|
|
640
|
+
}) => Promise<Response>;
|
|
641
|
+
/** Run all onAuthorize hooks in order */
|
|
642
|
+
runOnAuthorize: (context: {
|
|
643
|
+
identity: InvectIdentity | null;
|
|
644
|
+
action: InvectPermission;
|
|
645
|
+
resource?: {
|
|
646
|
+
type: string;
|
|
647
|
+
id?: string;
|
|
648
|
+
};
|
|
649
|
+
database?: PluginDatabaseApi;
|
|
650
|
+
}) => Promise<AuthorizationResult | null>;
|
|
651
|
+
}
|
|
652
|
+
//#endregion
|
|
653
|
+
export { FlowRunHookContext, InvectPlugin, InvectPluginContext, InvectPluginEndpoint, InvectPluginHooks, InvectPluginInitResult, InvectPluginSchema, NodeExecutionHookContext, NodeExecutionHookResult, PluginDatabaseApi, PluginEndpointContext, PluginEndpointCoreApi, PluginEndpointResponse, PluginFieldAttribute, PluginFieldType, PluginHookRunner, PluginTableDefinition };
|
|
654
|
+
//# sourceMappingURL=plugin.types.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.types.d.cts","names":[],"sources":["../../src/types/plugin.types.ts"],"mappings":"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"}
|