-
Notifications
You must be signed in to change notification settings - Fork 614
feat: Add HubSpot integration plugin hooks for user journey tracking #1806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
hari-kuriakose
wants to merge
19
commits into
main
Choose a base branch
from
feat/plugin-integrations
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
7ff40c9
refactor: Add dynamic plugin loading for enterprise components
hari-kuriakose 92b8575
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 6e43db3
Merge branch 'main' into chore/plugin-loading
hari-kuriakose 7e5c60a
refactor: Use get_plugin() for API Hub usage utilities
hari-kuriakose 16e04a7
Refactor random sampling logic in utils.py
hari-kuriakose d9d5d86
fix: Add Traefik port labels and clean up service ignore list
hari-kuriakose b5057ea
fix: Update frontend Docker config for nginx serving
hari-kuriakose 6d6d730
Merge branch 'main' into chore/plugin-loading
hari-kuriakose d4bcc39
fix: Use ARG instead of ENV for BUILD_CONTEXT_PATH in frontend Docker…
hari-kuriakose 6938350
feat: Add HubSpot integration plugin for contact event tracking
hari-kuriakose e010111
[FIX] Fix HITL review screen showing "Never expires" despite TTL bein…
vishnuszipstack 01d8b90
refactor: Add dynamic plugin loading for enterprise components (#1736)
hari-kuriakose a5d6a0b
feat: Add auth error code for forbidden emails (#1789)
hari-kuriakose e67ecc5
[MISC] Improve dev experience by adding a compose debug override (#1765)
chandrasekharan-zipstack fed6355
[FIX] Optimize queries made by worker and retry config of worker base…
chandrasekharan-zipstack 2c42638
UN-2971 [FEAT] Pass selectedProduct to login/signup API for OAuth pro…
hari-kuriakose 08736d6
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] dbd3dac
Merge branch 'main' into feat/plugin-integrations
hari-kuriakose 7fc47ba
Merge branch 'main' into feat/plugin-integrations
vishnuszipstack File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: Zipstack/unstract
Length of output: 12049
🏁 Script executed:
Repository: Zipstack/unstract
Length of output: 165
🏁 Script executed:
Repository: Zipstack/unstract
Length of output: 3637
🏁 Script executed:
Repository: Zipstack/unstract
Length of output: 5688
🏁 Script executed:
Repository: Zipstack/unstract
Length of output: 17687
🏁 Script executed:
Repository: Zipstack/unstract
Length of output: 4423
🏁 Script executed:
Repository: Zipstack/unstract
Length of output: 417
🏁 Script executed:
Repository: Zipstack/unstract
Length of output: 347
Fix organization scoping for
PromptStudioOutputManagerandDocumentManagercount checks.The
.objects.count()calls at lines 448 and 625 are unscoped and may span all organizations.PromptStudioOutputManagerandDocumentManageruse onlyBaseModelwithout a custom manager that implements organization filtering, unlikeCustomToolandPromptStudioRegistrywhich useDefaultOrganizationManagerMixin.To fix, either:
DefaultOrganizationManagerMixinto a custom manager for these models and assign it as the default manager.filter(organization=UserContext.get_organization()).count()🤖 Prompt for AI Agents