hyperpocket 0.5.4__tar.gz → 0.5.6__tar.gz
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.
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/PKG-INFO +21 -2
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/README.md +18 -0
- hyperpocket-0.5.6/hyperpocket/auth/basicauth/README.md +28 -0
- hyperpocket-0.5.6/hyperpocket/auth/basicauth/basicauth_context.py +14 -0
- hyperpocket-0.5.6/hyperpocket/auth/basicauth/basicauth_handler.py +94 -0
- hyperpocket-0.5.6/hyperpocket/auth/basicauth/basicauth_schema.py +9 -0
- hyperpocket-0.5.6/hyperpocket/auth/basicauth/context.py +15 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/hubspot/oauth2_context.py +2 -4
- hyperpocket-0.5.6/hyperpocket/auth/linkedin/basicauth_context.py +14 -0
- hyperpocket-0.5.6/hyperpocket/auth/linkedin/basicauth_handler.py +97 -0
- hyperpocket-0.5.6/hyperpocket/auth/linkedin/basicauth_schema.py +9 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linkedin/oauth2_handler.py +1 -1
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/provider.py +1 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/config/auth.py +1 -0
- hyperpocket-0.5.6/hyperpocket/server/auth/basicauth.py +88 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/linkedin.py +8 -3
- hyperpocket-0.5.6/hyperpocket/util/convert_pydantic_to_dict.py +14 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/pyproject.toml +3 -2
- hyperpocket-0.5.6/tests/tool/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/uv.lock +4 -2
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/.gitignore +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/activeloop/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/activeloop/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/activeloop/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/activeloop/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/activeloop/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/activeloop/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/adobe/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/adobe/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/adobe/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/adobe/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/adobe/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/adobe/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/affinity/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/affinity/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/affinity/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/affinity/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/affinity/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/affinity/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/agentql/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/agentql/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/agentql/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/agentql/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/agentql/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/agentql/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ahrefs/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ahrefs/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ahrefs/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ahrefs/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ahrefs/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ahrefs/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/airtable/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/airtable/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/airtable/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/airtable/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/airtable/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/airtable/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/alchemy/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/alchemy/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/alchemy/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/alchemy/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/alchemy/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/alchemy/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/altoviz/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/altoviz/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/altoviz/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/altoviz/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/altoviz/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/altoviz/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/apitoken/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/apitoken/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/apitoken/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/apitoken/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/apitoken/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/apitoken/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/asana/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/asana/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/asana/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/asana/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/asana/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/asana/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bamboohr/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bamboohr/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bamboohr/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bamboohr/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bamboohr/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bamboohr/token_schema.py +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/bitbucket → hyperpocket-0.5.6/hyperpocket/auth/basicauth}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bitbucket/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/bitwarden → hyperpocket-0.5.6/hyperpocket/auth/bitbucket}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bitbucket/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bitbucket/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bitbucket/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bitbucket/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bitwarden/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/brevo → hyperpocket-0.5.6/hyperpocket/auth/bitwarden}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bitwarden/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bitwarden/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bitwarden/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/bitwarden/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/brevo/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/brex → hyperpocket-0.5.6/hyperpocket/auth/brevo}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/brevo/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/brevo/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/brevo/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/brevo/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/brex/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/cal → hyperpocket-0.5.6/hyperpocket/auth/brex}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/brex/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/brex/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/brex/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/brex/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/cal/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/calendly → hyperpocket-0.5.6/hyperpocket/auth/cal}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/cal/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/cal/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/cal/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/cal/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/calendly/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/canvas → hyperpocket-0.5.6/hyperpocket/auth/calendly}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/calendly/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/calendly/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/calendly/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/calendly/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/canvas/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/clickup → hyperpocket-0.5.6/hyperpocket/auth/canvas}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/canvas/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/canvas/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/canvas/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/canvas/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/clickup/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/cloudflare → hyperpocket-0.5.6/hyperpocket/auth/clickup}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/clickup/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/clickup/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/clickup/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/clickup/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/cloudflare/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/dailybot → hyperpocket-0.5.6/hyperpocket/auth/cloudflare}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/cloudflare/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/cloudflare/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/cloudflare/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/cloudflare/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/dailybot/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/datadog → hyperpocket-0.5.6/hyperpocket/auth/dailybot}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/dailybot/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/dailybot/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/dailybot/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/dailybot/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/datadog/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/discord → hyperpocket-0.5.6/hyperpocket/auth/datadog}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/datadog/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/datadog/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/datadog/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/datadog/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discord/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/discordbot → hyperpocket-0.5.6/hyperpocket/auth/discord}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discord/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discord/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discord/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discord/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discord/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discord/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discord/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discordbot/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/elevenlabs → hyperpocket-0.5.6/hyperpocket/auth/discordbot}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discordbot/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discordbot/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discordbot/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/discordbot/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/elevenlabs/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/exa → hyperpocket-0.5.6/hyperpocket/auth/elevenlabs}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/elevenlabs/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/elevenlabs/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/elevenlabs/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/elevenlabs/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/exa/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/facebook → hyperpocket-0.5.6/hyperpocket/auth/exa}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/exa/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/exa/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/exa/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/exa/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/facebook/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/finage → hyperpocket-0.5.6/hyperpocket/auth/facebook}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/facebook/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/facebook/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/facebook/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/facebook/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/finage/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/github → hyperpocket-0.5.6/hyperpocket/auth/finage}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/finage/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/finage/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/finage/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/finage/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/github/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/google → hyperpocket-0.5.6/hyperpocket/auth/github}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/github/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/github/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/github/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/github/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/github/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/github/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/github/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/google/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/gumloop → hyperpocket-0.5.6/hyperpocket/auth/google}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/google/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/google/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/google/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/google/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/gumloop/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/happyrobot → hyperpocket-0.5.6/hyperpocket/auth/gumloop}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/gumloop/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/gumloop/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/gumloop/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/gumloop/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/happyrobot/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/heygen → hyperpocket-0.5.6/hyperpocket/auth/happyrobot}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/happyrobot/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/happyrobot/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/happyrobot/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/happyrobot/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/heygen/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/hubspot → hyperpocket-0.5.6/hyperpocket/auth/heygen}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/heygen/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/heygen/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/heygen/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/heygen/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/hubspot/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/jira → hyperpocket-0.5.6/hyperpocket/auth/hubspot}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/hubspot/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/hubspot/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/hubspot/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/hubspot/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/hubspot/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/hubspot/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/jira/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/klaviyo → hyperpocket-0.5.6/hyperpocket/auth/jira}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/jira/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/jira/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/jira/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/jira/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/jira/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/jira/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/jira/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/klaviyo/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/kraken → hyperpocket-0.5.6/hyperpocket/auth/klaviyo}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/klaviyo/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/klaviyo/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/klaviyo/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/klaviyo/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/kraken/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/lever → hyperpocket-0.5.6/hyperpocket/auth/kraken}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/kraken/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/kraken/keypair_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/kraken/keypair_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/kraken/keypair_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/lever/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/lever_sandbox → hyperpocket-0.5.6/hyperpocket/auth/lever}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/lever/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/lever/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/lever/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/lever/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/lever_sandbox/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/linear → hyperpocket-0.5.6/hyperpocket/auth/lever_sandbox}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/lever_sandbox/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/lever_sandbox/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/lever_sandbox/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/lever_sandbox/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linear/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/linkedin → hyperpocket-0.5.6/hyperpocket/auth/linear}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linear/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linear/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linear/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linear/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linear/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linear/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linear/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linkedin/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/listennotes → hyperpocket-0.5.6/hyperpocket/auth/linkedin}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linkedin/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linkedin/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/linkedin/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/listennotes/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/mailchimp → hyperpocket-0.5.6/hyperpocket/auth/listennotes}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/listennotes/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/listennotes/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/listennotes/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/listennotes/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/mailchimp/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/mem0 → hyperpocket-0.5.6/hyperpocket/auth/mailchimp}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/mailchimp/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/mailchimp/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/mailchimp/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/mailchimp/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/mem0/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/microsoft_clarity → hyperpocket-0.5.6/hyperpocket/auth/mem0}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/mem0/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/mem0/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/mem0/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/mem0/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/microsoft_clarity/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/neon → hyperpocket-0.5.6/hyperpocket/auth/microsoft_clarity}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/microsoft_clarity/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/microsoft_clarity/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/microsoft_clarity/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/microsoft_clarity/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/neon/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/ngrok → hyperpocket-0.5.6/hyperpocket/auth/neon}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/neon/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/neon/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/neon/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/neon/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ngrok/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/notion → hyperpocket-0.5.6/hyperpocket/auth/ngrok}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ngrok/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ngrok/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ngrok/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ngrok/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/notion/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/oncehub → hyperpocket-0.5.6/hyperpocket/auth/notion}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/notion/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/notion/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/notion/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/notion/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/notion/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/notion/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/notion/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/oncehub/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/pagerduty → hyperpocket-0.5.6/hyperpocket/auth/oncehub}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/oncehub/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/oncehub/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/oncehub/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/oncehub/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pagerduty/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/pandadoc → hyperpocket-0.5.6/hyperpocket/auth/pagerduty}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pagerduty/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pagerduty/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pagerduty/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pagerduty/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pandadoc/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/pipedrive → hyperpocket-0.5.6/hyperpocket/auth/pandadoc}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pandadoc/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pandadoc/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pandadoc/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pandadoc/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pipedrive/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/posthog → hyperpocket-0.5.6/hyperpocket/auth/pipedrive}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pipedrive/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pipedrive/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pipedrive/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/pipedrive/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/posthog/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/ravenseotools → hyperpocket-0.5.6/hyperpocket/auth/posthog}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/posthog/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/posthog/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/posthog/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/posthog/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ravenseotools/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/reddit → hyperpocket-0.5.6/hyperpocket/auth/ravenseotools}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ravenseotools/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ravenseotools/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ravenseotools/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/ravenseotools/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/reddit/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/salesforce → hyperpocket-0.5.6/hyperpocket/auth/reddit}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/reddit/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/reddit/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/reddit/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/reddit/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/salesforce/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/semantic_scholar → hyperpocket-0.5.6/hyperpocket/auth/salesforce}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/salesforce/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/salesforce/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/salesforce/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/salesforce/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/schema.py +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/sendgrid → hyperpocket-0.5.6/hyperpocket/auth/semantic_scholar}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/semantic_scholar/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/semantic_scholar/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/semantic_scholar/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/semantic_scholar/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/sendgrid/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/serpapi → hyperpocket-0.5.6/hyperpocket/auth/sendgrid}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/sendgrid/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/sendgrid/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/sendgrid/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/sendgrid/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/serpapi/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/slack → hyperpocket-0.5.6/hyperpocket/auth/serpapi}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/serpapi/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/serpapi/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/serpapi/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/serpapi/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/slack/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/spotify → hyperpocket-0.5.6/hyperpocket/auth/slack}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/slack/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/slack/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/slack/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/slack/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/slack/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/slack/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/slack/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/spotify/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/stripe → hyperpocket-0.5.6/hyperpocket/auth/spotify}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/spotify/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/spotify/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/spotify/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/spotify/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/stripe/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/supabase → hyperpocket-0.5.6/hyperpocket/auth/stripe}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/stripe/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/stripe/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/stripe/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/stripe/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/supabase/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/tavily → hyperpocket-0.5.6/hyperpocket/auth/supabase}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/supabase/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/supabase/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/supabase/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/supabase/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/tavily/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/timekit → hyperpocket-0.5.6/hyperpocket/auth/tavily}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/tavily/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/tavily/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/tavily/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/tavily/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/timekit/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/trello → hyperpocket-0.5.6/hyperpocket/auth/timekit}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/timekit/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/timekit/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/timekit/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/timekit/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/trello/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/valyu → hyperpocket-0.5.6/hyperpocket/auth/trello}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/trello/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/trello/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/trello/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/trello/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/valyu/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/wandb → hyperpocket-0.5.6/hyperpocket/auth/valyu}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/valyu/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/valyu/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/valyu/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/valyu/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/wandb/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/weaviate → hyperpocket-0.5.6/hyperpocket/auth/wandb}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/wandb/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/wandb/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/wandb/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/wandb/token_schema.py +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/workiom → hyperpocket-0.5.6/hyperpocket/auth/weaviate}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/weaviate/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/weaviate/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/weaviate/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/weaviate/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/workiom/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/x → hyperpocket-0.5.6/hyperpocket/auth/workiom}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/workiom/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/workiom/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/workiom/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/workiom/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/x/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/zinc → hyperpocket-0.5.6/hyperpocket/auth/x}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/x/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/x/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/x/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/x/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4/hyperpocket/auth/zoom → hyperpocket-0.5.6/hyperpocket/auth/zinc}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/zinc/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/zinc/token_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/zinc/token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/zinc/token_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/zoom/README.md +0 -0
- {hyperpocket-0.5.4/hyperpocket/cli → hyperpocket-0.5.6/hyperpocket/auth/zoom}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/zoom/context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/zoom/oauth2_context.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/zoom/oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/auth/zoom/oauth2_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/builtin.py +0 -0
- {hyperpocket-0.5.4/hyperpocket/cli/codegen → hyperpocket-0.5.6/hyperpocket/cli}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/__main__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/auth_oauth2.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/auth_token.py +0 -0
- {hyperpocket-0.5.4/tests → hyperpocket-0.5.6/hyperpocket/cli/codegen}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/auth/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/auth/auth_context_template.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/auth/auth_oauth2_context_template.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/auth/auth_oauth2_handler_template.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/auth/auth_oauth2_schema_template.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/auth/auth_token_context_template.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/auth/auth_token_handler_template.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/auth/auth_token_schema_template.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/auth/server_auth_template.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/tool/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/codegen/tool/tool_main_template.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/tool_create.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/cli/tool_export.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/config/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/config/git.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/config/logger.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/config/session.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/config/settings.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/constants.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/futures/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/futures/futurestore.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/pocket_auth.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/pocket_main.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/prompts.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/activeloop.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/adobe.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/affinity.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/agentql.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/ahrefs.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/airtable.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/alchemy.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/altoviz.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/apitoken.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/asana.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/bamboohr.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/bitbucket.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/bitwarden.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/brevo.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/brex.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/cal.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/calendly.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/canvas.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/clickup.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/cloudflare.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/dailybot.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/datadog.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/discord.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/discordbot.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/elevenlabs.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/exa.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/facebook.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/finage.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/github.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/google.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/gumloop.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/happyrobot.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/heygen.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/hubspot.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/jira.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/klaviyo.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/kraken.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/lever.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/lever_sandbox.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/linear.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/listennotes.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/mailchimp.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/mem0.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/microsoft_clarity.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/neon.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/ngrok.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/notion.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/oncehub.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/pagerduty.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/pandadoc.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/pipedrive.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/posthog.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/ravenseotools.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/reddit.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/salesforce.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/semantic_scholar.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/sendgrid.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/serpapi.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/slack.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/spotify.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/stripe.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/supabase.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/tavily.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/timekit.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/token.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/trello.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/valyu.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/wandb.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/weaviate.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/workiom.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/x.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/zinc.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/auth/zoom.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/proxy.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/server/server.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/session/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/session/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/session/in_memory.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/session/interface.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/session/redis.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/tool/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/tool/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/tool/dock/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/tool/dock/dock.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/tool/function/README.md +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/tool/function/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/tool/function/annotation.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/tool/function/tool.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/tool/tool.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/tool_like.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/util/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/util/extract_func_param_desc_from_docstring.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/util/find_all_leaf_class_in_package.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/util/find_all_subclass_in_package.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/util/flatten_json_schema.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/util/function_to_model.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/util/get_objects_from_subpackage.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/util/git_parser.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/util/json_schema_to_model.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/hyperpocket/util/short_hashing_str.py +0 -0
- {hyperpocket-0.5.4/tests/auth → hyperpocket-0.5.6/tests}/__init__.py +0 -0
- {hyperpocket-0.5.4/tests/session → hyperpocket-0.5.6/tests/auth}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/auth/test_google_oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/auth/test_gumloop_token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/auth/test_notion_token_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/auth/test_slack_oauth2_handler.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/auth/test_slack_token_handler.py +0 -0
- {hyperpocket-0.5.4/tests/tool → hyperpocket-0.5.6/tests/session}/__init__.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/session/test_in_memory.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/session/test_redis.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/test_pocket.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/test_pocket_auth.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/tool/test_function_tool.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/utils/test_extract_func_param_desc_from_docstring.py +0 -0
- {hyperpocket-0.5.4 → hyperpocket-0.5.6}/tests/utils/test_git_parser.py +0 -0
@@ -1,18 +1,19 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: hyperpocket
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.6
|
4
4
|
Summary: Building AI agent with hyperpocket tool in a flash
|
5
5
|
Project-URL: Homepage, https://vessl-ai.github.io/hyperpocket
|
6
6
|
Project-URL: Repository, https://github.com/vessl-ai/hyperpocket
|
7
7
|
Author-email: Hyperpocket Team <hyperpocket@vessl.ai>
|
8
8
|
Requires-Python: >=3.10
|
9
9
|
Requires-Dist: click>=8.1.7
|
10
|
+
Requires-Dist: cryptography>=44.0.0
|
10
11
|
Requires-Dist: dynaconf>=3.2.6
|
11
12
|
Requires-Dist: fastapi>=0.115.5
|
12
13
|
Requires-Dist: gitpython>=3.1.43
|
13
14
|
Requires-Dist: httpx==0.27
|
14
15
|
Requires-Dist: jinja2>=3.1.4
|
15
|
-
Requires-Dist: multiprocess>=0.70.
|
16
|
+
Requires-Dist: multiprocess>=0.70.16
|
16
17
|
Requires-Dist: nest-asyncio>=1.6.0
|
17
18
|
Requires-Dist: pydantic>=2.10.2
|
18
19
|
Requires-Dist: pygithub>=2.5.0
|
@@ -335,6 +336,24 @@ client_secret = "" # your slack client secret
|
|
335
336
|
- in this case, by putting your slack app client_id and client_secret on `.secrets.toml`, you can manage your sensitive
|
336
337
|
data more safely.
|
337
338
|
|
339
|
+
#### When using Basic Auth
|
340
|
+
|
341
|
+
IMPORTANT: You should update `auth_encryption_secret_key` in `{WORKDIR}/.secret.toml` with your own secret key.
|
342
|
+
|
343
|
+
```toml
|
344
|
+
[auth]
|
345
|
+
auth_encryption_secret_key = "<YOUR_SECRET_KEY>"
|
346
|
+
```
|
347
|
+
|
348
|
+
The secret key should be a 32 Base64 encoded string.
|
349
|
+
|
350
|
+
You can generate the secret key with the following command.
|
351
|
+
|
352
|
+
```shell
|
353
|
+
pip install cryptography
|
354
|
+
python -c 'from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())'
|
355
|
+
```
|
356
|
+
|
338
357
|
#### How to integrate github OAuth app
|
339
358
|
|
340
359
|
1. Follow the github documentation to create a new OAuth
|
@@ -308,6 +308,24 @@ client_secret = "" # your slack client secret
|
|
308
308
|
- in this case, by putting your slack app client_id and client_secret on `.secrets.toml`, you can manage your sensitive
|
309
309
|
data more safely.
|
310
310
|
|
311
|
+
#### When using Basic Auth
|
312
|
+
|
313
|
+
IMPORTANT: You should update `auth_encryption_secret_key` in `{WORKDIR}/.secret.toml` with your own secret key.
|
314
|
+
|
315
|
+
```toml
|
316
|
+
[auth]
|
317
|
+
auth_encryption_secret_key = "<YOUR_SECRET_KEY>"
|
318
|
+
```
|
319
|
+
|
320
|
+
The secret key should be a 32 Base64 encoded string.
|
321
|
+
|
322
|
+
You can generate the secret key with the following command.
|
323
|
+
|
324
|
+
```shell
|
325
|
+
pip install cryptography
|
326
|
+
python -c 'from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())'
|
327
|
+
```
|
328
|
+
|
311
329
|
#### How to integrate github OAuth app
|
312
330
|
|
313
331
|
1. Follow the github documentation to create a new OAuth
|
@@ -0,0 +1,28 @@
|
|
1
|
+
### API Token Auth
|
2
|
+
|
3
|
+
This module provides authentication using simple API tokens.
|
4
|
+
|
5
|
+
1. To use this authentication in your tool, include the following in your `config.toml`:
|
6
|
+
|
7
|
+
```toml
|
8
|
+
[auth]
|
9
|
+
auth_provider = "apitoken"
|
10
|
+
auth_handler = "apitoken"
|
11
|
+
scopes = []
|
12
|
+
```
|
13
|
+
|
14
|
+
2. To use it with `function_tool`, you can define your function as follows:
|
15
|
+
|
16
|
+
```python
|
17
|
+
from hyperpocket.tool import function_tool
|
18
|
+
from hyperpocket.auth import AuthProvider
|
19
|
+
|
20
|
+
|
21
|
+
@function_tool(
|
22
|
+
auth_provider=AuthProvider.API_TOKEN
|
23
|
+
)
|
24
|
+
def my_function(**kwargs):
|
25
|
+
token = kwargs["API_TOKEN"]
|
26
|
+
|
27
|
+
# ...
|
28
|
+
```
|
@@ -0,0 +1,14 @@
|
|
1
|
+
from hyperpocket.auth.basicauth.context import BasicAuthContext
|
2
|
+
from hyperpocket.auth.basicauth.basicauth_schema import (
|
3
|
+
BasicAuthResponse,
|
4
|
+
)
|
5
|
+
|
6
|
+
|
7
|
+
class BasicAuthContext(BasicAuthContext):
|
8
|
+
@classmethod
|
9
|
+
def from_api_token_response(cls, response: BasicAuthResponse):
|
10
|
+
description = "Api Token Context logged in"
|
11
|
+
|
12
|
+
return cls(
|
13
|
+
access_token=response.access_token, description=description, expires_at=None
|
14
|
+
)
|
@@ -0,0 +1,94 @@
|
|
1
|
+
from typing import Optional
|
2
|
+
from urllib.parse import urlencode, urljoin
|
3
|
+
|
4
|
+
from hyperpocket.auth import AuthProvider
|
5
|
+
from hyperpocket.auth.context import AuthContext
|
6
|
+
from hyperpocket.auth.handler import AuthHandlerInterface
|
7
|
+
from hyperpocket.auth.basicauth.basicauth_context import BasicAuthContext
|
8
|
+
from hyperpocket.auth.basicauth.basicauth_schema import (
|
9
|
+
BasicAuthRequest,
|
10
|
+
BasicAuthResponse,
|
11
|
+
)
|
12
|
+
from hyperpocket.config import config
|
13
|
+
from hyperpocket.futures import FutureStore
|
14
|
+
|
15
|
+
|
16
|
+
class BasicAuthHandler(AuthHandlerInterface):
|
17
|
+
name: str = "basicauth"
|
18
|
+
description: str = (
|
19
|
+
"This handler is used to authenticate users using the Basic Auth."
|
20
|
+
)
|
21
|
+
scoped: bool = False
|
22
|
+
|
23
|
+
_TOKEN_URL: str = urljoin(
|
24
|
+
config().public_base_url + "/",
|
25
|
+
f"{config().callback_url_rewrite_prefix}/auth/basicauth",
|
26
|
+
)
|
27
|
+
|
28
|
+
@staticmethod
|
29
|
+
def provider() -> AuthProvider:
|
30
|
+
return AuthProvider.BASICAUTH
|
31
|
+
|
32
|
+
@staticmethod
|
33
|
+
def recommended_scopes() -> set[str]:
|
34
|
+
return set()
|
35
|
+
|
36
|
+
@staticmethod
|
37
|
+
def provider_default() -> bool:
|
38
|
+
return True
|
39
|
+
|
40
|
+
def prepare(
|
41
|
+
self,
|
42
|
+
auth_req: BasicAuthRequest,
|
43
|
+
thread_id: str,
|
44
|
+
profile: str,
|
45
|
+
future_uid: str,
|
46
|
+
*args,
|
47
|
+
**kwargs,
|
48
|
+
) -> str:
|
49
|
+
redirect_uri = urljoin(
|
50
|
+
config().public_base_url + "/",
|
51
|
+
f"{config().callback_url_rewrite_prefix}/auth/basicauth/token/callback",
|
52
|
+
)
|
53
|
+
url = self._make_auth_url(
|
54
|
+
auth_req=auth_req, redirect_uri=redirect_uri, state=future_uid
|
55
|
+
)
|
56
|
+
FutureStore.create_future(
|
57
|
+
future_uid,
|
58
|
+
data={
|
59
|
+
"redirect_uri": redirect_uri,
|
60
|
+
"thread_id": thread_id,
|
61
|
+
"profile": profile,
|
62
|
+
},
|
63
|
+
)
|
64
|
+
|
65
|
+
return f"User needs to authenticate using the following URL: {url}"
|
66
|
+
|
67
|
+
async def authenticate(
|
68
|
+
self, auth_req: BasicAuthRequest, future_uid: str, *args, **kwargs
|
69
|
+
) -> AuthContext:
|
70
|
+
future_data = FutureStore.get_future(future_uid)
|
71
|
+
access_token = await future_data.future
|
72
|
+
|
73
|
+
response = BasicAuthResponse(access_token=access_token)
|
74
|
+
context = BasicAuthContext.from_api_token_response(response)
|
75
|
+
|
76
|
+
return context
|
77
|
+
|
78
|
+
async def refresh(
|
79
|
+
self, auth_req: BasicAuthRequest, context: AuthContext, *args, **kwargs
|
80
|
+
) -> AuthContext:
|
81
|
+
raise Exception("Basic auth doesn't support refresh")
|
82
|
+
|
83
|
+
def _make_auth_url(self, auth_req: BasicAuthRequest, redirect_uri: str, state: str):
|
84
|
+
params = {
|
85
|
+
"redirect_uri": redirect_uri,
|
86
|
+
"state": state,
|
87
|
+
}
|
88
|
+
auth_url = f"{self._TOKEN_URL}?{urlencode(params)}"
|
89
|
+
return auth_url
|
90
|
+
|
91
|
+
def make_request(
|
92
|
+
self, auth_scopes: Optional[list[str]] = None, **kwargs
|
93
|
+
) -> BasicAuthRequest:
|
94
|
+
return BasicAuthRequest()
|
@@ -0,0 +1,15 @@
|
|
1
|
+
from hyperpocket.auth.context import AuthContext
|
2
|
+
|
3
|
+
|
4
|
+
class BasicAuthContext(AuthContext):
|
5
|
+
_ACCESS_TOKEN_KEY: str = "BASIC_AUTH"
|
6
|
+
|
7
|
+
def to_dict(self) -> dict[str, str]:
|
8
|
+
return {
|
9
|
+
self._ACCESS_TOKEN_KEY: self.access_token,
|
10
|
+
}
|
11
|
+
|
12
|
+
def to_profiled_dict(self, profile: str) -> dict[str, str]:
|
13
|
+
return {
|
14
|
+
f"{profile.upper()}_{self._ACCESS_TOKEN_KEY}": self.access_token,
|
15
|
+
}
|
@@ -12,9 +12,7 @@ class HubspotOAuth2AuthContext(HubspotAuthContext):
|
|
12
12
|
|
13
13
|
@classmethod
|
14
14
|
def from_hubspot_oauth2_response(cls, response: HubspotOAuth2Response):
|
15
|
-
description =
|
16
|
-
f"Hubspot OAuth2 Context logged in as a user {response.authed_user.id}"
|
17
|
-
)
|
15
|
+
description = "Hubspot OAuth2 Context logged in"
|
18
16
|
now = datetime.now(tz=timezone.utc)
|
19
17
|
|
20
18
|
access_token = response.access_token
|
@@ -22,7 +20,7 @@ class HubspotOAuth2AuthContext(HubspotAuthContext):
|
|
22
20
|
expires_in = response.expires_in
|
23
21
|
|
24
22
|
if expires_in:
|
25
|
-
expires_at = now + timedelta(seconds=response.
|
23
|
+
expires_at = now + timedelta(seconds=response.expires_in)
|
26
24
|
else:
|
27
25
|
expires_at = None
|
28
26
|
|
@@ -0,0 +1,14 @@
|
|
1
|
+
from hyperpocket.auth.linkedin.context import LinkedinAuthContext
|
2
|
+
from hyperpocket.auth.linkedin.basicauth_schema import LinkedinBasicAuthResponse
|
3
|
+
|
4
|
+
|
5
|
+
class LinkedinBasicAuthContext(LinkedinAuthContext):
|
6
|
+
_ACCESS_TOKEN_KEY: str = "LINKEDIN_BASIC_AUTH"
|
7
|
+
|
8
|
+
@classmethod
|
9
|
+
def from_api_token_response(cls, response: LinkedinBasicAuthResponse):
|
10
|
+
description = "Api Token Context logged in"
|
11
|
+
|
12
|
+
return cls(
|
13
|
+
access_token=response.access_token, description=description, expires_at=None
|
14
|
+
)
|
@@ -0,0 +1,97 @@
|
|
1
|
+
from typing import Optional
|
2
|
+
from urllib.parse import urlencode, urljoin
|
3
|
+
|
4
|
+
from hyperpocket.auth import AuthProvider
|
5
|
+
from hyperpocket.auth.context import AuthContext
|
6
|
+
from hyperpocket.auth.handler import AuthHandlerInterface
|
7
|
+
from hyperpocket.config import config
|
8
|
+
from hyperpocket.futures import FutureStore
|
9
|
+
|
10
|
+
from hyperpocket.auth.linkedin.basicauth_context import LinkedinBasicAuthContext
|
11
|
+
from hyperpocket.auth.linkedin.basicauth_schema import (
|
12
|
+
LinkedinBasicAuthRequest,
|
13
|
+
LinkedinBasicAuthResponse,
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class LinkedinBasicAuthHandler(AuthHandlerInterface):
|
18
|
+
name: str = "linkedin-basicauth"
|
19
|
+
description: str = (
|
20
|
+
"This handler is used to authenticate users using the Basic Auth."
|
21
|
+
)
|
22
|
+
scoped: bool = False
|
23
|
+
|
24
|
+
_TOKEN_URL: str = urljoin(
|
25
|
+
config().public_base_url + "/",
|
26
|
+
f"{config().callback_url_rewrite_prefix}/auth/basicauth",
|
27
|
+
)
|
28
|
+
|
29
|
+
@staticmethod
|
30
|
+
def provider() -> AuthProvider:
|
31
|
+
return AuthProvider.LINKEDIN
|
32
|
+
|
33
|
+
@staticmethod
|
34
|
+
def recommended_scopes() -> set[str]:
|
35
|
+
return set()
|
36
|
+
|
37
|
+
@staticmethod
|
38
|
+
def provider_default() -> bool:
|
39
|
+
return True
|
40
|
+
|
41
|
+
def prepare(
|
42
|
+
self,
|
43
|
+
auth_req: LinkedinBasicAuthRequest,
|
44
|
+
thread_id: str,
|
45
|
+
profile: str,
|
46
|
+
future_uid: str,
|
47
|
+
*args,
|
48
|
+
**kwargs,
|
49
|
+
) -> str:
|
50
|
+
redirect_uri = urljoin(
|
51
|
+
config().public_base_url + "/",
|
52
|
+
f"{config().callback_url_rewrite_prefix}/auth/linkedin/basicauth/callback",
|
53
|
+
)
|
54
|
+
url = self._make_auth_url(
|
55
|
+
auth_req=auth_req, redirect_uri=redirect_uri, state=future_uid
|
56
|
+
)
|
57
|
+
FutureStore.create_future(
|
58
|
+
future_uid,
|
59
|
+
data={
|
60
|
+
"redirect_uri": redirect_uri,
|
61
|
+
"thread_id": thread_id,
|
62
|
+
"profile": profile,
|
63
|
+
},
|
64
|
+
)
|
65
|
+
|
66
|
+
return f"User needs to authenticate using the following URL: {url}"
|
67
|
+
|
68
|
+
async def authenticate(
|
69
|
+
self, auth_req: LinkedinBasicAuthRequest, future_uid: str, *args, **kwargs
|
70
|
+
) -> AuthContext:
|
71
|
+
future_data = FutureStore.get_future(future_uid)
|
72
|
+
access_token = await future_data.future
|
73
|
+
|
74
|
+
response = LinkedinBasicAuthResponse(access_token=access_token)
|
75
|
+
context = LinkedinBasicAuthContext.from_api_token_response(response)
|
76
|
+
|
77
|
+
return context
|
78
|
+
|
79
|
+
async def refresh(
|
80
|
+
self, auth_req: LinkedinBasicAuthRequest, context: AuthContext, *args, **kwargs
|
81
|
+
) -> AuthContext:
|
82
|
+
raise Exception("Basic auth doesn't support refresh")
|
83
|
+
|
84
|
+
def _make_auth_url(
|
85
|
+
self, auth_req: LinkedinBasicAuthRequest, redirect_uri: str, state: str
|
86
|
+
):
|
87
|
+
params = {
|
88
|
+
"redirect_uri": redirect_uri,
|
89
|
+
"state": state,
|
90
|
+
}
|
91
|
+
auth_url = f"{self._TOKEN_URL}?{urlencode(params)}"
|
92
|
+
return auth_url
|
93
|
+
|
94
|
+
def make_request(
|
95
|
+
self, auth_scopes: Optional[list[str]] = None, **kwargs
|
96
|
+
) -> LinkedinBasicAuthRequest:
|
97
|
+
return LinkedinBasicAuthRequest()
|
@@ -104,6 +104,7 @@ class AuthConfig(BaseModel):
|
|
104
104
|
linear: Optional[LinearAuthConfig] = None
|
105
105
|
facebook: Optional[FacebookAuthConfig] = None
|
106
106
|
use_prebuilt_auth: bool = Field(default=True)
|
107
|
+
auth_encryption_secret_key: Optional[str] = Field(default=None)
|
107
108
|
|
108
109
|
|
109
110
|
DefaultAuthConfig = AuthConfig()
|
@@ -0,0 +1,88 @@
|
|
1
|
+
import base64
|
2
|
+
from http import HTTPStatus
|
3
|
+
from urllib.parse import parse_qs, urlencode, urlparse, urlunparse
|
4
|
+
|
5
|
+
from cryptography.fernet import Fernet
|
6
|
+
from fastapi import APIRouter, Form
|
7
|
+
from starlette.responses import HTMLResponse, RedirectResponse
|
8
|
+
|
9
|
+
from hyperpocket.config import config
|
10
|
+
from hyperpocket.config.auth import DefaultAuthConfig
|
11
|
+
from hyperpocket.futures import FutureStore
|
12
|
+
|
13
|
+
default_router = APIRouter()
|
14
|
+
|
15
|
+
|
16
|
+
@default_router.get("/basicauth", response_class=HTMLResponse)
|
17
|
+
async def basicauth_form(redirect_uri: str, state: str = ""):
|
18
|
+
html = f"""
|
19
|
+
<html>
|
20
|
+
<body>
|
21
|
+
<h2>Enter ID and Password</h2>
|
22
|
+
<form action="submit" method="post">
|
23
|
+
<input type="hidden" name="redirect_uri" value="{redirect_uri}">
|
24
|
+
<input type="hidden" name="state" value="{state}">
|
25
|
+
|
26
|
+
<label for="username">Username:</label>
|
27
|
+
<input type="text" id="username" name="username" required>
|
28
|
+
|
29
|
+
<label for="password">Password:</label>
|
30
|
+
<input type="password" id="password" name="password" required>
|
31
|
+
|
32
|
+
<button type="submit">submit</button>
|
33
|
+
</form>
|
34
|
+
</body>
|
35
|
+
</html>
|
36
|
+
"""
|
37
|
+
return HTMLResponse(content=html)
|
38
|
+
|
39
|
+
|
40
|
+
@default_router.post("/submit", response_class=RedirectResponse)
|
41
|
+
async def submit_basicauth(
|
42
|
+
username: str = Form(...),
|
43
|
+
password: str = Form(...),
|
44
|
+
redirect_uri: str = Form(...),
|
45
|
+
state: str = Form(...),
|
46
|
+
):
|
47
|
+
token = f"{username}:{password}"
|
48
|
+
base64_token = base64.b64encode(token.encode()).decode("utf-8")
|
49
|
+
key = config().auth.auth_encryption_secret_key.encode()
|
50
|
+
encrypted = Fernet(key).encrypt(base64_token.encode()).decode()
|
51
|
+
new_callback_url = add_query_params(
|
52
|
+
redirect_uri, {"token": encrypted, "state": state}
|
53
|
+
)
|
54
|
+
return RedirectResponse(url=new_callback_url, status_code=HTTPStatus.SEE_OTHER)
|
55
|
+
|
56
|
+
|
57
|
+
def add_query_params(url: str, params: dict):
|
58
|
+
url_parts = urlparse(url)
|
59
|
+
query_params = parse_qs(url_parts.query)
|
60
|
+
query_params.update(params)
|
61
|
+
new_query = urlencode(query_params, doseq=True)
|
62
|
+
|
63
|
+
new_url = urlunparse(
|
64
|
+
(
|
65
|
+
url_parts.scheme,
|
66
|
+
url_parts.netloc,
|
67
|
+
url_parts.path,
|
68
|
+
url_parts.params,
|
69
|
+
new_query,
|
70
|
+
url_parts.fragment,
|
71
|
+
)
|
72
|
+
)
|
73
|
+
return new_url
|
74
|
+
|
75
|
+
|
76
|
+
basicauth_router = APIRouter(prefix="/basicauth")
|
77
|
+
|
78
|
+
|
79
|
+
@basicauth_router.get("/basicauth/callback")
|
80
|
+
async def basicauth_basicauth_callback(state: str, token: str):
|
81
|
+
try:
|
82
|
+
key = DefaultAuthConfig.auth_encryption_secret_key.encode()
|
83
|
+
decrypted = Fernet(key).decrypt(token.encode()).decode()
|
84
|
+
FutureStore.resolve_future(state, decrypted)
|
85
|
+
except ValueError:
|
86
|
+
return HTMLResponse(content="failed")
|
87
|
+
|
88
|
+
return HTMLResponse(content="success")
|
@@ -1,5 +1,8 @@
|
|
1
|
+
from cryptography.fernet import Fernet
|
1
2
|
from fastapi import APIRouter
|
2
3
|
from starlette.responses import HTMLResponse
|
4
|
+
|
5
|
+
from hyperpocket.config import config
|
3
6
|
from hyperpocket.futures import FutureStore
|
4
7
|
|
5
8
|
linkedin_auth_router = APIRouter(prefix="/linkedin")
|
@@ -15,10 +18,12 @@ async def linkedin_oauth2_callback(state: str, code: str):
|
|
15
18
|
return HTMLResponse(content="success")
|
16
19
|
|
17
20
|
|
18
|
-
@linkedin_auth_router.get("/
|
19
|
-
async def
|
21
|
+
@linkedin_auth_router.get("/basicauth/callback")
|
22
|
+
async def linkedin_basicauth_callback(state: str, token: str):
|
20
23
|
try:
|
21
|
-
|
24
|
+
key = config().auth.auth_encryption_secret_key.encode()
|
25
|
+
decrypted = Fernet(key).decrypt(token.encode()).decode()
|
26
|
+
FutureStore.resolve_future(state, decrypted)
|
22
27
|
except ValueError:
|
23
28
|
return HTMLResponse(content="failed")
|
24
29
|
|
@@ -0,0 +1,14 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from pydantic import BaseModel
|
4
|
+
|
5
|
+
|
6
|
+
def convert_pydantic_to_dict(data: Any):
|
7
|
+
if isinstance(data, BaseModel):
|
8
|
+
return data.model_dump()
|
9
|
+
elif isinstance(data, dict):
|
10
|
+
return {key: convert_pydantic_to_dict(value) for key, value in data.items()}
|
11
|
+
elif isinstance(data, list):
|
12
|
+
return [convert_pydantic_to_dict(item) for item in data]
|
13
|
+
|
14
|
+
return data
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "hyperpocket"
|
3
|
-
version = "0.5.
|
3
|
+
version = "0.5.6"
|
4
4
|
description = "Building AI agent with hyperpocket tool in a flash"
|
5
5
|
authors = [{ name = "Hyperpocket Team", email = "hyperpocket@vessl.ai" }]
|
6
6
|
requires-python = ">=3.10"
|
@@ -15,12 +15,13 @@ dependencies = [
|
|
15
15
|
"toml>=0.10.2",
|
16
16
|
"jinja2>=3.1.4",
|
17
17
|
"pygithub>=2.5.0",
|
18
|
-
"multiprocess>=0.70.
|
18
|
+
"multiprocess>=0.70.16",
|
19
19
|
"gitpython>=3.1.43",
|
20
20
|
"redis>=5.2.1",
|
21
21
|
"dynaconf>=3.2.6",
|
22
22
|
"nest-asyncio>=1.6.0",
|
23
23
|
"python-multipart>=0.0.18",
|
24
|
+
"cryptography>=44.0.0",
|
24
25
|
]
|
25
26
|
|
26
27
|
[project.urls]
|
File without changes
|
@@ -438,6 +438,7 @@ version = "0.3.6"
|
|
438
438
|
source = { editable = "." }
|
439
439
|
dependencies = [
|
440
440
|
{ name = "click" },
|
441
|
+
{ name = "cryptography" },
|
441
442
|
{ name = "dynaconf" },
|
442
443
|
{ name = "fastapi" },
|
443
444
|
{ name = "gitpython" },
|
@@ -471,13 +472,14 @@ dev = [
|
|
471
472
|
[package.metadata]
|
472
473
|
requires-dist = [
|
473
474
|
{ name = "click", specifier = ">=8.1.7" },
|
475
|
+
{ name = "cryptography", specifier = ">=44.0.0" },
|
474
476
|
{ name = "dynaconf", specifier = ">=3.2.6" },
|
475
477
|
{ name = "fastapi", specifier = ">=0.115.5" },
|
476
478
|
{ name = "gitpython", specifier = ">=3.1.43" },
|
477
479
|
{ name = "httpx", specifier = "==0.27" },
|
478
480
|
{ name = "hyperdock-container", marker = "extra == 'standard'", editable = "../docks/hyperdock-container" },
|
479
481
|
{ name = "jinja2", specifier = ">=3.1.4" },
|
480
|
-
{ name = "multiprocess", specifier = ">=0.70.
|
482
|
+
{ name = "multiprocess", specifier = ">=0.70.16" },
|
481
483
|
{ name = "nest-asyncio", specifier = ">=1.6.0" },
|
482
484
|
{ name = "pydantic", specifier = ">=2.10.2" },
|
483
485
|
{ name = "pygithub", specifier = ">=2.5.0" },
|
@@ -829,7 +831,7 @@ version = "0.0.20"
|
|
829
831
|
source = { registry = "https://pypi.org/simple" }
|
830
832
|
sdist = { url = "https://files.pythonhosted.org/packages/f3/87/f44d7c9f274c7ee665a29b885ec97089ec5dc034c7f3fafa03da9e39a09e/python_multipart-0.0.20.tar.gz", hash = "sha256:8dd0cab45b8e23064ae09147625994d090fa46f5b0d1e13af944c331a7fa9d13", size = 37158 }
|
831
833
|
wheels = [
|
832
|
-
{ url = "https://files.pythonhosted.org/packages/
|
834
|
+
{ url = "https://files.pythonhosted.org/packages/45/58/38b5afbc1a800eeea951b9285d3912613f2603bdf897a4ab0f4bd7f405fc/python_multipart-0.0.20-py3-none-any.whl", hash = "sha256:8a62d3a8335e06589fe01f2a3e178cdcc632f3fbe0d492ad9ee0ec35aab1f104", size = 24546 },
|
833
835
|
]
|
834
836
|
|
835
837
|
[[package]]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|